Skip to content

Commit e85b58f

Browse files
authored
Merge pull request #151 from apeltzer/fix-post-dedup-steps
Fix for post-dup steps
2 parents ee3c44f + c69261d commit e85b58f

2 files changed

Lines changed: 8 additions & 8 deletions

File tree

CHANGELOG.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,11 +6,10 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
66

77
## [Unpublished / Dev Branch]
88

9-
### `Added`
10-
119
### `Fixed`
12-
* [#145](https://github.com/nf-core/eager/pull/145) - Added Picard Memory Handling [fix](https://github.com/nf-core/eager/issues/144)
10+
* [#151](https://github.com/nf-core/eager/pull/151) - Fixed [post-deduplication step errors](https://github.com/nf-core/eager/issues/128
1311
* [#147](https://github.com/nf-core/eager/pull/147) - Fix Samtools Index for [large references](https://github.com/nf-core/eager/issues/146)
12+
* [#145](https://github.com/nf-core/eager/pull/145) - Added Picard Memory Handling [fix](https://github.com/nf-core/eager/issues/144)
1413

1514
## [2.0.5] - 2019-01-28
1615

@@ -21,6 +20,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
2120

2221
### `Fixed`
2322
* [#128](https://github.com/nf-core/eager/issues/128) - Fixed reference genome handling errors
23+
)
2424

2525
### `Dependencies`
2626
* Picard Tools 2.18.21 -> 2.18.23

main.nf

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -907,7 +907,7 @@ process damageprofiler {
907907

908908
input:
909909
file bam from ch_mapped_reads_damageprofiler.mix(ch_mapped_reads_damageprofiler_cm,ch_bwamem_mapped_reads_damageprofiler)
910-
file fasta from ch_fasta_for_damageprofiler
910+
file fasta from ch_fasta_for_damageprofiler.first()
911911
file bai from ch_bam_index_for_damageprofiler
912912

913913

@@ -934,7 +934,7 @@ process qualimap {
934934

935935
input:
936936
file bam from ch_bam_filtered_qualimap
937-
file fasta from ch_fasta_for_qualimap
937+
file fasta from ch_fasta_for_qualimap.first()
938938

939939
output:
940940
file "*" into ch_qualimap_results
@@ -1140,12 +1140,12 @@ process multiqc {
11401140
file multiqc_config from ch_multiqc_config.collect().ifEmpty([])
11411141
file ('fastqc_raw/*') from ch_fastqc_results.collect().ifEmpty([])
11421142
file('fastqc/*') from ch_fastqc_after_clipping.collect().ifEmpty([])
1143-
file ('software_versions/*') from software_versions_yaml.collect().ifEmpty([])
1143+
file ('software_versions/software_versions_mqc*') from software_versions_yaml.collect().ifEmpty([])
11441144
file ('adapter_removal/*') from ch_adapterremoval_logs.collect().ifEmpty([])
11451145
file ('idxstats/*') from ch_idxstats_for_multiqc.collect().ifEmpty([])
11461146
file ('preseq/*') from ch_preseq_results.collect().ifEmpty([])
1147-
file ('damageprofiler/*') from ch_damageprofiler_results.collect().ifEmpty([])
1148-
file ('qualimap/*') from ch_qualimap_results.collect().ifEmpty([])
1147+
file ('damageprofiler/dmgprof*/*') from ch_damageprofiler_results.collect().ifEmpty([])
1148+
file ('qualimap/qualimap*/*') from ch_qualimap_results.collect().ifEmpty([])
11491149
file ('markdup/*') from ch_markdup_results_for_multiqc.collect().ifEmpty([])
11501150
file ('dedup*/*') from ch_dedup_results_for_multiqc.collect().ifEmpty([])
11511151
file ('fastp/*') from ch_fastp_for_multiqc.collect().ifEmpty([])

0 commit comments

Comments
 (0)