qat (version 0.74)

qat_config_write_workflow: Write a result

Description

A workflowlist will be stored into a XML-file.

Usage

qat_config_write_workflow(workflowlist, name = "", description = "", author = "", date = "", sample_time_start = "", sample_time_stop = "", sample_place = "", config_filename = "", output_filename = "")

Arguments

workflowlist
A workflowlist, which may be loaded by qat\_config\_read\_workflow and used for tests.
name
Name of the tests, which were performed with this workflowlist
description
Description of the workflowlist
author
Author who used the workflowlist for a test.
date
Date of the test.
sample_time_start
Start time of the sample, which was tested
sample_time_stop
End time of the sample, which was tested
sample_place
Location of the sample, which was tested
config_filename
A filename of the configuration file, which was read in at qat\_config\_read\_workflow.
output_filename
Filename, where the result should be stored.

Value

The information, which was stored, will be given back.

Details

The workflow will be stored at the location of output\_filename. As additional information in the header of this file, the other arguments will be used.

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 DataCamp Workspace