HubPlot: Venn plot of hub genes under two conditions namely stress and...

Description Usage Arguments Value Author(s) Examples

Description

The function produces a venn diagram of number of hub genes and unique hub genes under two conditions

Usage

1
HubPlot(pvalue.stress, pvalue.control, alpha)

Arguments

pvalue.stress

pvalue.stress is a vector of p-values for genes in the GCN under stress condition. pvalue.stress can be obtained from the output of hub.stress function.

pvalue.control

pvalue.control is a vector of p-values for genes in the GCN under normal or control condition. pvalue.control can be obtained from the output of hub.control function.

alpha

alpha is a scalar representing statistical level of significance. Default is alpha=0.0001

Value

The function produces a venn plot of hub genes and unique hub genes under two conditions

Author(s)

Samarendra Das and Baidya Nath Mandal

Examples

1
2
3
4
5
6
7
8
data(rice_salt)
pval.stres <- pvalue.hub(rice_salt, beta=6, m=18, s=80, plot=FALSE)
pvalue.stress <- pval.stres[, 2]

data(rice_normal)
pval.control <- pvalue.hub(rice_normal, beta=6, m=18, s=80, plot=FALSE)
pvalue.control <- pval.control[, 2]
HubPlot(pvalue.stress, pvalue.control, alpha=0.0001)

Example output

Loading required package: VennDiagram
Loading required package: grid
Loading required package: futile.logger

dhga documentation built on May 2, 2019, 2:13 p.m.

Related to HubPlot in dhga...