Open corneliusroemer opened 4 months ago
There seems to have been a general renaming effort from -nt
to -T
but this might have been left over:
See example of renaming -nt
to -T
in 2020:
Similarly, -ntmax
appears to be a synonym of --threads-max
per
https://github.com/iqtree/iqtree2/blob/74da454bbd98d6ecb8cb955975a50de59785fbde/utils/tools.cpp#L4882-L4883
The current
iqtree2 -h
help string mentions-T
as the option to use to set threads.I remember setting
-nt
in the past, e.g. with v2.1, and was wondering whether there had been a breaking change.It turns out these options are all synonyms (as far as I can tell): https://github.com/iqtree/iqtree2/blob/74da454bbd98d6ecb8cb955975a50de59785fbde/utils/tools.cpp#L4867-L4868
It might be nice to mention all options in the
-h
string, for example - potentially adding that they all but-T
are deprecated (if that's the case).Is it true that these are exact synonyms?
The code seems to output
-nt
to the user on stderr, maybe these should also be unified to use-T
to be less confusing to users (if a user sees that message and looks at help, they won't find anything called-nt
)