From f4dc556677da17d0bb44a190c670f07d591739a9 Mon Sep 17 00:00:00 2001 From: Michael Zager Date: Wed, 9 Aug 2023 10:42:06 -0700 Subject: [PATCH] Added executor type for cromwell --- cirro/api/models/process.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/cirro/api/models/process.py b/cirro/api/models/process.py index 0c034a05..67fd8087 100644 --- a/cirro/api/models/process.py +++ b/cirro/api/models/process.py @@ -11,7 +11,9 @@ class Executor(Enum): INGEST = 'INGEST' "Process type used when manually uploading files" NEXTFLOW = 'NEXTFLOW' - "Processes that are ran using Nextflow" + "Processes that are run using Nextflow" + CROMWELL = 'CROMWELL' + "Processes that are run using Cromwell" @dataclass(frozen=True)