From dba9602e5fd148c1af7f4e1d23c8a13436bbe6e6 Mon Sep 17 00:00:00 2001 From: David Lougheed Date: Wed, 22 Nov 2023 15:41:34 -0500 Subject: [PATCH] fix: grammar in workflow name/desc --- src/api/workflows/main.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/api/workflows/main.go b/src/api/workflows/main.go index 44fb75f..6923b81 100644 --- a/src/api/workflows/main.go +++ b/src/api/workflows/main.go @@ -10,8 +10,8 @@ type WorkflowSchema map[string]interface{} var WORKFLOW_VARIANT_SCHEMA WorkflowSchema = map[string]interface{}{ "ingestion": map[string]interface{}{ "vcf_gz": map[string]interface{}{ - "name": "Compressed-VCF Elasticsearch Indexing", - "description": "This ingestion workflow will validate and ingest a BGZip-Compressed-VCF into Elasticsearch.", + "name": "Compressed VCF Elasticsearch Indexing", + "description": "This ingestion workflow will validate and ingest a BGZip-compressed VCF into Elasticsearch.", "data_type": "variant", "tags": []string{"variant"}, "file": "vcf_gz.wdl",