<?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; affymetrix</title>
	<atom:link href="http://www.bio-info-trainee.com/tag/affymetrix/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>用oligo包来读取affymetix的基因表达芯片数据-CEL格式数据</title>
		<link>http://www.bio-info-trainee.com/1586.html</link>
		<comments>http://www.bio-info-trainee.com/1586.html#comments</comments>
		<pubDate>Sat, 23 Apr 2016 14:58:31 +0000</pubDate>
		<dc:creator><![CDATA[ulwvfje]]></dc:creator>
				<category><![CDATA[R]]></category>
		<category><![CDATA[基础软件]]></category>
		<category><![CDATA[affymetrix]]></category>
		<category><![CDATA[bioconductor]]></category>
		<category><![CDATA[oligo]]></category>
		<category><![CDATA[芯片数据]]></category>

		<guid isPermaLink="false">http://www.bio-info-trainee.com/?p=1586</guid>
		<description><![CDATA[前面讲到affy处理的芯片平台是有限的，一般是hgu 95系列和133系列，[H &#8230; <a href="http://www.bio-info-trainee.com/1586.html">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
				<content:encoded><![CDATA[<p>前面讲到affy处理的芯片平台是有限的，一般是hgu 95系列和133系列，[HuGene-1_1-st] Affymetrix Human Gene 1.1 ST Array这个平台虽然也是affymetrix公司的，但是affy包就无法处理 了，这时候就需要oligo包了！</p>
<p>oligo包是R语言的bioconductor系列包的一个，就一个功能，读取affymetix的基因表达芯片数据-CEL格式数据，处理成表达矩阵！！！</p>
<p><span id="more-1586"></span></p>
<p>同理，我们也是要下载原始数据：一个例子：<a href="ftp://ftp.ncbi.nlm.nih.gov/geo/series/GSE48nnn/GSE48452/suppl/GSE48452_RAW.tar">GSE48452</a></p>
<p>下载之后，解压到指定目录，就可以直接用oligo包啦！</p>
<blockquote>
<div>geneCELs=list.celfiles('<span style="color: #ff0000;"><strong>/path/GSE48452/cel_files/</strong></span>',listGzipped=T,<a href="http://full.name">full.name</a>=T)</div>
<div>#用全路径，一般cel文件也是压缩包形式，没必要解压</div>
<div>affyGeneFS &lt;- read.celfiles(geneCELs)  ##读取ｃｅｌ文件</div>
<div>geneCore &lt;- rma(affyGeneFS, target = "core")　 ##这一步是normalization，会比较耗时</div>
<div>genePS &lt;- rma(affyGeneFS, target = "probeset")</div>
<div>#两种normlization的方法，##一般我们会选择transcript相关的</div>
<div>## 这个芯片平台还需要自己把探针ID赋值给表达矩阵</div>
<div>featureData(genePS) &lt;- getNetAffx(genePS, "probeset")</div>
<div>featureData(geneCore) &lt;- getNetAffx(geneCore, "transcript")</div>
<div>## 探针ID还需要注释到基因ID，这里就不讲了！</div>
</blockquote>
<p>处理之后得到的表达矩阵应该是与GEO官网的一致，大家可以自己对照检查一下：</p>
<p>ftp://ftp.ncbi.nlm.nih.gov/geo/series/GSE48nnn/GSE48452/matrix/GSE48452_series_matrix.txt.gz</p>
]]></content:encoded>
			<wfw:commentRss>http://www.bio-info-trainee.com/1586.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
