-
Notifications
You must be signed in to change notification settings - Fork 2
3. Loading RNAseq environment
RNAseq pipeline is implemented in a Conda environment called RNA-seq. Conda enables virtual environments that contain the required software packages/libraries to be installed and set up. In this instance, the RNAseq conda environment contains the BBMap suite, STAR alignment software, and FASTQC tool. Besides, required Python and R libraries and their dependencies are also installed.
After logging into the MERCED cluster, you will need to activate the RNA-seq Conda environment. Run the following commands to activate the environment -
module load anaconda3
source activate RNA-seq
You will see the activated environment path in parenthesis at your prompt as such -
(/opt/anaconda_shared_envs/RNA-seq)[<username>@merced ~]$
Alternatively, users can use the rnaseq.yml file to install the environment locally, as such -
cd RNA-seq/
conda env create -f rnaseq.yml
# After conda finishes installing the environment, run the following to activate it -
conda activate rnaseq