File: run_examples.py

package info (click to toggle)
nipype 1.9.2-4
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 15,260 kB
  • sloc: python: 156,463; javascript: 9,246; tcl: 608; sh: 485; makefile: 168
file content (17 lines) | stat: -rw-r--r-- 389 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
import sys
from textwrap import dedent


if __name__ == "__main__":
    print(
        dedent(
            """Nipype examples have been moved to niflow-nipype1-examples.

Install with: pip install niflow-nipype1-examples"""
        )
    )
    if sys.argv[1:]:
        print(
            "Run this command with: niflow-nipype1-examples " + " ".join(sys.argv[1:])
        )
    sys.exit(1)