Skip to content

Commit 8e99605

Browse files
feat: module-grid landing pages for /about /content /tools + /community fix (closes #17)
/about, /content and /tools each get a tile grid linking to every page that appears under them in nav-options.json -- matches the /documentation pattern. The canonical 'What is Reactome?' body, previously duplicated verbatim into /about/index.mdx, now lives only at /about/what-is-reactome (the first tile on the new /about landing). Also convert the three header tiles on /community to the same module-grid form. The middle 'Attend Community Events' tile was rendering full-size because its image filename (training_3.png) didn't match the _110x110 icon-cap CSS rule, while its neighbours did -- replacing the raw <img> links with module-cards uses the Material Symbols icon instead and gives all three tiles a consistent size.
1 parent e8c75fb commit 8e99605

4 files changed

Lines changed: 160 additions & 48 deletions

File tree

Lines changed: 73 additions & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -1,28 +1,77 @@
11
---
2-
title: "What is Reactome ?"
2+
title: "About Reactome"
33
category: "about"
44
---
55

6-
## What is Reactome ?
7-
8-
### Mission Statement
9-
10-
REACTOME is an open-source, open access, manually curated and peer-reviewed pathway database. Our goal is to provide intuitive bioinformatics tools for the visualization, interpretation and analysis of pathway knowledge to support basic and clinical research, genome analysis, modeling, systems biology and education. Founded in 2003, the Reactome project is led by Lincoln Stein of [OICR](<http://oicr.on.ca/>), Peter D’Eustachio of [NYU Langone Health](<https://nyulangone.org/>), Henning Hermjakob of [EMBL-EBI](<http://www.ebi.ac.uk/>), and Guanming Wu of [OHSU](<http://www.ohsu.edu/>).
11-
12-
### The Reactome Project
13-
14-
Biological information has become so abundant and complex in recent years that it is difficult, if not impossible, even for expert individuals to manage in traditional publication formats and with existing knowledge management tools. It is an ongoing challenge for researchers to keep up-to-date on research developments in their fields, and identify relevant research to support their own studies without devoting too much time collecting unconnected information. The Reactome group has recognized this challenge and is developing a set of novel online resources that use features of the electronic media to organize biological pathway information in ways that provide for more efficient access and that allow new forms of analysis that were not possible with information stored in the traditional printed literature.
15-
16-
The cornerstone of Reactome is a freely available, open source relational database of signaling and metabolic molecules and their relations organized into biological pathways and processes. The core unit of the Reactome data model is the reaction. Entities (nucleic acids, proteins, complexes, vaccines, anti-cancer therapeutics and small molecules) participating in reactions form a network of biological interactions and are grouped into pathways. Examples of biological pathways in Reactome include [classical intermediary metabolism](</PathwayBrowser/#/R-HSA-1430728>), [signaling](</PathwayBrowser/#/R-HSA-162582>), [transcriptional regulation](</PathwayBrowser/#/R-HSA-74160>), [apoptosis](</PathwayBrowser/#/R-HSA-109581&PATH=R-HSA-5357801>) and [disease](</PathwayBrowser/#/R-HSA-1643685>). The Reactome curation process for a pathway is similar to the editing of a scientific review. An external domain expert provides his or her expertise, a curator formalizes it into the database structure, and an external domain expert reviews the representation. A system of evidence tracking ensures that all assertions are backed up by the primary literature.
17-
18-
The Reactome website is designed to literally give the user a graphical map of known biological processes and pathways that is also an interface which the user can ‘click through’ to authoritative detailed information on components and their relations. The Reactome database and website enable scientists, researchers, students, and educators to find, organize, and utilize biological information to support [data visualization](</PathwayBrowser/>), [integration](</documentation/dev/>) and [analysis](</PathwayBrowser/#TOOL=AT>). Reactome pathway, reaction and molecules pages extensively cross-reference to over 100 different online bioinformatics resources, including NCBI Gene, Ensembl and UniProt databases, the UCSC Genome Browser, ChEBI small molecule databases, and the PubMed literature database.
19-
20-
Reactome is used by clinicians, geneticists, genomics researchers, and molecular biologists to interpret the results of high-throughput experimental studies, by bioinformaticians seeking to develop novel algorithms for mining knowledge from genomic studies, and by systems biologists building predictive models of normal and disease variant pathways.
21-
22-
All data and software are freely available for [download](</download-data>). Interaction, reaction and pathway data are provided as downloadable flat, [Neo4j GraphDB](<http://neo4j.com/>), [MySQL](<http://www.mysql.com/>), [BioPAX](<http://www.biopax.org/>), [SBML ](<https://synonym.caltech.edu>)and [PSI-MITAB](<https://github.com/HUPO-PSI/miTab/blob/master/PSI-MITAB27Format.md>) files and are also accessible through our Web Services APIs. Software and instructions for local installation of the Reactome database, website, and data entry tools are also available to support independent pathway curation.
23-
24-
### For more information:
25-
26-
Visit our Youtube Video for an [Introduction to Reactome](<https://youtu.be/cA7lQACsgZk>)!
27-
28-
If you have any feedback or questions, please contact us at the Reactome [help@reactome.org](<mailto:help@reactome.org>).
6+
<div class="module-grid">
7+
<a class="module-card" href="/about/what-is-reactome">
8+
<span class="material-symbols-rounded module-icon">info</span>
9+
<span class="module-label">What is Reactome?</span>
10+
<span class="module-desc">An open-source, manually curated, peer-reviewed pathway database. Start here for the project mission and overview.</span>
11+
</a>
12+
<a class="module-card" href="/about/news">
13+
<span class="material-symbols-rounded module-icon">newspaper</span>
14+
<span class="module-label">News</span>
15+
<span class="module-desc">Latest project announcements, releases and outreach updates.</span>
16+
</a>
17+
<a class="module-card" href="/about/team">
18+
<span class="material-symbols-rounded module-icon">groups</span>
19+
<span class="module-label">Team</span>
20+
<span class="module-desc">The curators, developers and editorial staff behind Reactome.</span>
21+
</a>
22+
<a class="module-card" href="/about/sab">
23+
<span class="material-symbols-rounded module-icon">school</span>
24+
<span class="module-label">Scientific Advisory Board</span>
25+
<span class="module-desc">External experts who guide the project's scientific direction.</span>
26+
</a>
27+
<a class="module-card" href="/about/funding">
28+
<span class="material-symbols-rounded module-icon">payments</span>
29+
<span class="module-label">Funding</span>
30+
<span class="module-desc">Grants and institutions that make Reactome possible.</span>
31+
</a>
32+
<a class="module-card" href="/about/editorial-calendar">
33+
<span class="material-symbols-rounded module-icon">edit_calendar</span>
34+
<span class="module-label">Editorial Calendar</span>
35+
<span class="module-desc">Upcoming curation milestones and editorial focus areas.</span>
36+
</a>
37+
<a class="module-card" href="/about/release-calendar">
38+
<span class="material-symbols-rounded module-icon">event</span>
39+
<span class="module-label">Release Calendar</span>
40+
<span class="module-desc">Schedule for upcoming Reactome data and software releases.</span>
41+
</a>
42+
<a class="module-card" href="/about/statistics">
43+
<span class="material-symbols-rounded module-icon">analytics</span>
44+
<span class="module-label">Statistics</span>
45+
<span class="module-desc">Up-to-date counts of pathways, reactions, proteins and references.</span>
46+
</a>
47+
<a class="module-card" href="/about/logo">
48+
<span class="material-symbols-rounded module-icon">verified</span>
49+
<span class="module-label">Our Logo</span>
50+
<span class="module-desc">Logo files and guidelines for citing or linking back to Reactome.</span>
51+
</a>
52+
<a class="module-card" href="/about/license">
53+
<span class="material-symbols-rounded module-icon">gavel</span>
54+
<span class="module-label">License Agreement</span>
55+
<span class="module-desc">Terms under which Reactome data, software and documentation are made available.</span>
56+
</a>
57+
<a class="module-card" href="/about/privacy-notice">
58+
<span class="material-symbols-rounded module-icon">lock</span>
59+
<span class="module-label">Privacy Notice</span>
60+
<span class="module-desc">How we handle personal information on reactome.org.</span>
61+
</a>
62+
<a class="module-card" href="/about/disclaimer">
63+
<span class="material-symbols-rounded module-icon">policy</span>
64+
<span class="module-label">Disclaimer</span>
65+
<span class="module-desc">Statement on the use of Reactome content for research and clinical purposes.</span>
66+
</a>
67+
<a class="module-card" href="/about/digital-preservation">
68+
<span class="material-symbols-rounded module-icon">archive</span>
69+
<span class="module-label">Digital Preservation</span>
70+
<span class="module-desc">Long-term archiving strategy for Reactome content and data dumps.</span>
71+
</a>
72+
<a class="module-card" href="/about/contact-us">
73+
<span class="material-symbols-rounded module-icon">mail</span>
74+
<span class="module-label">Contact Us</span>
75+
<span class="module-desc">Get in touch with the Reactome team for help, collaboration or feedback.</span>
76+
</a>
77+
</div>

projects/website-angular/content/community/index.mdx

Lines changed: 17 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -5,23 +5,23 @@ category: "community"
55

66
## Community
77

8-
[ ![](/uploads/community/for_users_110x110.png) ](</community/collaboration>)
9-
10-
Contribute your pathway knowledge!
11-
12-
#### [__Contribute Pathway Knowledge](</community/collaboration>)
13-
14-
[ ![](/uploads/community/training_3.png) ](</community/events>)
15-
16-
Attend our community events!
17-
18-
#### [__Attend Community Events](</community/events>)
19-
20-
[ ![](/uploads/community/citing_us_110x110.png) ](</community/publications>)
21-
22-
Keep up with Reactome's recent publications!
23-
24-
#### [__Learn more about Reactome](</community/publications>)
8+
<div class="module-grid">
9+
<a class="module-card" href="/community/collaboration">
10+
<span class="material-symbols-rounded module-icon">handshake</span>
11+
<span class="module-label">Contribute Pathway Knowledge</span>
12+
<span class="module-desc">Author or review a pathway and join Reactome's network of expert contributors.</span>
13+
</a>
14+
<a class="module-card" href="/community/events">
15+
<span class="material-symbols-rounded module-icon">event</span>
16+
<span class="module-label">Attend Community Events</span>
17+
<span class="module-desc">Conferences, workshops and training sessions hosted by or featuring Reactome.</span>
18+
</a>
19+
<a class="module-card" href="/community/publications">
20+
<span class="material-symbols-rounded module-icon">menu_book</span>
21+
<span class="module-label">Reactome Publications</span>
22+
<span class="module-desc">Stay up to date with the most recent publications by the Reactome team.</span>
23+
</a>
24+
</div>
2525

2626
# Contribute to Reactome!
2727

Lines changed: 33 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,37 @@
11
---
2-
title: "Content Pages"
2+
title: "Content"
33
category: "content"
44
---
55

6-
## Reactome Content Pages
7-
8-
Page Content Coming Soon!
6+
<div class="module-grid">
7+
<a class="module-card" href="/content/toc">
8+
<span class="material-symbols-rounded module-icon">list_alt</span>
9+
<span class="module-label">Table of Contents</span>
10+
<span class="module-desc">Top-level index of all curated pathways grouped by biological process.</span>
11+
</a>
12+
<a class="module-card" href="/content/doi">
13+
<span class="material-symbols-rounded module-icon">fingerprint</span>
14+
<span class="module-label">DOIs</span>
15+
<span class="module-desc">Persistent digital object identifiers for citing Reactome pathways and reactions.</span>
16+
</a>
17+
<a class="module-card" href="/content/schema">
18+
<span class="material-symbols-rounded module-icon">schema</span>
19+
<span class="module-label">Data Schema</span>
20+
<span class="module-desc">The Reactome data model: every class, attribute and relationship in the graph database.</span>
21+
</a>
22+
<a class="module-card" href="/content/reactome-research-spotlight">
23+
<span class="material-symbols-rounded module-icon">auto_awesome</span>
24+
<span class="module-label">Reactome Research Spotlight</span>
25+
<span class="module-desc">Featured publications and pathways that highlight new Reactome content.</span>
26+
</a>
27+
<a class="module-card" href="/content/orcid">
28+
<span class="material-symbols-rounded module-icon">badge</span>
29+
<span class="module-label">ORCID Integration Project</span>
30+
<span class="module-desc">Linking authors, reviewers and curators to their work via ORCID identifiers.</span>
31+
</a>
32+
<a class="module-card" href="/content/covid-19">
33+
<span class="material-symbols-rounded module-icon">coronavirus</span>
34+
<span class="module-label">COVID-19 Disease Pathways</span>
35+
<span class="module-desc">Curated SARS-CoV-2 infection biology and host response pathways.</span>
36+
</a>
37+
</div>

projects/website-angular/content/tools/index.mdx

Lines changed: 37 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,40 @@ title: "Tools"
33
category: "tools"
44
---
55

6-
## Reactome Tools
7-
8-
Page Content Coming Soon!
6+
<div class="module-grid">
7+
<a class="module-card" href="/PathwayBrowser">
8+
<span class="material-symbols-rounded module-icon">account_tree</span>
9+
<span class="module-label">Pathway Browser</span>
10+
<span class="module-desc">Interactive visualisation of Reactome's curated human and orthologous pathways, reactions and entities.</span>
11+
</a>
12+
<a class="module-card" href="/gsa/home">
13+
<span class="material-symbols-rounded module-icon">analytics</span>
14+
<span class="module-label">Analyse Gene Expression</span>
15+
<span class="module-desc">Run a Reactome GSA comparative pathway analysis directly from your raw gene-expression data.</span>
16+
</a>
17+
<a class="module-card" href="/PathwayBrowser/#TOOL=AT">
18+
<span class="material-symbols-rounded module-icon">compare</span>
19+
<span class="module-label">Species Comparison</span>
20+
<span class="module-desc">Highlight pathway elements that are inferred or annotated in a non-human reference species.</span>
21+
</a>
22+
<a class="module-card" href="/PathwayBrowser/#TOOL=AT">
23+
<span class="material-symbols-rounded module-icon">grain</span>
24+
<span class="module-label">Tissue Distribution</span>
25+
<span class="module-desc">Overlay tissue-level expression data on top of the Reactome diagrams to spot context-specific pathways.</span>
26+
</a>
27+
<a class="module-card" href="/AnalysisService" target="_blank" rel="noopener">
28+
<span class="material-symbols-rounded module-icon">data_object</span>
29+
<span class="module-label">Analysis Service</span>
30+
<span class="module-desc">REST API for programmatic pathway enrichment, species comparison and overrepresentation analyses.</span>
31+
</a>
32+
<a class="module-card" href="/ContentService" target="_blank" rel="noopener">
33+
<span class="material-symbols-rounded module-icon">api</span>
34+
<span class="module-label">Content Service</span>
35+
<span class="module-desc">REST API for querying Reactome's pathway graph, fetching diagram exports and searching the knowledgebase.</span>
36+
</a>
37+
<a class="module-card" href="/tools/reactome-fiviz">
38+
<span class="material-symbols-rounded module-icon">hub</span>
39+
<span class="module-label">ReactomeFIViz</span>
40+
<span class="module-desc">Cytoscape app for network-based pathway and functional-interaction analysis using Reactome data.</span>
41+
</a>
42+
</div>

0 commit comments

Comments
 (0)