Skip to the content.

HPC System Setup

Get everyone on Tec HPC here: Link to Node/IP address assignments

Tec de Monterrey HPC System Setup

You will not typically need to do this, but because ipyrad2 is still in development we will clone the repository and install it locally in developer mode so that if necessary we can quickly apply changes to address bug fixes.

# Install ipyrad2 in developer mode
pip install -e . --no-deps

Launch and access Jupyter lab web interface

You should see the jupyter lab web interface like this:

png

Accessing a command line interface on Tec HPC

Our first goal will be to use gain access to a command line interface to view RAD-seq data as way to become familiar with the format of the raw data that we will analyze, while also learning about basic command line programs.

## Example Code Cell.
## Create an empty file in my home directory called `watdo.txt`
$ touch ~/watdo.txt

## Print "wat" to the screen
$ echo "wat"
wat

Bash command line cheat sheet.

Take a look at the contents of the folder you’re currently in.

$ ls

To keep things organized, please create a new directory which we’ll be using during this Workshop. Use mkdir. And then navigate into the new folder, using cd.

$ mkdir ipyrad-workshop
$ cd ipyrad-workshop

Web-based working environment: Jupyter Lab

Launching and accessing jupyter lab on your compute node