Raw intensities for microarray data
1
0
Entering edit mode
12 months ago
vin23 ▴ 10

Hello, I am preprocessing a microarray data and I want the raw intensities for all the samples. I used the function exprs() but the data frame had no probe annotation in the rownames. Can anyone help me to obtain the raw expression values with the probe IDs for the samples?

Microarray geneexpression affymetrix R • 847 views
ADD COMMENT
0
Entering edit mode

It's unclear where the problem is. Is this public data, and if so how did you obtain it and from where? What format do you have right now?

ADD REPLY
0
Entering edit mode

It is a publicly available data which I obtained from GEO platform. The format in which the files are right now is .CEL. I read the files and tried to obtain the expression of the files using exprs() function.

ADD REPLY
0
Entering edit mode
12 months ago
rishav513 ▴ 30

Install the "gcrma" package in R then

data.gcrma = gcrma(data)

exprs(data.gcrma)

ADD COMMENT
0
Entering edit mode

gcrma normalizes the data and what I am looking for is just raw intensities corresponding to its probe IDs.

ADD REPLY
0
Entering edit mode

Kindly show the step-by-step code that you followed and also the expression data info

ADD REPLY
0
Entering edit mode

setwd() library(affy) library(tibble)

celpath = "XXXXXX" #specify the CEL path

data = ReadAffy(celfile.path=celpath) #Import cel files

Obtain raw intensities

expr = exprs(data)

After this I obtain a matrix which has no probe IDs.

Expression data info Platform: Affymetrix Human Genome U133 Plus 2.0 Array (Obtained .CEL files from GEO)

ADD REPLY

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