diff --git a/src/nf_modules/agat/main.nf b/src/nf_modules/agat/main.nf index b12d2b849fe24540caaf83395f20bea46bcf6fac..bdf142f83e83c491146a5704f75bce68f4c762ea 100644 --- a/src/nf_modules/agat/main.nf +++ b/src/nf_modules/agat/main.nf @@ -21,4 +21,26 @@ process gff_to_bed { zcat ${gff} > ${gff.baseName}.gff agat_convert_sp_gff2bed.pl --gff ${gff.baseName}.gff --sub cds -o ${gff.simpleName}.bed """ +} + +params.gff_to_gtf = "" +params.gff_to_gtf_out = "" +process gff_to_gtf { + container = "${container_url}" + label "big_mem_mono_cpus" + tag "$file_id" + if (params.gff_to_gtf_out != "") { + publishDir "results/${params.gff_to_gtf_out}", mode: 'copy' + } + + input: + tuple val(file_id), path(gff) + output: + tuple val(file_id), path("*.gtf"), emit: gtf + + script: +""" +zcat ${gff} > ${gff.baseName}.gff +agat_convert_sp_gff2gtf.pl --gff ${gff.baseName}.gff -o ${gff.simpleName}.gtf +""" } \ No newline at end of file