Index: /trunk/ippScripts/scripts/diff_skycell.pl
===================================================================
--- /trunk/ippScripts/scripts/diff_skycell.pl	(revision 28125)
+++ /trunk/ippScripts/scripts/diff_skycell.pl	(revision 28126)
@@ -197,4 +197,5 @@
 my $recipe_ppSub = $ipprc->reduction($reduction, 'DIFF_PPSUB'); # Recipe to use for ppSub
 my $recipe_psphot  = $ipprc->reduction($reduction, 'DIFF_PSPHOT'); # Recipe to use for psphot
+my $recipe_ppstats = 'DIFFSTATS';
 unless ($recipe_ppSub and $recipe_psphot) {
     &my_die("Couldn't find selected reduction for DIFF_PPSUB and DIFF_PSPHOT: $reduction\n", $diff_id, $skycell_id, $PS_EXIT_CONFIG_ERROR);
@@ -257,4 +258,6 @@
     $traceDest .= '.update';
     $outputStats .= '.update';
+
+    $recipe_ppstats = 'WARPSTATS';
 }
 
@@ -292,5 +295,5 @@
     $command .= " -recipe PPSUB $recipe_ppSub";
     $command .= " -recipe PSPHOT $recipe_psphot";
-    $command .= " -recipe PPSTATS DIFFSTATS";
+    $command .= " -recipe PPSTATS $recipe_ppstats";
     $command .= " -F PSPHOT.PSF.SAVE PSPHOT.PSF.SKY.SAVE";
     $command .= " -F PSPHOT.OUTPUT PSPHOT.OUT.CMF.MEF";
Index: /trunk/ippScripts/scripts/stack_skycell.pl
===================================================================
--- /trunk/ippScripts/scripts/stack_skycell.pl	(revision 28125)
+++ /trunk/ippScripts/scripts/stack_skycell.pl	(revision 28126)
@@ -149,4 +149,8 @@
 my $recipe_ppSub = $ipprc->reduction($reduction, 'STACK_PPSUB'); # Recipe to use for ppSub
 my $recipe_psphot  = $ipprc->reduction($reduction, 'STACK_PSPHOT'); # Recipe to use for psphot
+my $recipe_ppstats = 'STACKSTATS';
+if ($run_state eq 'update') {
+    $recipe_ppstats = 'WARPSTATS';
+}
 unless ($recipe_ppStack and $recipe_ppSub and $recipe_psphot) {
     &my_die("Couldn't find selected reduction for STACK_PPSTACK, STACK_PPSUB and STACK_PSPHOT: $reduction\n", $stack_id, $PS_EXIT_CONFIG_ERROR);
@@ -232,5 +236,5 @@
     $command .= " -recipe PPSUB $recipe_ppSub";
     $command .= " -recipe PSPHOT $recipe_psphot";
-    $command .= " -recipe PPSTATS STACKSTATS" if $do_stats;;
+    $command .= " -recipe PPSTATS $recipe_ppstats" if $do_stats;;
     $command .= " -F PSPHOT.PSF.SAVE PSPHOT.PSF.SKY.SAVE";
     $command .= " -F PSPHOT.OUTPUT PSPHOT.OUT.CMF.MEF";
