-
Notifications
You must be signed in to change notification settings - Fork 403
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
The AUGUR_RECURSION_LIMIT is set to 10,000 by default since Augur 22.0.0 and the workflow's minimum required Augur version is now 22.0.1¹ ¹ https://github.com/nextstrain/ncov/blob/d34a0cf67890fc6b33e003247b90e900ac02c80c/workflow/envs/nextstrain.yaml#L7
- Loading branch information
1 parent
d34a0cf
commit 220ae2e
Showing
2 changed files
with
1 addition
and
8 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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} | ||
|
||
|