Skip to content

Commit ce5f699

Browse files
committed
Fixed bug with string output
1 parent 6bee219 commit ce5f699

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main/java/org/broadinstitute/hellbender/tools/walkers/vqsr/CNNScoreVariants.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -204,7 +204,7 @@ protected String[] customCommandLineValidation() {
204204
IntelGKLUtils utils = new IntelGKLUtils();
205205
if (utils.isAvxSupported() == false)
206206
{
207-
return AVXREQUIRED_ERROR;
207+
return new String[]{CNNScoreVariants.AVXREQUIRED_ERROR};
208208
}
209209

210210
return null;

0 commit comments

Comments
 (0)