Skip to content

Commit

Permalink
Fixed bug with workflow_version output that only arises during runt…
Browse files Browse the repository at this point in the history
…ime on Cromwell.
  • Loading branch information
williamrowell committed Nov 15, 2024
1 parent 72918fe commit 50766e7
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,18 +24,18 @@ Both workflows are designed to analyze human PacBio whole genome sequencing (WGS

This is an actively developed workflow with multiple versioned releases, and we make use of git submodules for common tasks that are shared by multiple workflows. There are two ways to ensure you are using a supported release of the workflow and ensure that the submodules are correctly initialized:

1) Download the release zips directly from a [supported release](https://github.com/PacificBiosciences/HiFi-human-WGS-WDL/releases/tag/v2.0.3):
1) Download the release zips directly from a [supported release](https://github.com/PacificBiosciences/HiFi-human-WGS-WDL/releases/tag/v2.0.4):

```bash
wget https://github.com/PacificBiosciences/HiFi-human-WGS-WDL/releases/download/v2.0.3/hifi-human-wgs-singleton.zip
wget https://github.com/PacificBiosciences/HiFi-human-WGS-WDL/releases/download/v2.0.3/hifi-human-wgs-family.zip
wget https://github.com/PacificBiosciences/HiFi-human-WGS-WDL/releases/download/v2.0.4/hifi-human-wgs-singleton.zip
wget https://github.com/PacificBiosciences/HiFi-human-WGS-WDL/releases/download/v2.0.4/hifi-human-wgs-family.zip
```

2) Clone the repository and initialize the submodules:

```bash
git clone \
--depth 1 --branch v2.0.3 \
--depth 1 --branch v2.0.4 \
--recursive \
https://github.com/PacificBiosciences/HiFi-human-WGS-WDL.git
```
Expand Down
2 changes: 1 addition & 1 deletion workflows/family.wdl
Original file line number Diff line number Diff line change
Expand Up @@ -400,6 +400,6 @@ workflow humanwgs_family {

# workflow metadata
String workflow_name = "humanwgs_family"
String workflow_version = "v2.0.3~{"-" + debug_version}"
String workflow_version = "v2.0.4" + if defined(debug_version) then "~{"-" + debug_version}" else ""
}
}
2 changes: 1 addition & 1 deletion workflows/singleton.wdl
Original file line number Diff line number Diff line change
Expand Up @@ -332,6 +332,6 @@ workflow humanwgs_singleton {

# workflow metadata
String workflow_name = "humanwgs_family"
String workflow_version = "v2.0.3~{"-" + debug_version}"
String workflow_version = "v2.0.4" + if defined(debug_version) then "~{"-" + debug_version}" else ""
}
}

0 comments on commit 50766e7

Please sign in to comment.