Skip to content

Commit 61ca6b0

Browse files
author
Nicholas Youngblut
committed
fixed non-Pool bug
1 parent b6e54c2 commit 61ca6b0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

MGSIM/Commands/HtReads.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -203,8 +203,8 @@ def sim_per_community(args, comm_id, abund_table, genome_table, rndSeed):
203203
else:
204204
Pool = mp.Pool(args['-n'])
205205
files = Pool.map(func, barcodes)
206-
files = [x for x in files]
207206
Pool.close()
207+
files = [x for x in files]
208208

209209
# status
210210
for k,v in out_files.items():

0 commit comments

Comments
 (0)