Snakemake version
8.10.0
snakemake-wrappers version : "v3.7.0/bio/multiqc"
Describe the bug
So, I have a bigger project, where in the end, I run multqc on reports generated by other tools. I am using the multiqc wrapper. I have a multiqc.smk that executes the relevant rules. When I execute the multqc.smk, everything works just fine. However, when I include the multiqc.smk in the entry snakefile and try to run, I get the error NameError: name 'PosixPath' is not defined
So the error comes up on when I execute the entry snakefile and not multiqc.smk independently
Logs
Here is the error in detail:
NameError: name 'PosixPath' is not defined
RuleException:
CalledProcessError in file /home/odette/NGS_pipeline/workflow/rules/multiqc.smk, line 47:
Command 'set -euo pipefail; /home/odette/anaconda3/envs/snakemake/bin/python3.12 /home/odette/NGS_pipeline/.snakemake/scripts/tmpc7l3marc.wrapper.py' returned non-zero exit status 1.
Minimal example
Here is how my fastqc rule looks like. Note, all other rules execute just fine and produces needed results
Snakemake version 8.10.0 snakemake-wrappers version : "v3.7.0/bio/multiqc"
Describe the bug So, I have a bigger project, where in the end, I run multqc on reports generated by other tools. I am using the multiqc wrapper. I have a multiqc.smk that executes the relevant rules. When I execute the multqc.smk, everything works just fine. However, when I include the multiqc.smk in the entry snakefile and try to run, I get the error
NameError: name 'PosixPath' is not defined
So the error comes up on when I execute the entry snakefile and not multiqc.smk independently Logs Here is the error in detail:Minimal example Here is how my fastqc rule looks like. Note, all other rules execute just fine and produces needed results
Additional context Here is how my entry snakefile looks like: