pertpy 1.0.1__tar.gz → 1.0.2__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 (221) hide show
  1. {pertpy-1.0.1 → pertpy-1.0.2}/.github/release-drafter.yml +2 -2
  2. {pertpy-1.0.1 → pertpy-1.0.2}/.pre-commit-config.yaml +4 -4
  3. {pertpy-1.0.1 → pertpy-1.0.2}/PKG-INFO +51 -72
  4. {pertpy-1.0.1 → pertpy-1.0.2}/docs/changelog.md +10 -2
  5. pertpy-1.0.2/docs/tutorials/notebooks/.gitignore +149 -0
  6. pertpy-1.0.2/docs/tutorials/notebooks/.pre-commit-config.yaml +37 -0
  7. pertpy-1.0.2/docs/tutorials/notebooks/LICENSE +203 -0
  8. pertpy-1.0.2/docs/tutorials/notebooks/README.md +23 -0
  9. pertpy-1.0.2/docs/tutorials/notebooks/augur.ipynb +1063 -0
  10. pertpy-1.0.2/docs/tutorials/notebooks/cinemaot.ipynb +696 -0
  11. pertpy-1.0.2/docs/tutorials/notebooks/dialogue.ipynb +840 -0
  12. pertpy-1.0.2/docs/tutorials/notebooks/differential_gene_expression.ipynb +2187 -0
  13. pertpy-1.0.2/docs/tutorials/notebooks/distance_tests.ipynb +349 -0
  14. pertpy-1.0.2/docs/tutorials/notebooks/distances.ipynb +725 -0
  15. pertpy-1.0.2/docs/tutorials/notebooks/enrichment.ipynb +736 -0
  16. pertpy-1.0.2/docs/tutorials/notebooks/expression_prediction_evaluation.ipynb +482 -0
  17. pertpy-1.0.2/docs/tutorials/notebooks/guide_rna_assignment.ipynb +809 -0
  18. pertpy-1.0.2/docs/tutorials/notebooks/mcfarland_use_case.ipynb +1985 -0
  19. pertpy-1.0.2/docs/tutorials/notebooks/metadata_annotation.ipynb +2480 -0
  20. pertpy-1.0.2/docs/tutorials/notebooks/milo.ipynb +2080 -0
  21. pertpy-1.0.2/docs/tutorials/notebooks/mixscape.ipynb +811 -0
  22. pertpy-1.0.2/docs/tutorials/notebooks/norman_use_case.ipynb +1089 -0
  23. pertpy-1.0.2/docs/tutorials/notebooks/ontology_mapping.ipynb +1893 -0
  24. pertpy-1.0.2/docs/tutorials/notebooks/perturbation_space.ipynb +1921 -0
  25. pertpy-1.0.2/docs/tutorials/notebooks/pyproject.toml +73 -0
  26. pertpy-1.0.2/docs/tutorials/notebooks/sccoda.ipynb +1376 -0
  27. pertpy-1.0.2/docs/tutorials/notebooks/sccoda_extended.ipynb +1205 -0
  28. pertpy-1.0.2/docs/tutorials/notebooks/sccoda_tasccoda_case_study.ipynb +2191 -0
  29. pertpy-1.0.2/docs/tutorials/notebooks/scgen_perturbation_prediction.ipynb +678 -0
  30. pertpy-1.0.2/docs/tutorials/notebooks/tasccoda.ipynb +1364 -0
  31. pertpy-1.0.2/docs/tutorials/notebooks/zhang_use_case.ipynb +1049 -0
  32. {pertpy-1.0.1 → pertpy-1.0.2}/pertpy/__init__.py +1 -1
  33. {pertpy-1.0.1 → pertpy-1.0.2}/pertpy/metadata/_cell_line.py +9 -3
  34. {pertpy-1.0.1 → pertpy-1.0.2}/pertpy/tools/_coda/_sccoda.py +68 -82
  35. {pertpy-1.0.1 → pertpy-1.0.2}/pertpy/tools/_coda/_tasccoda.py +91 -61
  36. {pertpy-1.0.1 → pertpy-1.0.2}/pyproject.toml +2 -2
  37. {pertpy-1.0.1 → pertpy-1.0.2}/tests/tools/_coda/test_tasccoda.py +6 -0
  38. {pertpy-1.0.1 → pertpy-1.0.2}/.editorconfig +0 -0
  39. {pertpy-1.0.1 → pertpy-1.0.2}/.gitattributes +0 -0
  40. {pertpy-1.0.1 → pertpy-1.0.2}/.github/ISSUE_TEMPLATE/bug_report.yml +0 -0
  41. {pertpy-1.0.1 → pertpy-1.0.2}/.github/ISSUE_TEMPLATE/config.yml +0 -0
  42. {pertpy-1.0.1 → pertpy-1.0.2}/.github/ISSUE_TEMPLATE/feature_request.yml +0 -0
  43. {pertpy-1.0.1 → pertpy-1.0.2}/.github/labels.yml +0 -0
  44. {pertpy-1.0.1 → pertpy-1.0.2}/.github/pull_request_template.md +0 -0
  45. {pertpy-1.0.1 → pertpy-1.0.2}/.github/workflows/build.yml +0 -0
  46. {pertpy-1.0.1 → pertpy-1.0.2}/.github/workflows/labeler.yml +0 -0
  47. {pertpy-1.0.1 → pertpy-1.0.2}/.github/workflows/release.yml +0 -0
  48. {pertpy-1.0.1 → pertpy-1.0.2}/.github/workflows/release_drafter.yml +0 -0
  49. {pertpy-1.0.1 → pertpy-1.0.2}/.github/workflows/test.yml +0 -0
  50. {pertpy-1.0.1 → pertpy-1.0.2}/.github/workflows/test_tutorials.yml +0 -0
  51. {pertpy-1.0.1 → pertpy-1.0.2}/.gitignore +0 -0
  52. {pertpy-1.0.1 → pertpy-1.0.2}/.gitmodules +0 -0
  53. {pertpy-1.0.1 → pertpy-1.0.2}/.readthedocs.yml +0 -0
  54. {pertpy-1.0.1 → pertpy-1.0.2}/LICENSE +0 -0
  55. {pertpy-1.0.1 → pertpy-1.0.2}/README.md +0 -0
  56. {pertpy-1.0.1 → pertpy-1.0.2}/biome.jsonc +0 -0
  57. {pertpy-1.0.1 → pertpy-1.0.2}/codecov.yml +0 -0
  58. {pertpy-1.0.1 → pertpy-1.0.2}/docs/Makefile +0 -0
  59. {pertpy-1.0.1 → pertpy-1.0.2}/docs/_ext/edit_on_github.py +0 -0
  60. {pertpy-1.0.1 → pertpy-1.0.2}/docs/_ext/typed_returns.py +0 -0
  61. {pertpy-1.0.1 → pertpy-1.0.2}/docs/_static/SCVI_LICENSE +0 -0
  62. {pertpy-1.0.1 → pertpy-1.0.2}/docs/_static/css/overwrite.css +0 -0
  63. {pertpy-1.0.1 → pertpy-1.0.2}/docs/_static/css/sphinx_gallery.css +0 -0
  64. {pertpy-1.0.1 → pertpy-1.0.2}/docs/_static/docstring_previews/augur_dp_scatter.png +0 -0
  65. {pertpy-1.0.1 → pertpy-1.0.2}/docs/_static/docstring_previews/augur_important_features.png +0 -0
  66. {pertpy-1.0.1 → pertpy-1.0.2}/docs/_static/docstring_previews/augur_lollipop.png +0 -0
  67. {pertpy-1.0.1 → pertpy-1.0.2}/docs/_static/docstring_previews/augur_scatterplot.png +0 -0
  68. {pertpy-1.0.1 → pertpy-1.0.2}/docs/_static/docstring_previews/de_fold_change.png +0 -0
  69. {pertpy-1.0.1 → pertpy-1.0.2}/docs/_static/docstring_previews/de_multicomparison_fc.png +0 -0
  70. {pertpy-1.0.1 → pertpy-1.0.2}/docs/_static/docstring_previews/de_paired_expression.png +0 -0
  71. {pertpy-1.0.1 → pertpy-1.0.2}/docs/_static/docstring_previews/de_volcano.png +0 -0
  72. {pertpy-1.0.1 → pertpy-1.0.2}/docs/_static/docstring_previews/dialogue_pairplot.png +0 -0
  73. {pertpy-1.0.1 → pertpy-1.0.2}/docs/_static/docstring_previews/dialogue_violin.png +0 -0
  74. {pertpy-1.0.1 → pertpy-1.0.2}/docs/_static/docstring_previews/enrichment_dotplot.png +0 -0
  75. {pertpy-1.0.1 → pertpy-1.0.2}/docs/_static/docstring_previews/enrichment_gsea.png +0 -0
  76. {pertpy-1.0.1 → pertpy-1.0.2}/docs/_static/docstring_previews/milo_da_beeswarm.png +0 -0
  77. {pertpy-1.0.1 → pertpy-1.0.2}/docs/_static/docstring_previews/milo_nhood.png +0 -0
  78. {pertpy-1.0.1 → pertpy-1.0.2}/docs/_static/docstring_previews/milo_nhood_graph.png +0 -0
  79. {pertpy-1.0.1 → pertpy-1.0.2}/docs/_static/docstring_previews/mixscape_barplot.png +0 -0
  80. {pertpy-1.0.1 → pertpy-1.0.2}/docs/_static/docstring_previews/mixscape_heatmap.png +0 -0
  81. {pertpy-1.0.1 → pertpy-1.0.2}/docs/_static/docstring_previews/mixscape_lda.png +0 -0
  82. {pertpy-1.0.1 → pertpy-1.0.2}/docs/_static/docstring_previews/mixscape_perturbscore.png +0 -0
  83. {pertpy-1.0.1 → pertpy-1.0.2}/docs/_static/docstring_previews/mixscape_violin.png +0 -0
  84. {pertpy-1.0.1 → pertpy-1.0.2}/docs/_static/docstring_previews/pseudobulk_samples.png +0 -0
  85. {pertpy-1.0.1 → pertpy-1.0.2}/docs/_static/docstring_previews/sccoda_boxplots.png +0 -0
  86. {pertpy-1.0.1 → pertpy-1.0.2}/docs/_static/docstring_previews/sccoda_effects_barplot.png +0 -0
  87. {pertpy-1.0.1 → pertpy-1.0.2}/docs/_static/docstring_previews/sccoda_rel_abundance_dispersion_plot.png +0 -0
  88. {pertpy-1.0.1 → pertpy-1.0.2}/docs/_static/docstring_previews/sccoda_stacked_barplot.png +0 -0
  89. {pertpy-1.0.1 → pertpy-1.0.2}/docs/_static/docstring_previews/scgen_reg_mean.png +0 -0
  90. {pertpy-1.0.1 → pertpy-1.0.2}/docs/_static/docstring_previews/tasccoda_draw_effects.png +0 -0
  91. {pertpy-1.0.1 → pertpy-1.0.2}/docs/_static/docstring_previews/tasccoda_draw_tree.png +0 -0
  92. {pertpy-1.0.1 → pertpy-1.0.2}/docs/_static/docstring_previews/tasccoda_effects_umap.png +0 -0
  93. {pertpy-1.0.1 → pertpy-1.0.2}/docs/_static/icons/code-24px.svg +0 -0
  94. {pertpy-1.0.1 → pertpy-1.0.2}/docs/_static/icons/computer-24px.svg +0 -0
  95. {pertpy-1.0.1 → pertpy-1.0.2}/docs/_static/icons/library_books-24px.svg +0 -0
  96. {pertpy-1.0.1 → pertpy-1.0.2}/docs/_static/icons/play_circle_outline-24px.svg +0 -0
  97. {pertpy-1.0.1 → pertpy-1.0.2}/docs/_static/pertpy_logo.png +0 -0
  98. {pertpy-1.0.1 → pertpy-1.0.2}/docs/_static/pertpy_logo.svg +0 -0
  99. {pertpy-1.0.1 → pertpy-1.0.2}/docs/_static/placeholder.png +0 -0
  100. {pertpy-1.0.1 → pertpy-1.0.2}/docs/_static/tutorials/augur.png +0 -0
  101. {pertpy-1.0.1 → pertpy-1.0.2}/docs/_static/tutorials/cinemaot.png +0 -0
  102. {pertpy-1.0.1 → pertpy-1.0.2}/docs/_static/tutorials/dge.png +0 -0
  103. {pertpy-1.0.1 → pertpy-1.0.2}/docs/_static/tutorials/dialogue.png +0 -0
  104. {pertpy-1.0.1 → pertpy-1.0.2}/docs/_static/tutorials/distances.png +0 -0
  105. {pertpy-1.0.1 → pertpy-1.0.2}/docs/_static/tutorials/distances_tests.png +0 -0
  106. {pertpy-1.0.1 → pertpy-1.0.2}/docs/_static/tutorials/enrichment.png +0 -0
  107. {pertpy-1.0.1 → pertpy-1.0.2}/docs/_static/tutorials/guide_rna_assignment.png +0 -0
  108. {pertpy-1.0.1 → pertpy-1.0.2}/docs/_static/tutorials/mcfarland.png +0 -0
  109. {pertpy-1.0.1 → pertpy-1.0.2}/docs/_static/tutorials/metadata.png +0 -0
  110. {pertpy-1.0.1 → pertpy-1.0.2}/docs/_static/tutorials/milo.png +0 -0
  111. {pertpy-1.0.1 → pertpy-1.0.2}/docs/_static/tutorials/mixscape.png +0 -0
  112. {pertpy-1.0.1 → pertpy-1.0.2}/docs/_static/tutorials/norman.png +0 -0
  113. {pertpy-1.0.1 → pertpy-1.0.2}/docs/_static/tutorials/ontology.png +0 -0
  114. {pertpy-1.0.1 → pertpy-1.0.2}/docs/_static/tutorials/perturbation_space.png +0 -0
  115. {pertpy-1.0.1 → pertpy-1.0.2}/docs/_static/tutorials/placeholder.png +0 -0
  116. {pertpy-1.0.1 → pertpy-1.0.2}/docs/_static/tutorials/sccoda.png +0 -0
  117. {pertpy-1.0.1 → pertpy-1.0.2}/docs/_static/tutorials/sccoda_extended.png +0 -0
  118. {pertpy-1.0.1 → pertpy-1.0.2}/docs/_static/tutorials/scgen_perturbation_prediction.png +0 -0
  119. {pertpy-1.0.1 → pertpy-1.0.2}/docs/_static/tutorials/tasccoda.png +0 -0
  120. {pertpy-1.0.1 → pertpy-1.0.2}/docs/_static/tutorials/zhang.png +0 -0
  121. {pertpy-1.0.1 → pertpy-1.0.2}/docs/_templates/autosummary/class.rst +0 -0
  122. {pertpy-1.0.1 → pertpy-1.0.2}/docs/about/background.md +0 -0
  123. {pertpy-1.0.1 → pertpy-1.0.2}/docs/about/cite.md +0 -0
  124. {pertpy-1.0.1 → pertpy-1.0.2}/docs/api/datasets_index.md +0 -0
  125. {pertpy-1.0.1 → pertpy-1.0.2}/docs/api/metadata_index.md +0 -0
  126. {pertpy-1.0.1 → pertpy-1.0.2}/docs/api/preprocessing_index.md +0 -0
  127. {pertpy-1.0.1 → pertpy-1.0.2}/docs/api/tools_index.md +0 -0
  128. {pertpy-1.0.1 → pertpy-1.0.2}/docs/api.md +0 -0
  129. {pertpy-1.0.1 → pertpy-1.0.2}/docs/conf.py +0 -0
  130. {pertpy-1.0.1 → pertpy-1.0.2}/docs/contributing.md +0 -0
  131. {pertpy-1.0.1 → pertpy-1.0.2}/docs/index.md +0 -0
  132. {pertpy-1.0.1 → pertpy-1.0.2}/docs/installation.md +0 -0
  133. {pertpy-1.0.1 → pertpy-1.0.2}/docs/make.bat +0 -0
  134. {pertpy-1.0.1 → pertpy-1.0.2}/docs/references.bib +0 -0
  135. {pertpy-1.0.1 → pertpy-1.0.2}/docs/references.md +0 -0
  136. {pertpy-1.0.1 → pertpy-1.0.2}/docs/tutorials/metadata.md +0 -0
  137. {pertpy-1.0.1 → pertpy-1.0.2}/docs/tutorials/preprocessing.md +0 -0
  138. {pertpy-1.0.1 → pertpy-1.0.2}/docs/tutorials/tools.md +0 -0
  139. {pertpy-1.0.1 → pertpy-1.0.2}/docs/tutorials.md +0 -0
  140. {pertpy-1.0.1 → pertpy-1.0.2}/docs/usecases.md +0 -0
  141. {pertpy-1.0.1 → pertpy-1.0.2}/docs/utils.py +0 -0
  142. {pertpy-1.0.1 → pertpy-1.0.2}/pertpy/_doc.py +0 -0
  143. {pertpy-1.0.1 → pertpy-1.0.2}/pertpy/_types.py +0 -0
  144. {pertpy-1.0.1 → pertpy-1.0.2}/pertpy/data/__init__.py +0 -0
  145. {pertpy-1.0.1 → pertpy-1.0.2}/pertpy/data/_dataloader.py +0 -0
  146. {pertpy-1.0.1 → pertpy-1.0.2}/pertpy/data/_datasets.py +0 -0
  147. {pertpy-1.0.1 → pertpy-1.0.2}/pertpy/metadata/__init__.py +0 -0
  148. {pertpy-1.0.1 → pertpy-1.0.2}/pertpy/metadata/_compound.py +0 -0
  149. {pertpy-1.0.1 → pertpy-1.0.2}/pertpy/metadata/_drug.py +0 -0
  150. {pertpy-1.0.1 → pertpy-1.0.2}/pertpy/metadata/_look_up.py +0 -0
  151. {pertpy-1.0.1 → pertpy-1.0.2}/pertpy/metadata/_metadata.py +0 -0
  152. {pertpy-1.0.1 → pertpy-1.0.2}/pertpy/metadata/_moa.py +0 -0
  153. {pertpy-1.0.1 → pertpy-1.0.2}/pertpy/plot/__init__.py +0 -0
  154. {pertpy-1.0.1 → pertpy-1.0.2}/pertpy/preprocessing/__init__.py +0 -0
  155. {pertpy-1.0.1 → pertpy-1.0.2}/pertpy/preprocessing/_guide_rna.py +0 -0
  156. {pertpy-1.0.1 → pertpy-1.0.2}/pertpy/preprocessing/_guide_rna_mixture.py +0 -0
  157. {pertpy-1.0.1 → pertpy-1.0.2}/pertpy/py.typed +0 -0
  158. {pertpy-1.0.1 → pertpy-1.0.2}/pertpy/tools/__init__.py +0 -0
  159. {pertpy-1.0.1 → pertpy-1.0.2}/pertpy/tools/_augur.py +0 -0
  160. {pertpy-1.0.1 → pertpy-1.0.2}/pertpy/tools/_cinemaot.py +0 -0
  161. {pertpy-1.0.1 → pertpy-1.0.2}/pertpy/tools/_coda/__init__.py +0 -0
  162. {pertpy-1.0.1 → pertpy-1.0.2}/pertpy/tools/_coda/_base_coda.py +0 -0
  163. {pertpy-1.0.1 → pertpy-1.0.2}/pertpy/tools/_dialogue.py +0 -0
  164. {pertpy-1.0.1 → pertpy-1.0.2}/pertpy/tools/_differential_gene_expression/__init__.py +0 -0
  165. {pertpy-1.0.1 → pertpy-1.0.2}/pertpy/tools/_differential_gene_expression/_base.py +0 -0
  166. {pertpy-1.0.1 → pertpy-1.0.2}/pertpy/tools/_differential_gene_expression/_checks.py +0 -0
  167. {pertpy-1.0.1 → pertpy-1.0.2}/pertpy/tools/_differential_gene_expression/_dge_comparison.py +0 -0
  168. {pertpy-1.0.1 → pertpy-1.0.2}/pertpy/tools/_differential_gene_expression/_edger.py +0 -0
  169. {pertpy-1.0.1 → pertpy-1.0.2}/pertpy/tools/_differential_gene_expression/_pydeseq2.py +0 -0
  170. {pertpy-1.0.1 → pertpy-1.0.2}/pertpy/tools/_differential_gene_expression/_simple_tests.py +0 -0
  171. {pertpy-1.0.1 → pertpy-1.0.2}/pertpy/tools/_differential_gene_expression/_statsmodels.py +0 -0
  172. {pertpy-1.0.1 → pertpy-1.0.2}/pertpy/tools/_distances/__init__.py +0 -0
  173. {pertpy-1.0.1 → pertpy-1.0.2}/pertpy/tools/_distances/_distance_tests.py +0 -0
  174. {pertpy-1.0.1 → pertpy-1.0.2}/pertpy/tools/_distances/_distances.py +0 -0
  175. {pertpy-1.0.1 → pertpy-1.0.2}/pertpy/tools/_enrichment.py +0 -0
  176. {pertpy-1.0.1 → pertpy-1.0.2}/pertpy/tools/_milo.py +0 -0
  177. {pertpy-1.0.1 → pertpy-1.0.2}/pertpy/tools/_mixscape.py +0 -0
  178. {pertpy-1.0.1 → pertpy-1.0.2}/pertpy/tools/_perturbation_space/__init__.py +0 -0
  179. {pertpy-1.0.1 → pertpy-1.0.2}/pertpy/tools/_perturbation_space/_clustering.py +0 -0
  180. {pertpy-1.0.1 → pertpy-1.0.2}/pertpy/tools/_perturbation_space/_comparison.py +0 -0
  181. {pertpy-1.0.1 → pertpy-1.0.2}/pertpy/tools/_perturbation_space/_discriminator_classifiers.py +0 -0
  182. {pertpy-1.0.1 → pertpy-1.0.2}/pertpy/tools/_perturbation_space/_metrics.py +0 -0
  183. {pertpy-1.0.1 → pertpy-1.0.2}/pertpy/tools/_perturbation_space/_perturbation_space.py +0 -0
  184. {pertpy-1.0.1 → pertpy-1.0.2}/pertpy/tools/_perturbation_space/_simple.py +0 -0
  185. {pertpy-1.0.1 → pertpy-1.0.2}/pertpy/tools/_scgen/__init__.py +0 -0
  186. {pertpy-1.0.1 → pertpy-1.0.2}/pertpy/tools/_scgen/_base_components.py +0 -0
  187. {pertpy-1.0.1 → pertpy-1.0.2}/pertpy/tools/_scgen/_scgen.py +0 -0
  188. {pertpy-1.0.1 → pertpy-1.0.2}/pertpy/tools/_scgen/_scgenvae.py +0 -0
  189. {pertpy-1.0.1 → pertpy-1.0.2}/pertpy/tools/_scgen/_utils.py +0 -0
  190. {pertpy-1.0.1 → pertpy-1.0.2}/pertpy/tools/decoupler_LICENSE +0 -0
  191. {pertpy-1.0.1 → pertpy-1.0.2}/pertpy/tools/transferlearning_MMD_LICENSE +0 -0
  192. {pertpy-1.0.1 → pertpy-1.0.2}/tests/conftest.py +0 -0
  193. {pertpy-1.0.1 → pertpy-1.0.2}/tests/metadata/test_cell_line.py +0 -0
  194. {pertpy-1.0.1 → pertpy-1.0.2}/tests/metadata/test_compound.py +0 -0
  195. {pertpy-1.0.1 → pertpy-1.0.2}/tests/metadata/test_drug.py +0 -0
  196. {pertpy-1.0.1 → pertpy-1.0.2}/tests/metadata/test_moa.py +0 -0
  197. {pertpy-1.0.1 → pertpy-1.0.2}/tests/preprocessing/test_grna_assignment.py +0 -0
  198. {pertpy-1.0.1 → pertpy-1.0.2}/tests/tools/_coda/test_sccoda.py +0 -0
  199. {pertpy-1.0.1 → pertpy-1.0.2}/tests/tools/_differential_gene_expression/__init__.py +0 -0
  200. {pertpy-1.0.1 → pertpy-1.0.2}/tests/tools/_differential_gene_expression/conftest.py +0 -0
  201. {pertpy-1.0.1 → pertpy-1.0.2}/tests/tools/_differential_gene_expression/test_base.py +0 -0
  202. {pertpy-1.0.1 → pertpy-1.0.2}/tests/tools/_differential_gene_expression/test_compare_groups.py +0 -0
  203. {pertpy-1.0.1 → pertpy-1.0.2}/tests/tools/_differential_gene_expression/test_dge.py +0 -0
  204. {pertpy-1.0.1 → pertpy-1.0.2}/tests/tools/_differential_gene_expression/test_edger.py +0 -0
  205. {pertpy-1.0.1 → pertpy-1.0.2}/tests/tools/_differential_gene_expression/test_input_checks.py +0 -0
  206. {pertpy-1.0.1 → pertpy-1.0.2}/tests/tools/_differential_gene_expression/test_pydeseq2.py +0 -0
  207. {pertpy-1.0.1 → pertpy-1.0.2}/tests/tools/_differential_gene_expression/test_simple_tests.py +0 -0
  208. {pertpy-1.0.1 → pertpy-1.0.2}/tests/tools/_differential_gene_expression/test_statsmodels.py +0 -0
  209. {pertpy-1.0.1 → pertpy-1.0.2}/tests/tools/_distances/test_distance_tests.py +0 -0
  210. {pertpy-1.0.1 → pertpy-1.0.2}/tests/tools/_distances/test_distances.py +0 -0
  211. {pertpy-1.0.1 → pertpy-1.0.2}/tests/tools/_perturbation_space/test_comparison.py +0 -0
  212. {pertpy-1.0.1 → pertpy-1.0.2}/tests/tools/_perturbation_space/test_discriminator_classifiers.py +0 -0
  213. {pertpy-1.0.1 → pertpy-1.0.2}/tests/tools/_perturbation_space/test_simple_cluster_space.py +0 -0
  214. {pertpy-1.0.1 → pertpy-1.0.2}/tests/tools/_perturbation_space/test_simple_perturbation_space.py +0 -0
  215. {pertpy-1.0.1 → pertpy-1.0.2}/tests/tools/test_augur.py +0 -0
  216. {pertpy-1.0.1 → pertpy-1.0.2}/tests/tools/test_cinemaot.py +0 -0
  217. {pertpy-1.0.1 → pertpy-1.0.2}/tests/tools/test_dialogue.py +0 -0
  218. {pertpy-1.0.1 → pertpy-1.0.2}/tests/tools/test_enrichment.py +0 -0
  219. {pertpy-1.0.1 → pertpy-1.0.2}/tests/tools/test_milo.py +0 -0
  220. {pertpy-1.0.1 → pertpy-1.0.2}/tests/tools/test_mixscape.py +0 -0
  221. {pertpy-1.0.1 → pertpy-1.0.2}/tests/tools/test_scgen.py +0 -0
@@ -1,5 +1,5 @@
1
- name-template: "1.0.1 🌈"
2
- tag-template: 1.0.1
1
+ name-template: "1.0.2 🌈"
2
+ tag-template: 1.0.2
3
3
  exclude-labels:
4
4
  - "skip-changelog"
5
5
 
@@ -7,17 +7,17 @@ default_stages:
7
7
  minimum_pre_commit_version: 2.16.0
8
8
  repos:
9
9
  - repo: https://github.com/biomejs/pre-commit
10
- rev: v2.1.1
10
+ rev: v2.1.4
11
11
  hooks:
12
12
  - id: biome-format
13
13
  - repo: https://github.com/astral-sh/ruff-pre-commit
14
- rev: v0.12.3
14
+ rev: v0.12.8
15
15
  hooks:
16
16
  - id: ruff-check
17
17
  args: [--fix, --exit-non-zero-on-fix, --unsafe-fixes]
18
18
  - id: ruff-format
19
19
  - repo: https://github.com/pre-commit/pre-commit-hooks
20
- rev: v5.0.0
20
+ rev: v6.0.0
21
21
  hooks:
22
22
  - id: detect-private-key
23
23
  - id: check-ast
@@ -33,7 +33,7 @@ repos:
33
33
  - id: no-commit-to-branch
34
34
  args: ["--branch=main"]
35
35
  - repo: https://github.com/pre-commit/mirrors-mypy
36
- rev: v1.16.1
36
+ rev: v1.17.1
37
37
  hooks:
38
38
  - id: mypy
39
39
  args: [--no-strict-optional, --ignore-missing-imports]
@@ -1,41 +1,17 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: pertpy
3
- Version: 1.0.1
3
+ Version: 1.0.2
4
4
  Summary: Perturbation Analysis in the scverse ecosystem.
5
- Project-URL: Documentation, https://pertpy.readthedocs.io
6
- Project-URL: Source, https://github.com/scverse/pertpy
7
- Project-URL: Home-page, https://github.com/scverse/pertpy
8
5
  Author: Lukas Heumos, Lilly May, Stefan Peidli, Johannes Ostner, Gregor Sturm, Emma Dann, Yuge Ji, Xinyue Zhang, Xichen Wu, Tessa Green, Antonia Schumacher
9
6
  Maintainer-email: Lukas Heumos <lukas.heumos@posteo.net>
10
- License: MIT License
11
-
12
- Copyright (c) 2021, Lukas Heumos
13
- Copyright (c) 2025, scverse®
14
-
15
- Permission is hereby granted, free of charge, to any person obtaining a copy
16
- of this software and associated documentation files (the "Software"), to deal
17
- in the Software without restriction, including without limitation the rights
18
- to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
19
- copies of the Software, and to permit persons to whom the Software is
20
- furnished to do so, subject to the following conditions:
21
-
22
- The above copyright notice and this permission notice shall be included in all
23
- copies or substantial portions of the Software.
24
-
25
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
26
- IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
27
- FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
28
- AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
29
- LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
30
- OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
31
- SOFTWARE.
32
- License-File: LICENSE
7
+ Requires-Python: >=3.11,<3.14
8
+ Description-Content-Type: text/markdown
9
+ Classifier: License :: OSI Approved :: Apache Software License
33
10
  Classifier: Development Status :: 5 - Production/Stable
34
11
  Classifier: Environment :: Console
35
12
  Classifier: Framework :: Jupyter
36
13
  Classifier: Intended Audience :: Developers
37
14
  Classifier: Intended Audience :: Science/Research
38
- Classifier: License :: OSI Approved :: Apache Software License
39
15
  Classifier: Natural Language :: English
40
16
  Classifier: Operating System :: MacOS :: MacOS X
41
17
  Classifier: Operating System :: POSIX :: Linux
@@ -45,60 +21,62 @@ Classifier: Programming Language :: Python :: 3.12
45
21
  Classifier: Programming Language :: Python :: 3.13
46
22
  Classifier: Topic :: Scientific/Engineering :: Bio-Informatics
47
23
  Classifier: Topic :: Scientific/Engineering :: Visualization
48
- Requires-Python: <3.14,>=3.11
49
- Requires-Dist: adjusttext
50
- Requires-Dist: arviz
51
- Requires-Dist: blitzgsea
52
- Requires-Dist: fast-array-utils[accel,sparse]
53
- Requires-Dist: lamin-utils
54
- Requires-Dist: mudata
55
- Requires-Dist: openpyxl
56
- Requires-Dist: ott-jax
57
- Requires-Dist: pubchempy
58
- Requires-Dist: pyarrow
59
- Requires-Dist: requests
24
+ License-File: LICENSE
60
25
  Requires-Dist: rich
61
26
  Requires-Dist: scanpy
62
- Requires-Dist: scikit-learn>=1.4
27
+ Requires-Dist: mudata
28
+ Requires-Dist: requests
63
29
  Requires-Dist: scikit-misc
64
30
  Requires-Dist: scvi-tools
31
+ Requires-Dist: adjusttext
32
+ Requires-Dist: ott-jax
65
33
  Requires-Dist: sparsecca
34
+ Requires-Dist: openpyxl
35
+ Requires-Dist: pubchempy
36
+ Requires-Dist: pyarrow
37
+ Requires-Dist: blitzgsea
38
+ Requires-Dist: scikit-learn>=1.4
39
+ Requires-Dist: fast-array-utils[accel, sparse]
40
+ Requires-Dist: lamin_utils
41
+ Requires-Dist: arviz
42
+ Requires-Dist: formulaic-contrasts>=0.2.0 ; extra == "de"
43
+ Requires-Dist: formulaic ; extra == "de"
44
+ Requires-Dist: pydeseq2>=v0.5.0 ; extra == "de"
45
+ Requires-Dist: pre-commit ; extra == "dev"
46
+ Requires-Dist: docutils>=0.8 ; extra == "doc"
47
+ Requires-Dist: sphinx>=8.1 ; extra == "doc"
48
+ Requires-Dist: scanpydoc ; extra == "doc"
49
+ Requires-Dist: sphinx-book-theme ; extra == "doc"
50
+ Requires-Dist: myst-nb ; extra == "doc"
51
+ Requires-Dist: sphinxcontrib-bibtex>=1.0.0 ; extra == "doc"
52
+ Requires-Dist: sphinx-issues ; extra == "doc"
53
+ Requires-Dist: sphinx-gallery ; extra == "doc"
54
+ Requires-Dist: sphinx-autodoc-typehints ; extra == "doc"
55
+ Requires-Dist: sphinx-copybutton ; extra == "doc"
56
+ Requires-Dist: sphinx-remove-toctrees ; extra == "doc"
57
+ Requires-Dist: sphinx-design ; extra == "doc"
58
+ Requires-Dist: sphinx-last-updated-by-git ; extra == "doc"
59
+ Requires-Dist: sphinx-automodapi ; extra == "doc"
60
+ Requires-Dist: sphinxext-opengraph ; extra == "doc"
61
+ Requires-Dist: pygments ; extra == "doc"
62
+ Requires-Dist: nbsphinx ; extra == "doc"
63
+ Requires-Dist: nbsphinx-link ; extra == "doc"
64
+ Requires-Dist: ipykernel ; extra == "doc"
65
+ Requires-Dist: ipython ; extra == "doc"
66
+ Requires-Dist: toytree>=3.0 ; extra == "tcoda"
67
+ Requires-Dist: ete4 ; extra == "tcoda"
68
+ Requires-Dist: pyqt6 ; extra == "tcoda"
69
+ Requires-Dist: pytest ; extra == "test"
70
+ Requires-Dist: coverage ; extra == "test"
71
+ Requires-Dist: leidenalg ; extra == "test"
72
+ Project-URL: Documentation, https://pertpy.readthedocs.io
73
+ Project-URL: Home-page, https://github.com/scverse/pertpy
74
+ Project-URL: Source, https://github.com/scverse/pertpy
66
75
  Provides-Extra: de
67
- Requires-Dist: formulaic; extra == 'de'
68
- Requires-Dist: formulaic-contrasts>=0.2.0; extra == 'de'
69
- Requires-Dist: pydeseq2>=v0.5.0; extra == 'de'
70
76
  Provides-Extra: dev
71
- Requires-Dist: pre-commit; extra == 'dev'
72
77
  Provides-Extra: doc
73
- Requires-Dist: docutils>=0.8; extra == 'doc'
74
- Requires-Dist: ipykernel; extra == 'doc'
75
- Requires-Dist: ipython; extra == 'doc'
76
- Requires-Dist: myst-nb; extra == 'doc'
77
- Requires-Dist: nbsphinx; extra == 'doc'
78
- Requires-Dist: nbsphinx-link; extra == 'doc'
79
- Requires-Dist: pygments; extra == 'doc'
80
- Requires-Dist: scanpydoc; extra == 'doc'
81
- Requires-Dist: sphinx-autodoc-typehints; extra == 'doc'
82
- Requires-Dist: sphinx-automodapi; extra == 'doc'
83
- Requires-Dist: sphinx-book-theme; extra == 'doc'
84
- Requires-Dist: sphinx-copybutton; extra == 'doc'
85
- Requires-Dist: sphinx-design; extra == 'doc'
86
- Requires-Dist: sphinx-gallery; extra == 'doc'
87
- Requires-Dist: sphinx-issues; extra == 'doc'
88
- Requires-Dist: sphinx-last-updated-by-git; extra == 'doc'
89
- Requires-Dist: sphinx-remove-toctrees; extra == 'doc'
90
- Requires-Dist: sphinx>=8.1; extra == 'doc'
91
- Requires-Dist: sphinxcontrib-bibtex>=1.0.0; extra == 'doc'
92
- Requires-Dist: sphinxext-opengraph; extra == 'doc'
93
78
  Provides-Extra: tcoda
94
- Requires-Dist: ete4; extra == 'tcoda'
95
- Requires-Dist: pyqt6; extra == 'tcoda'
96
- Requires-Dist: toytree>=3.0; extra == 'tcoda'
97
79
  Provides-Extra: test
98
- Requires-Dist: coverage; extra == 'test'
99
- Requires-Dist: leidenalg; extra == 'test'
100
- Requires-Dist: pytest; extra == 'test'
101
- Description-Content-Type: text/markdown
102
80
 
103
81
  [![Build](https://github.com/scverse/pertpy/actions/workflows/build.yml/badge.svg)](https://github.com/scverse/pertpy/actions/workflows/build.yml)
104
82
  [![codecov](https://codecov.io/gh/scverse/pertpy/graph/badge.svg?token=1dTpIPBShv)](https://codecov.io/gh/scverse/pertpy)
@@ -205,3 +183,4 @@ If you like scverse® and want to support our mission, please consider making a
205
183
  >
206
184
  </a>
207
185
  </div>
186
+
@@ -5,15 +5,23 @@ All notable changes to this project will be documented in this file.
5
5
  The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
6
6
  and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
7
7
 
8
- ## v1.0.1
8
+ ## v1.0.2
9
+
10
+ ### 🐛 Bug Fixes
9
11
 
12
+ * Fix: Validate 'type' parameter in Tasccoda.load ([#839](https://github.com/scverse/pertpy/pull/839)) @JuanTejedor
13
+ * Partial fixes for make_arviz ([#834](https://github.com/scverse/pertpy/pull/834)) @jpintar
14
+ * Fix setting of `rng_key` in `make_arviz` ([#831](https://github.com/scverse/pertpy/pull/831)) @jpintar
15
+ * Fixed GDSC and PRISM annotation warnings ([#835](https://github.com/scverse/pertpy/pull/835)) @Lilly-May
16
+
17
+ ## v1.0.1
10
18
 
11
19
  ### 🚀 Features
12
20
 
13
21
  * Add support for gamma parameter in MMD distance ([#825](https://github.com/scverse/pertpy/pull/825)) @Zethson
14
22
  * Run notebooks in CI ([#815](https://github.com/scverse/pertpy/pull/815)) @Zethson
15
23
 
16
- ## 🐛 Bug Fixes
24
+ ### 🐛 Bug Fixes
17
25
 
18
26
  * Fix milo output writing ([#821](https://github.com/scverse/pertpy/pull/821)) @Zethson
19
27
 
@@ -0,0 +1,149 @@
1
+ # Byte-compiled / optimized / DLL files
2
+ __pycache__/
3
+ *.py[cod]
4
+ *$py.class
5
+
6
+ # C extensions
7
+ *.so
8
+
9
+ # Distribution / packaging
10
+ .Python
11
+ build/
12
+ develop-eggs/
13
+ dist/
14
+ downloads/
15
+ eggs/
16
+ .eggs/
17
+ lib/
18
+ lib64/
19
+ parts/
20
+ sdist/
21
+ var/
22
+ wheels/
23
+ pip-wheel-metadata/
24
+ share/python-wheels/
25
+ *.egg-info/
26
+ .installed.cfg
27
+ *.egg
28
+ MANIFEST
29
+
30
+
31
+ # PyInstaller
32
+ # Usually these files are written by a python script from a template
33
+ # before PyInstaller builds the exe, so as to inject date/other infos into it.
34
+ *.manifest
35
+ *.spec
36
+
37
+ # Installer logs
38
+ pip-log.txt
39
+ pip-delete-this-directory.txt
40
+
41
+ # Unit test / coverage reports
42
+ htmlcov/
43
+ .tox/
44
+ .nox/
45
+ .coverage
46
+ .coverage.*
47
+ .cache
48
+ nosetests.xml
49
+ coverage.xml
50
+ *.cover
51
+ *.py,cover
52
+ .hypothesis/
53
+ .pytest_cache/
54
+
55
+ # Translations
56
+ *.mo
57
+ *.pot
58
+
59
+ # Django stuff:
60
+ *.log
61
+ local_settings.py
62
+ db.sqlite3
63
+ db.sqlite3-journal
64
+
65
+ # Flask stuff:
66
+ instance/
67
+ .webassets-cache
68
+
69
+ # Scrapy stuff:
70
+ .scrapy
71
+
72
+ # Sphinx documentation
73
+ docs/_build/
74
+
75
+ # PyBuilder
76
+ target/
77
+
78
+ # Jupyter Notebook
79
+ .ipynb_checkpoints
80
+
81
+ # IPython
82
+ profile_default/
83
+ ipython_config.py
84
+
85
+ # pyenv
86
+ .python-version
87
+
88
+
89
+ # pipenv
90
+ # According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control.
91
+ # However, in case of collaboration, if having platform-specific dependencies or dependencies
92
+ # having no cross-platform support, pipenv may install dependencies that don't work, or not
93
+ # install all needed dependencies.
94
+ #Pipfile.lock
95
+
96
+ # PEP 582; used by e.g. github.com/David-OConnor/pyflow
97
+ __pypackages__/
98
+
99
+ # Celery stuff
100
+ celerybeat-schedule
101
+ celerybeat.pid
102
+
103
+ # SageMath parsed files
104
+ *.sage.py
105
+
106
+ # Environments
107
+ .env
108
+ .venv
109
+ env/
110
+ venv/
111
+ ENV/
112
+ env.bak/
113
+ venv.bak/
114
+
115
+ # Spyder project settings
116
+ .spyderproject
117
+ .spyproject
118
+
119
+ # Rope project settings
120
+ .ropeproject
121
+
122
+ # mkdocs documentation
123
+ /site
124
+
125
+ # mypy
126
+ .mypy_cache/
127
+ .dmypy.json
128
+ dmypy.json
129
+ .pytype/
130
+
131
+ # Pyre type checker
132
+ .pyre/
133
+
134
+ # Jetbrains IDE
135
+ .idea/
136
+
137
+ # Coala
138
+ *.orig
139
+
140
+ # Datasets
141
+ *.h5ad
142
+ *.h5md
143
+ *.h5mu
144
+
145
+ # pertpy cache
146
+ cache
147
+ data
148
+ node_modules
149
+ lightning_logs
@@ -0,0 +1,37 @@
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/rbubley/mirrors-prettier
10
+ rev: v3.5.1
11
+ hooks:
12
+ - id: prettier
13
+ exclude: data
14
+ - repo: https://github.com/astral-sh/ruff-pre-commit
15
+ rev: v0.12.1
16
+ hooks:
17
+ - id: ruff-check
18
+ types_or: [python, pyi, jupyter]
19
+ args: [--fix, --exit-non-zero-on-fix, --unsafe-fixes]
20
+ - id: ruff-format
21
+ types_or: [python, pyi, jupyter]
22
+ - repo: https://github.com/pre-commit/pre-commit-hooks
23
+ rev: v5.0.0
24
+ hooks:
25
+ - id: detect-private-key
26
+ - id: check-ast
27
+ - id: end-of-file-fixer
28
+ - id: mixed-line-ending
29
+ args: [--fix=lf]
30
+ - id: trailing-whitespace
31
+ - id: check-case-conflict
32
+ - repo: https://github.com/pre-commit/mirrors-mypy
33
+ rev: v1.16.1
34
+ hooks:
35
+ - id: mypy
36
+ args: [--no-strict-optional, --ignore-missing-imports]
37
+ additional_dependencies: ["types-requests", "types-attrs"]
@@ -0,0 +1,203 @@
1
+ Apache License
2
+ Version 2.0, January 2004
3
+ http://www.apache.org/licenses/
4
+
5
+ Copyright [2025] scverse® All rights reserved
6
+
7
+ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
8
+
9
+ 1. Definitions.
10
+
11
+ "License" shall mean the terms and conditions for use, reproduction,
12
+ and distribution as defined by Sections 1 through 9 of this document.
13
+
14
+ "Licensor" shall mean the copyright owner or entity authorized by
15
+ the copyright owner that is granting the License.
16
+
17
+ "Legal Entity" shall mean the union of the acting entity and all
18
+ other entities that control, are controlled by, or are under common
19
+ control with that entity. For the purposes of this definition,
20
+ "control" means (i) the power, direct or indirect, to cause the
21
+ direction or management of such entity, whether by contract or
22
+ otherwise, or (ii) ownership of fifty percent (50%) or more of the
23
+ outstanding shares, or (iii) beneficial ownership of such entity.
24
+
25
+ "You" (or "Your") shall mean an individual or Legal Entity
26
+ exercising permissions granted by this License.
27
+
28
+ "Source" form shall mean the preferred form for making modifications,
29
+ including but not limited to software source code, documentation
30
+ source, and configuration files.
31
+
32
+ "Object" form shall mean any form resulting from mechanical
33
+ transformation or translation of a Source form, including but
34
+ not limited to compiled object code, generated documentation,
35
+ and conversions to other media types.
36
+
37
+ "Work" shall mean the work of authorship, whether in Source or
38
+ Object form, made available under the License, as indicated by a
39
+ copyright notice that is included in or attached to the work
40
+ (an example is provided in the Appendix below).
41
+
42
+ "Derivative Works" shall mean any work, whether in Source or Object
43
+ form, that is based on (or derived from) the Work and for which the
44
+ editorial revisions, annotations, elaborations, or other modifications
45
+ represent, as a whole, an original work of authorship. For the purposes
46
+ of this License, Derivative Works shall not include works that remain
47
+ separable from, or merely link (or bind by name) to the interfaces of,
48
+ the Work and Derivative Works thereof.
49
+
50
+ "Contribution" shall mean any work of authorship, including
51
+ the original version of the Work and any modifications or additions
52
+ to that Work or Derivative Works thereof, that is intentionally
53
+ submitted to Licensor for inclusion in the Work by the copyright owner
54
+ or by an individual or Legal Entity authorized to submit on behalf of
55
+ the copyright owner. For the purposes of this definition, "submitted"
56
+ means any form of electronic, verbal, or written communication sent
57
+ to the Licensor or its representatives, including but not limited to
58
+ communication on electronic mailing lists, source code control systems,
59
+ and issue tracking systems that are managed by, or on behalf of, the
60
+ Licensor for the purpose of discussing and improving the Work, but
61
+ excluding communication that is conspicuously marked or otherwise
62
+ designated in writing by the copyright owner as "Not a Contribution."
63
+
64
+ "Contributor" shall mean Licensor and any individual or Legal Entity
65
+ on behalf of whom a Contribution has been received by Licensor and
66
+ subsequently incorporated within the Work.
67
+
68
+ 2. Grant of Copyright License. Subject to the terms and conditions of
69
+ this License, each Contributor hereby grants to You a perpetual,
70
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
71
+ copyright license to reproduce, prepare Derivative Works of,
72
+ publicly display, publicly perform, sublicense, and distribute the
73
+ Work and such Derivative Works in Source or Object form.
74
+
75
+ 3. Grant of Patent License. Subject to the terms and conditions of
76
+ this License, each Contributor hereby grants to You a perpetual,
77
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
78
+ (except as stated in this section) patent license to make, have made,
79
+ use, offer to sell, sell, import, and otherwise transfer the Work,
80
+ where such license applies only to those patent claims licensable
81
+ by such Contributor that are necessarily infringed by their
82
+ Contribution(s) alone or by combination of their Contribution(s)
83
+ with the Work to which such Contribution(s) was submitted. If You
84
+ institute patent litigation against any entity (including a
85
+ cross-claim or counterclaim in a lawsuit) alleging that the Work
86
+ or a Contribution incorporated within the Work constitutes direct
87
+ or contributory patent infringement, then any patent licenses
88
+ granted to You under this License for that Work shall terminate
89
+ as of the date such litigation is filed.
90
+
91
+ 4. Redistribution. You may reproduce and distribute copies of the
92
+ Work or Derivative Works thereof in any medium, with or without
93
+ modifications, and in Source or Object form, provided that You
94
+ meet the following conditions:
95
+
96
+ (a) You must give any other recipients of the Work or
97
+ Derivative Works a copy of this License; and
98
+
99
+ (b) You must cause any modified files to carry prominent notices
100
+ stating that You changed the files; and
101
+
102
+ (c) You must retain, in the Source form of any Derivative Works
103
+ that You distribute, all copyright, patent, trademark, and
104
+ attribution notices from the Source form of the Work,
105
+ excluding those notices that do not pertain to any part of
106
+ the Derivative Works; and
107
+
108
+ (d) If the Work includes a "NOTICE" text file as part of its
109
+ distribution, then any Derivative Works that You distribute must
110
+ include a readable copy of the attribution notices contained
111
+ within such NOTICE file, excluding those notices that do not
112
+ pertain to any part of the Derivative Works, in at least one
113
+ of the following places: within a NOTICE text file distributed
114
+ as part of the Derivative Works; within the Source form or
115
+ documentation, if provided along with the Derivative Works; or,
116
+ within a display generated by the Derivative Works, if and
117
+ wherever such third-party notices normally appear. The contents
118
+ of the NOTICE file are for informational purposes only and
119
+ do not modify the License. You may add Your own attribution
120
+ notices within Derivative Works that You distribute, alongside
121
+ or as an addendum to the NOTICE text from the Work, provided
122
+ that such additional attribution notices cannot be construed
123
+ as modifying the License.
124
+
125
+ You may add Your own copyright statement to Your modifications and
126
+ may provide additional or different license terms and conditions
127
+ for use, reproduction, or distribution of Your modifications, or
128
+ for any such Derivative Works as a whole, provided Your use,
129
+ reproduction, and distribution of the Work otherwise complies with
130
+ the conditions stated in this License.
131
+
132
+ 5. Submission of Contributions. Unless You explicitly state otherwise,
133
+ any Contribution intentionally submitted for inclusion in the Work
134
+ by You to the Licensor shall be under the terms and conditions of
135
+ this License, without any additional terms or conditions.
136
+ Notwithstanding the above, nothing herein shall supersede or modify
137
+ the terms of any separate license agreement you may have executed
138
+ with Licensor regarding such Contributions.
139
+
140
+ 6. Trademarks. This License does not grant permission to use the trade
141
+ names, trademarks, service marks, or product names of the Licensor,
142
+ except as required for reasonable and customary use in describing the
143
+ origin of the Work and reproducing the content of the NOTICE file.
144
+
145
+ 7. Disclaimer of Warranty. Unless required by applicable law or
146
+ agreed to in writing, Licensor provides the Work (and each
147
+ Contributor provides its Contributions) on an "AS IS" BASIS,
148
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
149
+ implied, including, without limitation, any warranties or conditions
150
+ of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
151
+ PARTICULAR PURPOSE. You are solely responsible for determining the
152
+ appropriateness of using or redistributing the Work and assume any
153
+ risks associated with Your exercise of permissions under this License.
154
+
155
+ 8. Limitation of Liability. In no event and under no legal theory,
156
+ whether in tort (including negligence), contract, or otherwise,
157
+ unless required by applicable law (such as deliberate and grossly
158
+ negligent acts) or agreed to in writing, shall any Contributor be
159
+ liable to You for damages, including any direct, indirect, special,
160
+ incidental, or consequential damages of any character arising as a
161
+ result of this License or out of the use or inability to use the
162
+ Work (including but not limited to damages for loss of goodwill,
163
+ work stoppage, computer failure or malfunction, or any and all
164
+ other commercial damages or losses), even if such Contributor
165
+ has been advised of the possibility of such damages.
166
+
167
+ 9. Accepting Warranty or Additional Liability. While redistributing
168
+ the Work or Derivative Works thereof, You may choose to offer,
169
+ and charge a fee for, acceptance of support, warranty, indemnity,
170
+ or other liability obligations and/or rights consistent with this
171
+ License. However, in accepting such obligations, You may act only
172
+ on Your own behalf and on Your sole responsibility, not on behalf
173
+ of any other Contributor, and only if You agree to indemnify,
174
+ defend, and hold each Contributor harmless for any liability
175
+ incurred by, or claims asserted against, such Contributor by reason
176
+ of your accepting any such warranty or additional liability.
177
+
178
+ END OF TERMS AND CONDITIONS
179
+
180
+ APPENDIX: How to apply the Apache License to your work.
181
+
182
+ To apply the Apache License to your work, attach the following
183
+ boilerplate notice, with the fields enclosed by brackets "[]"
184
+ replaced with your own identifying information. (Don't include
185
+ the brackets!) The text should be enclosed in the appropriate
186
+ comment syntax for the file format. We also recommend that a
187
+ file or class name and description of purpose be included on the
188
+ same "printed page" as the copyright notice for easier
189
+ identification within third-party archives.
190
+
191
+ Copyright [yyyy] [name of copyright owner]
192
+
193
+ Licensed under the Apache License, Version 2.0 (the "License");
194
+ you may not use this file except in compliance with the License.
195
+ You may obtain a copy of the License at
196
+
197
+ http://www.apache.org/licenses/LICENSE-2.0
198
+
199
+ Unless required by applicable law or agreed to in writing, software
200
+ distributed under the License is distributed on an "AS IS" BASIS,
201
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
202
+ See the License for the specific language governing permissions and
203
+ limitations under the License.
@@ -0,0 +1,23 @@
1
+ ---
2
+ orphan: true
3
+ ---
4
+
5
+ # pertpy-tutorials
6
+
7
+ This repository hosts all tutorials for pertpy. They are automatically run on pull requests against pertpy.
8
+
9
+ Please refer to the pertpy documentation for rendered versions.
10
+
11
+ [//]: # "numfocus-fiscal-sponsor-attribution"
12
+
13
+ pertpy-tutorials is part of the scverse® project ([website](https://scverse.org), [governance](https://scverse.org/about/roles)) and is fiscally sponsored by [NumFOCUS](https://numfocus.org/).
14
+ If you like scverse® and want to support our mission, please consider making a tax-deductible [donation](https://numfocus.org/donate-to-scverse) to help the project pay for developer time, professional services, travel, workshops, and a variety of other needs.
15
+
16
+ <div align="center">
17
+ <a href="https://numfocus.org/project/scverse">
18
+ <img
19
+ src="https://raw.githubusercontent.com/numfocus/templates/master/images/numfocus-logo.png"
20
+ width="200"
21
+ >
22
+ </a>
23
+ </div>