Use when aligning long RNA-seq reads with STARlong through the CPU-dispatch wrapper installed in this environment.
Shell wrapper around multiple STARlong-* binaries. It chooses the best SIMD build available for the current CPU (avx2, avx, sse4.1, ssse3, sse3, sse2, sse) and otherwise falls back to STARlong-plain, while exposing the normal STARlong command-line interface.
STARlong --genomeDir /path/to/index --readFilesIn reads.fastq/home/vimalinx/miniforge3/envs/bio/bin/STARlong2.7.11bSJ.out.tab# Build a genome index
STARlong \
--runMode genomeGenerate \
--genomeDir starlong_index \
--genomeFastaFiles genome.fa \
--sjdbGTFfile genes.gtf \
--runThreadN 16
# Align long reads
STARlong \
--genomeDir starlong_index \
--readFilesIn longreads.fastq \
--runThreadN 16
# Align gzipped reads and emit coordinate-sorted BAM
STARlong \
--genomeDir starlong_index \
--readFilesIn longreads.fastq.gz \
--readFilesCommand zcat \
--outSAMtype BAM SortedByCoordinate \
--runThreadN 16
--sjdbGTFfile for splice annotations.STARlong wrapper rather than hard-coding one SIMD binary unless you specifically need a fixed backend.--readFilesCommand zcat or a similar decompressor for compressed inputs.STARlong is a wrapper script, not the aligner binary itself. bash -x STARlong --version on this host showed it selecting STARlong-avx2.--help shows the generic STAR usage banner (Usage: STAR ...) because the wrapper forwards directly to the selected backend.--version works and returned 2.7.11b locally.versionGenome 2.7.4a as the earliest compatible genome index version for this release.--runMode genomeGenerate must be plain text and cannot be zipped.outSAMtype SAM), so request BAM explicitly when needed.winReadCoverageRelativeMin and winReadCoverageBasesMin; adjust them only if you intentionally tune long-read sensitivity.