Skip to content

Commit

Permalink
add dump_gcloud_env_info workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
tomkinsc committed Oct 20, 2023
1 parent f7effd4 commit df8109e
Show file tree
Hide file tree
Showing 2 changed files with 25 additions and 0 deletions.
5 changes: 5 additions & 0 deletions .dockstore.yml
Original file line number Diff line number Diff line change
Expand Up @@ -144,6 +144,11 @@ workflows:
primaryDescriptorPath: /pipes/WDL/workflows/downsample.wdl
testParameterFiles:
- empty.json
- name: dump_gcloud_env_info
subclass: WDL
primaryDescriptorPath: /pipes/WDL/workflows/dump_gcloud_env_info.wdl
testParameterFiles:
- empty.json
- name: fastq_to_ubam
subclass: WDL
primaryDescriptorPath: /pipes/WDL/workflows/fastq_to_ubam.wdl
Expand Down
20 changes: 20 additions & 0 deletions pipes/WDL/workflows/dump_gcloud_env_info.wdl
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
version 1.0

#DX_SKIP_WORKFLOW
import "../tasks/tasks_terra.wdl" as terra

workflow dump_gcloud_env_info {
meta {
description: "Write system and gcloud environment info to output files."
author: "Broad Viral Genomics"
email: "[email protected]"
}

call terra.get_gcloud_env_info

output {
Array[String] gcloud_env_info_files = get_gcloud_env_info.env_info_files
File additional_command_stdout = get_gcloud_env_info.additional_command_stdout
}
}

0 comments on commit df8109e

Please sign in to comment.