You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
At least for snakemake 5.32, I can't use my snakemake SGE profile without using the new parameter --conda-not-block-search-path-envvars. If I don't provide the parameter, I get an import error when snakemake calls my job submission script:
Traceback (most recent call last):
File "/ebio/abt3_projects/software/dev/ll_pipelines/llmgqc/bin/ll_pipeline_utils/profiles/sge/sge-submit.py", line 7, in <module>
from snakemake.utils import read_job_properties
ModuleNotFoundError: No module named 'snakemake'
The top of my job submission script:
#!/usr/bin/env python3
import os
import sys
import re
import subprocess
from snakemake.utils import read_job_properties
How do I avoid having to use --conda-not-block-search-path-envvars every time I run snakemake? I tried adding conda activate snakemake to the bottom of my sge-jobscript.sh, but that didn't help
The text was updated successfully, but these errors were encountered:
At least for snakemake 5.32, I can't use my snakemake SGE profile without using the new parameter
--conda-not-block-search-path-envvars
. If I don't provide the parameter, I get an import error when snakemake calls my job submission script:The top of my job submission script:
My sge-jobscript.sh:
How do I avoid having to use
--conda-not-block-search-path-envvars
every time I run snakemake? I tried addingconda activate snakemake
to the bottom of mysge-jobscript.sh
, but that didn't helpThe text was updated successfully, but these errors were encountered: