Skip to content
Snippets Groups Projects
Commit 7db6966e authored by Manavalan Gajapathy's avatar Manavalan Gajapathy
Browse files

uses local wrapper for multiqc - fixes #47

parent d978b2c7
No related branches found
No related tags found
2 merge requests!5Explicit conda env,!4User configurable hardware resources
...@@ -51,7 +51,9 @@ rule multiqc_by_sample_initial_pass: ...@@ -51,7 +51,9 @@ rule multiqc_by_sample_initial_pass:
# using custom rename config file # using custom rename config file
extra=lambda wildcards, input: f"--config {input.multiqc_config} --sample-names {input.rename_config}", extra=lambda wildcards, input: f"--config {input.multiqc_config} --sample-names {input.rename_config}",
wrapper: wrapper:
"0.64.0/bio/multiqc" # "0.64.0/bio/multiqc"
### see issue #47 on why local wrapper is used ###
"file:src/wrapper_edited/0.64.0_bio_multiqc/wrapper.py"
rule quac_watch: rule quac_watch:
...@@ -134,7 +136,10 @@ rule multiqc_by_sample_final_pass: ...@@ -134,7 +136,10 @@ rule multiqc_by_sample_final_pass:
# using custom rename config file # using custom rename config file
extra=lambda wildcards, input: f"--config {input.multiqc_config} --sample-names {input.rename_config}", extra=lambda wildcards, input: f"--config {input.multiqc_config} --sample-names {input.rename_config}",
wrapper: wrapper:
"0.64.0/bio/multiqc" # "0.64.0/bio/multiqc"
### see issue #47 on why local wrapper is used ###
"file:src/wrapper_edited/0.64.0_bio_multiqc/wrapper.py"
########################## Multi-sample QC aggregation ########################## ########################## Multi-sample QC aggregation ##########################
...@@ -193,4 +198,7 @@ rule multiqc_aggregation_all_samples: ...@@ -193,4 +198,7 @@ rule multiqc_aggregation_all_samples:
--cl_config "max_table_rows: 2000"' --cl_config "max_table_rows: 2000"'
), ),
wrapper: wrapper:
"0.64.0/bio/multiqc" # "0.64.0/bio/multiqc"
### see issue #47 on why local wrapper is used ###
"file:src/wrapper_edited/0.64.0_bio_multiqc/wrapper.py"
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