From 827bf876b5a0ba3cb1a50e6c322134791f31d6bb Mon Sep 17 00:00:00 2001
From: Loraine Gueguen <loraine.gueguen@sb-roscoff.fr>
Date: Thu, 3 Jun 2021 16:38:14 +0200
Subject: [PATCH] do not clean common_name

---
 species_data.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/species_data.py b/species_data.py
index 9ba1598..d16530b 100644
--- a/species_data.py
+++ b/species_data.py
@@ -73,7 +73,7 @@ class SpeciesData:
         self.genus = clean_string(parameters_dictionary_description[constants.ORG_PARAM_DESC_GENUS])
         self.strain = clean_string(parameters_dictionary_description[constants.ORG_PARAM_DESC_STRAIN])
         self.sex = clean_string(parameters_dictionary_description[constants.ORG_PARAM_DESC_SEX])
-        self.common_name = clean_string(parameters_dictionary_description[constants.ORG_PARAM_DESC_COMMON_NAME])
+        self.common_name = parameters_dictionary_description[constants.ORG_PARAM_DESC_COMMON_NAME]
 
         self.date = datetime.today().strftime("%Y-%m-%d")
         self.origin = parameters_dictionary_description[constants.ORG_PARAM_DESC_ORIGIN]
-- 
GitLab