Skip to content

Commit 2a97220

Browse files
authored
Added executor type for cromwell (#77)
1 parent eadccea commit 2a97220

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

cirro/api/models/process.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,9 @@ class Executor(Enum):
1111
INGEST = 'INGEST'
1212
"Process type used when manually uploading files"
1313
NEXTFLOW = 'NEXTFLOW'
14-
"Processes that are ran using Nextflow"
14+
"Processes that are run using Nextflow"
15+
CROMWELL = 'CROMWELL'
16+
"Processes that are run using Cromwell"
1517

1618

1719
@dataclass(frozen=True)

0 commit comments

Comments
 (0)