SLURM batch script to run Ray assembler with MPI on paired-end MiSeq reads.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/env bash | |
#SBATCH -p batch | |
# will use 15 CPUs | |
#SBATCH -n 15 | |
# will use 2-3 different nodes | |
#SBATCH --nodes=2-3 | |
#SBATCH -J ray | |
module load ray/2.3.1 | |
readonly DATADIR=~/data/bfusca | |
readonly OUTDIR=~/data/bfusca/ray-aug31-2 | |
# mpirun gets the number of processors from SLURM | |
mpirun Ray -k 27 -p ${DATADIR}/1_S1_L001_R1_001-qc.fastq ${DATADIR}/1_S1_L001_R2_001-qc.fastq -o ${OUTDIR} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment