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

Remove AUGUR_RECURSION_LIMIT #1080

Merged
merged 1 commit into from
Aug 11, 2023
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
4 changes: 0 additions & 4 deletions Snakefile
Original file line number Diff line number Diff line change
Expand Up @@ -12,10 +12,6 @@ from collections import OrderedDict
import textwrap
import time

# Set the maximum recursion limit globally for all shell commands, to avoid
# issues with large trees crashing the workflow. Preserve Snakemake's default
# use of Bash's "strict mode", as we rely on that behaviour.
shell.prefix("set -euo pipefail; export AUGUR_RECURSION_LIMIT=10000; ")

# Store the user's configuration prior to loading defaults, so we can check for
# reused subsampling scheme names in the user's config. We need to make a deep
Expand Down
5 changes: 1 addition & 4 deletions nextstrain_profiles/nextstrain-scicore/submit.sh
Original file line number Diff line number Diff line change
@@ -1,14 +1,11 @@
#!/bin/sh

#SBATCH --output=log/%j.out # where to store the output ( %j is the JOBID )
#SBATCH --error=log/%j.err # where to store error messages

# activate conda environment
source /scicore/home/neher/neher/miniconda3/etc/profile.d/conda.sh
conda activate nextstrain
export AUGUR_MINIFY_JSON=1
export AUGUR_RECURSION_LIMIT=10000

{exec_job}