Repository 'tassel5'
hg clone https://toolshed.g2.bx.psu.edu/repos/dereeper/tassel5

Changeset 5:e94b8b64929c (2018-08-24)
Previous changeset 4:652aafd88060 (2018-04-16) Next changeset 6:28c0efb3a226 (2023-12-11)
Commit message:
planemo upload commit 9f362f944b3ce480662bec519a3d7c7616454b4c
modified:
tassel.sh
b
diff -r 652aafd88060 -r e94b8b64929c tassel.sh
--- a/tassel.sh Mon Apr 16 08:54:41 2018 -0400
+++ b/tassel.sh Fri Aug 24 08:33:49 2018 -0400
[
@@ -23,6 +23,7 @@
 then
  run_pipeline.pl $* >> $log1 2>&1
  mv "$galaxyOutDir/TASSELGLM1.txt" $out1
+ if [ $? -gt 0 ] ; then exit 1 ; fi ##check the run of commands
  mv "$galaxyOutDir/TASSELGLM2.txt" $out2
 fi
 
@@ -30,6 +31,7 @@
 then
  run_pipeline.pl $* >> $log1 2>&1
  mv "$galaxyOutDir/TASSELMLM1.txt" $out1
+ if [ $? -gt 0 ] ; then exit 1 ; fi ##check the run of commands
  mv "$galaxyOutDir/TASSELMLM2.txt" $out2
  mv "$galaxyOutDir/TASSELMLM3.txt" $out3
 fi
@@ -44,4 +46,5 @@
 then
  run_pipeline.pl $* >> $log1 2>&1
  mv "$galaxyOutDir/kinship.txt" $out1
+ if [ $? -gt 0 ] ; then exit 1 ; fi ##check the run of commands
 fi