| Title: | Open-Access Computational Biology Datasets |
|---|---|
| Description: | Efficiently access a curated library of open-access computational biology datasets. Datasets support predicate pushdown and projection to the cloud storage backend, enabling quick, iterative access to otherwise massive, unwieldy datasets. |
| Authors: | Liam Abbott [aut, cre, cph] |
| Maintainer: | Liam Abbott <[email protected]> |
| License: | GPL (>= 3) |
| Version: | 1.1.0 |
| Built: | 2026-02-06 22:22:51 UTC |
| Source: | https://github.com/bedrock-bio/bedrock-bio-client |
List available datasets in the Bedrock Bio library
list_datasets()list_datasets()
A character vector of dataset names
## Not run: library(bedrockbio) list_datasets() ## End(Not run)## Not run: library(bedrockbio) list_datasets() ## End(Not run)
Lazily read a dataset from the Bedrock Bio library
load_dataset(name)load_dataset(name)
name |
Dataset name (e.g., "ukb_ppp/pqtls") |
A lazy tibble
## Not run: library(bedrockbio) library(dplyr) df <- load_dataset("ukb_ppp/pqtls") |> filter( ancestry == "EUR", protein == "A0FGR8" ) |> select( chromosome, position, effect_allele, other_allele, beta, neg_log_10_p_value ) |> collect() ## End(Not run)## Not run: library(bedrockbio) library(dplyr) df <- load_dataset("ukb_ppp/pqtls") |> filter( ancestry == "EUR", protein == "A0FGR8" ) |> select( chromosome, position, effect_allele, other_allele, beta, neg_log_10_p_value ) |> collect() ## End(Not run)