Skip to content

Commit

Permalink
Minor updates and bump to 2.0.8
Browse files Browse the repository at this point in the history
  • Loading branch information
rudolphpienaar committed Feb 5, 2021
1 parent c4c0be6 commit 5469692
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 9 deletions.
14 changes: 7 additions & 7 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ Synopsis
[--version] \
[-y] [--synopsis] \
<inputDir> \
<outputDir>
<outputDir>
Description
-----------
Expand All @@ -55,7 +55,7 @@ Description

For more detailed description, consult the documentation here https://github.com/FNNDSC/mgz2imgslices

**NOTE:**
**NOTE:**

In the instances where the input ``mgz`` volume voxel values are interpreted to imply *labels* (i.e. segmented cortical regions), this plugin can use the embedded FreeSurfer ``FreeSurferColorLUT.txt`` file to map FreeSurfer *label* IDs to human readable cortical label strings in the naming of output directories.

Expand Down Expand Up @@ -107,13 +107,13 @@ Arguments
the <LUTfile> to ``__val__``.
While running the docker image, you can also pass ``__fs__`` which will use
the FreeSurferColorLUT.txt from within the docker container to perform a
looktup on the filtered voxel label values according to the contents of
the FreeSurferColorLUT.txt from within the docker container to perform a
looktup on the filtered voxel label values according to the contents of
the FreeSurferColorLUT.txt
[--skipAllLabels]
Skips all labels and converts only the whole mgz volume to png/jpg images.
[-s|--skipLabelValueList <ListOfLabelNumbersToSkip>]
If specified as a comma separated string of label numbers,
will not create directories of those label numbers.
Expand Down Expand Up @@ -179,7 +179,7 @@ First, let's create a directory, say ``devel`` wherever you feel like it. We wil
cd devel
export DEVEL=$(pwd)
Now, we need to fetch sample MGZ data.
Now, we need to fetch sample MGZ data.

Pull MGZ data
~~~~~~~~~~~~~
Expand Down Expand Up @@ -232,7 +232,7 @@ Copy and modify the different commands below as needed:
--skipLabelValueList 0,2 \
--normalize \
--saveImages \
--wholeVolume entireVolume \
--wholeVolume entireVolume \
--verbosity 1 \
/incoming /outgoing
Expand Down
2 changes: 1 addition & 1 deletion mgz2imageslices/mgz2imageslices.py
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ class Mgz2imgslices(ChrisApp):
TYPE = 'ds'
DESCRIPTION = 'An app to convert mgz volumes to numpy arrays and png image formats'
DOCUMENTATION = 'https://github.com/FNNDSC/pl-mgz2imgslices'
VERSION = '2.0.6'
VERSION = '2.0.8'
ICON = '' # url of an icon image
LICENSE = 'Opensource (MIT)'
MAX_NUMBER_OF_WORKERS = 1 # Override with integer value
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ def readme():
name = 'mgz2imgslices',
# for best practices make this version the same as the VERSION class variable
# defined in your ChrisApp-derived Python class
version = '2.0.6',
version = '2.0.8',
description = 'An app to ...',
long_description = readme(),
author = 'FNNDSC',
Expand Down

0 comments on commit 5469692

Please sign in to comment.