Skip to content

Commit

Permalink
update version, changed default algorithm to heuristic
Browse files Browse the repository at this point in the history
  • Loading branch information
PedroMTQ committed Feb 23, 2022
1 parent 4fb350c commit a9d300a
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion mantis/MANTIS.py
Original file line number Diff line number Diff line change
Expand Up @@ -158,7 +158,7 @@ def __init__(self,
else: self.minimum_consensus_overlap = 0.7

if domain_algorithm: self.domain_algorithm = domain_algorithm
else: self.domain_algorithm = 'dfs'
else: self.domain_algorithm = 'heuristic'

if best_combo_formula: self.best_combo_formula = best_combo_formula
else: self.best_combo_formula = 1
Expand Down
2 changes: 1 addition & 1 deletion mantis/__init__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "1.4.7"
__version__ = "1.4.8"
2 changes: 1 addition & 1 deletion mantis/__main__.py
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ def main():
parser.add_argument('-mco', '--minimum_consensus_overlap',
help='[optional]\tcustom value for the minimum overlap between hits when generating the consensus annotation. Default is 0.7, 0 to accept any consistent hit, regardless of coordinate overlap.')
parser.add_argument('-da', '--domain_algorithm', choices=['dfs', 'heuristic', 'bpo'],
help='[optional]\tChoose how multiple domains should be processed. Default is dfs.')
help='[optional]\tChoose how multiple domains should be processed. Default is heuristic.')
parser.add_argument('-tl', '--time_limit',
help='[optional]\ttime limit in seconds when running Mantis\' DFS algorithm. Default is 60 seconds')
parser.add_argument('-od', '--organism_details',
Expand Down

0 comments on commit a9d300a

Please sign in to comment.