Skip to content

Commit

Permalink
Merge pull request #82 from BBQuercus/release_0.0.6
Browse files Browse the repository at this point in the history
Release 0.0.6
  • Loading branch information
BBQuercus authored Sep 8, 2020
2 parents d2755ac + 542a630 commit b22b145
Show file tree
Hide file tree
Showing 6 changed files with 8 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .bumpversion.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 0.0.5
current_version = 0.0.6
commit = False
tag = True

Expand Down
2 changes: 1 addition & 1 deletion README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -70,6 +70,6 @@ Usage

Inferencing on deepBlink is performed at the command line as follows: ::

deepblink [-h] [-o OUTPUT] [-t {csv,txt}] [-v] [-V] MODEL INPUT
deepblink [-h] [-o OUTPUT] [-t {csv,txt}] [-r RADIUS] [-v] [-V] MODEL INPUT

More detailed information is availabe in our `documentation <https://deepblink.readthedocs.io/>`_.
2 changes: 1 addition & 1 deletion deepblink/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
- util: Basic utility functions not fitting into a category.
"""

__version__ = "0.0.5"
__version__ = "0.0.6"

from . import augment
from . import cli
Expand Down
5 changes: 3 additions & 2 deletions deepblink/cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
run multiple images at once by passing a directory as input.
Usage:
``$ deepblink [-h] [-o OUTPUT] [-t {csv,txt}] [-v] [-V] MODEL INPUT``
``$ deepblink [-h] [-o OUTPUT] [-t {csv,txt}] [-r RADIUS] [-v] [-V] MODEL INPUT``
``$ deepblink --help``
Positional Arguments:
Expand All @@ -17,6 +17,7 @@
-o, --output output file/folder location [default: input location]
-t, --type output file type [options: csv, txt] [default: csv]
-r, --radius if given, calculate the integrated intensity in the given radius around each coordinate
-v, --verbose set program output to verbose [default: quiet]
-V, --version show version program's version number and exit
Expand Down Expand Up @@ -133,7 +134,7 @@ def _parse_args():
action="store_true",
help="set program output to verbose [default: quiet]",
)
parser.add_argument("-V", "--version", action="version", version="%(prog)s 0.0.5")
parser.add_argument("-V", "--version", action="version", version="%(prog)s 0.0.6")
args = parser.parse_args()

return args
Expand Down
2 changes: 1 addition & 1 deletion docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@
year = "2020"
author = "Bastian Eichenberger"
copyright = f"{year}, {author}"
version = release = "0.0.5"
version = release = "0.0.6"

pygments_style = "trac"
templates_path = ["."]
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
setup(
# Description
name="deepblink",
version="0.0.5",
version="0.0.6",
license="MIT",
description="Threshold independent detection and localization of diffraction-limited spots.",
long_description_content_type="text/plain",
Expand Down

0 comments on commit b22b145

Please sign in to comment.