@team I would suggest a very simple solution for this kind of issues.
If we have a job_type
variable available in the submission script, we would be able to adjust the required resources on the job_type level and not on the lane level, which is drastically more convenient for both users and admins (of course having this configurable in web interface would be ideal, but I understand that it would require more development).
This is a single-line modification (3.3.2-220824):
--- cryosparc_master/cryosparc_command/command_core/__init__.py.orig
+++ cryosparc_master/cryosparc_command/command_core/__init__.py
@@ -2289,2 +2289,3 @@
'cryosparc_username' : job_username,
+ 'job_type' : job_doc['job_type'],
}