Skip to content

Software Exercise 2.2: Pre-package a Research Code

In this exercise, you will create an installation of a Bayesian inference package (HMMER) and then create a wrapper script to unpack that installation to run jobs. It should take 30-35 minutes.

Background

Some software cannot be compiled into a single executable, whether you compile it yourself (as in Software Exercise 2.1) or download it already compiled (as in Software Exercise 1.1). In this case, it is necessary to download or create a portable copy of the software and then use a wrapper script (as in this exercise) to "install" or run the software on a per job basis. This script can either install the software from the source code, or (as in this exercise), unpack a portable software package that you've pre-built yourself.

Our Software Example

For this exercise, we will be using the bioinformatics package HMMER. HMMER is a good example of software that is not compiled to a single executable; it has multiple executables as well as a helper library.

  1. Create a directory for this exercise on the CHTC submit server learn.chtc.wisc.edu (not login05.osgconnect.net).

  2. Do an internet search to find the HMMER software downloads page and the installation instructions page. On the installation page, there are short instructions for how to install HMMER. There are two options shown for installation -- which should we use?

  3. For the purposes of this example, we are going to use the instructions under the heading "...to obtain and compile from source." Download the HMMER source as shown in these instructions (command should start with wget)

Where to Prepare

Our goal is to pre-build an HMMER installation, and then write a script that will unpack that installation and run a simulation.

  1. Where can we create this pre-built installation? Based on the end of the lecture, what are our options and which would be most appropriate? Make a guess before moving on.

  2. Because we're on the CHTC-based submit node (learn.chtc.wisc.edu), we have the option of using an interactive job to build the HMMER installation. This is a good option because the submit server is already busy with lots of users and we don't know how long the HMMER install will take. We'll also target specific build servers with extra tools by adding some special requirements to our interactive job.

    1. Copy the following lines into a file named build.submit

      log = build.log
      
      should_transfer_files = YES
      when_to_transfer_output = ON_EXIT
      transfer_input_files =
      
      +IsBuildJob = true
      requirements = (IsBuildSlot == true)
      
      request_cpus = 1
      request_disk = 2GB
      request_memory = 2GB
      
      queue
      
    2. Note the lack of executable. Condor doesn't need an executable for this job because it will be interactive, meaning you are running the commands instead of Condor.

    3. In order to create the installation, we will need the source code to come with us. The transfer_input_files line is blank - fill it in with the name of our HMMER source tarball.

    4. To request an interactive job, we will add a -i flag to the condor_submit command. The whole command you enter should look like this:

      username@learn $ condor_submit -i build.submit
      

Read Through Installation Documentation

While you're waiting for the interactive job to start, go back to the installation documentation page and look at the steps for compiling from source. This process should be similar to what was described in the lecture!

Installation

Your interactive job should have started by now and we've learned about installing our program. Let's test it out.

  1. Before we follow the installation instructions, we should create a directory to hold our installation. You can create this in the current directory.

    username@host $ mkdir hmmer-build
    
  2. Now run the commands to unpack the source code:

    username@host $ tar -zxf hmmer.tar.gz
    username@host $ cd hmmer-3.3.2
    
  3. Now we can follow the second set of installation instructions. For the prefix, we'll use the variable $PWD to capture the name of our current working directory and then a relative path to the hmmer-build directory we created in step 1:

    username@host $ ./configure --prefix=$PWD/../hmmer-build
    username@host $ make
    username@host $ make install
    
  4. Go back to the job's main working directory:

    username@host $ cd ..
    

    and confirm that our installation procedure created bin, lib, and share directories.

    username@host $ ls hmmer-build
    bin share
    
  5. Now we want to package up our installation, so we can use it in other jobs. We can do this by compressing any necessary directories into a single gzipped tarball.

    username@host $ tar -czf hmmer-build.tar.gz hmmer-build
    
  6. Once everything is complete, type exit to leave the interactive job. Make sure that your tarball is in the main working directory - it will be transferred back to the submit server automatically.

    username@learn $ exit
    

Note that we now have two tarballs in our directory -- the source tarball (hmmer.tar.gz), which we will no longer need and our newly built installation (hmmer-build.tar.gz) which is what we will actually be using to run jobs.

Wrapper Script

Now that we've created our portable installation, we need to write a script that opens and uses the installation, similar to the process we used in a previous exercise. These steps should be performed back on the submit server (learn.chtc.wisc.edu).

  1. Create a script called run_hmmer.sh.

  2. The script will first need to untar our installation, so the script should start out like this:

    #!/bin/bash
    
    tar -xzf hmmer-build.tar.gz
    
  3. We're going to use the same $PWD trick from the installation in order to tell the computer how to find HMMER. We will do this by setting the PATH environment variable, to include the directory where HMMER is installed:

    export PATH=$PWD/hmmer-build/bin:$PATH
    
  4. Finally, the wrapper script needs to not only setup HMMER, but actually run the program. Add the following lines to your run_hmmer.sh wrapper script.

    hmmbuild globins4.hmm globins4.sto
    hmmsearch -o search-results.txt globins4.hmm globins45.fa
    
  5. Make sure the wrapper script has executable permissions:

    username@learn $ chmod u+x run_HMMER.sh
    

Run a HMMER job

We're almost ready! We need two more pieces to run a HMMER job.

  1. We're going to use some of the tutorial files provided with the HMMER download to run the job. To access them, we'll unzip the HMMER download in our home directory:

    username@learn $ tar -xzf hmmer.tar.gz
    
  2. Our last step is to create a submit file for our HMMER job. Think about which lines this submit file will need. Make a copy of a previous submit file (you could use the blast submit file from a previous exercise as a base) and modify it as you think necessary.

  3. The two most important lines to modify for this job are listed below; check them against your own submit file:

    executable = run_hmmer.sh
    transfer_input_files = hmmer-build.tar.gz, hmmer-3.3.2/tutorial/
    

    A wrapper script will always be a job's executable. When using a wrapper script, you must also always remember to transfer the software/source code using transfer_input_files.

    Note

    The / in the transfer_input_files line indicates that we are transferring the contents of that directory (which in this case, is what we want), rather than the directory itself.

  4. Submit the job with condor_submit.

  5. Once the job completes, it should produce a search-results.txt file.

    Note

    For a very similar compiling example, see this guide on how to compile samtools: Example Software Compilation