Skip to content
Snippets Groups Projects

QuaC - First major review

Merged Manavalan Gajapathy requested to merge make_it_production_ready into master
1 file
+ 2
2
Compare changes
  • Side-by-side
  • Inline
TARGETS_COVERAGE = [
# indexcov
get_targets("indexcov") if {"all", "indexcov"}.intersection(MODULES_TO_RUN) else [],
get_targets("indexcov") if {"all", "indexcov"}.intersection(MODULES_TO_RUN) and not EXOME_MODE else [],
# covviz
get_targets("covviz") if {"all", "covviz"}.intersection(MODULES_TO_RUN) else [],
get_targets("covviz") if {"all", "covviz"}.intersection(MODULES_TO_RUN) and not EXOME_MODE else [],
# mosdepth
get_targets("mosdepth", SAMPLES) if {"all", "mosdepth"}.intersection(MODULES_TO_RUN) else [],
]
@@ -52,7+52,7 @@
in_dir=lambda wildcards, input: Path(input[0]).parent,
shell:
r"""
echo "Heads up: Mosdepth-plotting is run on all samples in "{params.in_dir}"; Not just the files mentioned in the rule's input."
cd {params.in_dir} # if not in directory, mosdepth uses filepath as sample name :(
python {input.script} \
Loading