diff --git a/hoot-services/src/main/java/hoot/services/controllers/grail/RunDiffCommand.java b/hoot-services/src/main/java/hoot/services/controllers/grail/RunDiffCommand.java
index 79a7eaf..6b234f7 100644
--- a/hoot-services/src/main/java/hoot/services/controllers/grail/RunDiffCommand.java
+++ b/hoot-services/src/main/java/hoot/services/controllers/grail/RunDiffCommand.java
@@ -22,10 +22,11 @@
* This will properly maintain the copyright information. DigitalGlobe
* copyrights will be updated automatically.
*
- * @copyright Copyright (C) 2016, 2017, 2018, 2019 DigitalGlobe (http://www.digitalglobe.com/)
+ * @copyright Copyright (C) 2016, 2017, 2018, 2019, 2020 DigitalGlobe (http://www.digitalglobe.com/)
*/
package hoot.services.controllers.grail;
+import java.io.File;
import java.util.HashMap;
import java.util.LinkedList;
import java.util.List;
@@ -72,8 +73,9 @@ class RunDiffCommand extends GrailCommand {
substitutionMap.put("INPUT2", params.getInput2());
substitutionMap.put("OUTPUT", params.getOutput());
substitutionMap.put("DEBUG_LEVEL", debugLevel);
+ substitutionMap.put("STATS_FILE", new File(params.getWorkDir(), "stats.json").getPath());
- String command = "hoot conflate --${DEBUG_LEVEL} -C DifferentialConflation.conf -C NetworkAlgorithm.conf ${HOOT_OPTIONS} ${INPUT1} ${INPUT2} ${OUTPUT} --differential --include-tags --separate-output";
+ String command = "hoot.bin conflate --${DEBUG_LEVEL} -C DifferentialConflation.conf -C NetworkAlgorithm.conf ${HOOT_OPTIONS} ${INPUT1} ${INPUT2} ${OUTPUT} --differential --changeset-stats ${STATS_FILE} --include-tags --separate-output";
super.configureCommand(command, substitutionMap, caller);
}