-
Notifications
You must be signed in to change notification settings - Fork 45
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
resource allocation #116
Comments
You want 3GB per CPU, so you will need to configure DALIGNER that way. By default it uses 4 CPUs per task, so you need For job submissions,
That will give you 4 CPUs per task, which means you will end up with . However, some tasks benefit from more, and some need only 1. You might want to override these per-task-group. Here is a ton of documentation: |
Thanks very much for your explanation.
So sorry for these annoying questions. I am a beginner in this area and your explanation would be appreciated very much! |
Yes.
Basically. DBsplit chooses the block size. Given that, you can assume how much memory daligner needs (and assume 4 cores). You need to pass that to daligner in its
Unfortunately, we've been a bit lax in that. We're working with other systems internally.
I'd rather not starting helping with job-submission systems. You're much better off talking to your sysadmin and some other resource. Cheers! |
Hi, I have questions about the job configuration options:
[job.defaults]
job_type=slurm
pwatcher_type=blocking
JOB_QUEUE = test
JOB_NAME = 200kb_test
MB = 32768
NPROC = 12
njobs = 32
submit = srun --wait=0 -p ${JOB_QUEUE} -J ${JOB_NAME} -o ${JOB_STDOUT} -e ${JOB_STDERR} --mem-per-cpu=${MB}M --cpus-per-task=${NPROC} ${JOB_SCRIPT}
I work on a cluster that has 24 cores and 65G RAM per node. Should I set NPROC=24 MB=2700 (65/24)?
How to set
njobs
? How many jobs are needed to run for a 1.3G plant genome with about 100X pacbio reads?Thanks
The text was updated successfully, but these errors were encountered: