Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion im2deep/__init__.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
"""IM2Deep: Deep learning framework for peptide collisional cross section prediction."""

__version__ = "0.1.9"
__version__ = "0.2.0"
2 changes: 1 addition & 1 deletion im2deep/im2deep.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ def predict_ccs(
if model_name == "tims":
path_model = Path(__file__).parent / "models" / "TIMS"

path_model_list = list(path_model.glob("*.hdf5"))
path_model_list = list(path_model.glob("*.keras"))
if use_single_model:
LOGGER.debug("Using model {}".format(path_model_list[2]))
path_model_list = [path_model_list[2]]
Expand Down
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ dynamic = ["version"]
requires-python = ">=3.8"
dependencies = [
"click",
"deeplc==2.2.38",
"deeplc",
"psm_utils",
"pandas",
"numpy",
Expand Down