You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I am trying to use JunctionSeq to test for differential splicing at novel splice junctions identified in a gene. This gene of interest is strongly differentially expressed (as identified by DESeq2). However, the exonic feature of this gene is flagged as not-testable because of "ALL_ZERO". JunctionSeq shows that there are reads in the "normCount" column, but not in the "normGeneCount" column. Why?
The text was updated successfully, but these errors were encountered:
Heh. That is a very oddball case indeed.
So the two counts for each locus are:
(1) the number of reads that intersect with exon X. This is the feature
count.
(2) the number of reads that intersect with the gene but are NOT on exon X.
This is the "gene count".
In other words, the gene count = (# reads on the gene) - (# reads on exon X)
So in your case, it looks like all of the reads on this gene also intersect
with exon 1. Hence the zero.
This clearly is going to make it impossible to detect differential usage of
that exon. All your data for the gene is on that exon so you have nothing
to compare it to.
Hi -
I am trying to use JunctionSeq to test for differential splicing at novel splice junctions identified in a gene. This gene of interest is strongly differentially expressed (as identified by DESeq2). However, the exonic feature of this gene is flagged as not-testable because of "ALL_ZERO". JunctionSeq shows that there are reads in the "normCount" column, but not in the "normGeneCount" column. Why?
The text was updated successfully, but these errors were encountered: