Skip to content

Commit

Permalink
Fix Issue #592
Browse files Browse the repository at this point in the history
  • Loading branch information
jfy133 committed Oct 27, 2020
1 parent 31a47bc commit 6e57f33
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 0 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,13 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).

## [2.2.1] - 2020-10-20

### `Fixed`

- [#591](https://github.com/nf-core/eager/issues/591) - Fixed offset underlines in lane merging diagram in docs
- [#592](https://github.com/nf-core/eager/issues/592) - Fixed issue where supplying Bowtie2 index reported missing bwamem_index error

## [2.2.0] - Ulm - 2020-10-20

### `Added`
Expand Down
2 changes: 2 additions & 0 deletions main.nf
Original file line number Diff line number Diff line change
Expand Up @@ -348,6 +348,7 @@ if( params.bt2_index != '' && params.mapper == 'bowtie2' ){
.into {bt2_index; bt2_index_bwamem}

bwa_index = Channel.empty()
bwa_index_bwamem = Channel.empty()
}

// Validate BAM input isn't set to paired_end
Expand Down Expand Up @@ -855,6 +856,7 @@ if( params.bwa_index == '' && !params.fasta.isEmpty() && (params.mapper == 'bwaa
mkdir BWAIndex && mv ${fasta}* BWAIndex
"""
}

bt2_index = Channel.empty()
}

Expand Down

0 comments on commit 6e57f33

Please sign in to comment.