Skip to content

Commit

Permalink
Fix type name bug.
Browse files Browse the repository at this point in the history
  • Loading branch information
orenbenkiki committed Jun 11, 2024
1 parent d6e9a1e commit c711f2b
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 4 deletions.
2 changes: 1 addition & 1 deletion docs/v0.1.0/.documenter-siteinfo.json
Original file line number Diff line number Diff line change
@@ -1 +1 @@
{"documenter":{"julia_version":"1.10.0","generation_timestamp":"2024-06-07T11:19:17","documenter_version":"1.4.1"}}
{"documenter":{"julia_version":"1.10.0","generation_timestamp":"2024-06-11T13:50:28","documenter_version":"1.4.1"}}
2 changes: 1 addition & 1 deletion src/anndata_format.jl
Original file line number Diff line number Diff line change
Expand Up @@ -532,7 +532,7 @@ function import_mask_matrix(
if any_exist
mask_matrix::SparseMatrixCSC{Bool} = hcat(mask_vectors...) # NOJET
mask_name = "is_$(prefix)"
set_matrix!(source, "gene", "type", mask_name, mask_matrix; relayout = false)
set_matrix!(source, "gene", rename_type, mask_name, mask_matrix; relayout = false)
return copy_matrix!(; # NOJET
destination = destination,
source = source,
Expand Down
2 changes: 0 additions & 2 deletions src/spheres.jl
Original file line number Diff line number Diff line change
Expand Up @@ -218,8 +218,6 @@ CONTRACT
next_n_correlated_genes_in_metacells = sum(is_correlated_of_genes_in_metacells)
@debug "round: $(round_index) is_correlated_genes_in_metacells: $(depict(is_correlated_of_genes_in_metacells))"

# TODOX
# if next_n_correlated_genes_in_metacells == previous_n_correlated_genes_in_metacells
if next_n_correlated_genes_in_metacells > previous_n_correlated_genes_in_metacells * 0.999 &&
next_n_correlated_genes_in_metacells < previous_n_correlated_genes_in_metacells * 1.001
break
Expand Down

0 comments on commit c711f2b

Please sign in to comment.