wdl-engine 0.13.1

Execution engine for Workflow Description Language (WDL) documents.
Documentation
1
2
3
4
5
6
7
8
# If `max_matches` is `None`, the command
# grep -m  hello greetings.txt
# would evaluate to
# 'grep -m <pattern> <infile>', which would be an error.

# Instead, make both the flag and the value conditional on `max_matches`
# being defined.
grep  hello 'greetings.txt' | wc -l | sed 's/^ *//'