Skip to content

Commit

Permalink
Merge pull request #229 from MaxUlysse/Control-FREEC
Browse files Browse the repository at this point in the history
Fix Control freec restart issue
  • Loading branch information
maxulysse authored Jul 13, 2020
2 parents 2e39582 + 569e8c3 commit 8c4e8d3
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,8 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/) a

### Fixed

- [#229](https://github.com/nf-core/sarek/pull/229) - Fix `Control-FREEC` restart issue [#225](https://github.com/nf-core/sarek/issues/225)

### Deprecated

### Removed
Expand Down
2 changes: 1 addition & 1 deletion main.nf
Original file line number Diff line number Diff line change
Expand Up @@ -392,7 +392,7 @@ if (!checkParameterExistence(step, stepList)) exit 1, "Unknown step ${step}, see

toolList = defineToolList()
tools = params.tools ? params.tools.split(',').collect{it.trim().toLowerCase().replaceAll('-', '').replaceAll('_', '')} : []
if (step == 'controlfreec') tools = 'controlfreec'
if (step == 'controlfreec') tools = ['controlfreec']
if (!checkParameterList(tools, toolList)) exit 1, 'Unknown tool(s), see --help for more information'

skipQClist = defineSkipQClist()
Expand Down

0 comments on commit 8c4e8d3

Please sign in to comment.