ceRNA.cernia: identifying miRNA sponge interactions using ceRNA.cernia...

Description Usage Arguments Details Value References Examples

View source: R/ceRNA.cernia.R

Description

identifying miRNA sponge interactions using ceRNA.cernia.In this function We implement cernia score to identify miRNA sponge interactions. The fraction of common miRNAs; 1. The fraction of common miRNAs; 2. The density of the MREs for all shared miRNAs; 3. The distribution of MREs of the putative ceRNAs; 4. The relation between the overall number of MREs for a putative ceRNA, compared with the number of miRNAs that yield these MREs; 5. The density of the hybridization energies related to MREs for all shared miRNAs; 6. The DT-Hybrid recommendation scores; 7. The pairwise Pearson correlation between putative ceRNA expressions.

Usage

1
2
ceRNA.cernia(miRtar, targetce = NULL, geneexp, miRexp, mres, numMIR = 3, cor_cutoff = 0,
             s_cutoff = 0.5)

Arguments

miRtar

A data frame representing the relationship between miRNA and target. The data frame contains the name of the miRNA and target regulatory relationship.

targetce

a character string (vector) specifying candidate target name to analyse (default (targetce = NULL)).

geneexp

An input target expression data frame, the columns are genes and the rows are samples.The expression value may be gene expression ,non-coding RNA expression or expression values of circRNAs and so on.

miRexp

An input miRNA expression data frame, the columns are miRNA and the rows are samples.

mres

miRNA response elements (mres) data frame, each row contains five elements: mirna, target, energy, gap_l, gap_r.

numMIR

a numeric vector that specify the minimum number of 2 gene-shared miRNAs.

cor_cutoff

a numeric vector of the form method specifying threshold between ceRNA interactions correlation,default(cor_cutoff=0).

s_cutoff

the threshold of seven comprehensive scores.

Details

Note:All the arguments without default value must be assigned.The miRNA in the file of the target-miRNA regulatory relationship pair should also be present in the expression profile data file. Internal functions (parMM, graphWeights, recommendation, dtHybrid) of cernia method are from the website: https://github.com/dsardina/cernia Copyright 2016 Rosalba Giugno Licensed under the Apache License, Version 2.0 (the 'License')

Value

A list of identified miRNA sponge interactions containing following components:

References

Sardina D S , Alaimo S , Ferro A , et al. A novel computational method for inferring competing endogenous interactions[J]. Briefings in Bioinformatics, 2016:bbw084.

Examples

1
2
3
4
5
6
##identifying miRNA sponge interactions.
##Here we take six candidate targets(modulators) and corresponding expression 
##data for example,Specify target(PTEN) to predict ceRNA interaction.
ceRNA.cernia(miRtar=dataset[["miRtar"]], targetce = "PTEN", geneexp=dataset[["geneexp"]],
          numMIR = 1, miRexp=dataset[["miRexp"]], mres=dataset[["mres"]], 
		  cor_cutoff = 0.2, s_cutoff = 0.5) 

CeRNASeek documentation built on April 29, 2020, 9:37 a.m.