Skip to content
Snippets Groups Projects
Commit b8f9daa5 authored by Kappes Marques Rodrigo's avatar Kappes Marques Rodrigo
Browse files

fixed a variable in algo

parent a13196da
No related branches found
No related tags found
No related merge requests found
No preview for this file type
...@@ -76,8 +76,8 @@ def main(N,tmax,pmutation, proportion): ...@@ -76,8 +76,8 @@ def main(N,tmax,pmutation, proportion):
#Testing our solution and printing the result in 3D #Testing our solution and printing the result in 3D
lineList = [line.rstrip('\n') for line in open("plasmid_8k.fasta")] lineList = [line.rstrip('\n') for line in open("plasmid_8k.fasta")]
brin = ''.join(lineList[1:]) brin = ''.join(lineList[1:])
best,People = main(60,60,0.05,30) best,People = main(30,5,0.05,15)
test = Traj3D() traj = Traj3D()
test.compute(brin, best.table) traj.compute(brin, best.table)
test.draw("first_plot") traj.draw("first_plot")
print("Temps d'execution : %s secondes " % (time.time() - start_time)) print("Temps d'execution : %s secondes " % (time.time() - start_time))
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment