Skip to content

Commit

Permalink
fix pseudo-knots process in secondary structure
Browse files Browse the repository at this point in the history
Signed-off-by: Zhiyuan Chen <[email protected]>
  • Loading branch information
ZhiyuanChen committed Nov 22, 2024
1 parent 35733a4 commit 0fe1ece
Showing 1 changed file with 16 additions and 10 deletions.
26 changes: 16 additions & 10 deletions multimolecule/data/functional.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,22 +14,28 @@
# You should have received a copy of the GNU Affero General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.

import string
from collections import defaultdict

import numpy as np

dot_bracket_to_contact_map_table = str.maketrans(
{",": ".", "_": ".", "[": "(", "]": ")", "{": "(", "}": ")", "<": "(", ">": ")"}
)
dot_bracket_pair_table = {"(": ")", "[": "]", "{": "}", "<": ">"}


def dot_bracket_to_contact_map(dot_bracket: str):
dot_bracket = dot_bracket.translate(dot_bracket_to_contact_map_table)
n = len(dot_bracket)
contact_map = np.zeros((n, n), dtype=int)
stack = []

dot_bracket_pair_table.update(zip(string.ascii_uppercase, string.ascii_lowercase))
reverse_dot_bracket_pair_table = {v: k for k, v in dot_bracket_pair_table.items()}
pairs = {**dot_bracket_pair_table, **reverse_dot_bracket_pair_table}

stacks: defaultdict[str, list[int]] = defaultdict(list)
for i, symbol in enumerate(dot_bracket):
if symbol == "(":
stack.append(i)
elif symbol == ")":
j = stack.pop()
contact_map[i, j] = contact_map[j, i] = 1
if symbol in pairs:
if symbol in dot_bracket_pair_table:
stacks[symbol].append(i)
elif symbol in reverse_dot_bracket_pair_table:
j = stacks[pairs[symbol]].pop()
contact_map[i, j] = contact_map[j, i] = 1
return contact_map

0 comments on commit 0fe1ece

Please sign in to comment.