It's my first time doing alignment and I keep getting this message, is this normal?
It's my first time doing alignment and I keep getting this message, is this normal?
Yes, normal and actually something that in 99.99% of cases you don't need. If you inspect the bwa mem C source code you'll see that you also cannot turn this off because the relevant lines miss an argument to respect the verbosity setting of bwa mem (which you should actually be able to set to make the tool less talky), so easiest is to simply ignore it.
For example, here is one line that you could turn off to be printed to screen when verbosity is 3 or higher:
https://github.com/lh3/bwa/blob/master/bwamem_pair.c#L91
And here is the stuff you see on screen without any verbosity switch:
It depends on your storage, the memory available, the CPU speed, number of cores and to some extend on the experiment. I tend to remember that a 30x WGS sample took 12h on our high-performance cluster with 16 cores using a decent node. If the job runs (check by top
) it is fine, get coffee and wait.
it's just an info/log https://github.com/lh3/bwa/blob/139f68fc4c3747813783a488aef2adc86626b01b/bwamem_pair.c#L97
Use of this site constitutes acceptance of our User Agreement and Privacy Policy.