<?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 'TipsOftheDay']]></title>
	<link>https://bioinformaticsonline.com/thewire/tag/TipsOftheDay?</link>
	<atom:link href="https://bioinformaticsonline.com/thewire/tag/TipsOftheDay?" rel="self" type="application/rss+xml" />
	<description><![CDATA[]]></description>
	
	<item>
	<guid isPermaLink="true">https://bioinformaticsonline.com/thewire/view/24323</guid>
	<pubDate>Mon, 07 Sep 2015 12:14:57 -0500</pubDate>
	<link>https://bioinformaticsonline.com/thewire/view/24323</link>
	<title><![CDATA[Wire post by Rahul Nayak]]></title>
	<description><![CDATA[
<p>Search and replace the string 'this' with the string 'that' in the file filename. perl -p -i -e 's/this/that/g' filename #Perl #Trick #PerlOneLiner #Tipsoftheday #Replace #FindandReplace</p>
]]></description>
	<dc:creator>Rahul Nayak</dc:creator>
</item>
<item>
	<guid isPermaLink="true">https://bioinformaticsonline.com/thewire/view/23230</guid>
	<pubDate>Thu, 09 Jul 2015 19:55:02 -0500</pubDate>
	<link>https://bioinformaticsonline.com/thewire/view/23230</link>
	<title><![CDATA[Wire post by Jitendra Narayan]]></title>
	<description><![CDATA[
<p>Print all possible 2 combination of words ( ATGC): $letter = join',','A','T','G','C'; @abc=glob "{$letter}{$letter}"; foreach (@abc) { print "$_\n"; } #Perl #PerlTrick #TipsOftheDay</p>
]]></description>
	<dc:creator>Jitendra Narayan</dc:creator>
</item>
<item>
	<guid isPermaLink="true">https://bioinformaticsonline.com/thewire/view/21191</guid>
	<pubDate>Thu, 12 Feb 2015 19:45:33 -0600</pubDate>
	<link>https://bioinformaticsonline.com/thewire/view/21191</link>
	<title><![CDATA[Wire post by Jitendra Narayan]]></title>
	<description><![CDATA[
<p>Get line number with Perl $fh-&gt;input_line_number() #Perl #Tipsoftheday #Tricks</p>
]]></description>
	<dc:creator>Jitendra Narayan</dc:creator>
</item>
<item>
	<guid isPermaLink="true">https://bioinformaticsonline.com/thewire/view/8176</guid>
	<pubDate>Thu, 06 Feb 2014 01:23:11 -0600</pubDate>
	<link>https://bioinformaticsonline.com/thewire/view/8176</link>
	<title><![CDATA[Wire post by Shikha Logwani]]></title>
	<description><![CDATA[
<p>regex (?(3)foo|fu)bar - Matches foo if 3rd subpattern has matched, fu if not #Tipsoftheday #Regex</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/5216</guid>
	<pubDate>Tue, 01 Oct 2013 07:03:26 -0500</pubDate>
	<link>https://bioinformaticsonline.com/thewire/view/5216</link>
	<title><![CDATA[Wire post by Abhimanyu Singh]]></title>
	<description><![CDATA[
<p>To print the matching pattern line perl -ne '/pattern/ &amp;&amp; print'  infile.gtf #Perloneliner #Tipsoftheday</p>
]]></description>
	<dc:creator>Abhimanyu Singh</dc:creator>
</item>
<item>
	<guid isPermaLink="true">https://bioinformaticsonline.com/thewire/view/4663</guid>
	<pubDate>Fri, 20 Sep 2013 16:41:36 -0500</pubDate>
	<link>https://bioinformaticsonline.com/thewire/view/4663</link>
	<title><![CDATA[Wire post by Jitendra Narayan]]></title>
	<description><![CDATA[
<p>To count the number of matches in a string !!! $str = "one.two.three.four"; $n =()= $str =~ /\./gi; print $n; #Tipsoftheday #Perl</p>
]]></description>
	<dc:creator>Jitendra Narayan</dc:creator>
</item>
<item>
	<guid isPermaLink="true">https://bioinformaticsonline.com/thewire/view/4091</guid>
	<pubDate>Thu, 29 Aug 2013 08:36:18 -0500</pubDate>
	<link>https://bioinformaticsonline.com/thewire/view/4091</link>
	<title><![CDATA[Wire post by Poonam Mahapatra]]></title>
	<description><![CDATA[
<p>Number all lines in a file; perl -pe '$_ = "$. $_"': #Tipsoftheday #Perl</p>
]]></description>
	<dc:creator>Poonam Mahapatra</dc:creator>
</item>
<item>
	<guid isPermaLink="true">https://bioinformaticsonline.com/thewire/view/4070</guid>
	<pubDate>Wed, 28 Aug 2013 15:33:30 -0500</pubDate>
	<link>https://bioinformaticsonline.com/thewire/view/4070</link>
	<title><![CDATA[Wire post by Jitendra Narayan]]></title>
	<description><![CDATA[
<p>Generate N base genome: perl -e '@b=qw/A T G C/;print "&gt;Genome\n";while($l&lt;N){print @b[int(rand(4))];$l++;}' #Tipsoftheday #Perl</p>
]]></description>
	<dc:creator>Jitendra Narayan</dc:creator>
</item>
<item>
	<guid isPermaLink="true">https://bioinformaticsonline.com/thewire/view/2698</guid>
	<pubDate>Tue, 20 Aug 2013 16:40:28 -0500</pubDate>
	<link>https://bioinformaticsonline.com/thewire/view/2698</link>
	<title><![CDATA[Wire post by Jitendra Narayan]]></title>
	<description><![CDATA[
<p>To round a floating-point value to a certain number of decimal places: $rounded = sprintf("%.2f", $unrounded); #Tipsoftheday #Perl</p>
]]></description>
	<dc:creator>Jitendra Narayan</dc:creator>
</item>
<item>
	<guid isPermaLink="true">https://bioinformaticsonline.com/thewire/view/2491</guid>
	<pubDate>Fri, 16 Aug 2013 12:17:10 -0500</pubDate>
	<link>https://bioinformaticsonline.com/thewire/view/2491</link>
	<title><![CDATA[Wire post by Jitendra Narayan]]></title>
	<description><![CDATA[
<p>To get all the module dependencies for yourScript.pl program. $ scandeps.pl yourScript.pl #Perl #Tipsoftheday</p>
]]></description>
	<dc:creator>Jitendra Narayan</dc:creator>
</item>
<item>
	<guid isPermaLink="true">https://bioinformaticsonline.com/thewire/view/2382</guid>
	<pubDate>Wed, 14 Aug 2013 19:16:35 -0500</pubDate>
	<link>https://bioinformaticsonline.com/thewire/view/2382</link>
	<title><![CDATA[Wire post by Jitendra Narayan]]></title>
	<description><![CDATA[
<p>To check: Does an array has all equal values. if (keys %{{ map {$_, 1} @test }} == 1) { # all equal } #Tipsoftheday #Perl</p>
]]></description>
	<dc:creator>Jitendra Narayan</dc:creator>
</item>
<item>
	<guid isPermaLink="true">https://bioinformaticsonline.com/thewire/view/1712</guid>
	<pubDate>Sat, 10 Aug 2013 15:01:33 -0500</pubDate>
	<link>https://bioinformaticsonline.com/thewire/view/1712</link>
	<title><![CDATA[Wire post by Jitendra Narayan]]></title>
	<description><![CDATA[
<p>Write something at the bottom of the file without opening it. perl -p -i -e 'eof &amp;&amp; s/$/\nWord/;' &lt;filename&gt; #Tipsoftheday #Perloneliner</p>
]]></description>
	<dc:creator>Jitendra Narayan</dc:creator>
</item>
<item>
	<guid isPermaLink="true">https://bioinformaticsonline.com/thewire/view/1523</guid>
	<pubDate>Fri, 09 Aug 2013 15:29:49 -0500</pubDate>
	<link>https://bioinformaticsonline.com/thewire/view/1523</link>
	<title><![CDATA[Wire post by Jitendra Narayan]]></title>
	<description><![CDATA[
<p>Do you want to compile your Perl program without running it, try $ perl -c &lt;program&gt; #Tipsoftheday #Perl</p>
]]></description>
	<dc:creator>Jitendra Narayan</dc:creator>
</item>
<item>
	<guid isPermaLink="true">https://bioinformaticsonline.com/thewire/view/780</guid>
	<pubDate>Fri, 12 Jul 2013 11:06:54 -0500</pubDate>
	<link>https://bioinformaticsonline.com/thewire/view/780</link>
	<title><![CDATA[Wire post by Archana Malhotra]]></title>
	<description><![CDATA[
<p>print "$^O\n"; To print the OS name in perl  #Tipsoftheday #Perl #RegularExpression</p>
]]></description>
	<dc:creator>Archana Malhotra</dc:creator>
</item>

</channel>
</rss>