Description Usage Arguments Value Author(s) References Examples
This function creates objects of class marrayInfo
. The marrayInfo
class is used to store
information regarding the target mRNA samples co-hybridized on the arrays or
the spotted probe sequences (e.g. data frame of gene names, annotations, and other identifiers).
1 |
fname |
the name of the file that stores information on target samples or probe sequences. This is usually a file obtained from a database. |
info.id |
the column numbers in |
labels |
the column number in |
notes |
object of class character, vector of explanatory text |
sep |
the field separator character. Values on each line of the file are separated by this character. The default is to read a tab delimited file. |
skip |
the number of lines of the data file to skip before beginning to read data. |
quote |
the set of quoting characters. By default, this is disable by setting ‘quote="\""’. |
... |
further arguments to |
An object of class marrayInfo
.
Jean Yang, yeehwa@stat.berkeley.edu
http://www.bioconductor.org/
1 2 3 4 5 6 7 8 | datadir <- system.file("swirldata", package="marray")
## Reading target sample information
swirl.samples <- read.marrayInfo(file.path(datadir, "SwirlSample.txt"))
## Reading probe sequence information
swirl.gnames <- read.marrayInfo(file.path(datadir, "fish.gal"),
info.id=4:5, labels=5, skip=21)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.