Skip to content

Commit 2b66f46

Browse files
committed
use which(self.dssp_path)
1 parent 403e08d commit 2b66f46

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

alphafold3_pytorch/alphafold3.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4087,7 +4087,7 @@ def __init__(
40874087
@property
40884088
def can_calculate_unresolved_protein_rasa(self):
40894089
try:
4090-
sh.which('mkdssp')
4090+
sh.which(self.dssp_path)
40914091
return True
40924092
except:
40934093
return False

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "alphafold3-pytorch"
3-
version = "0.2.104"
3+
version = "0.2.105"
44
description = "Alphafold 3 - Pytorch"
55
authors = [
66
{ name = "Phil Wang", email = "[email protected]" },

0 commit comments

Comments
 (0)