R error : Error in getEAWP(object) : data object isn't of a recognized data class
I get this error in microarray analysis
> fit = lmFit(DataSeries, design)
Error in getEAWP(object) : data object isn't of a recognized data class
microarray
geoquery
• 2,488 views
•
link
updated
by
Basti •
•
written
by
ali.kian.saei •
0 answers
No answers yet.
Log in to answer this question.
More posts like this
-
What type of normalization does removeBatchEffect function require as the input?
written by ev97 •I want to use `removeBatchEffect` from `limma` in my RNA data but I don't know how the input has to be. I know that I …
-
R error: unable to find an inherited method for function ‘exprs’ for signature ‘"list"’
written by ali.kian.saei •Hi I get this error in exprs >DataSeries = getGEO("GSE5847", GSEMatrix = T, AnnotGPL = T, destdir = "D:/Microarray Data/sharifi.data" ) >expressionData = exprs(DataSeries) >Error …
-
Lmfit function, to analyse differential expressions, not coming from arrays
written by claire.lamaison •Hi, i have to analyse the differential expression of 700 genes, for patients at diag and relapse i have normalized counts with log2 i would …
-
Tale as old as time: lmFit dimension issues
written by leonmcswain •I have seen some other posts on here but after going through them Im not finding a solution. I am using limma to do DE …
-
DEG Analysis in R
written by anasjamshedI want to identify DEGs from 79 samples of GSE75693 selected based on the threshold P < 0.01 and fold change >2.0. But my code …
-
What this error means?Error in getEAWP(object) : data object isn't of a recognized data class
written by Sib •I am performing differential expression analysis by R. After constructing design when I entered > fit<- lmFit(gset,design) I got the error "Error in getEAWP(object) : …
-
How to run removeBatchEffect function?
written by anamariaHi, I have design matrix which looks like this: > head(design) (Intercept) SMTSISCH SMRIN AGE SV1 SV2 SV3 GTEX-1122O 1 1363 10.0 64 0.01910439 -0.06545069 …
-
Error of Groups in R
written by 12021560-040> fit = lmFit(gse50397eset, design_gse50397) Error in lmFit(gse50397eset, design_gse50397) : row dimension of design doesn't match column dimension of data object. Can anyone please help …
-
Error in design matrix command of R
written by 786Hi I'm working on R and facing some error can anyone please help me out in removing the error please. It will be very helpful. …
-
reading microarray data in R
written by 12021560-002 •hi I am reading microarray data through R. please pin point the mistake in the command. fit = lmFit(gse21340eset, design_gse21340) Error in lmFit(gse21340eset, design_gse21340) : …
Please use the formatting bar (especially the

codeoption) to present your post better. You can use backticks for inline code (`text` becomestext), or select a chunk of text and use the highlighted button to format it as a code block. If your code has long lines with a single command, break those lines into multiple lines with proper escape sequences so they're easier to read and still run when copy-pasted. I've done it for you this time.Did you do this R error: unable to find an inherited method for function ‘exprs’ for signature ‘"list"’ ? Probably the same error, you are trying to fit that list into the function rather than the ExpressionSet.
What is the output of
class(DataSeries)andclass(design)?