Lists jobs that are in the queue
Displays the number of total, avialalbe, and busy CPUs within cluster
Shows a list of cluster nodes along with total number of CPUs and number of CPUs being used
Used to submit jobs to the cluster (e.g. $ qsub submit.csh)
Delete job from cluster using the job number (e.g. $ qdel 2)
#!/bin/bash
#$ -cwd #Run from current working directory
#$ -S /bin/bash #Shell
#$ -pe orte 64 #Number of CPUs to use
#$ -q all.q #Queue type. Default = all.q
#$ -V #Specify same running environment
#$ -N r3_8xlarge_2 #Name of job
mpirun relion_refine_mpi --o Class3D/run_r3_8xlarge_2 --i particles_sel.star --particle_diameter 350 --angpix 3.54 --ref ref_filt60A_sca.mrc --firstiter_cc --ctf --iter 2 --tau2_fudge 2 --K 4 --flatten_solvent --zero_mask --oversampling 1 --healpix_order 3 --offset_range 5 --offset_step 2 --sym C1 --norm --scale --j 1 --memory_per_thread 10