Hello People,
I am analyzing 20 samples RNA-Seq data of leukemia. To this end, I have used the Hisat2-StingTie2 pipeline to analyze the samples and arrive at FPKM counts for each gene. After I have run the complete process, I found that the FPKM values are way too low for calculating Differential gene expression and it seems there is no difference in expression across samples.
B85 B86 B78 B89
Minimum 0 0 0 0
First Quartile 0.004382 0.004093 0.019453 0.011406
Median 0.150255 0.153044 0.167367 0.144218
Third Quartile 1.41 1.463101 1.180386 1.064904
Maximum 120290.64 144817.40 116797.73 119615.86
Skewness 91.670 97.440 86.229 93.291
These FPKM values were taken from StringTie file using -A options. These samples were processed using Illumina truseq stranded total mrna kit alongside ribo-depletion kit and was sequenced on NextSeq 550 with 2X75bp reads (avg 60mil reads per sample). Peculiar thing is Hisat2 have shown >90% mapping and there isn't even rRNA contamination. And on top, I have even mapped the reads to cDNA database which also showed >55% reads mapping.
The commands were as follows:
hisat2 -p 60 --dta -x hsa_GRCh38_index -1 sample_R1_pair.fastq.gz -2 sample_R2_pair.fastq.gz -S sample_map2genom.sam && samtools view -bSh -@ 45 sample_map2genom.sam | samtools sort -@ 45 > sample_map2genom.bam
stringtie ${i}_map2genom.bam -G Homo_sapiens.GRCh38.95.gtf -o sample_assembly_strg.gtf -p 60 -A ${i}_abundance.txt -B
This pipeline has worked great for me before but this particular output is totally puzzling me. Has anyone encountered this before ?? Please advice.
Thanks and regards
rna-seq
stringtie
new tuxedo