Skip to content

Commit

Permalink
update nf passing only rhog folder avoiding huge command.run submitte…
Browse files Browse the repository at this point in the history
…d with slurm
  • Loading branch information
sinamajidian committed Nov 30, 2023
1 parent 8d72f37 commit 60996b1
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions FastOMA.nf
Original file line number Diff line number Diff line change
Expand Up @@ -192,23 +192,23 @@ 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:
"""
fastoma-infer-roothogs --proteomes ${proteome_folder} \
--hogmap hogmaps \
--splice ${splice_folder} \
--out-rhog-folder "omamer_rhogs/" \
--out-rhog-folder "omamer_rhogs" \
-vv
"""
}


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
Expand Down Expand Up @@ -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"
Expand Down

0 comments on commit 60996b1

Please sign in to comment.