Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
T
tasks
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
biowdl
tasks
Commits
872e1467
Commit
872e1467
authored
6 years ago
by
Cats
Browse files
Options
Downloads
Plain Diff
Merge branch 'develop' into controlTreat
parents
dd18acf2
22295dff
No related branches found
Branches containing commit
No related tags found
Tags containing commit
1 merge request
!67
fix CaseControl and macs2 tasks
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
.travis.yml
+2
-3
2 additions, 3 deletions
.travis.yml
biopet/sampleconfig.wdl
+1
-1
1 addition, 1 deletion
biopet/sampleconfig.wdl
common.wdl
+4
-0
4 additions, 0 deletions
common.wdl
with
7 additions
and
4 deletions
.travis.yml
+
2
−
3
View file @
872e1467
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)"
This diff is collapsed.
Click to expand it.
biopet/sampleconfig.wdl
+
1
−
1
View file @
872e1467
...
...
@@ -111,7 +111,7 @@ task CaseControl {
output {
File outputFile = outputPath
Array[
CaseControl
]
caseControls = read_json(outputFile)
CaseControl
s
caseControls = read_json(outputFile)
}
runtime {
...
...
This diff is collapsed.
Click to expand it.
common.wdl
+
4
−
0
View file @
872e1467
...
...
@@ -170,3 +170,7 @@ struct CaseControl {
String controlName
IndexedBamFile controlBam
}
struct CaseControls {
Array[CaseControl] caseControls
}
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment