Skip to content

Commit

Permalink
scripts/build-imputation-validation.sh works (#27)
Browse files Browse the repository at this point in the history
Co-authored-by: Pradeep Bashyal <pbashyal@nmdp.org>
  • Loading branch information
mmaiers-nmdp and pbashyal-nmdp authored Jan 4, 2024
1 parent 2f5c843 commit fd9d805
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 2 deletions.
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

0 comments on commit fd9d805

Please sign in to comment.