problem in microarray data analysis
1
0
Entering edit mode
7.9 years ago
zizigolu ★ 4.3k

hi,

I have about 300 CEL files in a folder like below

cels [1] "GSM359972.CEL.gz" "GSM359973.CEL.gz" "GSM359974.CEL.gz" "GSM359975.CEL.gz" [5] "GSM359976.CEL.gz" "GSM359977.CEL.gz" "GSM359978.CEL.gz" "GSM359979.CEL.gz" [9] "GSM359980.CEL.gz" "GSM359981.CEL.gz" "GSM359982.CEL.gz" "GSM359983.CEL.gz"

I am attempting to unzip them together but I cannot

sapply(paste("data", cels, sep="/"), gunzip)

Error in match.fun(FUN) : object 'gunzip' not found

but I don't know what I am doing wrong and googling too much I didn't find the solution

thank you

gene • 1.9k views
ADD COMMENT
2
Entering edit mode
7.9 years ago
Ar ★ 1.1k

Are you using WIndows laptop/computer ? It seems gunzip is not installed. Anyways, you don't have to uncompress the files. You can directly read CEL.gz files using read.celfiles function using oligo package.

library(oligo)
path <- paste("data", cels, "/", sep="")
cels <- list.files(path = path, all.files = TRUE, pattern = "CEL")
cat("List of cell files: ",cels, "\n")

## reading the files and normalization
celfiles <- read.celfiles(filenames = paste(path,cels,sep = ""))
ADD COMMENT
0
Entering edit mode

Yes right I am working with Windows8 laptop

thank you

ADD REPLY
1
Entering edit mode

same problem, as your previous post;

unpacking zipped file in R

ADD REPLY
0
Entering edit mode

yes today I faced the same problem which I faced 11 months ago...If I had tried to solve my problem 11 months ago today I had not to ask again...

ADD REPLY

Login before adding your answer.

Traffic: 2497 users visited in the last hour
Help About
FAQ
Access RSS
API
Stats

Use of this site constitutes acceptance of our User Agreement and Privacy Policy.

Powered by the version 2.3.6