We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0708204 commit b8c20bcCopy full SHA for b8c20bc
tests/test_pyard.py
@@ -205,3 +205,9 @@ def test_is_null(self):
205
self.assertFalse(
206
self.ard.is_null(allele), msg="MACs shouldn't be called as Nulls"
207
)
208
+
209
+ def test_mac_is_reversible(self):
210
+ mac_code = "A*68:AJEBX"
211
+ expanded_mac = self.ard.expand_mac(mac_code)
212
+ lookup_mac = self.ard.lookup_mac(expanded_mac)
213
+ self.assertEqual(mac_code, lookup_mac)
0 commit comments