Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions conf/minimal-configuration.json
Original file line number Diff line number Diff line change
Expand Up @@ -51,5 +51,7 @@
"imputation_out_miss_filename": "don.miss",
"imputation_out_problem_filename": "don.problem",
"max_haplotypes_number_in_phase": 100,
"imputation_out_path": "output",
"pops_count_file": "output/pop_counts_file.txt"
"imputation_out_path": "output"
}
2 changes: 1 addition & 1 deletion grim/run_impute_def.py
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ def run_impute(
graph_files_path = json_conf.get("graph_files_path")
if graph_files_path[-1] != "/":
graph_files_path += "/"
output_dir = json_conf.get("imuptation_out_path", "output")
output_dir = json_conf.get("imputation_out_path", "output")
if output_dir[-1] != "/":
output_dir += "/"
config = {
Expand Down
2 changes: 1 addition & 1 deletion scripts/runfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@

# read the config file
output_dir = "output/"
project_dir = "../"
project_dir = "./"

# Read configuration file and load properties
with open(configuration_file) as f:
Expand Down