File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 7777 "mosflm_strategy = dlstbx.wrapper.mosflm_strategy:MosflmStrategyWrapper" ,
7878 "mr_predict = dlstbx.wrapper.mr_predict:MRPredictWrapper" ,
7979 "mrbump = dlstbx.wrapper.mrbump:MrBUMPWrapper" ,
80+ "pandda_xchem = dlstbx.wrapper.pandda_xchem:PanDDAWrapper" ,
81+ "pandda_post = dlstbx.wrapper.pandda_post:PanDDApostWrapper" ,
82+ "pandda_rhofit = dlstbx.wrapper.pandda_rhofit:PanDDARhofitWrapper" ,
8083 "phaser_ellg = dlstbx.wrapper.phaser_ellg:PhasereLLGWrapper" ,
8184 "rlv = dlstbx.wrapper.rlv:RLVWrapper" ,
8285 "scaleit = dlstbx.wrapper.scaleit:ScaleitWrapper" ,
116119 "DLSPerImageAnalysis = dlstbx.services.per_image_analysis:DLSPerImageAnalysis" ,
117120 "DLSReverseBridge = dlstbx.services.bridge_reverse:DLSReverseBridge" ,
118121 "DLSTrigger = dlstbx.services.trigger:DLSTrigger" ,
122+ "DLSTriggerXChem = dlstbx.services.trigger_xchem:DLSTriggerXChem" ,
119123 "DLSValidation = dlstbx.services.validation:DLSValidation" ,
120124 "DLSXRayCentering = dlstbx.services.xray_centering:DLSXRayCentering" ,
121125 "CloudStats = dlstbx.services.cloudstats:CloudStats" ,
Original file line number Diff line number Diff line change @@ -41,6 +41,7 @@ class JobSubmissionParameters(pydantic.BaseModel):
4141 qsub_submission_parameters : Optional [str ] = (
4242 None # temporary support for legacy recipes
4343 )
44+ array : Optional [str ] = None
4445
4546
4647class JobSubmissionValidationError (ValueError ):
@@ -106,6 +107,7 @@ def submit_to_slurm(
106107 "partition" : params .partition ,
107108 "qos" : params .qos ,
108109 "tasks" : params .tasks ,
110+ "array" : params .array ,
109111 }
110112 if params .min_memory_per_cpu :
111113 jdm_params ["memory_per_cpu" ] = slurm .models .Uint64NoVal (
You can’t perform that action at this time.
0 commit comments