Description Usage Arguments Value See Also Examples
View source: R/gsca_preprocess.R
This function gets rid of the duplicates in a vector of phenotypes with gene identifiers as names. It is used to prepare the named vector of phenotypes for the over-representation and gene set enrichment analysis.
1 | duplicateRemover(geneList, method = "max")
|
geneList |
A single named numeric or integer vector with gene identifiers as names. |
method |
A single character value specifying the method to remove the duplicates (should the minimum, maximum or average observation for a same construct be kept). The current version provides "min" (minimum), "max" (maximum), "average" and "fc.avg" (fold change average). The minimum and maximum should be understood in terms of absolute values (i.e. min/max effect, no matter the sign). The fold change average method converts the fold changes to ratios, averages them and converts the average back to a fold change. |
A named vector of phenotypes with duplicates removed.
1 2 3 | x <- c(5,1,3,-2,6)
names(x) <- c("gene1", "gene3", "gene7", "gene3", "gene4")
xprocessed <- duplicateRemover(geneList=x, method="max")
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.