Skip to content

Commit 170e016

Browse files
authored
Merge pull request #110 from apeltzer/fix_mqc_section_orders
Fix mqc section orders
2 parents 57ab1c9 + e3e37db commit 170e016

3 files changed

Lines changed: 20 additions & 11 deletions

File tree

CHANGELOG.md

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,10 @@ All notable changes to this project will be documented in this file.
44
The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
55
and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).
66

7-
## [Unpublished]
7+
## [Unpublished / Dev Branch]
88

9-
### `Added`
10-
* [#80](https://github.com/nf-core/eager/pull/80) - BWA Index file handling
11-
* [#77](https://github.com/nf-core/eager/pull/77) - Lots of documentation updates by [@jfy133](https://github.com/jfy133)
9+
### `Fixed`
10+
* [#110](https://github.com/nf-core/eager/pull/110) - Fix for [MultiQC Missing Second FastQC report](https://github.com/nf-core/eager/issues/107)
1211

1312
## [2.0.3] - 2018-12-09
1413

conf/multiqc_config.yaml

Lines changed: 15 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -5,15 +5,24 @@ report_comment: >
55
report_section_order:
66
nf-core/eager-software-versions:
77
order: -1000
8-
top_modules:
9-
- fastqc:
8+
fastqc:
9+
after: 'nf-core/eager-software-versions'
1010
name: 'FastQC (raw)'
1111
path_filters:
12-
- '*_preAR_fastqc.zip'
13-
- fastqc:
12+
- '*_fastqc.zip'
13+
fastqc:
1414
name: 'FastQC (trimmed)'
1515
info: 'This section of the report shows FastQC results after adapter trimming.'
1616
target: ''
1717
path_filters:
18-
- '*_postAR_fastqc.zip'
19-
18+
- '*combined.prefixed_fastqc.zip'
19+
adapterRemoval:
20+
after: 'fastqc'
21+
Samtools:
22+
after: 'adapterRemoval'
23+
dedup:
24+
after: 'Samtools'
25+
qualimap:
26+
after: 'dedup'
27+
preseq:
28+
after: 'qualimap'

main.nf

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1010,7 +1010,8 @@ process multiqc {
10101010

10111011
input:
10121012
file multiqc_config
1013-
file ('fastqc/*') from ch_fastqc_results.collect().ifEmpty([])
1013+
file ('fastqc_raw/*') from ch_fastqc_results.collect().ifEmpty([])
1014+
file('fastqc/*') from ch_fastqc_after_clipping.collect().ifEmpty([])
10141015
file ('software_versions/*') from software_versions_yaml.collect().ifEmpty([])
10151016
file ('adapter_removal/*') from ch_adapterremoval_logs.collect().ifEmpty([])
10161017
file ('idxstats/*') from ch_idxstats_for_multiqc.collect().ifEmpty([])

0 commit comments

Comments
 (0)