Skip to content

Commit 59d1248

Browse files
committed
Implement structural alignment functionality with new StructuralAligner class and associated models. Update example notebook to reflect changes and suppress known warnings. Adjust output handling in the notebook and fix import paths.
1 parent bf5ff42 commit 59d1248

File tree

5 files changed

+6
-28
lines changed

5 files changed

+6
-28
lines changed

example.ipynb

Lines changed: 5 additions & 23 deletions
Large diffs are not rendered by default.
File renamed without changes.
File renamed without changes.

structure_align/models.py renamed to structurealign/models.py

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,3 @@
1-
"""
2-
Pydantic models for structural alignment data structures.
3-
"""
4-
51
from typing import Dict, List, Optional, Tuple
62

73
import numpy as np

tests/test_aligner.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
import numpy as np
66
import pytest
77

8-
from structure_align import AlignmentResult, SequenceAlignment, StructuralAligner
8+
from structurealign import AlignmentResult, SequenceAlignment, StructuralAligner
99

1010

1111
class TestStructuralAligner:

0 commit comments

Comments
 (0)