row 1.0.0

Row is a command line tool that helps you manage workflows on HPC resources.
Documentation
# ANCHOR: whole
[workspace]
value_file = "signac_statepoint.json"

# ANCHOR: default
[default.action]
command = "python actions.py --action $ACTION_NAME {directories}"
# ANCHOR_END: default

[[action]]
name = "square"
products = ["square.out"]
resources.walltime.per_directory = "00:00:01"

[[action]]
name = "compute_sum"
previous_actions = ["square"]
resources.walltime.per_directory = "00:00:01"
group.submit_whole = true
# ANCHOR_END: whole