From 4e5297ecf1e1b66d3f27ebdf064fbc6a4e5c3638 Mon Sep 17 00:00:00 2001 From: David Lougheed Date: Tue, 5 Nov 2024 16:02:24 -0500 Subject: [PATCH] chore: fix confusing comment --- src/api/services/ingestion.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/api/services/ingestion.go b/src/api/services/ingestion.go index 0547534..14ecf18 100644 --- a/src/api/services/ingestion.go +++ b/src/api/services/ingestion.go @@ -483,7 +483,7 @@ func (i *IngestionService) ProcessVcf( // filter field type by column name if key == "chrom" { - // Strip out all non-numeric characters + // Strip out chr prefix value = strings.ReplaceAll(value, "chr", "") if !preMadeContigIndices {