-
Notifications
You must be signed in to change notification settings - Fork 1
adding "PacBio processing" to scripts #9
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
Conversation
lucaspatel
left a comment
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Looks good to me.
| #SBATCH -n 1 | ||
| #SBATCH --time {{wall_time_limit}} | ||
| #SBATCH --mem {{mem_in_gb}}G | ||
| #SBATCH -o {{output}}/log-finish.out |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Different log directory for this final job, is that intentional?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
It was, I think I'm gonna put it back where all the rest go in the next PR.
| main_fp, merge_fp = generate_minimap2_processing( | ||
| qclient, job_id, output_dir, parameters) | ||
| all_jids = [] | ||
| for step_id in range(1, total_steps + 1, 1): |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Clever. Do we have a mechanism to handle resubmission if there's a failure in 1+ samples halfway through the steps?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Not yet.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think this will be very useful but not easy to integrate now. Only resubmit for that sample for the failed steps and all steps after it.
jianshu93
left a comment
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
All slurm script look good.
No description provided.