Using Gotcloud on Flux

From Genome Analysis Wiki
Jump to navigationJump to search

How to run Gotcloud on Flux

First, Configure GotCloud like you would anywhere else

1. Install GotCloud somewhere as instructed here.

2. Get access to the reference files from someone else, or download them as instructed here.

3. Make a configuration file as usual for your analysis.

4. Include the line BATCH_TYPE = pbs in that configuration file.

Next, prepare to use the Flux/Torque/PBS cluster

5. Run gotcloud with zero jobs to generate a Makefile.

/path/to/gotcloud/gotcloud snpcall --conf /path/to/configuration.conf --numjobs 0
  • The newly generated Makefile will be located in the directory OUT_DIR that is specified in your configuration file. It will be named umake.snpcall.Makefile.

6. Make a new folder, where you'll run your jobs from.

7. Make an email address to send your jobs' status to. It'll be hit by hundreds or thousands of emails, so I recommend that you don't use your main email address here.

  • If you're in a hurry to finish your pipeline, you can find an email address that will text the emails to your phone. Only use that in the second script, though, so that you don't receive thousands of text messages!

8. Figure out the name of the Flux account that you're going to use. You can see which Flux accounts you have access to by running mdiag -u $USER and looking at the list after ALIST.

  • Eg, sph_flux

9. Figure out how many processors you're going to use at once. Run mdiag -a YOU_FLUX_ACCOUNT. I recommend running MAXPROC + MAXIJOB[USER] many jobs. MAXPROC is the number of processors on your account, and MAXIJOB[USER] is the number of jobs that can sit idle in the queue waiting to be run (often 20).

  • This number will usually be between 20 and 1000.

10. Figure out which steps to run first. The steps go in the order glfN, vcfN, pvcfN, filtN, svmN, splitN, allN where N is the name of a chromosome (ie, 1-22 and maybe X and Y). If you skip a step, it's not a problem, because make will run it for you. If you're confident that everything will work beautifully, you can go straight to the step allN (or just all as a shortcut).

  • For example, I used glf1 glf2 glf3 glf4 glf5 glf6 glf7 glf8 glf9 glf10 glf11 glf12 glf13 glf14 glf15 glf16 glf17 glf18 glf19 glf20 glf21 glf22 the first time I ran on Flux. Then I ran vcf1 vcf2..., and on down the list until finally all.
  • Feel free to use the script perl -e 'print "glf$_ " for 1..22' to mitigate repetitive strain injuries.

11. Inside that new folder, make a new file named pbs.options that contains the following:

#PBS -l nodes=1:ppn=1,walltime=10:00:00,pmem=4gb,qos=YOUR_FLUX_ACCOUNT_FROM_STEP_8
#PBS -d .
#PBS -m abe
#PBS -M YOUR_EMAIL_FROM_STEP_7
#PBS -q flux
#PBS -l qos=flux
#PBS -A YOUR_FLUX_ACCOUNT_FROM_STEP_8
#PBS -V
#PBS -j oe

12. Still inside that folder, create a script that you will submit to flux. Let's name it script_thats_in_charge.sh. It should look like this:

#!/bin/sh

#PBS -l nodes=1:ppn=4,walltime=150:00:00,pmem=4gb,qos=YOUR_FLUX_ACCOUNT_FROM_STEP_8
#PBS -d .
#PBS -m abe
#PBS -M YOUR_EMAIL_FROM_STEP_7
#PBS -q flux
#PBS -l qos=flux
#PBS -A YOUR_FLUX_ACCOUNT_FROM_STEP_8
#PBS -V
#PBS -j oe
#PBS -N SOME_ARBITRARY_NAME_FOR_THIS_JOB

make -w --warn-undefined-variables -k -f /path/to/that/Makefile/umake.snpcall.Makefile -j NUMBER_OF_JOBS_FROM_STEP_9 YOUR_MAKEFILE_TARGETS_FROM_STEP_10 > /path/to/wherever/standard_output 2> /path/to/wherever/standard_error

echo "job ended with status $? at $(date)"

Finally, submit your jobs

13. Run qsub script_thats_in_charge.sh. It's important that you run this in the same folder where pbs.options lives.

14. Once that finishes, if any steps remain, then update YOUR_MAKEFILE_TARGETS_FROM_STEP_10 and go back to step 13.

How to monitor your jobs on Flux

To see a summary of the states of your jobs, run showq -u $USER -s.

  • active means that a job is currently running. This is good.
    • To see more information about active jobs, run showq -n -v -u $USER -r
  • eligible means that the scheduler will submit a job in a few minutes if you're not already using all of your processors.
    • To see more information about eligible jobs, run showq -n -v -u $USER -i
  • blocked is usually a bad thing. It might mean that you have too many jobs waiting to run, and so the scheduler has blocked some. Or it can mean that you broke some rule, and they'll never work.
    • To see more information about active jobs, run showq -n -v -u $USER -b

To see more information about a particular job, copy its JOB_ID (eg, 17682208/17682208.nyx.arc-ts.umich.edu). Then run checkjob JOB_ID.