qsub
qlogin : request a node for interactive use: see HPC:Using qlogin
qstat -j
qdel
qstat -f : display all of your jobs queued or running
qhost -j : display which jobs are on which host
qstat -u
qstat -f -u '*' : to see all jobs
qacct -b 200810010000 -e 200810020000 -o username : show your usage statistics between those dates
qsub -l mem_free=4G script.sh : request that there are at least 4GB RAM free on the node where your script will run
qsub script
#$ -cwd
#$ -N yourjobname
/usr/local/bin/R CMD BATCH
/.../gwa_hmm/codes/gwa_hmm_chop_Chr.Rwith -cwd option, the output will be sent to current directory;
otherwise home directory