This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
"""Find openneuro datasets that have an fmriprep derivative | |
This is a fairly brute-force method. Takes about one hour, and 8GB of HD space. | |
requirements: | |
datalad | |
pandas | |
requests | |
""" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Applying baseline correction ... (mode: mean) | |
Applying baseline correction ... (mode: mean) | |
5 bad epochs dropped | |
Loading and filtering 1 files. | |
Opening raw data file /diskArray/data/clj/zc/sss_fif/zc_clj_01_raw_sss.fif... | |
Current compensation grade : 0 | |
Range : 26000 ... 941999 = 26.000 ... 941.999 secs | |
Ready. | |
Reading 0 ... 915999 = 0.000 ... 915.999 secs... |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# installing zipimport hook | |
import zipimport # builtin | |
# installed zipimport hook | |
# /usr/lib/python2.7/site.pyc matches /usr/lib/python2.7/site.py | |
import site # precompiled from /usr/lib/python2.7/site.pyc | |
# /usr/lib/python2.7/os.pyc matches /usr/lib/python2.7/os.py | |
import os # precompiled from /usr/lib/python2.7/os.pyc | |
import errno # builtin | |
import posix # builtin | |
# /usr/lib/python2.7/posixpath.pyc matches /usr/lib/python2.7/posixpath.py |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Brlapi==0.5.6 | |
GnuPGInterface==0.3.2 | |
Mako==0.5.0 | |
MarkupSafe==0.15 | |
PAM==0.4.2 | |
PIL==1.1.7 | |
Twisted-Core==11.1.0 | |
Twisted-Names==11.1.0 | |
Twisted-Web==11.1.0 | |
adium-theme-ubuntu==0.3.2 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# -*- coding: utf-8 -*- | |
# Author: Douglas Creager <[email protected]> | |
# This file is placed into the public domain. | |
# Calculates the current version number. If possible, this is the | |
# output of “git describe”, modified to conform to the versioning | |
# scheme that setuptools uses. If “git describe” returns an error | |
# (most likely because we're in an unpacked copy of a release tarball, | |
# rather than in a git working copy), then we fall back on reading the | |
# contents of the RELEASE-VERSION file. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# fabric extension to enable handling expected prompts | |
# | |
# Read more at http://ilogue.com/jasper/blog/fexpect--dealing-with-prompts-in-fabric-with-pexpect/ | |
# | |
# This file Copyright (c) Jasper van den Bosch, ilogue, [email protected] | |
# Pexpect Copyright (c) 2012 Noah Spurrier ,see: http://www.noah.org/wiki/pexpect#License | |
from fabric.state import env | |
import fabric.api |