Skip to content
This repository has been archived by the owner on Nov 14, 2024. It is now read-only.

Commit

Permalink
Update examples for v1.25 (#105)
Browse files Browse the repository at this point in the history
* Group general stats samples

* Update to use generalstats_* and module_order

* Update configs

* Update examples

* Update configs

* Update option name

* Update reports
  • Loading branch information
vladsavelyev authored Sep 16, 2024
1 parent 1b2deb6 commit ca9a028
Show file tree
Hide file tree
Showing 18 changed files with 6,135 additions and 3,360 deletions.
14 changes: 14 additions & 0 deletions public/examples/bs-seq/multiqc_config.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
module_order:
- "bismark"
- "cutadapt"
- "fastqc":
name: "FastQC: trimmed"
anchor: "fqc_trimmed"
path_filters:
- "*_trimmed*"
- "fastqc":
name: "FastQC: raw"
anchor: "fqc_raw"
path_filters_exclude:
- "*_trimmed*"
generalstats: false
1,986 changes: 1,464 additions & 522 deletions public/examples/bs-seq/multiqc_report.html

Large diffs are not rendered by default.

Binary file modified public/examples/bs-seq/multiqc_report.zip
Binary file not shown.
18 changes: 14 additions & 4 deletions public/examples/hi-c/multiqc_config.yaml
Original file line number Diff line number Diff line change
@@ -1,4 +1,14 @@
extra_fn_clean_exts:
- .C8DRAANXX
- .C8LFMANXX
- .C8H0KANXX
extra_fn_clean_trim:
- ".r_1_2"
- ".s_1"
- ".s_2"
- ".s_3"
- ".C8DRAANXX"
- ".C8LFMANXX"
- ".C8H0KANXX"

# Search patterns for grouping paired samples in general stats (e.g. FastQ R1/R2)
# Affects the modules that support it (e.g. fastqc, fastp)
table_sample_merge:
"R1": ".r_1"
"R2": ".r_2"
901 changes: 507 additions & 394 deletions public/examples/hi-c/multiqc_report.html

Large diffs are not rendered by default.

Binary file modified public/examples/hi-c/multiqc_report.zip
Binary file not shown.
1,825 changes: 1,014 additions & 811 deletions public/examples/jupyter/multiqc_report.html

Large diffs are not rendered by default.

Binary file modified public/examples/jupyter/multiqc_report.zip
Binary file not shown.
281 changes: 247 additions & 34 deletions public/examples/jupyter/notebook.html

Large diffs are not rendered by default.

16 changes: 13 additions & 3 deletions public/examples/ngi-rna/multiqc_config.yaml
Original file line number Diff line number Diff line change
@@ -1,8 +1,5 @@
template: 'ngi'
disable_ngi: false
extra_fn_clean_exts:
- '_1.'
- '_2.'
report_section_order:
ngi-rnaseq-module:
order: -1000
Expand All @@ -12,3 +9,16 @@ report_comment: >
This report has been generated by the <a href="https://github.com/SciLifeLab/NGI-RNAseq" target="_blank">NGI-RNAseq</a>
analysis pipeline. Some additional functionality is added to the report using the
<a href="https://github.com/ewels/MultiQC_NGI" target="_blank">MultiQC_NGI plugin</a>.
extra_fn_clean_exts:
- '_trimming_report.txt'

# Search patterns for grouping paired samples in general stats (e.g. FastQ R1/R2)
# Affects the modules that support it (e.g. fastqc, fastp)
table_sample_merge:
"R1":
- type: regex
pattern: "_1$"
"R2":
- type: regex
pattern: "_2$"
Binary file modified public/examples/ngi-rna/multiqc_report.zip
Binary file not shown.
1,121 changes: 620 additions & 501 deletions public/examples/ngi-rna/test_ngi_project_multiqc_report.html

Large diffs are not rendered by default.

22 changes: 19 additions & 3 deletions public/examples/rna-seq/multiqc_config.yaml
Original file line number Diff line number Diff line change
@@ -1,3 +1,19 @@
extra_fn_clean_exts:
- _1
- _2
# Search patterns for grouping paired samples in general stats (e.g. FastQ R1/R2)
# Affects the modules that support it (e.g. fastqc, fastp)
table_sample_merge:
"R1": "_1"
"R2": "_2"

module_order:
- "cutadapt"
- "fastqc":
name: "FastQC: trimmed"
anchor: "fqc_trimmed"
path_filters:
- "*_val*"
- "fastqc":
name: "FastQC: raw"
anchor: "fqc_raw"
path_filters_exclude:
- "*_val*"
generalstats: false
2,179 changes: 1,584 additions & 595 deletions public/examples/rna-seq/multiqc_report.html

Large diffs are not rendered by default.

Binary file modified public/examples/rna-seq/multiqc_report.zip
Binary file not shown.
22 changes: 14 additions & 8 deletions public/examples/wgs/multiqc_config.yaml
Original file line number Diff line number Diff line change
@@ -1,14 +1,20 @@
fn_ignore_files:
- '*.indel.annotated.vcf.gz.snpEff.summary.csv'

extra_fn_clean_exts:
- .clean
- _S1
- _S2
- _S3
- _S4
- _S5
- _S6
- .AHJHNYCCXX
- ".clean"
- ".AHJHNYCCXX"
- pattern: _S\d_L00\d
type: regex

extra_fn_clean_trim:
- "_001"

# Search patterns for grouping paired samples in general stats (e.g. FastQ R1/R2)
# Affects the modules that support it (e.g. fastqc, fastp)
table_sample_merge:
"R1": "_R1"
"R2": "_R2"

table_columns_visible:
FastQC:
Expand Down
1,110 changes: 625 additions & 485 deletions public/examples/wgs/multiqc_report.html

Large diffs are not rendered by default.

Binary file modified public/examples/wgs/multiqc_report.zip
Binary file not shown.

0 comments on commit ca9a028

Please sign in to comment.