mirror of
https://github.com/deepmodeling/Uni-Lab-OS
synced 2026-05-24 22:39:59 +00:00
delete day3 default params
This commit is contained in:
@@ -168,8 +168,12 @@ class PeptideCommonSubmitOptionalParams(TypedDict, total=False):
|
|||||||
parameter_overrides: Annotated[
|
parameter_overrides: Annotated[
|
||||||
List[Dict[str, Any]],
|
List[Dict[str, Any]],
|
||||||
Field(
|
Field(
|
||||||
default=[{"m": 0, "n": 0, "Key": "Example", "Value": "example value"}],
|
default_factory=list,
|
||||||
description="参数覆盖列表:Key 和 Value 必填,m/n 可选;省略 m/n 时 Key 必须唯一匹配。",
|
description=(
|
||||||
|
"参数覆盖列表,默认留空(不覆盖)。"
|
||||||
|
"如需覆盖子工作流某个步骤参数,按 [{\"Key\": \"参数名\", \"Value\": \"值\", \"m\": 0, \"n\": 0}] 格式填写。"
|
||||||
|
"Key 必须与 Bioyond 子工作流里某个 step 参数名精确匹配;m/n 可选,省略时 Key 在工作流内必须唯一。"
|
||||||
|
),
|
||||||
),
|
),
|
||||||
]
|
]
|
||||||
border_number: Annotated[int, Field(default=1, description="LIMS 创建订单 borderNumber,默认 1。")]
|
border_number: Annotated[int, Field(default=1, description="LIMS 创建订单 borderNumber,默认 1。")]
|
||||||
|
|||||||
Reference in New Issue
Block a user