X-Git-Url: http://source.jalview.org/gitweb/?a=blobdiff_plain;f=src%2Fjalview%2Fio%2FSequenceAnnotationReport.java;h=3a7ee65defabe116cf0a68a17f606a774e74fb85;hb=b8cd52fe7bed59130e5b080acfd42c3ef2effdbb;hp=07cfa8bc89e08a3ec36b4a9ff9d30aec5a93a2a3;hpb=be32c14cd8e48fe0a207cd7030cb9cd46f894678;p=jalview.git diff --git a/src/jalview/io/SequenceAnnotationReport.java b/src/jalview/io/SequenceAnnotationReport.java index 07cfa8b..3a7ee65 100644 --- a/src/jalview/io/SequenceAnnotationReport.java +++ b/src/jalview/io/SequenceAnnotationReport.java @@ -20,17 +20,23 @@ */ package jalview.io; - -import java.util.ArrayList; -import java.util.Hashtable; -import java.util.List; -import java.util.Vector; - import jalview.datamodel.DBRefEntry; +import jalview.datamodel.DBRefSource; +import jalview.datamodel.DynamicData; +import jalview.datamodel.PDBEntry; import jalview.datamodel.SequenceFeature; import jalview.datamodel.SequenceI; +import jalview.io.gff.GffConstants; +import jalview.util.MessageManager; import jalview.util.UrlLink; +import java.util.Arrays; +import java.util.Collection; +import java.util.Comparator; +import java.util.LinkedHashMap; +import java.util.List; +import java.util.Map; + /** * generate HTML reports for a sequence * @@ -38,313 +44,313 @@ import jalview.util.UrlLink; */ public class SequenceAnnotationReport { + private static final String COMMA = ","; + + private static final String ELLIPSIS = "..."; + + private static final int MAX_REFS_PER_SOURCE = 4; + + private static final int MAX_SOURCES = 40; + + private static final String[][] PRIMARY_SOURCES = new String[][] { + DBRefSource.CODINGDBS, DBRefSource.DNACODINGDBS, + DBRefSource.PROTEINDBS }; + final String linkImageURL; + /* + * Comparator to order DBRefEntry by Source + accession id (case-insensitive) + */ + private static Comparator comparator = new Comparator() + { + + @Override + public int compare(DBRefEntry ref1, DBRefEntry ref2) + { + String s1 = ref1.getSource(); + String s2 = ref2.getSource(); + boolean s1Primary = isPrimarySource(s1); + boolean s2Primary = isPrimarySource(s2); + if (s1Primary && !s2Primary) + { + return -1; + } + if (!s1Primary && s2Primary) + { + return 1; + } + int comp = s1 == null ? -1 : (s2 == null ? 1 : s1 + .compareToIgnoreCase(s2)); + if (comp == 0) + { + String a1 = ref1.getAccessionId(); + String a2 = ref2.getAccessionId(); + comp = a1 == null ? -1 : (a2 == null ? 1 : a1 + .compareToIgnoreCase(a2)); + } + return comp; + } + + private boolean isPrimarySource(String source) + { + for (String[] primary : PRIMARY_SOURCES) + { + for (String s : primary) + { + if (source.equals(s)) + { + return true; + } + } + } + return false; + } + }; + public SequenceAnnotationReport(String linkImageURL) { this.linkImageURL = linkImageURL; } /** - * appends the features at rpos to the given stringbuffer ready for display in - * a tooltip + * Append text for the list of features to the tooltip * - * @param tooltipText2 - * @param linkImageURL + * @param sb * @param rpos * @param features - * TODO refactor to Jalview 'utilities' somehow. + * @param minmax */ - public void appendFeatures(final StringBuffer tooltipText2, int rpos, - List features) + public void appendFeatures(final StringBuilder sb, int rpos, + List features, Map minmax) { - appendFeatures(tooltipText2, rpos, features, null); + if (features != null) + { + for (SequenceFeature feature : features) + { + appendFeature(sb, rpos, minmax, feature); + } + } } - public void appendFeatures(final StringBuffer tooltipText2, int rpos, - List features, Hashtable minmax) + /** + * Appends the feature at rpos to the given buffer + * + * @param sb + * @param rpos + * @param minmax + * @param feature + */ + void appendFeature(final StringBuilder sb, int rpos, + Map minmax, SequenceFeature feature) { - String tmpString; - if (features != null) + if (feature.isContactFeature()) { - for (SequenceFeature feature:features) + if (feature.getBegin() == rpos || feature.getEnd() == rpos) { - if (feature.getType().equals("disulfide bond")) + if (sb.length() > 6) { - if (feature.getBegin() == rpos - || feature.getEnd() == rpos) - { - if (tooltipText2.length() > 6) - { - tooltipText2.append("
"); - } - tooltipText2.append("disulfide bond " + feature.getBegin() - + ":" + feature.getEnd()); - } + sb.append("
"); } - else + sb.append(feature.getType()).append(" ").append(feature.getBegin()) + .append(":") + .append(feature.getEnd()); + } + } + else + { + if (sb.length() > 6) + { + sb.append("
"); + } + // TODO: remove this hack to display link only features + boolean linkOnly = feature.getValue("linkonly") != null; + if (!linkOnly) + { + sb.append(feature.getType()).append(" "); + if (rpos != 0) + { + // we are marking a positional feature + sb.append(feature.begin); + } + if (feature.begin != feature.end) + { + sb.append(" ").append(feature.end); + } + + if (feature.getDescription() != null + && !feature.description.equals(feature.getType())) { - if (tooltipText2.length() > 6) + String tmpString = feature.getDescription(); + String tmp2up = tmpString.toUpperCase(); + int startTag = tmp2up.indexOf(""); + if (startTag > -1) { - tooltipText2.append("
"); + tmpString = tmpString.substring(startTag + 6); + tmp2up = tmp2up.substring(startTag + 6); } - // TODO: remove this hack to display link only features - boolean linkOnly = feature.getValue("linkonly") != null; - if (!linkOnly) + int endTag = tmp2up.indexOf(""); + if (endTag > -1) { - tooltipText2.append(feature.getType() + " "); - if (rpos != 0) - { - // we are marking a positional feature - tooltipText2.append(feature.begin); - } - if (feature.begin != feature.end) - { - tooltipText2.append(" " + feature.end); - } + tmpString = tmpString.substring(0, endTag); + tmp2up = tmp2up.substring(0, endTag); + } + endTag = tmp2up.indexOf(""); + if (endTag > -1) + { + tmpString = tmpString.substring(0, endTag); + } - if (feature.getDescription() != null - && !feature.description.equals(feature - .getType())) + if (startTag > -1) + { + sb.append("; ").append(tmpString); + } + else + { + if (tmpString.indexOf("<") > -1 || tmpString.indexOf(">") > -1) { - tmpString = feature.getDescription(); - String tmp2up = tmpString.toUpperCase(); - int startTag = tmp2up.indexOf(""); - if (startTag > -1) - { - tmpString = tmpString.substring(startTag + 6); - tmp2up = tmp2up.substring(startTag + 6); - } - int endTag = tmp2up.indexOf(""); - if (endTag > -1) - { - tmpString = tmpString.substring(0, endTag); - tmp2up = tmp2up.substring(0, endTag); - } - endTag = tmp2up.indexOf(""); - if (endTag > -1) - { - tmpString = tmpString.substring(0, endTag); - } - - if (startTag > -1) - { - tooltipText2.append("; " + tmpString); - } - else - { - if (tmpString.indexOf("<") > -1 - || tmpString.indexOf(">") > -1) - { - // The description does not specify html is to - // be used, so we must remove < > symbols - tmpString = tmpString.replaceAll("<", "<"); - tmpString = tmpString.replaceAll(">", ">"); - - tooltipText2.append("; "); - tooltipText2.append(tmpString); + // The description does not specify html is to + // be used, so we must remove < > symbols + tmpString = tmpString.replaceAll("<", "<"); + tmpString = tmpString.replaceAll(">", ">"); - } - else - { - tooltipText2.append("; " + tmpString); - } - } + sb.append("; "); + sb.append(tmpString); } - // check score should be shown - if (feature.getScore() != Float.NaN) + else { - float[][] rng = (minmax == null) ? null : ((float[][]) minmax - .get(feature.getType())); - if (rng != null && rng[0] != null && rng[0][0] != rng[0][1]) - { - tooltipText2.append(" Score=" + feature.getScore()); - } - } - if (feature.getValue("status") != null) - { - String status = feature.getValue("status").toString(); - if (status.length() > 0) - { - tooltipText2.append("; (" + feature.getValue("status") - + ")"); - } + sb.append("; ").append(tmpString); } } } - if (feature.links != null) + // check score should be shown + if (!Float.isNaN(feature.getScore())) { - if (linkImageURL != null) + float[][] rng = (minmax == null) ? null : minmax.get(feature + .getType()); + if (rng != null && rng[0] != null && rng[0][0] != rng[0][1]) { - tooltipText2.append(" "); + sb.append(" Score=").append(String.valueOf(feature.getScore())); } - else - { - for (String urlstring : (Vector) feature.links) - { - try - { - for (String[] urllink : createLinksFrom(null, urlstring)) - { - tooltipText2.append("
" - + (urllink[0].toLowerCase().equals( - urllink[1].toLowerCase()) ? urllink[0] - : (urllink[0] + ":" + urllink[1])) - + "
"); - } - } catch (Exception x) - { - System.err.println("problem when creating links from " - + urlstring); - x.printStackTrace(); - } - } - } - + } + String status = (String) feature.getValue("status"); + if (status != null && status.length() > 0) + { + sb.append("; (").append(status).append(")"); + } + String clinSig = (String) feature + .getValue(GffConstants.CLINICAL_SIGNIFICANCE); + if (clinSig != null) + { + sb.append("; ").append(clinSig); } } } } /** + * Format and appends any hyperlinks for the sequence feature to the string + * buffer * - * @param seq - * @param link - * @return String[][] { String[] { link target, link label, dynamic component - * inserted (if any), url }} + * @param sb + * @param feature */ - public String[][] createLinksFrom(SequenceI seq, String link) + void appendLinks(final StringBuffer sb, SequenceFeature feature) { - ArrayList urlSets = new ArrayList(); - ArrayList uniques = new ArrayList(); - UrlLink urlLink = new UrlLink(link); - if (!urlLink.isValid()) + if (feature.links != null) { - System.err.println(urlLink.getInvalidMessage()); - return null; - } - final String target = urlLink.getTarget(); // link.substring(0, - // link.indexOf("|")); - final String label = urlLink.getLabel(); - if (seq != null && urlLink.isDynamic()) - { - - // collect matching db-refs - DBRefEntry[] dbr = jalview.util.DBRefUtils.selectRefs(seq.getDBRef(), - new String[] - { target }); - // collect id string too - String id = seq.getName(); - String descr = seq.getDescription(); - if (descr != null && descr.length() < 1) - { - descr = null; - } - if (dbr != null) + if (linkImageURL != null) { - for (int r = 0; r < dbr.length; r++) - { - if (id != null && dbr[r].getAccessionId().equals(id)) - { - // suppress duplicate link creation for the bare sequence ID - // string with this link - id = null; - } - // create Bare ID link for this RUL - String[] urls = urlLink.makeUrls(dbr[r].getAccessionId(), true); - if (urls != null) - { - for (int u = 0; u < urls.length; u += 2) - { - String unq = urls[u] + "|" + urls[u + 1]; - if (!uniques.contains(unq)) - { - urlSets.add(new String[] - { target, label, urls[u], urls[u + 1] }); - uniques.add(unq); - } - } - } - } + sb.append(" "); } - if (id != null) + else { - // create Bare ID link for this RUL - String[] urls = urlLink.makeUrls(id, true); - if (urls != null) + for (String urlstring : feature.links) { - for (int u = 0; u < urls.length; u += 2) + try { - String unq = urls[u] + "|" + urls[u + 1]; - if (!uniques.contains(unq)) + for (List urllink : createLinksFrom(null, urlstring)) { - urlSets.add(new String[] - { target, label, urls[u], urls[u + 1] }); - uniques.add(unq); + sb.append("
" + + (urllink.get(0).toLowerCase() + .equals(urllink.get(1).toLowerCase()) ? urllink + .get(0) : (urllink.get(0) + ":" + urllink + .get(1))) + + "
"); } - } - } - } - if (descr != null && urlLink.getRegexReplace() != null) - { - // create link for this URL from description only if regex matches - String[] urls = urlLink.makeUrls(descr, true); - if (urls != null) - { - for (int u = 0; u < urls.length; u += 2) + } catch (Exception x) { - String unq = urls[u] + "|" + urls[u + 1]; - if (!uniques.contains(unq)) - { - urlSets.add(new String[] - { target, label, urls[u], urls[u + 1] }); - uniques.add(unq); - } + System.err.println("problem when creating links from " + + urlstring); + x.printStackTrace(); } } } } - else + } + + /** + * + * @param seq + * @param link + * @return Collection< List > { List { link target, link + * label, dynamic component inserted (if any), url }} + */ + Collection> createLinksFrom(SequenceI seq, String link) + { + Map> urlSets = new LinkedHashMap>(); + UrlLink urlLink = new UrlLink(link); + if (!urlLink.isValid()) { - String unq = label + "|" + urlLink.getUrl_prefix(); - if (!uniques.contains(unq)) - { - uniques.add(unq); - // Add a non-dynamic link - urlSets.add(new String[] - { target, label, null, urlLink.getUrl_prefix() }); - } + System.err.println(urlLink.getInvalidMessage()); + return null; } - return urlSets.toArray(new String[][] - {}); + urlLink.createLinksFromSeq(seq, urlSets); + + return urlSets.values(); } - public void createSequenceAnnotationReport(final StringBuffer tip, + public void createSequenceAnnotationReport(final StringBuilder tip, SequenceI sequence, boolean showDbRefs, boolean showNpFeats, - Hashtable minmax) + Map minmax) { createSequenceAnnotationReport(tip, sequence, showDbRefs, showNpFeats, - true, minmax); + minmax, false); } - public void createSequenceAnnotationReport(final StringBuffer tip, + /** + * Builds an html formatted report of sequence details and appends it to the + * provided buffer. + * + * @param sb + * buffer to append report to + * @param sequence + * the sequence the report is for + * @param showDbRefs + * whether to include database references for the sequence + * @param showNpFeats + * whether to include non-positional sequence features + * @param minmax + * @param summary + * @return + */ + int createSequenceAnnotationReport(final StringBuilder sb, SequenceI sequence, boolean showDbRefs, boolean showNpFeats, - boolean tableWrap, Hashtable minmax) + Map minmax, boolean summary) { String tmp; - tip.append(""); + sb.append(""); int maxWidth = 0; if (sequence.getDescription() != null) { tmp = sequence.getDescription(); - tip.append("
" + tmp); + sb.append("
").append(tmp); maxWidth = Math.max(maxWidth, tmp.length()); } SequenceI ds = sequence; @@ -352,19 +358,84 @@ public class SequenceAnnotationReport { ds = ds.getDatasetSequence(); } - DBRefEntry[] dbrefs = ds.getDBRef(); + DBRefEntry[] dbrefs = ds.getDBRefs(); if (showDbRefs && dbrefs != null) { - for (int i = 0; i < dbrefs.length; i++) + // note this sorts the refs held on the sequence! + Arrays.sort(dbrefs, comparator); + boolean ellipsis = false; + String source = null; + String lastSource = null; + int countForSource = 0; + int sourceCount = 0; + boolean moreSources = false; + int lineLength = 0; + + for (DBRefEntry ref : dbrefs) + { + source = ref.getSource(); + if (source == null) + { + // shouldn't happen + continue; + } + boolean sourceChanged = !source.equals(lastSource); + if (sourceChanged) + { + lineLength = 0; + countForSource = 0; + sourceCount++; + } + if (sourceCount > MAX_SOURCES && summary) + { + ellipsis = true; + moreSources = true; + break; + } + lastSource = source; + countForSource++; + if (countForSource == 1 || !summary) + { + sb.append("
"); + } + if (countForSource <= MAX_REFS_PER_SOURCE || !summary) + { + String accessionId = ref.getAccessionId(); + lineLength += accessionId.length() + 1; + if (countForSource > 1 && summary) + { + sb.append(", ").append(accessionId); + lineLength++; + } + else + { + sb.append(source).append(" ").append(accessionId); + lineLength += source.length(); + } + maxWidth = Math.max(maxWidth, lineLength); + } + if (countForSource == MAX_REFS_PER_SOURCE && summary) + { + sb.append(COMMA).append(ELLIPSIS); + ellipsis = true; + } + } + if (moreSources) { - tip.append("
"); - tmp = dbrefs[i].getSource() + " " + dbrefs[i].getAccessionId(); - tip.append(tmp); - maxWidth = Math.max(maxWidth, tmp.length()); + sb.append("
").append(ELLIPSIS).append(COMMA).append(source) + .append(COMMA).append(ELLIPSIS); + } + if (ellipsis) + { + sb.append("
("); + sb.append(MessageManager.getString("label.output_seq_details")); + sb.append(")"); } } - // ADD NON POSITIONAL SEQUENCE INFO + /* + * add non-positional features if wanted + */ SequenceFeature[] features = sequence.getSequenceFeatures(); if (showNpFeats && features != null) { @@ -372,21 +443,93 @@ public class SequenceAnnotationReport { if (features[i].begin == 0 && features[i].end == 0) { - int sz = -tip.length(); - List tfeat = new ArrayList(); - tfeat.add(features[i]); - appendFeatures(tip, 0, tfeat, minmax); - sz += tip.length(); + int sz = -sb.length(); + appendFeature(sb, 0, minmax, features[i]); + sz += sb.length(); maxWidth = Math.max(maxWidth, sz); } } } + sb.append("
"); + List pdbEntries = ds.getAllPDBEntries(); + sb.append(getToolTipTextFromPDBEntries(pdbEntries)); + return maxWidth; + } + + private String getToolTipTextFromPDBEntries(List pdbEntries) + { + String tooltip = ""; + if (pdbEntries.isEmpty()) + { + return tooltip; + } + if (pdbEntries.size() > 1) + { + int x = 0; + PDBEntry bestRanked = null; + for (PDBEntry pdb : pdbEntries) + { + if (pdb.getProperty("DYNAMIC_DATA_PHYRE2") != null) + { + x++; + } + // best ranked entry must be from a Phyre + if (x > 0 && bestRanked == null) + { + bestRanked = pdb; + } + } + tooltip = (x > 0) ? "" + + "
Contains " + + x + + " Phyre2 model structure(s)
Best ranked Phyre2 model is " + + bestRanked.getId() + "
" + : ""; + } + else + { + PDBEntry pdb = pdbEntries.iterator().next(); + if (pdb.getProperty("DYNAMIC_DATA_PHYRE2") != null) + { + tooltip = getPhyreToolTipFromDynamicData((List) pdb + .getProperty("DYNAMIC_DATA_PHYRE2")); + } + } + return tooltip; + } - if (tableWrap && maxWidth > 60) + private String getPhyreToolTipFromDynamicData( + List dynamicDataList) + { + StringBuilder phyre2InfoBuilder = new StringBuilder(); + phyre2InfoBuilder + .append("") + .append(""); + for (DynamicData data : dynamicDataList) { - tip.insert(0, "
Phyre2 Template Info
"); - tip.append("
"); + if (data.isDisplay()) + { + phyre2InfoBuilder.append("").append(data.getFieldTitle()) + .append("").append(data.getFieldValue()) + .append(""); + } } + phyre2InfoBuilder.append(""); + return phyre2InfoBuilder.toString(); + } + public void createTooltipAnnotationReport(final StringBuilder tip, + SequenceI sequence, boolean showDbRefs, boolean showNpFeats, + Map minmax) + { + int maxWidth = createSequenceAnnotationReport(tip, sequence, + showDbRefs, showNpFeats, minmax, true); + + if (maxWidth > 60) + { + // ? not sure this serves any useful purpose + // tip.insert(0, "
"); + // tip.append("
"); + } } }