Skip to content

Commit

Permalink
Remove unused flag
Browse files Browse the repository at this point in the history
  • Loading branch information
szhan committed Sep 12, 2023
1 parent 34b2056 commit acdbf35
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions python/tests/beagle_numba.py
Original file line number Diff line number Diff line change
Expand Up @@ -333,7 +333,7 @@ def get_map_alleles(allele_probs):


@njit
def run_beagle(ref_h, query_h, pos, miscall_rate=0.0001, ne=1e6, debug=False):
def run_beagle(ref_h, query_h, pos, miscall_rate=0.0001, ne=1e6):
"""
Run a simplified version of the BEAGLE imputation algorithm
based on Equation 1 of BB2016.
Expand All @@ -353,7 +353,6 @@ def run_beagle(ref_h, query_h, pos, miscall_rate=0.0001, ne=1e6, debug=False):
:param numpy.ndarray pos: Site positions of all the markers.
:param float miscall_rate: Allelic miscall rate.
:param int ne: Effective population size.
:param bool debug: Whether to print intermediate results.
:return: Imputed alleles and interpolated allele probabilities.
:rtype: list(numpy.ndarray, numpy.ndarray)
"""
Expand Down

0 comments on commit acdbf35

Please sign in to comment.