Skip to content

Commit

Permalink
Minor formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
fasterius committed Apr 4, 2024
1 parent 4f12ac8 commit f82267d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion bin/quality_controls.qmd
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ def to_legacy_anndata(sdata: spatialdata.SpatialData) -> AnnData:
sdata = spatialdata.read_zarr(input_sdata, ["images", "table", "shapes"])
adata = to_legacy_anndata(sdata)
# Convert X matrix from csr to csc dense matrix for output compatibility:
# Convert X matrix from CSR to CSC dense matrix for output compatibility
adata.X = scipy.sparse.csc_matrix(adata.X)
# Store the raw data so that it can be used for analyses from scratch if desired
Expand Down
2 changes: 1 addition & 1 deletion modules/local/read_data.nf
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ process READ_DATA {

output:
tuple val(meta), path("sdata_raw.zarr"), emit: sdata_raw
path("versions.yml") , emit: versions
path("versions.yml") , emit: versions

when:
task.ext.when == null || task.ext.when
Expand Down

0 comments on commit f82267d

Please sign in to comment.