Description Creation of objects Slots Methods Author(s) Examples
This class of objects is used to group the input data for various functions in the protiq
package. It is not needed to run the main functions such as runScampi
and iterateScampi
(which return objects of the class scampiVal
). However, it is needed to run "under-functions" such as quantifyProteins
.
Objects of this class have methods for the functions summary, show and plot.
Objects are created e.g. by new("scampi", peptides, proteins, edgespp)
.
peptides
:Object of class "data.frame"
:
dataframe summarizing information about the peptides (input data
as well as (optionally) reassessed abundances).
proteins
:Object of class "data.frame"
:
dataframe summarizing information about the proteins (input data
as well as estimated protein abundances).
edgespp
:Object of class "data.frame"
:
dataframe summarizing the information about the edges of
ppGraph
, connecting the peptides
to the proteins
.
signature(x = "scampi", y = "missing")
: Plot the
distribution of the measured peptide abundances (histogram).
signature(object = "scampi")
: Display basic
properties of the fitted object.
signature(object = "scampi")
: Display details
of the fitted object.
Sarah Gerster sarah.gerster@isb-sib.ch
1 2 3 4 5 6 7 8 9 10 11 12 | showClass("scampi")
## generate a scampi object
data("leptoSRM")
scampiData <- scampi(peptides=leptoSRMpeptides,
proteins=leptoSRMproteins,
edgespp=leptoSRMedgespp)
## use methods of class scampiVal
show(scampiData)
summary(scampiData)
plot(scampiData)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.