Skip to content

Commit

Permalink
Merge pull request nf-core#287 from ggabernet/dev
Browse files Browse the repository at this point in the history
Remove FilterQuality silent fail
  • Loading branch information
ggabernet authored Nov 22, 2023
2 parents 07e5a20 + 500a21e commit 51b7506
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 3 deletions.
10 changes: 10 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,16 @@
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).

## [3.2.1dev] -

### `Added`

### `Fixed`

- Removed optional output from FilterQuality to not fail silently

### `Dependencies`

## [3.2.0] - 2023-10-27 Expecto patronum

### `Added`
Expand Down
2 changes: 1 addition & 1 deletion assets/multiqc_config.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
report_comment:
This report has been generated by the <a href="https://nf-co.re/airrflow/3.2.0" target="_blank">nf-core/airrflow</a>
This report has been generated by the <a href="https://nf-co.re/airrflow/3.2.1dev" target="_blank">nf-core/airrflow</a>
analysis pipeline. For information about how to interpret these results, please see the
<a href="https://nf-co.re/airrflow" target="_blank">documentation</a>.

Expand Down
2 changes: 1 addition & 1 deletion modules/local/reveal/filter_quality.nf
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ process FILTER_QUALITY {
tuple val(meta), path(tab) // sequence tsv in AIRR format

output:
tuple val(meta), path("*quality-pass.tsv"), optional:true, emit: tab // sequence tsv in AIRR format
tuple val(meta), path("*quality-pass.tsv"), emit: tab // sequence tsv in AIRR format
path("*_command_log.txt"), emit: logs //process logs
path "versions.yml", emit: versions

Expand Down
2 changes: 1 addition & 1 deletion nextflow.config
Original file line number Diff line number Diff line change
Expand Up @@ -329,7 +329,7 @@ manifest {
description = """B and T cell repertoire analysis pipeline with the Immcantation framework."""
mainScript = 'main.nf'
nextflowVersion = '!>=23.04.0'
version = '3.2.0'
version = '3.2.1dev'
doi = '10.5281/zenodo.2642009'
}

Expand Down

0 comments on commit 51b7506

Please sign in to comment.