Hi @hartleys
I have RNASeq data for 4 tissue types A,B,C,D. I wish to perform a pairwise comparison of these samples (A-B, B-C, C-D, B-D, A-D) and therefore used the following code:
library(JunctionSeq)
gtf.file <- "./withNovel.forJunctionSeq.gff.gz"
samplesheet <- read.csv("samplesheet.csv", header = T, stringsAsFactors=FALSE)
jscs <- runJunctionSeqAnalyses(sample.files = countFiles,
sample.names = samplesheet$sample.names,
condition=factor(samplesheet$condition),
flat.gff.file = gtf.file,
nCores = 12,
analysis.type = "junctionsAndExons"
)
Also, in results, I get LFC values of merely A-B, A-C, A-D in results. Is there a way to set constrasts like in DESeq2.
However, I get a weird Dispersion plot. What could be the possible reason?

When I run two samples at a time like (B-D) or say (A-B) the exons and junctions follows the trend line:

Hi @hartleys
I have RNASeq data for 4 tissue types A,B,C,D. I wish to perform a pairwise comparison of these samples (A-B, B-C, C-D, B-D, A-D) and therefore used the following code:
Also, in results, I get LFC values of merely A-B, A-C, A-D in results. Is there a way to set constrasts like in DESeq2.

However, I get a weird Dispersion plot. What could be the possible reason?
When I run two samples at a time like (B-D) or say (A-B) the exons and junctions follows the trend line:
