Skip to content
Snippets Groups Projects
Commit 2f05897e authored by Floreal Cabanettes's avatar Floreal Cabanettes
Browse files

Fix missing config

parent 2229b861
No related branches found
No related tags found
1 merge request!3Add parallel batches
......@@ -15,7 +15,7 @@ os.environ["PYTHONPATH"] = os.path.join(ROOTPATH, "lib")
from svrunner_utils import getMeanInsertSize, getChromLength, get_insert_size
from svsnakemake_utils import SnakemakeUtils
size_batches = int(config["batches"])
size_batches = int(config["batches"] if "batches" in config else 1)
size_batches = 5 # FOR DEBUG ONLY
# TODO: raise the error only if genomestrip (or genomestrip genotype) is used)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment