licencing and format applied (eclipse)
[jalview.git] / src / jalview / io / vamsas / Rangetype.java
index a475000..2686e85 100644 (file)
@@ -18,7 +18,6 @@
  */
 package jalview.io.vamsas;
 
-
 import java.util.Vector;
 
 import uk.ac.vamsas.objects.core.Local;
@@ -45,8 +44,9 @@ public class Rangetype extends DatastoreItem
 
   /**
    * get real bounds of a RangeType's specification. start and end are an
-   * inclusive range within which all segments and positions lie.
-   * TODO: refactor to vamsas utils
+   * inclusive range within which all segments and positions lie. TODO: refactor
+   * to vamsas utils
+   * 
    * @param dseta
    * @return int[] { start, end}
    */
@@ -57,7 +57,8 @@ public class Rangetype extends DatastoreItem
       int[] se = null;
       if (dseta.getSegCount() > 0 && dseta.getPosCount() > 0)
       {
-        throw new Error("Invalid vamsas RangeType - cannot resolve both lists of Pos and Seg from choice!");
+        throw new Error(
+                "Invalid vamsas RangeType - cannot resolve both lists of Pos and Seg from choice!");
       }
       if (dseta.getSegCount() > 0)
       {
@@ -77,11 +78,11 @@ public class Rangetype extends DatastoreItem
       }
       if (dseta.getPosCount() > 0)
       {
-        // could do a polarity for pos range too. and pass back indication of discontinuities.
+        // could do a polarity for pos range too. and pass back indication of
+        // discontinuities.
         int pos = dseta.getPos(0).getI();
         se = new int[]
-            {
-            pos, pos};
+        { pos, pos };
         for (int p = 0, pSize = dseta.getPosCount(); p < pSize; p++)
         {
           pos = dseta.getPos(p).getI();
@@ -101,7 +102,9 @@ public class Rangetype extends DatastoreItem
   }
 
   /**
-   * map from a rangeType's internal frame to the referenced object's coordinate frame.
+   * map from a rangeType's internal frame to the referenced object's coordinate
+   * frame.
+   * 
    * @param dseta
    * @return int [] { ref(pos)...} for all pos in rangeType's frame.
    */
@@ -113,7 +116,8 @@ public class Rangetype extends DatastoreItem
       int[] se = null;
       if (dseta.getSegCount() > 0 && dseta.getPosCount() > 0)
       {
-        throw new Error("Invalid vamsas RangeType - cannot resolve both lists of Pos and Seg from choice!");
+        throw new Error(
+                "Invalid vamsas RangeType - cannot resolve both lists of Pos and Seg from choice!");
       }
       if (dseta.getSegCount() > 0)
       {
@@ -130,7 +134,7 @@ public class Rangetype extends DatastoreItem
       else if (dseta.getPosCount() > 0)
       {
         int pos = dseta.getPos(0).getI();
-  
+
         for (int p = 0, pSize = dseta.getPosCount(); p < pSize; p++)
         {
           pos = dseta.getPos(p).getI();
@@ -143,7 +147,7 @@ public class Rangetype extends DatastoreItem
       int[] range = new int[posList.size()];
       for (int i = 0; i < range.length; i++)
       {
-        range[i] = ( (Integer) posList.elementAt(i)).intValue();
+        range[i] = ((Integer) posList.elementAt(i)).intValue();
       }
       posList.clear();
       return range;
@@ -153,14 +157,15 @@ public class Rangetype extends DatastoreItem
 
   protected int[] getIntervals(RangeType range)
   {
-    int[] intervals=null;
+    int[] intervals = null;
     Vector posList = new Vector();
     if (range != null)
     {
       int[] se = null;
       if (range.getSegCount() > 0 && range.getPosCount() > 0)
       {
-        throw new Error("Invalid vamsas RangeType - cannot resolve both lists of Pos and Seg from choice!");
+        throw new Error(
+                "Invalid vamsas RangeType - cannot resolve both lists of Pos and Seg from choice!");
       }
       if (range.getSegCount() > 0)
       {
@@ -174,7 +179,7 @@ public class Rangetype extends DatastoreItem
       else if (range.getPosCount() > 0)
       {
         int pos = range.getPos(0).getI();
-  
+
         for (int p = 0, pSize = range.getPosCount(); p < pSize; p++)
         {
           pos = range.getPos(p).getI();
@@ -185,28 +190,30 @@ public class Rangetype extends DatastoreItem
     }
     if (posList != null && posList.size() > 0)
     {
-      intervals=new int[posList.size()];
+      intervals = new int[posList.size()];
       java.util.Enumeration e = posList.elements();
-      int i=0;
+      int i = 0;
       while (e.hasMoreElements())
       {
-        intervals[i++] = ((Integer)e.nextElement()).intValue();
+        intervals[i++] = ((Integer) e.nextElement()).intValue();
       }
     }
     return intervals;
   }
+
   /**
    * initialise a range type object from a set of start/end inclusive intervals
+   * 
    * @param mrt
    * @param range
    */
   protected void initRangeType(RangeType mrt, int[] range)
   {
-    for (int i=0; i<range.length; i+=2)
+    for (int i = 0; i < range.length; i += 2)
     {
       Seg vSeg = new Seg();
       vSeg.setStart(range[i]);
-      vSeg.setEnd(range[i+1]);
+      vSeg.setEnd(range[i + 1]);
       vSeg.setInclusive(true);
       mrt.addSeg(vSeg);
     }
@@ -214,71 +221,93 @@ public class Rangetype extends DatastoreItem
 
   /**
    * 
-   * @param maprange where the from range is the local mapped range, and the to range is the 'mapped' range in the MapRangeType
-   * @param default unit for local
-   * @param default unit for mapped
+   * @param maprange
+   *                where the from range is the local mapped range, and the to
+   *                range is the 'mapped' range in the MapRangeType
+   * @param default
+   *                unit for local
+   * @param default
+   *                unit for mapped
    * @return MapList
    */
-  protected jalview.util.MapList parsemapType(MapType maprange, int localu, int mappedu)
+  protected jalview.util.MapList parsemapType(MapType maprange, int localu,
+          int mappedu)
   {
     jalview.util.MapList ml = null;
     int[] localRange = getIntervals(maprange.getLocal());
     int[] mappedRange = getIntervals(maprange.getMapped());
-    long lu = maprange.getLocal().hasUnit() ? maprange.getLocal().getUnit() : localu;
-    long mu = maprange.getMapped().hasUnit() ? maprange.getMapped().getUnit() : mappedu;
-    ml = new jalview.util.MapList(localRange, mappedRange, (int)lu, (int)mu);
+    long lu = maprange.getLocal().hasUnit() ? maprange.getLocal().getUnit()
+            : localu;
+    long mu = maprange.getMapped().hasUnit() ? maprange.getMapped()
+            .getUnit() : mappedu;
+    ml = new jalview.util.MapList(localRange, mappedRange, (int) lu,
+            (int) mu);
     return ml;
   }
+
   protected jalview.util.MapList parsemapType(MapType map)
   {
     if (!map.getLocal().hasUnit() || map.getMapped().hasUnit())
     {
-      jalview.bin.Cache.log.warn("using default mapping length of 1:1 for map "
-              +(map.isRegistered() ? map.getVorbaId().toString() : ("<no Id registered> "+map.toString())));
+      jalview.bin.Cache.log
+              .warn("using default mapping length of 1:1 for map "
+                      + (map.isRegistered() ? map.getVorbaId().toString()
+                              : ("<no Id registered> " + map.toString())));
     }
-    return parsemapType(map, 1, 1); 
+    return parsemapType(map, 1, 1);
   }
 
   /**
    * initialise a MapType object from a MapList object.
+   * 
    * @param maprange
    * @param ml
    * @param setUnits
    */
-  protected void initMapType(MapType maprange, jalview.util.MapList ml, boolean setUnits)
+  protected void initMapType(MapType maprange, jalview.util.MapList ml,
+          boolean setUnits)
   {
     initMapType(maprange, ml, setUnits, false);
   }
+
   /**
    * 
    * @param maprange
    * @param ml
    * @param setUnits
-   * @param reverse - reverse MapList mapping for Local and Mapped ranges and units 
+   * @param reverse -
+   *                reverse MapList mapping for Local and Mapped ranges and
+   *                units
    */
-  protected void initMapType(MapType maprange, jalview.util.MapList ml, boolean setUnits, boolean reverse)
+  protected void initMapType(MapType maprange, jalview.util.MapList ml,
+          boolean setUnits, boolean reverse)
   {
-    if (ml==null)
+    if (ml == null)
     {
-      throw new Error("Implementation error. MapList is null for initMapType.");
+      throw new Error(
+              "Implementation error. MapList is null for initMapType.");
     }
     maprange.setLocal(new Local());
     maprange.setMapped(new Mapped());
     if (!reverse)
-      {
+    {
       initRangeType(maprange.getLocal(), ml.getFromRanges());
       initRangeType(maprange.getMapped(), ml.getToRanges());
-      } else {
-        initRangeType(maprange.getLocal(), ml.getToRanges());
-        initRangeType(maprange.getMapped(), ml.getFromRanges());
-      }
+    }
+    else
+    {
+      initRangeType(maprange.getLocal(), ml.getToRanges());
+      initRangeType(maprange.getMapped(), ml.getFromRanges());
+    }
     if (setUnits)
     {
       if (!reverse)
-      { 
+      {
         maprange.getLocal().setUnit(ml.getFromRatio());
         maprange.getMapped().setUnit(ml.getToRatio());
-      } else {
+      }
+      else
+      {
         maprange.getLocal().setUnit(ml.getToRatio());
         maprange.getMapped().setUnit(ml.getFromRatio());
       }