Here's the post you mentioned:
https://github.com/Xinglab/rmats-turbo/issues/17That post describes what rMATS requires to detect a retained intron event. It needs the two exons from the skipping isoform (an upstream exon and a downstream exon) and the junction between those two exons. It also needs an exon which goes from the upstream exon start to the downstream exon end.
The IGV image shows that there is read coverage in the intron regions. rMATS can count those reads toward the inclusion isoform of a retained intron event that it already detected, but those reads won't help rMATS detect the event.
rMATS just uses the lines from the gtf with exon as the third column. It uses the coordinates from that line and also the gene_id, transcript_id, and gene_name attributes. You could add an exon line to get rMATS to detect a retained intron event. The file you attached has a transcript with these two consecutive exons: (119651380, 119651855), (119669851, 119670177). You could add this line to the gtf to get rMATS to detect a retained intron event:
10 ensembl_havana exon 119651380 119670177 . + . gene_id "ENSG00000151929"; transcript_id "ri_1"; gene_name "BAG3";
Eric