<?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: Wire posts tagged with 'Perl']]></title>
	<link>https://bioinformaticsonline.com/thewire/tag/Perl?offset=75</link>
	<atom:link href="https://bioinformaticsonline.com/thewire/tag/Perl?offset=75" rel="self" type="application/rss+xml" />
	<description><![CDATA[]]></description>
	
	<item>
	<guid isPermaLink="true">https://bioinformaticsonline.com/thewire/view/11660</guid>
	<pubDate>Tue, 10 Jun 2014 05:34:41 -0500</pubDate>
	<link>https://bioinformaticsonline.com/thewire/view/11660</link>
	<title><![CDATA[Wire post by Jit]]></title>
	<description><![CDATA[
<p>Count the total number of lines in a file. my $total=@{[&lt;INFILE&gt;]}; #Perl #Count #Number #Total #File</p>
]]></description>
	<dc:creator>Jit</dc:creator>
</item>
<item>
	<guid isPermaLink="true">https://bioinformaticsonline.com/thewire/view/11554</guid>
	<pubDate>Fri, 06 Jun 2014 02:55:27 -0500</pubDate>
	<link>https://bioinformaticsonline.com/thewire/view/11554</link>
	<title><![CDATA[Wire post by Jit]]></title>
	<description><![CDATA[
<p>Remove the blank space from a fasta file. perl -nlwe 'tr/ //d; print if length' fileName #Delete #Space #Fasta #Perl #Oneliner</p>
]]></description>
	<dc:creator>Jit</dc:creator>
</item>
<item>
	<guid isPermaLink="true">https://bioinformaticsonline.com/thewire/view/11545</guid>
	<pubDate>Fri, 06 Jun 2014 02:38:28 -0500</pubDate>
	<link>https://bioinformaticsonline.com/thewire/view/11545</link>
	<title><![CDATA[Wire post by Jit]]></title>
	<description><![CDATA[
<p>perl -nle 'if (/^&gt;/) { $sl = 0; print; next } next if ($sl &gt;= 200); $_ = substr($_, 0, 200-$sl) if ($sl + length($_) &gt; 200); $sl += length($_); print;' file.fa &gt;new.fa #Perl #Extract #Fasta</p>
]]></description>
	<dc:creator>Jit</dc:creator>
</item>
<item>
	<guid isPermaLink="true">https://bioinformaticsonline.com/thewire/view/11510</guid>
	<pubDate>Thu, 05 Jun 2014 02:09:02 -0500</pubDate>
	<link>https://bioinformaticsonline.com/thewire/view/11510</link>
	<title><![CDATA[Wire post by Jit]]></title>
	<description><![CDATA[
<p>Force install a Perl module sudo PERL_MM_USE_DEFAULT=1 perl -MCPAN -e "CPAN::Shell-&gt;force(qw(install Nginx::Log::Entry))" #Perl #Install #Force #CPAN #Module</p>
]]></description>
	<dc:creator>Jit</dc:creator>
</item>
<item>
	<guid isPermaLink="true">https://bioinformaticsonline.com/thewire/view/11500</guid>
	<pubDate>Wed, 04 Jun 2014 14:15:45 -0500</pubDate>
	<link>https://bioinformaticsonline.com/thewire/view/11500</link>
	<title><![CDATA[Wire post by Jitendra Narayan]]></title>
	<description><![CDATA[
<p>Use multi-core with Perl programs http://perltricks.com/article/61/2014/1/21/Make-your-code-run-faster-with-Perl-s-secret-turbo-module #Perl #MCE #Speed #Module</p>
]]></description>
	<dc:creator>Jitendra Narayan</dc:creator>
</item>
<item>
	<guid isPermaLink="true">https://bioinformaticsonline.com/thewire/view/11193</guid>
	<pubDate>Fri, 30 May 2014 06:15:37 -0500</pubDate>
	<link>https://bioinformaticsonline.com/thewire/view/11193</link>
	<title><![CDATA[Wire post by Abhimanyu Singh]]></title>
	<description><![CDATA[
<p>Perl scripts for Bioinformatics http://jura.wi.mit.edu/bio/bioinfo/scripts/ #Perl #Bioinformatics #Genetics #Scripts</p>
]]></description>
	<dc:creator>Abhimanyu Singh</dc:creator>
</item>
<item>
	<guid isPermaLink="true">https://bioinformaticsonline.com/thewire/view/11147</guid>
	<pubDate>Thu, 29 May 2014 06:35:45 -0500</pubDate>
	<link>https://bioinformaticsonline.com/thewire/view/11147</link>
	<title><![CDATA[Wire post by Jit]]></title>
	<description><![CDATA[
<p>Install Bioperl on ubuntu :  sudo apt-get install bioperl #Bioperl #Install #Perl</p>
]]></description>
	<dc:creator>Jit</dc:creator>
</item>
<item>
	<guid isPermaLink="true">https://bioinformaticsonline.com/thewire/view/10754</guid>
	<pubDate>Sun, 11 May 2014 10:16:51 -0500</pubDate>
	<link>https://bioinformaticsonline.com/thewire/view/10754</link>
	<title><![CDATA[Wire post by Rahul Nayak]]></title>
	<description><![CDATA[
<p>perl -nle '$count += () = /XY[0-9]+/g; END {print $count}' inputfile #Count #Perl #Perloneliner</p>
]]></description>
	<dc:creator>Rahul Nayak</dc:creator>
</item>
<item>
	<guid isPermaLink="true">https://bioinformaticsonline.com/thewire/view/8494</guid>
	<pubDate>Wed, 26 Feb 2014 07:12:06 -0600</pubDate>
	<link>https://bioinformaticsonline.com/thewire/view/8494</link>
	<title><![CDATA[Wire post by Rahul Nayak]]></title>
	<description><![CDATA[
<p>Perl module http://perlmaven.com/how-to-create-a-perl-module-for-code-reuse #Perl #Module #Package</p>
]]></description>
	<dc:creator>Rahul Nayak</dc:creator>
</item>
<item>
	<guid isPermaLink="true">https://bioinformaticsonline.com/thewire/view/8468</guid>
	<pubDate>Mon, 24 Feb 2014 04:31:45 -0600</pubDate>
	<link>https://bioinformaticsonline.com/thewire/view/8468</link>
	<title><![CDATA[Wire post by Shruti Paniwala]]></title>
	<description><![CDATA[
<p>Useful perl scripts collections http://raven.iab.alaska.edu/~ntakebay/teaching/programming/perl-scripts/perl-scripts.html #Perl #Scripts</p>
]]></description>
	<dc:creator>Shruti Paniwala</dc:creator>
</item>
<item>
	<guid isPermaLink="true">https://bioinformaticsonline.com/thewire/view/6513</guid>
	<pubDate>Tue, 19 Nov 2013 08:51:11 -0600</pubDate>
	<link>https://bioinformaticsonline.com/thewire/view/6513</link>
	<title><![CDATA[Wire post by Rahul Nayak]]></title>
	<description><![CDATA[
<p>Perl Regular expression http://raven.iab.alaska.edu/~ntakebay/teaching/programming/perl2nd/node1.html #Perl #RegularExpression</p>
]]></description>
	<dc:creator>Rahul Nayak</dc:creator>
</item>
<item>
	<guid isPermaLink="true">https://bioinformaticsonline.com/thewire/view/5726</guid>
	<pubDate>Thu, 17 Oct 2013 13:16:59 -0500</pubDate>
	<link>https://bioinformaticsonline.com/thewire/view/5726</link>
	<title><![CDATA[Wire post by Shikha Logwani]]></title>
	<description><![CDATA[
<p>Perl Special Variables Quick Reference  http://www.perlmonks.org/?node_id=353259 #Perl</p>
]]></description>
	<dc:creator>Shikha Logwani</dc:creator>
</item>
<item>
	<guid isPermaLink="true">https://bioinformaticsonline.com/thewire/view/5362</guid>
	<pubDate>Mon, 07 Oct 2013 06:35:41 -0500</pubDate>
	<link>https://bioinformaticsonline.com/thewire/view/5362</link>
	<title><![CDATA[Wire post by Jitendra Narayan]]></title>
	<description><![CDATA[
<p>Convert space separated data to tab separated: perl -p -i -e 's/\s+/\t/g' file.txt #Perl #Tipsoftheday #Perlonliner</p>
]]></description>
	<dc:creator>Jitendra Narayan</dc:creator>
</item>
<item>
	<guid isPermaLink="true">https://bioinformaticsonline.com/thewire/view/5228</guid>
	<pubDate>Wed, 02 Oct 2013 09:15:50 -0500</pubDate>
	<link>https://bioinformaticsonline.com/thewire/view/5228</link>
	<title><![CDATA[Wire post by Rahul Nayak]]></title>
	<description><![CDATA[
<p>GenBank to FASTA format conversion, Written By Junguk HUR http://tinyurl.com/ntp7w5v #Perl #FASTA #Genbank</p>
]]></description>
	<dc:creator>Rahul Nayak</dc:creator>
</item>
<item>
	<guid isPermaLink="true">https://bioinformaticsonline.com/thewire/view/4705</guid>
	<pubDate>Sat, 21 Sep 2013 15:08:37 -0500</pubDate>
	<link>https://bioinformaticsonline.com/thewire/view/4705</link>
	<title><![CDATA[Wire post by Jit]]></title>
	<description><![CDATA[
<p>Some useful tricks for next generation seq analyst http://chicken.genouest.org/ #Perl #R #C/C++</p>
]]></description>
	<dc:creator>Jit</dc:creator>
</item>

</channel>
</rss>