Skip to content

Commit

Permalink
bugfix invalid path value input
Browse files Browse the repository at this point in the history
  • Loading branch information
Anne Marie Noronha committed Mar 4, 2024
1 parent be4e288 commit e634817
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
4 changes: 3 additions & 1 deletion modules/local/metafusion/geneinfo/main.nf
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,9 @@ process METAFUSION_GENEINFO {
'ghcr.io/rocker-org/devcontainer/tidyverse:4' }"

input:
tuple val(meta), path(gtf), path(starfusion_ref), path(fusioncatcher_ref)
tuple val(meta), path(gtf)
path(starfusion_ref)
path(fusioncatcher_ref)

output:
tuple val(meta), path("gene.info"), emit: metafusion_gene_info
Expand Down
2 changes: 1 addition & 1 deletion subworkflows/local/prepare_references.nf
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ workflow PREPARE_REFERENCES {
)

METAFUSION_GENEINFO(
[[:],gtf, starfusion_ref,fusioncatcher_ref]
[[:],gtf], starfusion_ref,fusioncatcher_ref
)

AGFUSION_DOWNLOAD(
Expand Down

0 comments on commit e634817

Please # to comment.