20.181:sadEvoModel: Difference between revisions

From OpenWetWare
Jump to navigationJump to search
No edit summary
 
No edit summary
Line 1: Line 1:
def evoModel_Sad(x,y,distance):
<nowiki>def evoModel_Sad(x,y,distance):
# returns 0.9 if x and y are the same; 0.1 if they're different,  
# returns 0.9 if x and y are the same; 0.1 if they're different,  
# regardless of branch lengths.  use this function if you
# regardless of branch lengths.  use this function if you
Line 8: Line 8:
return 0.9
return 0.9
return 0.1
return 0.1
</nowiki>

Revision as of 08:24, 4 October 2006

def evoModel_Sad(x,y,distance): # returns 0.9 if x and y are the same; 0.1 if they're different, # regardless of branch lengths. use this function if you # can't derive the Jukes-Cantor model and would like to move # on to the next portion of the assignment. if x == y: return 0.9 return 0.1