Skip to content

Commit 74e518e

Browse files
authored
Fix for muscle v5
1 parent d6ca95b commit 74e518e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

BUSCO_phylogenomics.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -357,7 +357,7 @@ def main():
357357

358358

359359
def run_muscle(io):
360-
os.system("muscle -in " + io[0] + " -out " + io[1] + " > /dev/null 2>&1")
360+
os.system("muscle -threads 1 -align " + io[0] + " -output " + io[1] + " > /dev/null 2>&1")
361361

362362
def run_trimal(io):
363363
os.system("trimal -in " + io[0] + " -out " + io[1] + " -automated1 ")

0 commit comments

Comments
 (0)