Entering edit mode
7.4 years ago
AB
▴
360
Hi all,
I want to check the integrity of my RNA-Seq samples. I usually use tin.py in the RSeQC package for this purpose. But its very slow. Is there an alternate tool or software I can use ? Or is there a parameter I can add to run it for multiple bam files simultaneously ?
Thanks
Check GNU parallel, see the posts here, here and here
Is RSeQC running slowly because it is spending its time reading files or analyzing them? GNU Parallel won't get around I/O-bound work.
But the
tin.py
is quite slow in computingTIN
as it processes transcripts sequentially. I have a large BAM file of ~35 GB. It took 18 hours to process that. Is there a way to speed it up using multithreading or multiprocessing? Should I split up myBAM
file into smaller BAM files based on chromosomes and then performtin.py
qc?