<?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 'Extract']]></title>
	<link>https://bioinformaticsonline.com/thewire/tag/Extract?offset=0</link>
	<atom:link href="https://bioinformaticsonline.com/thewire/tag/Extract?offset=0" rel="self" type="application/rss+xml" />
	<description><![CDATA[]]></description>
	
	<item>
	<guid isPermaLink="true">https://bioinformaticsonline.com/thewire/view/38947</guid>
	<pubDate>Mon, 11 Feb 2019 18:01:41 -0600</pubDate>
	<link>https://bioinformaticsonline.com/thewire/view/38947</link>
	<title><![CDATA[Wire post by Jit]]></title>
	<description><![CDATA[
<p>Extract fasta with pattern $ perl -n -e '$on=(/^&gt;(A)/) if (/^&gt;/); print $_ if ($on);' pilonCor_round1.fasta &gt; A_set.fa<br /> #Pattern #Extract #Fasta</p>
]]></description>
	<dc:creator>Jit</dc:creator>
</item>
<item>
	<guid isPermaLink="true">https://bioinformaticsonline.com/thewire/view/38835</guid>
	<pubDate>Thu, 31 Jan 2019 07:19:50 -0600</pubDate>
	<link>https://bioinformaticsonline.com/thewire/view/38835</link>
	<title><![CDATA[Wire post by Rahul Nayak]]></title>
	<description><![CDATA[
<p>This script will #extract the intron feature #gff3 and sequence from gene_exon gff3 and fasta file. Extract-intron-from-gff3</p>
]]></description>
	<dc:creator>Rahul Nayak</dc:creator>
</item>
<item>
	<guid isPermaLink="true">https://bioinformaticsonline.com/thewire/view/38492</guid>
	<pubDate>Tue, 18 Dec 2018 04:18:32 -0600</pubDate>
	<link>https://bioinformaticsonline.com/thewire/view/38492</link>
	<title><![CDATA[Wire post by Jit]]></title>
	<description><![CDATA[
<p>Extract sequence by ids $ xargs samtools faidx Adineta_vaga.v2.pep.fa &lt; AlienIds &gt; allAlienSeq.fa #Extract #Ids #Sequences</p>
]]></description>
	<dc:creator>Jit</dc:creator>
</item>
<item>
	<guid isPermaLink="true">https://bioinformaticsonline.com/thewire/view/36586</guid>
	<pubDate>Sat, 12 May 2018 12:39:13 -0500</pubDate>
	<link>https://bioinformaticsonline.com/thewire/view/36586</link>
	<title><![CDATA[Wire post by Rahul Agarwal]]></title>
	<description><![CDATA[
<p>https://scrapy.org/ #extract #data #from #websites #webscraping</p>
]]></description>
	<dc:creator>Rahul Agarwal</dc:creator>
</item>
<item>
	<guid isPermaLink="true">https://bioinformaticsonline.com/thewire/view/36259</guid>
	<pubDate>Tue, 17 Apr 2018 16:37:42 -0500</pubDate>
	<link>https://bioinformaticsonline.com/thewire/view/36259</link>
	<title><![CDATA[Wire post by Manisha Mishra]]></title>
	<description><![CDATA[
<p>Extract fasta with Ids. $ perl -ne 'if(/^&gt;(\S+)/){$c=grep{/^$1$/}qw(id1 id2)}print if $c' fasta.file #extract #fasta #sequence #ids</p>
]]></description>
	<dc:creator>Manisha Mishra</dc:creator>
</item>
<item>
	<guid isPermaLink="true">https://bioinformaticsonline.com/thewire/view/36053</guid>
	<pubDate>Wed, 28 Mar 2018 17:14:25 -0500</pubDate>
	<link>https://bioinformaticsonline.com/thewire/view/36053</link>
	<title><![CDATA[Wire post by Rahul Nayak]]></title>
	<description><![CDATA[
<p>#Extract all the files from a #directory and #sub-dir with #pattern. $ find TrimmedDir -type f | grep "L_" | xargs -i cp {} .</p>
]]></description>
	<dc:creator>Rahul Nayak</dc:creator>
</item>
<item>
	<guid isPermaLink="true">https://bioinformaticsonline.com/thewire/view/35933</guid>
	<pubDate>Wed, 14 Mar 2018 10:31:04 -0500</pubDate>
	<link>https://bioinformaticsonline.com/thewire/view/35933</link>
	<title><![CDATA[Wire post by Rahul Nayak]]></title>
	<description><![CDATA[
<p>Get the sequences using coordinates in bed file. $ bedtools getfasta -fi input_file.fa -bed regions_file.bed  #Bed #Extract #Sequence #bedtools</p>
]]></description>
	<dc:creator>Rahul Nayak</dc:creator>
</item>
<item>
	<guid isPermaLink="true">https://bioinformaticsonline.com/thewire/view/33735</guid>
	<pubDate>Fri, 30 Jun 2017 07:16:30 -0500</pubDate>
	<link>https://bioinformaticsonline.com/thewire/view/33735</link>
	<title><![CDATA[Wire post by Jit]]></title>
	<description><![CDATA[
<p>Find a pattern in first 7 characters of reads. bioawk -c fastx 'substr($seq,0,7) == $TAG { print }' reads.fq.gz #Reads #NGS #Extract #Pattern</p>
]]></description>
	<dc:creator>Jit</dc:creator>
</item>
<item>
	<guid isPermaLink="true">https://bioinformaticsonline.com/thewire/view/31542</guid>
	<pubDate>Mon, 13 Mar 2017 06:13:21 -0500</pubDate>
	<link>https://bioinformaticsonline.com/thewire/view/31542</link>
	<title><![CDATA[Wire post by Abhimanyu Singh]]></title>
	<description><![CDATA[
<p>#Extract a #sequence from #multi-fasta file: $ perl -ne 'if(/^&gt;(\S+)/){$c=grep{/^$1$/}qw(id1 id2)}print if $c' fasta.file</p>
]]></description>
	<dc:creator>Abhimanyu Singh</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/29195</guid>
	<pubDate>Fri, 16 Sep 2016 03:00:15 -0500</pubDate>
	<link>https://bioinformaticsonline.com/thewire/view/29195</link>
	<title><![CDATA[Wire post by Radha Agarkar]]></title>
	<description><![CDATA[
<p>Extract sequence by using Ids file (assuming one ids in a line): perl -ne 'if(/^&gt;(\S+)/){$c=$i{$1}}$c?print:chomp;$i{$_}=1 if @ARGV' ids.file fasta.file #PerlTricks #PerlOneliner #Perl #Extract #Ids #</p>
]]></description>
	<dc:creator>Radha Agarkar</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>
<item>
	<guid isPermaLink="true">https://bioinformaticsonline.com/thewire/view/28166</guid>
	<pubDate>Wed, 29 Jun 2016 15:31:47 -0500</pubDate>
	<link>https://bioinformaticsonline.com/thewire/view/28166</link>
	<title><![CDATA[Wire post by Poonam Mahapatra]]></title>
	<description><![CDATA[
<p>#Extract #Chromosome #Number And Start Position #Reads: samtools view bamfile.bam|awk '{print $3 "\t" $4 "\t" $4+length($10)-1}' &gt; newfile.tab</p>
]]></description>
	<dc:creator>Poonam Mahapatra</dc:creator>
</item>
<item>
	<guid isPermaLink="true">https://bioinformaticsonline.com/thewire/view/28028</guid>
	<pubDate>Fri, 24 Jun 2016 09:16:32 -0500</pubDate>
	<link>https://bioinformaticsonline.com/thewire/view/28028</link>
	<title><![CDATA[Wire post by Poonam Mahapatra]]></title>
	<description><![CDATA[
<p>#Extract all #Reads from #BAM file for a #region Chr10:18000-45500 using #samtools: samtools view input.bam "Chr10:18000-45500" &gt; output.bam</p>
]]></description>
	<dc:creator>Poonam Mahapatra</dc:creator>
</item>
<item>
	<guid isPermaLink="true">https://bioinformaticsonline.com/thewire/view/27978</guid>
	<pubDate>Thu, 23 Jun 2016 09:00:18 -0500</pubDate>
	<link>https://bioinformaticsonline.com/thewire/view/27978</link>
	<title><![CDATA[Wire post by Shruti Paniwala]]></title>
	<description><![CDATA[
<p>#Extract #tabbed info from #BAM file with samtools: samtools view test.bam|awk '{print $1 "\t" $2 "\t" $3 "\t" $4 "\t" $4+length($10)-1}' &gt; file.xls</p>
]]></description>
	<dc:creator>Shruti Paniwala</dc:creator>
</item>

</channel>
</rss>