refactor: Change output file name of EFETCH

This commit is contained in:
Thomas A. Christensen II 2023-09-23 15:39:21 -05:00
parent b1ee784dac
commit ec4414184b
Signed by: millironx
GPG key ID: 09335146883990B9

View file

@ -9,7 +9,7 @@ process EFETCH {
publishDir "results", mode: 'copy' publishDir "results", mode: 'copy'
output: output:
path 'idv4.fasta' path 'reference.fasta'
script: script:
""" """
@ -18,6 +18,6 @@ process EFETCH {
-query "${genome}" \\ -query "${genome}" \\
| efetch \\ | efetch \\
-format fasta \\ -format fasta \\
> idv4.fasta > reference.fasta
""" """
} }