Skip to content

Commit

Permalink
supplement: add abspath to genomes given individually
Browse files Browse the repository at this point in the history
  • Loading branch information
AroneyS committed Jun 20, 2024
1 parent 022aa7c commit e774800
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions singlem/supplement.py
Original file line number Diff line number Diff line change
Expand Up @@ -840,6 +840,8 @@ def supplement(self, **kwargs):
for file_list in new_genome_fasta_files_list:
with open(file_list) as f:
new_genome_fasta_files = [os.path.abspath(x.strip()) for x in f.readlines()]
else:
new_genome_fasta_files = [os.path.abspath(x) for x in new_genome_fasta_files]

if input_metapackage is None:
old_metapackage = Metapackage.acquire_default()
Expand Down

0 comments on commit e774800

Please sign in to comment.