<?xml version='1.0'?><rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:georss="http://www.georss.org/georss" xmlns:atom="http://www.w3.org/2005/Atom" >
<channel>
	<title><![CDATA[BOL: Python Everywhere's pages]]></title>
	<link>https://bioinformaticsonline.com/pages/group/137/all?</link>
	<atom:link href="https://bioinformaticsonline.com/pages/group/137/all?" rel="self" type="application/rss+xml" />
	<description><![CDATA[]]></description>
	
	<item>
	<guid isPermaLink="true">https://bioinformaticsonline.com/pages/view/14093/using-interval-trees-to-query-genome-annotations-by-position</guid>
	<pubDate>Sun, 17 Aug 2014 08:28:23 -0500</pubDate>
	<link>https://bioinformaticsonline.com/pages/view/14093/using-interval-trees-to-query-genome-annotations-by-position</link>
	<title><![CDATA[Using Interval Trees to Query Genome Annotations by Position]]></title>
	<description><![CDATA[<p><strong>To work on query related to overlapping genomic features</strong>: use IntervalTree python pkg</p><p>http://informatics.malariagen.net/2011/07/07/using-interval-trees-to-query-genome-annotations-by-position/</p><p>http://hackmap.blogspot.de/2008/11/python-interval-tree.html</p><p>http://en.wikipedia.org/wiki/Interval_tree#Construction</p>]]></description>
	<dc:creator>Rahul Agarwal</dc:creator>
</item>
<item>
	<guid isPermaLink="true">https://bioinformaticsonline.com/pages/view/14091/subprocess-pkg</guid>
	<pubDate>Sun, 17 Aug 2014 07:59:32 -0500</pubDate>
	<link>https://bioinformaticsonline.com/pages/view/14091/subprocess-pkg</link>
	<title><![CDATA[Subprocess pkg]]></title>
	<description><![CDATA[<p>Subprocess is one of simplest way of running linux command from within python code</p><p>Example:</p><p>if you want to run fastqc for QC of fastq file:</p><p>from subprocess import Popen,PIPE,call</p><p>p=Popen(["fastqc","-f","fastq","-o", "/home/name/result/","/dev/stdin"],stdin=fopen("read.fastq","r") ,stdout=PIPE,stderr=PIPE)</p><p>print p.stderr</p><p>p.stdout.close()</p><p>More:</p><p>http://pymotw.com/2/subprocess/</p>]]></description>
	<dc:creator>Rahul Agarwal</dc:creator>
</item>

</channel>
</rss>