Skip to content
Snippets Groups Projects
Unverified Commit 22295dff authored by Cats's avatar Cats Committed by GitHub
Browse files

Merge pull request #65 from biowdl/cntrlTreat

Added struct
parents 46a74f87 8d9f6b8a
No related branches found
No related tags found
No related merge requests found
language: java
script:
- set -e
- export CROMWELL_VERSION=34
# - wget https://github.com/broadinstitute/cromwell/releases/download/$CROMWELL_VERSION/womtool-$CROMWELL_VERSION.jar
- wget https://barmsijs.lumc.nl/womtool-35-a7ae2d8-SNAP.jar
- export CROMWELL_VERSION=35
- wget https://github.com/broadinstitute/cromwell/releases/download/$CROMWELL_VERSION/womtool-$CROMWELL_VERSION.jar
- 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'
- "git diff --exit-code || (echo ERROR: Git changes detected. Please update submodules && exit 1)"
......@@ -110,7 +110,7 @@ task CaseControl {
output {
File outputFile = outputPath
Array[CaseControl] caseControls = read_json(outputFile)
CaseControls caseControls = read_json(outputFile)
}
runtime {
......
......@@ -170,3 +170,7 @@ struct CaseControl {
String controlName
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