Description Usage Arguments Value Author(s) References Examples
miRecords (http://c1.accurascience.com/miRecords/) is a resource for animal miRNA-target interactions. There are two components in miRecords. The experimentally Validated Targets (vt) component and the Predicted Targets (pt) component which is an integration of predicted miRNA targets produced by 11 established miRNA target prediction programs.
get_mirecords_pt(): Recursively retrieve the predicted targets for each miRNA. Only predicted targets by at least n/11 database are kept, where n is user-defined. Internet connexion is required the first time you use this function.
get_mirecords_vt(): Download validated targets for each miRNA. Internet connexion is required.
1 2 3 4 5 | get_mirecords_pt(miRNAs, n = 5, species = "Homo sapiens",
result_file = "mirna_mirecords_predicted_targets.txt",
keep_db_names = FALSE, show_progress = TRUE)
get_mirecords_vt(miRNAs, species = "Homo sapiens", version = 4)
|
miRNAs |
a character vector containing miRNA names (e.g.: miRNAs = c("hsa-miR-16", "hsa-miR-34a)) |
n |
integer specifying the minimal number of prediction for each miRNA. In other words, Only predicted target by at least n/11 database are kept. Default value is 5. |
species |
species names as available on miRecords database. Possible values are one of: "Homo sapiens", "Mus musculus", "Rattus norvegicus", "Caenorhabditis elegans", "Drosophila melanogaster", "Gallus gallus", "Ovis aries", "Canis familiaris". Default value is "Homo sapiens". |
result_file |
path to result file for holding miRNA predicted/validated targets. Default values are "mirna_mirecords_predicted_targets.txt". |
keep_db_names |
logical value. If TRUE, keep the name of the 11 databases used for target predictions. |
show_progress |
logical value. If TRUE, a progress bar is shown. |
version |
miRecords version. Default value is 4 |
get_mirecords_pt(): Downloads and returns an object of class MirTarget which is a data frame containing predicted targets for each miRNA. It saves also the results as a tab-delimited .txt file, which default name is "mirna_mirecords_predicted_targets.txt". If this file exists already in your working directory, then get_mirecords_pt() will simply import it into R.
get_mirecords_vt(): Downloads and returns an object of class MirTarget which is a data frame containing 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 | ## Not run:
# Predicted targets
ptget <- get_mirecords_pt(c("hsa-miR-16", "hsa-miR-155"))
head(ptget)
# Validated targets
vtget <- get_mirecords_vt(c("hsa-miR-16", "hsa-miR-155"))
head(vtget)
## End(Not run)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.