Skip to content

Commit

Permalink
Bump version to 0.3.8
Browse files Browse the repository at this point in the history
  • Loading branch information
Jeff1995 committed Jul 13, 2020
1 parent 74287ce commit 4759b93
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Cell_BLAST/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,4 30,4 @@
"config"
]

__version__ = "0.3.7"
__version__ = "0.3.8"
1 change: 1 addition & 0 deletions Cell_BLAST/data.py
Original file line number Diff line number Diff line change
Expand Up @@ -1413,6 1413,7 @@ def write_clean(data):
if not isinstance(data, np.ndarray):
data = np.array(data)
if data.dtype.type is np.object_:
data = data.copy()
data[utils.isnan(data)] = config._NAN_REPLACEMENT
if data.dtype.type in (np.str_, np.object_):
data = utils.encode(data)
Expand Down
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 43,8 @@ Now follow the instructions below to install Cell BLAST:
3. Check if the package can be imported in Python interpreter:
`import Cell_BLAST as cb`

## Documentation

Online documentation can be found [here](http://cblast.gao-lab.org/doc-latest/index.html).

## Web-based interface
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 5,7 @@

setuptools.setup(
name="Cell_BLAST",
version="0.3.7",
version="0.3.8",
author="Zhijie Cao",
author_email="[email protected]",
description="Single-cell transcriptome querying tool",
Expand Down

0 comments on commit 4759b93

Please sign in to comment.