Skip to content
Snippets Groups Projects
Commit e76f6eb4 authored by Michele Stravs's avatar Michele Stravs
Browse files

Standard vignette works (R CMD check works with the other two vignettes disabled; some warnings)

parent 59b6aab4
No related branches found
No related tags found
No related merge requests found
......@@ -281,7 +281,7 @@ First, create a workspace for the \Rvar{msmsWorkflow}:
<<>>=
w <- newMsmsWorkspace()
@
The full paths of the files must be loaded into the container in the array
\Rvar{files}:
......@@ -347,9 +347,9 @@ installed on the user's computer).
TODO: Workflow execution in Chunk 10 is currently disabled, I execute Chunk 11
instead for steps that are already done.
<<eval=FALSE,fig=TRUE>>=
#w <- msmsWorkflow(w, mode="pH", steps=c(1:4), archivename =
# "pH_narcotics")
<<eval=TRUE,fig=TRUE>>=
w <- msmsWorkflow(w, mode="pH", steps=c(1:4), archivename =
"pH_narcotics")
@
The recalibration can also be plotted at a later stage:
......@@ -364,16 +364,16 @@ advised to run the workflow step by step. This is because if an error occurs, yo
lose all intermediate results from the workflow, which might complicate
finding the errors. (E.g., if you process steps 2-4 and an error occurs in step
3, you will lose the results from step 2.)
<<eval=TRUE>>=
<<eval=FALSE>>=
w <- msmsWorkflow(w, mode="pH", steps=1)
w <- msmsWorkflow(w, mode="pH", steps=2)
#w <- msmsWorkflow(w, mode="pH", steps=3)
w <- msmsWorkflow(w, mode="pH", steps=3)
# etc.
@
It can be useful to check if any data is retrieved at step 1:
<<eval=FALSE>>=
lapply(w@specs,function(s) s$foundOK)
lapply(w@spectra,function(s) s@found)
@
To check the progress through the workflow, call e.g.:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment