Skip to content

Commit

Permalink
Fixed typo.
Browse files Browse the repository at this point in the history
  • Loading branch information
ggirelli committed Oct 26, 2017
1 parent a08ec8d commit b634cac
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/oligomeltlib.py
Original file line number Diff line number Diff line change
Expand Up @@ -368,7 +368,7 @@ def melt_curve(seq, oligo_conc, na_conc, mg_conc, fa_conc, fa_mode, mvalue,
factor = math.exp(-dg / (R * t)) * oligo_conc

# Calculate fraction
k = 1 - factor (1 + factor)
k = 1 - factor / (1 + factor)

# Adjust output temperature
t_out = melt_ion_adj(t, na_conc, mg_conc, fgc)
Expand All @@ -386,7 +386,7 @@ def melt_curve(seq, oligo_conc, na_conc, mg_conc, fa_conc, fa_mode, mvalue,
factor = math.exp(-dg / (R * t)) * oligo_conc

# Calculate fraction
k = 1 - factor (1 + factor)
k = 1 - factor / (1 + factor)

# Adjust output temperature
t_out = melt_ion_adj(t, na_conc, mg_conc, fgc)
Expand Down

0 comments on commit b634cac

Please sign in to comment.