Skip to content

Commit

Permalink
Merge pull request #380 from nf-core/fix_fusionreport_optional_html
Browse files Browse the repository at this point in the history
fix(fusionreport) set html as optional
  • Loading branch information
fevac authored Aug 25, 2023
2 parents a978a80 + 5c84661 commit ea2b723
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
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

0 comments on commit ea2b723

Please sign in to comment.