-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Automation: Build global and wa-state phylogenetic trees
Added a `phylogenetic_wa` GitHub Action in order to support building both global and Washington state phylogenetic trees. Since both define custom_rules, which would overwrite each other, we defined a config-public.yaml that combines deploy-related and Washington state-specific custom rules, merging them into a unified array. For the Washington state build, the public-facing configuration required additional overrides to access data from the public site, as opposed to the original configuration, which relied on privately processed ingest.
- Loading branch information
Showing
2 changed files
with
40 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
9 changes: 9 additions & 0 deletions
9
phylogenetic/build-configs/washington-state/config-public.yaml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
# Use public data for the public tree | ||
sequences_url: "https://data.nextstrain.org/files/workflows/WNV/sequences.fasta.zst" | ||
metadata_url: "https://data.nextstrain.org/files/workflows/WNV/metadata.tsv.zst" | ||
input_metadata: "data/metadata.tsv" | ||
input_sequences: "data/sequences.fasta" | ||
|
||
custom_rules: | ||
- build-configs/nextstrain-automation/deploy.smk | ||
- build-configs/washington-state/washington-state-rules.smk |