BOL
Log in
Username or email
Password
Remember me
Register
Lost password
Activity
News
Opportunity
ResearchLabs
Questions
Pages
Discussion
More
BioScripts
Blogs
Bookmarks
Files
Fun
Polls
The Wire
Videos
Python Everywhere
Rahul Agarwal
4622 days ago
Group blog
Group bookmarks
Group files
Group fun
Group news
Group pages
Group polls
Group videos
Navigation
Subprocess pkg
Using Interval Trees to Query Genome Annotations by Position
Our Sponsors
Download
BioinformaticsOnline(BOL) Apps
in your chrome browser.
Pages
Python Everywhere
Python Everywhere's pages
Public
History
1 like
Nabashis Kumar Misra
@nabashismisra
Nabashis Kumar Misra
liked this
3769 days ago
Using Interval Trees to Query Genome Annotations by Position
Last updated
4219 days ago
by
Rahul Agarwal
genome overlapping features
BED files
IntervalTrees
To work on query related to overlapping genomic features: use IntervalTree python...
Public
History
1 like
Nabashis Kumar Misra
@nabashismisra
Nabashis Kumar Misra
liked this
3769 days ago
Subprocess pkg
Last updated
4219 days ago
by
Rahul Agarwal
python
linux
PIPE
Subprocess is one of simplest way of running linux command from within python code Example: if you want to run fastqc for QC of fastq file: from subprocess import Popen,PIPE,call p=Popen(["fastqc","-f","fastq","-o",...