I am doing differential expression of Agilent two-channel microarray analysis and I got the MA list and I want to convert it to expression matrix, can I use MAlist$A to produce it as it is log2 values.
the M matrix has a lot of negative values and it is really low and I do not know if it is ok or not?
here is the box plot
my code
require('limma')
targetinfo <- readTargets('targets.txt', sep = '\t')
project <- read.maimages(targetinfo, source = 'agilent')
# Perform background correction on the fluorescent intensities
MA <- backgroundCorrect(project, method = 'normexp', offset = 16)
Here is my target.txt
show(targets)
FileName disease
1 SampleFiles/GSM176570.txt FX
2 SampleFiles/GSM176575.txt FX
3 SampleFiles/GSM176579.txt FX
4 SampleFiles/GSM176583.txt FX
5 SampleFiles/GSM176586.txt C
6 SampleFiles/GSM176589.txt C
The short answer is you should use the M values. I cannot see your target files, so I have no clue what the background correction is done over.
A good way to convert is to use the
convert
package as shown in this manual for expression set, so below I used an example data similar to yours:Then convert:
You can check the values:
And its the same as: