Error in match.arg in boxplot - oligo package
1
0
Entering edit mode
7.0 years ago
salamandra ▴ 550

When running the following code:

library(oligo)
library(GEOquery)
getGEOSuppFiles("GSE38792")
list.files("GSE38792")
untar("GSE38792/GSE38792_RAW.tar", exdir = "GSE38792/CEL")
list.files("GSE38792/CEL")
celfiles <- list.files("GSE38792/CEL", full=T)
celfiles
# read cel files
rawData <- read.celfiles(celfiles)
rawData
boxplot(rawData)

I get this error with boxplot(rawData):

Error in match.arg(target, c("probeset", "core", "full", "extended")) : 'arg' should be one of "probeset", "core", "full", "extended"

However, when running boxplot on normalized data there's no error:

normData <- rma(rawData)
normData
boxplot(normData)

Could someone please tell me why is that?

R oligo • 3.0k views
ADD COMMENT
0
Entering edit mode

and how can we solve the error?

ADD REPLY
0
Entering edit mode
5.0 years ago
Satyajeet Khare ★ 1.6k

Try

boxplot(rawData, "all", las=3)
ADD COMMENT

Login before adding your answer.

Traffic: 1789 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