From 92573a3e4fbe8d0b5ff04fa95f39e187a9bbdc53 Mon Sep 17 00:00:00 2001 From: bw2 Date: Thu, 31 Oct 2024 15:22:41 -0400 Subject: [PATCH] updated shortTandemRepeatFactory --- browser/src/__factories__/ShortTandemRepeat.ts | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/browser/src/__factories__/ShortTandemRepeat.ts b/browser/src/__factories__/ShortTandemRepeat.ts index 81f0d59a9..716782eeb 100644 --- a/browser/src/__factories__/ShortTandemRepeat.ts +++ b/browser/src/__factories__/ShortTandemRepeat.ts @@ -35,10 +35,10 @@ const shortTandemRepeatFactory = Factory.define(({ params, as sex: 'XY', repunit: 'ACCA', quality_description: 'medium-low', - q_score: 0.6, + q_score: '0.6', distribution: [ - { repunit_count: 3, frequency: 12 }, - { repunit_count: 4, frequency: 123 }, + { repunit_count: 3, frequency: 12, colorByValue: 'low' }, + { repunit_count: 4, frequency: 123, colorByValue: 'high' }, ], }, ], @@ -49,7 +49,7 @@ const shortTandemRepeatFactory = Factory.define(({ params, as short_allele_repunit: 'ACCA', long_allele_repunit: 'GATA', quality_description: 'high', - q_score: 1.0, + q_score: '1.0', distribution: [ { short_allele_repunit_count: 8, long_allele_repunit_count: 9, frequency: 15 }, { short_allele_repunit_count: 8, long_allele_repunit_count: 10, frequency: 19 },