Closed Michael-Geuenich closed 1 year ago
The default snakemake in RASflow is v5.3.0 (if you set up the Conda environment with the yaml file env.yaml (as explained in the tutorial file). The error you got about specifying the number of cores in the command is a new feature in the newer versions of snakemake.
Regarding the error in the quality control step, as stated in the error message, "reverse" is reserved by your machine either in the system or by some tool. You can try to change "reverse" to another name, such as "reverse1" (remember to change every variable name), in workflow/quality_control.rules.
I just cloned this repository, created the conda environment and activated it.
The first issue I ran into is that snakemake requires the number of jobs to be set:
This is even though I have the number of cores specified to 1 or 4 on line 38 of the config:
Adding
--jobs 1
to themain.py
file on line 65 as follows luckily fixed that issue:However, now I'm getting the following error:
The snakemake version inside the environment is as it should be (I believe)
I've also checked the output folder and the logs but there are no changes in either. Any ideas on what the issue is/how to fix it?