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

VS-1371 - Compress the tarball for Extract Pgen Merged #8828

Closed
Closed
Show file tree
Hide file tree
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
1 change: 1 addition & 0 deletions .dockstore.yml
Original file line number Diff line number Diff line change
Expand Up @@ -436,6 +436,7 @@ workflows:
- master
- ah_var_store
- EchoCallset
- gg_VS-1371_CompressTheTarballAhVarStoreVersion
- name: MergePgenHierarchicalWdl
subclass: WDL
primaryDescriptorPath: /scripts/variantstore/wdl/MergePgenHierarchical.wdl
Expand Down
4 changes: 2 additions & 2 deletions scripts/variantstore/wdl/GvsUtils.wdl
Original file line number Diff line number Diff line change
Expand Up @@ -309,7 +309,7 @@ task SplitIntervalsTarred {
fi

# Tar up the interval file directory
tar -cf interval-files.tar interval-files
tar -czf interval-files.tar.gz interval-files
>>>

runtime {
Expand All @@ -322,7 +322,7 @@ task SplitIntervalsTarred {
}

output {
File interval_files_tar = "interval-files.tar"
File interval_files_tar = "interval-files.tar.gz"
Array[String] interval_filenames = read_lines("interval_list_list.txt")
File monitoring_log = "monitoring.log"
}
Expand Down
Loading