Skip to content

Latest commit

 

History

History
300 lines (274 loc) · 19.5 KB

File metadata and controls

300 lines (274 loc) · 19.5 KB
layout subsite-galaxy
website https://ecology.usegalaxy.eu
subdomain ecology

Welcome to Galaxy for Ecology -- a web platform to get, process, analyze and visualize ecological data

PNDB french Biodiversity e-infrastructure



Guide tour

Are you new to Galaxy, or returning after a long time, and looking for help to get started?

Tutorials

Want to learn about ecology analyses?



<iframe id="displayhere" frameborder="0" style="display:none;" width="100%" height="700"></iframe>

Projects

Citizen science on marmalade hoverflies

Vigie Nature H2020 European project

Want to classify hoverflies pictures?

The aim of the task is to classify ~5000 hoverfly images collected by the SPIPOLL citizen science project and identify the sex by looking at their relative eyes position.

Antarctic use cases

French BON EBV Operationalization pilot

TOOLS

Several tools corresponding to these workflows and tutorials can be found in Galaxy's left sidebar under the ecoregionalization section, the phylodiversity section et the interactive tools section.

Media annotation and analysis

IA Annotation

RELATED PROJECTS



<iframe id="displayhere2" frameborder="0" style="display:none;" width="100%" height="700"></iframe>

Tools

Galaxy Ecology offers an extensive suite of tools designed for ecological data analysis. With hundreds of tools at your disposal, you can explore and perform a wide variety of tasks, including data manipulation, statistical analysis, ecological data retrieval, and visualization.

  • General Tools
    These tools cover data manipulation, text processing, file conversion, sorting, filtering, and a wide range of data visualization options, including bar charts, scatterplots, heatmaps, and more.

  • Statistical Tools
    A comprehensive set of statistical methods for data preprocessing, hypothesis testing, classification, multivariate analysis, and model-based techniques like regression and machine learning.

  • Ecological Tools
    Galaxy Ecology provides specialized tools for ecological data, including species occurrence data retrieval, phenology analysis, acoustic monitoring, and GIS data handling.

Explore the full range of tools by using the Tools Panel on the left side of the interface. There, you’ll find an organized list of categories to help you find exactly what you need for your ecological research.


<script> document.addEventListener('DOMContentLoaded', function() { // Retrieve all links that trigger the display of the iframe const links = document.querySelectorAll('.show-iframe'); links.forEach(link => { link.addEventListener('click', function(e) { e.preventDefault();// Prevent default behavior (navigate to another link) // Retrieve the target URL const targetUrl = link.getAttribute('href'); // Hide all iframes const iframes = document.querySelectorAll('iframe'); iframes.forEach(iframe => iframe.style.display = 'none'); // Display the iframe corresponding to the clicked link const targetId = link.getAttribute('data-target'); const targetIframe = document.getElementById(targetId); if (targetIframe) { // Update the URL of the iframe with the target link targetIframe.src = targetUrl; // <-- Insert link into iframe targetIframe.style.display = 'block'; targetIframe.scrollIntoView({ block: 'start', behavior: 'smooth', inline: 'nearest'}); } }); }); }); </script>