Skip to content

Commit

Permalink
save output files to collectiondata dir
Browse files Browse the repository at this point in the history
  • Loading branch information
Tianhao-Gu committed Mar 14, 2024
1 parent 361dcd8 commit 5999ba1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/loaders/compute_tools/eggnog/eggnog.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,8 +30,8 @@ def _run_eggnog_single(
# RUN eggNOG for a single genome
command = ['emapper.py',
'-i', source_file, # Input file.
'-o', source_file, # Output prefix.
# Save result file to source file directory. Expecting 'emapper.annotations', 'emapper.hits' and 'emapper.seed_orthologs' files.
'-o', output_dir / source_file.name, # Output prefix.
# Save result file to collectiondata directory. Expecting 'emapper.annotations', 'emapper.hits' and 'emapper.seed_orthologs' files.
'--itype', f'{INPUT_TYPE}',
'--cpu', f'{THREADS}',
'--excel',
Expand Down

0 comments on commit 5999ba1

Please sign in to comment.