Skip to content
Snippets Groups Projects
Commit 8d50f6e9 authored by Arthur Le Bars's avatar Arthur Le Bars
Browse files

analysis versions as string

parent 2eed9230
No related branches found
No related tags found
2 merge requests!9Release 2.0 (merge dev to master),!5Workflow v2
......@@ -39,11 +39,11 @@ class SpeciesData:
if parameters_dictionary["data"]["genome_version"] == "":
self.genome_version = "1.0"
else:
self.genome_version = parameters_dictionary["data"]["genome_version"]
self.genome_version = str(parameters_dictionary["data"]["genome_version"])
if parameters_dictionary["data"]["ogs_version"] == "":
self.ogs_version = "1.0"
else:
self.ogs_version = parameters_dictionary["data"]["ogs_version"]
self.ogs_version = str(parameters_dictionary["data"]["ogs_version"])
# TODO: catch blocks if key is absent in input
self.genome_path = parameters_dictionary["data"]["genome_path"]
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment