<?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=30</link>
	<atom:link href="https://bioinformaticsonline.com/thewire/tag/Fasta?offset=30" rel="self" type="application/rss+xml" />
	<description><![CDATA[]]></description>
	
	<item>
	<guid isPermaLink="true">https://bioinformaticsonline.com/thewire/view/34506</guid>
	<pubDate>Sun, 03 Dec 2017 15:39:46 -0600</pubDate>
	<link>https://bioinformaticsonline.com/thewire/view/34506</link>
	<title><![CDATA[Wire post by Radha Agarkar]]></title>
	<description><![CDATA[
<p>Remove the fasta with zero size: awk 'BEGIN {RS = "&gt;" ; FS = "\n" ; ORS = ""} $2 {print "&gt;"$0}' input.fas &gt; output.fas #fasta #remove</p>
]]></description>
	<dc:creator>Radha Agarkar</dc:creator>
</item>
<item>
	<guid isPermaLink="true">https://bioinformaticsonline.com/thewire/view/34389</guid>
	<pubDate>Thu, 23 Nov 2017 08:23:41 -0600</pubDate>
	<link>https://bioinformaticsonline.com/thewire/view/34389</link>
	<title><![CDATA[Wire post by Jit]]></title>
	<description><![CDATA[
<p>Fastq 2 fasta. $ sed -n '1~4s/^@/&gt;/p;2~4p' test.fastq &gt; test.fasta #fastq #fasta #convert</p>
]]></description>
	<dc:creator>Jit</dc:creator>
</item>
<item>
	<guid isPermaLink="true">https://bioinformaticsonline.com/thewire/view/34047</guid>
	<pubDate>Wed, 02 Aug 2017 04:50:14 -0500</pubDate>
	<link>https://bioinformaticsonline.com/thewire/view/34047</link>
	<title><![CDATA[Wire post by Neel]]></title>
	<description><![CDATA[
<p>Reformat you fasta sequence with size. $ seqkit seq -w 50 allGenomeContacted.fa &gt; allGenomeContacted_final.fa #Reformat #Fasta #Size</p>
]]></description>
	<dc:creator>Neel</dc:creator>
</item>
<item>
	<guid isPermaLink="true">https://bioinformaticsonline.com/thewire/view/33932</guid>
	<pubDate>Wed, 19 Jul 2017 08:26:23 -0500</pubDate>
	<link>https://bioinformaticsonline.com/thewire/view/33932</link>
	<title><![CDATA[Wire post by Rahul Nayak]]></title>
	<description><![CDATA[
<p>Remove "|" from fasta header. $ sed 's,|,_,g' -i file.fa #fasta #header #sed</p>
]]></description>
	<dc:creator>Rahul Nayak</dc:creator>
</item>
<item>
	<guid isPermaLink="true">https://bioinformaticsonline.com/thewire/view/33928</guid>
	<pubDate>Wed, 19 Jul 2017 08:22:57 -0500</pubDate>
	<link>https://bioinformaticsonline.com/thewire/view/33928</link>
	<title><![CDATA[Wire post by Rahul Nayak]]></title>
	<description><![CDATA[
<p>Remove unwanted character from fasta file. sed -e '/^[^&gt;]/s/[^ATGCatgc]/N/g' file.fa #fasta #file #header #charater</p>
]]></description>
	<dc:creator>Rahul Nayak</dc:creator>
</item>
<item>
	<guid isPermaLink="true">https://bioinformaticsonline.com/thewire/view/33833</guid>
	<pubDate>Thu, 06 Jul 2017 14:35:32 -0500</pubDate>
	<link>https://bioinformaticsonline.com/thewire/view/33833</link>
	<title><![CDATA[Wire post by Jit]]></title>
	<description><![CDATA[
<p>Remove the unnecessary #fasta #header. $ sed 's/\s.*$//' Adineta_vaga_v2.0.scaffolds.fa &gt; new_file.fasta</p>
]]></description>
	<dc:creator>Jit</dc:creator>
</item>
<item>
	<guid isPermaLink="true">https://bioinformaticsonline.com/thewire/view/33654</guid>
	<pubDate>Fri, 23 Jun 2017 05:06:43 -0500</pubDate>
	<link>https://bioinformaticsonline.com/thewire/view/33654</link>
	<title><![CDATA[Wire post by Rahul Nayak]]></title>
	<description><![CDATA[
<p>Count the number of bases in fasta file. grep -v "&gt;" file.fasta | wc | awk '{print $3-$1}' #Fasta #Count #Bases</p>
]]></description>
	<dc:creator>Rahul Nayak</dc:creator>
</item>
<item>
	<guid isPermaLink="true">https://bioinformaticsonline.com/thewire/view/33589</guid>
	<pubDate>Sun, 18 Jun 2017 14:14:13 -0500</pubDate>
	<link>https://bioinformaticsonline.com/thewire/view/33589</link>
	<title><![CDATA[Wire post by Jit]]></title>
	<description><![CDATA[
<p>Append the string to fasta header. $ sed 's/&gt;.*/&amp;_Bacteria/' foo.in &gt; out.fasta #Sed #Fasta #String #Append</p>
]]></description>
	<dc:creator>Jit</dc:creator>
</item>
<item>
	<guid isPermaLink="true">https://bioinformaticsonline.com/thewire/view/33314</guid>
	<pubDate>Tue, 30 May 2017 05:17:21 -0500</pubDate>
	<link>https://bioinformaticsonline.com/thewire/view/33314</link>
	<title><![CDATA[Wire post by Jit]]></title>
	<description><![CDATA[
<p>Filter #blank #lines from a #fasta file using sed. $  sed '/^$/d' finalSample.fa &gt; finalSample_filtered.fa #Linux #Filter #FASTA #SED</p>
]]></description>
	<dc:creator>Jit</dc:creator>
</item>
<item>
	<guid isPermaLink="true">https://bioinformaticsonline.com/thewire/view/32623</guid>
	<pubDate>Thu, 11 May 2017 10:43:18 -0500</pubDate>
	<link>https://bioinformaticsonline.com/thewire/view/32623</link>
	<title><![CDATA[Wire post by Abhimanyu Singh]]></title>
	<description><![CDATA[
<p>fastq to fasta convertor $ sed -n '1~4s/^@/&gt;/p;2~4p' test.fastq &gt; test.fasta #Convert #Fasta #Fastq #fa #fq</p>
]]></description>
	<dc:creator>Abhimanyu Singh</dc:creator>
</item>
<item>
	<guid isPermaLink="true">https://bioinformaticsonline.com/thewire/view/32259</guid>
	<pubDate>Fri, 21 Apr 2017 08:28:28 -0500</pubDate>
	<link>https://bioinformaticsonline.com/thewire/view/32259</link>
	<title><![CDATA[Wire post by Jit]]></title>
	<description><![CDATA[
<p>To clean up a fasta file so only first column of the header is outputted:$ awk '{print $1}' file.fa &gt; output.fa #Sed #Clean #Header #Fasta</p>
]]></description>
	<dc:creator>Jit</dc:creator>
</item>
<item>
	<guid isPermaLink="true">https://bioinformaticsonline.com/thewire/view/32257</guid>
	<pubDate>Fri, 21 Apr 2017 08:24:53 -0500</pubDate>
	<link>https://bioinformaticsonline.com/thewire/view/32257</link>
	<title><![CDATA[Wire post by Jit]]></title>
	<description><![CDATA[
<p>To add something to end of all header lines: $ sed 's/&gt;.*/&amp;WHATEVERYOUWANT/' file.fa &gt; outfile.fa  #Add #Fasta</p>
]]></description>
	<dc:creator>Jit</dc:creator>
</item>
<item>
	<guid isPermaLink="true">https://bioinformaticsonline.com/thewire/view/31432</guid>
	<pubDate>Wed, 08 Mar 2017 08:11:52 -0600</pubDate>
	<link>https://bioinformaticsonline.com/thewire/view/31432</link>
	<title><![CDATA[Wire post by Jit]]></title>
	<description><![CDATA[
<p>Get the fasta sequence of the coordinates http://bedtools.readthedocs.io/en/latest/content/tools/getfasta.html #Fasta #Bed #Coordinates #Bedtools</p>
]]></description>
	<dc:creator>Jit</dc:creator>
</item>
<item>
	<guid isPermaLink="true">https://bioinformaticsonline.com/thewire/view/29515</guid>
	<pubDate>Wed, 26 Oct 2016 09:24:08 -0500</pubDate>
	<link>https://bioinformaticsonline.com/thewire/view/29515</link>
	<title><![CDATA[Wire post by Shruti Paniwala]]></title>
	<description><![CDATA[
<p>Extract a fasta sequence from multifasta file: samtools faidx multitest.fa and then samtools faidx multitest.fa fasta_id &gt; out.fa #Samtools #Fasta #Extract #Multifasta</p>
]]></description>
	<dc:creator>Shruti Paniwala</dc:creator>
</item>
<item>
	<guid isPermaLink="true">https://bioinformaticsonline.com/thewire/view/29193</guid>
	<pubDate>Fri, 16 Sep 2016 02:57:36 -0500</pubDate>
	<link>https://bioinformaticsonline.com/thewire/view/29193</link>
	<title><![CDATA[Wire post by Radha Agarkar]]></title>
	<description><![CDATA[
<p>Extract fasta sequence by Ids: perl -ne 'if(/^&gt;(\S+)/){$c=grep{/^$1$/}qw(id1 id2)}print if $c' fasta.file  #Perl #PerlOneliner #PerlTrick #Extract #Ids #Fasta</p>
]]></description>
	<dc:creator>Radha Agarkar</dc:creator>
</item>

</channel>
</rss>