R/evidenceToSaintExpressFormat.R
artmsEvidenceToSaintExpress.Rd
Converts the MaxQuant evidence file to the 3 required files
by SAINTexpress. One can choose to either use the spectral counts
(use msspc
) or the intensities
(use msint
) for the analysis.
artmsEvidenceToSaintExpress( evidence_file, keys_file, ref_proteome_file, quant_variable = c("msspc", "msint"), output_file, verbose = TRUE )
evidence_file | (char) The evidence file path and name |
---|---|
keys_file | (char) Keys file with a SAINT column
specifying test ( |
ref_proteome_file | (char) Reference proteome path file name in fasta format |
quant_variable | (char) choose either
|
output_file | (char) Output file name (must have extension .txt) |
verbose | (logical) |
The 3 required files by SAINTexpress:
interactions.txt
preys.txt
baits.txt
# Testing that the files cannot be empty artmsEvidenceToSaintExpress(evidence_file = NULL, keys_file = NULL, ref_proteome_file = NULL)#>#> [1] "The evidence_file, keys_file, and ref_proteome_file \n must not be empty"