Skip to content
Snippets Groups Projects
Commit 0ff4ae94 authored by tjc's avatar tjc
Browse files

fix user plots tokenizing

git-svn-id: svn+ssh://svn.internal.sanger.ac.uk/repos/svn/pathsoft/artemis/trunk@2408 ee4ac58c-ac51-4696-9907-e4b3aa274f04
parent e3af4ec2
No related branches found
No related tags found
No related merge requests found
...@@ -20,7 +20,7 @@ ...@@ -20,7 +20,7 @@
* along with this program; if not, write to the Free Software * along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
* *
* $Header: //tmp/pathsoft/artemis/uk/ac/sanger/artemis/plot/UserDataAlgorithm.java,v 1.1 2004-06-09 09:51:37 tjc Exp $ * $Header: //tmp/pathsoft/artemis/uk/ac/sanger/artemis/plot/UserDataAlgorithm.java,v 1.2 2005-04-22 13:32:40 tjc Exp $
*/ */
package uk.ac.sanger.artemis.plot; package uk.ac.sanger.artemis.plot;
...@@ -39,7 +39,7 @@ import java.io.*; ...@@ -39,7 +39,7 @@ import java.io.*;
* set in the constructor. * set in the constructor.
* *
* @author Kim Rutherford <kmr@sanger.ac.uk> * @author Kim Rutherford <kmr@sanger.ac.uk>
* @version $Id: UserDataAlgorithm.java,v 1.1 2004-06-09 09:51:37 tjc Exp $ * @version $Id: UserDataAlgorithm.java,v 1.2 2005-04-22 13:32:40 tjc Exp $
**/ **/
public class UserDataAlgorithm extends BaseAlgorithm { public class UserDataAlgorithm extends BaseAlgorithm {
...@@ -59,7 +59,7 @@ public class UserDataAlgorithm extends BaseAlgorithm { ...@@ -59,7 +59,7 @@ public class UserDataAlgorithm extends BaseAlgorithm {
final String first_line = pushback_reader.readLine (); final String first_line = pushback_reader.readLine ();
final StringVector tokens = StringVector.getStrings (first_line, " \t"); final StringVector tokens = StringVector.getStrings (first_line, " ");
if (tokens.size () < 1) { if (tokens.size () < 1) {
throw new ReadFormatException ("unknown file type"); throw new ReadFormatException ("unknown file type");
...@@ -89,7 +89,7 @@ public class UserDataAlgorithm extends BaseAlgorithm { ...@@ -89,7 +89,7 @@ public class UserDataAlgorithm extends BaseAlgorithm {
throw new ReadFormatException ("too many values in input file"); throw new ReadFormatException ("too many values in input file");
} }
final StringVector tokens = StringVector.getStrings (line, " \t"); final StringVector tokens = StringVector.getStrings (line, " ");
final int read_base; final int read_base;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment