Skip to content

Commit 261fade

Browse files
author
Fred Mertz
committed
added docstring to top
1 parent d4a472d commit 261fade

File tree

1 file changed

+12
-2
lines changed

1 file changed

+12
-2
lines changed

nipype/interfaces/fsl/ICA_AROMA.py

Lines changed: 12 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,15 @@
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+
"""
313
from nipype.interfaces.base import (
414
TraitedSpec,
515
CommandLineInputSpec,

0 commit comments

Comments
 (0)