Snakemake Tip of the Day:
Limit intense parallel jobs with resources inside the rule to prevent overload! Add
resources: star_jobs=1
to the rule, set the global limit
snakemake --resources star_jobs=10
Now only 10 star jobs run at once!
#Snakemake #Bioinformatics
Limit intense parallel jobs with resources inside the rule to prevent overload! Add
resources: star_jobs=1
to the rule, set the global limit
snakemake --resources star_jobs=10
Now only 10 star jobs run at once!
#Snakemake #Bioinformatics
Comments