<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>生信菜鸟团 &#187; tophat</title>
	<atom:link href="http://www.bio-info-trainee.com/tag/tophat/feed" rel="self" type="application/rss+xml" />
	<link>http://www.bio-info-trainee.com</link>
	<description>欢迎去论坛biotrainee.com留言参与讨论，或者关注同名微信公众号biotrainee</description>
	<lastBuildDate>Sat, 28 Jun 2025 14:30:13 +0000</lastBuildDate>
	<language>zh-CN</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>https://wordpress.org/?v=4.1.33</generator>
	<item>
		<title>RNA-seq比对软件HISAT说明书</title>
		<link>http://www.bio-info-trainee.com/731.html</link>
		<comments>http://www.bio-info-trainee.com/731.html#comments</comments>
		<pubDate>Sun, 10 May 2015 14:47:36 +0000</pubDate>
		<dc:creator><![CDATA[ulwvfje]]></dc:creator>
				<category><![CDATA[转录组软件]]></category>
		<category><![CDATA[hisat]]></category>
		<category><![CDATA[RNA-seq]]></category>
		<category><![CDATA[tophat]]></category>

		<guid isPermaLink="false">http://www.bio-info-trainee.com/?p=731</guid>
		<description><![CDATA[取代bowtie+tophat进行RNA-seq比对 HISAT全称为Hiera &#8230; <a href="http://www.bio-info-trainee.com/731.html">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
				<content:encoded><![CDATA[<h3><b>取代bowtie+tophat进行RNA-seq比对</b></h3>
<p><a href="http://www.plob.org/tag/hisat">HISAT</a>全称为Hierarchical Indexing for Spliced Alignment of Transcripts，由约翰霍普金斯大学开发。它取代Bowtie/TopHat程序，能够将RNA-Seq的读取与基因组进行快速比对。这项成果发表在3月9日的《Nature Methods》上。</p>
<p><a href="http://www.plob.org/tag/hisat">HISAT</a>利用大量FM索引，以覆盖整个基因组。以人类基因组为例，它需要48,000个索引，每个索引代表~64,000 bp的基因组区域。这些小的索引结合几种比对策略，实现了RNA-Seq读取的高效比对，特别是那些跨越多个外显子的读取。尽管它利用大量索引，但<a href="http://www.plob.org/tag/hisat">HISAT</a>只需要4.3 GB的内存。这种应用程序支持任何规模的基因组，包括那些超过40亿个碱基的。</p>
<p><a href="http://www.plob.org/tag/hisat">HISAT</a>软件可从以下地址获取：<a href="http://ccb.jhu.edu/software/hisat/index.shtml。">http://ccb.jhu.edu/software/hisat/index.shtml。</a></p>
<p>首先，我们安装这个软件！</p>
<p>Wget <a href="http://ccb.jhu.edu/software/hisat/downloads/hisat-0.1.5-beta-source.zip">http://ccb.jhu.edu/software/hisat/downloads/hisat-0.1.5-beta-source.zip</a></p>
<p>官网下载的是源码包，需要make一下，make之后目录下面就多了很多程序，绿色的那些都是，看起来是不是很眼熟呀！！！</p>
<p>哈哈，这完全就是bowtie的模拟版本！！！</p>
<p><a href="http://www.bio-info-trainee.com/wp-content/uploads/2015/05/HISAT取代bowtie-tophat进行RNA-seq比对1222.png"><img class="alignnone size-full wp-image-732" src="http://www.bio-info-trainee.com/wp-content/uploads/2015/05/HISAT取代bowtie-tophat进行RNA-seq比对1222.png" alt="HISAT取代bowtie+tophat进行RNA-seq比对1222" width="414" height="275" /></a></p>
<p>也可以从github里面下载，wget https://codeload.github.com/infphilo/hisat/zip/master</p>
<p>下载后直接解压即可使用啦。当然这个软件本身也有着详尽的说明书</p>
<p><a href="http://ccb.jhu.edu/software/hisat/manual.shtml">http://ccb.jhu.edu/software/hisat/manual.shtml</a></p>
<p>然后就是准备数据，它跟tophat一样的功能。就是把用RNA-seq方法测序得到的fastq文件比对到参考基因组上面，所以就准这两个文件了哦</p>
<p>接下来是运行程序！</p>
<p>说明书上面写着分成两个步骤，构建索引和比对。</p>
<p>这个软件包模仿bowtie自带了一个example数据，而且它的说明书也是针对于那个example来的，我也简单运行一下。</p>
<p>$HISAT_HOME/hisat-build $HISAT_HOME/example/reference/22_20-21M.fa 22_20-21M_hisat</p>
<p>构建索引的命令如上，跟bowtie一样我修改了一下</p>
<p>/home/jmzeng/hoston/RNA-soft/hisat-0.1.5-beta/hisat-build 22_20-21M.fa  my_hisat_index</p>
<p>连日志都跟bowtie一模一样，哈哈，可以看到我们的这个参考fasta文件 22_20-21M.fa 就变成索引文件啦，索引还是很多的！</p>
<p><a href="http://www.bio-info-trainee.com/wp-content/uploads/2015/05/HISAT取代bowtie-tophat进行RNA-seq比对1871.png"><img class="alignnone size-full wp-image-733" src="http://www.bio-info-trainee.com/wp-content/uploads/2015/05/HISAT取代bowtie-tophat进行RNA-seq比对1871.png" alt="HISAT取代bowtie+tophat进行RNA-seq比对1871" width="402" height="218" /></a></p>
<p>然后就是比对咯，还是跟bowtie一样</p>
<p>$HISAT_HOME/hisat -x 22_20-21M_hisat -U $HISAT_HOME/example/reads/reads_1.fq -S eg1.sam</p>
<p>我的命令是</p>
<p>/home/jmzeng/hoston/RNA-soft/hisat-0.1.5-beta/hisat -x  my_hisat_index -U ../reads/reads_1.fq  -S reads1.sam</p>
<p>1000 reads; of these:</p>
<p>1000 (100.00%) were unpaired; of these:</p>
<p>0 (0.00%) aligned 0 times</p>
<p>1000 (100.00%) aligned exactly 1 time</p>
<p>0 (0.00%) aligned &gt;1 times</p>
<p>100.00% overall alignment rate</p>
<p>哈哈，到这里。这个软件就运行完毕啦！！！是不是非常简单，只有你会用bowtie，这个就没有问题。当然啦，软件还是有很多细节是需要调整的。我下面就简单讲一个实际的例子哈！</p>
<p>首先，我用了1.5小时把4.6G的小鼠基因组构建了索引</p>
<p>/home/jmzeng/hoston/RNA-soft/hisat-0.1.5-beta/hisat-build  Mus_musculus.GRCm38.fa.fa mouse_hisat_index</p>
<p><a href="http://www.bio-info-trainee.com/wp-content/uploads/2015/05/HISAT取代bowtie-tophat进行RNA-seq比对2512.png"><img class="alignnone size-full wp-image-734" src="http://www.bio-info-trainee.com/wp-content/uploads/2015/05/HISAT取代bowtie-tophat进行RNA-seq比对2512.png" alt="HISAT取代bowtie+tophat进行RNA-seq比对2512" width="434" height="192" /></a></p>
<p>然后对我的四个测序文件进行比对。</p>
<p>for i in *fq</p>
<p>do</p>
<p>/home/jmzeng/hoston/RNA-soft/hisat-0.1.5-beta/hisat  -x  /home/jmzeng/hoston/mouse/mouse_hisat_index  \</p>
<p>-p 30 -U  $i.trimmed.single  -S ./hisat_out/${i%.*}.sam</p>
<p>done</p>
<p>它运行的速度的确要比tophat快好多，太可怕的速度！！！！至于是否多消耗了内存我就没有看了</p>
<p>4.6G的小鼠，5G的测序数据，我只用了五个核，居然十分钟就跑完了！</p>
<p>然后听群友说是因为没有加 --known-splicesite-infile &lt;path&gt;这个参数的原因，没有用gtf文件来指导我们的RNA数据的比对，这样是不对的！</p>
<p>需要用下面这个脚本把gtf文件处理一下，然后导入什么那个参数来指导RNA比对。</p>
<p>extract_splice_sites.py genes.gtf &gt; splicesites.txt</p>
<p>但是我报错了，错误很奇怪，没解决，但是我换了个 extract_splice_sites.py  程序，就可以运行啦！之前是HISAT 0.1.5-beta release 2/25/2015里面的python程序，后来我换做了github里面的就可以啦！</p>
<p>/home/jmzeng/hoston/RNA-soft/hisat-master/extract_splice_sites.py Mus_musculus.GRCm38.79.gtf &gt;mouse_splicesites.txt</p>
<p><a href="http://www.bio-info-trainee.com/wp-content/uploads/2015/05/HISAT取代bowtie-tophat进行RNA-seq比对3218.png"><img class="alignnone size-full wp-image-735" src="http://www.bio-info-trainee.com/wp-content/uploads/2015/05/HISAT取代bowtie-tophat进行RNA-seq比对3218.png" alt="HISAT取代bowtie+tophat进行RNA-seq比对3218" width="319" height="155" /></a></p>
<p>21192819 reads; of these:<br />
21192819 (100.00%) were unpaired; of these:<br />
14236834 (67.18%) aligned 0 times<br />
5437800 (25.66%) aligned exactly 1 time<br />
1518185 (7.16%) aligned &gt;1 times</p>
<p>感觉没有变化，不知道为什么？</p>
<p>21192819 reads; of these:</p>
<p>21192819 (100.00%) were unpaired; of these:</p>
<p>14236838 (67.18%) aligned 0 times</p>
<p>5437793 (25.66%) aligned exactly 1 time</p>
<p>1518188 (7.16%) aligned &gt;1 times</p>
<p>32.82% overall alignment rate</p>
<p>发表这个软件的文献本身也把这个软件跟其它软件做了详尽的对比</p>
<p><a href="http://www.nature.com/nmeth/journal/v12/n4/full/nmeth.3317.html">http://www.nature.com/nmeth/journal/v12/n4/full/nmeth.3317.html</a></p>
<table>
<tbody>
<tr>
<td width="106"><b>Program</b></td>
<td width="204"><b>Run time (min)</b></td>
<td width="248"><b>Memory usage (GB)</b></td>
</tr>
<tr>
<td colspan="3" width="559">Run times and memory usage for HISAT and other spliced aligners to align 109 million 101-bp RNA-seq reads from a lung fibroblast data set. We used three CPU cores to run the programs on a Mac Pro with a 3.7 GHz Quad-Core Intel Xeon E5 processor and 64 GB of RAM.</td>
</tr>
<tr>
<td width="106">HISATx1</td>
<td width="204">22.7</td>
<td width="248">4.3</td>
</tr>
<tr>
<td width="106">HISATx2</td>
<td width="204">47.7</td>
<td width="248">4.3</td>
</tr>
<tr>
<td width="106">HISAT</td>
<td width="204">26.7</td>
<td width="248">4.3</td>
</tr>
<tr>
<td width="106">STAR</td>
<td width="204">25</td>
<td width="248">28</td>
</tr>
<tr>
<td width="106">STARx2</td>
<td width="204">50.5</td>
<td width="248">28</td>
</tr>
<tr>
<td width="106">GSNAP</td>
<td width="204">291.9</td>
<td width="248">20.2</td>
</tr>
<tr>
<td width="106">OLego</td>
<td width="204">989.5</td>
<td width="248">3.7</td>
</tr>
<tr>
<td width="106">TopHat2</td>
<td width="204">1,170</td>
<td width="248">4.3</td>
</tr>
</tbody>
</table>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>参考：<a href="http://www.plob.org/2015/03/20/8980.html">http://www.plob.org/2015/03/20/8980.html</a></p>
<p><a href="http://nextgenseek.com/2015/03/hisat-a-fast-and-memory-lean-rna-seq-aligner/">http://nextgenseek.com/2015/03/hisat-a-fast-and-memory-lean-rna-seq-aligner/</a></p>
<p>&nbsp;</p>
]]></content:encoded>
			<wfw:commentRss>http://www.bio-info-trainee.com/731.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>RNA-seq的比对软件star说明书</title>
		<link>http://www.bio-info-trainee.com/727.html</link>
		<comments>http://www.bio-info-trainee.com/727.html#comments</comments>
		<pubDate>Sun, 10 May 2015 14:42:11 +0000</pubDate>
		<dc:creator><![CDATA[ulwvfje]]></dc:creator>
				<category><![CDATA[生信组学技术]]></category>
		<category><![CDATA[转录组软件]]></category>
		<category><![CDATA[RNA-seq]]></category>
		<category><![CDATA[star]]></category>
		<category><![CDATA[tophat]]></category>

		<guid isPermaLink="false">http://www.bio-info-trainee.com/?p=727</guid>
		<description><![CDATA[类似于tophat的软件 首先当然是下载软件啦！ 两个地方可以下载，一个是谷歌c &#8230; <a href="http://www.bio-info-trainee.com/727.html">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
				<content:encoded><![CDATA[<h3>类似于tophat的软件<br />
<b></b></h3>
<p>首先当然是下载软件啦！</p>
<p>两个地方可以下载，一个是谷歌code中心，被墙啦，另一个是github，我的最爱。</p>
<p>wget <a href="https://codeload.github.com/alexdobin/STAR/zip/master">https://codeload.github.com/alexdobin/STAR/zip/master</a></p>
<p><a href="http://www.bio-info-trainee.com/wp-content/uploads/2015/05/2013-RNA-seq的star-类似于tophat的软件说明书217.png"><img class="alignnone size-full wp-image-728" src="http://www.bio-info-trainee.com/wp-content/uploads/2015/05/2013-RNA-seq的star-类似于tophat的软件说明书217.png" alt="2013-RNA-seq的star-类似于tophat的软件说明书217" width="366" height="195" /></a></p>
<p>解压即可使用啦，其中程序在bin目录下面，根据自己的平台调用即可！</p>
<p>然后doc里面还有个pdf的说明文档，写的非常清楚，我也是看着那个文档学的这个软件！</p>
<p>接下来就是准备数据啦！</p>
<p>既然是类似于tophat一样的比对软件，当然是准备参考基因组和测序数据咯，毫无悬念。</p>
<p>然后 该软件也给出了一些测试数据</p>
<p><a href="ftp://ftp2.cshl.edu/gingeraslab/tracks/STARrelease/2.1.4/">ftp://ftp2.cshl.edu/gingeraslab/tracks/STARrelease/2.1.4/</a></p>
<p>然后就是运行程序的命令！</p>
<p>分为两个步骤：首先构建索引，然后比对即可，中间的参数根据具体需要可以细调！</p>
<p>构建索引时候，软件说明书给的例子是</p>
<p>The basic options to generate genome indices are as follows:<br />
--runThreadN <i>NumberOfThreads</i><br />
--runMode genomeGenerate<br />
--genomeDir <i>/path/to/genomeDir</i><br />
--genomeFastaFiles <i>/path/to/genome/fasta1 /path/to/genome/fasta2 ...</i><br />
--sjdbGTFfile <i>/path/to/annotations.gtf</i><br />
--sjdbOverhang <i>ReadLength-1</i></p>
<p>我模仿了一下。对我从ensembl ftp里面下载的老鼠基因组构建了索引</p>
<p>/home/jmzeng/hoston/RNA-soft/STAR-master/bin/Linux_x86_64/STAR  \</p>
<p>--runThreadN 30 #我的服务器还比较大，可以使用30个CPU  \</p>
<p>--runMode genomeGenerate \</p>
<p>--genomeDir  /home/jmzeng/hoston/mouse/STAR-mouse #构建好的索引放在这个目录 \</p>
<p>--genomeFastaFiles  /home/jmzeng/hoston/mouse/Mus_musculus.GRCm38.fa.fa \</p>
<p>--sjdbGTFfile /home/jmzeng/hoston/mouse/Mus_musculus.GRCm38.79.gtf \</p>
<p>--sjdbOverhang 284   #我的测序数据长短不一，最长的是285bp</p>
<p>当然注释的地方你要删除掉才行呀，因为cpu用的比较多。</p>
<p><a href="http://www.bio-info-trainee.com/wp-content/uploads/2015/05/2013-RNA-seq的star-类似于tophat的软件说明书1302.png"><img class="alignnone size-full wp-image-729" src="http://www.bio-info-trainee.com/wp-content/uploads/2015/05/2013-RNA-seq的star-类似于tophat的软件说明书1302.png" alt="2013-RNA-seq的star-类似于tophat的软件说明书1302" width="554" height="467" /></a></p>
<p>算一算时间，对4.6G的小鼠基因组来说，半个小时算是非常快的了！Bowtie2的index要搞两个多小时。</p>
<p>然后就是比对咯。这也是很简单的，软件说明书给的例子是</p>
<p>The basic options to run a mapping job are as follows:<br />
--runThreadN <i>NumberOfThreads</i><br />
--genomeDir <i>/path/to/genomeDir</i><br />
--readFilesIn <i>/path/to/read1 </i>[<i>/path/to/read2</i>]</p>
<p>我稍微理解了一下参数，然后写出了自己的命令。</p>
<p>fq=740WT1.fq.trimmed.single</p>
<p>mkdir  740WT1_star</p>
<p>/home/jmzeng/hoston/RNA-soft/STAR-master/bin/Linux_x86_64/STAR  \</p>
<p>--runThreadN 20  \</p>
<p>--genomeDir  /home/jmzeng/hoston/mouse/STAR-mouse   \</p>
<p>--readFilesIn  $fq \</p>
<p>--outFileNamePrefix  ./740WT1_star/740WT1</p>
<p>如果输出文件需要被cufflinks套装软件继续使用。就需要用一下参数</p>
<p>Cufflinks/Cuffdiff require spliced alignments with XS strand attribute, which STAR will generate with --outSAMstrandField intronMotif option.</p>
<p>还有--outSAMtype参数可以修改输出比对文件格式，可以是sam也可以是bam，可以是sort好的，也可以是不sort的。</p>
<p>最后是输出文件解读咯！</p>
<p>其实没什么好解读的，输出反正就是sam类似的比对文件咯，如果还有其它文件，需要自己好好解读说明书啦。我就不废话了！</p>
<p>&nbsp;</p>
<p>值得一提的是，该程序提供了2次map的建议</p>
<p>The basic idea is to run 1st pass of STAR mapping with the usual parameters , then collect the junctions detected in the first pass, and use them as ”annotated” junctions for the 2nd pass mapping.</p>
<p>在对RNA-seq做snp-calling的时候可以用到，尤其是GATK官方还给出了教程，大家可以好好学习学习！</p>
<p><a href="http://www.broadinstitute.org/gatk/guide/article?id=3891">http://www.broadinstitute.org/gatk/guide/article?id=3891</a></p>
<p>&nbsp;</p>
<p>&nbsp;</p>
]]></content:encoded>
			<wfw:commentRss>http://www.bio-info-trainee.com/727.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>转录组比对软件tophat的使用</title>
		<link>http://www.bio-info-trainee.com/156.html</link>
		<comments>http://www.bio-info-trainee.com/156.html#comments</comments>
		<pubDate>Sat, 14 Mar 2015 12:52:49 +0000</pubDate>
		<dc:creator><![CDATA[ulwvfje]]></dc:creator>
				<category><![CDATA[转录组软件]]></category>
		<category><![CDATA[bowtie]]></category>
		<category><![CDATA[tophat]]></category>
		<category><![CDATA[比对]]></category>

		<guid isPermaLink="false">http://www.bio-info-trainee.com/?p=156</guid>
		<description><![CDATA[转录组比对软件tophat的使用 为什么要用这个软件？：因为转录组reads比对 &#8230; <a href="http://www.bio-info-trainee.com/156.html">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
				<content:encoded><![CDATA[<p style="text-align: center;"><b>转录组比对软件</b><b>tophat</b><b>的使用</b></p>
<p><b>为什么要用这个软件？：因为转录组reads比对到基因组reads用bwa和bowtie的效果都不够好，所以我们选择tophat</b></p>
<p><b>它做了什么？：tophat把测序的转录组的原始reads比对到了参考基因组上面，并且输出了bam（二进制的sam）文件比对结果给我们。（fastq---&gt;bam）</b></p>
<p><b>一：下载安装该软件</b></p>
<p><b>其实一般的生信服务器自然会有高手给安装好了，你只需调用即可，这里我给大家演示一下如何安装。</b></p>
<p><b>wget   </b><a href="http://ccb.jhu.edu/software/tophat/downloads/tophat-2.0.13.Linux_x86_64.tar.gz"><b>http://ccb.jhu.edu/software/tophat/downloads/tophat-2.0.13.Linux_x86_64.tar.gz</b></a></p>
<p><span id="more-156"></span></p>
<p><b>我这里简单下载二进制版本的，直接解压即可使用，里面除了tophat之外，还有好几个小工具，也是挺实用的。</b></p>
<p><b><a href="http://www.bio-info-trainee.com/wp-content/uploads/2015/03/tophat简单使用688.png"><img class="alignnone size-full wp-image-157" src="http://www.bio-info-trainee.com/wp-content/uploads/2015/03/tophat简单使用688.png" alt="tophat简单使用688" width="314" height="341" /></a>       </b></p>
<p><b>二：准备数据</b></p>
<p><b>数据当然是</b><b>测序的转录组的原始reads啦，fastq格式的</b></p>
<p><b><a href="http://www.bio-info-trainee.com/wp-content/uploads/2015/03/tophat简单使用923.png"><img class="alignnone size-full wp-image-158" src="http://www.bio-info-trainee.com/wp-content/uploads/2015/03/tophat简单使用923.png" alt="tophat简单使用923" width="200" height="46" /></a></b></p>
<p><b>还有人的参考基因组，这里选择人的hg19，很容易就下载了，bowtie官网里面有下载并且索引好了所有文件。如果你是自己下载的hg19，需要用bowtie先进行索引，见我的bowtie简单使用教程</b></p>
<p><b><a href="http://www.bio-info-trainee.com/wp-content/uploads/2015/03/tophat简单使用1219.png"><img class="alignnone size-full wp-image-159" src="http://www.bio-info-trainee.com/wp-content/uploads/2015/03/tophat简单使用1219.png" alt="tophat简单使用1219" width="240" height="104" /></a></b></p>
<p><b>三：运行命令</b></p>
<p><b>不需要看那么多的参数，首先要能用</b></p>
<p><b>/home/jmzeng/bio-soft/tophat-2.0.13.Linux_x86_64/tophat2 /home/jmzeng/ref-database/hg19 case1.fq</b></p>
<p><b>拆开看就是tophat2   hg19  case1.fq    即可，不需要设置任何参数，等需要优化的时候再去思考参数的意义，我这里是单端测序的命令。</b></p>
<p><b><a href="http://www.bio-info-trainee.com/wp-content/uploads/2015/03/tophat简单使用1615.png"><img class="alignnone size-full wp-image-160" src="http://www.bio-info-trainee.com/wp-content/uploads/2015/03/tophat简单使用1615.png" alt="tophat简单使用1615" width="550" height="103" /></a></b></p>
<p><b>不过我的习惯是用脚本解决问题，一定要批量化运行的，我设置了30个CPU，也设置了输出目录，还加上了一个转录本</b></p>
<p><b><a href="http://www.bio-info-trainee.com/wp-content/uploads/2015/03/tophat简单使用1868.png"><img class="alignnone size-full wp-image-161" src="http://www.bio-info-trainee.com/wp-content/uploads/2015/03/tophat简单使用1868.png" alt="tophat简单使用1868" width="667" height="48" /></a></b></p>
<p><b>也许是要等明天才能看结果啦</b></p>
<p><b>好像用了30个cpu跑的很快，每个两个多小时就跑完啦</b></p>
<p><b><a href="http://www.bio-info-trainee.com/wp-content/uploads/2015/03/tophat简单使用2107.png"><img class="alignnone size-full wp-image-162" src="http://www.bio-info-trainee.com/wp-content/uploads/2015/03/tophat简单使用2107.png" alt="tophat简单使用2107" width="668" height="53" /></a></b></p>
<p><b>四：输出文件解读</b></p>
<p><b>这三个文件夹里面就输出文件，每个样本一个输出文件夹，</b></p>
<p><b><a href="http://www.bio-info-trainee.com/wp-content/uploads/2015/03/tophat简单使用2342.png"><img class="alignnone size-full wp-image-163" src="http://www.bio-info-trainee.com/wp-content/uploads/2015/03/tophat简单使用2342.png" alt="tophat简单使用2342" width="378" height="129" /></a></b></p>
<p><b>任意进入一个文件夹可以看</b>到</p>
<p><b>通常，我们只需要那个accepted_hits.bam文件，是我们的测序reads成功比对到hg19什么的比对情况。</b></p>
<p><b><a href="http://www.bio-info-trainee.com/wp-content/uploads/2015/03/tophat简单使用2554.png"><img class="alignnone size-full wp-image-164" src="http://www.bio-info-trainee.com/wp-content/uploads/2015/03/tophat简单使用2554.png" alt="tophat简单使用2554" width="397" height="173" /></a></b></p>
<p><b>接下来就可以用很多软件来处理这个bam文件了</b></p>
<p><b> </b></p>
]]></content:encoded>
			<wfw:commentRss>http://www.bio-info-trainee.com/156.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
