Skip to content

Commit

Permalink
Debugging of batch scripts.
Browse files Browse the repository at this point in the history
  • Loading branch information
sthancock committed Mar 23, 2019
1 parent 09d85ea commit 29cbd04
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion batchBiomass.bash
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ fi
temp="/tmp/workSpace.biomass.$$.txt"
while read inName; do

python3 $bin/predictBiomass.py --input $inName --outpout $temp
python3 $bin/predictBiomass.py --input $inName --output $temp
cat $temp >> $output

if [ -e $temp ];then
Expand All @@ -66,4 +66,5 @@ done < $list
if [ -e $list ];then
rm $list
fi
echo "Written to $output"

2 changes: 1 addition & 1 deletion batchProcess.bash
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@ fi
while read inName; do
root=`echo $inName|gawk -F/ '{print $NF}'`
output="$outRoot.$root"
gediMetric -input $inName -readHDFgedi $bounds -ground $varScale $statsLen $noiseTrack $sWidth $psWidth $msWidth $gWidth $minGsig $minWidth -outRoot $output -varNoise
gediMetric -input $inName -readHDFgedi $bounds -ground $varScale $statsLen $noiseTrack $sWidth $psWidth $msWidth $gWidth $minGsig $minWidth -outRoot $output -varNoise -rhRes 5
done < $list

if [ -e $list ];then
Expand Down

0 comments on commit 29cbd04

Please sign in to comment.