describeProteins | R Documentation |
It is important to explore PSM results prior to any further
downstream analysies. Two functions, that work on PSM()
and
ConnectedComponents()
objects can be used for this:
The describeProteins()
function describe protein composition
in terms of unique and shared peptides.
The describePeptides()
function describe unique/shared peptide
composition.
describeProteins(object)
describePeptides(object)
object |
Either an instance of class |
describePeptides()
invisibly return the table of unique
and shared peptides. describeProteins()
invisibly returns a
data.frame
with logicals indicating the unique/shared
peptide composition of proteins. Both functions are used for
their side effects of printing a short descriptive output
about peptides and proteins.
f <- msdata::ident(full.names = TRUE, pattern = "TMT")
basename(f)
psm <- PSM(f) |>
filterPsmDecoy() |>
filterPsmRank()
describePeptides(psm)
describeProteins(psm)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.