Skip to content

Commit 320f66c

Browse files
committed
pySCENIC depends on latest version of loompy package.
1 parent 0eab44e commit 320f66c

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

requirements.notebooks.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,6 @@ pyyaml
1717
tqdm
1818
interlap
1919
umap-learn
20-
loompy==2.0.2
20+
loompy
2121
networkx
2222
matplotlib

requirements.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,5 +17,5 @@ pyyaml
1717
tqdm
1818
interlap
1919
umap-learn
20-
loompy==2.0.2
20+
loompy
2121
networkx

src/pyscenic/cli/utils.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -268,7 +268,7 @@ def create_structure_array(df):
268268
return np.array([tuple(row) for row in df.values],
269269
dtype=np.dtype(list(zip(df.columns, df.dtypes))))
270270

271-
with lp.connect(fname) as ds:
271+
with lp.connect(fname, validate=False) as ds:
272272
# The orientation of the loom file is always:
273273
# - Columns represent cells or aggregates of cells
274274
# - Rows represent genes

0 commit comments

Comments
 (0)