Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
OpenDAS
OpenFold
Commits
55c293ca
Unverified
Commit
55c293ca
authored
May 11, 2024
by
Jennifer Wei
Committed by
GitHub
May 11, 2024
Browse files
Update test_permutation.py
Fixed a small typo in permutation unit test docstring
parent
15113dcb
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
1 deletion
+1
-1
tests/test_permutation.py
tests/test_permutation.py
+1
-1
No files found.
tests/test_permutation.py
View file @
55c293ca
...
@@ -96,7 +96,7 @@ class TestPermutation(unittest.TestCase):
...
@@ -96,7 +96,7 @@ class TestPermutation(unittest.TestCase):
then the 2 protein A chains are free to be aligned by either order, thus either [(0,1),(1,0)] or [(0,0),(1,1)] is valid.
then the 2 protein A chains are free to be aligned by either order, thus either [(0,1),(1,0)] or [(0,0),(1,1)] is valid.
However, the 3 protein B chains should be strictly aligned in the following order:
However, the 3 protein B chains should be strictly aligned in the following order:
[(2,3), (3,4), (4,
1
)], regardless of how protein A chains are aligned.
[(2,3), (3,4), (4,
2
)], regardless of how protein A chains are aligned.
Therefore, the only 2 correct permutations are :
Therefore, the only 2 correct permutations are :
[(0, 1), (1, 0), (2, 3), (3, 4), (4, 2)] and
[(0, 1), (1, 0), (2, 3), (3, 4), (4, 2)] and
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment