X-Git-Url: http://source.jalview.org/gitweb/?a=blobdiff_plain;f=forester%2Fjava%2Fsrc%2Forg%2Fforester%2Fsurfacing%2FPrintableSpeciesSpecificDcData.java;h=be2fcc7852ef934b493fd2deb9226ee37d16cdc8;hb=2af0eeb66b17ef94432816233efce4f976f82517;hp=92de951cfcd2ae4b4b8801e7df3dc0db7133293c;hpb=380f98efacccdaeff5a86ba6b9b05367df133b79;p=jalview.git diff --git a/forester/java/src/org/forester/surfacing/PrintableSpeciesSpecificDcData.java b/forester/java/src/org/forester/surfacing/PrintableSpeciesSpecificDcData.java index 92de951..be2fcc7 100644 --- a/forester/java/src/org/forester/surfacing/PrintableSpeciesSpecificDcData.java +++ b/forester/java/src/org/forester/surfacing/PrintableSpeciesSpecificDcData.java @@ -98,25 +98,29 @@ class PrintableSpeciesSpecificDcData implements SpeciesSpecificDcData { final StringBuffer sb = new StringBuffer(); if ( detailedness == DomainSimilarityCalculator.Detailedness.PUNCTILIOUS ) { if ( html ) { - sb.append( " " ); + //sb.append( " " ); + sb.append( "" ); } sb.append( getKeyDomainDomainsCount() ); if ( html ) { - sb.append( ", " ); + //sb.append( ", " ); + sb.append( "" ); } else { sb.append( "\t" ); } sb.append( getKeyDomainProteinsCount() ); if ( html ) { - sb.append( ", " ); + // sb.append( ", " ); + sb.append( "" ); } else { sb.append( "\t" ); } sb.append( getCombinableDomainsCount() ); - if ( html && !getCombinableDomainIdToCountsMap().isEmpty() ) { - sb.append( ":" ); + if ( html /*&& !getCombinableDomainIdToCountsMap().isEmpty()*/) { + // sb.append( ":" ); + sb.append( "" ); } } if ( html ) { @@ -148,6 +152,7 @@ class PrintableSpeciesSpecificDcData implements SpeciesSpecificDcData { sb.append( link ); } sb.append( "]" ); + sb.append( "" ); } return sb; }