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
Groups
Polls
The Wire
Tryst
Videos
Python Everywhere
http://www.python.org/
Group activity
Group blog
Group bookmarks
Group discussion
Group files
Group fun
Group news
Group pages
Group polls
Group tryst
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
Using Interval Trees to Query Genome Annotations by Position
Last updated
3780 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
Subprocess pkg
Last updated
3780 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",...