From 727c96767f2a534984042d364d855298342369b2 Mon Sep 17 00:00:00 2001 From: Jingfei Hou <houjf20@mails.tsinghua.edu.cn> Date: Tue, 10 Oct 2023 08:52:04 +0000 Subject: [PATCH] Update seq.py --- seq.py | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/seq.py b/seq.py index 58e143e..32fd713 100644 --- a/seq.py +++ b/seq.py @@ -95,11 +95,10 @@ def seq_fre_get(input_seq, data_path): for i in range(len(seq_list)): seq_list[i] = list(set(seq_list[i])) ans_num = 1 - print('æ¯ä¸€ä½ç‚¹å¯èƒ½æ°¨åŸºé…¸ï¼š') + print('Every bit of possible amino acids:') for i in range(len(seq_list)): print(seq_list[i]) ans_num = ans_num * len(seq_list[i]) - print('å¯ç”Ÿæˆæ¡æ•°ï¼š', ans_num) return seq_list def read_input(specie_path, input_path): @@ -112,4 +111,4 @@ def read_input(specie_path, input_path): ans.append(line) input_seq_fr = ans[0] input_cdr = ans[1:] - return tar_specie, input_seq_fr, input_cdr \ No newline at end of file + return tar_specie, input_seq_fr, input_cdr -- GitLab