From 74ed047260c7a7e0cfd6e176ef9ce8316a34037b Mon Sep 17 00:00:00 2001 From: Loraine Gueguen <loraine.gueguen@sb-roscoff.fr> Date: Thu, 20 May 2021 21:20:18 +0200 Subject: [PATCH] fix set blast/go attribute --- speciesData.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/speciesData.py b/speciesData.py index 6ee1b79..f2ef203 100755 --- a/speciesData.py +++ b/speciesData.py @@ -91,8 +91,8 @@ class SpeciesData: self.blastx_path = parameters_dictionary_data[constants.ORG_PARAM_DATA_BLASTX_PATH] self.orthofinder_path = parameters_dictionary_data[constants.ORG_PARAM_DATA_ORTHOFINDER_PATH] - self.blast = set_service_attribute(constants.ORG_PARAM_SERVICES_BLAST, parameters_dictionary) - self.go = set_service_attribute(constants.ORG_PARAM_SERVICES_GO, parameters_dictionary) + self.blast = self.set_service_attribute(constants.ORG_PARAM_SERVICES_BLAST, parameters_dictionary) + self.go = self.set_service_attribute(constants.ORG_PARAM_SERVICES_GO, parameters_dictionary) self.genus_lowercase = self.genus.lower() self.species_lower = self.species.lower() -- GitLab