Switch to unified view

a b/softwares_database/STAR.txt
1
1. install STAR
2
mamba install bioconda::star -y
3
4
2. Build a genome index
5
STAR --runMode genomeGenerate --runThreadN <int: number of threads to run STAR> --genomeDir <string: path to the directory where genome files are stored> --genomeFastaFiles <string(s): path(s) to the fasta files with the genome sequences>
6
7
3. Align RNA-Seq Reads to the genome with STAR
8
STAR --runThreadN <int: number of threads to run STAR> --runMode alignReads --readFilesCommand zcat --genomeDir <string: path to the directory where genome files are stored> --readFilesIn <string(s): paths to files that contain input read1 (and, if needed,  read2)> --outFileNamePrefix <string: output files name prefix (including full or relative path)>