Skip to content

Commit

Permalink
Fixed an error in dextranShape using the wrong variable name when all…
Browse files Browse the repository at this point in the history
… the scores where upgraded
  • Loading branch information
Immudzen committed Jul 3, 2020
1 parent dbb3b58 commit a3a0e34
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion CADETMatch/scores/dextranShape.py
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ def headers(experimentName, feature):

def cut_front_find(times, values, name, cache):
s, crit_fs, crit_fs_der = smoothing.find_smoothing_factors(times, values, name, cache)
smooth_value, values_der = smoothing.full_smooth(selectedTimes, selectedValues, crit_fs, s, crit_fs_der)
smooth_value, values_der = smoothing.full_smooth(times, values, crit_fs, s, crit_fs_der)

spline_der = scipy.interpolate.InterpolatedUnivariateSpline(times, values_der, ext=1)
spline = scipy.interpolate.InterpolatedUnivariateSpline(times, smooth_value, ext=1)
Expand Down

0 comments on commit a3a0e34

Please sign in to comment.