source: branches/Mars_McMismatchStudy/qsub/FACT.sub_star_mc.sh@ 17997

Last change on this file since 17997 was 17986, checked in by ghughes, 10 years ago
batch scripts update
  • Property svn:executable set to *
File size: 876 bytes
Line 
1#!/bin/bash
2
3if [[ $# < 1 ]]
4then
5 echo ""
6 echo "FACT.sub_star_mc.sh <input dir> <output dir>"
7 echo ""
8 exit
9fi
10
11cd $MARSSYS
12
13INDIR=$1
14OUTDIR=$2
15
16TEMPFILE="temp.star.file"
17
18## Need to edit this TODO
19ls $INDIR/cer* | head -n 1 > $TEMPFILE
20
21while read LINE
22do
23
24 INFILE=$LINE
25
26## Need to edit this TODO
27 NUMBER=`echo $LINE | sed s/cer/" "/g | gawk '{print $2}'`
28
29 QSUB=$MARSSYS"/batch/queue/FACT.qsub_star_mc_"$NUMBER".sh"
30 QSUBERR=$MARSSYS"/batch/queue/FACT.qsub_star_mc_"$NUMBER".err"
31 QSUBOUT=$MARSSYS"/batch/queue/FACT.qsub_star_mc_"$NUMBER".out"
32
33 sed -e "s|FFFFF|$INFILE|" \
34 -e "s|DDDDD|$OUTDIR|" $MARSSYS"/batch/FACT.qsub_star_mc.sh" > $QSUB
35
36 chmod +x $QSUB
37
38 ##qsub -q fact_medium -b yes -o $QSUBOUT -e $QSUBERR $QSUB
39 qsub -q test -b yes -o $QSUBOUT -e $QSUBERR $QSUB
40 ##qsub -b yes -o $QSUBOUT -e $QSUBERR $QSUB
41
42done <$TEMPFILE
43
44rm $TEMPFILE
Note: See TracBrowser for help on using the repository browser.