Description Usage Arguments Value Examples
given matrix (columns protein rows peptides), compute minimal protein set using greedy algorithm
1 |
pepprot |
matrix as returned by prepareMatrix |
list of peptide protein assignment
1 2 3 4 5 6 7 8 9 10 | #library(prozor)
data(protpepmetashort)
colnames(protpepmetashort)
dim(unique(protpepmetashort[,4]))
xx = prepareMatrix(protpepmetashort, peptideID = "peptideModSeq")
dim(xx)
stopifnot(dim(xx)[1] == dim(unique(protpepmetashort[,4]))[1])
es = greedy(xx)
stopifnot(length(unique(names(es))) == dim(unique(protpepmetashort[,4]))[1])
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.