Skip to content

Commit 8874627

Browse files
psj1997luispedro
authored andcommitted
Fix issue #93
1 parent f7f04d2 commit 8874627

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

SemiBin/utils.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -331,7 +331,7 @@ def run_prodigal(fasta_path, num_process, output):
331331

332332
contig_output = os.path.join(output, 'contigs.faa')
333333
with open(contig_output, 'w') as f:
334-
for index in range(num_process):
334+
for index in range(next_ix):
335335
f.write(open(os.path.join(output, 'contig_{}.faa'.format(index)), 'r').read())
336336
return contig_output
337337

0 commit comments

Comments
 (0)