Skip to content

Commit

Permalink
fixing errors
Browse files Browse the repository at this point in the history
  • Loading branch information
mathiasbio committed Jul 4, 2024
1 parent 4d57f75 commit 9074023
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion BALSAMIC/workflows/QC.smk
Original file line number Diff line number Diff line change
Expand Up @@ -118,11 +118,12 @@ LOG.info(f"The following rules will be included in the workflow: {rules_to_inclu
quality_control_results = [
Path(qc_dir, case_id + "_metrics_deliverables.yaml").as_posix(),
Path(qc_dir, "multiqc_report.html").as_posix(),
Path(qc_dir, "multiqc_data/multiqc_data.json").as_posix(),
]

if 'delivery' in config:
wildcard_dict = {
"sample": config_model.get_all_sample_names() + ["tumor", "normal"],
"sample": sample_names + ["tumor", "normal"],
"case_name": case_id,
"allow_missing": True
}
Expand Down Expand Up @@ -151,6 +152,10 @@ if 'delivery' in config:
write_json(output_files_ready, delivery_ready)
FormatFile(delivery_ready)

wildcard_constraints:
sample="|".join(sample_names),


rule all:
input:
quality_control_results
Expand Down

0 comments on commit 9074023

Please sign in to comment.