Description Usage Arguments Details Value Examples
Merges two objects of the same class:
SilacProteinExperiment
, SilacPeptideExperiment
or
SilacProteomicsExperiment
.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 | ## S4 method for signature 'SilacProteinExperiment,ANY'
merge(x, y, by, by.x = by, by.y = by, all = TRUE, ...)
## S4 method for signature 'SilacPeptideExperiment,ANY'
merge(x, y, by, by.x = by, by.y = by, all = TRUE, ...)
## S4 method for signature 'SilacProteomicsExperiment,ANY'
merge(
x,
y,
by.prot,
by.prot.x = by.prot,
by.prot.y = by.prot,
by.pept,
by.pept.x = by.pept,
by.pept.y = by.pept,
all = TRUE,
...
)
|
x |
A |
y |
A |
by, by.x, by.y |
A |
all |
A |
... |
Further parameters passed into |
by.prot, by.prot.x, by.prot.y |
For |
by.pept, by.pept.x, by.pept.y |
For |
This function is designed to be able to merge different samples
from different experiments since it is probable that not the exact same
proteins are found in both experiments and therefore cbind
cannot be
used. It uses the merge base function to merge the rowData data frames and
merges the assays based on such merge. The colData data.frame
are
joined.
For a SilacProteomicsExperiment
object it gets a bit more complicated
since it is possible that some peptides that were assigned to one protein in
one experiment are assigned to another one in another experiment. Therefore
the linkerDf data.frame
is recalculated.
A SilacProteinExperiment
, SilacPeptideExperiment
or a
SilacProteomicsExperiment
object.
1 2 |
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.