added enum for the different tree algorithms
authorkjvdheide <kjvanderheide@dundee.ac.uk>
Thu, 26 Oct 2017 14:10:58 +0000 (15:10 +0100)
committerkjvdheide <kjvanderheide@dundee.ac.uk>
Thu, 26 Oct 2017 14:10:58 +0000 (15:10 +0100)
src/jalview/analysis/TreeAlgorithms.java [new file with mode: 0644]

diff --git a/src/jalview/analysis/TreeAlgorithms.java b/src/jalview/analysis/TreeAlgorithms.java
new file mode 100644 (file)
index 0000000..b3ebbdc
--- /dev/null
@@ -0,0 +1,7 @@
+package jalview.analysis;
+
+public enum TreeAlgorithms
+{
+  NEIGHBOUR_JOINING, AVERAGE_DISTANCE, MAXIMUM_PARSIMONY,
+  MAXIMUM_LIKELIHOOD, BAYESIAN
+}