/usr/bin/dipy_reconst_csd 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.reconst import ReconstCSDFlow
if __name__ == "__main__":
run_flow(ReconstCSDFlow())
|