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

fix: Update to the latest version of nextclade. #1701

Merged
merged 5 commits into from
Aug 16, 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 src/backend/Dockerfile.lineage_qc
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ RUN update-ca-certificates

# install nextclade, check it installed correctly
RUN apt-get --yes install curl
RUN cd /usr/local/bin && curl -fsSL "https://github.com/nextstrain/nextclade/releases/download/2.14.0/nextclade-x86_64-unknown-linux-gnu" -o "nextclade" && chmod +x nextclade
RUN cd /usr/local/bin && curl -fsSL "https://github.com/nextstrain/nextclade/releases/download/3.8.2/nextclade-x86_64-unknown-linux-gnu" -o "nextclade" && chmod +x nextclade
RUN nextclade --version

# Poetry: install app
Expand Down
1 change: 1 addition & 0 deletions src/backend/aspen/workflows/nextclade/prep_samples.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@
if you're tweaking it to support multiple tools. Especially look closely at
the function `get_sample_ids_to_refresh` in here.
"""

import io
import json
import subprocess
Expand Down
2 changes: 1 addition & 1 deletion src/backend/aspen/workflows/nextclade/run_nextclade.sh
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ shopt -s inherit_errexit # no silent breaking
# This is where we will store Nextclade's dataset for the target pathogen.
NEXTCLADE_DATASET_DIR=nextclade_dataset_bundle
# Inside the dataset, Nextclade uses this file to tag the dataset.
NEXTCLADE_TAG_FILENAME=tag.json
NEXTCLADE_TAG_FILENAME=pathogen.json

# Certain bits of info need to be passed around during the workflow.
# Using JSON file as an easy way to pass them around to various processes.
Expand Down
Loading
Loading