JAL-2852 added framework for saving as EPS file
[jalview.git] / forester / java / src / org / forester / archaeopteryx / tools / SequenceDataRetriver.java
index a805a43..1cd6b54 100644 (file)
@@ -38,11 +38,10 @@ import org.forester.ws.seqdb.SequenceDbWsTools;
 
 public final class SequenceDataRetriver extends RunnableProcess {
 
-    private final static int           DEFAULT_LINES_TO_RETURN = 4000;
     private final Phylogeny            _phy;
     private final MainFrameApplication _mf;
     private final TreePanel            _treepanel;
-    public final static boolean        DEBUG                   = false;
+    public final static boolean        DEBUG = false;
 
     public SequenceDataRetriver( final MainFrameApplication mf, final TreePanel treepanel, final Phylogeny phy ) {
         _phy = phy;
@@ -59,7 +58,10 @@ public final class SequenceDataRetriver extends RunnableProcess {
         start( _mf, "sequence data" );
         SortedSet<String> not_found = null;
         try {
-            not_found = SequenceDbWsTools.obtainSeqInformation( _phy, false, true, DEFAULT_LINES_TO_RETURN );
+            not_found = SequenceDbWsTools.obtainSeqInformation( _phy,
+                                                                false,
+                                                                true,
+                                                                SequenceDbWsTools.DEFAULT_LINES_TO_RETURN );
         }
         catch ( final UnknownHostException e ) {
             JOptionPane.showMessageDialog( _mf,
@@ -94,7 +96,7 @@ public final class SequenceDataRetriver extends RunnableProcess {
                 sb.append( "For the following node no data was found:\n" );
             }
             else {
-                sb.append( "For the following nodes no data was found: (total: " + not_found.size() + "):\n" );
+                sb.append( "For the following nodes no data was found (total: " + not_found.size() + "):\n" );
             }
             int i = 0;
             for( final String string : not_found ) {
@@ -115,7 +117,7 @@ public final class SequenceDataRetriver extends RunnableProcess {
                                                JOptionPane.WARNING_MESSAGE );
             }
             catch ( final Exception e ) {
-                // Not important if this fails, do nothing. 
+                // Not important if this fails, do nothing.
             }
         }
         else {