-
Notifications
You must be signed in to change notification settings - Fork 9
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
How to shorten run time #58
Comments
Hi, have you found a solution for this? I'm getting similar runtimes (12-13 hours) with the following command: I'm thinking of trying to skip the local assembly step with the |
You could use a tool like hyperfine https://github.com/sharkdp/hyperfine to measure the speedup when increasing the amount of threads. I suspect it might be overkill to give the tool more than 8-16 threads. Just use a tiny proportion of the bam like 1-2m reads so hyperfine runs quickly. Then run multiple instances at once eg on several bams concurrently using a bash script, cluster or even just
|
I haven't found a solution yet, I'll try your method ,thank you |
thank you for your ideas,i'll consider it |
When I used whole-transcriptome data for re-alignment, it took nearly 12 hours for one sample. I wanted to know which parameters I could modify to shorten the running time. Here is the parameters I currently use.
java -Xmx16G -jar /home/software/abra2-2.24/target/abra2-2.24-jar-with-dependencies.jar --in ${outDir}/${sample}.bam --out ${outDir}/STAR/${sample}.Realign.bam --ws 300,150 --ref ${ref} --junctions bam --threads 10 --gtf ${gtf} --dist 500000 --sa --sua --tmpdir ${outDir}/STAR/tmp
The text was updated successfully, but these errors were encountered: