diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index b27c536ef36d5701a1a0f6180951348747f32e56..10709c69636589ae9baf91e15eb11bae2566ddb4 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -32,15 +32,16 @@ cache:
 
 stages:
  
+
+  - zotero
+  - get-meili-key
+  - build
+  # - build-wiki
   - delete-release
   - build-df-cli
   - lint
-  - get-data
   - deploy-meilisearch
   - update-meilisearch-indexes
-  - get-meili-key
-  - build
-  # - build-wiki
   - deploy
   # - load-website
 
@@ -112,6 +113,7 @@ build:df-wiki-cli:
     #     sleep 1
     #     kubectl -n=${KUBE_NAMESPACE} get po
     #   done
+  when: manual
 
 
 deploy:meilisearch:dev:
@@ -228,14 +230,13 @@ lint:
       --file data/list-systems.json
       --document systems
   allow_failure: false
+  when: manual
 
 
 update-meilisearch-index:dev:
   rules:
     - if: $CI_COMMIT_BRANCH != "main"
   extends: .update-meilisearch-index
-  needs: 
-    - deploy:meilisearch:dev
   variables:
     MEILI_HOST: "https://${MEILI_HOST_DEV}"
 
@@ -244,8 +245,6 @@ update-meilisearch-index:prod:
   rules:
     - if: $CI_COMMIT_BRANCH == "main"
   extends: .update-meilisearch-index
-  needs: 
-    - deploy:meilisearch:prod
   variables:
     MEILI_HOST: "https://${MEILI_HOST_PROD}"
 
@@ -272,8 +271,6 @@ update-meilisearch-index:prod:
 
 set-meili-env:dev:
   extends: .set-meili-env
-  needs: 
-    - deploy:meilisearch:dev
   variables:
     MEILI_HOST: "https://${MEILI_HOST_DEV}"
   rules:
@@ -289,7 +286,7 @@ set-meili-env:prod:
 ##############################
 get-zotero:
   extends: .df-wiki-cli-run
-  stage: get-data
+  stage: zotero
   script:
     - df-wiki-cli articles --key ${ZOTERO_API_KEY} --output content/_data/_articles.json
   artifacts:
diff --git a/components/content/RefseqDb.vue b/components/content/RefseqDb.vue
index d9e22596ef8408d5c969f2e403128a9ea1387eac..4056d43c96cf82ff27325ab12acce526f2dca17f 100644
--- a/components/content/RefseqDb.vue
+++ b/components/content/RefseqDb.vue
@@ -104,7 +104,7 @@ const availableTaxo: Ref<string[]> = ref([
 ]);
 
 const scaleTypes = ref<string[]>(['linear', 'sqrt', 'log', 'symlog'])
-const selectedTaxoRank = ref("phylum");
+const selectedTaxoRank = ref("Superkingdom");
 
 const headers = ref([
     { title: "Replicon", key: "replicon" },
@@ -284,7 +284,7 @@ const binPlotOptions = ref({
     grid: true,
     x: { tickRotate: 90, tip: true, label: "Systems" },
     // y: { tickFormat: 's' },
-    color: { scheme: "turbo", legend: true },
+    color: { scheme: "plasma", legend: true },
 })
 
 const binPlotDataOptions = computed(() => {
diff --git a/content/1.help/2.Contributing-Wiki.md b/content/1.help/2.Contributing-Wiki.md
index bfd09141042fd6ca92265e6e7f05f07c94ebb0b2..d30d0bfda6f77f9dd195341e6ff09c3696f7e760 100644
--- a/content/1.help/2.Contributing-Wiki.md
+++ b/content/1.help/2.Contributing-Wiki.md
@@ -98,6 +98,16 @@ dataUrls:
 ::
 ```
 
+
+**3. To edit the Experimental validation section**
+
+This part is a bit tricky to edit. Your first option is to create an issue or send us an email and we'll do it on our side. You need to provide the reference, in which bug it was discovered, in which bug it was expressed and against which phages it was effective.
+
+The second option is that you can try within this live editor : https://mermaid.live/
+
+You can copy paste everything that is within `<mermaid></mermaid>` tags in the editor field of the [live editor](https://mermaid.live/), it should reproduce what you site on the website. From there you can try to modify it until you get what you want.
+Here is the documentation about mermaid (the software behind this syntax) : https://mermaid.js.org/intro/
+
 **Custom containers:**
 
 Custom containers can be defined by their types, titles, and contents.
diff --git a/layouts/db.vue b/layouts/db.vue
index 7808738ec9ed14aefd2e76861829ea37e86958fe..a6e72d31115755c207165c2ebf3047913e149d26 100644
--- a/layouts/db.vue
+++ b/layouts/db.vue
@@ -4,7 +4,7 @@ const { page } = useContent();
 
 </script>
 <template>
-    <LayoutWrapper :title="page?.title" :fluid="true" :toc="false" :edit="false" :nav-drawer="false">
+    <LayoutWrapper :title="page?.title" :fluid="true" :toc="false" :edit="false" :nav-drawer="true">
         <slot />
     </LayoutWrapper>
 </template>