Skip to content
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

[qob] Support loading RGs from FASTA files #12736

Merged
merged 12 commits into from
Apr 10, 2023
Merged
2 changes: 0 additions & 2 deletions batch/batch/front_end/front_end.py
Original file line number Diff line number Diff line change
Expand Up @@ -925,8 +925,6 @@ async def _create_jobs(userdata: dict, job_specs: dict, batch_id: int, update_id
raise web.HTTPBadRequest(reason='invalid cpu for jvm jobs. must be 1, 2, 4, or 8')
if 'memory' in resources and resources['memory'] == 'lowmem':
raise web.HTTPBadRequest(reason='jvm jobs cannot be on lowmem machines')
if 'storage' in resources:
raise web.HTTPBadRequest(reason='jvm jobs may not specify storage')
if machine_type is not None:
raise web.HTTPBadRequest(reason='jvm jobs may not specify machine_type')
if spec['process']['jar_spec']['type'] == 'git_revision':
Expand Down
Loading