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)