Thanks, this is really helpful. So I would do:
Set up the exons/splice sites
hisat2_extract_splice_sites.py annotation.gtf > splicesites.tsv
hisat2_extract_exons.py annotation.gtf > exons.tsv
Build index
hisat2-build --ss ./splicesites.tsv --exon ./exons.tsv assembly.fa organism_A
hisat2 -> samtools -> stringtie
hisat2 --dta -x ./assembly -1 ./reads/R1.fastq -2 ./reads/R2.fastq | samtools view -Su | samtools sort - | stringtie -G annotation.gtf -A sample_counts.tsv
Does the above command look correct?