Skip to content

Commit

Permalink
don't create a snakemake report
Browse files Browse the repository at this point in the history
  • Loading branch information
leoschwarz committed Sep 4, 2024
1 parent 8965a9e commit fa6b2b2
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/depiction_targeted_preproc/pipeline/run.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,8 @@ def run_workflow(sample_dir: Path) -> Path:
result_files = get_result_files_new(requested_artifacts=params.requested_artifacts, sample_dir=sample_dir)

# invoke snakemake
SnakemakeInvoke().invoke(work_dir=sample_dir.parent, result_files=result_files)
# TODO note report file is deactivated because it's currently broken due to dependencies (jinja2)
SnakemakeInvoke(report_file=None).invoke(work_dir=sample_dir.parent, result_files=result_files)

# zip the results
sample_name = sample_dir.name
Expand Down

0 comments on commit fa6b2b2

Please sign in to comment.