mirror of
https://github.com/chanzuckerberg/cellxgene.git
synced 2026-09-25 02:58:12 +08:00
merge louvain and prepare extra requires (#897)
This commit is contained in:
@@ -160,14 +160,7 @@ def prepare(
|
||||
sc.pp.neighbors(adata)
|
||||
|
||||
def run_louvain(adata):
|
||||
try:
|
||||
sc.tl.louvain(adata)
|
||||
except ModuleNotFoundError:
|
||||
click.echo(
|
||||
"\nWarning: louvain module is not installed, no clusters will be calculated. "
|
||||
"To fix this please install cellxgene with the optional feature louvain enabled: "
|
||||
"`pip install cellxgene[louvain]`"
|
||||
)
|
||||
sc.tl.louvain(adata)
|
||||
|
||||
def run_layout(adata):
|
||||
if len(unique(adata.obs["louvain"].values)) < 10:
|
||||
|
||||
@@ -1 +1,3 @@
|
||||
scanpy>=1.3.7
|
||||
python-igraph
|
||||
louvain>=0.6
|
||||
|
||||
@@ -39,5 +39,5 @@ setup(
|
||||
"Topic :: Scientific/Engineering :: Bio-Informatics",
|
||||
],
|
||||
entry_points={"console_scripts": ["cellxgene = server.cli.cli:cli"]},
|
||||
extras_require=dict(prepare=requirements_prepare, louvain=["python-igraph", "louvain>=0.6"], gui=["PySide2>=5.12.3", "cefpython3>=66", "requests"]),
|
||||
extras_require=dict(prepare=requirements_prepare, gui=["PySide2>=5.12.3", "cefpython3>=66", "requests"]),
|
||||
)
|
||||
|
||||
Reference in New Issue
Block a user