Return a tibble of BED files in BEDset given its id.

bb_beds_in_bedset(bedbase, bedset_id)

Arguments

bedbase

BEDbase() object

bedset_id

integer(1) BEDset record identifier

Value

tibble of BED files in BEDset

Examples

bedbase <- BEDbase()
#> 128999 BED files available.
ex_bedset <- bb_example(bedbase, "bedset")
bb_beds_in_bedset(bedbase, ex_bedset$id)
#> # A tibble: 2 × 29
#>   name         genome_alias bed_compliance data_format compliant_columns
#>   <chr>        <chr>        <chr>          <chr>       <chr>            
#> 1 U2OS sh-VNGD hg38         bed4+1         bed_like    4                
#> 2 U2OS sh-ctrl hg38         bed4+1         bed_like    4                
#> # ℹ 24 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>, …