Skip to content
Snippets Groups Projects
Commit fdef625c authored by Hanna  JULIENNE's avatar Hanna JULIENNE
Browse files

fixed issue in __main__.py

parent 279f00cb
No related branches found
No related tags found
No related merge requests found
...@@ -231,7 +231,11 @@ def w_create_inittable(args): ...@@ -231,7 +231,11 @@ def w_create_inittable(args):
regions_map_path = absolute_path_of_the_file(args.regions_map_path) regions_map_path = absolute_path_of_the_file(args.regions_map_path)
description_file_path = absolute_path_of_the_file(args.description_file_path) description_file_path = absolute_path_of_the_file(args.description_file_path)
init_table_metadata_path = absolute_path_of_the_file(args.init_table_metadata_path)
if args.init_table_metadata_path is not None:
init_table_metadata_path = absolute_path_of_the_file(args.init_table_metadata_path)
else:
init_table_metadata_path = None
init_table_path = absolute_path_of_the_file(args.init_table_path, True) init_table_path = absolute_path_of_the_file(args.init_table_path, True)
create_inittable_file( create_inittable_file(
......
...@@ -94,7 +94,6 @@ def create_pheno_summary(description): ...@@ -94,7 +94,6 @@ def create_pheno_summary(description):
"Reference", "Reference",
"ReferenceLink", "ReferenceLink",
"dataLink", "dataLink",
"internalDataLink",
"Nsample", "Nsample",
"Ncase", "Ncase",
"Ncontrol", "Ncontrol",
...@@ -130,7 +129,6 @@ def create_pheno_summary(description): ...@@ -130,7 +129,6 @@ def create_pheno_summary(description):
"Reference", "Reference",
"ReferenceLink", "ReferenceLink",
"dataLink", "dataLink",
"internalDataLink",
"Nsample", "Nsample",
"Ncase", "Ncase",
"Ncontrol", "Ncontrol",
......
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