<?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/%e5%af%b9%e5%ba%94%e5%85%b3%e7%b3%bb/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>用R获取芯片探针与基因的对应关系三部曲-NCBI下载对应关系</title>
		<link>http://www.bio-info-trainee.com/2126.html</link>
		<comments>http://www.bio-info-trainee.com/2126.html#comments</comments>
		<pubDate>Sun, 11 Dec 2016 00:34:42 +0000</pubDate>
		<dc:creator><![CDATA[ulwvfje]]></dc:creator>
				<category><![CDATA[R]]></category>
		<category><![CDATA[基础数据库]]></category>
		<category><![CDATA[对应关系]]></category>
		<category><![CDATA[芯片探针与基因]]></category>

		<guid isPermaLink="false">http://www.bio-info-trainee.com/?p=2126</guid>
		<description><![CDATA[这是系列文章，请先看： 用R获取芯片探针与基因的对应关系三部曲-biocondu &#8230; <a href="http://www.bio-info-trainee.com/2126.html">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
				<content:encoded><![CDATA[<p>这是系列文章，请先看：</p>
<h2><a title="详细阅读 用R获取芯片探针与基因的对应关系三部曲-bioconductor" href="http://www.bio-info-trainee.com/1399.html" rel="bookmark">用R获取芯片探针与基因的对应关系三部曲-bioconductor</a></h2>
<p>ncbi现有的GPL已经过万了，但是bioconductor的芯片注释包不到一千，虽然bioconductor可以解决我们大部分的需要，比如affymetrix的95,133系列，深圳1.0st系列，HTA2.0系列，但是如果碰到比较生僻的芯片，bioconductor也不会刻意为之制作一个bioconductor的包，这时候就需要自行下载NCBI的GPL信息了，也可以通过R来解决：</p>
<p><strong><span style="color: #ff0000;">##本质上是下载一个文件，读进R里面，然后解析行列式，得到芯片探针与基因的对应关系，看下面的代码，你就能理解了。</span></strong><span id="more-2126"></span></p>
<p>## A-AGIL-28 - Agilent Whole Human Genome Microarray 4x44K 014850 G4112F (85 cols x 532 rows)<br />
library(Biobase)<br />
library(GEOquery)<br />
#Download GPL file, put it in the current directory, and load it:<br />
gpl &lt;- getGEO('GPL6480', destdir=".")<br />
colnames(Table(gpl)) ## [1] 41108 17<br />
head(Table(gpl)[,c(1,6,7)]) ## you need to check this , which column do you need<br />
write.csv(Table(gpl)[,c(1,6,7)],"GPL6400.csv")<br />
#platformDB='hgu133plus2.db'<br />
#library(platformDB, character.only=TRUE)<br />
probeset &lt;- featureNames(GSE32575[[1]])<br />
library(Biobase)<br />
library(GEOquery)<br />
#Download GPL file, put it in the current directory, and load it:<br />
gpl &lt;- getGEO('GPL6102', destdir=".")<br />
colnames(Table(gpl)) ## [1] 41108 17<br />
head(Table(gpl)[,c(1,10,13)]) ## you need to check this , which column do you need<br />
probe2symbol=Table(gpl)[,c(1,13)]<br />
## GPL15207 [PrimeView] Affymetrix Human Gene Expression Array<br />
probeset &lt;- featureNames(GSE58979[[1]])<br />
library(Biobase)<br />
library(GEOquery)<br />
#Download GPL file, put it in the current directory, and load it:<br />
gpl &lt;- getGEO('GPL15207', destdir=".")<br />
colnames(Table(gpl)) ## [1] 49395 24<br />
head(Table(gpl)[,c(1,15,19)]) ## you need to check this , which column do you need<br />
probe2symbol=Table(gpl)[,c(1,15)]</p>
<p>## GPL10558 Illumina HumanHT-12 V4.0 expression beadchip<br />
library(Biobase)<br />
library(GEOquery)<br />
#Download GPL file, put it in the current directory, and load it:<br />
gpl &lt;- getGEO('GPL10558', destdir=".")<br />
colnames(Table(gpl)) ## [1] 41108 17<br />
head(Table(gpl)[,c(1,10,13)]) ## you need to check this , which column do you need<br />
probe2symbol=Table(gpl)[,c(1,13)]</p>
<p>&nbsp;</p>
]]></content:encoded>
			<wfw:commentRss>http://www.bio-info-trainee.com/2126.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
