<?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: Neel's wire posts]]></title>
	<link>https://bioinformaticsonline.com/thewire/owner/neelam?offset=60</link>
	<atom:link href="https://bioinformaticsonline.com/thewire/owner/neelam?offset=60" rel="self" type="application/rss+xml" />
	<description><![CDATA[]]></description>
	
	<item>
	<guid isPermaLink="true">https://bioinformaticsonline.com/thewire/view/37918</guid>
	<pubDate>Fri, 12 Oct 2018 07:37:52 -0500</pubDate>
	<link>https://bioinformaticsonline.com/thewire/view/37918</link>
	<title><![CDATA[Wire post by Neel]]></title>
	<description><![CDATA[
<p>Consensus of nucleotide sequences https://www.perlmonks.org/bare/?node_id=500962 #Consensus #Nucleotide #DNA</p>
]]></description>
	<dc:creator>Neel</dc:creator>
</item>
<item>
	<guid isPermaLink="true">https://bioinformaticsonline.com/thewire/view/37909</guid>
	<pubDate>Tue, 09 Oct 2018 14:35:36 -0500</pubDate>
	<link>https://bioinformaticsonline.com/thewire/view/37909</link>
	<title><![CDATA[Wire post by Neel]]></title>
	<description><![CDATA[
<p>PacBio data to download http://www.cbcb.umd.edu/software/PBcR/original/index.html #pacbio #data</p>
]]></description>
	<dc:creator>Neel</dc:creator>
</item>
<item>
	<guid isPermaLink="true">https://bioinformaticsonline.com/thewire/view/37810</guid>
	<pubDate>Mon, 01 Oct 2018 11:59:41 -0500</pubDate>
	<link>https://bioinformaticsonline.com/thewire/view/37810</link>
	<title><![CDATA[Wire post by Neel]]></title>
	<description><![CDATA[
<p>GATK is open source https://software.broadinstitute.org/gatk/ #GATK #Broad</p>
]]></description>
	<dc:creator>Neel</dc:creator>
</item>
<item>
	<guid isPermaLink="true">https://bioinformaticsonline.com/thewire/view/37808</guid>
	<pubDate>Mon, 01 Oct 2018 11:41:35 -0500</pubDate>
	<link>https://bioinformaticsonline.com/thewire/view/37808</link>
	<title><![CDATA[Wire post by Neel]]></title>
	<description><![CDATA[
<p>Reverse complement of fasta sequence $ tr -d "\n " &lt; chrII.fa | tr "[ATGCatgcNn]" "[TACGtacgNn]" | rev &gt; chrII_reverseHai.fa #Reverse #Complement #DNA</p>
]]></description>
	<dc:creator>Neel</dc:creator>
</item>
<item>
	<guid isPermaLink="true">https://bioinformaticsonline.com/thewire/view/37805</guid>
	<pubDate>Mon, 01 Oct 2018 09:55:38 -0500</pubDate>
	<link>https://bioinformaticsonline.com/thewire/view/37805</link>
	<title><![CDATA[Wire post by Neel]]></title>
	<description><![CDATA[
<p>Add some text at the beginning of the file $  echo -e "chrII_reverse\n$(cat chrII_reverse.fa )" &gt; chrII_reverse.fa #Add #FirstLine #Text</p>
]]></description>
	<dc:creator>Neel</dc:creator>
</item>
<item>
	<guid isPermaLink="true">https://bioinformaticsonline.com/thewire/view/37803</guid>
	<pubDate>Mon, 01 Oct 2018 09:03:12 -0500</pubDate>
	<link>https://bioinformaticsonline.com/thewire/view/37803</link>
	<title><![CDATA[Wire post by Neel]]></title>
	<description><![CDATA[
<p>Multifasta to singleline fasta. $ awk '/^&gt;/ {printf("\n%s\n",$0);next; } { printf("%s",$0);}  END {printf("\n");}' &lt; file.fa #Multi #Single #Fasta #Convert</p>
]]></description>
	<dc:creator>Neel</dc:creator>
</item>
<item>
	<guid isPermaLink="true">https://bioinformaticsonline.com/thewire/view/37399</guid>
	<pubDate>Fri, 20 Jul 2018 10:10:02 -0500</pubDate>
	<link>https://bioinformaticsonline.com/thewire/view/37399</link>
	<title><![CDATA[Wire post by Neel]]></title>
	<description><![CDATA[
<p>https://gatkforums.broadinstitute.org/gatk/discussion/1268/what-is-a-vcf-and-how-should-i-interpret-it #VCF #vcf #SNP</p>
]]></description>
	<dc:creator>Neel</dc:creator>
</item>
<item>
	<guid isPermaLink="true">https://bioinformaticsonline.com/thewire/view/36929</guid>
	<pubDate>Tue, 12 Jun 2018 13:30:49 -0500</pubDate>
	<link>https://bioinformaticsonline.com/thewire/view/36929</link>
	<title><![CDATA[Wire post by Neel]]></title>
	<description><![CDATA[
<p>#Convert a #multi-line #fasta to a #singleline #fasta $ awk '!/^&gt;/ { printf "%s", $0; n = "\n" } /^&gt;/ { print n $0; n = "" } END { printf "%s", n }' sample1.fa &gt; sample1_singleline.fa</p>
]]></description>
	<dc:creator>Neel</dc:creator>
</item>
<item>
	<guid isPermaLink="true">https://bioinformaticsonline.com/thewire/view/36925</guid>
	<pubDate>Tue, 12 Jun 2018 13:14:13 -0500</pubDate>
	<link>https://bioinformaticsonline.com/thewire/view/36925</link>
	<title><![CDATA[Wire post by Neel]]></title>
	<description><![CDATA[
<p>sed -i -e '/^+/,/^\@/{/^+/!{/^\@/!d}}; /^+/ d; s/@/&gt;/g' OUTPUT.fastq &gt; out.fa #Convert</p>
]]></description>
	<dc:creator>Neel</dc:creator>
</item>
<item>
	<guid isPermaLink="true">https://bioinformaticsonline.com/thewire/view/36492</guid>
	<pubDate>Sun, 06 May 2018 07:29:03 -0500</pubDate>
	<link>https://bioinformaticsonline.com/thewire/view/36492</link>
	<title><![CDATA[Wire post by Neel]]></title>
	<description><![CDATA[
<p>Bioinformatics Job at MDU, Rohtak http://www.mdurohtak.ac.in/pdf18/Advt/ADvertisement%2028%20of%202018.pdf #MDU #Rohtak</p>
]]></description>
	<dc:creator>Neel</dc:creator>
</item>
<item>
	<guid isPermaLink="true">https://bioinformaticsonline.com/thewire/view/36490</guid>
	<pubDate>Sun, 06 May 2018 07:28:19 -0500</pubDate>
	<link>https://bioinformaticsonline.com/thewire/view/36490</link>
	<title><![CDATA[Wire post by Neel]]></title>
	<description><![CDATA[
<p>Bioinformatics job at Naotia University https://drive.google.com/file/d/0B0Y1Fpxmzyd3OHQ3aUNYa3hZY2c/view?pref=2&amp;pli=1 #Job #Neotia #Professor</p>
]]></description>
	<dc:creator>Neel</dc:creator>
</item>
<item>
	<guid isPermaLink="true">https://bioinformaticsonline.com/thewire/view/35790</guid>
	<pubDate>Thu, 01 Mar 2018 10:26:36 -0600</pubDate>
	<link>https://bioinformaticsonline.com/thewire/view/35790</link>
	<title><![CDATA[Wire post by Neel]]></title>
	<description><![CDATA[
<p>One the DVD tray in Ubuntu $ eject $ eject -t #Close #Tray #Ubuntu #DVD</p>
]]></description>
	<dc:creator>Neel</dc:creator>
</item>
<item>
	<guid isPermaLink="true">https://bioinformaticsonline.com/thewire/view/34729</guid>
	<pubDate>Thu, 21 Dec 2017 03:52:03 -0600</pubDate>
	<link>https://bioinformaticsonline.com/thewire/view/34729</link>
	<title><![CDATA[Wire post by Neel]]></title>
	<description><![CDATA[
<p>Bioinformatics opportunity for AU, India students http://allduniv.ac.in/ckfinder/userfiles/files/Final%20Advt%20171117.pdf #AU #Allahabad #Opportunity</p>
]]></description>
	<dc:creator>Neel</dc:creator>
</item>
<item>
	<guid isPermaLink="true">https://bioinformaticsonline.com/thewire/view/34540</guid>
	<pubDate>Wed, 06 Dec 2017 09:09:51 -0600</pubDate>
	<link>https://bioinformaticsonline.com/thewire/view/34540</link>
	<title><![CDATA[Wire post by Neel]]></title>
	<description><![CDATA[
<p>Store all files in a array using perl: my @filesbwa = &lt;$base_name/reads/$base_name.$library.bwa.*fa&gt; #Store #Keep #Array #Perl</p>
]]></description>
	<dc:creator>Neel</dc:creator>
</item>
<item>
	<guid isPermaLink="true">https://bioinformaticsonline.com/thewire/view/34498</guid>
	<pubDate>Sat, 02 Dec 2017 08:51:07 -0600</pubDate>
	<link>https://bioinformaticsonline.com/thewire/view/34498</link>
	<title><![CDATA[Wire post by Neel]]></title>
	<description><![CDATA[
<p>Bioinformatics JRF at IIT https://www.iitr.ac.in/administration/uploads/File/bt/2017/adv30112017.pdf #JRF</p>
]]></description>
	<dc:creator>Neel</dc:creator>
</item>

</channel>
</rss>