Skip to content

Commit

Permalink
Merge pull request #358 from nf-core/dev
Browse files Browse the repository at this point in the history
release 2.3.3
  • Loading branch information
rannick authored Apr 26, 2023
2 parents 13cf83d + 3f3876e commit d4de338
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
4 changes: 3 additions & 1 deletion modules/local/fusionreport/detect/main.nf
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,8 @@ process FUSIONREPORT {
path "versions.yml" , emit: versions
tuple val(meta), path("*fusionreport.tsv") , emit: fusion_list
tuple val(meta), path("*fusionreport_filtered.tsv") , emit: fusion_list_filtered
tuple val(meta), path("*.html") , emit: report
tuple val(meta), path("index.html") , emit: report
tuple val(meta), path("*--*.html") , emit: html
tuple val(meta), path("*.csv") , optional:true, emit: csv
tuple val(meta), path("*.json") , optional:true, emit: json

Expand Down Expand Up @@ -52,6 +53,7 @@ process FUSIONREPORT {
touch ${prefix}.fusionreport_filtered.tsv
touch ${prefix}.fusionreport.tsv
touch index.html
touch AAA--BBB.html
touch ${prefix}.fusions.csv
touch ${prefix}.fusions.json
Expand Down
2 changes: 1 addition & 1 deletion nextflow.config
Original file line number Diff line number Diff line change
Expand Up @@ -256,7 +256,7 @@ manifest {
description = """Nextflow rnafusion analysis pipeline, part of the nf-core community."""
mainScript = 'main.nf'
nextflowVersion = '!>=22.10.1'
version = '2.3.2'
version = '2.3.3'
doi = ''
}

Expand Down

0 comments on commit d4de338

Please sign in to comment.