Skip to content

Commit

Permalink
Merge pull request #68 from smirarab/bugfix
Browse files Browse the repository at this point in the history
Bugfix
  • Loading branch information
smirarab authored Apr 8, 2019
2 parents 5516b85 + 825cf44 commit 060779a
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 5 deletions.
2 changes: 1 addition & 1 deletion sepp/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@

__all__ = ["alignment", "shortreadalignment", "taxonneighbourfinder",
"tools", "problem"]
version = "4.3.7"
version = "4.3.8"
_DEBUG = ("SEPP_DEBUG" in os.environ) and \
(os.environ["SEPP_DEBUG"].lower() == "true")

Expand Down
7 changes: 4 additions & 3 deletions sepp/exhaustive_tipp.py
Original file line number Diff line number Diff line change
Expand Up @@ -370,9 +370,10 @@ def build_jobs(self):
pj.partial_setup_for_subproblem(
placement_problem, self.options.info_file, i)
elif self.placer == "epa":
pj = EPAJob()
pj.partial_setup_for_subproblem(
placement_problem, self.molecule, i)
raise ValueError("EPA Currently not supported")
#pj = EPAJob()
#pj.partial_setup_for_subproblem(
# placement_problem, self.molecule, i)

placement_problem.add_job(get_placement_job_name(i), pj)

Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
from distutils.spawn import find_executable

use_setuptools(version="0.6.24")
version = "4.3.6"
version = "4.3.8"


def get_tools_dir(where):
Expand Down

0 comments on commit 060779a

Please sign in to comment.