diff --git a/src/Navbar/navbar.jsx b/src/Navbar/navbar.jsx
index 81a49ab0..3be48388 100644
--- a/src/Navbar/navbar.jsx
+++ b/src/Navbar/navbar.jsx
@@ -307,6 +307,9 @@ export function Navbar({
Code Repositories
+
+ Publications
+
Methods
diff --git a/src/Publications/publications.jsx b/src/Publications/publications.jsx
new file mode 100644
index 00000000..96ad6c95
--- /dev/null
+++ b/src/Publications/publications.jsx
@@ -0,0 +1,71 @@
+import React from 'react';
+import PageTitle from '../lib/ui/pageTitle';
+
+const publications = [
+ {
+ url: 'https://www.cell.com/cell/fulltext/S0092-8674(20)30691-7',
+ title:
+ 'Molecular Transducers of Physical Activity Consortium (MoTrPAC): Mapping the Dynamic Responses to Exercise',
+ authors:
+ 'James A. Sanford, Christopher D. Nogiec, Malene E. Lindholm, Joshua N. Adkins, David Amar, Surendra Dasari, Jonelle K. Drugan, Facundo M. Fernández, Shlomit Radom-Aizik, Simon Schenk, Michael P. Snyder, Russell P. Tracy, Patrick Vanderboom, Scott Trappe, Martin J. Walsh, and the Molecular Transducers of Physical Activity Consortium.',
+ cite: 'Cell 181/7, 1464-1474, June 25, 2020.',
+ },
+];
+
+/**
+ * Renders the Pulications page.
+ *
+ * @returns {object} JSX representation of the Publications component
+ */
+export function Publications() {
+ // Render list of publications
+ function renderPublications() {
+ return (
+
+ );
+}
+
+export default Publications;
diff --git a/src/RelatedStudy/relatedStudy.jsx b/src/RelatedStudy/relatedStudy.jsx
index 520a7e13..64e230da 100644
--- a/src/RelatedStudy/relatedStudy.jsx
+++ b/src/RelatedStudy/relatedStudy.jsx
@@ -6,20 +6,24 @@ import StanfordMedicineLogo from '../assets/ExternalLogos/StanfordMedicine.png';
const relatedStudies = [
{
+ id: 'heritage-proteomics',
url: '/related-studies/heritage-proteomics',
- text:
- 'The HERITAGE Family Study is a multicenter project whose main goal is to study the role of the genotype in the cardiovascular and metabolic responses to aerobic exercise training and the changes brought about by regular exercise for several cardiovascular disease and diabetes risk factors.',
+ text: 'The HERITAGE Family Study is a multicenter project whose main goal is to study the role of the genotype in the cardiovascular and metabolic responses to aerobic exercise training and the changes brought about by regular exercise for several cardiovascular disease and diabetes risk factors.',
image: HeritageFamilyStudyLogo,
title: 'HERITAGE Proteomics',
newWin: false,
},
{
+ id: 'exercise-transcriptome-meta-analysis',
url: 'https://extrameta.org',
- text:
- 'A database comprising meta-analysis results from 43 publicly available exercise transcriptome datasets from human skeletal muscle and blood.',
+ text: 'A database comprising meta-analysis results from 43 publicly available exercise transcriptome datasets from human skeletal muscle and blood.',
image: StanfordMedicineLogo,
title: 'Exercise Transcriptome Meta-analysis',
newWin: true,
+ pubTitle:
+ 'Time trajectories in the transcriptomic response to exercise - a meta-analysis',
+ pubUrl: 'https://doi.org/10.1038/s41467-021-23579-x',
+ pubCite: 'Nat Commun 12, 3471 (2021).',
},
];
@@ -64,6 +68,20 @@ function RelatedStudyLink({ study }) {
{!study.newWin && {study.title}}