Greetings!!
To see the contents of .cel file in R/Bioconductor i used the following commands
celpath="R/win-library/3.3"
> data=ReadAffy(celfile.path = celpath)
> data
AffyBatch object
size of arrays=1164x1164 features (10 kb)
cdf=HG-U133_Plus_2 (??? affyids)
number of samples=1
Error in getCdfInfo(object) :
Could not obtain CDF environment, problems encountered:
Specified environment does not contain HG-U133_Plus_2
Library - package hgu133plus2cdf not installed
Bioconductor - could not connect
> expr = exprs(data)
> int = intensity(data)
> expr[1:10,]
1 2 3 4 5 6 7 8 9 10
110 12382 134 12731 66 90 12682 105 12725 137
> int[1:10,]
1 2 3 4 5 6 7 8 9 10
110 12382 134 12731 66 90 12682 105 12725 137
what does the answer from command exprs and intensity indicate.. is it possible to view the whole file.
thanking in advace.