Changeset 4367


Ignore:
Timestamp:
Jul 2, 2008, 3:51:58 PM (15 years ago)
Author:
Jari Häkkinen
Message:

Fixes #1077. Changed help text on step parameter, also changed default value for the parameter. The default now corresponds to the BASE1 default.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/2.7-stable/src/plugins/core/net/sf/basedb/plugins/LowessNormalization.java

    r4363 r4367  
    137137  (
    138138    "delta",
    139     "Minimum log(intensity) step",
     139    "Minimum log10(intensity) step",
    140140    "",
    141     new FloatParameterType(0F, null, 0.1F, true)
     141    new FloatParameterType(0F, null, 0.043F, true)
    142142  );
    143143 
     
    651651      {
    652652        double w = Math.abs((smoothCurve[j] - data.get(j).M) * invYWRange);
    653         wFit.set(j, w < 1 ? Math.pow(1 - w*w, 2) : 0);
     653        wFit.set(j, w < 1 ? Math.pow(1D - w*w, 2) : 0);
    654654      }
    655655    }
Note: See TracChangeset for help on using the changeset viewer.