Skip to content

Commit fd9d805

Browse files
scripts/build-imputation-validation.sh works (#27)
Co-authored-by: Pradeep Bashyal <[email protected]>
1 parent 2f5c843 commit fd9d805

File tree

3 files changed

+4
-2
lines changed

3 files changed

+4
-2
lines changed

conf/minimal-configuration.json

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -51,5 +51,7 @@
5151
"imputation_out_miss_filename": "don.miss",
5252
"imputation_out_problem_filename": "don.problem",
5353
"max_haplotypes_number_in_phase": 100,
54+
"imputation_out_path": "output",
55+
"pops_count_file": "output/pop_counts_file.txt"
5456
"imputation_out_path": "output"
5557
}

grim/run_impute_def.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ def run_impute(
3333
graph_files_path = json_conf.get("graph_files_path")
3434
if graph_files_path[-1] != "/":
3535
graph_files_path += "/"
36-
output_dir = json_conf.get("imuptation_out_path", "output")
36+
output_dir = json_conf.get("imputation_out_path", "output")
3737
if output_dir[-1] != "/":
3838
output_dir += "/"
3939
config = {

scripts/runfile.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030

3131
# read the config file
3232
output_dir = "output/"
33-
project_dir = "../"
33+
project_dir = "./"
3434

3535
# Read configuration file and load properties
3636
with open(configuration_file) as f:

0 commit comments

Comments
 (0)