5 Commits

Author SHA1 Message Date
Alok Saldanha
3cb521259e renaming environment.yml for nice conda autoenv behavior 2020-04-13 17:32:16 -04:00
Alok Saldanha
11bbc1aba8 pin cellxgene version 2020-03-30 18:42:43 -04:00
Alok Saldanha
186ccde277 misnamed key in process_exception.py 2020-03-30 18:37:29 -04:00
Alok Saldanha
2b65c095a6 updated import to reflect change in werkzeug api 2020-03-23 03:49:20 -04:00
Alokito
bae42edd3f Merge pull request #17 from Novartis/annotations
Support for Annotations
2020-01-29 07:54:15 -05:00
5 changed files with 7 additions and 5 deletions

2
.gitignore vendored
View File

@@ -136,3 +136,5 @@ dmypy.json
.pyre/
# End of https://www.gitignore.io/api/python
.vscode

View File

@@ -23,7 +23,7 @@ from flask import (
url_for,
)
from flask_api import status
from werkzeug import secure_filename
from werkzeug.utils import secure_filename
from cellxgene_gateway import env
from cellxgene_gateway.backend_cache import BackendCache

View File

@@ -9,7 +9,7 @@
class ProcessException(Exception):
def __init__(self, message, stdout, stderr, http_status, dataset):
def __init__(self, message, stdout, stderr, http_status, key):
Exception.__init__(self)
self.message = message
self.stdout = stdout

View File

@@ -1,4 +1,4 @@
name: cellxgene-dev
name: cellxgene-gateway
channels:
- conda-forge
dependencies:
@@ -8,4 +8,4 @@ dependencies:
- psutil
- pip:
- flask-api
- cellxgene
- cellxgene==0.14.1

View File

@@ -1,4 +1,4 @@
cellxgene
cellxgene==0.14.1
flask
flask_api
psutil