script1 {DIAlignR} | R Documentation |
Extract features and generate pairwise alignments.
script1( dataPath, outFile = "DIAlignR", params = paramsDIAlignR(), oswMerged = TRUE, runs = NULL, applyFun = lapply )
dataPath |
(string) path to xics and osw directory. |
outFile |
(string) name of the output file. |
params |
(list) parameters are entered as list. Output of the |
oswMerged |
(logical) TRUE for experiment-wide FDR and FALSE for run-specific FDR by pyprophet. |
runs |
(string) names of xics file without extension. |
applyFun |
(function) value must be either lapply or BiocParallel::bplapply. |
Shubham Gupta, shubh.gupta@mail.utoronto.ca
ORCID: 0000-0003-3500-8152
License: (c) Author (2021) + GPL-3 Date: 2021-02-20
params <- paramsDIAlignR() params[["context"]] <- "experiment-wide" dataPath <- system.file("extdata", package = "DIAlignR") BiocParallel::register(BiocParallel::MulticoreParam(workers = 4, progressbar = TRUE)) script1(dataPath, outFile = "testDIAlignR", params = params, applyFun = BiocParallel::bplapply) file.remove(file.path(dataPath, "testDIAlignR_script1.RData"))