Description Usage Arguments Value Author(s) References Examples
View source: R/combine_mir_vt.R
A helper function for combining miRNA targets from differents sources. Duplicated miRNA-target interactions are automatically removed.
1 |
... |
a list of MirTarget object to combine. MirTarget object can be generated by the functions get_mirecords_*() or by get_mirtarbase_*(). |
Returns an object of class MirTarget which is a data frame containing combined validated targets for each miRNA.
Alboukadel Kassambara alboukadel.kassambara@gmail.com
A. Kassambara. Statistical Tools for High-throughput Data Analysis. http://www.sthda.com
1 2 3 4 5 6 7 8 9 10 11 12 13 14 | ## Not run:
# Example of miRNAs
miRNAs <- c("hsa-miR-16", "hsa-miR-155")
# Validated target from miRecords
mirecords_vt <- get_mirecords_vt(miRNAs)
# Validated target from miRTarbase
mirtarbase_vt <- get_mirtarbase_vt(miRNAs)
v_targets <- combine_mir_vt(mirecords_vt, mirtarbase_vt)
head(v_targets)
## End(Not run)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.