Description Usage Arguments Value Author(s) References Examples
View source: R/edgesToHubNetworks.R
Interactions between pairs of features (typically a protein-protein interaction, commonly abbreviated as PPI, database) are restructured into a named list. The name of the each element of the list is a feature and the element contains all features which have an interaction with it.
1 | edgesToHubNetworks(edges, minCardinality = 5)
|
edges |
A two-column |
minCardinality |
An integer specifying the minimum number of features to be associated with a hub feature for it to be present in the result. |
An object of type FeatureSetCollection
.
Dario Strbenac
VAN: an R package for identifying biologically perturbed networks via differential variability analysis, Vivek Jayaswal, Sarah-Jane Schramm, Graham J Mann, Marc R Wilkins and Yee Hwa Yang, 2010, BMC Research Notes, Volume 6 Article 430, https://bmcresnotes.biomedcentral.com/articles/10.1186/1756-0500-6-430.
1 2 3 4 5 6 7 8 9 | interactor <- c("MITF", "MITF", "MITF", "MITF", "MITF", "MITF",
"KRAS", "KRAS", "KRAS", "KRAS", "KRAS", "KRAS",
"PD-1")
otherInteractor <- c("HINT1", "LEF1", "PSMD14", "PIAS3", "UBE2I", "PATZ1",
"ARAF", "CALM1", "CALM2", "CALM3", "RAF1", "HNRNPC",
"PD-L1")
edges <- data.frame(interactor, otherInteractor, stringsAsFactors = FALSE)
edgesToHubNetworks(edges, minCardinality = 4)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.