I am trying to set up and run snakemake on Windows 10 following the instructions in the documentation. I have installed snakemake with conda. I verify the installation with snakemake --version. When I try to run a simple workflow (eg. the one in the tutorial) I get the following error:
ImportError: DLL load failed while importing _ctypes: The specified module could not be found.
Can anyone help?
Many thanks, Martha
snakemake version 7.16.0
conda verison 22.9.0
Snakefile:
rule bwa_map:
input:
"data/genome.fa",
"data/samples/A.fastq"
output:
"mapped_reads/A.bam"
shell:
"bwa mem {input} | samtools view -Sb - > {output}"