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 {
String? preCommand
String tool_jar
Array[File]+ inputFiles
String keyFilePath
String? sample
String? library
String? readgroup
......@@ -80,11 +81,12 @@ task SampleConfig {
${"--library " + library} \
${"--readgroup " + readgroup} \
${"--jsonOutput " + jsonOutputPath} \
${"--tsvOutput " + tsvOutputPath}
${"--tsvOutput " + tsvOutputPath} \
> ${keyFilePath}
}
output {
File keysFile = stdout()
File keysFile = keyFilePath
File? jsonOutput = jsonOutputPath
File? tsvOutput = tsvOutputPath
}
......
task Index {
String? preCommand
String bamFilePath
File bamFilePath
command {
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