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 FilterQuality silent fail #287

Merged
merged 2 commits into from
Nov 22, 2023
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
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