Description Usage Arguments Author(s) Examples
Pick up proteins based on foldchange and return proteins position in data.
1 2 3 |
fc |
proteomic data of mean value in groups. |
vs.set2 |
compared group 2 name |
vs.set1 |
compared group 1 name |
cutoff |
a numberic value indicated foldchange threshold. |
datatype |
The quantification data is normal data or log2 data.
This must be (an abbreviation of) one of the strings " |
fctype |
foldchange is ordered by up-regulated or down-regulated or changed |
order |
a logical value indicated that whether ordered by foldchange. |
Kefu Liu
1 2 3 4 5 6 7 8 9 10 11 12 | rm(list = ls())
library(DDPNA)
data(imputedData)
data <- imputedData
relative <- data$relative_value
rownames(relative) <- data$inf$ori.ID
group <- gsub("[0-9]+", "", colnames(relative))
datamean <- groupmean(relative, group, name = FALSE)
fc_1vs2 <- fc.pos(datamean, vs.set2 = "ad", vs.set1 = "ctl",
cutoff = 1, datatype = "none",
fctype = "up", order = TRUE)
fc_ID <- rownames(relative)[fc_1vs2]
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.