<?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 'header']]></title>
	<link>https://bioinformaticsonline.com/thewire/tag/header?</link>
	<atom:link href="https://bioinformaticsonline.com/thewire/tag/header?" rel="self" type="application/rss+xml" />
	<description><![CDATA[]]></description>
	
	<item>
	<guid isPermaLink="true">https://bioinformaticsonline.com/thewire/view/44433</guid>
	<pubDate>Mon, 22 Jan 2024 03:25:18 -0600</pubDate>
	<link>https://bioinformaticsonline.com/thewire/view/44433</link>
	<title><![CDATA[Wire post by BioStar]]></title>
	<description><![CDATA[
<p>Delete all the headers from multifasta file $ awk 'BEGIN {print "&gt;"ARGV[1]};!/^&gt;/{print}' test.fa #fasta #delete #header #multifasta</p>
]]></description>
	<dc:creator>BioStar</dc:creator>
</item>
<item>
	<guid isPermaLink="true">https://bioinformaticsonline.com/thewire/view/40307</guid>
	<pubDate>Fri, 29 Nov 2019 22:14:54 -0600</pubDate>
	<link>https://bioinformaticsonline.com/thewire/view/40307</link>
	<title><![CDATA[Wire post by Neel]]></title>
	<description><![CDATA[
<p>Perl onliner to add string to each of the fasta header. $ perl -p -e 's/^(&gt;.*)$/$1-origin/g' in.fasta &gt; out.fasta  #String #Header #Fasta</p>
]]></description>
	<dc:creator>Neel</dc:creator>
</item>
<item>
	<guid isPermaLink="true">https://bioinformaticsonline.com/thewire/view/40255</guid>
	<pubDate>Fri, 15 Nov 2019 23:13:24 -0600</pubDate>
	<link>https://bioinformaticsonline.com/thewire/view/40255</link>
	<title><![CDATA[Wire post by Neel]]></title>
	<description><![CDATA[
<p>#Rename the #fasta #header and #keep first $ perl -ne 'if (/^(&gt;\S+)/){print "$1\n";}else{print $_;}' realTestDATA.fa &gt; realTestDATA_headerCorrected.fa #Perl</p>
]]></description>
	<dc:creator>Neel</dc:creator>
</item>
<item>
	<guid isPermaLink="true">https://bioinformaticsonline.com/thewire/view/38942</guid>
	<pubDate>Mon, 11 Feb 2019 06:11:41 -0600</pubDate>
	<link>https://bioinformaticsonline.com/thewire/view/38942</link>
	<title><![CDATA[Wire post by Rahul Nayak]]></title>
	<description><![CDATA[
<p>One liner to remove the description information from a fasta file and just keep the identifier $ perl -p -i -e 's/&gt;(.+?) .+/&gt;$1/g' sample1.fa  #clean #header #fasta</p>
]]></description>
	<dc:creator>Rahul Nayak</dc:creator>
</item>
<item>
	<guid isPermaLink="true">https://bioinformaticsonline.com/thewire/view/38508</guid>
	<pubDate>Thu, 20 Dec 2018 13:18:03 -0600</pubDate>
	<link>https://bioinformaticsonline.com/thewire/view/38508</link>
	<title><![CDATA[Wire post by Rahul Nayak]]></title>
	<description><![CDATA[
<p>Add number in fasta header $ awk '/^&gt;/{$0=$0"_"(++i)}1' infile.fa #fasta #header #add #number #count</p>
]]></description>
	<dc:creator>Rahul Nayak</dc:creator>
</item>
<item>
	<guid isPermaLink="true">https://bioinformaticsonline.com/thewire/view/38058</guid>
	<pubDate>Fri, 02 Nov 2018 09:23:44 -0500</pubDate>
	<link>https://bioinformaticsonline.com/thewire/view/38058</link>
	<title><![CDATA[Wire post by Jit]]></title>
	<description><![CDATA[
<p>Rename the fasta header perl -ane 'if(/\&gt;/){$a++;print "&gt;LR$a\n"}else{print;}' allPacBio_clean.fa &gt; allPacBio_clean_shortName.fa<br /> #fasta #header #rename</p>
]]></description>
	<dc:creator>Jit</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/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>

</channel>
</rss>