From f878cf713b3cf65daa773c9d0f98768f9e4e9f21 Mon Sep 17 00:00:00 2001 From: Taylor Reiter Date: Mon, 24 Jun 2024 11:10:15 -0400 Subject: [PATCH] woops rm commented out code --- scripts/utils.py | 5 ----- 1 file changed, 5 deletions(-) diff --git a/scripts/utils.py b/scripts/utils.py index 73cc516..7fd31d8 100644 --- a/scripts/utils.py +++ b/scripts/utils.py @@ -1,11 +1,6 @@ from Bio import SeqIO from Bio.Seq import Seq -# def verify_translation(nucleotide_seq, amino_acid_seq, to_stop): -# """Verify that a nucleotide sequence translates correctly to its amino acid sequence.""" -# translated_seq = Seq(str(nucleotide_seq)).translate(to_stop=to_stop) -# return str(translated_seq) == str(amino_acid_seq) - def verify_translation(nucleotide_seq, amino_acid_seq, to_stop, allow_wildcard_x=False): """