Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Replace local unicycler module with nf-core module + bump version #150

Merged
merged 4 commits into from
Jun 28, 2024
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion conf/test.config
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ params {
input = params.pipelines_testdata_base_path + 'bacass/bacass_short.tsv'

// some extra args to speed tests up
unicycler_args = "--no_correct --no_pilon"
unicycler_args = ""
FloWuenne marked this conversation as resolved.
Show resolved Hide resolved
prokka_args = " --fast"
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
7 changes: 7 additions & 0 deletions modules/nf-core/unicycler/environment.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/main.nf

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
Loading