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

Incorporate Neurosynth data into PySurfer #63

Open
mwaskom opened this issue Sep 8, 2013 · 3 comments
Open

Incorporate Neurosynth data into PySurfer #63

mwaskom opened this issue Sep 8, 2013 · 3 comments

Comments

@mwaskom
Copy link
Member

mwaskom commented Sep 8, 2013

This is a placeholder for some functionality I'd like to add at some point. I think it would be nice to be able to do, e.g.

brain.add_neurosynth_term("executive", "reverse")

And get a map with the reverse inference statistics for the term "executive" plotted.

I used to have a toy notebook to do something similar, but the downloading API has changed and so that no longer works.

We'd probably want to go straight from the coordinates to the surface anyway, rather than detouring through a volume image.

CC: @tyarkoni who will probably have quick answers to questions that come up when I start actually working on this

@dengemann
Copy link
Contributor

This is a placeholder for some functionality I'd like to add at some point. I think it would be nice to be able to do, e.g.

+++100

@tyarkoni
Copy link

tyarkoni commented Sep 8, 2013

That would be great! Neurosynth has a REST API that should be more or less operational, so you should already be able to grab images pretty easily. E.g., if you want the reverse inference map for executive, you can get the JSON data from:

http://neurosynth.org/features/executive.json

The returned object has an 'images' field, which is a list of all available images (typically with just the forward and reverse images). Based on the ID (which you can pick out by, e.g., doing a regex search for 'reverse'), you can then fetch the reverse inference image directly:

http://neurosynth.org/images/225/download

Hope that helps!

@mwaskom
Copy link
Member Author

mwaskom commented Sep 8, 2013

Cool, I'm glad there is enthusiasm for this. Thanks Tal, that will be very helpful.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

3 participants