Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Code Block
languagebash
titleRun multiple alignments using the TACC batch system
# Make a new alignment directory for running these scripts
mkdir -p $SCRATCH/core_ngs/alignment/bwa_script
cd $SCRATCH/core_ngs/alignment/bwa_script
ln -s -f ../fastq

# Copy the alignment commands file and submit the batch job
cp $CORENGS/tacc/aln_script.cmds .
launcher_maker.py -n aln_script.cmds -t 2 -w 4 -a UT-2015-05-18 -v --reservation=CCBB
sbatch aln_script.slurm --reservation=CCBB
showq -u

While we're waiting for the job to complete, lets look at the aln_script.cmds file.

...