Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
O
openstructure
Manage
Activity
Members
Code
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Container Registry
Model registry
Analyze
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
schwede
openstructure
Commits
2cb47edc
Commit
2cb47edc
authored
5 years ago
by
Studer Gabriel
Browse files
Options
Downloads
Patches
Plain Diff
basic unit tests for ialign
parent
8e46c4e1
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
modules/bindings/tests/CMakeLists.txt
+1
-0
1 addition, 0 deletions
modules/bindings/tests/CMakeLists.txt
modules/bindings/tests/test_ialign.py
+37
-0
37 additions, 0 deletions
modules/bindings/tests/test_ialign.py
with
38 additions
and
0 deletions
modules/bindings/tests/CMakeLists.txt
+
1
−
0
View file @
2cb47edc
...
...
@@ -7,6 +7,7 @@ set(OST_BINDINGS_UNIT_TESTS
test_naccess.py
test_cadscore.py
test_tmtools.py
test_ialign.py
)
ost_unittest
(
MODULE bindings
...
...
This diff is collapsed.
Click to expand it.
modules/bindings/tests/test_ialign.py
0 → 100644
+
37
−
0
View file @
2cb47edc
import
unittest
from
ost
import
*
from
ost
import
settings
from
ost
import
testutils
from
ost.seq.alg
import
SequenceIdentity
from
ost.bindings
import
ialign
class
TestIAlign
(
unittest
.
TestCase
):
def
setUp
(
self
):
self
.
protein
=
io
.
LoadEntity
(
"
testfiles/testprotein.pdb
"
)
def
testIAlign
(
self
):
try
:
ialign_exec
=
settings
.
Locate
(
'
ialign.pl
'
)
except
:
print
(
"
Could not find ialign master perl script: ignoring unit tests
"
)
return
ialign_result
=
ialign
.
iAlign
(
self
.
protein
,
self
.
protein
)
# model and reference are the same, we expect pretty good results
self
.
assertEqual
(
ialign_result
.
rmsd
,
0.0
)
self
.
assertEqual
(
ialign_result
.
is_score
,
1.0
)
self
.
assertEqual
(
SequenceIdentity
(
ialign_result
.
alignment
),
100.0
)
self
.
assertEqual
(
ialign_result
.
aligned_residues
,
78
)
self
.
assertEqual
(
ialign_result
.
aligned_contacts
,
91
)
# transformation should be identity matrix (no transformation at all...)
identity
=
geom
.
Mat4
(
1
,
0
,
0
,
0
,
0
,
1
,
0
,
0
,
0
,
0
,
1
,
0
,
0
,
0
,
0
,
1
)
self
.
assertEqual
(
ialign_result
.
transform
,
identity
)
if
__name__
==
"
__main__
"
:
testutils
.
RunTests
()
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment