diff --git a/RotTable.py b/RotTable.py index 560980bb31f4c0fce7cc6d91b5a3b0c81018f06d..b66c402842f822e0472653fb372aad7d96edbfc0 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] ###################