Skip to content

Commit

Permalink
Merge pull request #135 from jaleezyy/dep_patch
Browse files Browse the repository at this point in the history
Lineage assignment dependency adjustment
  • Loading branch information
jaleezyy authored Mar 9, 2023
2 parents ad83b64 + 5508205 commit de53ffc
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion conda_envs/assign_lineages.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ dependencies:
- pip=19.3.1
- setuptools<66.0.0
- python>=3.7
- snakemake-minimal>=5.13,<=6.8.0
- snakemake-minimal
- gofasta
- nodejs
- usher
Expand Down
2 changes: 1 addition & 1 deletion example_config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ nextclade-include-recomb: True
amplicon_loc_bed: 'resources/primer_schemes/artic_v3/ncov-qc_V3.scheme.bed'

# fasta of sequences to include with pangolin phylogeny
phylo_include_seqs: "data/blank_data.fasta"
phylo_include_seqs: "data/blank.fasta"

# List of negative control sample names or prefixes (i.e., ['Blank'] will cover Blank1, Blank2, etc.)
negative_control_prefix: []
Expand Down
4 changes: 2 additions & 2 deletions scripts/get_data_dependencies.sh
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#!/usr/bin/env bash

set -e # exit if pipeline returns non-zero status
set -o pipefail # return value of last command to exit with non-zero status
#set -e # exit if pipeline returns non-zero status
#set -o pipefail # return value of last command to exit with non-zero status
source ~/.bashrc

if [ -z "$CONDA_EXE" ] ; then
Expand Down
2 changes: 1 addition & 1 deletion scripts/signal_postprocess.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@

assert long_git_id.startswith('$Id: ')
#short_git_id = long_git_id[5:12]
short_git_id = "v1.5.8"
short_git_id = "v1.5.9"

# Suppresses matplotlib warning (https://github.com/jaleezyy/covid-19-signal/issues/59)
# Creates a small memory leak, but it's nontrivial to fix, and won't be a practical concern!
Expand Down
2 changes: 1 addition & 1 deletion signal.py
Original file line number Diff line number Diff line change
Expand Up @@ -238,7 +238,7 @@ def write_config_file(run_name, config_file, opt_tasks):
# note: add root_dir to determine the root directory of SIGNAL
script_path = os.path.join(os.path.abspath(sys.argv[0]).rsplit("/",1)[0])
args, allowed = create_parser()
version = 'v1.5.8'
version = 'v1.5.9'
alt_options = []

if args.version:
Expand Down

0 comments on commit de53ffc

Please sign in to comment.