File tree 3 files changed +8
-4
lines changed
3 files changed +8
-4
lines changed Original file line number Diff line number Diff line change @@ -7,9 +7,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
7
7
8
8
### Enhancements & fixes
9
9
10
+ - [[ #428 ] ( https://github.com/nf-core/chipseq/issues/428 )] - Bump MultiQC version to 1.25.1
10
11
- [[ PR #434 ] ( https://github.com/nf-core/chipseq/pull/434 )] - Prevent pipeline fails from erroneous param validation when igenomes is used.
11
12
- [[ #432 ] ( https://github.com/nf-core/chipseq/issues/432 )] - Fix ` GFFREAD ` call to have the two expected input channels.
12
- - [[ # 428 ] ( https://github.com/nf-core/chipseq/issues/428 )] - Bump MultiQC version to 1.25.1
13
+ - [[ PR # 444 ] ( https://github.com/nf-core/chipseq/pull/444 )] - Add empty map to ch_gff so that when provided by the user ` GFFREAD ` works.
13
14
14
15
### Parameters
15
16
Original file line number Diff line number Diff line change @@ -71,9 +71,9 @@ workflow PREPARE_GENOME {
71
71
} else if (gff) {
72
72
if (gff. endsWith(' .gz' )) {
73
73
ch_gff = GUNZIP_GFF ([[:], file(gff, checkIfExists : true )]). gunzip. map { it[1 ] }
74
- ch_versions = ch_versions. mix(GUNZIP_GFF . out. versions). map { [ [:], it ] }
74
+ ch_versions = ch_versions. mix(GUNZIP_GFF . out. versions)
75
75
} else {
76
- ch_gff = Channel . value(file(gff, checkIfExists : true ))
76
+ ch_gff = Channel . value(file(gff, checkIfExists : true )). map { [ [:], it ] }
77
77
}
78
78
79
79
ch_gtf = GFFREAD (ch_gff, []). gtf. map { it[1 ] }
Original file line number Diff line number Diff line change @@ -524,6 +524,8 @@ workflow CHIPSEQ {
524
524
//
525
525
// MODULE: MultiQC
526
526
//
527
+ ch_multiqc_report = Channel . empty()
528
+
527
529
if (! params. skip_multiqc) {
528
530
ch_multiqc_config = Channel . fromPath(" $projectDir /assets/multiqc_config.yml" , checkIfExists : true )
529
531
ch_multiqc_custom_config = params. multiqc_config ? Channel . fromPath( params. multiqc_config ): Channel . empty()
@@ -578,7 +580,8 @@ workflow CHIPSEQ {
578
580
ch_multiqc_report = MULTIQC . out. report
579
581
}
580
582
581
- emit :multiqc_report = MULTIQC . out. report. toList() // channel: /path/to/multiqc_report.html
583
+ emit :
584
+ multiqc_report = ch_multiqc_report. toList() // channel: /path/to/multiqc_report.html
582
585
versions = ch_versions // channel: [ path(versions.yml) ]
583
586
584
587
}
You can’t perform that action at this time.
0 commit comments