Hey Marty,
I've analysed data from this chip recently (2016). Are you using the limma and oligo packages in R in order to process these?
When you get to the rma() function, you can specify there how you want to summarise the expression values:
Summarised per gene
rma(project, background=TRUE, normalize=TRUE, target="core")
If your array is an 'Exon' array, this may still only summarise to exon-level, requiring you to perform a further [manual] summarisation to gene-level. There are also other options available specifically for these 'Exon' arrays:
- target = ’full'
- target = ’extended’
Summarised per probe set:
rma(project, background=TRUE, normalize=TRUE, target="probeset")
Probe sets target different things, depending on the array type.
------------------------------------
NB - the behaviour of target will greatly depend on the array type!
Kevin
                    
                
                 
So anyone have any ideas?