From 60996b1f4928833f495b47834611b9b38b059894 Mon Sep 17 00:00:00 2001 From: sina Date: Thu, 30 Nov 2023 15:33:54 +0100 Subject: [PATCH] update nf passing only rhog folder avoiding huge command.run submitted with slurm --- FastOMA.nf | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/FastOMA.nf b/FastOMA.nf index aac82a6..ee4d248 100644 --- a/FastOMA.nf +++ b/FastOMA.nf @@ -192,7 +192,7 @@ process infer_roothogs{ path proteome_folder path splice_folder output: - path "omamer_rhogs/*" + path "omamer_rhogs" path "gene_id_dic_xml.pickle" path "selected_isoforms" , optional: true script: @@ -200,7 +200,7 @@ process infer_roothogs{ fastoma-infer-roothogs --proteomes ${proteome_folder} \ --hogmap hogmaps \ --splice ${splice_folder} \ - --out-rhog-folder "omamer_rhogs/" \ + --out-rhog-folder "omamer_rhogs" \ -vv """ } @@ -208,7 +208,7 @@ process infer_roothogs{ process batch_roothogs{ input: - path rhogs, stageAs: "omamer_rhogs/*" + path rhogs //, stageAs: "omamer_rhogs/" output: path "rhogs_rest/*", optional: true path "rhogs_big/*" , optional: true @@ -267,7 +267,7 @@ process collect_subhogs{ input: path pickles, stageAs: "pickle_folders/?" path "gene_id_dic_xml.pickle" - path rhogs, stageAs: "omamer_rhogs/*" + path rhogs //, stageAs: "omamer_rhogs/*" output: path "output_hog.orthoxml" path "OrthologousGroupsFasta"