-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
53 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
{ | ||
"docker_repository": "docker.osdc.io/ncigdc" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,50 @@ | ||
ENTRY_CWL := "gpas_gatk4.2.4.1_mutect2_workflow.cwl" | ||
|
||
# Pack and apply Jinja templating. Creates cwl.json file | ||
# Should be runnable in built docker container | ||
pack: | ||
#!/bin/sh | ||
if [ ! -f cwl.json ]; then | ||
just _validate_entry | ||
just _cwltool-pack > tmp.json | ||
just _jinja tmp.json > cwl.json | ||
rm tmp.json | ||
fi | ||
just _print-cwl | ||
|
||
# Ensures CWL entrypoint script exists | ||
_validate_entry: | ||
#!/bin/sh | ||
if [ ! -f {{ENTRY_CWL}} ]; then | ||
echo "No entry CWL file found!" | ||
echo {{ENTRY_CWL}} | ||
exit 1; | ||
fi | ||
|
||
# Prints cwl.json if exists | ||
_print-cwl: | ||
@cat cwl.json | ||
|
||
# Packs CWL workflow into single json file | ||
_cwltool-pack: _validate_entry | ||
python3 -m cwltool --pack {{ENTRY_CWL}} | ||
|
||
# Apply template to JSON from dockers.json, errors on missing keys | ||
_jinja JSON: | ||
jinja -u 'strict' -d dockers.json {{JSON}} | ||
|
||
# Validates CWL workflow | ||
validate: _validate_entry | ||
python3 -m cwltool --validate {{ENTRY_CWL}} | ||
|
||
# Formats and prints all Dockers used in workflow | ||
get-dockers: | ||
just pack | grep dockerPull | cut -f2- -d ":" | sort | uniq | sed "s/\"//g" | ||
|
||
# Prints all dockerPull declarations in unformatted workflow | ||
get-dockers-template: | ||
just _cwltool-pack | grep dockerPull | cut -f2- -d ":" | sort | uniq | sed "s/\"//g" | ||
|
||
# Print template input file for workflow | ||
inputs: | ||
python3 -m cwltool --make-template {{ENTRY_CWL}} |