source: BioInfo/JustRMA.R

Last change on this file was 23, checked in by jazz, 16 years ago

Sample R Code from YM. Prof. Chung

File size: 354 bytes
Line 
1######## justRMA #############
2
3setwd("D:\\Women cancer\\ovary")
4
5rm(list=ls())
6
7memory.limit(size=2000)
8
9memory.size()
10
11library(affy)
12
13CELNames<-dir(".", "[.]CEL")
14
15CELNames<-CELNames[1:145]
16
17data <- justRMA(filenames=CELNames)
18## 完成到此即成功 ##
19
20
21CelData <- exprs(data)
22
23write.table(CelData,"CelData.txt", sep="\t")
24
25## total about 145 .CELs
Note: See TracBrowser for help on using the repository browser.