Skip to content

Commit

Permalink
fix: Update to the latest version of nextclade. (#1701)
Browse files Browse the repository at this point in the history
* Update to the latest version of nextclade.
  • Loading branch information
jgadling authored Aug 16, 2024
1 parent 69c78a2 commit 8b44c4b
Show file tree
Hide file tree
Showing 9 changed files with 6,742 additions and 61 deletions.
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

0 comments on commit 8b44c4b

Please sign in to comment.