This file is indexed.

/usr/bin/pymvpa2-prep-afni-surf is in python-mvpa2 2.6.4-2.

This file is owned by root:root, with mode 0o755.

The actual contents of the file can be viewed below.

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
#!/usr/bin/python
# emacs: -*- mode: python; py-indent-offset: 4; indent-tabs-mode: nil -*-
# vi: set ft=python sts=4 ts=4 sw=4 et:
### ### ### ### ### ### ### ### ### ### ### ### ### ### ### ### ### ### ### ##
#
#   See COPYING file distributed along with the PyMVPA package for the
#   copyright and license terms.
#
### ### ### ### ### ### ### ### ### ### ### ### ### ### ### ### ### ### ### ##
"""Wrapper script for surface-based preprocessing using AFNI and FreeSurfer  
"""

from mvpa2.support.afni.lib_prep_afni_surf import run_prep_afni_surf,\
													 getparser

import sys

__doc__=run_prep_afni_surf.__doc__

if __name__ == '__main__':
	p=getparser()
	d=p.parse_args(sys.argv[1:])
	print ">", d
	
	run_prep_afni_surf(vars(d))