From a6bab084a5062502f449091649d2ad23b0260d98 Mon Sep 17 00:00:00 2001 From: Kim Rutherford Date: Wed, 8 Jan 2025 17:15:20 +1300 Subject: [PATCH] Use nightly peptide file to fix failing test --- test_translation.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test_translation.py b/test_translation.py index 00c6557..f6273c2 100644 --- a/test_translation.py +++ b/test_translation.py @@ -20,7 +20,7 @@ class TranslationTest(unittest.TestCase): def test_translations(self): # Get peptide data from pombase - response = requests.get('https://www.pombase.org/releases/latest/fasta/feature_sequences/peptide.fa.gz') + response = requests.get('https://www.pombase.org/nightly_update/fasta/feature_sequences/peptide.fa.gz') data = gzip.decompress(response.content).decode() for seq in SeqIO.parse(io.StringIO(data), 'fasta'): seq: SeqRecord