From 6f3727298262d0e8e74e00202069605e2b40a1a9 Mon Sep 17 00:00:00 2001
From: Kappes Marques Rodrigo <rodrigo.kappes@student-cs.fr>
Date: Wed, 29 Jan 2020 14:36:13 +0100
Subject: [PATCH] Optimization sur reproduction

---
 population.py | 2 --
 1 file changed, 2 deletions(-)

diff --git a/population.py b/population.py
index 0769839..1a9301a 100644
--- a/population.py
+++ b/population.py
@@ -163,8 +163,6 @@ class Population:
             y=copy.deepcopy(newself[t])
             couple_enfant = enfant(x,y)
             for child in couple_enfant :
-                lineList = [line.rstrip('\n') for line in open("plasmid_8k.fasta")]
-                brin = ''.join(lineList[1:])
                 child.mutation_close_values(proba_mutation, number_of_mutations = 2)
                 child.evaluate()
             newself.append(couple_enfant[0])
-- 
GitLab