Skip to content
Snippets Groups Projects
Commit 872e1467 authored by Cats's avatar Cats
Browse files

Merge branch 'develop' into controlTreat

parents dd18acf2 22295dff
No related branches found
No related tags found
1 merge request!67fix CaseControl and macs2 tasks
language: java language: java
script: script:
- set -e - set -e
- export CROMWELL_VERSION=34 - export CROMWELL_VERSION=35
# - wget https://github.com/broadinstitute/cromwell/releases/download/$CROMWELL_VERSION/womtool-$CROMWELL_VERSION.jar - wget https://github.com/broadinstitute/cromwell/releases/download/$CROMWELL_VERSION/womtool-$CROMWELL_VERSION.jar
- wget https://barmsijs.lumc.nl/womtool-35-a7ae2d8-SNAP.jar
- for F in `find -name "*.wdl"`; do echo $F; java -jar womtool-*.jar validate $F; done - for F in `find -name "*.wdl"`; do echo $F; java -jar womtool-*.jar validate $F; done
- 'if [ "$TRAVIS_PULL_REQUEST" != "false" ]; then git submodule foreach --recursive git checkout $TRAVIS_BRANCH && git submodule foreach --recursive git pull; fi' - 'if [ "$TRAVIS_PULL_REQUEST" != "false" ]; then git submodule foreach --recursive git checkout $TRAVIS_BRANCH && git submodule foreach --recursive git pull; fi'
- "git diff --exit-code || (echo ERROR: Git changes detected. Please update submodules && exit 1)" - "git diff --exit-code || (echo ERROR: Git changes detected. Please update submodules && exit 1)"
...@@ -111,7 +111,7 @@ task CaseControl { ...@@ -111,7 +111,7 @@ task CaseControl {
output { output {
File outputFile = outputPath File outputFile = outputPath
Array[CaseControl] caseControls = read_json(outputFile) CaseControls caseControls = read_json(outputFile)
} }
runtime { runtime {
......
...@@ -170,3 +170,7 @@ struct CaseControl { ...@@ -170,3 +170,7 @@ struct CaseControl {
String controlName String controlName
IndexedBamFile controlBam IndexedBamFile controlBam
} }
struct CaseControls {
Array[CaseControl] caseControls
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment