Skip to content

Commit

Permalink
fix: workflow inputs
Browse files Browse the repository at this point in the history
  • Loading branch information
davidlougheed committed Nov 22, 2023
1 parent 0993d31 commit 9b7a1ce
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions src/api/workflows/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -33,18 +33,16 @@ var WORKFLOW_VARIANT_SCHEMA WorkflowSchema = map[string]interface{}{
"type": "enum",
"required": true,
"values": []c.AssemblyId{a.GRCh38, a.GRCh37},
"default": "GRCh38",
},
{
"id": "filter_out_references",
"type": "enum",
"type": "boolean",
"required": true,
"values": []string{"true", "false"}, // simulate boolean type
"default": "false",
},
{
"id": "gohan_url",
"type": "service-kind",
"type": "service-url",
"required": true,
"injected": true,
"service_kind": "gohan",
Expand Down

0 comments on commit 9b7a1ce

Please sign in to comment.