RNA-seq Bioinformatics

Introduction to bioinformatics for RNA sequence analysis

Logging into Course Compute

We offer several options for completing the hands-on components of this course including Amazon Cloud (AWS), Google Cloud (GCP), and Docker images.

Using cloud computing (AWS or GCP) to complete this course involves two major components: (1) Launching an instance on the cloud (essentially renting a virtual computer by the hour and turning it on) and (2) logging into that instance.

Using Docker involves running a precompiled image locally on your computer. For specific instructions on how to use each, choose one of the options below:

Compute Options

  1. Using AWS
  2. Using GCP
  3. Using Docker

Using AWS

Covered in this section: logging into AWS EC2 console, starting an instance from the course AMI and configuring it in the console (select instance AMI, instance type, instance details, storage volumes, tags, security group, and key pairs).

Launching an AWS instance

In the previous section Introduction to AWS we reviewed fundamental concepts of cloud computing and some of the jargon and features specific to AWS. In this section we will learn how to launch an instance specifically for this course.

In order to launch your own instance you will either need to use your own personal AWS account, an account provided through your institution OR if you are taking a live version of this course you will be assigned an AWS account using the IAM system. The following instructions are used for a live version of this course, but the process would be essentially the same when using a personal or institutional account.

Briefly the process for launching an EC2 instance for this course involves these steps:

  1. Login to AWS using the specific url and credentials (user/password) you were provided (or our own AWS account).
  2. Search for and select EC2 to access the EC2 console.
  3. Make sure that you are in the N. Virginia region
  4. Select Launch Instances.
  5. Name and tags: Name your instance (e.g., Firstname_Lastname).
  6. Amazon Machine Image: Search for “cshl-seqtec-2023” in My AMIs and Select.
  7. Instance type: Select “m6a.xlarge” and then “Next”.
  8. Key pair (login): Choose an existing key pair (e.g., cshl_2023_student) or create a new one and store it somewhere safe.
  9. Network settings: Choose existing security group called “SSH/HTTP/Jupyter” (or create one with SSH and HTTP access).
  10. Configure storage: Make sure that you see two volumes.
  11. Advanced details: Select “Termination Protection: Enable”.
  12. Summary: Review and then Launch instance.
  13. View all instances and wait for your instance to finish initiating.
  14. Find your instance in console and select it, then hit connect to get your Public IP address (EC2 Instance Connect).
  15. Login to the instance as described below.

Logging in to your own AWS EC2 instance

Logging in to AWS with Terminal (Mac/Linux)

chmod 400 cshl_2023_student.pem
 ssh -i cshl_2023_student.pem ubuntu@[public_IP_address]

-i selects a file from which the public key authentication is read. ubuntu is the name of a user on the system you are logging into (a default user of the Ubuntu operating system). [your ip address] is the address of the linux system on Amazon that you are logging into. Instead of ip address you can also use a public dns name.

Logging in to AWS with Powershell (Windows)

Open a PowerShell session , and follow the steps as listed in Logging in to AWS with Terminal.

Logging in to AWS with PuTTy (Windows)

To configure PuTTy, start PuTTy and do the following:

Logging in with putty (Windows)

Logging in with putty (Windows)

Logging in with putty (Windows)

Logging in with putty (Windows)

Copying files to your computer from AWS

scp -i cshl_2023_student.pem ubuntu@[your ip address]:nice_alignments.bam .

http://[your ip address]/ or http://[your dns name]

File system layout on AWS instance

When you log in, you will notice that you have one directory already: “workspace”.

Uploading your data to the AWS instance

If you would like to upload your data to the AWS instance, use the example scp command below. Be sure to replace the variables below with the local path to your data, MY_DATA, and the amazon instance IP, YOUR_IP_ADDRESS.

scp -i cshl_2023_student.pem __MY_DATA__ ubuntu@[your ip address]:/

Doing this course with AWS outside of a workshop

If you are trying to do this course on your own using the online materials only, of course an AWS EC2 instance has not been set up for you. If you have access to an AWS account though you can can start with the same Amazon AMI we use to create instances for each student. Currently this is:

Name: cshl-seqtec-2023 available in the US East, N. Virginia region (us-east-1).

We typically use an instance type of m6a.xlarge. For detailed instructions on how we created the AMI and configure each instance, please refer to the AWS Setup page.

Basic introduction to your AWS EC2 instance

Once you are logged into your EC2 instance using ssh, the following commands can be used to explore basic information about the machine


#How are storage volumes mounted?
lsblk

#How much storage space in being used for various mount points?
df -h

#Detailed description of hardware
lshw

#See active resource usage right now with "top".  Use "1" to see all CPUs individually.  Use "q" to exit
top

Using GCP

Coming Soon

Using Docker

We have built a docker image with all necessary software tools installed to complete this course. This allows the hands-on exercises to be perfomed on your own desktop or laptop or anywhere that has docker installed. The following commands can be used to download and run this image as an interactive docker container.

First you will need to install docker. Typically this involves installing Docker Desktop. Once installed, start docker, and open a terminal application. Explanations of how to do this are detailed above in the Using AWS section. At the terminal you can test your docker installation is working/running with docker --help. Once you have docker working you can use the following commands to download, set up, and run the rnabio image.

  1. Pull the image rnabio to your local Docker client with the tag 0.0.2 from the griffithlab repository:
    docker pull griffithlab/rnabio:0.0.2
    
  2. Setup a local workspace directory for the RNAseq course. If you change the path or command used here in Step 2, make sure to update the path to the workspace directory accordingly in Step 3.
    mkdir -p ~/rnabio-workspace
    
  3. Initialize a Docker container using the image we pulled above. -v tells Docker to mount our workspace directory within the Docker container as /workspace with read-write priveleges. You’ll see in the RNAseq course /workspace is the base directory for nearly all commands and steps. Note: we are running this docker container interactively and entering it at a bash shell prompt. We also switch the default user to “ubuntu” to match the RNAseq course tutorials.
    docker run -v ~/rnabio-workspace:/workspace:rw --user ubuntu:ubuntu -it griffithlab/rnabio:0.0.2 /bin/bash
    

The docker session should now be ready for the Unix tutorial and practical exercises.