Unverified Commit 55c293ca authored by Jennifer Wei's avatar Jennifer Wei Committed by GitHub
Browse files

Update test_permutation.py

Fixed a small typo in permutation unit test docstring
parent 15113dcb
...@@ -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
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment