amkozlov / raxml-ng

RAxML Next Generation: faster, easier-to-use and more flexible
GNU Affero General Public License v3.0
374 stars 62 forks source link

why the number is from #2 to #1? #178

Closed BEAST-Community closed 4 months ago

BEAST-Community commented 4 months ago

Dear @amkozlov,

image
amkozlov commented 4 months ago

Tree searches from different starting trees are conducted in parallel, It can therefore happen that tree search #2 is completed before #1. This is absolutely normal.

If for some reason you want all tree searches to be executed sequentially, just add --workers 1 flag.

BEAST-Community commented 4 months ago

Dear @amkozlov, Thanks.