Changes order of writing BaseRecalibrator results so that if R blows up you still get a meaningful tree
This commit is contained in:
parent
0c4e729e13
commit
dad9bb1192
|
|
@ -275,13 +275,16 @@ public class BaseRecalibrator extends LocusWalker<Long, Long> implements TreeRed
|
||||||
public void onTraversalDone(Long result) {
|
public void onTraversalDone(Long result) {
|
||||||
logger.info("Calculating quantized quality scores...");
|
logger.info("Calculating quantized quality scores...");
|
||||||
quantizeQualityScores();
|
quantizeQualityScores();
|
||||||
|
|
||||||
|
logger.info("Writing recalibration report...");
|
||||||
|
generateReport();
|
||||||
|
logger.info("...done!");
|
||||||
|
|
||||||
if (!RAC.NO_PLOTS) {
|
if (!RAC.NO_PLOTS) {
|
||||||
logger.info("Generating recalibration plots...");
|
logger.info("Generating recalibration plots...");
|
||||||
generatePlots();
|
generatePlots();
|
||||||
}
|
}
|
||||||
logger.info("Writing recalibration report...");
|
|
||||||
generateReport();
|
|
||||||
logger.info("...done!");
|
|
||||||
logger.info("Processed: " + result + " sites");
|
logger.info("Processed: " + result + " sites");
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue