We present a novel method for identification of ceRNA-miRNA triplets at specific miRNA expression level. Building on correlation-based approach, we present a computationally efficient approach to be applied following identification of ceRNA-miRNA triplets that is related to the etiology of diseases.
Our approach leverages the genom-wide expression profiles and the correlation-based approach to identify ceRNA-miRNA triplets.It is particularly well suited for the studies having both mRNA and miRNA gene expression data. When applied to such studies, ceRNAR provides a scheme for unveiling the novel ceRNAs that regulate the biological systems and analyzing these novel findings for further biological interpretation.
This package also provides several downstream analyses, including functional, network, survival and peak location analyses, by which to further investigate the identified ceRNA-miRNA triplets and visualize the analytical results to aid in the understanding of the role of such triplets in biological mechanism.
install.packages("devtools") library(devtools) install_github("ywhsiao/ceRNAR") library(ceRNAR)
data(gene_exp) data(mirna_exp) data(surv_data) ceRNACustomize(project_name = 'demo', disease_name = 'DLBC', gene_exp = gene_exp, mirna_exp = mirna_exp, surv_data = surv_data)
ceRNAputativePairs(project_name = 'demo', disease_name = 'DLBC', filtering = 'less')
conduct main algorithm through one of following ways
through ceRNAMethod()
(preferred)
ceRNAMethod(project_name = 'demo', disease_name = "DLBC", window_size = 10, num_workers = 1)
ceRNApairFilering()
and SegmentClusteringPlusPeakMerging()
ceRNApairFilering(project_name = 'demo', disease_name = "DLBC", window_size = 10, num_workers = 1) SegmentClusteringPlusPeakMerging(project_name = 'demo', disease_name = "DLBC", window_size = 10, num_workers = 1)
ceRNAFunction(project_name = 'demo', disease_name = 'DLBC', pairs_cutoff = 1) ceRNALocation(project_name = 'demo', disease_name = 'DLBC', mirna = 'hsa-miR-101-3p', window_size = 10) ceRNAModule(project_name = 'demo', disease_name = 'DLBC', pairs_cutoff = 5, column_sum = 1) ceRNASurvival(project_name = 'demo', disease_name = 'DLBC', mirnas = 'hsa-miR-101-3p') ceRNAValidate(project_name = 'demo', disease_name = 'DLBC') library(SPONGE) ceRNAIntegrate(project_name = 'demo', disease_name = 'DLBC')
ceRNATCGA(project_name = 'TCGA', disease_name = 'DLBC', timeout = 5000000)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.