This file is indexed.

/usr/bin/dipy_mask is in python-dipy 0.13.0-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
#! /usr/bin/python

from __future__ import division, print_function

from dipy.workflows.flow_runner import run_flow
from dipy.workflows.mask import MaskFlow

if __name__ == "__main__":
    run_flow(MaskFlow())