From c8e553143263f2bd9eb5e163e92323cfafa30fdf Mon Sep 17 00:00:00 2001 From: Gauthier Roy <gauthierroy83@gmail.com> Date: Thu, 30 Jan 2020 10:43:43 +0100 Subject: [PATCH] before pull --- algogenetique.py | 2 +- individu.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/algogenetique.py b/algogenetique.py index 7b70caf..2d0a140 100644 --- a/algogenetique.py +++ b/algogenetique.py @@ -60,7 +60,7 @@ def main(N,tmax,pmutation, proportion): lineList = [line.rstrip('\n') for line in open("plasmid_8k.fasta")] brin = ''.join(lineList[1:]) -best,People = main(100,10,0.05,10) +best,People = main(10,1000,0.05,5) test = Traj3D() test.compute(brin, best.table) test.draw("first_plot") diff --git a/individu.py b/individu.py index 1b49d07..581d0bf 100644 --- a/individu.py +++ b/individu.py @@ -24,7 +24,7 @@ class Individu(): traj = Traj3D() - numb_ajout = 100 + numb_ajout = 50 fisrt_seq = self.brin[0:numb_ajout] last_seq = self.brin[-numb_ajout:] -- GitLab