Skip to content

Commit 7dcd8f9

Browse files
authored
Merge pull request #200 from apeltzer/dev
Minor fixes + additional tests
2 parents f5447f7 + 2bdcb76 commit 7dcd8f9

2 files changed

Lines changed: 4 additions & 3 deletions

File tree

CHANGELOG.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,9 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
1818
* [#176](https://github.com/nf-core/eager/pull/176) - Increase runtime for DamageProfiler on [large reference genomes](https://github.com/nf-core/eager/issues/173)
1919
* [#172](https://github.com/nf-core/eager/pull/152) - DamageProfiler errors [won't crash entire pipeline anymore](https://github.com/nf-core/eager/issues/171)
2020
* [#174](https://github.com/nf-core/eager/pull/190) - Publish DeDup files [properly](https://github.com/nf-core/eager/issues/183)
21-
* [#196](https://github.com/nf-core/eager/pull/190) - Fix reference [issues](https://github.com/nf-core/eager/issues/150)
22-
* [#196](https://github.com/nf-core/eager/pull/190) - Fix issues with PE data being mapped incompletely
21+
* [#196](https://github.com/nf-core/eager/pull/196) - Fix reference [issues](https://github.com/nf-core/eager/issues/150)
22+
* [#196](https://github.com/nf-core/eager/pull/196) - Fix issues with PE data being mapped incompletely
23+
* [#200](https://github.com/nf-core/eager/pull/200) - Fix minor issue with some [typos](https://github.com/nf-core/eager/pull/196)
2324

2425
### `Dependencies`
2526

main.nf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -728,7 +728,7 @@ process bwa {
728728
"""
729729
} else {
730730
//PE collapsed, or SE data
731-
prefix = "${reads}.baseName}"
731+
prefix = "${reads.baseName}"
732732
"""
733733
bwa aln -t ${task.cpus} $fasta $reads -n ${params.bwaalnn} -l ${params.bwaalnl} -k ${params.bwaalnk} -f ${prefix}.sai
734734
bwa samse -r "@RG\\tID:ILLUMINA-${prefix}\\tSM:${prefix}\\tPL:illumina" $fasta ${prefix}.sai $reads | samtools sort -@ ${task.cpus} -O bam - > "${prefix}".sorted.bam

0 commit comments

Comments
 (0)