Entering edit mode
3.2 years ago
kk.mahsa
▴
150
how can I speed up the HaplotypeCaller command running?
input bam file is about 16G and running time using the below command is about 15 hours.
java -Xmx64G -jar GenomeAnalysisTK.jar -nt 1 -nct 34 -T HaplotypeCaller -R Renamed.fasta -I realigned.bam -o raw_variants.g.vcf.gz -ERC GVCF
GATK version: 3.7
CPU: 2.2 * 48
RAM: 251G
run in parallel, for each chromosome
I think you should consider this command for Haplotypecaller analysis:
Thanks for trying to help but please pay attention to the question before answering. My GATK version is 3.7 not 4. The issue of HaplotypeCaller analysis is about the CPU, not the RAM.
Indeed I missed GATK version. The only way I found to speed up haplotypecaller in earlier version of GATK is to increase
-nct
flag.Thank you