verbose: Verbose levels, defining verboseness of messages

Description Usage Format Examples

Description

There are several levels of verboseness one can choose from.

levels:

One can set the level of verboseness using opts_flow$set(verbose=2), which will be used across flowr and ngsflows packages. Additionally one may set this value in the configurations files: ~/flowr/conf/flowr.conf OR ~/flowr/conf/ngsflows.conf.

Usage

1

Format

An object of class NULL of length 0.

Examples

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
fl = system.file("pipelines/abcd.def", package = "flowr")
def = as.flowdef(fl, verbose = 0)
# def seems to be a file, reading it...
def = as.flowdef(fl, verbose = 1)
# def seems to be a file, reading it...
# checking if required columns are present...
# checking if resources columns are present...
# checking if dependency column has valid names...
# checking if submission column has valid names...
# checking for missing rows in def...
# checking for extra rows in def...
# checking submission and dependency types...
def = as.flowdef(fl, verbose = 2)
# def seems to be a file, reading it...
# checking if required columns are present...
# checking if resources columns are present...
# checking if dependency column has valid names...
# checking if submission column has valid names...
# checking for missing rows in def...
# checking for extra rows in def...
# checking submission and dependency types...
# jobname	prev.sub_type --> dep_type --> sub_type: relationship
# 	1: A	none --> none --> scatter 
# 	2: B	scatter --> serial --> scatter rel: complex one:one
# 	3: C	scatter --> gather --> serial rel: many:one
# 	4: D	serial --> burst --> scatter rel: one:many

Example output

Loading required package: params
Loading required package: whisker
Flowr: streamlining workflows

Attaching package: 'flowr'

The following objects are masked from 'package:params':

    check_args, get_opts, load_opts, set_opts

def seems to be a file, reading it...
def seems to be a file, reading it...
--> checking if required columns are present...
--> checking if resources columns are present...
--> checking if dependency column has valid names...
--> checking if submission column has valid names...
--> checking for missing rows in def...
--> checking for extra rows in def...
--> checking submission and dependency types...
def seems to be a file, reading it...
--> checking if required columns are present...
--> checking if resources columns are present...
--> checking if dependency column has valid names...
--> checking if submission column has valid names...
--> checking for missing rows in def...
--> checking for extra rows in def...
--> checking submission and dependency types...
	jobname	prev.sub_type --> dep_type --> sub_type: relationship
	1: A	none --> none --> scatter 
	2: B	scatter --> serial --> scatter rel: complex one:one
	3: C	scatter --> gather --> serial rel: many:one
	4: D	serial --> burst --> scatter rel: one:many

flowr documentation built on March 3, 2021, 1:12 a.m.