[BioC] read.marrayInfo error

Paul Boutros pcboutro@engmail.uwaterloo.ca
Thu, 31 Oct 2002 13:42:41 -0500 (EST)


Gotcha, thanks for the help!
Where would the best place to look for info on known bugs or the like be?
Is there a bug-tracker of some sort, or a site where I can check out
things like this before e-mailing the list?

Paul

On Wed, 30 Oct 2002, Jean Yee Hwa Yang wrote:

> Hi Paul,
> 
> This is a bug in "read.marrayInfo" which I will fix for the next release.
> 
> The problem arrive when you select only one column for info.id.  For the
> moment, one fix is to select both column 4 and 5 of your gal file into the
> marray Info rat.names <- read.marrayInfo(fname=fname, info.id=4:5,
> labels=5, skip=53);
> 
> Alternatively, you can edit the read.marrayLayout
> at the line
> 
> maInfo(descript) <- dat[,info.id]
> 
> to be
> maInfo(descript) <- as.data.frame(dat[,info.id])
> 
> Cheers
> 
> Jean
>