I have created a class called Functions which contains many functions
I define this function:
def distance(self,seq1,seq2,seq3)
In another file I want to call the function of this class.
I have defined three DNA sequences:
a=Functions()
a.distance(seq1,seq2,seq3)
When I try to call Functions(), I get the following error:
name 'Functions' is not defined
from myfile import Functions