<?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 'Fasta']]></title>
	<link>https://bioinformaticsonline.com/thewire/tag/Fasta?offset=45</link>
	<atom:link href="https://bioinformaticsonline.com/thewire/tag/Fasta?offset=45" rel="self" type="application/rss+xml" />
	<description><![CDATA[]]></description>
	
	<item>
	<guid isPermaLink="true">https://bioinformaticsonline.com/thewire/view/26583</guid>
	<pubDate>Wed, 09 Mar 2016 08:23:46 -0600</pubDate>
	<link>https://bioinformaticsonline.com/thewire/view/26583</link>
	<title><![CDATA[Wire post by Neel]]></title>
	<description><![CDATA[
<p>Delete space from FASTA header: perl -pe 's/&gt;\S+\K.+//' &lt; file.fasta &gt; new_file.fasta #PerlOneLiner #Trick #Perl #Space #Fasta</p>
]]></description>
	<dc:creator>Neel</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/23767</guid>
	<pubDate>Thu, 13 Aug 2015 00:36:31 -0500</pubDate>
	<link>https://bioinformaticsonline.com/thewire/view/23767</link>
	<title><![CDATA[Wire post by Rahul Nayak]]></title>
	<description><![CDATA[
<p>Sort FASTA sequence by length: cat f1.fasta| awk '{if($0 ~ /^&gt;/){printf "%st", $0}else{print length($0)"t"$0}}'| sort -k2n,2| awk '{print $1"n"$3}' &gt; sequence.fasta #Sort #Fasta #Trick #Onliner</p>
]]></description>
	<dc:creator>Rahul Nayak</dc:creator>
</item>
<item>
	<guid isPermaLink="true">https://bioinformaticsonline.com/thewire/view/12917</guid>
	<pubDate>Mon, 21 Jul 2014 06:37:42 -0500</pubDate>
	<link>https://bioinformaticsonline.com/thewire/view/12917</link>
	<title><![CDATA[Wire post by Jit]]></title>
	<description><![CDATA[
<p>To count number of fasta entries, I use: grep -c '^&gt;' mySequences.fasta #Perl #Count #Number #Fasta #Linux #Grep</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/11552</guid>
	<pubDate>Fri, 06 Jun 2014 02:54:18 -0500</pubDate>
	<link>https://bioinformaticsonline.com/thewire/view/11552</link>
	<title><![CDATA[Wire post by Jit]]></title>
	<description><![CDATA[
<p>Remove N from a fasta file. Go to vi editor, type :%s/N\{25,\}//g and press enter. #Vim #vi #N #Replace #Fasta</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/11190</guid>
	<pubDate>Fri, 30 May 2014 06:08:14 -0500</pubDate>
	<link>https://bioinformaticsonline.com/thewire/view/11190</link>
	<title><![CDATA[Wire post by Jitendra Narayan]]></title>
	<description><![CDATA[
<p>Seqtk is a fast and lightweight tool for processing sequences in the FASTA or FASTQ format. https://github.com/lh3/seqtk #FASTA #FASTAQ #NGS</p>
]]></description>
	<dc:creator>Jitendra Narayan</dc:creator>
</item>
<item>
	<guid isPermaLink="true">https://bioinformaticsonline.com/thewire/view/10991</guid>
	<pubDate>Fri, 23 May 2014 10:10:20 -0500</pubDate>
	<link>https://bioinformaticsonline.com/thewire/view/10991</link>
	<title><![CDATA[Wire post by Jit]]></title>
	<description><![CDATA[
<p>FastaQ 2 Fasta Oneliner: paste - - - -&lt; totalRNA_placental_1.fastq | perl -pale'$_="@F[0..1]"'|tr "\^@" "\&gt;" | perl -pale 's/\s/\n/g' #Oneliner #NGS #FastaQ #Fasta</p>
]]></description>
	<dc:creator>Jit</dc:creator>
</item>
<item>
	<guid isPermaLink="true">https://bioinformaticsonline.com/thewire/view/10779</guid>
	<pubDate>Mon, 12 May 2014 04:47:30 -0500</pubDate>
	<link>https://bioinformaticsonline.com/thewire/view/10779</link>
	<title><![CDATA[Wire post by Neel]]></title>
	<description><![CDATA[
<p>zcat input_file.fastq.gz | awk 'NR%4==1{printf "&gt;%s\n", substr($0,2)}NR%4==2{print}' &gt; output_file.fa #fastaQ2fasta #fastaq #fasta #Oneliner</p>
]]></description>
	<dc:creator>Neel</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>

</channel>
</rss>