I was essentially doing the same things posted previously.
1: https://support.bioconductor.org/p/70064/
2: https://support.bioconductor.org/p/102005/
Following the note posted on 1, I have successfully downloaded the data of my interest.
library(GEOquery)
data <- getGEO("GSE32894")[[1]]
Unfortunately, I got stuck when I was trying to read "GSE32894" with limma.
idata <- read.ilmn("GSE32894_non-normalized_308UCsamples.txt",probeid = "PROBE_ID",expr="SKBR")
The error shows as follows;
Error in readGenericHeader(fname, columns = expr, sep = sep) :
Specified column headings not found in file
I looked into the documentation (https://www.rdocumentation.org/packages/limma/versions/3.28.14/topics/read.ilmn), none of them worked out.
It should be great if you can give me any kind of suggestion to fix this problem.
Thank you.
In the above the quotation marks
"
are not correct; what is the actual command that you used?Yes, you right. I am sorry for any confusion caused. I will change from reading to opening Illumina HT12 V3.0 Data from GEO.
OP has copied Mark Dunning's code (which was for a specific dataset) from https://support.bioconductor.org/p/70064. I reformated OP's question before, now I've removed the extra quote mark as well.