Compare commits

...
Author SHA1 Message Date
Charlotte Weaver fcb1e988ad patch release 0.9.2 2019-05-07 12:49:22 -07:00
Charlotte Weaver a7bd76f676 fix #754 (#755) 2019-05-07 12:44:37 -07:00
6 changed files with 6 additions and 6 deletions
+1 -1
View File
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 0.9.1
current_version = 0.9.2
[bumpversion:file:setup.py]
search = version="{current_version}"
+1 -1
View File
@@ -1,6 +1,6 @@
{
"name": "cellxgene",
"version": "0.9.1",
"version": "0.9.2",
"lockfileVersion": 1,
"requires": true,
"dependencies": {
+1 -1
View File
@@ -1,6 +1,6 @@
{
"name": "cellxgene",
"version": "0.9.1",
"version": "0.9.2",
"license": "MIT",
"description": "cellxgene is a web application for the interactive exploration of single cell sequence data.",
"repository": "https://github.com/chanzuckerberg/cellxgene",
+1 -1
View File
@@ -304,7 +304,7 @@ class ScanpyEngine(CXGDriver):
if sparse.issparse(X): # use tuned getcol/hstack for performance
indices = np.nonzero(var_mask)[0]
cols = [X.getcol(i) for i in indices]
return sparse.hstack(cols)
return sparse.hstack(cols, format="csc")
else: # else, just use standard slicing, which is fine for dense arrays
return X[:, var_mask]
+1 -1
View File
@@ -5,7 +5,7 @@ from .prepare import prepare
@click.group(name="cellxgene", context_settings=dict(max_content_width=85))
@click.version_option(version="0.9.1", prog_name="cellxgene", message="[%(prog)s] Version %(version)s")
@click.version_option(version="0.9.2", prog_name="cellxgene", message="[%(prog)s] Version %(version)s")
def cli():
pass
+1 -1
View File
@@ -8,7 +8,7 @@ with open("server/requirements.txt") as fh:
setup(
name="cellxgene",
version="0.9.1",
version="0.9.2",
packages=find_packages(),
url="https://github.com/chanzuckerberg/cellxgene",
license="MIT",