Description Usage Arguments Value Examples
View source: R/neighbor_finder.R
This function allows the user to find neighbor genes network of interested gene.
1 2 3 4 5 6 | neighbor_finder(
countdata,
gene = gene_of_interest,
cor.cut.off = 0.39,
weight.cut.off = 0.5
)
|
countdata |
RNAseq countdata |
gene |
string, gene of interest to find a network for. |
cor.cut.off |
cut off value of correlation coeffiecint to build network. Defaults to .39 |
weight.cut.off |
cut off value of network weight to reduce edges. Defaults to .5 |
character vector, genes that are considered neighbors of the gene of interest (including the gene of interest itself).
1 2 3 | example.file <- system.file("extdata", "example.RData", package="cgNetwork")
load(example.file)
common_neighbor <- neighbor_finder(countdata, "CDKN1A", 0.39, 0.5)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.