Changes to AssessNA12878 to allow for 100s of input callsets to assess against the database.

This commit is contained in:
Ryan Poplin 2012-12-05 15:52:57 -05:00
parent 0c925856cb
commit 234ff64556
1 changed files with 1 additions and 1 deletions

View File

@ -343,7 +343,7 @@ public class GATKReport {
GATKReportTable table = tables.firstEntry().getValue();
if ( table.getNumColumns() != values.length )
throw new ReviewedStingException("The number of arguments in writeRow() " + values.length + " must match the number of columns in the table" + table.getNumColumns());
throw new ReviewedStingException("The number of arguments in writeRow (" + values.length + ") must match the number of columns in the table (" + table.getNumColumns() + ")" );
final int rowIndex = table.getNumRows();
for ( int i = 0; i < values.length; i++ )