diff --git a/seq_cutting.py b/seq_cutting.py index 6e9879b09fa209e169065d9dfb1aace99228b23e..620503f1de6c542482ea49a0d9d20d52b62a99c7 100644 --- a/seq_cutting.py +++ b/seq_cutting.py @@ -31,11 +31,24 @@ def cut(seq, format): for i in range(l): if seq[i] == 'A' or seq[i] == 'L': if i < l - 1 and seq[i + 1] != 'P': - cuts.append(i) + cuts.append(i + 1) if format == 'numerical': for i in range(l): if seq[i] == 1 or seq[i] == 10: if i < l - 1 and seq[i + 1] != 13: - cuts.append(i) + cuts.append(i + 1) return cuts + + +def cut_with_ind(seq, ind_list): + l = [] + size = len(seq) + ind_list.append(size) + + for i in range(len(ind_list) - 1): + if i == 0: + l.append(seq[:ind_list[i]]) + l.append(seq[ind_list[i]:ind_list[i + 1]]) + + return l