Description Usage Arguments Value Author(s) See Also Examples
This is a generic function.
1 2 | tni2tna.preprocess(object, phenotype=NULL, hits=NULL, phenoIDs=NULL,
duplicateRemoverMethod="max", verbose=TRUE)
|
object |
a processed object of class 'TNI' |
phenotype |
a numeric vector of phenotypes named by gene identifiers (usually log2
differential expression values). Required for the
|
hits |
a character vector of gene identifiers for those considered as hits.
Required for the |
phenoIDs |
an optional 2cols-matrix used to aggregate genes in the 'phenotype' (e.g. probe-to-gene ids; in this case, col 1 should correspond to probe ids). |
duplicateRemoverMethod |
a single character value specifying the method to remove the duplicates. The current version provides "min" (minimum), "max" (maximum), "average". Further details in 'duplicateRemover' function at the HTSanalyzeR package. |
verbose |
a single logical value specifying to display detailed messages (when verbose=TRUE) or not (when verbose=FALSE). |
A pre-processed TNA-class object.
Mauro Castro
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 | data(tniData)
data(tnaData)
## Not run:
rtni <- tni.constructor(expData=tniData$expData,
regulatoryElements=c("PTTG1","E2F2","FOXM1","E2F3","RUNX2"),
rowAnnotation=tniData$rowAnnotation)
rtni <- tni.permutation(rtni)
rtni <- tni.bootstrap(rtni)
rtni <- tni.dpi.filter(rtni)
rtna <- tni2tna.preprocess(rtni, phenotype=tnaData$phenotype,
hits=tnaData$hits, phenoIDs=tnaData$phenoIDs)
## End(Not run)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.