X-Git-Url: http://source.jalview.org/gitweb/?a=blobdiff_plain;ds=inline;f=src%2Fjalview%2Fanalysis%2FConservation.java;h=565924b83e51de6d16a064121bd1fb58e12adbe3;hb=aaa5a9341963ac324baa558bf3f5b744cfdee9c7;hp=73a9dee824d4fdf98a8215c82e4136ec397d805a;hpb=9f6812a0b52a027056dff1425d20f674d114e55c;p=jalview.git diff --git a/src/jalview/analysis/Conservation.java b/src/jalview/analysis/Conservation.java index 73a9dee..565924b 100755 --- a/src/jalview/analysis/Conservation.java +++ b/src/jalview/analysis/Conservation.java @@ -20,9 +20,10 @@ */ package jalview.analysis; -import jalview.analysis.ResidueCount.SymbolCounts; import jalview.datamodel.AlignmentAnnotation; import jalview.datamodel.Annotation; +import jalview.datamodel.ResidueCount; +import jalview.datamodel.ResidueCount.SymbolCounts; import jalview.datamodel.Sequence; import jalview.datamodel.SequenceI; import jalview.schemes.ResidueProperties; @@ -32,17 +33,21 @@ import java.awt.Color; import java.util.List; import java.util.Map; import java.util.Map.Entry; +import java.util.SortedMap; import java.util.TreeMap; import java.util.Vector; /** * Calculates conservation values for a given set of sequences - * - * @author $author$ - * @version $Revision$ */ public class Conservation { + /* + * need to have a minimum of 3% of sequences with a residue + * for it to be included in the conservation calculation + */ + private static final int THRESHOLD_PERCENT = 3; + private static final int TOUPPERCASE = 'a' - 'A'; SequenceI[] sequences; @@ -60,7 +65,7 @@ public class Conservation /* * a map per column with {property, conservation} where conservation value is - * 1 (property is conserved), 0 (property is negatively conserved) or -1 + * 1 (property is conserved), 0 (absence of property is conserved) or -1 * (property is not conserved i.e. column has residues with and without it) */ Map[] total; @@ -91,12 +96,10 @@ public class Conservation private String[] consSymbs; /** - * Creates a new Conservation object. + * Constructor using default threshold of 3% * * @param name * Name of conservation - * @param threshold - * to count the residues in residueHash(). commonly used value is 3 * @param sequences * sequences to be used in calculation * @param start @@ -104,6 +107,27 @@ public class Conservation * @param end * end residue position */ + public Conservation(String name, List sequences, int start, + int end) + { + this(name, THRESHOLD_PERCENT, sequences, start, end); + } + + /** + * Constructor + * + * @param name + * Name of conservation + * @param threshold + * percentage of sequences at or below which property conservation is + * ignored + * @param sequences + * sequences to be used in calculation + * @param start + * start column position + * @param end + * end column position + */ public Conservation(String name, int threshold, List sequences, int start, int end) { @@ -209,16 +233,18 @@ public class Conservation { ResidueCount values = countResidues(column); - // TODO is threshold a percentage or count value? + /* + * percentage count at or below which we ignore residues + */ int thresh = (threshold * height) / 100; /* * check observed residues in column and record whether each - * physico-chemical property is conserved (+1), negatively conserved (0), + * physico-chemical property is conserved (+1), absence conserved (0), * or not conserved (-1) * Using TreeMap means properties are displayed in alphabetical order */ - Map resultHash = new TreeMap(); + SortedMap resultHash = new TreeMap(); SymbolCounts symbolCounts = values.getSymbolCounts(); char[] symbols = symbolCounts.symbols; int[] counts = symbolCounts.values; @@ -442,7 +468,7 @@ public class Conservation if (result == -1) { /* - * not conserved either positively or negatively + * not conserved (present or absent) */ continue; } @@ -458,7 +484,7 @@ public class Conservation if (result == 0 && !positiveOnly) { /* - * negatively conserved property (all residues lack it) + * absense of property is conserved (all residues lack it) */ negatives.append(negatives.length() == 0 ? "" : " "); negatives.append("!").append(type); @@ -493,7 +519,7 @@ public class Conservation * * @return Conservation sequence */ - public Sequence getConsSequence() + public SequenceI getConsSequence() { return consSequence; } @@ -780,9 +806,6 @@ public class Conservation * * @param name * - name of conservation - * @param threshold - * - minimum number of conserved residues needed to indicate - * conservation (typically 3) * @param seqs * @param start * first column in calculation window @@ -798,10 +821,10 @@ public class Conservation * @return Conservation object ready for use in visualization */ public static Conservation calculateConservation(String name, - int threshold, List seqs, int start, int end, - boolean positiveOnly, int maxPercentGaps, boolean calcQuality) + List seqs, int start, int end, boolean positiveOnly, + int maxPercentGaps, boolean calcQuality) { - Conservation cons = new Conservation(name, threshold, seqs, start, end); + Conservation cons = new Conservation(name, seqs, start, end); cons.calculate(); cons.verdict(positiveOnly, maxPercentGaps); @@ -816,7 +839,8 @@ public class Conservation /** * Returns the computed tooltip (annotation description) for a given column. * The tip is empty if the conservation score is zero, otherwise holds the - * positively (and, optionally, negatively) conserved properties. + * conserved properties (and, optionally, properties whose absence is + * conserved). * * @param column * @return