Answer the question
In order to leave comments, you need to log in
What is wrong with these code snippets for local sequence alignment?
def max3t(v1, v2, v3):
if v1 > v2:
if v1 > v3:
return 1
else:
return 3
else:
if v2 > v3:
return 2
else:
return 3
Answer the question
In order to leave comments, you need to log in
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question