Ecoregionalization workflow tutorial

Overview
Creative Commons License: CC-BY Questions:
  • How to use the ecoregionalization workflow?

  • How to construct ecoregions from occurrences species data and environmental data?

Objectives:
  • Learning how to use the ecoregionalization workflow.

  • Learning about boosted regression trees algorithm.

  • Learning about Silhouette index and select an appropriate number of cluster

  • Learning about Clara clustering algorithm (PAM for large datasets)

  • Create an ecoregionalization map

Requirements:
Time estimation: 2 hours
Supporting Materials:
Published: Sep 16, 2024
Last modification: Sep 18, 2024
License: Tutorial Content is licensed under Creative Commons Attribution 4.0 International License. The GTN Framework is licensed under MIT
version Revision: 3

This tutorial is designed to guide you through the Ecoregionalization Galaxy workflow, demonstrating how to create an ecoregionalization map from occurrences and environmental data using a boosted regression trees model for predictions.

The workflow, consisting of six tools, is intended for processing occurrence data, which should include latitude, longitude and species presence or absence. The tutorial will provide a detailed explanation of inputs, workflow steps, and outputs. This tutorial gives a practical example, highlighting a use case centered on the Dumont d’Urville sea region and benthic invertebrates.

The primary goal of this workflow is to generate species distribution maps and identify ecoregions within the study area. The project’s objective is to offer accessible, reproducible, and transparent IT solutions for processing and analyzing species occurrence data.

This workflow is therefore composed of 6 tools:

  • GeoNearestNeighbor
  • BRT prediction tool
  • TaxaSeeker
  • ClusterEstimate
  • ClaraClust
  • EcoMap

And in this tutorial we will be using 5 more tools to format data before running the ecoregionalization workflow:

  • Advanced cut
  • Column Regex Find And Replace
  • Filter Tabular
  • Merge Columns
  • Interactive JupyterLab and notebook

Let’s delve into the tutorial, outlining each step and tool to manage the creation of ecoregionalization maps.

Ecoregionalization: The process by which a territory is classified into a category of area that respond to the same environmental factors taking into account species information.

Occurrences data: Data showing the presence of a species at a particular location.

Environmental data: Environmental data are any measurement or information that describe environmental processes, location, or conditions.

Boosted regression trees (BRT): Boosted Regression Trees is a kind of regression methodology based on Machine Learning. Unlike conventional regression methods (GLMs, GAMs), BRTs combine numerous basic decision trees to enhance the predictive performance. BRTs can handle complex relationships and interactions among predictors, and it is considered a robust technique that can control outliers and nonlinearity.

Clustering: Clustering is a machine learning method of grouping data points by similarity or distance.

CLARA/PAM : CLARA (Clustering Large Applications), is an extension to k-medoids (PAM) methods to deal with data containing a large number of objects. PAM stands for “Partition Around Medoids”, the PAM algorithm searches for k representative objects in a data set (k medoids) and then assigns each object to the closest medoid in order to create clusters.

Agenda

In this tutorial, we will cover:

  1. Before starting
    1. Environmental data
    2. Occurrence data
    3. Jupyter notebook for the interactive JupyerLab and notebook tool
    4. Get data
  2. Data formatting
    1. Keep data columns that we need with Advanced Cut
    2. Replace empty space with NAs with Column Regex Find And Replace
    3. Remove lines with NAs with Filter Tabular
    4. Merge taxa columns with Merge Columns
    5. Remove columns no longer needed with Advanced Cut
    6. Obtain final data file with Interactive JupyterLab Notebook
  3. Ecoregionalization workflow
    1. Merge environment and occurence file with GeoNearestNeighbor
    2. Predicting taxa distribution with BRT tool prediction
    3. Collecting the list of taxa with TaxaSeeker
    4. Determine the optimal number of clusters with ClusterEstimate
    5. Build ecoregional clusters with ClaraClust
    6. Build a ecoregionalization map with EcoMap
  4. Conclusion

Before starting

This part will present the type of data you need to run the ecoregionalization workflow. This data will be downloaded in the next part of the tutorial.

Environmental data

To run this workflow, you will first need environmental data. This workflow accepts several types of environmental parameters like temperature or soil type. However, there is a mandatory file format, the tabular format (.tsv), and each pixel of the study area must be described in this file by associating latitude and longitude with environmental parameters.

In the use case presented in this tutorial, seventeen abiotic and physical parameters of the Dumont D’Urville sea region are used. They were taken from oceanographic models and in situ measurements Hemery et al. 2011. The physical oceanographic parameters are mean temperature and its standard deviation, mean salinity and its standard deviation, mean current magnitude and its standard deviation, maximum current bearing, maximum current magnitude and sea ice production. Bathymetric parameters are depth, slope, and rugosity. Finally, the seabed substrate composition was characterized by percentages of biogenic carbonate, biogenic silica, gravel, sand, and mud.

Here an example of environmental file input:

long lat Carbo Grav
139.22 -65.57 0.88 28.59
139.25 -65.63 0.88 28.61

Occurrence data

The second data file you will need to run this workflow is an occurrences data file. As defined above, occurrences data are showing the presence (1) or absence (0) of a species at a particular location. This data file also needs to be in tabular format (.tsv) and need to be construct as following:

  • latitude and longitude columns.

  • One column per taxon where each box corresponding to a geographical point is marked 1 if the taxon is present or 0 if the taxon is absent.

Here an example of occurrences data file input:

lat long Acanthorhabdus_fragilis Acarnidae
-65,9 142,3 1 0
-66,3 141,3 0 1

For this tutorial, occurrences data from the Dumont d’Urville sea region will be downloaded from the GBIF. These data were collected as part of the CEAMARC program (The Collaborative East Antarctic Marine Census Hosie et al. 2011) between December 2007 and January 2008 Beaman et al. 2009. Prior to its inclusion in GBIF, these data originated from collections at the Muséum national d’Histoire naturelle (MNHN – Paris). A GBIF filter was used to download only the data of interest, namely the data from the CEAMARC expedition from the Aurora Australis icebreaker. The selected occurrences are invertebrates. In the GBIF query, five collections were selected: the cnidarians collection (IK), the echinoderm collection (IE), the crustaceans collection (IU), the molluscs collection (IM), and the tunicates collection (IT), and only occurrences recorded by “IPEV-AAD-MNHN” which correspond to the CEAMARC expedition.

Jupyter notebook for the interactive JupyerLab and notebook tool

To switch from the occurrence data download from GBIF to the occurrence data supported by the ecoregionalisation workflow, the final step of data preparation use the “Interactive JupyterLab and notebook” tool who needs a jupyter notebook to work. In this Jupyter notebook, we used the pivot_wider function of the tidyr R package to transform our data into a wider format and adapt it to subsequent analyses as part of the Galaxy workflow for ecoregionalization. This transformation allowed us to convert our data to a format where each taxon becomes a separate column. We also took care to fill in the missing values with zeros and to sum the individual counts in case of duplications. Then all data >= 1 are replaced by 1 to have only presence (1) or abscence (0) data.

Get data

Hands-on: Data Upload
  1. Create a new history for this tutorial and give it a name (example: “Ecoregionalization workflow”) for you to find it again later if needed.

    To create a new history simply click the new-history icon at the top of the history panel:

    UI for creating new history

    1. Click on galaxy-pencil (Edit) next to the history name (which by default is “Unnamed history”)
    2. Type the new name
    3. Click on Save
    4. To cancel renaming, click the galaxy-undo “Cancel” button

    If you do not have the galaxy-pencil (Edit) next to the history name (which can be the case if you are using an older version of Galaxy) do the following:

    1. Click on Unnamed history (or the current name of the history) (Click to rename history) at the top of your history panel
    2. Type the new name
    3. Press Enter

  2. Import occurrence data file from GBIF, environment file from InDoRES and Jupyter notebook file from InDoRES

    Occurrence data file as a zip file where you will find “occurrence.txt”

    https://api.gbif.org/v1/occurrence/download/request/0030809-240506114902167.zip
    

    Environemental data : “ceamarc_env.tab”

    https://data.indores.fr/api/access/datafile/9777 
    

    Jupyter notebook : “pivot_wider_jupytool_notebook.ipynb”

    https://data.indores.fr/api/access/datafile/9756 
    
    • Copy the link location
    • Click galaxy-upload Upload Data at the top of the tool panel

    • Select galaxy-wf-edit Paste/Fetch Data
    • Paste the link(s) into the text field

    • Press Start

    • Close the window

    As an alternative to uploading the data from a URL or your computer, the files may also have been made available from a Choose remote files:

    1. Click on Upload Data on the top of the left panel
    2. Click on Choose remote files and scroll down to find your data folder or type the folder name in the search box on the top.

    3. click on OK
    4. Click on Start
    5. Click on Close
    6. You can find the dataset has begun loading in you history.

  3. The GBIF link allows you to download a zip file containing multiple information files about the dataset. The file that you need is the ‘occurrence.txt’ file that we will specifically extract on Galaxy in the following step.

  4. Use Unzip a file ( Galaxy version 6.0+galaxy0) to create a data collection in your history where all GBIF archive files will be unzipped

  5. Unhide the “occurence.txt” data file then modify datatype to select the “tabular” one

    If your history contains hidden datasets you will see galaxy-show-hidden “Include hidden” button directly above the dataset display.

    To un-hide datasets:

    • Type visible:hidden in the search box
    • Select datasets you want to un-hide
    • Click the dropdown that would appear at the top of the history;
    • Select “Unhide” option.

    An animated gif showing how to unhide datasets

    Alternatively, you can:

    • click galaxy-show-hidden “Include hidden” button directly above dataset display. This will cause hidden datasets to appear in history along with normal (un-hidden) datasets;
    • hidden datasets are distinguished by having galaxy-show-hidden within dataset box. Clicking on this icon will un-hide a given dataset;

    • Click on the galaxy-pencil pencil icon for the dataset to edit its attributes
    • In the central panel, click galaxy-chart-select-data Datatypes tab on the top
    • In the galaxy-chart-select-data Assign Datatype, select tabular from “New type” dropdown
      • Tip: you can start typing the datatype into the field to filter the dropdown menu
    • Click the Save button

  6. Rename the datasets if needed, notably “9756” by “pivot_wider_jupytool_notebook.ipynb” and “9777” by “ceamarc_env.tab”.

    • Click on the galaxy-pencil pencil icon for the dataset to edit its attributes
    • In the central panel, change the Name field
    • Click the Save button

  7. Check that the datatype of the environment file and occurrence file are tabular.

    • Click on the galaxy-pencil pencil icon for the dataset to edit its attributes
    • In the central panel, click galaxy-chart-select-data Datatypes tab on the top
    • In the galaxy-chart-select-data Assign Datatype, select tabular from “New type” dropdown
      • Tip: you can start typing the datatype into the field to filter the dropdown menu
    • Click the Save button

Data formatting

The first step of this tutorial is data formatting because the GBIF species occurrence file download needs to be in a specific format to be included inside the Ecoregionalization workflow.

Keep data columns that we need with Advanced Cut

Hands-on: Select the columns we need
  1. Advanced Cut ( Galaxy version 9.3+galaxy1) with the following parameters:
    • param-file “File to cut”: occurrence (Input dataset)
    • “Operation”: Keep
    • “Cut by”: fields
    • “Delimited by”: Tab
      • “Is there a header for the data’s columns ?”: Yes
        • “List of Fields”: c['27', '98', '99', '158', '159', '160', '162', '166', '170']
Question
  1. What are the kept columns ?
  1. The columns we kept are : indivdualCount, decimalLatitude, decimalLongitude, phylum, class, order, family, genus, specificEpithet.

Replace empty space with NAs with Column Regex Find And Replace

This step is used to add NAs to replace empty space in the file. We will do that for the four first columns and then remove lines with NA to have a complete dataset.

Hands-on: Replace empty space by NAs for the first column
  1. Column Regex Find And Replace ( Galaxy version 1.0.3) with the following parameters:
    • param-file “Select cells from”: output (output of Advanced Cut tool)
    • “using column”: c1
    • In “Check”:
      • param-repeat “Insert Check”
        • “Find Regex”: ^$
        • “Replacement”: NA
Warning: Pay attention to the regex parameter

The regular expression (“^$”) is used to capture empty cells in the dataframe so that they can be replaced by NA (Not Available). It is not advised to modify this regular expression nor its replacement, as you will encounter problems while running the next parts of the workflow.

Hands-on: Replace empty space by NAs for the second column
  1. Column Regex Find And Replace ( Galaxy version 1.0.3) with the following parameters:
    • param-file “Select cells from”: out_file1 (output of Column Regex Find And Replace on the first column tool)
    • “using column”: c2
    • In “Check”:
      • param-repeat “Insert Check”
        • “Find Regex”: ^$
        • “Replacement”: NA
Hands-on: Replace empty space by NAs for the third column
  1. Column Regex Find And Replace ( Galaxy version 1.0.3) with the following parameters:
    • param-file “Select cells from”: out_file2 (output of Column Regex Find And Replace on the second column tool)
    • “using column”: c3
    • In “Check”:
      • param-repeat “Insert Check”
        • “Find Regex”: ^$
        • “Replacement”: NA
Hands-on: Replace empty space by NAs for the fourth column
  1. Column Regex Find And Replace ( Galaxy version 1.0.3) with the following parameters:
    • param-file “Select cells from”: out_file3 (output of Column Regex Find And Replace on the third column tool)
    • “using column”: c4
    • In “Check”:
      • param-repeat “Insert Check”
        • “Find Regex”: ^$
        • “Replacement”: NA
  2. Check your output. At the end of this step you must have NA instead of empty space. See example below.
Output of Regex find and replace example. Open image in new tab

Figure 1: Output of Regex find and replace example

Remove lines with NAs with Filter Tabular

Hands-on: Remove lines with NAs
  1. Filter Tabular ( Galaxy version 3.3.0) with the following parameters:
    • param-file “Tabular Dataset to filter”: out_file4 (output of Column Regex Find And Replace on the fourth column tool)
    • In “Filter Tabular Input Lines”:
      • param-repeat “Insert Filter Tabular Input Lines”
        • “Filter By”: by regex expression matching
          • “regex pattern”: NA
          • “action for regex match”: exclude line if pattern found
  2. Check your output. All the lines with NAs must have been deleted.

Prepare column merging with Column Regex Find And Replace

This manipulation is made in order to merge properly columns “phylum”, “class”, “order”, “family”, “genus” and “specificEpithet” with a separation.

Hands-on: Add "_" at the end of the phylum column
  1. Column Regex Find And Replace ( Galaxy version 1.0.3) with the following parameters:
    • param-file “Select cells from”: output (output of Filter Tabular tool)
    • “using column”: c4
    • In “Check”:
      • param-repeat “Insert Check”
        • “Find Regex”: (.$)
        • “Replacement”: \1_
  2. Check your output. All phylum must have “_” at the end.
Hands-on: Add "_" at the end of the class column
  1. Column Regex Find And Replace ( Galaxy version 1.0.3) with the following parameters:
    • param-file “Select cells from”: out_file1 (output of Column Regex Find And Replace on phylum column tool)
    • “using column”: c5
    • In “Check”:
      • param-repeat “Insert Check”
        • “Find Regex”: (.$)
        • “Replacement”: \1_
  2. Check your output. All class must have “_” at the end.
Hands-on: Add "_" at the end of the order column
  1. Column Regex Find And Replace ( Galaxy version 1.0.3) with the following parameters:
    • param-file “Select cells from”: out_file2 (output of Column Regex Find And Replace on class column tool)
    • “using column”: c6
    • In “Check”:
      • param-repeat “Insert Check”
        • “Find Regex”: (.$)
        • “Replacement”: \1_
  2. Check your output. All order must have “_” at the end.
Hands-on: Add "_" at the end of the family column
  1. Column Regex Find And Replace ( Galaxy version 1.0.3) with the following parameters:
    • param-file “Select cells from”: out_file1 (output of Column Regex Find And Replace on order column tool)
    • “using column”: c7
    • In “Check”:
      • param-repeat “Insert Check”
        • “Find Regex”: (.$)
        • “Replacement”: \1_
  2. Check your output. All family must have “_” at the end.
Hands-on: Add "_" at the end of the genus column
  1. Column Regex Find And Replace ( Galaxy version 1.0.3) with the following parameters:
    • param-file “Select cells from”: out_file1 (output of Column Regex Find And Replace on family column tool)
    • “using column”: c8
    • In “Check”:
      • param-repeat “Insert Check”
        • “Find Regex”: (.$)
        • “Replacement”: \1_
  2. Check your output. All genus must have “_” at the end. See example below.
Output of Regex Find And Replace example. Open image in new tab

Figure 2: Output of Regex Find And Replace example

Merge taxa columns with Merge Columns

Hands-on: Merge columns “phylum”, “class”, "order", "family", "genus" and "specificEpithet"
  1. Merge Columns ( Galaxy version 1.0.2) with the following parameters:
    • param-file “Select data”: out_file1 (output of Column Regex Find And Replace on genus column tool)
    • “Merge column”: c4
    • “with column”: c5
    • In “Columns”:
      • param-repeat “Insert Columns”
        • “Add column”: c6
      • param-repeat “Insert Columns”
        • “Add column”: c7
      • param-repeat “Insert Columns”
        • “Add column”: c8
      • param-repeat “Insert Columns”
        • “Add column”: c9
  2. Check your output. Your table must have a new column filled with the concatenation of “phylum”, “class”, “order”, “family”, “genus” and “specificEpithet” columns.

Remove columns no longer needed with Advanced Cut

Hands-on: Remove columns that we don't need anymore
  1. Advanced Cut ( Galaxy version 9.3+galaxy1) with the following parameters:
    • param-file “File to cut”: out_file (output of Merge Columns tool)
    • “Operation”: Discard
    • “Cut by”: fields
    • “Delimited by”: Tab
      • “Is there a header for the data’s columns ?”: Yes
        • “List of Fields”: c['4', '5', '6', '7', '8', '9']
  2. Check your output. Columns “phylum”, “class”, “order”, “family”, “genus” and “specificEpithet” must have been deleted and your table must have four columns : “individualCount”, “decimalLatitude”, “DecimalLongitude” and “phylum_class_order_family_genus_specificEpithet”. See example below.
Output of Advanced cut example. Open image in new tab

Figure 3: Output of Advanced cut example

Obtain final data file with Interactive JupyterLab Notebook

The interactive JupyterLab Notebook allows to create, run, and share custom Galaxy tools based upon Jupyter Notebooks. Galaxy offers you to use Jupyter Notebooks directly in Galaxy accessing and interacting with Galaxy datasets as you like. Here you will load an existing jupyter notebook (“pivot_wider_jupytool_notebook.ipynb” that you downloaded earlier) and run the code in it to get the final file that is needed for ecoregionalization workflow.

Hands-on: Pivot_wider with Jupytool
  1. Interactive JupyterLab and notebook with the following parameters:
    • “Do you already have a notebook?”: Load a previous notebook
      • param-file “IPython Notebook”: pivot_wider_jupytool_notebook.ipynb (Input dataset)
      • “Execute notebook and return a new one.”: Yes
    • In “User inputs”:
      • param-repeat “Insert User inputs”
        • “Name for parameter”: Input file
        • “Choose the input type”: Dataset
          • param-file “Select value”: output (output of previous step Advanced Cut tool)
  • The first parameter allows you to specify that you want to use a previous notebook (“pivot_wider_jupytool_notebook.ipynb”) rather than create a new one.
  • Then you need to insert your ready to use jupyter notebook (“pivot_wider_jupytool_notebook.ipynb”).
  • The third parameter is important to specify that you just want to execute a notebook and not dive into the web frontend (in this case).
  • Then you need to clik on “+ Insert User inputs”” button to add the next parameters.
  • After, you need to give a name to your input and choose its type.
  • Finally you have to input the occurrence data file that will be treated in the Jupyter Notebook.
Interactive JupyterLab Notebook parameters example. Open image in new tab

Figure 4: Interactive JupyterLab Notebook parameters example
  1. Check your output (“Intercative JupyterLab Notebook on data (pivot_file)”) in your galaxy history. You must have a tabular file with latitude and longitude in first two columns and the others columns must be taxa. See example below.
Interactive JupyterLab Notebook output example. Open image in new tab

Figure 5: Interactive JupyterLab Notebook output example
Question
  1. How many columns have your data file now?
  1. It must have 202 columns.

Ecoregionalization workflow

Now you have all you need to run the ecoregionalization Workflow :

  • Occurrence formatted file
  • Environment file

Merge environment and occurence file with GeoNearestNeighbor

What it does ?

This Galaxy tool allows you to merge two data tables (tabular format only) according to their latitude and longitude coordinates (in WGS84 projection), finding the closest points. This tool is used in the Ecoregionalization workflow to filter the occurence data file so it can be used on the BRT prediction tool.

How to use it ?

Hands-on: Run GeoNearestNeighbor
  1. GeoNearestNeighbor ( Galaxy version 0.1.0+galaxy0) with the following parameters:
    • In “Your environment file (or table 1)”:
      • param-file “Input your environment data file (tabular format only)”: ceamarc_env.tsv (Input dataset)
      • “Choose columns where your latitude is in your environment data file.”: c2
      • “Choose columns where your longitude is in your environment data file.”: c1
    • In “Your occurrence file (or table 2)”:
      • param-file “Input your occurrence data file (tabular format only)”: pivot_file (output of Interactive JupyTool and notebook tool)
      • “Choose columns where your latitude is in your occurrence data file.”: c1
      • “Choose columns where your longitude is in your occurrence data file.”: c2
    Comment: Coords precision

    It is recommended that, for optimal precision, the latitude and longitude values in both files should be of the same precision level. And, for the sake of relevance, the geographical coordinates in both files should be as close as possible to apply the most accurate environmental parameters to the correct species occurrences

  2. Check your outputs. You must have two files:
    • Information file conataining the coordinates of occurrence data, the coordinates retains from environmental data and the distances between the two.
    • Occurrence and Environment merge file containing occurrence data and environmental data cooresponding.

Predicting taxa distribution with BRT tool prediction

This step implements a commonly used approach in ecological studies, namely species distribution modelling (SDM). This allows to characterize the distribution of each taxon by giving an indicator of probability of taxon presence for each environmental layer pixel. Here, the boosted regression trees (BRT) method was used to adjust the relationship between the presence of a single taxon and the environmental conditions under which the taxon has been detected. BRT modelling is based on an automatic learning algorithm using iterative classification trees.

What it does ?

Two treatments are performed in this tool: the creation of the taxa distribution model and the use of this model to obtain a prediction index. The prediction index obtained from each BRT model for each pixel of the environmental layers is an approximation of the probability of detection of the presence of the taxon.

This tool gives as output a file containing the predictions of the probability of the presence of each taxon for each “environment pixel” (latitude, longitude), a visualization of these pixels for each taxon and graphs showing the percentage of model explanation for each environmental parameter. We’re gonna go back to this in the following steps.

How to use it ?

Hands-on: Run the BRT tool
  1. BRT tool prediction ( Galaxy version 0.1.0+galaxy0) with the following parameters:
    • param-file “Input your environment data file of your study area (tabular format only)”: ceamarc_env.tsv (Input dataset)
    • param-file “Input your occurrences data file(s) containing also the environmental characteristics where the species has been observe (tabular format only)”: Merge table (output of GeoNearestNeighbor tool)

      1. Click on param-files Multiple datasets
      2. Select several files by keeping the Ctrl (or COMMAND) key pressed and clicking on the files of interest

    • “Choose column(s) where your abiotic parameter are in your environment data file.”: c['3', '4', '5', '6', '7', '8', '9', '10', '11', '12', '13', '14', '15', '16', '17', '18', '19']
  2. Check your outputs. You must have four outputs collections.

    • Prediction files
    • Validation files (Taxa, AUC, Tree complexity, Total deviance explained)
    • Species distribution prediction maps
    • Partial dependence plots

In the ‘Prediction files’ collection there must be a file containing predictions of the probability of the presence of each taxon for each “environmental pixel” (latitude, longitude) for each occurrence file you entered.

In the ‘Validation files’ collection there must be a file containing for each taxon the validation metrics of the associated model.

In the ‘Species distribution prediction maps’ collection there must be for each taxon a map representing their probability of presence at each environmental layer pixel. Here is an example:

Species distribution map. Open image in new tab

Figure 6: Florometra mawsoni distribution from BRT

In the ‘Partial dependence plots’ collection there should be graphs showing the percentage explanation of the model for each environmental parameter. Here is an example:

Partial dependence plots. Open image in new tab

Figure 7: Percentage of explanation of the model for each environmental parameter

Collecting the list of taxa with TaxaSeeker

What it does ?

This tool does three things:

  • It allows obtaining a summary file for each taxon indicating whether a BRT model was obtained and the number of occurrences per taxon.

  • It provides a list of taxa that obtained cleaned BRT models (without “_”, “_sp”, etc.) to propose the list to WoRMS (World Register of Marine Species) or another taxonomic database and obtain more information about the taxa.

  • It generates a list of taxa for which a BRT model was obtained, needed as input of following steps.

    How to use it ?

Hands-on: Run TaxaSeeker
  1. TaxaSeeker ( Galaxy version 0.1.0+galaxy0) with the following parameters:
    • param-file “Environment file (tabular format only)”: ceamarc_env.tsv (Input dataset)
    • param-file “Occurences file(s) (tabular format only)”: Merged table (output of GeoNearestNeighbor tool)
    • param-file “Predictions file(s)”: Prediction files collection (output of BRT tool prediction tool)
    1. Click on param-collection Dataset collection in front of the input parameter you want to supply the collection to.
    2. Select the collection you want to use from the list

    1. Check your outputs. You must have three files:
    • Summary of taxa model
    • List of taxa
    • List of taxa clean

Determine the optimal number of clusters with ClusterEstimate

What it does ?

This tool enables the determination of the optimal number of clusters for partition-based clustering, along with generating files used in the following anlaysis steps.

The tool will produce three outputs. The first two files that will be used in the following steps of the workflow: a file containing four pieces of information (latitude, longitude, presence prediction and corresponding taxon), and a file containing the data to be partitioned. The third output corresponds to the main information of the tool, a graph presenting the value of the SIH index according to the number of clusters. The silhouette index provides a measure of the separation between clusters and the compactness within each cluster. The silhouette index ranges from -1 to 1. Values close to 1 indicate that objects are well grouped and separated from other clusters, while values close to -1 indicate that objects are poorly grouped and may be closer to other clusters. A value close to 0 indicates a situation where objects are located at the border between two neighboring clusters. Thus the optimal number of clusters is the one that maximizes the value of the SIH index.

How to use it ?

Hands-on: Run ClusterEstimate
  1. ClusterEstimate ( Galaxy version 0.1.0+galaxy0) with the following parameters:
    • param-file “Environment file (tabular format only)”: ceamarc_env.tsv (Input dataset)
    • param-file “Taxa selected file (File ‘List of taxa’ from TaxaSeeker tool)”: List_of_taxa (output of TaxaSeeker tool)
    • param-file “Prediction files”: Prediction files collection (output of BRT tool prediction tool)
    1. Click on param-collection Dataset collection in front of the input parameter you want to supply the collection to.
    2. Select the collection you want to use from the list

    • “Number of Cluster to test”: 10 (You can choose any number, but remember that the more cluster numbers to test the longer it will take)
    Comment: Two other parameters

    The other two parameters can be left as is. If you need to change them here is a short description of what they do:

    The first one is metric used to calculate the dissimilarities between the observations: Manhattan (distance between two real-valued vectors), Euclidean (shortest distance between two points) and Jaccard (defined as the size of the intersection divided by the size of the union of the sample sets)

    The second one is the sample size that will be used to perform clustering. Indeed, the clara function is used to cluster large data using a representative sample rather than the entire data set. This will speed up the clustering process and make the calculation more efficient. A fairly high value representative of the data is recommended. It is important to note that using a too small sample size may result in loss of information compared to using the entire data set.

  2. Check your outputs. You must have three files:

    • SIH index plot (See example below)
    • Data to cluster (Containing the data to be partitioned)
    • Data.bio table (Containing four pieces of information, latitude, longitude, presence prediction and corresponding taxon)
Question
  1. What is the optimal number of clusters in this use case ?
  1. The optimal number of cluster is seven because it maximizes the value of the SIH index.

Here is the SIH index plot you must obtained :

SIH index plot. Open image in new tab

Figure 8: SIH index plot

With this graph you will be able to determine the optimal number of clusters retained for the construction of ecoregions. As said before, the optimal number of cluster is the one that maximizes the SIH index. In this example, the number of clusters that optimizes the SIH index is seven.

Build ecoregional clusters with ClaraClust

What it does ?

After choosing an optimal number of clusters with the ClusterEstimate tool, we can now partition each latitude and longitude point according to their associated values of the BRT prediction index. Due to the large size of the datasets, the Clara function of the Cluster package is used here to apply the Partitioning Around Medoids (PAM) algorithm on a representative sample of the data. This speeds up the clustering process and makes the calculation more efficient.

How to use it ?

Hands-on: Run ClaraClust
  1. ClaraClust ( Galaxy version 0.1.0+galaxy0) with the following parameters:
    • param-file “Environmental file (tabular only)”: ceamarc_env.tsv (Input dataset)
    • param-file “Prediction matrix (file ‘data to cluster’ from Cluster Estimate tool)”: Data_to_cluster (output of ClusterEstimate tool)
    • param-file “Prediction table (file ‘data.bio table’ from Cluster Estimate tool)”: Data.bio_table (output of ClusterEstimate tool)
    • “Number of Cluster wanted”: 7 (Number of cluster determined at the previous step of the workflow in “SIH index plot”)
    Comment: Two other parameters

    The other two parameters can be left as is. If you need to change them here is a short description of what they do:

    The first one is metric used to calculate the dissimilarities between the observations: Manhattan (distance between two real-valued vectors), Euclidean (shortest distance between two points) and Jaccard (defined as the size of the intersection divided by the size of the union of the sample sets)

    The second one is the sample size that will be used to perform clustering. Indeed, the clara function is used to cluster large data using a representative sample rather than the entire data set. This will speed up the clustering process and make the calculation more efficient. A fairly high value representative of the data is recommended. It is important to note that using a too small sample size may result in loss of information compared to using the entire data set.

  2. Check your outputs. You must have three files:

    • SIH index plot (See example below.)
    • Cluster points (Contains the latitude and longitude of each “environmental pixel” and the associated cluster number. We will use it in the next step of the workflow)
    • Cluster info (Contains all the information related to the clusters created, that is, in column: the latitude, the longitude, the corresponding cluster number and for each taxon the prediction value)

The tool will produce a silhouette plot that you can see below. A silhouette graph is a representation used to visualize the silhouette index of each observation in a clustered data set. It makes it possible to assess the quality of clusters and determine their coherence and separation. In a silhouette graph, each observation is represented by a horizontal bar whose length is proportional to its silhouette index. The longer the bar, the better the consistency of the observation with its cluster and the separation from other clusters. As mentioned above, the silhouette index ranges from -1 to 1. Values close to 1 indicate that objects are well grouped and separated from other clusters, while values close to -1 indicate that objects are poorly grouped and may be closer to other clusters. A value close to 0 indicates a situation where objects are located at the border between two clusters. Here, in the graph below, there is a good distribution of the observations because the majority of the bars are above the average value of the silhouette index.

SIH plot. Open image in new tab

Figure 9: SIH plot

Build a ecoregionalization map with EcoMap

Hands-on: Run EcoMap
  1. EcoMap ( Galaxy version 0.1.0+galaxy0) with the following parameters:
    • param-file “Source file (File ‘cluster points’ from previous step)”: cluster_points (output of ClaraClust tool)

This tool simply need the previous step “Cluster points” output file to generate a map representing ecoregions.

  1. Check output. You must have one Map representing ecoregions.

This is the output map with our seven clusters representing ecoregions that you must have obtained.

Ecoregion map. Open image in new tab

Figure 10: Ecoregion map

Conclusion

Congratulations! You have successfully completed the ecoregionalization workflow. Here is the end of this tutorial aiming to explain the purpose of the ecoregionalization workflow and how to use it. This workflow provides a systematic and reproducible approach to ecoregionalization, allowing researchers to identify distinct ecological regions based on species occurrences and environmental data. This tutorial shows how to use this workflow, step by step, or all in one using the Dumont D’Urville sea region use case with related datasets. It allows you to understand ecoregions construction. You learned the use of the BRT algorithm for modeling species distribution as well as the cluster construction with the k-medoid clustering algorithms (CLARA/PAM). Feel free to explore and adapt this workflow for your specific research needs. If you have any questions, or encounter issues during the workflow, refer to the provided documentation or seek assistance from the Galaxy community. Don’t hesitate to contact us if you have any questions.