System.out.println("writing summary to file...");
// Save the file
File file = new File(mWorkDir, mGroupNameArr[i]+"_"+SummaryFile.SUMMARY_FILE_NAME);
try {
summary.writeToFile(file);
}
catch (Exception exc) {
throw new PreparationException("Writing summary file failed: "
+ file.getAbsolutePath(), exc);
}