I am analyzing RNAseq data for 12 samples with and without treatment performed on Hiseq illumina platform ( paired end ,100 bp reads, 40 million reads / sample) quality of fastaq files is fine. At this step, I am interested in DGE rather than splicing data.
I used Bowtie integrated in QuasR package for mapping the RNAseq data to reference genome (GRCh38).
The % of reads mapped to reference genome is about 50% in all files, is this % ok to perform DGE
Actually, QuasR uses the Bioconductor packages RBowtie and SpliceMap to map segments of the reads allowing for gaps. 50% is too low. However, the software you are using is suitable for your needs. The problem you have is likely to be not reading the documentation carefully. Note that the default setting of splicedAlignment is FALSE. The default settings are intended to be used with DNA sequencing data, but you have RNA sequencing data. splicedAlignment needs to be TRUE for your case. Many of the reads which would map across splice junctions are probably being discarded by your analysis. You should also provide the R command you used when you ask a question.
Actually, I have tried this at the begining but the problem was that it is very time consuming with splicedAlignment is TRUE . I run the alignmet and after 7 days I did not a single file done. Any advice to increase the speed ( I am using my own PC).
During the development of the QuasR package, "SpliceMap" was chosen for exactly that reason: it is slow, but due to its small memory requirement (among other requirements), it allows you to do the analysis on a PC.
Hi Dario,
Actually, I have tried this at the begining but the problem was that it is very time consuming with
splicedAlignment
is TRUE . I run the alignmet and after 7 days I did not a single file done. Any advice to increase the speed ( I am using my own PC).Thanks
During the development of the QuasR package, "SpliceMap" was chosen for exactly that reason: it is slow, but due to its small memory requirement (among other requirements), it allows you to do the analysis on a PC.
Hans-Rudolf
Hi Hans,
So this is normal then ! How many days do you expect are required per sample. Is there any mean that may speed it a little bit.
Tarek