Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Ah change output of reblocking wdl to external path #7575

Merged
merged 3 commits into from
Nov 23, 2021
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions scripts/variantstore/wdl/GvsAoUReblockGvcf.wdl
Original file line number Diff line number Diff line change
Expand Up @@ -36,8 +36,8 @@ workflow GvsAoUReblockGvcf {
}

output {
File reblocked_gvcf = ReblockAndCopy.output_gvcf
File reblocked_gvcf_index = ReblockAndCopy.output_gvcf_index
String reblocked_gvcf = ReblockAndCopy.output_gvcf
String reblocked_gvcf_index = ReblockAndCopy.output_gvcf_index
}
}

Expand Down Expand Up @@ -110,7 +110,7 @@ task ReblockAndCopy {
}

output {
File output_gvcf = output_gvcf_filename
File output_gvcf_index = output_gvcf_filename + ".tbi"
String output_gvcf = destination + output_gvcf_filename
String output_gvcf_index = destination + output_gvcf_filename + ".tbi"
}
}