This shows you the differences between two versions of the page.
| Next revision | Previous revision | ||
|
howto:bioinformatics:bowtie [2013/11/22 12:27] dane created |
— (current) | ||
|---|---|---|---|
| Line 1: | Line 1: | ||
| - | ====== Running Bowtie ====== | ||
| - | ===== Before you start ===== | ||
| - | Before running your scripts remember to run((Note: Make sure the line:< | ||
| - | |||
| - | ===== Job script ===== | ||
| - | Then your job script called // | ||
| - | <file bash my_job.msub> | ||
| - | #/bin/sh | ||
| - | #MSUB -l procs=64 | ||
| - | #MSUB -l feature=dell | ||
| - | #MSUB -l walltime=10: | ||
| - | #MSUB -m be | ||
| - | #MSUB -V | ||
| - | #MSUB -o ${HOME}/ | ||
| - | #MSUB -e ${HOME}/ | ||
| - | #MSUB -d ${HOME}/ | ||
| - | #MSUB -N MyGromacsJob | ||
| - | #MSUB -mb | ||
| - | |||
| - | NP=`cat ${PBS_NODEFILE} | wc -l` | ||
| - | |||
| - | EXE=bowtie | ||
| - | ARGS=" | ||
| - | |||
| - | mpirun -np ${NP} -machinefile ${PBS_NODEFILE} ${EXE} ${ARGS} | ||
| - | </ | ||
| - | |||
| - | ===== Submit your job ===== | ||
| - | Finally submit your job using:< | ||
| - | |||
| - | ===== Bowtie help ===== | ||