From 794c9b5d9a40d37658060025f4d545a38be90a1d Mon Sep 17 00:00:00 2001 From: qcampbel Date: Wed, 7 Aug 2024 14:26:59 -0400 Subject: [PATCH] fixed uniprot get_ids test --- tests/test_preprocess/test_uniprot.py | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/tests/test_preprocess/test_uniprot.py b/tests/test_preprocess/test_uniprot.py index b82b74c5..370dda9b 100644 --- a/tests/test_preprocess/test_uniprot.py +++ b/tests/test_preprocess/test_uniprot.py @@ -488,17 +488,14 @@ def test_get_ids(query_uniprot): "P02089", "P02070", "O13163", - "Q10733", "P02008", "B3EWR7", - "Q90487", "P04244", "P02094", "P83479", "P01966", "O93349", "P68872", - "P02110", "P69905", "P02088", "P02100", @@ -507,6 +504,7 @@ def test_get_ids(query_uniprot): "P02091", ] all_ids = query_uniprot.get_ids("hemoglobin") + print(all_ids) single_id = query_uniprot.get_ids("hemoglobin", single_id=True) assert single_id[0] in hg_ids assert len(single_id) == 1