Merged bug fix from Stable into Unstable

This commit is contained in:
Ryan Poplin 2012-03-23 10:48:34 -04:00
commit 9d22471b79
1 changed files with 2 additions and 0 deletions

View File

@ -184,6 +184,8 @@ public class ApplyRecalibration extends RodWalker<Integer, Integer> {
}
} catch ( FileNotFoundException e ) {
throw new UserException.CouldNotReadInputFile(RECAL_FILE, e);
} catch ( Exception e ) {
throw new UserException.MalformedFile(RECAL_FILE, "Could not parse LOD and annotation information in input recal file. File is somehow malformed.");
}
}