Skip to content
Snippets Groups Projects
Commit 8aaf9153 authored by Cats's avatar Cats
Browse files

call caching fixes

parent 605c278c
No related branches found
No related tags found
1 merge request!15Biowdl 25
...@@ -60,6 +60,7 @@ task SampleConfig { ...@@ -60,6 +60,7 @@ task SampleConfig {
String? preCommand String? preCommand
String tool_jar String tool_jar
Array[File]+ inputFiles Array[File]+ inputFiles
String keyFilePath
String? sample String? sample
String? library String? library
String? readgroup String? readgroup
...@@ -80,11 +81,12 @@ task SampleConfig { ...@@ -80,11 +81,12 @@ task SampleConfig {
${"--library " + library} \ ${"--library " + library} \
${"--readgroup " + readgroup} \ ${"--readgroup " + readgroup} \
${"--jsonOutput " + jsonOutputPath} \ ${"--jsonOutput " + jsonOutputPath} \
${"--tsvOutput " + tsvOutputPath} ${"--tsvOutput " + tsvOutputPath} \
> ${keyFilePath}
} }
output { output {
File keysFile = stdout() File keysFile = keyFilePath
File? jsonOutput = jsonOutputPath File? jsonOutput = jsonOutputPath
File? tsvOutput = tsvOutputPath File? tsvOutput = tsvOutputPath
} }
......
task Index { task Index {
String? preCommand String? preCommand
String bamFilePath File bamFilePath
command { command {
set -e -o pipefail set -e -o pipefail
......
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