Skip to content

Commit

Permalink
Do TODO
Browse files Browse the repository at this point in the history
  • Loading branch information
szhan committed Aug 8, 2023
1 parent 75096f1 commit 8a7bb97
Showing 1 changed file with 4 additions and 6 deletions.
10 changes: 4 additions & 6 deletions python/tests/test_imputation.py
Original file line number Diff line number Diff line change
Expand Up @@ -239,13 +239,11 @@ def get_test_data(matrix_text, par):
# 0 = ref allele, 1 = alt allele
return x[:, 7].reshape((4, 4))[:, 0]
elif par == "shift":
# Shift factor
# TODO
pass
# Shift factor, one per site
return x[:, 8].reshape((4, 4))[:, 0]
elif par == "scale":
# Scale factor
# TODO
pass
# Scale factor, one per site
return x[:, 9].reshape((4, 4))[:, 0]
elif par == "sum":
# Sum of values over haplotypes
return x[:, 10].reshape((4, 4))[:, 0]
Expand Down

0 comments on commit 8a7bb97

Please sign in to comment.