Description Usage Arguments Details Value Examples
View source: R/ms_isoform_cleanup.R
Function to perform isoform ambiguity cleanup step 2 using the principle of parsimony when two or more isoforms are identified within the same search result dataset
1 2 3 4 5 6 7 | ms_isoform_consolidate(
data,
matchtable,
nread = 10,
withabd = FALSE,
weightbycountnum = TRUE
)
|
data |
dataset to be clead-up from isoform ambiguity |
matchtable |
an isoform substitution matching table |
nread |
number of reading channels or sample treatements, default value 10 |
withabd |
whether the dataset contains abundance data as in ITDR/ITTR data, by default set to FALSE |
weightbycountnum |
by default to consolidate the isoforms |
Note: Data must contain "sumUniPeps","sumPSMs","countNum" columns, otherwise the mock named columns should be provided.
a dataframe
1 2 3 4 5 6 7 | ## Not run:
data_cleaned2 <- ms_isoform_consolidate(data_cleaned1,
matchtable="./subfolder/tobe_consolidated.txt")
data_cleaned2 <- ms_isoform_consolidate(data_cleaned1,
matchtable="./subfolder/tobe_consolidated.txt", withabd=TRUE)
## End(Not run)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.