-
Notifications
You must be signed in to change notification settings - Fork 34
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #173 from jhlegarreta/RemoveVersionFromScriptArgPa…
…rser BUG: Remove non-existing `version` keyword parameter in script argparser
- Loading branch information
Showing
5 changed files
with
5 additions
and
10 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -15,8 +15,7 @@ def _build_arg_parser(): | |
|
||
parser = argparse.ArgumentParser( | ||
description="Compare two tractography files to see how much registration has changed the points. The files must have the exact same size and lines and points, e.g. the original file and the file that results from applying a transform to a file.", | ||
epilog="Written by Lauren O\'Donnell, [email protected]. Please reference \"O'Donnell, Lauren J., and C-F. Westin. Automatic tractography segmentation using a high-dimensional white matter atlas. Medical Imaging, IEEE Transactions on 26.11 (2007): 1562-1575.\"", | ||
version='1.0') | ||
epilog="Written by Lauren O\'Donnell, [email protected]. Please reference \"O'Donnell, Lauren J., and C-F. Westin. Automatic tractography segmentation using a high-dimensional white matter atlas. Medical Imaging, IEEE Transactions on 26.1 (2007): 1562-1575.\"") | ||
parser.add_argument( | ||
'inputFile1', | ||
help='A file of whole-brain tractography as vtkPolyData (.vtk or .vtp).') | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -16,8 +16,7 @@ def _build_arg_parser(): | |
|
||
parser = argparse.ArgumentParser( | ||
description="Samples fibers such that the output distribution of fiber lengths is approximately flat, within the input length range.", | ||
epilog="Written by Lauren O\'Donnell, [email protected]", | ||
version='1.0') | ||
epilog="Written by Lauren O\'Donnell, [email protected]") | ||
parser.add_argument( | ||
'inputDirectory', | ||
help='Contains whole-brain tractography as vtkPolyData file(s).') | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -16,8 +16,7 @@ def _build_arg_parser(): | |
|
||
parser = argparse.ArgumentParser( | ||
description="Compute requested statistics comparing groups in the input groups file. Please verify your input by running wm_quality_control_cluster measurements before running this program.", | ||
epilog="Written by Lauren O\'Donnell, [email protected]. Please reference \"O'Donnell, Lauren J., and C-F. Westin. Automatic tractography segmentation using a high-dimensional white matter atlas. Medical Imaging, IEEE Transactions on 26.11 (2007): 1562-1575.\"", | ||
version='1.0') | ||
epilog="Written by Lauren O\'Donnell, [email protected]. Please reference \"O'Donnell, Lauren J., and C-F. Westin. Automatic tractography segmentation using a high-dimensional white matter atlas. Medical Imaging, IEEE Transactions on 26.11 (2007): 1562-1575.\"") | ||
parser.add_argument( | ||
'inputDirectory', | ||
help='A directory of .csv or txt measurement files from Slicer tractography measurements.') | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -13,8 +13,7 @@ def _build_arg_parser(): | |
|
||
parser = argparse.ArgumentParser( | ||
description="Export all subjects selected measures into one excel-readable file for use in statistics programs. Please verify your input by running wm_quality_control_cluster measurements before running this program.", | ||
epilog="Written by Lauren O\'Donnell, [email protected]. Please reference \"O'Donnell, Lauren J., and C-F. Westin. Automatic tractography segmentation using a high-dimensional white matter atlas. Medical Imaging, IEEE Transactions on 26.11 (2007): 1562-1575.\"", | ||
version='1.0') | ||
epilog="Written by Lauren O\'Donnell, [email protected]. Please reference \"O'Donnell, Lauren J., and C-F. Westin. Automatic tractography segmentation using a high-dimensional white matter atlas. Medical Imaging, IEEE Transactions on 26.11 (2007): 1562-1575.\"") | ||
parser.add_argument( | ||
'inputDirectory', | ||
help='A directory of .csv or txt measurement files from Slicer tractography measurements.') | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -17,8 +17,7 @@ def _build_arg_parser(): | |
|
||
parser = argparse.ArgumentParser( | ||
description="Applies preprocessing to input directory. Downsamples, removes short fibers. Preserves tensors and scalar point data along retained fibers.", | ||
epilog="Written by Lauren O\'Donnell, [email protected]", | ||
version='1.0') | ||
epilog="Written by Lauren O\'Donnell, [email protected]") | ||
parser.add_argument( | ||
'inputDirectory', | ||
help='Contains whole-brain tractography as vtkPolyData file(s).') | ||
|