mirror of
https://github.com/MillironX/nf-core_modules.git
synced 2024-11-11 04:33:10 +00:00
20 lines
416 B
Text
20 lines
416 B
Text
process shovill {
|
|
|
|
tag { shovill }
|
|
|
|
publishDir "${params.outdir}", pattern: '*.fasta', mode: 'copy'
|
|
|
|
container "quay.io/biocontainers/shovill:1.0.9--0"
|
|
|
|
input:
|
|
tuple(sample_id, path(forward), path(reverse))
|
|
|
|
output:
|
|
path("${sample_id}.fasta")
|
|
|
|
script:
|
|
"""
|
|
shovill --R1 ${forward} --R2 ${reverse} --outdir shovill_out
|
|
mv shovill_out/contigs.fa ${sample_id}.fasta
|
|
"""
|
|
}
|