Use when aligning long FASTQ reads to a reference genome with Subread's long-read aligner, optionally in RNA-seq mode.
sublong -i <index_name> -r <input.fastq> -o <output.bam>/home/vimalinx/miniforge3/envs/bio/bin/sublongreferences/help.md-X flag# Align long genomic reads and write BAM output
sublong -i long_index -r long_reads.fastq.gz -o long_reads.bam -T 8
# Run in long-read RNA-seq mode
sublong -i transcriptome_index -r isoform_reads.fastq.gz -o isoform_reads.bam -X -T 8
# Emit SAM instead of BAM
sublong -i long_index -r long_reads.fastq.gz -o long_reads.sam --SAMoutput
subread-buildindex -F -B.-X.sublong with an explicit output file and thread count.--SAMoutput explicitly if SAM format is required-h is not a true help switch here. Local testing shows --help and --version both print usage text and then complain about the unrecognized option; -v is the real version flag.-o is mandatory for sublong; unlike some other Subread tools, output is not optional.-X switches on RNA-seq mode but does not replace the need for an index compatible with the same reference build you expect downstream.