From 8bb9cbb741b3a9b7a85fc0aa3ad14c5d5391ffbd Mon Sep 17 00:00:00 2001 From: Lucas van Dijk Date: Tue, 7 Jan 2025 16:34:23 -0500 Subject: [PATCH] enh: Initial wdl directory structure --- wdl/structs/Structs.wdl | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 wdl/structs/Structs.wdl diff --git a/wdl/structs/Structs.wdl b/wdl/structs/Structs.wdl new file mode 100644 index 0000000..eef96b9 --- /dev/null +++ b/wdl/structs/Structs.wdl @@ -0,0 +1,16 @@ +version 1.0 + +struct RuntimeAttr { + Float? mem_gb + Int? cpu_cores + Int? disk_gb + Int? boot_disk_gb + Int? preemptible_tries + Int? max_retries + String? docker +} + +struct DataTypeParameters { + Int num_shards + String map_preset +}