scbulkde 0.0.1__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (61) hide show
  1. scbulkde-0.0.1/.codecov.yaml +17 -0
  2. scbulkde-0.0.1/.cruft.json +43 -0
  3. scbulkde-0.0.1/.editorconfig +15 -0
  4. scbulkde-0.0.1/.github/ISSUE_TEMPLATE/bug_report.yml +93 -0
  5. scbulkde-0.0.1/.github/ISSUE_TEMPLATE/config.yml +5 -0
  6. scbulkde-0.0.1/.github/ISSUE_TEMPLATE/feature_request.yml +11 -0
  7. scbulkde-0.0.1/.github/workflows/build.yaml +26 -0
  8. scbulkde-0.0.1/.github/workflows/release.yaml +27 -0
  9. scbulkde-0.0.1/.github/workflows/test.yaml +97 -0
  10. scbulkde-0.0.1/.gitignore +21 -0
  11. scbulkde-0.0.1/.pre-commit-config.yaml +38 -0
  12. scbulkde-0.0.1/.readthedocs.yaml +16 -0
  13. scbulkde-0.0.1/.vscode/extensions.json +18 -0
  14. scbulkde-0.0.1/.vscode/launch.json +33 -0
  15. scbulkde-0.0.1/.vscode/settings.json +18 -0
  16. scbulkde-0.0.1/CHANGELOG.md +15 -0
  17. scbulkde-0.0.1/LICENSE +29 -0
  18. scbulkde-0.0.1/PKG-INFO +111 -0
  19. scbulkde-0.0.1/README.md +57 -0
  20. scbulkde-0.0.1/biome.jsonc +17 -0
  21. scbulkde-0.0.1/docs/_static/.gitkeep +0 -0
  22. scbulkde-0.0.1/docs/_static/css/custom.css +4 -0
  23. scbulkde-0.0.1/docs/_templates/.gitkeep +0 -0
  24. scbulkde-0.0.1/docs/_templates/autosummary/class.rst +61 -0
  25. scbulkde-0.0.1/docs/api.md +25 -0
  26. scbulkde-0.0.1/docs/changelog.md +3 -0
  27. scbulkde-0.0.1/docs/conf.py +136 -0
  28. scbulkde-0.0.1/docs/contributing.md +330 -0
  29. scbulkde-0.0.1/docs/extensions/typed_returns.py +32 -0
  30. scbulkde-0.0.1/docs/index.md +15 -0
  31. scbulkde-0.0.1/docs/notebooks/example.ipynb +171 -0
  32. scbulkde-0.0.1/docs/references.bib +10 -0
  33. scbulkde-0.0.1/docs/references.md +5 -0
  34. scbulkde-0.0.1/pyproject.toml +161 -0
  35. scbulkde-0.0.1/src/scbulkde/.ipynb_checkpoints/__init__-checkpoint.py +24 -0
  36. scbulkde-0.0.1/src/scbulkde/__init__.py +26 -0
  37. scbulkde-0.0.1/src/scbulkde/engines/__init__.py +11 -0
  38. scbulkde-0.0.1/src/scbulkde/engines/_base.py +83 -0
  39. scbulkde-0.0.1/src/scbulkde/engines/_factory.py +25 -0
  40. scbulkde-0.0.1/src/scbulkde/engines/_parametric.py +110 -0
  41. scbulkde-0.0.1/src/scbulkde/engines/_pydeseq2.py +125 -0
  42. scbulkde-0.0.1/src/scbulkde/pp/__init__.py +5 -0
  43. scbulkde-0.0.1/src/scbulkde/pp/pp_basic.py +447 -0
  44. scbulkde-0.0.1/src/scbulkde/tl/__init__.py +7 -0
  45. scbulkde-0.0.1/src/scbulkde/tl/rank_genes_groups.py +335 -0
  46. scbulkde-0.0.1/src/scbulkde/tl/tl_basic.py +732 -0
  47. scbulkde-0.0.1/src/scbulkde/ut/.ipynb_checkpoints/__init__-checkpoint.py +9 -0
  48. scbulkde-0.0.1/src/scbulkde/ut/__init__.py +43 -0
  49. scbulkde-0.0.1/src/scbulkde/ut/_constants.py +4 -0
  50. scbulkde-0.0.1/src/scbulkde/ut/_containers.py +179 -0
  51. scbulkde-0.0.1/src/scbulkde/ut/_logging.py +58 -0
  52. scbulkde-0.0.1/src/scbulkde/ut/_performance.py +37 -0
  53. scbulkde-0.0.1/src/scbulkde/ut/_validation.py +1 -0
  54. scbulkde-0.0.1/src/scbulkde/ut/ut_basic.py +575 -0
  55. scbulkde-0.0.1/tests/conftest.py +268 -0
  56. scbulkde-0.0.1/tests/test_import.py +5 -0
  57. scbulkde-0.0.1/tests/test_pp_basic.py +648 -0
  58. scbulkde-0.0.1/tests/test_rank_genes_groups.py +385 -0
  59. scbulkde-0.0.1/tests/test_tl_basic.py +842 -0
  60. scbulkde-0.0.1/tests/test_ut_basic.py +1110 -0
  61. scbulkde-0.0.1/uv.lock +3277 -0
@@ -0,0 +1,17 @@
1
+ # Based on pydata/xarray
2
+ codecov:
3
+ require_ci_to_pass: no
4
+
5
+ coverage:
6
+ status:
7
+ project:
8
+ default:
9
+ # Require 1% coverage, i.e., always succeed
10
+ target: 1
11
+ patch: false
12
+ changes: false
13
+
14
+ comment:
15
+ layout: diff, flags, files
16
+ behavior: once
17
+ require_base: no
@@ -0,0 +1,43 @@
1
+ {
2
+ "template": "https://github.com/scverse/cookiecutter-scverse",
3
+ "commit": "e0b3a742ea5bb960dd2cb052ecd42e8b42f28ba0",
4
+ "checkout": null,
5
+ "context": {
6
+ "cookiecutter": {
7
+ "project_name": "scBulkDE",
8
+ "package_name": "scbulkde",
9
+ "project_description": "Performing differential testing on pseudobulked single-cell data",
10
+ "author_full_name": "Adnan Abouelela",
11
+ "author_email": "adnan.abouelela@bsse.ethz.ch",
12
+ "github_user": "AdnanAbouelela",
13
+ "github_repo": "scBulkDE",
14
+ "license": "BSD 3-Clause License",
15
+ "ide_integration": true,
16
+ "_copy_without_render": [
17
+ ".github/workflows/build.yaml",
18
+ ".github/workflows/test.yaml",
19
+ "docs/_templates/autosummary/**.rst"
20
+ ],
21
+ "_exclude_on_template_update": [
22
+ "CHANGELOG.md",
23
+ "LICENSE",
24
+ "README.md",
25
+ "docs/api.md",
26
+ "docs/index.md",
27
+ "docs/notebooks/example.ipynb",
28
+ "docs/references.bib",
29
+ "docs/references.md",
30
+ "src/**",
31
+ "tests/**"
32
+ ],
33
+ "_render_devdocs": false,
34
+ "_jinja2_env_vars": {
35
+ "lstrip_blocks": true,
36
+ "trim_blocks": true
37
+ },
38
+ "_template": "https://github.com/scverse/cookiecutter-scverse",
39
+ "_commit": "e0b3a742ea5bb960dd2cb052ecd42e8b42f28ba0"
40
+ }
41
+ },
42
+ "directory": null
43
+ }
@@ -0,0 +1,15 @@
1
+ root = true
2
+
3
+ [*]
4
+ indent_style = space
5
+ indent_size = 4
6
+ end_of_line = lf
7
+ charset = utf-8
8
+ trim_trailing_whitespace = true
9
+ insert_final_newline = true
10
+
11
+ [{*.{yml,yaml,toml},.cruft.json}]
12
+ indent_size = 2
13
+
14
+ [Makefile]
15
+ indent_style = tab
@@ -0,0 +1,93 @@
1
+ name: Bug report
2
+ description: Report something that is broken or incorrect
3
+ type: Bug
4
+ body:
5
+ - type: markdown
6
+ attributes:
7
+ value: |
8
+ **Note**: Please read [this guide](https://matthewrocklin.com/blog/work/2018/02/28/minimal-bug-reports)
9
+ detailing how to provide the necessary information for us to reproduce your bug. In brief:
10
+ * Please provide exact steps how to reproduce the bug in a clean Python environment.
11
+ * In case it's not clear what's causing this bug, please provide the data or the data generation procedure.
12
+ * Replicate problems on public datasets or share data subsets when full sharing isn't possible.
13
+
14
+ - type: textarea
15
+ id: report
16
+ attributes:
17
+ label: Report
18
+ description: A clear and concise description of what the bug is.
19
+ validations:
20
+ required: true
21
+
22
+ - type: textarea
23
+ id: versions
24
+ attributes:
25
+ label: Versions
26
+ description: |
27
+ Which version of packages.
28
+
29
+ Please install `session-info2`, run the following command in a notebook,
30
+ click the “Copy as Markdown” button, then paste the results into the text box below.
31
+
32
+ ```python
33
+ In[1]: import session_info2; session_info2.session_info(dependencies=True)
34
+ ```
35
+
36
+ Alternatively, run this in a console:
37
+
38
+ ```python
39
+ >>> import session_info2; print(session_info2.session_info(dependencies=True)._repr_mimebundle_()["text/markdown"])
40
+ ```
41
+ render: python
42
+ placeholder: |
43
+ anndata 0.11.3
44
+ ---- ----
45
+ charset-normalizer 3.4.1
46
+ coverage 7.7.0
47
+ psutil 7.0.0
48
+ dask 2024.7.1
49
+ jaraco.context 5.3.0
50
+ numcodecs 0.15.1
51
+ jaraco.functools 4.0.1
52
+ Jinja2 3.1.6
53
+ sphinxcontrib-jsmath 1.0.1
54
+ sphinxcontrib-htmlhelp 2.1.0
55
+ toolz 1.0.0
56
+ session-info2 0.1.2
57
+ PyYAML 6.0.2
58
+ llvmlite 0.44.0
59
+ scipy 1.15.2
60
+ pandas 2.2.3
61
+ sphinxcontrib-devhelp 2.0.0
62
+ h5py 3.13.0
63
+ tblib 3.0.0
64
+ setuptools-scm 8.2.0
65
+ more-itertools 10.3.0
66
+ msgpack 1.1.0
67
+ sparse 0.15.5
68
+ wrapt 1.17.2
69
+ jaraco.collections 5.1.0
70
+ numba 0.61.0
71
+ pyarrow 19.0.1
72
+ pytz 2025.1
73
+ MarkupSafe 3.0.2
74
+ crc32c 2.7.1
75
+ sphinxcontrib-qthelp 2.0.0
76
+ sphinxcontrib-serializinghtml 2.0.0
77
+ zarr 2.18.4
78
+ asciitree 0.3.3
79
+ six 1.17.0
80
+ sphinxcontrib-applehelp 2.0.0
81
+ numpy 2.1.3
82
+ cloudpickle 3.1.1
83
+ sphinxcontrib-bibtex 2.6.3
84
+ natsort 8.4.0
85
+ jaraco.text 3.12.1
86
+ setuptools 76.1.0
87
+ Deprecated 1.2.18
88
+ packaging 24.2
89
+ python-dateutil 2.9.0.post0
90
+ ---- ----
91
+ Python 3.13.2 | packaged by conda-forge | (main, Feb 17 2025, 14:10:22) [GCC 13.3.0]
92
+ OS Linux-6.11.0-109019-tuxedo-x86_64-with-glibc2.39
93
+ Updated 2025-03-18 15:47
@@ -0,0 +1,5 @@
1
+ blank_issues_enabled: false
2
+ contact_links:
3
+ - name: Scverse Community Forum
4
+ url: https://discourse.scverse.org/
5
+ about: If you have questions about “How to do X”, please ask them here.
@@ -0,0 +1,11 @@
1
+ name: Feature request
2
+ description: Propose a new feature for scBulkDE
3
+ type: Enhancement
4
+ body:
5
+ - type: textarea
6
+ id: description
7
+ attributes:
8
+ label: Description of feature
9
+ description: Please describe your suggestion for a new feature. It might help to describe a problem or use case, plus any alternatives that you have considered.
10
+ validations:
11
+ required: true
@@ -0,0 +1,26 @@
1
+ name: Check Build
2
+
3
+ on:
4
+ push:
5
+ branches: [main]
6
+ pull_request:
7
+ branches: [main]
8
+
9
+ concurrency:
10
+ group: ${{ github.workflow }}-${{ github.ref }}
11
+ cancel-in-progress: true
12
+
13
+ jobs:
14
+ package:
15
+ runs-on: ubuntu-latest
16
+ steps:
17
+ - uses: actions/checkout@v5
18
+ with:
19
+ filter: blob:none
20
+ fetch-depth: 0
21
+ - name: Install uv
22
+ uses: astral-sh/setup-uv@v7
23
+ - name: Build package
24
+ run: uv build
25
+ - name: Check package
26
+ run: uvx twine check --strict dist/*.whl
@@ -0,0 +1,27 @@
1
+ name: Release
2
+
3
+ on:
4
+ release:
5
+ types: [published]
6
+
7
+ # Use "trusted publishing", see https://docs.pypi.org/trusted-publishers/
8
+ jobs:
9
+ release:
10
+ name: Upload release to PyPI
11
+ runs-on: ubuntu-latest
12
+ environment:
13
+ name: pypi
14
+ url: https://pypi.org/p/scbulkde
15
+ permissions:
16
+ id-token: write # IMPORTANT: this permission is mandatory for trusted publishing
17
+ steps:
18
+ - uses: actions/checkout@v5
19
+ with:
20
+ filter: blob:none
21
+ fetch-depth: 0
22
+ - name: Install uv
23
+ uses: astral-sh/setup-uv@v7
24
+ - name: Build package
25
+ run: uv build
26
+ - name: Publish package distributions to PyPI
27
+ uses: pypa/gh-action-pypi-publish@release/v1
@@ -0,0 +1,97 @@
1
+ name: Test
2
+
3
+ on:
4
+ push:
5
+ branches: [main]
6
+ pull_request:
7
+ branches: [main]
8
+ schedule:
9
+ - cron: "0 5 1,15 * *"
10
+
11
+ concurrency:
12
+ group: ${{ github.workflow }}-${{ github.ref }}
13
+ cancel-in-progress: true
14
+
15
+ jobs:
16
+ # Get the test environment from hatch as defined in pyproject.toml.
17
+ # This ensures that the pyproject.toml is the single point of truth for test definitions and the same tests are
18
+ # run locally and on continuous integration.
19
+ # Check [[tool.hatch.envs.hatch-test.matrix]] in pyproject.toml and https://hatch.pypa.io/latest/environment/ for
20
+ # more details.
21
+ get-environments:
22
+ runs-on: ubuntu-latest
23
+ outputs:
24
+ envs: ${{ steps.get-envs.outputs.envs }}
25
+ steps:
26
+ - uses: actions/checkout@v5
27
+ with:
28
+ filter: blob:none
29
+ fetch-depth: 0
30
+ - name: Install uv
31
+ uses: astral-sh/setup-uv@v7
32
+ - name: Get test environments
33
+ id: get-envs
34
+ run: |
35
+ ENVS_JSON=$(uvx hatch env show --json | jq -c 'to_entries
36
+ | map(
37
+ select(.key | startswith("hatch-test"))
38
+ | {
39
+ name: .key,
40
+ label: (if (.key | contains("pre")) then .key + " (PRE-RELEASE DEPENDENCIES)" else .key end),
41
+ python: .value.python
42
+ }
43
+ )')
44
+ echo "envs=${ENVS_JSON}" | tee $GITHUB_OUTPUT
45
+
46
+ # Run tests through hatch. Spawns a separate runner for each environment defined in the hatch matrix obtained above.
47
+ test:
48
+ needs: get-environments
49
+
50
+ strategy:
51
+ fail-fast: false
52
+ matrix:
53
+ os: [ubuntu-latest]
54
+ env: ${{ fromJSON(needs.get-environments.outputs.envs) }}
55
+
56
+ name: ${{ matrix.env.label }}
57
+ runs-on: ${{ matrix.os }}
58
+
59
+ steps:
60
+ - uses: actions/checkout@v5
61
+ with:
62
+ filter: blob:none
63
+ fetch-depth: 0
64
+ - name: Install uv
65
+ uses: astral-sh/setup-uv@v7
66
+ with:
67
+ python-version: ${{ matrix.env.python }}
68
+ - name: create hatch environment
69
+ run: uvx hatch env create ${{ matrix.env.name }}
70
+ - name: run tests using hatch
71
+ env:
72
+ MPLBACKEND: agg
73
+ PLATFORM: ${{ matrix.os }}
74
+ DISPLAY: :42
75
+ run: uvx hatch run ${{ matrix.env.name }}:run-cov -v --color=yes -n auto
76
+ - name: generate coverage report
77
+ run: |
78
+ # See https://coverage.readthedocs.io/en/latest/config.html#run-patch
79
+ test -f .coverage || uvx hatch run ${{ matrix.env.name }}:cov-combine
80
+ uvx hatch run ${{ matrix.env.name }}:cov-report # report visibly
81
+ uvx hatch run ${{ matrix.env.name }}:coverage xml # create report for upload
82
+ - name: Upload coverage
83
+ uses: codecov/codecov-action@v5
84
+
85
+ # Check that all tests defined above pass. This makes it easy to set a single "required" test in branch
86
+ # protection instead of having to update it frequently. See https://github.com/re-actors/alls-green#why.
87
+ check:
88
+ name: Tests pass in all hatch environments
89
+ if: always()
90
+ needs:
91
+ - get-environments
92
+ - test
93
+ runs-on: ubuntu-latest
94
+ steps:
95
+ - uses: re-actors/alls-green@release/v1
96
+ with:
97
+ jobs: ${{ toJSON(needs) }}
@@ -0,0 +1,21 @@
1
+ # Temp files
2
+ .DS_Store
3
+ *~
4
+ buck-out/
5
+
6
+ # Compiled files
7
+ .venv/
8
+ __pycache__/
9
+ .*cache/
10
+
11
+ # Distribution / packaging
12
+ /dist/
13
+
14
+ # Tests and coverage
15
+ /data/
16
+ /node_modules/
17
+ /.coverage*
18
+
19
+ # docs
20
+ /docs/generated/
21
+ /docs/_build/
@@ -0,0 +1,38 @@
1
+ fail_fast: false
2
+ default_language_version:
3
+ python: python3
4
+ default_stages:
5
+ - pre-commit
6
+ - pre-push
7
+ minimum_pre_commit_version: 2.16.0
8
+ repos:
9
+ - repo: https://github.com/biomejs/pre-commit
10
+ rev: v2.3.8
11
+ hooks:
12
+ - id: biome-format
13
+ exclude: ^\.cruft\.json$ # inconsistent indentation with cruft - file never to be modified manually.
14
+ - repo: https://github.com/tox-dev/pyproject-fmt
15
+ rev: v2.11.1
16
+ hooks:
17
+ - id: pyproject-fmt
18
+ - repo: https://github.com/astral-sh/ruff-pre-commit
19
+ rev: v0.14.9
20
+ hooks:
21
+ - id: ruff-check
22
+ types_or: [python, pyi, jupyter]
23
+ args: [--fix, --exit-non-zero-on-fix]
24
+ - id: ruff-format
25
+ types_or: [python, pyi, jupyter]
26
+ - repo: https://github.com/pre-commit/pre-commit-hooks
27
+ rev: v6.0.0
28
+ hooks:
29
+ - id: detect-private-key
30
+ - id: check-ast
31
+ - id: end-of-file-fixer
32
+ - id: mixed-line-ending
33
+ args: [--fix=lf]
34
+ - id: trailing-whitespace
35
+ - id: check-case-conflict
36
+ # Check that there are no merge conflicts (could be generated by template sync)
37
+ - id: check-merge-conflict
38
+ args: [--assume-in-merge]
@@ -0,0 +1,16 @@
1
+ # https://docs.readthedocs.io/en/stable/config-file/v2.html
2
+ version: 2
3
+ build:
4
+ os: ubuntu-24.04
5
+ tools:
6
+ python: "3.13"
7
+ nodejs: latest
8
+ jobs:
9
+ create_environment:
10
+ - asdf plugin add uv
11
+ - asdf install uv latest
12
+ - asdf global uv latest
13
+ build:
14
+ html:
15
+ - uvx hatch run docs:build
16
+ - mv docs/_build $READTHEDOCS_OUTPUT
@@ -0,0 +1,18 @@
1
+ {
2
+ "recommendations": [
3
+ // GitHub integration
4
+ "github.vscode-github-actions",
5
+ "github.vscode-pull-request-github",
6
+ // Language support
7
+ "ms-python.python",
8
+ "ms-python.vscode-pylance",
9
+ "ms-toolsai.jupyter",
10
+ "tamasfe.even-better-toml",
11
+ // Dependency management
12
+ "ninoseki.vscode-mogami",
13
+ // Linting and formatting
14
+ "editorconfig.editorconfig",
15
+ "charliermarsh.ruff",
16
+ "biomejs.biome",
17
+ ],
18
+ }
@@ -0,0 +1,33 @@
1
+ {
2
+ // Use IntelliSense to learn about possible attributes.
3
+ // Hover to view descriptions of existing attributes.
4
+ // For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
5
+ "version": "0.2.0",
6
+ "configurations": [
7
+ {
8
+ "name": "Python: Build Documentation",
9
+ "type": "debugpy",
10
+ "request": "launch",
11
+ "module": "sphinx",
12
+ "args": ["-M", "html", ".", "_build"],
13
+ "cwd": "${workspaceFolder}/docs",
14
+ "console": "internalConsole",
15
+ "justMyCode": false,
16
+ },
17
+ {
18
+ "name": "Python: Debug Test",
19
+ "type": "debugpy",
20
+ "request": "launch",
21
+ "program": "${file}",
22
+ "purpose": ["debug-test"],
23
+ "console": "internalConsole",
24
+ "justMyCode": false,
25
+ "env": {
26
+ "PYTEST_ADDOPTS": "--color=yes",
27
+ },
28
+ "presentation": {
29
+ "hidden": true,
30
+ },
31
+ },
32
+ ],
33
+ }
@@ -0,0 +1,18 @@
1
+ {
2
+ "[python][json][jsonc]": {
3
+ "editor.formatOnSave": true,
4
+ },
5
+ "[python]": {
6
+ "editor.defaultFormatter": "charliermarsh.ruff",
7
+ "editor.codeActionsOnSave": {
8
+ "source.fixAll": "always",
9
+ "source.organizeImports": "always",
10
+ },
11
+ },
12
+ "[json][jsonc]": {
13
+ "editor.defaultFormatter": "biomejs.biome",
14
+ },
15
+ "python.analysis.typeCheckingMode": "basic",
16
+ "python.testing.pytestEnabled": true,
17
+ "python.testing.pytestArgs": ["-vv", "--color=yes"],
18
+ }
@@ -0,0 +1,15 @@
1
+ # Changelog
2
+
3
+ All notable changes to this project will be documented in this file.
4
+
5
+ The format is based on [Keep a Changelog][],
6
+ and this project adheres to [Semantic Versioning][].
7
+
8
+ [keep a changelog]: https://keepachangelog.com/en/1.0.0/
9
+ [semantic versioning]: https://semver.org/spec/v2.0.0.html
10
+
11
+ ## [Unreleased]
12
+
13
+ ### Added
14
+
15
+ - Basic tool, preprocessing and plotting functions
scbulkde-0.0.1/LICENSE ADDED
@@ -0,0 +1,29 @@
1
+ BSD 3-Clause License
2
+
3
+ Copyright (c) 2025, Adnan Abouelela
4
+ All rights reserved.
5
+
6
+ Redistribution and use in source and binary forms, with or without
7
+ modification, are permitted provided that the following conditions are met:
8
+
9
+ 1. Redistributions of source code must retain the above copyright notice, this
10
+ list of conditions and the following disclaimer.
11
+
12
+ 2. Redistributions in binary form must reproduce the above copyright notice,
13
+ this list of conditions and the following disclaimer in the documentation
14
+ and/or other materials provided with the distribution.
15
+
16
+ 3. Neither the name of the copyright holder nor the names of its
17
+ contributors may be used to endorse or promote products derived from
18
+ this software without specific prior written permission.
19
+
20
+ THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
21
+ AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
22
+ IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
23
+ DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
24
+ FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
25
+ DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
26
+ SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
27
+ CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
28
+ OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
29
+ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
@@ -0,0 +1,111 @@
1
+ Metadata-Version: 2.4
2
+ Name: scbulkde
3
+ Version: 0.0.1
4
+ Summary: Performing differential testing on pseudobulked single-cell data
5
+ Project-URL: Documentation, https://scBulkDE.readthedocs.io/
6
+ Project-URL: Homepage, https://github.com/AdnanAbouelela/scBulkDE
7
+ Project-URL: Source, https://github.com/AdnanAbouelela/scBulkDE
8
+ Author: Adnan Abouelela
9
+ Maintainer-email: Adnan Abouelela <adnan.abouelela@bsse.ethz.ch>
10
+ License: BSD 3-Clause License
11
+
12
+ Copyright (c) 2025, Adnan Abouelela
13
+ All rights reserved.
14
+
15
+ Redistribution and use in source and binary forms, with or without
16
+ modification, are permitted provided that the following conditions are met:
17
+
18
+ 1. Redistributions of source code must retain the above copyright notice, this
19
+ list of conditions and the following disclaimer.
20
+
21
+ 2. Redistributions in binary form must reproduce the above copyright notice,
22
+ this list of conditions and the following disclaimer in the documentation
23
+ and/or other materials provided with the distribution.
24
+
25
+ 3. Neither the name of the copyright holder nor the names of its
26
+ contributors may be used to endorse or promote products derived from
27
+ this software without specific prior written permission.
28
+
29
+ THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
30
+ AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
31
+ IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
32
+ DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
33
+ FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
34
+ DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
35
+ SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
36
+ CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
37
+ OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
38
+ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
39
+ License-File: LICENSE
40
+ Classifier: Programming Language :: Python :: 3 :: Only
41
+ Classifier: Programming Language :: Python :: 3.11
42
+ Classifier: Programming Language :: Python :: 3.12
43
+ Classifier: Programming Language :: Python :: 3.13
44
+ Classifier: Programming Language :: Python :: 3.14
45
+ Requires-Python: >=3.11
46
+ Requires-Dist: anndata
47
+ Requires-Dist: formulaic
48
+ Requires-Dist: pydeseq2
49
+ Requires-Dist: rich
50
+ Requires-Dist: session-info2
51
+ Requires-Dist: statsmodels
52
+ Requires-Dist: tqdm
53
+ Description-Content-Type: text/markdown
54
+
55
+ # scBulkDE
56
+
57
+ [![Tests][badge-tests]][tests]
58
+ [![Documentation][badge-docs]][documentation]
59
+
60
+ [badge-tests]: https://img.shields.io/github/actions/workflow/status/AdnanAbouelela/scBulkDE/test.yaml?branch=main
61
+ [badge-docs]: https://img.shields.io/readthedocs/scBulkDE
62
+
63
+ Performing differential testing on pseudobulked single-cell data
64
+
65
+ ## Getting started
66
+
67
+ Please refer to the [documentation][],
68
+ in particular, the [API documentation][].
69
+
70
+ ## Installation
71
+
72
+ You need to have Python 3.11 or newer installed on your system.
73
+ If you don't have Python installed, we recommend installing [uv][].
74
+
75
+ There are several alternative options to install scBulkDE:
76
+
77
+ <!--
78
+ 1) Install the latest release of `scBulkDE` from [PyPI][]:
79
+
80
+ ```bash
81
+ pip install scBulkDE
82
+ ```
83
+ -->
84
+
85
+ 1. Install the latest development version:
86
+
87
+ ```bash
88
+ pip install git+https://github.com/AdnanAbouelela/scBulkDE.git@main
89
+ ```
90
+
91
+ ## Release notes
92
+
93
+ See the [changelog][].
94
+
95
+ ## Contact
96
+
97
+ For questions and help requests, you can reach out in the [scverse discourse][].
98
+ If you found a bug, please use the [issue tracker][].
99
+
100
+ ## Citation
101
+
102
+ > t.b.a
103
+
104
+ [uv]: https://github.com/astral-sh/uv
105
+ [scverse discourse]: https://discourse.scverse.org/
106
+ [issue tracker]: https://github.com/AdnanAbouelela/scBulkDE/issues
107
+ [tests]: https://github.com/AdnanAbouelela/scBulkDE/actions/workflows/test.yaml
108
+ [documentation]: https://scBulkDE.readthedocs.io
109
+ [changelog]: https://scBulkDE.readthedocs.io/en/latest/changelog.html
110
+ [api documentation]: https://scBulkDE.readthedocs.io/en/latest/api.html
111
+ [pypi]: https://pypi.org/project/scBulkDE