mapSummarizedExperimentOntoGraph {BioPlex} | R Documentation |
Functionality for mapping experimental data stored in
a SummarizedExperiment
onto a
graph
object.
mapSummarizedExperimentOntoGraph( gr, se, col.names = NULL, rowdata.cols = NULL, prefix = "" )
gr |
an object of class |
se |
an object of class |
col.names |
character. Column names of |
rowdata.cols |
character. Column names of |
prefix |
character. Informative prefix that should be pasted together
with the selected |
An object of class graph
.
# (1) Obtain the latest version of the 293T PPI network ... bp.293t <- getBioPlex(cell.line = "293T", version = "3.0") # (2) ... and turn into a graph bp.gr <- bioplex2graph(bp.293t) # (3) Obtain the BioPlex3 proteome data ... se <- getBioplexProteome() # (4) ... and map onto the graph bp.gr <- mapSummarizedExperimentOntoGraph(bp.gr, se)