From 17d726a4e3dc45aa5f9fb259845bb2abb16be330 Mon Sep 17 00:00:00 2001
From: Remi  PLANEL <rplanel@pasteur.fr>
Date: Tue, 7 May 2024 08:37:41 +0200
Subject: [PATCH] adjust gene operon size

---
 components/OperonStructure.vue               | 2 +-
 components/content/SystemOperonStructure.vue | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/components/OperonStructure.vue b/components/OperonStructure.vue
index 98dda5e6..01c2965b 100644
--- a/components/OperonStructure.vue
+++ b/components/OperonStructure.vue
@@ -35,7 +35,7 @@ const margin = ref<PlotMargin>({
 const gbContainer = ref(null)
 const geneToHighlight = ref<string | null>(null)
 const snackbar = ref(false)
-const innerPaddingRatio = ref<number>(0.05)
+const innerPaddingRatio = ref<number>(0.08)
 // const color = d3.scaleOrdinal(d3.schemeCategory10);
 const domain = computed(() => {
     const genes = toValue(computedGenes)
diff --git a/components/content/SystemOperonStructure.vue b/components/content/SystemOperonStructure.vue
index c0613ff8..3611318a 100644
--- a/components/content/SystemOperonStructure.vue
+++ b/components/content/SystemOperonStructure.vue
@@ -23,7 +23,7 @@ const { system, subsystem, structures, subsystems } = props
 const client = useMeiliSearchRef()
 
 const pending = ref<boolean>(false)
-const sizeGene = ref<number>(100)
+const sizeGene = ref<number>(108)
 const maxOperonSize = toRef(props, "maxOperonSize")
 const msIndexName = ref<'systemoperonstruct'>("systemoperonstruct")
 const msResponse = ref<SearchResponse<StructureOperonGene> | undefined>(undefined)
-- 
GitLab