X-Git-Url: http://source.jalview.org/gitweb/?a=blobdiff_plain;f=src%2Fjalview%2Fanalysis%2FConservation.java;h=6957b5cb0e3f6ba119dc7c08e18a1a866fe0008d;hb=bb3f28791ddb1a4f55e78a3bcd2ff4a591ebe95d;hp=8e3b6e4f617faee2a53fd84442188f8ef4a8ad0e;hpb=797df64fa2a0a30773d0f48f5494d4155e5a8be3;p=jalview.git diff --git a/src/jalview/analysis/Conservation.java b/src/jalview/analysis/Conservation.java index 8e3b6e4..6957b5c 100755 --- a/src/jalview/analysis/Conservation.java +++ b/src/jalview/analysis/Conservation.java @@ -85,7 +85,7 @@ public class Conservation * end residue position */ public Conservation(String name, Hashtable propHash, int threshold, - Vector sequences, int start, int end) + List sequences, int start, int end) { this.name = name; this.propHash = propHash; @@ -102,7 +102,7 @@ public class Conservation try { for (s = 0; s < sSize; s++) { - sarray[s] = (SequenceI) sequences.elementAt(s); + sarray[s] = (SequenceI) sequences.get(s); if (sarray[s].getLength() > maxLength) { maxLength = sarray[s].getLength(); @@ -694,4 +694,42 @@ public class Conservation } } } + + /** + * construct and call the calculation methods on a new Conservation object + * @param name - name of conservation + * @param consHash - hash table of properties for each amino acid (normally ResidueProperties.propHash) + * @param threshold - minimum number of conserved residues needed to indicate conservation (typically 3) + * @param seqs + * @param start first column in calculation window + * @param end last column in calculation window + * @param posOrNeg positive (true) or negative (false) conservation + * @param consPercGaps percentage of gaps tolerated in column + * @param calcQuality flag indicating if alignment quality should be calculated + * @return Conservation object ready for use in visualization + */ + public static Conservation calculateConservation(String name, + Hashtable consHash, int threshold, List seqs, int start, int end, boolean posOrNeg, int consPercGaps, boolean calcQuality) + { + Conservation cons = new Conservation(name, consHash, threshold, seqs, start,end); + return calculateConservation(cons, posOrNeg, consPercGaps, calcQuality); + } + /** + * @param b positive (true) or negative (false) conservation + * @param consPercGaps percentage of gaps tolerated in column + * @param calcQuality flag indicating if alignment quality should be calculated + * @return Conservation object ready for use in visualization + */ + public static Conservation calculateConservation(Conservation cons, boolean b, int consPercGaps, boolean calcQuality) + { + cons.calculate(); + cons.verdict(b, consPercGaps); + + if (calcQuality) + { + cons.findQuality(); + } + + return cons; + } }