scRNAtools_inter_net: Construction of interactive network in scRNA sequencing data

Description Usage Arguments Author(s) Examples

View source: R/scRNAtools_inter_net.R

Description

Construction of interactive network based on scRNa sequencing data.

Usage

1
scRNAtools_inter_net(corr_re, p, r, size, color)

Arguments

corr_re

The results of correlation analysis, which including four columns, the first two columns are genes and the last two columns are correlation index and p-value,respectively.

p

The p-value of correlation index.

r

Correlation index

size

The size of nodes in the network.

color

The color of nodes in the network.

Author(s)

Qian Yang

Examples

1
2
3
4
5
6
7
8
data(corr_re)
p<-0.05
r<-0.9
size<-5 #nodes size
color<-"#00B2EE" ##Color of nodes.
pdf(file=file.path(tempdir(), "interact_net.pdf"))
scRNAtools_inter_net(corr_re,p,r,size,color)
dev.off()

scRNAtools documentation built on May 2, 2019, 2:43 a.m.