public DINAMeltSecStructModule() {
super(new TestDescriptor[] { new TestDescriptor("Secondary structure")}, //$NON-NLS-1$
new DataDescriptor[] {
new DoubleDescriptor("dG limit","Maximum dG allowed for highest quality (usually a negative number)",KEY_DG_LIMIT,-100.0,100.0), //$NON-NLS-1$ //$NON-NLS-2$
new DoubleDescriptor("dG span","Maximum dG above limit allowed for intermediate quality",KEY_DG_SPAN,0,100), //$NON-NLS-1$ //$NON-NLS-2$
new DoubleDescriptor("Folding temperature (�C)","The temperature in degrees celsius to use for the folding calculations",KEY_FOLD_TEMP,0,100), //$NON-NLS-1$ //$NON-NLS-2$
new DoubleDescriptor("Na+ conc. (M)","The sodium ion concentration (molar) to use for the folding calculations",KEY_NA_CONC,0.01,1), //$NON-NLS-1$ //$NON-NLS-2$
new DoubleDescriptor("Mg2+ conc. (M)","The magnesium ion concentration (molar) to use for the folding calculations",KEY_MG_CONC,0,1) //$NON-NLS-1$ //$NON-NLS-2$
});
setData(KEY_DG_LIMIT,new Double(-5.0));
setData(KEY_DG_SPAN,new Double(2));
setData(KEY_FOLD_TEMP,new Double(37));
setData(KEY_NA_CONC,new Double(1));