Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
jkobject committed Nov 19, 2024
2 parents 052d8f4 + 025074d commit e9f25e2
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ jobs:
- name: Run tests
run: make test
- name: "Upload coverage to Codecov"
uses: codecov/codecov-action@v4
uses: codecov/codecov-action@v5
with:
fail_ci_if_error: true
token: ${{ secrets.CODECOV_TOKEN }}
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[project]
name = "scdataloader"
version = "1.6.4"
version = "1.6.5"
description = "a dataloader for single cell data in lamindb"
authors = [
{name = "jkobject", email = "[email protected]"}
Expand Down
2 changes: 1 addition & 1 deletion scdataloader/VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1.6.4
1.6.5
3 changes: 1 addition & 2 deletions scdataloader/preprocess.py
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,6 @@ def __init__(
self.filter_gene_by_counts = filter_gene_by_counts
self.filter_cell_by_counts = filter_cell_by_counts
self.normalize_sum = normalize_sum
self.subset_hvg = subset_hvg
self.hvg_flavor = hvg_flavor
self.binning = binning
self.organisms = organisms
Expand All @@ -109,6 +108,7 @@ def __init__(
self.min_nnz_genes = min_nnz_genes
self.maxdropamount = maxdropamount
self.madoutlier = madoutlier
self.n_hvg_for_postp = n_hvg_for_postp
self.pct_mt_outlier = pct_mt_outlier
self.batch_key = batch_key
self.length_normalize = length_normalize
Expand Down Expand Up @@ -318,7 +318,6 @@ def __call__(self, adata) -> AnnData:
flavor=self.hvg_flavor,
subset=True,
layer="norm",

)
sc.pp.log1p(adata, layer="norm")
sc.pp.pca(
Expand Down

0 comments on commit e9f25e2

Please sign in to comment.