Description Usage Arguments Details Value Author(s) See Also
These functions are examples of design file parsers, as can be used directly or by tk.design
to produce a cghRA.probes
object from a CGH design file.
1 2 3 4 | Agilent.design(file, name = NULL, organism = as.character(NA),
assembly = as.character(NA), chromosomes = NULL, ...)
custom.design(file, name = NULL, organism = as.character(NA),
assembly = as.character(NA), chromosomes = NULL, ...)
|
file |
Single character value, path to the file to extract the design from (Agilent TDT design file for |
name |
Single character value, the name of the design. |
organism |
Single character value, the name of the organism studied by the current design. |
assembly |
Single character value, the genome assembly version for probe coordinates. |
chromosomes |
Character vector, the ordered list of the chromosome names for the design organism. If |
... |
Further arguments are ignored by |
As the package was developed with Agilent arrays, only the corresponding parser and a generic one are currently provided. Parsing design files from other brands can be achieved providing a custom design file parser suiting the manufacturer file format. Common brand file parsers may be added in the future, if you developed one (or need one to be developed) and wish it to be added to the package, please contact the package maintainer.
"Custom" files must be CSV files, using tabulations as column separators, periods as decimal separators and a first row naming columns. No comment line is allowed, and cell content protection (quoting) can be performed using double-quotes. The mandatory columns are "chrom" (character), "start" (integer) and "end" (integer), describing the genomic location of each probe in the design. Additionally it is recommended to provide "strand" ("+", "-" or NA
), "id" (an integer ID that will be used to match probes between design and data files), "name" (character), "row" and "col" (integers, the physical position of the probe on the slide). Further columns will be stored as provided.
An object of class cghRA.design
.
Sylvain Mareschal
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.