in reply to Re^2: Enquiry on memory usage
in thread Enquiry on memory usage
Sure. I ran the following command which creates a 1 million key HoHoH, and then pauses:
perl -e"$h{ $_ }{1} = { 1 .. 4 } for 1..1e6; <>"
I then looked at my process monitor and saw that it required 600MB of memory, so I multiplied by 3 (the number of files) to come up with ~1.8GB. I've made a lot of assumptions. eg. that the chromosomes within the 3 files substantially overlap. I could have multiplied by 5 and arrived at 3GB for example. My guess is that your actual requirement will be somewhere between.
But either way, the total memory requirement is very unlikely to seriously threaten your 50GB maximum, so there was no need to suggest that you change your methods.
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^4: Enquiry on memory usage
by faozhi (Acolyte) on May 08, 2009 at 12:39 UTC |