Hello community
I am facing the current problem.
I installed Bioconductor in R and have downloaded Raw data of a certain Series (GEO NBCI) trough R and was able to unzip it and save it in a new folder, called data. In order to read the cel files I created in the new folder 'data' a phenodata.txt file, this was done using the terminal(OSX: ls data/*.CEL > data/phenodata.txt). The phenodata was perfectly created I just adjusted it in Excel, in order to have three columns to look like this:
Name FileName Target
GSM692115 GSM692115 control
GSM692116 GSM692116 rhinovirus
GSM692117 GSM692117 cigarette smoke extract
I made sure to use only tabs and not spaces, saved then the file as txt (tab-delimited text)
Now when I want read this file into R I get following Error, which is not clear to me because I just have three columns with three columns names:
celfiles <- read.affy(covdesc="phenodata.txt", path="data") Fehler in read.table(filename, sep = sep, header = header, quote = quote, : more columns than column names
(Fehler=Error (german ^^))
I appreciate any answers,
M
Your data doesn't fit into the
read.table
function. Perhaps it's your header making the problem. Change " " to "_" and try it again. You can also post a snippet of your data table and check the help page for the?read.affy
function.