Skip to content
Snippets Groups Projects
Commit 3282101e authored by ffinfo's avatar ffinfo
Browse files

switch back

parent 6de75757
No related branches found
No related tags found
1 merge request!61Switch to structs
...@@ -102,7 +102,8 @@ task BaseRecalibrator { ...@@ -102,7 +102,8 @@ task BaseRecalibrator {
task CombineGVCFs { task CombineGVCFs {
input { input {
String? preCommand String? preCommand
Array[IndexedVcfFile]+ gvcfFiles Array[File]+ gvcfFiles
Array[File]+ gvcfFilesIndex
Array[File]+ intervals Array[File]+ intervals
String outputPath String outputPath
...@@ -131,8 +132,8 @@ task CombineGVCFs { ...@@ -131,8 +132,8 @@ task CombineGVCFs {
-V ~{sep=' -V ' gvcfFiles} \ -V ~{sep=' -V ' gvcfFiles} \
-L ~{sep=' -L ' intervals} -L ~{sep=' -L ' intervals}
else # TODO this should be handeled in wdl else # TODO this should be handeled in wdl
ln -sf ~{gvcfFiles[0].file} ~{outputPath} ln -sf ~{gvcfFiles[0]} ~{outputPath}
ln -sf ~{gvcfFiles[0].index} ~{outputPath}.tbi ln -sf ~{gvcfFiles[0]} ~{outputPath}.tbi
fi fi
} }
......
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