JAL-885; Multi-helix bug is solved; One should think about a more
[jalview.git] / src / jalview / analysis / Rna.java
index f2ef118..71ccbd1 100644 (file)
@@ -21,6 +21,7 @@
 
 package jalview.analysis;
 
+import java.util.ArrayList;
 import java.util.Hashtable;
 import java.util.Vector;
 
@@ -28,6 +29,7 @@ import jalview.datamodel.SequenceFeature;
 
 public class Rna
 {
+       static Hashtable<Integer, Integer> pairHash = new Hashtable();
   /**
    * Based off of RALEE code ralee-get-base-pairs. Keeps track of open bracket
    * positions in "stack" vector. When a close bracket is reached, pair this
@@ -62,7 +64,7 @@ public class Rna
         Object temp = stack.lastElement();
         stack.remove(stack.size() - 1);
         pairs.addElement(temp);
-        pairs.addElement(i);
+        pairs.addElement(i);        
       }
 
       i++;
@@ -79,10 +81,27 @@ public class Rna
       
        outPairs[p / 2] = new SequenceFeature("RNA helix", "", "", begin,
               end, "");
+       //pairHash.put(begin, end);
+
     }
 
     return outPairs;
   }
+  
+  
+  /**
+   * Function to get the end position corresponding to a given start position
+   * @param indice - start position of a base pair
+   * @return - end position of a base pair
+   */
+  /*makes no sense at the moment :(
+  public int findEnd(int indice){
+         //TODO: Probably extend this to find the start to a given end?
+         //could be done by putting everything twice to the hash
+         ArrayList<Integer> pair = new ArrayList<Integer>();
+         return pairHash.get(indice);
+  }*/
+  
 
   /**
    * Figures out which helix each position belongs to and stores the helix