-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathexecute.py
33 lines (31 loc) · 1001 Bytes
/
execute.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
from flytekit.remote import FlyteRemote
from flytekit.configuration import Config
remote = FlyteRemote(
config=Config.for_sandbox(),
default_project="flytesnacks",
default_domain="development",
)
# wf = remote.register_script(
# calling_wf,
# version="v2",
# source_path="../",
# module_name="calling_wf",
# )
# fetched_wf = remote.fetch_workflow(name="workflows.simple_variant_calling.calling_wf")
fet_lp = remote.fetch_launch_plan(name="workflows.simple_variant_calling.calling_wf")
execution = remote.execute(
fet_lp,
inputs={
"seq_dir": "s3://my-s3-bucket/my-data/sequences",
"ref_path": "s3://my-s3-bucket/my-data/refs/GRCh38_short.fasta",
},
)
# execution = remote.execute_local_workflow(
# # calling_wf,
# # fetched_wf,
# inputs={
# "seq_dir": "s3://my-s3-bucket/my-data/sequences",
# "ref_path": "s3://my-s3-bucket/my-data/refs/GRCh38_short.fasta"
# },
# )
print(remote.generate_console_url(execution))