diff --git a/doc/example_script.rst b/doc/example_script.rst index 3419a41..a150711 100644 --- a/doc/example_script.rst +++ b/doc/example_script.rst @@ -14,7 +14,7 @@ Once all of these files are setup, the tract bundles are obtained by issuing the .. code-block:: bash - tract_querier -t tractography_file.vtk -a wmparc.nii.gz -q wmql_script.qry -o tract_output + query_tracts -t tractography_file.vtk -a wmparc.nii.gz -q wmql_script.qry -o tract_output where **tractography_file.vtk** is the full-brain tractography, **wmparc.nii.gz** is the brain parcellation, **wmql_script.qry** is the WMQL script and **tract_output** is the prefix for the output bundles. diff --git a/pyproject.toml b/pyproject.toml index a5020e5..74adff9 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -46,8 +46,8 @@ homepage = "http://demianw.github.io/tract_querier" repository = "https://github.com/demianw/tract_querier" [project.scripts] -tract_math = "scripts.tract_math:main" -tract_querier = "scripts.tract_querier:main" +tract_math = "scripts.apply_tract_maths:main" +tract_querier = "scripts.query_tracts:main" [tool.setuptools] include-package-data = true diff --git a/scripts/tract_math.py b/scripts/apply_tract_maths.py similarity index 100% rename from scripts/tract_math.py rename to scripts/apply_tract_maths.py diff --git a/scripts/tract_querier.py b/scripts/query_tracts.py similarity index 100% rename from scripts/tract_querier.py rename to scripts/query_tracts.py