Skip to content
3 changes: 3 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -73,6 +73,9 @@
"fast_dp = dlstbx.wrapper.fast_dp:FastDPWrapper",
"fast_ep = dlstbx.wrapper.fast_ep:FastEPWrapper",
"fast_rdp = dlstbx.wrapper.fast_rdp:FastRDPWrapper",
"ffs_index_integrate = dlstbx.wrapper.ffs:IndexIntegrateWrapper",
"ffs_merge = dlstbx.wrapper.ffs:MergeWrapper",
"ffs_spotfind_index_integrate = dlstbx.wrapper.ffs:SpotfindIndexIntegrateWrapper",
"ligand_fit = dlstbx.wrapper.ligand_fit:LigandFitWrapper",
"metal_id = dlstbx.wrapper.metal_id:MetalIdWrapper",
"mosflm_strategy = dlstbx.wrapper.mosflm_strategy:MosflmStrategyWrapper",
Expand Down
21 changes: 21 additions & 0 deletions src/dlstbx/mimas/core.py
Original file line number Diff line number Diff line change
Expand Up @@ -282,6 +282,27 @@ def handle_rotation_end(
)
)

# fast-feedback-service stubs to be added once autoprocessing is desirable
#
# tasks.append(
# mimas.MimasISPyBJobInvocation(
# DCID=scenario.DCID,
# autostart=False,
# recipe="autoprocessing-gpu-processing",
# source="automatic",
# displayname="FFS GPU",
# )
# )
# tasks.append(
# mimas.MimasISPyBJobInvocation(
# DCID=scenario.DCID,
# autostart=False,
# recipe="autoprocessing-gpu-processing-from-spots",
# source="automatic",
# displayname="FFS GPU (from spots)",
# )
# )

xia2_dials_beamline_extra_params: ParamTuple = ()
if scenario.beamline == "i02-1":
xia2_dials_beamline_extra_params = (
Expand Down
Loading