Description Usage Arguments See Also Examples
View source: R/analyzeDuplicatedPeptides.R
analyse duplicated peptides/proteins
1 2  | analyzeDuplicated(data, dups, maxpep = 3, countmax = 1000,
  method = "spearman")
 | 
data | 
 - msExperiment  | 
dups | 
 - list as returned by function   | 
maxpep | 
 - limit the number of duplicated peptides  | 
countmax | 
 - limit the total number of comparisons  | 
method | 
 - type of correlation to compute  | 
getListOfDuplicated analyzeDuplicatedPeptides
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16  | data(SDat)
rownames = SDat$pepinfo$PeptideSequence
dups = getListOfDuplicated(rownames)
res = analyzeDuplicated(SDat , dups[1:25])
dim(res)
res[1,]
hist(res$cor)
plot(res$medianRTDiff,res$cor)
rownames = SDat$pepinfo$PeptideSequence
nondups = getUniqueEntries(rownames)
length(nondups)
if(length(nondups > 0)){
 res = analyzeDuplicated(SDat , list(nondups[1:25]))
}
 | 
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.