new base class to hold core visualization settings for a jalview alignment view
authorjprocter <jprocter@compbio.dundee.ac.uk>
Wed, 19 Oct 2011 17:28:47 +0000 (18:28 +0100)
committerjprocter <jprocter@compbio.dundee.ac.uk>
Fri, 21 Oct 2011 14:53:25 +0000 (15:53 +0100)
src/jalview/datamodel/AlignmentViewport.java [new file with mode: 0644]

diff --git a/src/jalview/datamodel/AlignmentViewport.java b/src/jalview/datamodel/AlignmentViewport.java
new file mode 100644 (file)
index 0000000..7573401
--- /dev/null
@@ -0,0 +1,22 @@
+package jalview.datamodel;
+
+/**
+ * base class holding visualization and analysis attributes for an active alignment view displayed in the GUI
+ * @author jimp
+ *
+ */
+public class AlignmentViewport
+{
+
+  /**
+   * percentage gaps allowed in a column before all amino acid properties should be considered unconserved
+   */
+  int ConsPercGaps = 25; // JBPNote : This should be a scalable property!
+
+
+  public int getConsPercGaps()
+  {
+    return ConsPercGaps;
+  }
+
+}