Learn R Programming

IDSL.CSA (version 1.2)

DDA2msp: DDA to msp

Description

DDA to msp

Usage

DDA2msp(input_path_hrms, file_name_hrms = NULL, number_processing_threads = 1)

Value

This module generates `.msp` files from DDA analysis.

Arguments

input_path_hrms

path to the HRMS file

file_name_hrms

file_name_hrms

number_processing_threads

Number of processing threads for multi-threaded processing

Examples

Run this code
## To see the results, use a known folder instead of the `tempdir()` command
temp_wd <- tempdir()
temp_wd_zip <- paste0(temp_wd, "/idsl_rawdda_test_files.zip")
download.file(paste0("https://github.com/idslme/IDSL.CSA/blob/main/",
                     "CSA_educational_files/idsl_rawdda_test_files.zip?raw=true"),
              destfile = temp_wd_zip, mode = "wb")
unzip(temp_wd_zip, exdir = temp_wd)
DDA2msp(input_path_hrms = temp_wd, file_name_hrms = NULL, number_processing_threads = 1)

Run the code above in your browser using DataLab