The reserved words are used in the compute.properties file. This file is created to save the latest compute configuration and discuss further.
Script generation for PBS cluster and other back-ends
To generate for pbs, the next options should be added to the command line
--backendpbs
When generating script for computational clusters or grid, some additional parameters, such as execution wall-time, memory requirement, etc. should be specified. This can be done in the parameters file
Or also it can be specified in the molgenis header in protocols
step1.ftl
#MOLGENIS queue=short_queue mem=4gb walltime=05:59:00 nodes=1 ppn=1#string in#output out# Let's do something with string 'in' out=${in}_hasBeenInStep1
The specification in protocols has priority over specification in parameter files.
In the command-line distribution, users can add a new back-end by adding a new directory, that contains header/footer and submit templates for that backend.
Switching to a different workflow
It is very advisable to start working with a new workflow with running
shmolgenis_compute.sh--clear
This command clears the .compute.properties file, which contains previous generation and running options.
Commenting in workflow specification
User can want to run only one or several steps of the workflow, when the rest of workflow can be commented out using '#' sign. In this example 'step2' is commented out.