Skip to content
Snippets Groups Projects
Verified Commit 40ebfabd authored by Laurent Modolo's avatar Laurent Modolo
Browse files

picard: fix output name of index_fasta

parent 083a9441
No related branches found
No related tags found
No related merge requests found
...@@ -33,13 +33,13 @@ process index_fasta { ...@@ -33,13 +33,13 @@ process index_fasta {
input: input:
tuple val(file_id), path(fasta) tuple val(file_id), path(fasta)
output: output:
tuple val(file_id), path("*.dict"), emit: index tuple val(file_id), path("*.dict"), emit: index
script: script:
""" """
PicardCommandLine CreateSequenceDictionary \ PicardCommandLine CreateSequenceDictionary \
REFERENCE=${fasta} \ REFERENCE=${fasta} \
OUTPUT=${fasta}.dict OUTPUT=${fasta.baseName}.dict
""" """
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment