[Bioc-devel] rtracklayer::import.bed(genome = Seqinfo)

2019-10-22 Thread Bhagwat, Aditya
Dear Michael, Sorry for my incomplete email - the send button got hit too fast. Better this time. rtracklayer::import.bed mentions the argument "genome" to be either a genome identifier (like 'mm10') or a Seqinfo object. I notice that the second option does not work on my BED file (in attach).

[Bioc-devel] (no subject)

2019-10-22 Thread Bhagwat, Aditya
Dear Michael, # This works rtracklayer::import.bed('SRF.bed', genome = 'mm10') # this works # But this doesn't seqinfo1<- GenomeInfoDb::seqinfo(BSgenome.Mmusculus.UCSC.mm10::BSgenome.Mmusculus.UCSC.mm10) rtracklayer::import.bed('SRF.bed', genome = seqinfo1) # Neither does __