run_lcWGS_call_L1.pbs 434 B

1234567891011121314
  1. #!/usr/bin/env bash
  2. #PBS -N lcWGS
  3. #PBS -j oe
  4. #PBS -l ncpus=8
  5. #PBS -l nodes=1
  6. #PBS -l mem=30G
  7. sam_list=$sam_list
  8. sams=(`cat $sam_list`)
  9. echo "Samples:" ${sams[*]}
  10. echo $lcwgs_path
  11. echo "bash $lcwgs_path/run_lcWGS_call_L2.sh -r $SeqLen -i $indir -d $out -s ${sams[${PBS_ARRAY_INDEX}]}"
  12. sh $lcwgs_path/run_lcWGS_call_L2.sh -r $SeqLen -i $indir -x $lcwgs_path -d $out -s ${sams[${PBS_ARRAY_INDEX}]} &> $log.${sams[${PBS_ARRAY_INDEX}]}