doProcCmd
it process the Macro-commands string array specified at input.
doProcCmd(specObj, cmdstr, ncpu = 1, debug = FALSE)
specMat
: a 'specMat' object - See the manual page of the doProcessing
function for more details on its structure
a complex list return by doProcessing
function. See the manual
page of the doProcessing
function for more details on its structure.
the Macro-commands string array; See the Macro-command Reference Guide (https://nmrprocflow.org/themes/pdf/Macrocommand.pdf) to have more details about macro-commands.
The number of cores [default: 1]
a boolean to specify if we want the function to be more verbose.
# \donttest{
data_dir <- system.file("extra", package = "Rnmr1D")
CMDFILE <- file.path(data_dir, "NP_macro_cmd.txt")
SAMPLEFILE <- file.path(data_dir, "Samples.txt")
out <- Rnmr1D::doProcessing(data_dir, cmdfile=CMDFILE,
samplefile=SAMPLEFILE, ncpu=2)
# Apply an intelligent bucketing (AIBIN)
specMat.new <- Rnmr1D::doProcCmd(out,
c("bucket aibin 10.2 10.5 0.3 3 0",
"9.5 4.9",
"4.8 0.5",
"EOL"
),ncpu=2, debug=TRUE)
out$specMat <- specMat.new
# }
Run the code above in your browser using DataLab