Skip to content

Commit

Permalink
Update tutorial
Browse files Browse the repository at this point in the history
  • Loading branch information
adelavega committed Nov 26, 2023
1 parent 3742674 commit 2e832eb
Show file tree
Hide file tree
Showing 31 changed files with 352 additions and 23 deletions.
6 changes: 3 additions & 3 deletions docs/introduction/TeamGrid.js
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ const TeamMemberCard = ({ name, title, affiliation, imageUrl, websiteUrl, github
title: 'Graduate Student',
affiliation: 'Florida International University',
imageUrl: useBaseUrl('team/pedraza.jpg'),
githubProfile: 'https://github./julioAPeraza'
githubProfile: 'https://github.com/julioAPeraza'
},
{
id: 9,
Expand All @@ -103,7 +103,7 @@ const TeamMemberCard = ({ name, title, affiliation, imageUrl, websiteUrl, github
affiliation: 'Stanford University',
imageUrl: useBaseUrl('team/poldrack.jpg'),
websiteUrl: 'http://poldracklab.org/',
githubProfile: 'https://github./poldrack'
githubProfile: 'https://github.com/poldrack'

},
{
Expand All @@ -120,7 +120,7 @@ const TeamMemberCard = ({ name, title, affiliation, imageUrl, websiteUrl, github
title: 'Graduate Student',
affiliation: 'Oxford University',
imageUrl: useBaseUrl('team/yu.jpg'),
githubProfile: 'https://github./yifan0330'
githubProfile: 'https://github.com/yifan0330'
}
];

Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
---
sidebar_label: 'Automated Meta-Analysis'
sidebar_position: 3
sidebar_position: 2
---

# Exporatory automated large-scale meta-analysis
Binary file added docs/tutorial/image.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
35 changes: 17 additions & 18 deletions docs/tutorial/index.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -6,44 +6,43 @@ import { Grid, Card, CardContent, Typography, Button } from '@mui/material';

import { Link } from 'react-router-dom';

Neurosynth-Compose supports a range of use cases, from a finely controlled *manual-meta analysis* to a fully automated *large-scale meta-analysis*.


Below is an overview of three uses cases, with links to tutorials for each one.
Neurosynth Compose supports a range of different workflows, from exploratory large-scale automated analyses to highly curated and rigorous manual analyses.

The choice of workflow depends on the research question and the available resources. Note that you can choose to blend approaches from these two
ends of the spectrum, depending on your needs. Learn more about the different workflows by following the tutorials below.

<div style={{ display: 'flex' }}>
<Link to="tutorial/large-scale" style={{ textDecoration: 'none' }} style={{ width: '100%', display: 'flex', marginRight: '30px', cursor: 'pointer' }}>
<Link to="tutorial/manual" style={{ textDecoration: 'none' }} style={{ width: '100%', display: 'flex', marginRight: '30px', cursor: 'pointer' }}>
<Card style={{ borderRadius: '8px' }}>
<CardContent>
<Typography variant="h5" component="h2" gutterBottom>
Automated
Manual
</Typography>
<Typography variant="body1" gutterBottom>
<em>Fast exploratory analysis.</em><br/><br/>
<em>Most stringent and rigorous.</em><br/><br/>
<ul>
<li>Query studies at scale</li>
<li>Search using terms, topics or activation coordinates</li>
<li>Replicate results from original Neurosynth</li>
<li>Immediate results, ideal for a exploratory analysis</li>
<li>Search across multiple sources, such as: PubMed, Web of Science, NeuroStore</li>
<li>Careful curation for inclusion/exclusion criteria</li>
<li>Extract coordinates from studies not already indexed</li>
<li>Meets PRISMA guidelines</li>
</ul>
</Typography>
</CardContent>
</Card>
</Link>
<Link to="tutorial/manual" style={{ textDecoration: 'none' }} style={{ width: '100%', display: 'flex', marginRight: '30px', cursor: 'pointer' }}>
<Link to="tutorial/automated" style={{ textDecoration: 'none' }} style={{ width: '100%', display: 'flex', marginRight: '30px', cursor: 'pointer' }}>
<Card style={{ borderRadius: '8px' }}>
<CardContent>
<Typography variant="h5" component="h2" gutterBottom>
Manual
Automated
</Typography>
<Typography variant="body1" gutterBottom>
<em>Most stringent and rigorous.</em><br/><br/>
<em>Fast exploratory analysis.</em><br/><br/>
<ul>
<li>Search across multiple sources, such as: PubMed, Web of Science, NeuroStore</li>
<li>Careful curation for inclusion/exclusion criteria</li>
<li>Extract coordinates from studies not already indexed</li>
<li>Meets PRISMA guidelines</li>
<li>Query studies at scale</li>
<li>Search using terms, topics or activation coordinates</li>
<li>Replicate results from original Neurosynth</li>
<li>Immediate results, ideal for a exploratory analysis</li>
</ul>
</Typography>
</CardContent>
Expand Down
Loading

0 comments on commit 2e832eb

Please sign in to comment.