Skip to content
Snippets Groups Projects
Commit cb0e0da5 authored by breakthewall's avatar breakthewall
Browse files

fix(RotTable.py): modify get functions

parent 28faeb95
No related branches found
No related tags found
No related merge requests found
......@@ -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]
###################
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment