pythonflex 0.1.3__tar.gz → 0.1.4__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 (23) hide show
  1. {pythonflex-0.1.3 → pythonflex-0.1.4}/PKG-INFO +1 -1
  2. {pythonflex-0.1.3 → pythonflex-0.1.4}/pyproject.toml +1 -1
  3. {pythonflex-0.1.3 → pythonflex-0.1.4}/src/pythonflex/preprocessing.py +1 -1
  4. {pythonflex-0.1.3 → pythonflex-0.1.4}/.gitignore +0 -0
  5. {pythonflex-0.1.3 → pythonflex-0.1.4}/.python-version +0 -0
  6. {pythonflex-0.1.3 → pythonflex-0.1.4}/README.md +0 -0
  7. {pythonflex-0.1.3 → pythonflex-0.1.4}/src/pythonflex/__init__.py +0 -0
  8. {pythonflex-0.1.3 → pythonflex-0.1.4}/src/pythonflex/analysis.py +0 -0
  9. {pythonflex-0.1.3 → pythonflex-0.1.4}/src/pythonflex/data/dataset/liver_cell_lines_500_genes.csv +0 -0
  10. {pythonflex-0.1.3 → pythonflex-0.1.4}/src/pythonflex/data/dataset/melanoma_cell_lines_500_genes.csv +0 -0
  11. {pythonflex-0.1.3 → pythonflex-0.1.4}/src/pythonflex/data/dataset/neuroblastoma_cell_lines_500_genes.csv +0 -0
  12. {pythonflex-0.1.3 → pythonflex-0.1.4}/src/pythonflex/data/gold_standard/CORUM.parquet +0 -0
  13. {pythonflex-0.1.3 → pythonflex-0.1.4}/src/pythonflex/data/gold_standard/GOBP.parquet +0 -0
  14. {pythonflex-0.1.3 → pythonflex-0.1.4}/src/pythonflex/data/gold_standard/PATHWAY.parquet +0 -0
  15. {pythonflex-0.1.3 → pythonflex-0.1.4}/src/pythonflex/data/gold_standard/corum.csv +0 -0
  16. {pythonflex-0.1.3 → pythonflex-0.1.4}/src/pythonflex/data/gold_standard/gobp.csv +0 -0
  17. {pythonflex-0.1.3 → pythonflex-0.1.4}/src/pythonflex/data/gold_standard/pathway.csv +0 -0
  18. {pythonflex-0.1.3 → pythonflex-0.1.4}/src/pythonflex/examples/basic_usage.py +0 -0
  19. {pythonflex-0.1.3 → pythonflex-0.1.4}/src/pythonflex/examples/dataset_filtering.py +0 -0
  20. {pythonflex-0.1.3 → pythonflex-0.1.4}/src/pythonflex/logging_config.py +0 -0
  21. {pythonflex-0.1.3 → pythonflex-0.1.4}/src/pythonflex/plotting.py +0 -0
  22. {pythonflex-0.1.3 → pythonflex-0.1.4}/src/pythonflex/utils.py +0 -0
  23. {pythonflex-0.1.3 → pythonflex-0.1.4}/uv.lock +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: pythonflex
3
- Version: 0.1.3
3
+ Version: 0.1.4
4
4
  Summary: pythonFLEX is a benchmarking toolkit for evaluating CRISPR screen results against biological gold standards. The toolkit computes gene-level and complex-level performance metrics, helping researchers systematically assess the biological relevance and resolution of their CRISPR screening data.
5
5
  Author-email: Yasir Demirtaş <tyasird@hotmail.com>
6
6
  Requires-Python: >=3.9
@@ -1,6 +1,6 @@
1
1
  [project]
2
2
  name = "pythonflex"
3
- version = "0.1.3"
3
+ version = "0.1.4"
4
4
  description = "pythonFLEX is a benchmarking toolkit for evaluating CRISPR screen results against biological gold standards. The toolkit computes gene-level and complex-level performance metrics, helping researchers systematically assess the biological relevance and resolution of their CRISPR screening data."
5
5
  readme = "README.md"
6
6
  authors = [
@@ -10,7 +10,7 @@ tqdm.pandas()
10
10
 
11
11
 
12
12
  def get_example_data_path(filename: str):
13
- return resources.files("pyflex.data").joinpath("dataset").joinpath(filename)
13
+ return resources.files("pythonflex.data").joinpath("dataset").joinpath(filename)
14
14
 
15
15
 
16
16
  def _load_file(filepath, ext):
File without changes
File without changes
File without changes
File without changes