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

chore(RotTable.py): modify get

parent cb0e0da5
Branches
No related tags found
No related merge requests found
...@@ -42,12 +42,12 @@ class RotTable: ...@@ -42,12 +42,12 @@ class RotTable:
################### ###################
def getTwist(self, dinucleotide): def getTwist(self, dinucleotide):
return RotTable.__Rot_Table[dinucleotide][0] return self.__Rot_Table[dinucleotide][0]
def getWedge(self, dinucleotide): def getWedge(self, dinucleotide):
return RotTable.__Rot_Table[dinucleotide][1] return self.__Rot_Table[dinucleotide][1]
def getDirection(self, dinucleotide): def getDirection(self, dinucleotide):
return RotTable.__Rot_Table[dinucleotide][2] return self.__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