ccleProteome2SummarizedExperiment {BioPlex} | R Documentation |
Functionality for storing the protein expression data
from the Cancer Cell Line Encyclopedia (CCLE) in a
SummarizedExperiment
.
ccleProteome2SummarizedExperiment(df, cell.line = "HCT116")
df |
a |
cell.line |
character. One or more cell line IDs such as |
A SummarizedExperiment
storing protein expression
data for the specified cell line(s).
CCLE proteomics: https://gygi.hms.harvard.edu/publications/ccle.html
# Connect to ExperimentHub eh <- ExperimentHub::ExperimentHub() # Obtain CCLE proteome data frame AnnotationHub::query(eh, c("gygi", "depmap")) ccle.prot <- eh[["EH3459"]] ccle.prot <- as.data.frame(ccle.prot) # Turn into a SummarizedExperiment se <- ccleProteome2SummarizedExperiment(ccle.prot)