Skip to content

Guidelines, recommendations, and tips for working on the DIPC High Performance Cluster. All commands have been tested on Hyperion and are expected to be compatible with Atlas EDR and FDR systems as well

Notifications You must be signed in to change notification settings

GorBEEa/DIPC_HPC_settings

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

8 Commits
 
 

Repository files navigation

🖥️ DIPC HPC settings

Guidelines, recommendations, and tips for working on the DIPC High Performance Cluster. All commands have been tested on Hyperion and are expected to be compatible with Atlas EDR and FDR systems as well.

a. Before starting

1. Secure Shell Connection 💻 ↔️ 🖥️

SSH Connection

Open a terminal and type the following command with your username:

ssh <username>@hyperion.sw.ehu.es

2. Working with modules 🧰

Tips for working with modules on the Cluster

a) Listing Available Modules: Use the module avail command to list all modules available on the system.

module avail

b) Loading Modules: Use the module load command to load a specific module into your session. This will set up the necessary session variables and paths.

module load <module_name>

Some modules have multiple versions available. Use the module load command followed by the module name and version to load a specific version.

module load <module_name>/<version>

c) Unloading Modules: Use the module unload command to remove a module from your session. This will unset the session variables and paths set by the module.

module unload <module_name>

d) Purging All Modules: Use the module purge command to unload all currently loaded modules. This is useful when you want to start with a clean session.

module purge

e) Listing Loaded Modules: Use the module list command to see all modules currently loaded in your session.

module list

3. SLURM

Tips for working with SLURM Workload Manager

a) Submitting Jobs. sbatch: Submit a batch script to SLURM.

sbatch my_job_script.sh

More information at:

4. Process amplicon sequences 🧬

DADA2 first configuration

These steps are only neccesary the first time we use the cluster. This commands are only to correctly install DADA2. Pipeline is in TO_BE_ADDED repository.

  1. Connect to hyperion cluster. You need previously an user account
ssh <username>@hyperion.sw.ehu.es
  1. Load Python and Mamba
module load Python Mamba
  1. Activate Bioconda channel
conda config --add channels defaults
conda config --add channels bioconda
conda config --add channels conda-forge
conda config --set channel_priority strict
  1. Create a new conda environment. You have to replace "myenvname" by a reaseonbale name (e.g. dada2)
mamba create --name "myenvname" bioconductor-dada2

# Add other R packages to the environment
mamba install conda-forge::r-tidyverse

Some tips to work with mamba/micromamba/conda. I will write all commands using mamba below, but the arguments are the same for the two others.

# Activate an environment
mamba activate ENV_NAME

# Deactivate an environment
mamba deactivate

# Adding/Updating software
mamba install -n ENV_NAME PACKAGE
mamba update -n ENV_NAME --all
  1. Install dada2 in R

a) In the terminal

# Activate the environment
mamba activate dada2
# Start R (v. 4.3)
R

b) In R

# Install Bioconductor Packages
if (!require("BiocManager", quietly = TRUE))
  install.packages("BiocManager")
BiocManager::install(version = "3.18")
# Check the lastest version of R you have installed.
# If you have the latest version of R (4.4) you should replace the bioconductor version to "3.19"

# Other sources of installation: https://benjjneb.github.io/dada2/dada-installation.html

# Restart a new R session and check dada2 package by exploring documentation:

quit()
R
library("dada2")

help(package="dada2")
?derepFastq
?dada
  1. Install DECIPHER in R

a) In the terminal

# Activate the environment
mamba activate dada2
# Start R (v. 4.3)
R

b) In R

# Install Bioconductor Packages
if (!requireNamespace("BiocManager", quietly=TRUE))
    install.packages("BiocManager")
BiocManager::install("DECIPHER")

About

Guidelines, recommendations, and tips for working on the DIPC High Performance Cluster. All commands have been tested on Hyperion and are expected to be compatible with Atlas EDR and FDR systems as well

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published