From 3614e9ffdbe2b25676c246d3c404f3249f9d8701 Mon Sep 17 00:00:00 2001 From: schne <leo.schneider@ecl19.ec-lyon.fr> Date: Tue, 21 May 2024 17:31:07 +0200 Subject: [PATCH] dataset merging --- seq_cutting.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/seq_cutting.py b/seq_cutting.py index 09f5330..b5ad840 100644 --- a/seq_cutting.py +++ b/seq_cutting.py @@ -55,4 +55,6 @@ def cut_with_ind(seq, ind_list): def digest(seq, format): ind = cut(seq, format) - return cut_with_ind(seq, ind) \ No newline at end of file + return cut_with_ind(seq, ind) + +res = digest('MNPLLILTFVAAALAAPFDDDDKIVGGYNCEENSVPYQVSLNSGYHFCGGSLINEQWVVSAGHCYKSRIQVRLGEHNIEVLEGNEQFINAAKIIRHPQYDRKTLNNDIMLIKLSSRAVINARVSTISLPTAPPATGTKCLISGWGNTASSGADYPDELQCLDAPVLSQAKCEASYPGKITSNMFCVGFLEGGKDSCQGDSGGPVVCNGQLQGVVSWGDGCAQKNKPGVYTKVYNYVKWIKNTIAANS','alphabetical') \ No newline at end of file -- GitLab