Skip to content

Commit

Permalink
not compress h5ad output
Browse files Browse the repository at this point in the history
  • Loading branch information
fmalmeida committed Oct 30, 2024
1 parent 187dbf6 commit 98af608
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion modules/local/templates/mtx_to_h5ad_alevin.py
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ def input_to_adata(
adata.var_names_make_unique()

# write results
adata.write_h5ad(f"{output}", compression="gzip")
adata.write_h5ad(f"{output}")
print(f"Wrote h5ad file to {output}")

#
Expand Down
2 changes: 1 addition & 1 deletion modules/local/templates/mtx_to_h5ad_cellranger.py
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ def input_to_adata(
adata.var_names_make_unique()

# write results
adata.write_h5ad(f"{output}", compression="gzip")
adata.write_h5ad(f"{output}")
print(f"Wrote h5ad file to {output}")

# dump versions
Expand Down
2 changes: 1 addition & 1 deletion modules/local/templates/mtx_to_h5ad_star.py
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ def input_to_adata(
adata.var = adata.var.drop("gene_ids", axis=1)

# write results
adata.write_h5ad(f"{output}", compression="gzip")
adata.write_h5ad(f"{output}")
print(f"Wrote h5ad file to {output}")

#
Expand Down

0 comments on commit 98af608

Please sign in to comment.