Skip to content

Commit

Permalink
Merge pull request #150 from FloWuenne/unicycler_nfcore
Browse files Browse the repository at this point in the history
Replace local unicycler module with nf-core module + bump version
  • Loading branch information
FloWuenne authored Jun 28, 2024
2 parents b3eda16 + e922812 commit 03f0dc8
Show file tree
Hide file tree
Showing 11 changed files with 273 additions and 14 deletions.
14 changes: 14 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,20 @@
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/)
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## v2.4.0 nf-core/bacass

### `Changed`

- [#150](https://github.com/nf-core/bacass/pull/150) Replace local unicycler module with nf-core module + bump version

### `Added`

### `Fixed`

### `Dependencies`

### `Deprecated`

## v2.3.1 nf-core/bacass: "Navy Iron Oyster" 2024/06/24

### `Changed`
Expand Down
1 change: 0 additions & 1 deletion conf/test.config
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,6 @@ params {
input = params.pipelines_testdata_base_path + 'bacass/bacass_short.tsv'

// some extra args to speed tests up
unicycler_args = "--no_correct --no_pilon"
prokka_args = " --fast"
assembly_type = 'short'
skip_pycoqc = true
Expand Down
1 change: 0 additions & 1 deletion conf/test_dfast.config
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,6 @@ params {
input = params.pipelines_testdata_base_path + 'bacass/bacass_short.tsv'

// some extra args to speed tests up
unicycler_args = "--no_correct --no_pilon"
annotation_tool = 'dfast'
assembly_type = 'short'
skip_pycoqc = true
Expand Down
5 changes: 5 additions & 0 deletions modules.json
Original file line number Diff line number Diff line change
Expand Up @@ -92,6 +92,11 @@
"git_sha": "4352dbdb09ec40db71e9b172b97a01dcf5622c26",
"installed_by": ["modules"]
},
"unicycler": {
"branch": "master",
"git_sha": "5f65b5398f3fe4b8d51d77ed90b0a8cd8c89bba7",
"installed_by": ["modules"]
},
"untar": {
"branch": "master",
"git_sha": "5caf7640a9ef1d18d765d55339be751bb0969dfa",
Expand Down

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

64 changes: 64 additions & 0 deletions modules/nf-core/unicycler/meta.yml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

61 changes: 61 additions & 0 deletions modules/nf-core/unicycler/tests/main.nf.test

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

104 changes: 104 additions & 0 deletions modules/nf-core/unicycler/tests/main.nf.test.snap

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 2 additions & 0 deletions modules/nf-core/unicycler/tests/tags.yml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion workflows/bacass.nf
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ for (param in checkPathParamList) { if (param) { file(param, checkIfExists: true
// MODULE: Local to the pipeline
//
include { PYCOQC } from '../modules/local/pycoqc'
include { UNICYCLER } from '../modules/local/unicycler'
include { UNICYCLER } from '../modules/nf-core/unicycler/main'
include { NANOPOLISH } from '../modules/local/nanopolish'
include { MEDAKA } from '../modules/local/medaka'
include { KRAKEN2_DB_PREPARATION } from '../modules/local/kraken2_db_preparation'
Expand Down

0 comments on commit 03f0dc8

Please sign in to comment.