probeConvert | R Documentation |
Convert rice microarray probe ID to RAP-DB ID and merge multiple probes for one gene
probeConvert(exprMatrix, probeMerge = FALSE, mergeBy = "mean")
exprMatrix |
A expression matrix is required. Row names of the matrix should be the microarray probe ID. |
probeMerge |
A instruction is needed. If probeMerge = F, the multiple probes for one gene will not be merged. If probeMerge = T, the multiple probes for one gene will be merged. The default value is F. |
mergeBy |
A method for merging multiple probes for one gene if probeMerge = T. Mean, max and min value is available. |
A matrix.
expr <- system.file("test_file", header = TRUE, sep="\t", header=TRUE, stringsAsFactors = FALSE) formatted_expr <- probeConvert(exprMatrix = expr) formatted_expr1 <- probeConvert(exprMatrix = expr, probeMerge = TRUE)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.