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

Update top-level name #12

Merged
merged 3 commits into from
Apr 19, 2024
Merged
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
2 changes: 1 addition & 1 deletion .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,4 +8,4 @@ jobs:
ci:
uses: nextstrain/.github/.github/workflows/pathogen-repo-ci.yaml@master
with:
build-args: auspice/flu_avian_h5n1_ha.json
victorlin marked this conversation as resolved.
Show resolved Hide resolved
build-args: auspice/avian-flu_h5n1_ha.json
4 changes: 2 additions & 2 deletions batch.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,8 +30,8 @@
for segment in params.segments:
call = ['nextstrain', 'build', '--aws-batch', '.', '-j 1']
targets = []
targets.append('auspice/flu_avian_%s_%s_tree.json'%(subtype, segment))
targets.append('auspice/flu_avian_%s_%s_meta.json'%(subtype, segment))
targets.append('auspice/avian-flu_%s_%s_tree.json'%(subtype, segment))
targets.append('auspice/avian-flu_%s_%s_meta.json'%(subtype, segment))
call.extend(targets)
print(' '.join(call))
log = open('logs/%s_%s.txt'%(subtype, segment), 'w')
Expand Down
4 changes: 2 additions & 2 deletions quickstart-build/Snakefile
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ SEGMENTS = ["ha"]
generated JSON files in the auspice folder for each subtype and segment."""
rule all:
input:
auspice_json = expand("auspice/flu_avian_{subtype}_{segment}.json", subtype=SUBTYPES, segment=SEGMENTS)
auspice_json = expand("auspice/avian-flu_{subtype}_{segment}.json", subtype=SUBTYPES, segment=SEGMENTS)

"""Specify all input files here. For this build, you'll start with input sequences
from the example_data folder, which contain metadata information in the
Expand Down Expand Up @@ -305,7 +305,7 @@ rule export:
node_data = node_data_by_wildcards,
auspice_config = files.auspice_config
output:
auspice_json = "auspice/flu_avian_{subtype}_{segment}.json"
auspice_json = "auspice/avian-flu_{subtype}_{segment}.json"
shell:
"""
augur export v2 \
Expand Down