spongeValidate: Validation of computationally predicted miRNA sponge...

Description Usage Arguments Value Author(s) Examples

View source: R/miRspongeR.R

Description

Validation of computationally predicted miRNA sponge interactions. The groundtruth of miRNA sponge interactions are from miRSponge (http://www.bio-bigdata.net/miRSponge/) and the experimentally validated miRNA sponge interactions of related literatures.

Usage

1
spongeValidate(spongenetwork, directed = FALSE, Groundtruth)

Arguments

spongenetwork

Input miRNA sponge interaction network.

directed

A logical value, the network is directed or not.

Groundtruth

The groundtruth of miRNA sponge interactions.

Value

A list of experimentally validated miRNA sponge interactions.

Author(s)

Junpeng Zhang (https://www.researchgate.net/profile/Junpeng_Zhang3)

Examples

1
2
3
4
5
6
7
8
9
# Obtain miRNA-target interaction data file "miR2Target.csv" in csv format
miR2Target <- system.file("extdata", "miR2Target.csv", package="miRspongeR")
miRTarget <- read.csv(miR2Target, header=TRUE, sep=",")

# Obtain experimentally validated miRNA sponge interaction data file "Groundtruth.csv" in csv format
Groundtruthcsv <- system.file("extdata", "Groundtruth.csv", package="miRspongeR")
Groundtruth <- read.csv(Groundtruthcsv, header=TRUE, sep=",")
miRHomologyceRInt <- spongeMethod(miRTarget, method = "miRHomology")
spongenetwork_validated <- spongeValidate(miRHomologyceRInt[, 1:2], directed = FALSE, Groundtruth)

miRspongeR documentation built on Nov. 19, 2020, 2:01 a.m.