Skip to content

Commit 27f54c6

Browse files
authored
MAINT: Update fsaverage (#270)
* MAINT: Update fsaverage * FIX: Bump to 3.5 * ENH: Run more on CircleCI * MAINT: CI * MAINT: CI * MAINT: CI * MAINT: Circle * FIX: Pattern * FIX: Circle * FIX: Try again * FIX: Better * FIX: One more
1 parent 8b0d631 commit 27f54c6

File tree

7 files changed

+58
-78
lines changed

7 files changed

+58
-78
lines changed

.circleci/config.yml

+20-21
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@ jobs:
1313
echo "export DISPLAY=:99" >> $BASH_ENV;
1414
echo "export OPENBLAS_NUM_THREADS=4" >> $BASH_ENV;
1515
echo "export PATH=~/.local/bin:$PATH" >> $BASH_ENV;
16+
echo "export PATTERN=\"plot_\(?\!fmri_activation_volume\|resting_correlations\)\"" >> $BASH_ENV;
1617
- run:
1718
name: Merge with upstream
1819
command: |
@@ -25,12 +26,6 @@ jobs:
2526
git fetch upstream master;
2627
fi
2728
28-
# Load our data
29-
- restore_cache:
30-
keys:
31-
- data-cache-0
32-
- pip-cache
33-
3429
- run:
3530
name: Spin up Xvfb
3631
command: |
@@ -43,11 +38,18 @@ jobs:
4338
command: |
4439
sudo apt-get install qt5-default
4540
41+
# Load our data
42+
- restore_cache:
43+
keys:
44+
- data-cache-0
45+
- pip-cache
46+
4647
- run:
4748
name: Get Python running
4849
command: |
4950
pip install --user -q --upgrade pip numpy
50-
pip install --user -q --upgrade --progress-bar off scipy matplotlib vtk pyqt5 pyqt5-sip nibabel sphinx numpydoc pillow imageio imageio-ffmpeg https://api.github.com/repos/sphinx-gallery/sphinx-gallery/zipball/master mayavi
51+
pip install --user -q --upgrade --progress-bar off scipy matplotlib vtk pyqt5 pyqt5-sip nibabel sphinx numpydoc pillow imageio imageio-ffmpeg sphinx-gallery
52+
pip install --user -q --upgrade mayavi "https://api.github.com/repos/mne-tools/mne-python/zipball/master"
5153
- save_cache:
5254
key: pip-cache
5355
paths:
@@ -58,18 +60,19 @@ jobs:
5860
name: Check installation
5961
command: |
6062
LIBGL_DEBUG=verbose python -c "from mayavi import mlab; import matplotlib.pyplot as plt; mlab.figure(); plt.figure()"
61-
echo $SUBJECTS_DIR
63+
6264
- run:
6365
name: Get data
6466
command: |
65-
if [ ! -d $SUBJECTS_DIR ]; then
66-
mkdir $SUBJECTS_DIR;
67-
cd $SUBJECTS_DIR;
68-
wget http://faculty.washington.edu/larsoner/fsaverage_min.zip;
69-
unzip fsaverage_min.zip;
70-
rm fsaverage_min.zip;
71-
fi;
67+
echo $SUBJECTS_DIR
68+
mkdir -p $SUBJECTS_DIR
69+
python -c "import mne; mne.datasets.fetch_fsaverage(verbose=True)"
7270
ls $SUBJECTS_DIR
71+
- save_cache:
72+
key: data-cache-0
73+
paths:
74+
- "~/subjects"
75+
7376
- run:
7477
name: Install PySurfer
7578
command: |
@@ -79,21 +82,17 @@ jobs:
7982
name: Build docs
8083
command: |
8184
cd doc
82-
sphinx-build -D plot_gallery=1 -D sphinx_gallery_conf.filename_pattern=^\(\(?\!plot_fmri_activation_volume\|plot_morphometry\|plot_label\.py\|plot_probabilistic_label\|plot_resting_correlations\|plot_transparent_brain\|rotate_animation\|save_movie\|save_views\).\)*\$ -b html -d _build/doctrees . _build/html
85+
echo $PATTERN
86+
make html_dev-pattern
8387
8488
- store_artifacts:
8589
path: doc/_build/html/
8690
destination: html
8791

88-
- save_cache:
89-
key: data-cache-0
90-
paths:
91-
- "~/subjects"
9292

9393
workflows:
9494
version: 2
9595

9696
default:
9797
jobs:
9898
- build_docs
99-

.travis.yml

+13-23
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,14 @@
11
language: c
22
sudo: false
3-
3+
dist: xenial
4+
services:
5+
- xvfb
46
env:
57
global: PYTHON_VERSION=3.7
68
CONDA_DEPENDENCIES="numpy scipy matplotlib pyqt>=5.9 coverage pytest pytest-cov flake8 pygments traits traitsui pyface"
79
PIP_DEPENDENCIES="codecov pytest-sugar pytest-faulthandler nibabel imageio imageio-ffmpeg"
810
DISPLAY=:99.0
11+
SUBJECTS_DIR=~/subjects
912

1013
matrix:
1114
include:
@@ -16,11 +19,11 @@ matrix:
1619
packages:
1720
- mencoder
1821

19-
# 2.7, no mencoder
22+
# 3.5, no mencoder
2023
- os: linux
21-
env: PYTHON_VERSION=2.7
22-
CONDA_DEPENDENCIES="numpy scipy matplotlib coverage pytest pytest-cov flake8 mayavi"
23-
PIP_DEPENDENCIES="codecov pytest-sugar faulthandler pytest-faulthandler nibabel imageio"
24+
env: PYTHON_VERSION=3.5
25+
CONDA_DEPENDENCIES="numpy scipy matplotlib coverage pytest pytest-cov flake8"
26+
PIP_DEPENDENCIES="codecov pytest-sugar nibabel imageio imageio-ffmpeg"
2427

2528
# OSX
2629
- os: osx
@@ -32,32 +35,19 @@ before_install:
3235
- if [ "${TRAVIS_OS_NAME}" == "osx" ]; then
3336
unset -f cd;
3437
fi;
35-
- if [ "${TRAVIS_OS_NAME}" == "linux" ]; then
36-
echo "Starting Xvfb...";
37-
/sbin/start-stop-daemon --start --quiet --pidfile /tmp/custom_xvfb_99.pid --make-pidfile --background --exec /usr/bin/Xvfb -- :99 -screen 0 1400x900x24 -ac +extension GLX +render;
38-
fi;
3938
- git clone https://github.com/astropy/ci-helpers.git
4039
- source ci-helpers/travis/setup_conda.sh
41-
- if [ "$PYTHON_VERSION" != "2.7" ]; then
42-
pip install vtk;
43-
pip install mayavi;
44-
fi;
40+
- pip install vtk
41+
- pip install mayavi
42+
- mkdir -p $SUBJECTS_DIR
43+
- pip install "https://api.github.com/repos/mne-tools/mne-python/zipball/master"
44+
- python -c "import mne; mne.datasets.fetch_fsaverage(verbose=True)"
4545

4646
install:
4747
- python setup.py build
4848
- python setup.py install
4949
- SRC_DIR=$(pwd)
5050

51-
before_script:
52-
# Let's create a (fake) display on Travis, and let's use a funny resolution
53-
- cd ~
54-
- wget --quiet http://faculty.washington.edu/larsoner/fsaverage_min.zip
55-
- mkdir subjects
56-
- cd subjects
57-
- unzip ../fsaverage_min.zip
58-
- cd ..
59-
- export SUBJECTS_DIR="${PWD}/subjects"
60-
6151
script:
6252
- cd ${SRC_DIR}
6353
- pytest surfer --cov=surfer -v

doc/Makefile

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@
22
#
33

44
# You can set these variables from the command line.
5-
SPHINXOPTS =
5+
SPHINXOPTS = -nWT --keep-going
66
SPHINXBUILD = sphinx-build
7-
PAPER =
7+
GPAPER =
88
BUILDDIR = _build
99

1010
# Internal variables.

doc/conf.py

+10-16
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@
5151
]
5252

5353
autosummary_generate = True
54-
autodoc_default_flags = ['inherited-members']
54+
autodoc_default_options = {'inherited-members': None}
5555

5656
# Add any paths that contain templates here, relative to this directory.
5757
templates_path = ['_templates']
@@ -250,10 +250,10 @@
250250
# 'python': ('http://docs.python.org/', None),
251251
# 'numpy': ('http://docs.scipy.org/doc/numpy-dev/', None),
252252
# 'scipy': ('http://scipy.github.io/devdocs/', None),
253-
'matplotlib': ('http://matplotlib.org', None),
254-
'imageio': ('http://imageio.readthedocs.io/en/latest', None),
255-
'mayavi': ('http://docs.enthought.com/mayavi/mayavi', None),
256-
'nibabel': ('http://nipy.org/nibabel', None),
253+
'matplotlib': ('https://matplotlib.org', None),
254+
'imageio': ('https://imageio.readthedocs.io/en/latest', None),
255+
'mayavi': ('https://docs.enthought.com/mayavi/mayavi', None),
256+
'nibabel': ('https://nipy.org/nibabel', None),
257257
}
258258

259259
# One entry per manual page. List of tuples
@@ -268,31 +268,25 @@
268268

269269
try:
270270
from mayavi import mlab
271-
find_mayavi_figures = True
272271
# Do not pop up any mayavi windows while running the
273272
# examples. These are very annoying since they steal the focus.
274273
mlab.options.offscreen = True
274+
scrapers = ('matplotlib', 'mayavi')
275275
except Exception:
276-
find_mayavi_figures = False
276+
scrapers = ('matplotlib',)
277277

278278
sphinx_gallery_conf = {
279279
'doc_module': ('surfer',),
280-
'reference_url': {
281-
'surfer': None,
282-
'matplotlib': 'http://matplotlib.org',
283-
'numpy': 'http://docs.scipy.org/doc/numpy',
284-
'scipy': 'http://docs.scipy.org/doc/scipy/reference',
285-
'mayavi': 'http://docs.enthought.com/mayavi/mayavi',
286-
},
280+
'reference_url': {'surfer': None},
287281
'examples_dirs': examples_dirs,
288282
'gallery_dirs': gallery_dirs,
289283
'within_subsection_order': FileNameSortKey,
290-
'find_mayavi_figures': find_mayavi_figures,
284+
'image_scrapers': scrapers,
291285
'default_thumb_file': os.path.join('_static', 'pysurfer_logo_small.png'),
292286
'backreferences_dir': 'generated',
293287
'download_section_examples': False,
294288
'thumbnail_size': (250, 250),
295-
}
289+
}
296290

297291
numpydoc_class_members_toctree = False
298292
numpydoc_show_inherited_class_members = False

doc/documentation/command_line.rst

-3
Original file line numberDiff line numberDiff line change
@@ -50,6 +50,3 @@ Other command-line options
5050
As in tksurfer, most aspects of the visualization can be initialized
5151
from the command-line. To get a full documentation of the command-line
5252
interface, simply type ``pysurfer`` at a terminal prompt and hit enter.
53-
For convenience, this usage message is reproduced below.
54-
55-
.. literalinclude:: pysurfer_usage.txt

examples/plot_label.py

+8-8
Original file line numberDiff line numberDiff line change
@@ -18,31 +18,31 @@
1818

1919
# If the label lives in the normal place in the subjects directory,
2020
# you can plot it by just using the name
21-
brain.add_label("BA1_exvivo")
21+
brain.add_label("BA1")
2222

2323
# Some labels have an associated scalar value at each ID in the label.
2424
# For example, they may be probabilistically defined. You can threshold
2525
# what vertices show up in the label using this scalar data
26-
brain.add_label("BA1_exvivo", color="blue", scalar_thresh=.5)
26+
brain.add_label("BA1", color="blue", scalar_thresh=.5)
2727

2828
# Or you can give a path to a label in an arbitrary location
2929
subj_dir = brain.subjects_dir
3030
label_file = os.path.join(subj_dir, subject_id,
31-
"label", "%s.MT_exvivo.label" % hemi)
31+
"label", "%s.MT.label" % hemi)
3232
brain.add_label(label_file)
3333

3434
# By default the label is 'filled-in', but you can
3535
# plot just the label boundaries
36-
brain.add_label("BA44_exvivo", borders=True)
36+
brain.add_label("BA44", borders=True)
3737

3838
# You can also control the opacity of the label color
39-
brain.add_label("BA6_exvivo", alpha=.7)
39+
brain.add_label("BA6", alpha=.7)
4040

4141
# Finally, you can plot the label in any color you want.
4242
brain.show_view(dict(azimuth=-42, elevation=105, distance=225,
4343
focalpoint=[-30, -20, 15]))
4444

4545
# Use any valid matplotlib color.
46-
brain.add_label("V1_exvivo", color="steelblue", alpha=.6)
47-
brain.add_label("V2_exvivo", color="#FF6347", alpha=.6)
48-
brain.add_label("entorhinal_exvivo", color=(.2, 1, .5), alpha=.6)
46+
brain.add_label("V1", color="steelblue", alpha=.6)
47+
brain.add_label("V2", color="#FF6347", alpha=.6)
48+
brain.add_label("entorhinal", color=(.2, 1, .5), alpha=.6)

examples/plot_probabilistic_label.py

+5-5
Original file line numberDiff line numberDiff line change
@@ -28,27 +28,27 @@
2828
The easiest way to label any vertex that could be in the region is with
2929
add_label.
3030
"""
31-
brain.add_label("BA1_exvivo", color="#A6BDDB")
31+
brain.add_label("BA1", color="#A6BDDB")
3232

3333
"""
3434
You can also threshold based on the probability of that region being at each
3535
vertex.
3636
"""
37-
brain.add_label("BA1_exvivo", color="#2B8CBE", scalar_thresh=.5)
37+
brain.add_label("BA1", color="#2B8CBE", scalar_thresh=.5)
3838

3939
"""
4040
It's also possible to plot just the label boundary, in case you wanted to
4141
overlay the label on an activation plot to asses whether it falls within that
4242
region.
4343
"""
44-
brain.add_label("BA45_exvivo", color="#F0F8FF", borders=3, scalar_thresh=.5)
45-
brain.add_label("BA45_exvivo", color="#F0F8FF", alpha=.3, scalar_thresh=.5)
44+
brain.add_label("BA45", color="#F0F8FF", borders=3, scalar_thresh=.5)
45+
brain.add_label("BA45", color="#F0F8FF", alpha=.3, scalar_thresh=.5)
4646

4747
"""
4848
Finally, with a few tricks, you can display the whole probabilistic map.
4949
"""
5050
subjects_dir = environ["SUBJECTS_DIR"]
51-
label_file = join(subjects_dir, "fsaverage", "label", "lh.BA6_exvivo.label")
51+
label_file = join(subjects_dir, "fsaverage", "label", "lh.BA6.label")
5252

5353
prob_field = np.zeros_like(brain.geo['lh'].x)
5454
ids, probs = read_label(label_file, read_scalars=True)

0 commit comments

Comments
 (0)