-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
59 lines (52 loc) · 1.66 KB
/
pyproject.toml
File metadata and controls
59 lines (52 loc) · 1.66 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
[project]
name = "multi-dwpc"
version = "0.1.0"
description = "Scripts testing aggregate degree weighted path count (DWPC) statistics"
readme = "README.md"
license = "BSD-2-Clause-Patent"
requires-python = ">=3.13"
dependencies = [
"pandas",
"numpy",
"scipy",
"scikit-learn",
"statsmodels",
"matplotlib",
"seaborn",
"jupyterlab",
"jupytext",
"tqdm",
"httpx",
"pyarrow",
"hetmatpy==0.1.0",
"hetnetpy @ git+https://github.com/hetio/hetio.git@0a81e9ea675e2c20f235f5d74598053c1332cb85",
"hetnet-analysis @ git+https://github.com/CU-DBMI/hetionet-analysis.git@f371064da1498ac984aa6ec6ed0ba2739c7b0259",
]
[project.optional-dependencies]
dev = [
"jupytext",
"poethepoet",
]
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[tool.setuptools.packages.find]
where = ["."]
include = ["src*"]
[tool.poe.tasks]
# Individual pipeline steps
load-data = "python scripts/load_data.py"
filter-change = "python scripts/percent_change_and_filtering.py"
go-hierarchy-analysis = "python scripts/go_hierarchy_analysis.py"
filter-jaccard = "python scripts/jaccard_similarity_and_filtering.py"
gen-permutation = "python scripts/permutation_null_datasets.py"
gen-random = "python scripts/random_null_datasets.py"
# DWPC computation
# Option A: Direct matrix computation (no Docker required)
compute-dwpc-direct = "python scripts/compute_dwpc_direct.py"
# Testing
test-dwpc-accuracy = "python scripts/test_dwpc_accuracy.py"
benchmark-dwpc = "python scripts/benchmark_dwpc_methods.py"
# Grouped tasks
pipeline-production = "python scripts/pipeline_production.py"
pipeline-null = ["gen-permutation", "gen-random"]