Description Usage Arguments Value Examples
View source: R/main.function.R
The sycomore function is to quantify the synergistic and competitive relationship between miRNAs.
1 | sycomore(miRtarget, miRNAexpression, mRNAexpression)
|
miRtarget |
miRNA target binding matrix |
miRNAexpression |
miRNA expression matrix |
mRNAexpression |
mRNA expression matrix |
sycomore returns a result in the form of a data frame
1 2 3 4 5 6 | # load datasets
load(system.file("extdata/tcga.brca.testdata.Rdata", package="sycomore"))
miRNAexpression <- log2(miRNAexpression + 1)
mRNAexpression <- log2(mRNAexpression + 1)
# call function
sycomore(miRtarget, miRNAexpression, mRNAexpression)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.