Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
Q
QuaC
Manage
Activity
Members
Labels
Plan
Issues
15
Issue boards
Milestones
Wiki
Code
Merge requests
0
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
This is an archived project. Repository and other project resources are read-only.
Show more breadcrumbs
center-for-computational-genomics-and-data-science
public
QuaC
Commits
7db6966e
Commit
7db6966e
authored
3 years ago
by
Manavalan Gajapathy
Browse files
Options
Downloads
Patches
Plain Diff
uses local wrapper for multiqc - fixes
#47
parent
d978b2c7
No related branches found
No related tags found
2 merge requests
!5
Explicit conda env
,
!4
User configurable hardware resources
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
workflow/rules/aggregate_results.smk
+11
-3
11 additions, 3 deletions
workflow/rules/aggregate_results.smk
with
11 additions
and
3 deletions
workflow/rules/aggregate_results.smk
+
11
−
3
View file @
7db6966e
...
@@ -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"
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment