Return a tibble of BED files in BEDset given its id.
bb_beds_in_bedset(bedbase, bedset_id)
tibble of BED files in BEDset
bedbase <- BEDbase()
#> 125977 BED files available.
ex_bedset <- bb_example(bedbase, "bedset")
bb_beds_in_bedset(bedbase, ex_bedset$id)
#> # A tibble: 4 × 34
#> name genome_alias genome_digest bed_compliance data_format compliant_columns
#> <chr> <chr> <chr> <chr> <chr> <chr>
#> 1 encod… hg38 2230c535660f… bed6+4 encode_nar… 6
#> 2 ChIP-… hg19 NA bed6+4 encode_nar… 6
#> 3 ChIP-… hg19 NA bed6+4 encode_nar… 6
#> 4 encod… hg38 2230c535660f… bed6+4 encode_nar… 6
#> # ℹ 28 more variables: non_compliant_columns <chr>, id <chr>,
#> # description <chr>, submission_date <chr>, last_update_date <chr>,
#> # is_universe <chr>, license_id <chr>, annotation.species_name <chr>,
#> # annotation.species_id <chr>, annotation.genotype <chr>,
#> # annotation.phenotype <chr>, annotation.description <chr>,
#> # annotation.cell_type <chr>, annotation.cell_line <chr>,
#> # annotation.tissue <chr>, annotation.library_source <chr>, …