Description Usage Arguments Value Examples
View source: R/groupComparisonLiP.R
Takes summarized LiP peptide and TrP protein data from dataSummarizationLiP If global protein data is unavailable, LiP data only can be passed into the function. Including protein data allows for adjusting LiP Fold Change by the change in global protein abundance..
1 2 3 4 5 6 7 8 9 10 11 |
data |
list of summarized datasets. Can be output of MSstatsLiP
summarization function |
contrast.matrix |
comparison between conditions of interests. Default models full pairwise comparison between all conditions |
fasta.path |
a file path to a fasta file that includes the proteins listed in the data. Default is NULL. Include this parameter to determine trypticity of peptides in LiP models. |
log_base |
base of the logarithm used in dataProcess. |
use_log_file |
logical. If TRUE, information about data processing will be saved to a file. |
append |
logical. If TRUE, information about data processing will be added to an existing log file. |
verbose |
logical. If TRUE, information about data processing will be printed to the console. |
log_file_path |
character. Path to a file to which information about
data processing will be saved.
If not provided, such a file will be created automatically.
If |
base |
start of the file name. |
list of modeling results. Includes LiP, PROTEIN, and ADJUSTED LiP data.tables with their corresponding model results.
1 2 3 4 5 6 7 8 9 10 11 12 13 | ## Use output of dataSummarizationLiP function
fasta <- system.file("extdata", "ExampleFastaFile.fasta", package="MSstatsLiP")
# Test for pairwise comparison
MSstatsLiP_model <- groupComparisonLiP(MSstatsLiP_Summarized,
contrast.matrix = "pairwise",
fasta.path = fasta)
# Returns list of three models
names(MSstatsLiP_model)
head(MSstatsLiP_model$LiP.Model)
head(MSstatsLiP_model$TrP.Model)
head(MSstatsLiP_model$Adjusted.LiP.Model)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.