medpolishSummary | R Documentation |
This function is to calculate proteins'relative abundance by Turkey median polish
medpolishSummary(dat,group_col=2)
dat |
an data frame containing peptide/psm intensities in log2 scale |
group_col |
the column by which peptides/psm intensity are grouped. Usually the gene/protein column. Default is 2 |
a data frame containing protein relative abundance estimate in log2 scale
Yafeng Zhu
library(ExperimentHub)
eh = ExperimentHub(localHub=TRUE)
query(eh, "DEqMS")
dat.psm = eh[["EH1663"]]
dat.psm.log = dat.psm
dat.psm.log[,3:12] = log2(dat.psm[,3:12])
dat.gene = medpolishSummary(dat.psm.log,group_col=2)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.