X-Git-Url: http://source.jalview.org/gitweb/?a=blobdiff_plain;f=src%2Fjalview%2Fschemes%2FUserColourScheme.java;h=007d35875e1b1384d6e443e18518351063becd53;hb=c3c305755d392741176209a0274a47897ac4d8a8;hp=0e037977b54caff62acdd07f078cc9c351dd1491;hpb=94c3c55a91089b85b9e4eccf6ea0b82750d6f405;p=jalview.git diff --git a/src/jalview/schemes/UserColourScheme.java b/src/jalview/schemes/UserColourScheme.java index 0e03797..007d358 100755 --- a/src/jalview/schemes/UserColourScheme.java +++ b/src/jalview/schemes/UserColourScheme.java @@ -1,6 +1,6 @@ /* * Jalview - A Sequence Alignment Editor and Viewer - * Copyright (C) 2005 AM Waterhouse, J Procter, G Barton, M Clamp, S Searle + * Copyright (C) 2006 AM Waterhouse, J Procter, G Barton, M Clamp, S Searle * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License @@ -24,6 +24,8 @@ import java.util.StringTokenizer; public class UserColourScheme extends ResidueColourScheme { + Color [] lowerCaseColours; + protected String schemeName; public UserColourScheme() @@ -54,6 +56,11 @@ public class UserColourScheme return colors; } + public Color[] getLowerCaseColours() + { + return lowerCaseColours; + } + public void setName(String name) { schemeName = name; @@ -138,11 +145,36 @@ public class UserColourScheme st2 = new StringTokenizer(residues, " ,"); while (st2.hasMoreTokens()) { - int colIndex = - ( (Integer) ResidueProperties.aaHash. - get(st2.nextToken())).intValue(); - - colors[colIndex] = getColourFromString(colour); + token = st2.nextToken(); + + if (ResidueProperties.aaIndex[token.charAt(0)]==-1) + continue; + + int colIndex = ResidueProperties.aaIndex[token.charAt(0)]; + + //AW - LOWER CASE DISABLED IN 2.1.01 bug fix release + + if(token.equalsIgnoreCase("lowerCase")) + { + if (lowerCaseColours == null) + lowerCaseColours = new Color[23]; + for (int i = 0; i < 23; i++) + if (lowerCaseColours[i] == null) + lowerCaseColours[i] = getColourFromString(colour); + + continue; + } + + if(token.equals(token.toLowerCase())) + { + if(lowerCaseColours==null) + { + lowerCaseColours = new Color[23]; + } + lowerCaseColours[colIndex] = getColourFromString(colour); + } + else + colors[colIndex] = getColourFromString(colour); } } } @@ -154,4 +186,35 @@ public class UserColourScheme } + + + public Color findColour(String s, int j) + { + int index = ResidueProperties.aaIndex[s.charAt(0)]; + + if ((threshold == 0) || aboveThreshold(ResidueProperties.aa[index], j)) + { + //AW - LOWER CASE DISABLED IN 2.1.01 bug fix release + if(lowerCaseColours!=null && 'a' <= s.charAt(0) && s.charAt(0) <= 'z') + currentColour = lowerCaseColours[index]; + else + currentColour = colors[index]; + } + else + { + currentColour = Color.white; + } + + if(conservationColouring) + applyConservation(j); + + + return currentColour; + } + + public void setLowerCaseColours(Color [] lcolours) + { + lowerCaseColours = lcolours; + } + }