important-hamburger-34837
08/07/2024, 4:23 PMglamorous-carpet-83516
08/08/2024, 7:25 AMglamorous-carpet-83516
08/08/2024, 7:25 AMimportant-hamburger-34837
08/08/2024, 7:26 AMimportant-hamburger-34837
08/08/2024, 7:27 AMglamorous-carpet-83516
08/08/2024, 7:30 AM@workflow
def subwf(file_exist: bool) -> typing.Optional[float]:
return (
conditional("test")
.if_(file_exist is True)
.then(other_wf(....))
.else_()
.then(echo())
)
@workflow
def wf():
file_exist = check_input_files(...)
subwf(file_exist=file_exist)
glamorous-carpet-83516
08/08/2024, 7:30 AMglamorous-carpet-83516
08/08/2024, 7:31 AMglamorous-carpet-83516
08/08/2024, 7:31 AMimportant-hamburger-34837
08/08/2024, 7:31 AMglamorous-carpet-83516
08/08/2024, 7:32 AM