Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Reconfiguring splash page #2220

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
64 changes: 58 additions & 6 deletions content/lead1.md
Original file line number Diff line number Diff line change
@@ -1,10 +1,62 @@

**Galaxy** is an **open-source** platform for **[FAIR](https://www.go-fair.org/fair-principles/) data analysis** that enables users to:
<p align="center"><iframe width="800" height="455" src="https://www.youtube.com/embed/k6fTVIR4GME?si=IapaQ4374GeYE8AD" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" allowfullscreen></iframe></p>

- Use **tools** from various domains (that can be plugged into **workflows**) through its graphical web interface.
- Run code in **interactive environments** (RStudio, Jupyter...) along with other tools or workflows.
- **Manage data** by sharing and publishing results, workflows, and visualizations.
- **Ensure reproducibility** by capturing the necessary information to repeat and understand data analyses.
# **Researchers** | Don’t pay for data analytics support: It already exists and it is free

The **Galaxy Community** is actively involved in helping the ecosystem improve and sharing scientific discoveries.
-----

- **Thousands of tools**: Already installed and configured
- **Best analysis practices**: Perform entire analyses end-to-end
- **Power and scalability**: Analyze just a few or thousands of samples
- **Powerful user interface**: Analyze data in your web-browser
- **Interactive analyses when you need them**: Use tools such as Jupyter from Galaxy IU
- **Hardware included**: Enough storage and computation for most experimental designs
- **Interactive documentation**: Tutorials for most popular analysis scenarios

# **Data Analysts** | Concentrate on what matters: Don’t deal with plumbing

-----

- **Use existing powerful infrastructure**: Automate workflow execution with Galaxy API
- **Optimize hardware use:** Distribute analyses to appropriate resources
- **Leverage your own infrastructure**: Take advantage of your own hardware if needed
- **Don’t worry about dependencies**: Let Conda and BioContainers do the work for you
- **Be resource-agnostic**: Run analysis locally, in the cloud, or on powerful public infrastructure
- **Let your colleagues run their analysis:** Create workflows that can be used by researchers immediately
- **Automate**: Run complex workflows against our infrastructure via API

# **Students** | Learn best practices and understand science

------

- **Impress your PI**: Perform complex analyses quickly without asking for resources
- **Choose from hundreds of “how-to” tutorials**: ChIP-seq, RNA-seq, Assembly, Variant calling, Climate Analysis, Computation Chemistry, Imaging, Proteomics, Metagenomics, you name it
- **Understand what is happening**: Our tutorials not only explain how to do it, they explain why it is done this way
- **Go beyond standard tools:** Grow your analysis skills with interactive tools such as Jupyter and RStudio

# **Instructors** | Run workshops or semester-long classes

----

- **Tutorials + Infrastructure**: All your students need is a web---browser—hardware is included
- **Choose from hundreds of “how-to” tutorials**: ChIP-seq, RNA-seq, Assembly, Variant calling, Climate Analysis, Computation Chemistry, Imaging, Proteomics, Metagenomics, you name it
- **Keep an eye on your students**: Identify those who need help with a unified dashboard

# **Developers** | Get your tools used by those who need them most

-----

- Massive user base: Hundreds of thousands of users across US, EU, and AU instances
- A fully featured SDK: Planemo framework for developing, testing and deployment.
- IDE integration: Rapid onboarding and fast development with Galaxy Language Server
- A main component of global open source ecosystem: We are a part of BioConda and BioContainer
- Community support: Help and guidance from hundreds of developers

<!--

For PIs

Don’t reinvent the wheel: The best analysis practices for your data likely exists in Galaxy already
Don’t pay for support and infrastructure: Galaxy provides both

-->
5 changes: 5 additions & 0 deletions content/main.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,3 +3,8 @@ title: Welcome to the Galaxy Community Hub
subtitle: The meeting point where you can find curated documentation for all things Galaxy
---

# What is it?

------

### Galaxy is a platform for data analysis on any scale, tool and workflow deployment, and training. Click on categories below to find out what it can do for YOU:
20 changes: 11 additions & 9 deletions src/pages/Index.vue
Original file line number Diff line number Diff line change
Expand Up @@ -5,43 +5,45 @@
<h3 v-if="subtitle">{{ subtitle }}</h3>
</header>

<HomeTop :lead="bundles.lead" :jumbotron="inserts.jumbotron" />
<!-- <HomeTop :lead="bundles.lead" :jumbotron="inserts.jumbotron" /> -->

<Bundle id="main-content" class="row" :bundle="bundles.main" :subclasses="['col-sm-12']" />

<b-row id="profiles" class="justify-content-md-center">
<HomeProfile
title="SCIENTISTS"
link="/scientist/"
title="Researchers"
link="#researchers"
img="/images/undraw-illustrations/galaxy-for-scientists.svg"
alt="Galaxy for scientists"
/>
<HomeProfile
title="TRAINERS"
title="Data Analysts"
link="/learn/"
img="/images/undraw-illustrations/galaxy-for-trainers.svg"
img="/images/undraw-illustrations/galaxy-for-developers.svg"
alt="Galaxy for trainers"
/>
<HomeProfile
title="TOOL AUTHORS"
title="Students"
link="/tools/"
img="/images/undraw-illustrations/galaxy-for-tool-developers.svg"
alt="Galaxy for tool authors"
/>
<HomeProfile
title="DEVELOPERS"
title="Instructors"
link="/develop/"
img="/images/undraw-illustrations/galaxy-for-developers.svg"
img="/images/undraw-illustrations/galaxy-for-trainers.svg"
alt="Galaxy for developers"
/>
<HomeProfile
title="ADMINS"
title="Developers"
link="/admin"
img="/images/undraw-illustrations/galaxy-for-admins.svg"
alt="Galaxy for admins"
/>
</b-row>

<HomeTop :lead="bundles.lead" />

<div class="row" v-for="(cardRow, i) of cardRows" :key="i">
<HomeCard
v-for="(card, j) of cardRow"
Expand Down