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

Remove white space in process tags #792

Merged
merged 2 commits into from
Nov 12, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
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
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

### `Fixed`

- [#792](https://github.com/nf-core/ampliseq/pull/792) - Remove white spaces in process tags to avoid errors on some systems
- [#785](https://github.com/nf-core/ampliseq/pull/785) - Template update for nf-core/tools version 3.0.2
- [#786](https://github.com/nf-core/ampliseq/pull/786) - Creation of the summary report was failing with `--dada_ref_taxonomy silva=132`

Expand Down
2 changes: 1 addition & 1 deletion modules/local/qiime2_ancom_tax.nf
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
process QIIME2_ANCOM_TAX {
tag "${table.baseName} - taxonomic level: ${taxlevel}"
tag "${table.baseName}-taxonomic_level:${taxlevel}"
label 'process_medium'
label 'single_cpu'

Expand Down
2 changes: 1 addition & 1 deletion modules/local/qiime2_ancombc_asv.nf
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
process QIIME2_ANCOMBC_ASV {
tag "${table.baseName} ${formula}"
tag "${table.baseName}-${formula}"
label 'process_medium'
label 'single_cpu'
label 'process_long'
Expand Down
2 changes: 1 addition & 1 deletion modules/local/qiime2_ancombc_tax.nf
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
process QIIME2_ANCOMBC_TAX {
tag "${table.baseName} ${formula} - ${taxlevel}"
tag "${table.baseName}-${formula}-${taxlevel}"
label 'process_medium'
label 'single_cpu'

Expand Down
2 changes: 1 addition & 1 deletion modules/local/qiime2_diversity_adonis.nf
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
process QIIME2_DIVERSITY_ADONIS {
tag "${core.baseName} - ${formula}"
tag "${core.baseName}-${formula}"
label 'process_low'

container "qiime2/core:2023.7"
Expand Down
2 changes: 1 addition & 1 deletion modules/local/qiime2_diversity_beta.nf
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
process QIIME2_DIVERSITY_BETA {
tag "${core.baseName} - ${category}"
tag "${core.baseName}-${category}"
label 'process_low'

container "qiime2/core:2023.7"
Expand Down
2 changes: 1 addition & 1 deletion modules/local/qiime2_seqfiltertable.nf
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
process QIIME2_SEQFILTERTABLE {
tag "${repseq} filter by ${table}"
tag "${repseq}-filter-by-${table}"
label 'process_low'

container "qiime2/core:2023.7"
Expand Down
Loading