X-Git-Url: http://source.jalview.org/gitweb/?a=blobdiff_plain;f=src%2Fjalview%2Fio%2FAnnotationFile.java;h=2053fef22a383f51ecbdb4a7fe95bda576698a82;hb=6a66abccec20d56e2923634fa9bf9a5fa58a62bf;hp=a7c67cd0638dd6b4520fbc588ee33cf5c02ed3f7;hpb=d70d7e5bc8da1189f44709b6ec59ea1e23f6f557;p=jalview.git diff --git a/src/jalview/io/AnnotationFile.java b/src/jalview/io/AnnotationFile.java index a7c67cd..2053fef 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,153 +20,242 @@ package jalview.io; import java.io.*; -import jalview.datamodel.*; +import java.net.*; import java.util.*; -import java.net.URL; -import jalview.schemes.*; +import jalview.analysis.*; +import jalview.datamodel.*; +import jalview.schemes.*; public class AnnotationFile { - - public String printAnnotations(AlignmentAnnotation [] annotations) - { - StringBuffer text = new StringBuffer( + StringBuffer text = new StringBuffer( "JALVIEW_ANNOTATION\n" - +"# Created: " - +new java.util.Date()+"\n\n"); + + "# Created: " + + new java.util.Date() + "\n\n"); - AlignmentAnnotation row; - String comma; - SequenceI seqref = null; - - StringBuffer colours = new StringBuffer(); - StringBuffer graphLine = new StringBuffer(); + public String printAnnotations(AlignmentAnnotation[] annotations, + Vector groups) + { + if (annotations != null) + { + AlignmentAnnotation row; + String comma; + SequenceI seqref = null; - Hashtable graphGroup = new Hashtable(); + StringBuffer colours = new StringBuffer(); + StringBuffer graphLine = new StringBuffer(); - java.awt.Color color; + Hashtable graphGroup = new Hashtable(); - 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"); - if(row.description!=null) - text.append(row.description+"\t"); + } - for(int j=0; j 0 - && !row.annotations[j].displayCharacter.equals(" ")) - { - text.append(comma + row.annotations[j].displayCharacter); - comma = ","; - } - if (row.annotations[j]!=null) + if (row.annotations[j] != null) { - color = row.annotations[j].colour; - if (row.annotations[j].value!=0f) - 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.length() > 0 + && !row.annotations[j].displayCharacter.equals(" ")) + { + text.append(comma + row.annotations[j].displayCharacter); + comma = ","; + } + + if (row.annotations[j] != null) + { + color = row.annotations[j].colour; + if (row.annotations[j].value != 0f) + { + text.append(comma + row.annotations[j].value); + } + } } + text.append("|"); } - text.append("|"); + + text.append("\n"); + + if (color != null && color != java.awt.Color.black) + { + colours.append("COLOUR\t" + + row.label + "\t" + + jalview.util.Format.getHexString(color) + "\n"); + } + } 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"); + } } + } + if (groups != null) + { + printGroups(groups); } - text.append("\n"); + return text.toString(); + } - text.append(colours.toString()); - text.append(graphLine.toString()); - if(graphGroup.size()>0) + public void printGroups(Vector sequenceGroups) + { + SequenceGroup sg; + for (int i = 0; i < sequenceGroups.size(); i++) { - text.append("COMBINE\t"); - Enumeration en = graphGroup.elements(); - while(en.hasMoreElements()) + 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++) { - text.append(en.nextElement()+"\n"); + text.append(sg.getSequenceAt(s).getName() + "\t"); } - } - return text.toString(); - } + text.append("\nPROPERTIES\t" + sg.getName() + "\t"); + + if (sg.getDescription() != null) + { + text.append("description=" + sg.getDescription() + "\t"); + } + if (sg.cs != null) + { + text.append("colour=" + ColourSchemeProperty.getColourName(sg.cs) + + "\t"); + if (sg.cs.getThreshold() != 0) + { + text.append("pidThreshold=" + sg.cs.getThreshold()); + } + if (sg.cs.conservationApplied()) + { + 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; - Hashtable annotationsHash = new Hashtable(); public boolean readAnnotationFile(AlignmentI al, String file, String protocol) @@ -183,7 +272,7 @@ public class AnnotationFile URL url = new URL(file); in = new BufferedReader(new InputStreamReader(url.openStream())); } - else if (protocol.equals(AppletFormatAdapter.PASTE)) + else if (protocol.equals(AppletFormatAdapter.PASTE)) { in = new BufferedReader(new StringReader(file)); } @@ -194,14 +283,16 @@ public class AnnotationFile { in = new BufferedReader(new java.io.InputStreamReader(is)); } - } + } String line, label, description, token; int graphStyle, index; 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(); @@ -213,8 +304,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) { @@ -223,7 +316,7 @@ public class AnnotationFile } } - if(!jvAnnotationFile) + if (!jvAnnotationFile) { in.close(); return false; @@ -231,20 +324,22 @@ 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; } - else if(token.equalsIgnoreCase("COMBINE") ) + else if (token.equalsIgnoreCase("COMBINE")) { combineAnnotations(al, st); continue; @@ -256,46 +351,51 @@ public class AnnotationFile continue; } - - else 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) + if (refSeqIndex < 1) { refSeqIndex = 1; - System.out.println("WARNING: SEQUENCE_REF index must be > 0 in AnnotationFile"); + System.out.println( + "WARNING: SEQUENCE_REF index must be > 0 in AnnotationFile"); } } - catch(Exception ex) + catch (Exception ex) { refSeqIndex = 1; + refSeq=null; } - continue; + continue ; } - else if(token.equalsIgnoreCase("SEQUENCE_GROUP")) + else if (token.equalsIgnoreCase("SEQUENCE_GROUP")) { addGroup(al, st); continue; } - else if(token.equalsIgnoreCase("PROPERTIES")) + else if (token.equalsIgnoreCase("PROPERTIES")) { addProperties(al, st); continue; } - graphStyle = AlignmentAnnotation.getGraphValueFromString(token); label = st.nextToken(); - if(st.countTokens()>1) + if (st.countTokens() > 1) + { description = st.nextToken(); + } else + { description = null; + } line = st.nextToken(); @@ -305,14 +405,15 @@ public class AnnotationFile index = 0; boolean emptyColumn = true; - - while (st.hasMoreElements() && index1 && desc.length()==1) + if (displayChar.length() > 1 && desc.length() == 1) { String tmp = displayChar; displayChar = desc; @@ -404,15 +520,17 @@ public class AnnotationFile { UserColourScheme ucs = new UserColourScheme(colour); Annotation[] annotations; - for(int i=0; i start) + { for (int i = start; i <= end; i++) - sg.addSequence(al.getSequenceAt(i-1), false); + { + sg.addSequence(al.getSequenceAt(i - 1), false); + } + } } else { - sg.addSequence(al.getSequenceAt(Integer.parseInt(tmp)-1 ), false); + sg.addSequence(al.getSequenceAt(Integer.parseInt(tmp) - 1), false); } } } - if(refSeq!=null) + if (refSeq != null) { - sg.setStartRes( refSeq.findIndex( sg.getStartRes()+1 )-1 ); - sg.setEndRes( refSeq.findIndex( sg.getEndRes() +1) -1 ); + sg.setStartRes(refSeq.findIndex(sg.getStartRes() + 1) - 1); + sg.setEndRes(refSeq.findIndex(sg.getEndRes() + 1) - 1); } - - al.addGroup(sg); - annotationsHash.put(sg.getName(), sg); + if (sg.getSize() > 0) + { + al.addGroup(sg); + } } void addProperties(AlignmentI al, StringTokenizer st) @@ -540,46 +665,95 @@ public class AnnotationFile //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 - SequenceGroup sg = (SequenceGroup)annotationsHash.get(st.nextToken()); + if (al.getGroups() == null) + { + return; + } + SequenceGroup sg = null; + + String name = st.nextToken(); - if(sg!=null) + 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()) + while (st.hasMoreTokens()) { keyValue = st.nextToken(); - key = keyValue.substring(0,keyValue.indexOf("=")); - value=keyValue.substring(keyValue.indexOf("=")+1); + key = keyValue.substring(0, keyValue.indexOf("=")); + value = keyValue.substring(keyValue.indexOf("=") + 1); - if(key.equalsIgnoreCase("description")) + if (key.equalsIgnoreCase("description")) + { sg.setDescription(value); - else if(key.equalsIgnoreCase("colour")) + } + else if (key.equalsIgnoreCase("colour")) + { sg.cs = ColourSchemeProperty.getColour(al, value); + } else if (key.equalsIgnoreCase("pidThreshold")) - sg.cs.setThreshold(Integer.parseInt(value), false);// - else if (key.equalsIgnoreCase("outlineColour")) - { - sg.setOutlineColour(new UserColourScheme(value).findColour('A')); - } + { + 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); - //Boolean.valueOf(string).booleanValue(); + 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() ); + { + sg.setDisplayBoxes(Boolean.valueOf(value).booleanValue()); + } else if (key.equalsIgnoreCase("displayText")) - sg.setDisplayText( Boolean.valueOf(value).booleanValue() ); + { + sg.setDisplayText(Boolean.valueOf(value).booleanValue()); + } else if (key.equalsIgnoreCase("colourText")) - sg.setColourText( Boolean.valueOf(value).booleanValue() ); + { + sg.setColourText(Boolean.valueOf(value).booleanValue()); + } else if (key.equalsIgnoreCase("textCol1")) - { - sg.textColour = new UserColourScheme(value).findColour('A'); - } + { + 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.thresholdTextColour = Integer.parseInt(value); + } + sg.recalcConservation(); } } }