qat_config_write_workflow: Write a result

Description Usage Arguments Details Value Author(s) See Also Examples

View source: R/qat_config_write_workflow.R

Description

A workflowlist will be stored into a XML-file.

Usage

1
2
3
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.

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.

Value

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

Author(s)

Andre Duesterhus

See Also

qat_config_read_workflow

Examples

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
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) 

qat documentation built on May 2, 2019, 4:06 p.m.