Fix old error message

This commit is contained in:
Eric Banks 2012-03-12 22:56:08 -04:00
parent 2314787767
commit 10995d349e
1 changed files with 1 additions and 1 deletions

View File

@ -317,7 +317,7 @@ public class UnifiedGenotyper extends LocusWalker<VariantCallContext, UnifiedGen
sum.nCallsMade++;
writer.add(value);
} catch (IllegalArgumentException e) {
throw new IllegalArgumentException(e.getMessage() + "; this is often caused by using the --assume_single_sample_reads argument with the wrong sample name");
throw new IllegalArgumentException(e.getMessage());
}
return sum;