Skip to content

Commit 06beea7

Browse files
authored
deactivating auto in mafft to mitigate randomness
1 parent 3bec89a commit 06beea7

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

FastOMA/_wrappers.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,9 @@ def merge_msa(list_msas):
3939
# wrapper_mafft_merge.options['--merge'].active = True
4040
# else:
4141
# wrapper_mafft_merge.options['--merge'].active = False
42-
42+
43+
#mafft --auto Automatically selects an appropriate strategy from L-INS-i, FFT-NS-i and FFT-NS-2, according to data size. Default: off (always FFT-NS-2)
44+
wrapper_mafft_merge.options['--auto'].set_value(False) # todo we can make it as an argument in fastoma-infer-subhogs.
4345
# wrapper_mafft_merge.options['--anysymbol'].active = True
4446
wrapper_mafft_merge.options['--anysymbol'].set_value(True)
4547
wrapper_mafft_merge.options['--thread'].set_value(-1) # -1 uses a largely appropriate number of threads in each step, after automatically counting the number of physical cores the computer has.

0 commit comments

Comments
 (0)