Bioconductor / Organism.dplyr

https://bioconductor.org/packages/Organism.dplyr
3 stars 3 forks source link

support GRangesFilter() without being in a list #16

Open mtmorgan opened 7 years ago

mtmorgan commented 7 years ago

The following should work

src = src_organism(dbpath=hg38light())
filter = GRangesFilter(GenomicRanges::GRanges("chr8:18391245-18401218"))
exons(src, filter)

but currently requires

exons(src, list(filter))