Entering edit mode
2.8 years ago
Anupama
•
0
I'm trying to build an index by using this command
bwa index -p hg19bwaidx -a bwtsw hg19.fa
However, the process keeps getting killed after ~10 minutes. I have 1TB of memory. Here's the error message
[bwa_index] Pack FASTA... Killed
What could be the reason?
1TB is the external hard drive. No, it's not a cluster job.
Hard drive space
!=
memory. What is the output offree -hm
? Meaning how much memory (aka RAM) do you have?Turs out you asked the same before (and apparently deleted it?) and a user already told you it's a memory problem. probably same issue, you confuse memory and disk space BWA Index Killed
It is 99.9% sure simply not enough memory available on your machine.
4GB of RAM is by far not enough. 8GB or better more will be required, see memory consumption of bwa-mem
You need to upgrade your machine or switch to a workstation/server with adequate memory. With 4GB you are not going to do any meaningful analysis these days. Even something like
bowtie2
which has a low memory footprint will likely not run on it.Thank you.