Learn R Programming

flowr (version 0.9.11)

verbose: Verbose levels, defining verboseness of messages

Description

There are several levels of verboseness one can choose from.

levels:

  • level 0 is almost silent, producing only necessary messages

  • level 1 is good for most purposes, where as,

  • level 2 is good when developing a new pipeline.

  • level 3 is good for debugging, especially when getting un-expected results.

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

verbose

Arguments

Format

An object of class NULL of length 0.

Examples

Run this code
# NOT RUN {
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
# }

Run the code above in your browser using DataLab