Description Usage Arguments Details Value Author(s) Examples
View source: R/microProcess-improve.R
Normalizes and computes relative expressions for all CEL files in work directory
1 2 | ProcessCels(threshold.over=1.5,threshold.under=(2/3),remove_method=1,
local_file=NULL)
|
threshold.over |
Determines the threshold, as a multiple of median value, where probes are considered overexpressed. Default is 1.5 |
threshold.under |
Determines the threshold, as a fraction of median value, where probes are considered underexpressed. Default is 2/3 |
remove_method |
Determines which method is used to remove multiple probesets that are
annotated to map to the same gene. The default option, If If |
local_file |
Use a local - previously downloaded - UCSC file (e.g. http://hgdownload.soe.ucsc.edu/goldenPath/hg19/database/ affyU133Plus2.txt.gz) instead of directly retrieving the file instead. |
this function uses the RMA algorithm to normalize *.CEL files in work directory. It then computes relative expressions for every probe on every sample. Locations for probesets are downloaded from UCSC, as the standard BioConductor annotations do not map probeset location (they only map the location to the corresponding gene). Multiple probesets belonging to the same gene are removed as described above. The function then determines which probes are overexpressed and underexpressed relative to the median probeset values across all samples. Finally,the relative expressions are log2-transformed.
list
$whole |
named list, where each element is a data.frame corresponding to
a *.CEL file - containing columns:
1): |
$over |
same as $whole, but contains only those probes which are deemed overexpressed |
$under |
same as $whole, but contains only those probes which are deemd underexpressed |
Sander Bollen
1 2 3 4 | ## Not run:
data <- ProcessCels()
## End(Not run)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.