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
76fb7ce6
Commit
76fb7ce6
authored
May 06, 2024
by
Jennifer Wei
Browse files
remove test print statements
parent
4ee9943e
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
0 additions
and
2 deletions
+0
-2
tests/test_permutation.py
tests/test_permutation.py
+0
-2
No files found.
tests/test_permutation.py
View file @
76fb7ce6
...
...
@@ -113,7 +113,6 @@ class TestPermutation(unittest.TestCase):
aligns
,
_
=
compute_permutation_alignment
(
out
,
batch
,
batch
)
print
(
f
"##### aligns is
{
aligns
}
"
)
possible_outcome
=
[[(
0
,
1
),
(
1
,
0
),
(
2
,
3
),
(
3
,
4
),
(
4
,
2
)],
[(
0
,
0
),
(
1
,
1
),
(
2
,
3
),
(
3
,
4
),
(
4
,
2
)]]
wrong_outcome
=
[[(
0
,
1
),
(
1
,
0
),
(
2
,
4
),
(
3
,
2
),
(
4
,
3
)],
[(
0
,
0
),
(
1
,
1
),
(
2
,
2
),
(
3
,
3
),
(
4
,
4
)]]
self
.
assertIn
(
aligns
,
possible_outcome
)
...
...
@@ -163,7 +162,6 @@ class TestPermutation(unittest.TestCase):
aligns
,
per_asym_residue_index
=
compute_permutation_alignment
(
out
,
batch
,
batch
)
print
(
f
"##### aligns is
{
aligns
}
"
)
labels
=
split_ground_truth_labels
(
batch
)
labels
=
merge_labels
(
per_asym_residue_index
,
labels
,
aligns
,
...
...
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