aggregatePeptides: aggregate peptides

Description Usage Arguments See Also Examples

View source: R/aggregateMSexperiment.R

Description

Given msexperiment with transitons aggregate the transitions to produce precursor intensities

Usage

1
aggregatePeptides(msexp, FUN = sum)

Arguments

msexp

msexperiment object

FUN

aggregation function

See Also

aggregateProtein

Examples

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
data(feature_alignment_requant)
colnames(feature_alignment_requant)
dim(feature_alignment_requant)/3
msexp = loadTransitonsMSExperiment( feature_alignment_requant , nrt = 3 , peptop = 3 )
dim(msexp)
sum(rownames(msexp$Intensity) == rownames(msexp$pepinfo))
y = aggregatePeptides(msexp)
sum(rownames(y$Intensity) == rownames(y$pepinfo))
dim(y)
stopifnot(table(table(y$pepinfo$transition_group_id)) == 247)

wolski/imsbInfer documentation built on March 27, 2021, 11:39 p.m.