Hi all,
In RNA-seq studies , how can I get the info needed for the calculation of "Mean Inner Distance between Mate Pairs" which is a parameter needed by Tophat?
Hi all,
In RNA-seq studies , how can I get the info needed for the calculation of "Mean Inner Distance between Mate Pairs" which is a parameter needed by Tophat?
I'd generally align to the transcriptome using bowtie2 for each sample, run picard tools (CollectInsertSizeMetrics.jar) on the resulting file. Get the number for MEAN_INSERT_SIZE
, then work out MEAN_INSERT_SIZE - (2 x read length)
I'd generally just run BBMap, which does not require that parameter, as it calculates it automatically. Of course, I'm somewhat biased, as I wrote BBMap. But I have yet to find a scenario where Tophat is a desirable program to run over the alternatives (BBMap or STAR).
Use of this site constitutes acceptance of our User Agreement and Privacy Policy.
Thank you Andrew for your response. I am sorry to ask this but how can I find read length? Is it equal to InsertSize in SRA database?
run the fastq file through fastqc, or look at one of the entries in the fastq and figure out how long the line is, each entry is a single read (plus quality score, header, etc)
Thanks again