From cb0e0da57cfb2f2fe57579bc473cbb2d09fc6146 Mon Sep 17 00:00:00 2001
From: breakthewall <joan.herisson@univ-evry.fr>
Date: Thu, 28 Jan 2021 09:09:25 +0100
Subject: [PATCH] fix(RotTable.py): modify get functions

---
 RotTable.py | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/RotTable.py b/RotTable.py
index 560980b..b66c402 100644
--- a/RotTable.py
+++ b/RotTable.py
@@ -42,12 +42,12 @@ class RotTable:
     ###################
 
     def getTwist(self, dinucleotide):
-        return RotTable.__ORIGINAL_ROT_TABLE[dinucleotide][0]
+        return RotTable.__Rot_Table[dinucleotide][0]
 
     def getWedge(self, dinucleotide):
-        return RotTable.__ORIGINAL_ROT_TABLE[dinucleotide][1]
+        return RotTable.__Rot_Table[dinucleotide][1]
 
     def getDirection(self, dinucleotide):
-        return RotTable.__ORIGINAL_ROT_TABLE[dinucleotide][2]
+        return RotTable.__Rot_Table[dinucleotide][2]
 
     ###################
-- 
GitLab