Using TACC's Lonestar cluster (GVA14)
This page is a quick start for using the Lonestar cluster at TACC.
The Lonestar User Guide
For complete up-to-date information, always see: TACC's Lonestar User Guide
Transferring Files to and from Lonestar
Obtaining the Path
It's a good idea to open 2 terminals for transferring files.
- One logged in on Lonestar with the current directory set to where you want to transfer files to or from
- One on your computer with the current directory set to where you want to transfer files to or from
On Lonestar:
Go to the directory where you want your files to be or where you want to copy from.
Type
pwd
This gives the absolute path to your directory. It might start with "home" or "work" depending on what directory you're in.
Mac/Linux
Windows
Modules
Modules are programs or sets of programs that have been set up to run on TACC. They make managing your computational environment very easy. All you have to do is load the modules that you need and a lot of the advanced wizardry needed to set up the linux environment has already been done for you. New commands just appear.
To see all modules available in the current context, type:
module avail
Then to load a module like gatk for use, type:
module load gatk
Some applications are already loaded when you log in but may not be up to date. Python is already loaded, but only version 2.4.3 is loaded. Version 2.7.1 is in the available list. To load Python 2.7.1, type:
module load python
To automatically load a module when you log in, go to your home directory by typing:
cdh
Let's load R when we log in. Do this by typing:
echo "module load R" >> .profile_user
This writes the command to load R to your profile. Now whenever you log in, R will automatically load.
Why not load all the modules by default? Well, you actually may want to add many of the moduels that you encounter in later tutorials to be loaded on login. The reason they are not loaded by default is to keep things lean for those people simulating hurricanes who don't want to load Bioperl every time they log in. Occasionally two different modules also don't play nice together and you will get messages that you have to "swap" one for another.
Since module avail
only shows modules in the current context (i.e. based on your currently loaded modules), to see all possible modules use:
module spider <freetext>
If you specify some text for <freetext>
, you'll see all modules with that text anywhere in their title or description. For example, try to find the transcriptome assembler Trinity.
Can't find a program that you need? No worries, we will learn how to install other linux programs on TACC in a later lesson.
Now let's go on to look at the directory structure at Lonestar.
Welcome to the University Wiki Service! Please use your IID (yourEID@eid.utexas.edu) when prompted for your email address during login or click here to enter your EID. If you are experiencing any issues loading content on pages, please try these steps to clear your browser cache.