Learn R Programming

qat (version 0.74)

qat_add_all_descriptions: Adds all descriptions to a workflow

Description

For each check in the workflow it is possible to add a description of the test. This will be saved into the XML result file under the description. This function adds for each test the known description-information.

Usage

qat_add_all_descriptions(workflowlist)

Arguments

workflowlist
A workflowlist like it will be created by qat\_config\_read\_workflow

Value

Give back the edited workflowlist.

Details

This function use the informatio, which is stored in the system file qat\_basetools.xml.

See Also

qat_config_read_workflow

Examples

Run this code
library("qat")
# read in workflow from systemfiles
filename_in <- system.file("extdata/workflowexample.xml", package="qat")
workflowlist <- qat_config_read_workflow(filename_in)
# add some more informations for the workflow
workflowlist <- qat_add_all_descriptions(workflowlist) 
workflowlist <- qat_add_all_algorithms(workflowlist)

filename_out <- "myworkflow_result.xml" 
# write edited workflow in current directory
qat_config_write_workflow(workflowlist, output_filename=filename_out) 

Run the code above in your browser using DataLab