...
Code Block | ||
---|---|---|
| ||
# Create some handy symbolic links
cd
ln -sf $SCRATCH scratch
ln -sf $WORK2 work
ln -sf /work/projects/BioITeam/projects/courses/Core_NGS_Tools CoreNGS
# Create a directory that will be added to your PATH, where
# you can put custom programs and scripts
mkdir -p ~/local/bin
cd ~/local/bin
ln -sf /work/projects/BioITeam/common/bin/launcher_creator.py
# Set up a custom login script we'll use for this course.
# First back up any existing .bashrc file
cd
if [[ -f ~/.bashrc && ! -f .bashrc.beforeCoreNGS ]]; then
mv ~/.bashrc ~/.bashrc.beforeCoreNGS
fi
cp /work/projects/BioITeam/projects/courses/Core_NGS_Tools/tacc/bashrc.corengs.ls6 ~/.bashrc
chmod 600 ~/.bashrc
source ~/.bashrc
|
...