--- /dev/null
+package jalview.datamodel;
+
+/**
+ * bean which stores e-Value Statistics
+ *
+ * @author TZVanaalten
+ *
+ */
+public class EValueStatistic
+{
+ final String alignmentModeConfiguration;
+
+ final double locationOfDistribution;
+
+ final double slopeOfDistribution;
+
+ public EValueStatistic(String configuration, double slope,
+ double location)
+ {
+ alignmentModeConfiguration = configuration;
+ locationOfDistribution = location;
+ slopeOfDistribution = slope;
+ }
+
+ public String getAlignmentModeConfiguration()
+ {
+ return alignmentModeConfiguration;
+ }
+
+ public double getLocationOfDistribution()
+ {
+ return locationOfDistribution;
+ }
+
+ public double getSlopeOfDistribution()
+ {
+ return slopeOfDistribution;
+ }
+
+}
--- /dev/null
+package jalview.datamodel;
+
+import org.testng.annotations.Test;
+
+public class HiddenMarkovModelTest
+{
+ HiddenMarkovModel hmm = new HiddenMarkovModel();
+
+ @Test
+ public void testGetGatheringThresholdGA1()
+ {
+ hmm.put("GA1", "10.1");
+ // assertEquals(hmm.getGatheringThresholdGA1(), 10.1);
+ }
+
+}
\ No newline at end of file