Description Usage Arguments Value Examples
The function takes an input file and performs the entire analysis workflow described in (ADD REF).
The function creates a series of objects needed for further analyses.
An output folder can be provided to store the objects as .RData
-files.
1 2 | STRMPSWorkflow(input, output = NULL, continueCheckpoint = NULL,
control = workflow.control())
|
input |
A path to a |
output |
A directory where output-files are stored. |
continueCheckpoint |
Choose a checkpoint to continue from in the workflow. If NULL the function will run the entire workflow. |
control |
Function controlling non-crucial parameters and other control functions. |
If 'output' not provided the function simply returns the stringCoverageList-object. If an output is provided the function will store ALL created objects at the output-path, i.e. nothing is returned.
1 2 3 4 5 6 | readPath <- system.file('extdata', 'sampleSequences.fastq', package = 'STRMPS')
STRMPSWorkflow(readPath,
control = workflow.control(restrictType = "Autosomal",
numberOfThreads = 1)
)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.