<?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; 通路</title>
	<atom:link href="http://www.bio-info-trainee.com/tag/%e9%80%9a%e8%b7%af/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>转录组-GO和KEGG富集的R包clusterProfiler</title>
		<link>http://www.bio-info-trainee.com/370.html</link>
		<comments>http://www.bio-info-trainee.com/370.html#comments</comments>
		<pubDate>Thu, 19 Mar 2015 13:41:04 +0000</pubDate>
		<dc:creator><![CDATA[ulwvfje]]></dc:creator>
				<category><![CDATA[生信组学技术]]></category>
		<category><![CDATA[转录组软件]]></category>
		<category><![CDATA[GO]]></category>
		<category><![CDATA[KEGG]]></category>
		<category><![CDATA[富集]]></category>
		<category><![CDATA[通路]]></category>

		<guid isPermaLink="false">http://www.bio-info-trainee.com/?p=370</guid>
		<description><![CDATA[PS： 请不要在问我关于这个包的任何问题，直接联系Y叔，我就两年前用过一次而已， &#8230; <a href="http://www.bio-info-trainee.com/370.html">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
				<content:encoded><![CDATA[<p><span style="color: #ff0000;"><strong>PS： 请不要在问我关于这个包的任何问题，直接联系Y叔，我就两年前用过一次而已，再也没有用</strong></span>过。</p>
<p>Y叔的包更新太频繁了，这个教程已经作废，请不要再照抄了，可以去我们论坛看新的教程：<a href="http://www.biotrainee.com/thread-1084-1-1.html">http://www.biotrainee.com/thread-1084-1-1.html</a></p>
<p>一：下载安装该R包</p>
<p>clusterProfiler是业界很出名的YGC写的R包，非常通俗易懂，也很好用，可以直接根据cuffdiff等找差异的软件找出的差异基因entrez ID号直接做好富集的所有内容；<span id="more-370"></span></p>
<p>Bioconductor网站上面有关于它的介绍，按照上面说的方式来安装即可</p>
<p><a href="http://www.bioconductor.org/packages/release/bioc/html/clusterProfiler.html">http://www.bioconductor.org/packages/release/bioc/html/clusterProfiler.html</a><!--more--></p>
<p>source("http://bioconductor.org/biocLite.R");biocLite("clusterProfiler")</p>
<p><a href="http://www.bio-info-trainee.com/wp-content/uploads/2015/03/转录组-GO和KEGG富集的R包clusterProfiler414.png"><img class="alignnone size-full wp-image-371" src="http://www.bio-info-trainee.com/wp-content/uploads/2015/03/转录组-GO和KEGG富集的R包clusterProfiler414.png" alt="转录组-GO和KEGG富集的R包clusterProfiler414" width="512" height="229" /></a></p>
<p>二、输入数据</p>
<p>diff_gene.entrez文件，是通过各种差异基因软件找出来的差异基因的entrez ID号列表，每一个ID号一行，几百个差异基因就几百行</p>
<p>三、R语言代码</p>
<blockquote><p>setwd("C:\\Users\\Administrator\\Desktop\\ref")</p>
<p>a=read.table("diff_gene.entrez")</p>
<p>require(DOSE)</p>
<p>require(clusterProfiler)</p>
<p>gene=as.character(a[,1])</p>
<p>ego &lt;- enrichGO(gene=gene,organism="human",ont="CC",pvalueCutoff=0.01,readable=TRUE)</p>
<p>ekk &lt;- enrichKEGG(gene=gene,organism="human",pvalueCutoff=0.01,readable=TRUE)</p>
<p>write.csv(summary(ekk),"KEGG-enrich.csv",row.names =F)</p>
<p>write.csv(summary(ego),"GO-enrich.csv",row.names =F)</p></blockquote>
<p>四、输出文件解读</p>
<p>看得懂R语言的都知道，这个代码输出了两个文件KEGG-enrich.csv和GO-enrich.csv，就是我们的GO和KEGG富集的结果，其中内容如下</p>
<p><a href="http://www.bio-info-trainee.com/wp-content/uploads/2015/03/转录组-GO和KEGG富集的R包clusterProfiler1003.png"><img class="alignnone size-full wp-image-372" src="http://www.bio-info-trainee.com/wp-content/uploads/2015/03/转录组-GO和KEGG富集的R包clusterProfiler1003.png" alt="转录组-GO和KEGG富集的R包clusterProfiler1003" width="618" height="290" /></a></p>
<p>上述表格为差异基因的Gene Ontology富集分析结果表格。</p>
<p>GO ID: Gene Ontology数据库中唯一的标号信息</p>
<p>Description ：Gene Ontology功能的描述信息</p>
<p>GeneRatio：差异基因中与该Term相关的基因数与整个差异基因总数的比值</p>
<p>BgRation：所有（ bg）基因中与该Term相关的基因数与所有（ bg）基因的比值</p>
<p>pvalue: 富集分析统计学显著水平，一般情况下， P-value &lt; 0.05 该功能为富集项</p>
<p>p.adjust 矫正后的P-Value</p>
<p>qvalue：对p值进行统计学检验的q值</p>
<p>Count：差异基因中与该Term相关的基因数</p>
<p><a href="http://www.bio-info-trainee.com/wp-content/uploads/2015/03/转录组-GO和KEGG富集的R包clusterProfiler1433.png"><img class="alignnone size-full wp-image-373" src="http://www.bio-info-trainee.com/wp-content/uploads/2015/03/转录组-GO和KEGG富集的R包clusterProfiler1433.png" alt="转录组-GO和KEGG富集的R包clusterProfiler1433" width="727" height="91" /></a></p>
<p>上述表格为差异基因的KEGG Pathway富集分析结果表格。</p>
<p>ID： KEGG 数据库中通路唯一的编号信息。</p>
<p>Description ：Gene Ontology功能的描述信息</p>
<p>GeneRatio：差异基因中与该Term相关的基因数与整个差异基因总数的比值</p>
<p>BgRation：所有（ bg）基因中与该ID相关的基因数与所有（ bg）基因的比值</p>
<p>pvalue: 富集分析统计学显著水平，一般情况下， P-value &lt; 0.05 该功能为富集项</p>
<p>p.adjust 矫正后的P-Value</p>
<p>qvalue：对p值进行统计学检验的q值</p>
<p>Count：差异基因中与该Term相关的基因数</p>
]]></content:encoded>
			<wfw:commentRss>http://www.bio-info-trainee.com/370.html/feed</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
	</channel>
</rss>
