Skip to content

Commit

Permalink
merge with main
Browse files Browse the repository at this point in the history
  • Loading branch information
gcroci2 committed Mar 19, 2024
2 parents 54dc828 + 02f669e commit d58305d
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 1 deletion.
4 changes: 4 additions & 0 deletions .bumpversion.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -15,3 +15,7 @@ replace = version = "{new_version}"
[bumpversion:file:CITATION.cff]
search = version: "{current_version}"
replace = version: "{new_version}"

[bumpversion:file:requirements-docker.txt]
search = deeprank2==current_version
replace = deeprank2==new_version
5 changes: 5 additions & 0 deletions deeprank2/features/secondary_structure.py
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,11 @@ def _get_records(lines: list[str]) -> list[str]:


def _check_pdb(pdb_path: str) -> None:
"""Check whether pdb metadata required for DSSP exists and auto-fix in place where possible.
Args:
pdb_path: file location of pdb file
"""
fix_pdb = False
with open(pdb_path, encoding="utf-8") as f:
lines = f.readlines()
Expand Down
2 changes: 1 addition & 1 deletion env/requirements-docker.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
deeprank2>=3.0.1
deeprank2==3.0.2

0 comments on commit d58305d

Please sign in to comment.