File tree 2 files changed +4
-4
lines changed
2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change 1
- VERSION = (0 , 5 , 1 )
1
+ VERSION = (23 , 10 , 26 )
2
2
3
3
__version__ = "." .join (map (str , VERSION ))
Original file line number Diff line number Diff line change @@ -216,7 +216,7 @@ def runbusco(
216
216
)
217
217
# run busco analysis using threadpool, limit io as much as possible
218
218
results = []
219
- with concurrent .futures .ThreadPoolExecutor (max_workers = cpus + 4 ) as executor :
219
+ with concurrent .futures .ThreadPoolExecutor (max_workers = cpus + 2 ) as executor :
220
220
for k , v in coords .items ():
221
221
busco_prlf = os .path .join (lineage , "prfl" , "{}.prfl" .format (k ))
222
222
for i in v :
@@ -320,7 +320,7 @@ def runbusco(
320
320
321
321
# try thread pool
322
322
results = []
323
- with concurrent .futures .ThreadPoolExecutor (max_workers = cpus + 4 ) as executor :
323
+ with concurrent .futures .ThreadPoolExecutor (max_workers = cpus + 2 ) as executor :
324
324
for k , v in coords2 .items ():
325
325
busco_prlf = os .path .join (lineage , "prfl" , "{}.prfl" .format (k ))
326
326
for i in v :
@@ -438,7 +438,7 @@ def runbusco(
438
438
)
439
439
# now we can loop over the hmms in the lineage and run hmmer on each
440
440
results = []
441
- with concurrent .futures .ThreadPoolExecutor (max_workers = cpus + 4 ) as executor :
441
+ with concurrent .futures .ThreadPoolExecutor (max_workers = cpus + 2 ) as executor :
442
442
for f in os .listdir (os .path .join (lineage , "hmms" )):
443
443
if f .endswith (".hmm" ):
444
444
hmmfile = os .path .join (lineage , "hmms" , f )
You can’t perform that action at this time.
0 commit comments