Fix old error message
This commit is contained in:
parent
2314787767
commit
10995d349e
|
|
@ -317,7 +317,7 @@ public class UnifiedGenotyper extends LocusWalker<VariantCallContext, UnifiedGen
|
||||||
sum.nCallsMade++;
|
sum.nCallsMade++;
|
||||||
writer.add(value);
|
writer.add(value);
|
||||||
} catch (IllegalArgumentException e) {
|
} 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;
|
return sum;
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue