Workflow to generate count table from paired-read RNA-seq.
The main workflow uses the following software/packages:
- QC, adapter and quality trimming - Fastp
- Alignment and Count - STAR
It's recommended to install the softwares with conda:
- Create conda environment:
conda create -n rna-seq
- Configure package channels:
conda config --add channels defaults
conda config --add channels bioconda
conda config --add channels conda-forge
conda config --set channel_priority strict
For Apple Silicon Mac, additionally runconda config --add subdirs osx-64
- Install packages:
conda install -n rna-seq -c bioconda star fastp
It's recommended to run this workflow on a High-Performance Computing Server (For example, CRC machines)