Skip to content

Commit

Permalink
saturation model exception
Browse files Browse the repository at this point in the history
  • Loading branch information
mr-eyes committed Oct 28, 2024
1 parent dce3886 commit 82d732f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/snipe/api/multisig_reference_QC.py
Original file line number Diff line number Diff line change
Expand Up @@ -885,7 +885,7 @@ def sort_chromosomes(chrom_dict):

# Saturation model function
def saturation_model(x, a, b):
return a * x / (b + x) if b + x != 0 else 0
return np.where((b + x) != 0, a * x / (b + x), 0)

# Initial parameter guesses
initial_guess = [
Expand Down

0 comments on commit 82d732f

Please sign in to comment.