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

fix(fusionreport) set html as optional #380

Merged
merged 6 commits into from
Aug 25, 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
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
### Fixed

- Tail trimming for reverse reads [#379](https://github.com/nf-core/rnafusion/pull/379)
- Set html files as optional in fusionreport [#380](https://github.com/nf-core/rnafusion/pull/380)

### Removed

Expand Down
2 changes: 1 addition & 1 deletion modules/local/fusionreport/detect/main.nf
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ process FUSIONREPORT {
tuple val(meta), path("*fusionreport.tsv") , emit: fusion_list
tuple val(meta), path("*fusionreport_filtered.tsv") , emit: fusion_list_filtered
tuple val(meta), path("index.html") , emit: report
tuple val(meta), path("*_*.html") , emit: html
tuple val(meta), path("*_*.html") , optional:true, emit: html
tuple val(meta), path("*.csv") , optional:true, emit: csv
tuple val(meta), path("*.json") , optional:true, emit: json

Expand Down