X-Git-Url: http://source.jalview.org/gitweb/?a=blobdiff_plain;f=src%2Fjalview%2Fio%2FAnnotationFile.java;h=e54ae71ad2fd01d38324ad1487f66bbf84ce16a7;hb=97d6516fd717d0daddcbc8154c4de29a812982e5;hp=e427605e5d2bad69e86a7463fab5ec6990f4e125;hpb=9922c9eec14599f6b141a8db8a3859cab7227ce0;p=jalview.git diff --git a/src/jalview/io/AnnotationFile.java b/src/jalview/io/AnnotationFile.java index e427605..e54ae71 100755 --- a/src/jalview/io/AnnotationFile.java +++ b/src/jalview/io/AnnotationFile.java @@ -1,6 +1,6 @@ /* * Jalview - A Sequence Alignment Editor and Viewer - * Copyright (C) 2006 AM Waterhouse, J Procter, G Barton, M Clamp, S Searle + * Copyright (C) 2007 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 @@ -20,164 +20,311 @@ package jalview.io; import java.io.*; -import jalview.datamodel.*; +import java.net.*; import java.util.*; -import jalview.schemes.UserColourScheme; -import java.net.URL; +import jalview.analysis.*; +import jalview.datamodel.*; +import jalview.schemes.*; public class AnnotationFile { + StringBuffer text = new StringBuffer( + "JALVIEW_ANNOTATION\n" + + "# Created: " + + new java.util.Date() + "\n\n"); - public String printAnnotations(AlignmentAnnotation [] annotations) + public String printAnnotations(AlignmentAnnotation[] annotations, + Vector groups, + Hashtable properties) { - StringBuffer text = new StringBuffer( - "JALVIEW_ANNOTATION\n" - +"# Created: " - +new java.util.Date()+"\n\n"); + if (annotations != null) + { + boolean oneColour = true; + AlignmentAnnotation row; + String comma; + SequenceI refSeq = null; - AlignmentAnnotation row; - String comma; - String seqref = null; + StringBuffer colours = new StringBuffer(); + StringBuffer graphLine = new StringBuffer(); - StringBuffer colours = new StringBuffer(); - StringBuffer graphLine = new StringBuffer(); + Hashtable graphGroup = new Hashtable(); - Hashtable graphGroup = new Hashtable(); + java.awt.Color color; - java.awt.Color color; + for (int i = 0; i < annotations.length; i++) + { + row = annotations[i]; - for(int i=0; i-1) + if (row.graphGroup > -1) { String key = String.valueOf(row.graphGroup); - if(graphGroup.containsKey(key)) + if (graphGroup.containsKey(key)) + { graphGroup.put(key, graphGroup.get(key) - +"\t"+row.label); + + "\t" + row.label); + } else + { graphGroup.put(key, row.label); + } } - } + } - text.append(row.label+"\t"); + text.append(row.label + "\t"); + if (row.description != null) + { + text.append(row.description + "\t"); + } - for(int j=0; j 0 - && !row.annotations[j].displayCharacter.equals(" ")) - { - text.append(row.annotations[j].displayCharacter); - comma = ","; - } - if (row.annotations[j].secondaryStructure!=' ') + if (refSeq != null && + jalview.util.Comparison.isGap(refSeq.getCharAt(j))) { - text.append(comma + row.annotations[j].secondaryStructure); - comma = ","; + continue; } - if (row.annotations[j].value!=0f) + + if (row.annotations[j] != null) { - color = row.annotations[j].colour; - text.append(comma + row.annotations[j].value); + comma = ""; + if (row.annotations[j].secondaryStructure != ' ') + { + text.append(comma + row.annotations[j].secondaryStructure); + comma = ","; + } + if (row.annotations[j].displayCharacter!=null + && row.annotations[j].displayCharacter.length() > 0 + && !row.annotations[j].displayCharacter.equals(" ")) + { + text.append(comma + row.annotations[j].displayCharacter); + comma = ","; + } + + if (row.annotations[j] != null) + { + if(color!=null && !color.equals(row.annotations[j].colour)) + { + oneColour = false; + } + + color = row.annotations[j].colour; + if (row.annotations[j].value != 0f) + { + text.append(comma + row.annotations[j].value); + } + } + + if(row.annotations[j].colour!=null + && row.annotations[j].colour!=java.awt.Color.black) + { + text.append(comma+"["+ + jalview.util.Format.getHexString( + row.annotations[j].colour)+"]"); + } } + text.append("|"); + } + + if(row.hasScore()) + text.append("\t"+row.score); + + text.append("\n"); + + if (color != null && color != java.awt.Color.black && oneColour) + { + colours.append("COLOUR\t" + + row.label + "\t" + + jalview.util.Format.getHexString(color) + "\n"); } - text.append("|"); + } text.append("\n"); - if(color!=null && color!=java.awt.Color.black) + text.append(colours.toString()); + text.append(graphLine.toString()); + if (graphGroup.size() > 0) { - colours.append("COLOUR\t" - +row.label+"\t" - +jalview.util.Format.getHexString(color)+"\n"); + text.append("COMBINE\t"); + Enumeration en = graphGroup.elements(); + while (en.hasMoreElements()) + { + text.append(en.nextElement() + "\n"); + } } - } - text.append("\n"); + if (groups != null) + { + printGroups(groups); + } - text.append(colours.toString()); - text.append(graphLine.toString()); - if(graphGroup.size()>0) + if(properties!=null) { - text.append("COMBINE\t"); - Enumeration en = graphGroup.elements(); + text.append("\n\nALIGNMENT"); + Enumeration en = properties.keys(); while(en.hasMoreElements()) { - text.append(en.nextElement()+"\n"); + String key = en.nextElement().toString(); + text.append("\t"+key+"="+properties.get(key)); } + } return text.toString(); } - public boolean readAnnotationFile(AlignmentI al, String file) + public void printGroups(Vector sequenceGroups) { - try + SequenceGroup sg; + for (int i = 0; i < sequenceGroups.size(); i++) { - BufferedReader in = null; - java.io.InputStream is = getClass().getResourceAsStream("/" + file); - if (is != null) + sg = (SequenceGroup) sequenceGroups.elementAt(i); + text.append("SEQUENCE_GROUP\t" + + sg.getName() + "\t" + + (sg.getStartRes() + 1) + "\t" + + (sg.getEndRes() + 1) + "\t" + "-1\t"); + for (int s = 0; s < sg.getSize(); s++) { - in = new BufferedReader(new java.io.InputStreamReader(is)); + text.append(sg.getSequenceAt(s).getName() + "\t"); } - else + + text.append("\nPROPERTIES\t" + sg.getName() + "\t"); + + if (sg.getDescription() != null) { - try + text.append("description=" + sg.getDescription() + "\t"); + } + if (sg.cs != null) + { + text.append("colour=" + ColourSchemeProperty.getColourName(sg.cs) + + "\t"); + if (sg.cs.getThreshold() != 0) { - URL url = new URL(file); - in = new BufferedReader(new InputStreamReader(url.openStream())); + text.append("pidThreshold=" + sg.cs.getThreshold()); } - catch (java.net.MalformedURLException ex) + if (sg.cs.conservationApplied()) { - in = new BufferedReader(new FileReader(file)); + text.append("consThreshold=" + sg.cs.getConservationInc() + "\t"); + } + } + text.append("outlineColour=" + + jalview.util.Format.getHexString(sg.getOutlineColour()) + + "\t"); + + text.append("displayBoxes=" + sg.getDisplayBoxes() + "\t"); + text.append("displayText=" + sg.getDisplayText() + "\t"); + text.append("colourText=" + sg.getColourText() + "\t"); + + if (sg.textColour != java.awt.Color.black) + { + text.append("textCol1=" + + jalview.util.Format.getHexString(sg.textColour) + "\t"); + } + if (sg.textColour2 != java.awt.Color.white) + { + text.append("textCol2=" + + jalview.util.Format.getHexString(sg.textColour2) + "\t"); + } + if (sg.thresholdTextColour != 0) + { + text.append("textColThreshold=" + sg.thresholdTextColour); + } + + text.append("\n\n"); + + } + } + + SequenceI refSeq = null; + public boolean readAnnotationFile(AlignmentI al, + String file, + String protocol) + { + try + { + BufferedReader in = null; + if (protocol.equals(AppletFormatAdapter.FILE)) + { + in = new BufferedReader(new FileReader(file)); + } + else if (protocol.equals(AppletFormatAdapter.URL)) + { + URL url = new URL(file); + in = new BufferedReader(new InputStreamReader(url.openStream())); + } + else if (protocol.equals(AppletFormatAdapter.PASTE)) + { + in = new BufferedReader(new StringReader(file)); + } + else if (protocol.equals(AppletFormatAdapter.CLASSLOADER)) + { + java.io.InputStream is = getClass().getResourceAsStream("/" + file); + if (is != null) + { + in = new BufferedReader(new java.io.InputStreamReader(is)); } } String line, label, description, token; int graphStyle, index; - SequenceI refSeq = null; int refSeqIndex = 1; int existingAnnotations = 0; - if(al.getAlignmentAnnotation()!=null) - existingAnnotations = al.getAlignmentAnnotation().length; + if (al.getAlignmentAnnotation() != null) + { + existingAnnotations = al.getAlignmentAnnotation().length; + } int alWidth = al.getWidth(); @@ -189,8 +336,10 @@ public class AnnotationFile boolean jvAnnotationFile = false; while ( (line = in.readLine()) != null) { - if (line.indexOf("#") == 0 ) + if (line.indexOf("#") == 0) + { continue; + } if (line.indexOf("JALVIEW_ANNOTATION") > -1) { @@ -199,7 +348,7 @@ public class AnnotationFile } } - if(!jvAnnotationFile) + if (!jvAnnotationFile) { in.close(); return false; @@ -207,98 +356,170 @@ public class AnnotationFile while ( (line = in.readLine()) != null) { - if(line.indexOf("#")==0 - || line.indexOf("JALVIEW_ANNOTATION")>-1 - || line.length()==0) + if (line.indexOf("#") == 0 + || line.indexOf("JALVIEW_ANNOTATION") > -1 + || line.length() == 0) + { continue; + } st = new StringTokenizer(line, "\t"); token = st.nextToken(); - if(token.equalsIgnoreCase("COLOUR")) + if (token.equalsIgnoreCase("COLOUR")) { colourAnnotations(al, st.nextToken(), st.nextToken()); continue; } - if(token.equalsIgnoreCase("COMBINE") ) + else if (token.equalsIgnoreCase("COMBINE")) { combineAnnotations(al, st); continue; } - if (token.equalsIgnoreCase("GRAPHLINE")) + else if (token.equalsIgnoreCase("GRAPHLINE")) { addLine(al, st); continue; } - - if(token.equalsIgnoreCase("SEQUENCE_REF") ) + else if (token.equalsIgnoreCase("SEQUENCE_REF")) { refSeq = al.findName(st.nextToken()); - try{ + try + { refSeqIndex = Integer.parseInt(st.nextToken()); + if (refSeqIndex < 1) + { + refSeqIndex = 1; + System.out.println( + "WARNING: SEQUENCE_REF index must be > 0 in AnnotationFile"); + } } - catch(Exception ex) + catch (Exception ex) { refSeqIndex = 1; } + continue ; + } + + else if (token.equalsIgnoreCase("SEQUENCE_GROUP")) + { + addGroup(al, st); continue; } + else if (token.equalsIgnoreCase("PROPERTIES")) + { + addProperties(al, st); + continue; + } - graphStyle = AlignmentAnnotation.getGraphValueFromString(token); - label = description = st.nextToken(); + else if( token.equalsIgnoreCase("BELOW_ALIGNMENT")) + { + setBelowAlignment(al, st); + continue; + } + else if( token.equalsIgnoreCase("ALIGNMENT")) + { + addAlignmentDetails(al, st); + continue; + } - line = st.nextToken(); + graphStyle = AlignmentAnnotation.getGraphValueFromString(token); + label = st.nextToken(); - st = new StringTokenizer(line, "|", true); - annotations = new Annotation[alWidth]; index = 0; - boolean emptyColumn = true; - + annotations = new Annotation[alWidth]; + description = null; + float score = Float.NaN; - while (st.hasMoreElements() && index-1 && j>-1) + { + UserColourScheme ucs = new UserColourScheme(); + + colour = ucs.getColourFromString(string.substring(i+1,j)); + + string = string.substring(0,i)+string.substring(j+1); + } + StringTokenizer st = new StringTokenizer(string, ","); String token; - while(st.hasMoreTokens()) + while (st.hasMoreTokens()) { token = st.nextToken().trim(); - if(token.length()==0) + if (token.length() == 0) + { continue; + } - if(!parsedValue) + if (!parsedValue) { - try{ - value = new Float(token).floatValue(); + try + { displayChar = token; + value = new Float(token).floatValue(); parsedValue = true; - }catch(NumberFormatException ex){} + continue; + } + catch (NumberFormatException ex) + {} } - if(token.equals("H") || token.equals("E")) + if (token.equals("H") || token.equals("E")) { // Either this character represents a helix or sheet // or an integer which can be displayed ss = token.charAt(0); + if (displayChar.equals(token.substring(0, 1))) + { + displayChar = ""; + } } - else if(desc.length()<1) + else if (desc == null) + { desc = token; + } } - return new Annotation(displayChar, desc, ss, value); + if (displayChar!=null + && displayChar.length() > 1 + && desc!=null + && desc.length() == 1) + { + String tmp = displayChar; + displayChar = desc; + desc = tmp; + } + + Annotation anot = new Annotation(displayChar, desc, ss, value); + + anot.colour = colour; + + return anot; } void colourAnnotations(AlignmentI al, String label, String colour) { UserColourScheme ucs = new UserColourScheme(colour); Annotation[] annotations; - for(int i=0; i= 0) + { + StringTokenizer st3 = new StringTokenizer(tmp, "-"); + + int start = (Integer.parseInt(st3.nextToken())); + int end = (Integer.parseInt(st3.nextToken())); + + if (end > start) + { + for (int i = start; i <= end; i++) + { + sg.addSequence(al.getSequenceAt(i - 1), false); + } + } + } + else + { + sg.addSequence(al.getSequenceAt(Integer.parseInt(tmp) - 1), false); + } + } + } + + + + if (refSeq != null) + { + sg.setStartRes(refSeq.findIndex(sg.getStartRes() + 1) - 1); + sg.setEndRes(refSeq.findIndex(sg.getEndRes() + 1) - 1); + } + + if (sg.getSize() > 0) + { + al.addGroup(sg); + } + } + + void addProperties(AlignmentI al, StringTokenizer st) + { + + //So far we have only added groups to the annotationHash, + //the idea is in the future properties can be added to + //alignments, other annotations etc + if (al.getGroups() == null) + { + return; + } + SequenceGroup sg = null; + + String name = st.nextToken(); + + Vector groups = al.getGroups(); + for (int i = 0; i < groups.size(); i++) + { + sg = (SequenceGroup) groups.elementAt(i); + if (sg.getName().equals(name)) + { + break; + } + else + { + sg = null; + } + } + + if (sg != null) + { + String keyValue, key, value; + while (st.hasMoreTokens()) + { + keyValue = st.nextToken(); + key = keyValue.substring(0, keyValue.indexOf("=")); + value = keyValue.substring(keyValue.indexOf("=") + 1); + + if (key.equalsIgnoreCase("description")) + { + sg.setDescription(value); + } + else if (key.equalsIgnoreCase("colour")) + { + sg.cs = ColourSchemeProperty.getColour(al, value); + } + else if (key.equalsIgnoreCase("pidThreshold")) + { + sg.cs.setThreshold(Integer.parseInt(value), true); + + } + else if (key.equalsIgnoreCase("consThreshold")) + { + sg.cs.setConservationInc(Integer.parseInt(value)); + Conservation c = new Conservation("Group", + ResidueProperties.propHash, 3, + sg.getSequences(null), + sg.getStartRes(), + sg.getEndRes() + 1); + + c.calculate(); + c.verdict(false, 25); + + sg.cs.setConservation(c); + + } + else if (key.equalsIgnoreCase("outlineColour")) + { + sg.setOutlineColour(new UserColourScheme(value).findColour('A')); + } + else if (key.equalsIgnoreCase("displayBoxes")) + { + sg.setDisplayBoxes(Boolean.valueOf(value).booleanValue()); + } + else if (key.equalsIgnoreCase("displayText")) + { + sg.setDisplayText(Boolean.valueOf(value).booleanValue()); + } + else if (key.equalsIgnoreCase("colourText")) + { + sg.setColourText(Boolean.valueOf(value).booleanValue()); + } + else if (key.equalsIgnoreCase("textCol1")) + { + sg.textColour = new UserColourScheme(value).findColour('A'); + } + else if (key.equalsIgnoreCase("textCol2")) + { + sg.textColour2 = new UserColourScheme(value).findColour('A'); + } + else if (key.equalsIgnoreCase("textColThreshold")) + { + sg.thresholdTextColour = Integer.parseInt(value); + } + + sg.recalcConservation(); + } + } + } + + void setBelowAlignment(AlignmentI al, StringTokenizer st) + { + String token; + AlignmentAnnotation aa; + while(st.hasMoreTokens()) + { + token = st.nextToken(); + for(int i=0; i