From 5a621b9e90cc8c8281aa70a7441645c17d6b861e Mon Sep 17 00:00:00 2001 From: korikuzma Date: Sat, 4 Nov 2023 08:18:17 -0400 Subject: [PATCH] fix residue --> inter-residue --- cool_seq_tool/data_sources/feature_overlap.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cool_seq_tool/data_sources/feature_overlap.py b/cool_seq_tool/data_sources/feature_overlap.py index c97f7279..3ac203f4 100644 --- a/cool_seq_tool/data_sources/feature_overlap.py +++ b/cool_seq_tool/data_sources/feature_overlap.py @@ -159,7 +159,7 @@ def get_grch38_mane_gene_cds_overlap( # Convert residue to inter-residue if residue_mode == ResidueMode.RESIDUE: if start == end: - start -= 1 + end -= 1 start -= 1