Task | R Documentation |
R6 class for Task settings
active
logical indicating if Task
is performed in a workflow.
outputFolder
List of output files/folders to save the task output
workflowFolder
folder where workflow is run and saved
settings
list of settings for task such as plot configurations
message
message or title of the task
new()
Create a Task
object
Task$new( outputFolder = NULL, inputFolder = NULL, inputs = NULL, outputs = NULL, workflowFolder = getwd(), settings = NULL, active = FALSE, message = NULL )
outputFolder
task output folder to save results
inputFolder
task input folder where input files are stored
inputs
expected input files required by task
outputs
expected output files generated by task
workflowFolder
folder where workflow is run and saved
settings
specific settings for task (e.g. plot configurations)
active
logical indicating if Task
is performed in a workflow.
Default value is FALSE
message
message of the Task
.
A new Task
object
activate()
Activate Task
Task$activate()
inactivate()
Inactivate Task
Task$inactivate()
validateInput()
Check if Task
inputs exist
Task$validateInput()
logical indicating if input is valid
validateStructureSetInput()
Check if a task input from a specific SimulationStructure
is valid
Task$validateStructureSetInput(structureSet)
structureSet
SimulationStructure
object
logical indicating if input is valid
print()
Print Task
features
Task$print()
Text of task features
getRelativePath()
Get the relative path to a file to be output by this task
Task$getRelativePath(fileName)
fileName
name (with extension) of the file to be output
Output file's relative path
getAbsolutePath()
Get the absolute path to a file to be output by this task
Task$getAbsolutePath(fileName)
fileName
name (with extension) of the file to be output
Output file's absolute path
getInputs()
Get Task
required input files
Task$getInputs()
Required file names
clone()
The objects of this class are cloneable with this method.
Task$clone(deep = FALSE)
deep
Whether to make a deep clone.
Other workflow tasks:
GofPlotTask
,
PlotTask
,
PopulationPlotTask
,
PopulationSensitivityAnalysisTask
,
QualificationTask
,
SensitivityAnalysisTask
,
addUserDefinedTask()
,
loadCalculatePKParametersTask()
,
loadCalculateSensitivityTask()
,
loadGOFMergedTask()
,
loadPlotAbsorptionTask()
,
loadPlotDDIRatioTask()
,
loadPlotDemographyTask()
,
loadPlotMassBalanceTask()
,
loadPlotPKParametersTask()
,
loadPlotPKRatioTask()
,
loadPlotSensitivityTask()
,
loadPlotTimeProfilesAndResidualsTask()
,
loadQualificationComparisonTimeProfileTask()
,
loadQualificationTimeProfilesTask()
,
loadSimulateTask()
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.