Displaying 1 result from an estimated 1 matches for "gse3141".
Did you mean:
gb13141
2012 Feb 28
1
Error in read.table(file = file, header = header, sep = sep, quote = quote, : more columns than column names
...the ?read.delim page; I tried changing header = TRUE, and row.names =
TRUE-- but I've still been having trouble fixing it, so I would greatly
appreciate any help you can provide. Here is my code:
rm(list=ls())
source("../../functions.R")
uncurated <- read.csv("../uncurated/GSE3141_full_pdata.csv", as.is
=TRUE,row.names=1)
celfile.dir <- "../../../DATA/GSE3141/RAW"
##initial creation of curated dataframe
curated <- initialCuratedDF(rownames(uncurated),
template.filename="template.csv")
The error occurs when I run this line:
> curated <-...