Mercurial > repos > fubar > egapx_runner
view nf/subworkflows/ncbi/target_proteins/paf2asn/main.nf @ 3:9b1c2fb3b218 draft
planemo upload for repository https://github.com/ncbi/egapx commit 69fafcdd687884c990c7f4027aa2982df66626e6
author | fubar |
---|---|
date | Sun, 04 Aug 2024 00:52:17 +0000 |
parents | d9c5c5b87fec |
children |
line wrap: on
line source
#!/usr/bin/env nextflow nextflow.enable.dsl=2 include { merge_params } from '../../utilities' workflow paf2asn { take: genome_asn_file //path: genome asn file proteins_asn_file //path: protein asn file paf_file //path: paf alignment file from miniprot parameters // Map : extra parameter and parameter update main: default_params = "" effective_params = merge_params(default_params, parameters, 'paf2asn') run_paf2asn(genome_asn_file, proteins_asn_file, paf_file, effective_params) emit: asn_file = run_paf2asn.out.asn_file } process run_paf2asn { label 'long_job' input: path genome, stageAs: 'LDS_Index/genome.asnt' path proteins, stageAs: 'LDS_Index/proteins.asnt' path paf_file // list of PAF files to convert val parameters output: path 'output/*.asn', emit: 'asn_file' script: def asn_name = paf_file.baseName.toString() + ".asn" """ mkdir -p output lds2_indexer -source LDS_Index echo "${paf_file.join('\n')}" > input.mft paf2asn ${parameters} -lds2 LDS_Index/lds2.db -nogenbank -input-manifest input.mft -o output/${asn_name} """ stub: def asn_name = paf_file.baseName.toString() + ".asn" """ mkdir -p output touch output/${asn_name} """ }