star-sse3
Quick Start
- Command:
STAR-sse3 --genomeDir /path/to/index --readFilesIn reads.fq - Local executable:
/home/vimalinx/miniforge3/envs/bio/bin/STAR-sse3 - Full reference: See
references/help.mdfor complete options and parameter details
When To Use This Tool
- Build STAR genome indices for RNA-seq alignment.
- Perform splice-aware alignment of short RNA-seq reads against a genome.
- Run STAR modes with the SSE3-optimized STAR binary.
- Generate splice-junction-aware mappings for downstream counting, transcript assembly, or QC.
Common Patterns
# 1) Build a STAR genome index
STAR-sse3 \
--runMode genomeGenerate \
--genomeDir star_index \
--genomeFastaFiles genome.fa \
--sjdbGTFfile genes.gtf \
--runThreadN 16
# 2) Align paired-end gzipped RNA-seq reads
STAR-sse3 \
--genomeDir star_index \
--readFilesIn sample_R1.fastq.gz sample_R2.fastq.gz \
--readFilesCommand zcat \
--runThreadN 16
# 3) Align and emit coordinate-sorted BAM
STAR-sse3 \
--genomeDir star_index \
--readFilesIn sample_R1.fastq.gz sample_R2.fastq.gz \
--readFilesCommand zcat \
--outSAMtype BAM SortedByCoordinate \
--runThreadN 16
Recommended Workflow
- Generate genome index with
--runMode genomeGenerateusing FASTA files and optional GTF annotations - Align reads with
--runMode alignReadsspecifying--genomeDirand--readFilesIn - Set
--runThreadNto match available CPU cores for parallel processing - Collect aligned BAM output and splice junction files from the output directory
Guardrails
- Genome index must exist before alignment; generate it first with
--runMode genomeGenerate - Compressed input files require
--readFilesCommand(e.g.,zcatfor.gzfiles) - Ensure
--genomeSAindexNbasesis scaled appropriately for small genomes