great response. thank for mentioning this one. Ill definitely try oarfish. would you recommend running it with the raw sequencing files or is it better to run it against the aligned bam files?
alignment-based:
$ REFERENCE='Mmu.GrCm39.cdna.fa'
$ minimap2 -t 30 --eqx -N 100 -ax map-ont ${REFERENCE} file.fastq | samtools view -@24 -b -o alignments.bam
$ oarfish -j 30 -a alignments.bam -o sample1 --filter-group no-filters --model-coverage
or reads-based:
$ oarfish -j 30 --reads file.fastq --annotated ${REFERENCE} --seq-tech ont-drna -o sample1 \
--filter-group no-filters --model-coverage
In case you were not aware ONT also provides a transcriptome workflow for long reads: https://github.com/epi2me-labs/wf-transcriptomes
Thanks for the comment. I am aware of the workflow. I saw they use StringTie for quantification. I've had good experience with the pseudo-alignment tools such as kallisto and salmon in the past for bulk-RNA projects, and thought I could apply it here as well.