X-Git-Url: http://source.jalview.org/gitweb/?a=blobdiff_plain;f=forester%2Fjava%2Fsrc%2Forg%2Fforester%2Fio%2Fparsers%2FSymmetricalDistanceMatrixParser.java;h=0bdafe1187cfc48a4f1da5da04587643f6830355;hb=6062dfb954cafb6af22e01af89222888d9d5ba66;hp=538257c31caac04da8299c23f6746a8d454d59d6;hpb=c4cf3c01b3cbb89d98f29418444287ca8703a781;p=jalview.git diff --git a/forester/java/src/org/forester/io/parsers/SymmetricalDistanceMatrixParser.java b/forester/java/src/org/forester/io/parsers/SymmetricalDistanceMatrixParser.java index 538257c..0bdafe1 100644 --- a/forester/java/src/org/forester/io/parsers/SymmetricalDistanceMatrixParser.java +++ b/forester/java/src/org/forester/io/parsers/SymmetricalDistanceMatrixParser.java @@ -22,7 +22,7 @@ // Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA // // Contact: phylosoft @ gmail . com -// WWW: www.phylosoft.org/forester +// WWW: https://sites.google.com/site/cmzmasek/home/software/forester package org.forester.io.parsers; @@ -55,7 +55,7 @@ public class SymmetricalDistanceMatrixParser { private final static InputMatrixType INPUT_MATRIX_TYPE_DEFAULT = InputMatrixType.LOWER_TRIANGLE; private final static String COMMENT = "#"; - private final static String VALUE_SEPARATOR = " "; + private final static char VALUE_SEPARATOR = ' '; private int _matrix_size; private InputMatrixType _input_matrix_type; @@ -142,7 +142,7 @@ public class SymmetricalDistanceMatrixParser { throw new IOException( "illegal format for distance [" + table_value + "] at [" + ( col - 1 ) + ", " + row + "]" ); } - distance_matrix.setValue( col - 1 + col_offset, row, d ); + distance_matrix.setValue( ( col - 1 ) + col_offset, row, d ); } private DistanceMatrix transform( final BasicTable table ) throws IllegalArgumentException, IOException { @@ -154,7 +154,7 @@ public class SymmetricalDistanceMatrixParser { if ( table.getNumberOfColumns() == table.getNumberOfRows() ) { first_line_is_size = true; } - else if ( table.getNumberOfColumns() != table.getNumberOfRows() + 1 ) { + else if ( table.getNumberOfColumns() != ( table.getNumberOfRows() + 1 ) ) { throw new IllegalArgumentException( "attempt to create distance matrix with illegal dimensions [columns: " + table.getNumberOfColumns() + ", rows: " + table.getNumberOfRows() + "]" ); } @@ -163,7 +163,7 @@ public class SymmetricalDistanceMatrixParser { if ( first_line_is_size ) { start_row = 1; } - for( int row = 0; row < table.getNumberOfRows() - start_row; row++ ) { + for( int row = 0; row < ( table.getNumberOfRows() - start_row ); row++ ) { distance_matrix.setIdentifier( row, table.getValue( 0, row + start_row ) ); switch ( getInputMatrixType() ) { case LOWER_TRIANGLE: