Skip to content

Commit

Permalink
FIX: name output as "h5ad", not "loom"
Browse files Browse the repository at this point in the history
  • Loading branch information
milescsmith committed Aug 15, 2023
1 parent 27239bc commit 30b2f68
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "velocyto"
version = "0.30.0"
version = "0.30.1"
description = "RNA velocity analysis for single cell RNA-seq data"
authors = ["Linnarsson Lab <sten.linnarsson@ki.se>"]
license = "BSD-2-Clause"
Expand Down
2 changes: 1 addition & 1 deletion src/velocyto/commands/_run.py
Original file line number Diff line number Diff line change
Expand Up @@ -219,7 +219,7 @@ def _run(
# ca[key] = np.full(len(cell_bcs_order), value)

# Save to loom file
outfile = outputfolder.joinpath(f"{sampleid}.loom")
outfile = outputfolder.joinpath(f"{sampleid}.h5ad")
logger.debug(f"Generating output file {outfile}")

# row attributes
Expand Down

0 comments on commit 30b2f68

Please sign in to comment.