File tree Expand file tree Collapse file tree 1 file changed +12
-2
lines changed
Expand file tree Collapse file tree 1 file changed +12
-2
lines changed Original file line number Diff line number Diff line change 1- #ICA_AROMA pulled from: https://github.com/rhr-pruim/ICA-AROMA
2- #This assumes ICA_AROMA.py is already installed and callable via $PATH
1+ # -*- coding: utf-8 -*-
2+ # emacs: -*- mode: python; py-indent-offset: 4; indent-tabs-mode: nil -*-
3+ # vi: set ft=python sts=4 ts=4 sw=4 et:
4+ """This commandline module provides classes for interfacing with the
5+ `ICA-AROMA.py<https://github.com/rhr-pruim/ICA-AROMA>`_ command line tool.
6+ Change directory to provide relative paths for doctests
7+ >>> import os
8+ >>> filepath = os.path.dirname(os.path.realpath(__file__))
9+ >>> datadir = os.path.realpath(os.path.join(filepath,
10+ ... '../../testing/data'))
11+ >>> os.chdir(datadir)
12+ """
313from nipype .interfaces .base import (
414 TraitedSpec ,
515 CommandLineInputSpec ,
You can’t perform that action at this time.
0 commit comments