Skip to content

Commit

Permalink
really make LG4 models hard
Browse files Browse the repository at this point in the history
  • Loading branch information
roblanf committed Jun 26, 2016
1 parent 91bcfce commit e6df54c
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions partfinder/raxml_models.py
Original file line number Diff line number Diff line change
Expand Up @@ -63,6 +63,10 @@ def get_model_difficulty(modelstring):
# that's a tough model with 189 free parameters
difficulty += 10000

if "LG4" in modelstring:
# these models are hard
difficulty += 9000

extras = modelstring.count("+")
total = model_params + extras + difficulty
log.debug("Model: %s Difficulty: %d" % (modelstring, total))
Expand Down

0 comments on commit e6df54c

Please sign in to comment.