diff --git a/communities/biodiversity/lab/sections/2_tools.yml b/communities/biodiversity/lab/sections/2_tools.yml
index a8bcdbb8..5b85cc5e 100644
--- a/communities/biodiversity/lab/sections/2_tools.yml
+++ b/communities/biodiversity/lab/sections/2_tools.yml
@@ -1,17 +1,6 @@
id: tools
title: Tools
tabs:
-- id: more_tools
- title: More tools !
- heading_md: Request a new tools or look at the complete list
- content:
- - title_md: Request a new tool or installation of tool
- description_md: If one of the tools listed here can not be open, it means it
- is not installed on this server. Please contact the support.
- - title_md: See the complete tool list
- description_md: Our comprehensive curated tool list is available via https://galaxyproject.github.io/galaxy_codex/communities/biodiversity/resources/.
- id: de-novo_assembly
title: De-novo assembly
heading_md: 'Top 10 most used tools* for the EDAM operation: De-novo assembly
@@ -400,3 +389,14 @@ tabs:
fastk_histex
fastk_logex
+- id: request_tools
+ title: Request tools
+ heading_md: Request a new tools or look at the complete list
+ content:
+ - title_md: Request a new tool or installation of tool
+ description_md: If one of the tools listed here can not be open, it means it
+ is not installed on this server. Please contact the support.
+ - title_md: See the complete tool list
+ description_md: Our comprehensive curated tool list is available via https://galaxyproject.github.io/galaxy_codex/communities/biodiversity/resources/.
diff --git a/communities/biodiversity/lab/sections/4_tutorials.yml b/communities/biodiversity/lab/sections/4_tutorials.yml
index c7e1584f..4485cee9 100644
--- a/communities/biodiversity/lab/sections/4_tutorials.yml
+++ b/communities/biodiversity/lab/sections/4_tutorials.yml
@@ -3,7 +3,7 @@ title: Tutorials
tabs:
- id: assembly
title: Assembly
- heading_md: 'Top 10 most visited tutorials for the Topic : Assembly'
+ heading_md: 'Top 10 most visited tutorials for the Topic : Assembly.
Visitors : Number of unique visitors automatically calculated using Plausible.'
content:
- title_md: "Unicycler Assembly\n (Visitors: 3594287)"
description_md: Tutorial stored in Assembly topic on the Galaxy Training
@@ -88,7 +88,7 @@ tabs:
button_icon: tutorial
- id: ecology
title: Ecology
- heading_md: 'Top 10 most visited tutorials for the Topic : Ecology'
+ heading_md: 'Top 10 most visited tutorials for the Topic : Ecology.
Visitors : Number of unique visitors automatically calculated using Plausible.'
content:
- title_md: "Metabarcoding/eDNA through Obitools\n (Visitors: 4791)"
description_md: Tutorial stored in Ecology topic on the Galaxy Training
@@ -163,7 +163,7 @@ tabs:
button_icon: tutorial
- id: genome_annotation
title: Genome Annotation
- heading_md: 'Top 10 most visited tutorials for the Topic : Genome Annotation'
+ heading_md: 'Top 10 most visited tutorials for the Topic : Genome Annotation.
Visitors : Number of unique visitors automatically calculated using Plausible.'
content:
- title_md: "Refining Genome Annotations with Apollo (prokaryotes)\n (Visitors:
3356097)"
diff --git a/communities/microgalaxy/lab/sections/4_tools.yml b/communities/microgalaxy/lab/sections/4_tools.yml
index d4fef133..0332a865 100644
--- a/communities/microgalaxy/lab/sections/4_tools.yml
+++ b/communities/microgalaxy/lab/sections/4_tools.yml
@@ -1,19 +1,6 @@
id: tools
title: Community curated tools
tabs:
-- id: more_tools
- title: More tools !
- heading_md: Request a new tools or look at the complete list
- content:
- - title_md: Request a new tool or installation of tool
- description_md: "If one of the tools listed here can not be open, it means it
- is not installed on this server. Please contact the support.\n If the tool is not listed here, you can request
- it by contacting the microGalaxy community: microgalaxy@lists.galaxyproject.org"
- - title_md: See the complete tool list
- description_md: Our comprehensive curated tool list is available via https://galaxyproject.github.io/galaxy_codex/communities/microgalaxy/resources/.
- id: antimicrobial_resistance_prediction
title: Antimicrobial resistance prediction
heading_md: 'Top 10 most used tools* for the EDAM operation: Antimicrobial resistance
@@ -1072,3 +1059,16 @@ tabs:
phyloseq_plot_richness
phyloseq_tax_glom
+- id: request_tools
+ title: Request tools
+ heading_md: Request a new tools or look at the complete list
+ content:
+ - title_md: Request a new tool or installation of tool
+ description_md: "If one of the tools listed here can not be open, it means it
+ is not installed on this server. Please contact the support.\n If the tool is not listed here, you can request
+ it by contacting the microGalaxy community: microgalaxy@lists.galaxyproject.org"
+ - title_md: See the complete tool list
+ description_md: Our comprehensive curated tool list is available via https://galaxyproject.github.io/galaxy_codex/communities/microgalaxy/resources/.
diff --git a/sources/bin/extract_galaxy_tools.py b/sources/bin/extract_galaxy_tools.py
index 91f80cbc..0ef9770b 100644
--- a/sources/bin/extract_galaxy_tools.py
+++ b/sources/bin/extract_galaxy_tools.py
@@ -955,7 +955,7 @@ def fill_lab_tool_section(
"""
tabs = []
for element in lab_section["tabs"]:
- if element["id"] == "more_tools":
+ if element["id"] == "request_tools":
tabs.append(element)
for grp_id, group in top_items_per_category.groupby("Category"):
diff --git a/sources/bin/extract_gtn_tutorials.py b/sources/bin/extract_gtn_tutorials.py
index 94b9fa20..1da1dad6 100644
--- a/sources/bin/extract_gtn_tutorials.py
+++ b/sources/bin/extract_gtn_tutorials.py
@@ -377,7 +377,7 @@ def fill_lab_tutorial_section(
{
"id": group_id.replace(" ", "_").lower(),
"title": group_id,
- "heading_md": f"Top 10 most visited tutorials for the Topic : {group_id}",
+ "heading_md": f"Top 10 most visited tutorials for the Topic : {group_id}.
Visitors : Number of unique visitors automatically calculated using Plausible.",
"content": tutorial_entries,
}
)