<?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 'oneliner']]></title>
	<link>https://bioinformaticsonline.com/thewire/tag/oneliner?offset=0</link>
	<atom:link href="https://bioinformaticsonline.com/thewire/tag/oneliner?offset=0" rel="self" type="application/rss+xml" />
	<description><![CDATA[]]></description>
	
	<item>
	<guid isPermaLink="true">https://bioinformaticsonline.com/thewire/view/43348</guid>
	<pubDate>Thu, 02 Sep 2021 06:41:33 -0500</pubDate>
	<link>https://bioinformaticsonline.com/thewire/view/43348</link>
	<title><![CDATA[Wire post by LEGE]]></title>
	<description><![CDATA[
<p>Count number of fasta sequence $ awk '/^&gt;/ { f = !a[$0]++ } f' aaaa.fa &gt; bbbb.fa #count #fasta #oneliner</p>
]]></description>
	<dc:creator>LEGE</dc:creator>
</item>
<item>
	<guid isPermaLink="true">https://bioinformaticsonline.com/thewire/view/40134</guid>
	<pubDate>Mon, 21 Oct 2019 12:00:22 -0500</pubDate>
	<link>https://bioinformaticsonline.com/thewire/view/40134</link>
	<title><![CDATA[Wire post by Jit]]></title>
	<description><![CDATA[
<p>https://github.com/stephenturner/oneliners #Bash #Tutorial #OneLiner</p>
]]></description>
	<dc:creator>Jit</dc:creator>
</item>
<item>
	<guid isPermaLink="true">https://bioinformaticsonline.com/thewire/view/39346</guid>
	<pubDate>Sat, 04 May 2019 06:08:20 -0500</pubDate>
	<link>https://bioinformaticsonline.com/thewire/view/39346</link>
	<title><![CDATA[Wire post by BioJoker]]></title>
	<description><![CDATA[
<p>Genome Mapping #OneLiner https://bioinformaticsonline.com/snippets/view/39310/one-liner-for-reads-mapping</p>
]]></description>
	<dc:creator>BioJoker</dc:creator>
</item>
<item>
	<guid isPermaLink="true">https://bioinformaticsonline.com/thewire/view/33472</guid>
	<pubDate>Thu, 08 Jun 2017 09:10:37 -0500</pubDate>
	<link>https://bioinformaticsonline.com/thewire/view/33472</link>
	<title><![CDATA[Wire post by Rahul Nayak]]></title>
	<description><![CDATA[
<p>Unmasking the lower case values in genome. $ perl -pe '/^[^&gt;]/ and $_=uc' genomic.fna &gt; genomic.unmasked.fna #Genome #Unmask #Perl #Oneliner</p>
]]></description>
	<dc:creator>Rahul Nayak</dc:creator>
</item>
<item>
	<guid isPermaLink="true">https://bioinformaticsonline.com/thewire/view/32941</guid>
	<pubDate>Tue, 23 May 2017 04:47:49 -0500</pubDate>
	<link>https://bioinformaticsonline.com/thewire/view/32941</link>
	<title><![CDATA[Wire post by Jit]]></title>
	<description><![CDATA[
<p>Rename/number the multi-fasta file in ascending order.  $ awk '/^&gt;/{print "&gt;" ++i; next}{print}' &lt; Mix_assembly.fasta &gt; Mix_assembly2.fasta #awk #oneliner</p>
]]></description>
	<dc:creator>Jit</dc:creator>
</item>
<item>
	<guid isPermaLink="true">https://bioinformaticsonline.com/thewire/view/32408</guid>
	<pubDate>Tue, 02 May 2017 09:34:11 -0500</pubDate>
	<link>https://bioinformaticsonline.com/thewire/view/32408</link>
	<title><![CDATA[Wire post by Jit]]></title>
	<description><![CDATA[
<p>Perl OneLiner http://userweb.eng.gla.ac.uk/umer.ijaz/bioinformatics/oneliners.html #Perl #Oneliner #NGS #Script</p>
]]></description>
	<dc:creator>Jit</dc:creator>
</item>
<item>
	<guid isPermaLink="true">https://bioinformaticsonline.com/thewire/view/32406</guid>
	<pubDate>Tue, 02 May 2017 09:05:00 -0500</pubDate>
	<link>https://bioinformaticsonline.com/thewire/view/32406</link>
	<title><![CDATA[Wire post by Jit]]></title>
	<description><![CDATA[
<p>NGS onliner http://userweb.eng.gla.ac.uk/umer.ijaz/bioinformatics/subsetFASTAFASTAQ.html #OneLiner #NGS</p>
]]></description>
	<dc:creator>Jit</dc:creator>
</item>
<item>
	<guid isPermaLink="true">https://bioinformaticsonline.com/thewire/view/30627</guid>
	<pubDate>Mon, 23 Jan 2017 05:01:08 -0600</pubDate>
	<link>https://bioinformaticsonline.com/thewire/view/30627</link>
	<title><![CDATA[Wire post by Shruti Paniwala]]></title>
	<description><![CDATA[
<p>Fasta sequence length: awk '/^&gt;/ {if (seqlen){print seqlen}; print ;seqlen=0;next; } { seqlen += length($0)}END{print seqlen}' file.fa #Length #Linux #OneLiner</p>
]]></description>
	<dc:creator>Shruti Paniwala</dc:creator>
</item>
<item>
	<guid isPermaLink="true">https://bioinformaticsonline.com/thewire/view/26633</guid>
	<pubDate>Sun, 13 Mar 2016 13:59:21 -0500</pubDate>
	<link>https://bioinformaticsonline.com/thewire/view/26633</link>
	<title><![CDATA[Wire post by Jit]]></title>
	<description><![CDATA[
<p>Print all text after a matching string perl -ne "print unless 1 .. m(String)" #Perl #OneLiner #String #Perl #Trick</p>
]]></description>
	<dc:creator>Jit</dc:creator>
</item>
<item>
	<guid isPermaLink="true">https://bioinformaticsonline.com/thewire/view/24357</guid>
	<pubDate>Wed, 09 Sep 2015 16:17:11 -0500</pubDate>
	<link>https://bioinformaticsonline.com/thewire/view/24357</link>
	<title><![CDATA[Wire post by Rahul Nayak]]></title>
	<description><![CDATA[
<p>Count the number of sequences in fastaq file. grep -c '^@' sample1.fq #Fastaq #Count #Number #Grep #Dirty #Oneliner #NGS</p>
]]></description>
	<dc:creator>Rahul Nayak</dc:creator>
</item>
<item>
	<guid isPermaLink="true">https://bioinformaticsonline.com/thewire/view/24353</guid>
	<pubDate>Wed, 09 Sep 2015 16:05:55 -0500</pubDate>
	<link>https://bioinformaticsonline.com/thewire/view/24353</link>
	<title><![CDATA[Wire post by Rahul Nayak]]></title>
	<description><![CDATA[
<p>Remove the fasta description and just keep the identifier. perl -p -i -e 's/&gt;(.+?) .+/&gt;$1/g' sample1.fa #Perl #Oneliner #Trick #Tips #Fasta #Identifier #Remove</p>
]]></description>
	<dc:creator>Rahul Nayak</dc:creator>
</item>
<item>
	<guid isPermaLink="true">https://bioinformaticsonline.com/thewire/view/24351</guid>
	<pubDate>Wed, 09 Sep 2015 16:01:53 -0500</pubDate>
	<link>https://bioinformaticsonline.com/thewire/view/24351</link>
	<title><![CDATA[Wire post by Rahul Nayak]]></title>
	<description><![CDATA[
<p>Extract sequences by their ID from a fasta file. perl -ne 'if(/^&gt;(\S+)/){$c=$i{$1}}$c?print:chomp;$i{$_}=1 if @ARGV' ids.txt sample1.fa #Extract #Sequences #IDs #Fasta #Perl #Trick #Oneliner</p>
]]></description>
	<dc:creator>Rahul Nayak</dc:creator>
</item>
<item>
	<guid isPermaLink="true">https://bioinformaticsonline.com/thewire/view/23102</guid>
	<pubDate>Fri, 03 Jul 2015 01:50:13 -0500</pubDate>
	<link>https://bioinformaticsonline.com/thewire/view/23102</link>
	<title><![CDATA[Wire post by Rahul Nayak]]></title>
	<description><![CDATA[
<p>Fancy One-Liner http://userweb.eng.gla.ac.uk/umer.ijaz/bioinformatics/oneliners.html #Perl #OneLiner #Bioinformatics #Quick #Common #Tricks #CommandLine #Terminal</p>
]]></description>
	<dc:creator>Rahul Nayak</dc:creator>
</item>
<item>
	<guid isPermaLink="true">https://bioinformaticsonline.com/thewire/view/12784</guid>
	<pubDate>Sat, 12 Jul 2014 15:09:10 -0500</pubDate>
	<link>https://bioinformaticsonline.com/thewire/view/12784</link>
	<title><![CDATA[Wire post by Abhimanyu Singh]]></title>
	<description><![CDATA[
<p>Linux one-liner. https://wikis.utexas.edu/display/bioiteam/Scott%27s+list+of+linux+one-liners #Linux #Oneliner #NGS</p>
]]></description>
	<dc:creator>Abhimanyu Singh</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>

</channel>
</rss>