-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpyproject.toml
More file actions
76 lines (69 loc) · 2.27 KB
/
pyproject.toml
File metadata and controls
76 lines (69 loc) · 2.27 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
[build-system]
requires = ["setuptools>=61.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "deeprbp"
version = "1.0.0"
description = "Deep learning model for inferring RBP-Gene regulations"
readme = "README.md"
requires-python = ">=3.9,<3.12"
authors = [{ name = "Joseba Sancho Zamora" }]
dependencies = [
"numpy<2",
"scipy<1.14",
"h5py",
"matplotlib",
"pandas",
"scanpy",
"scikit-learn",
"seaborn",
"statsmodels",
"tornado",
"tqdm",
"plotly",
"openpyxl",
"captum",
"optuna",
"joblib",
"pydeseq2",
"sanbomics",
"colorama",
"torchinfo",
"psutil",
"lightning",
"optuna-integration[pytorch_lightning]",
"tabulate",
"xgboost",
"lightgbm",
]
[project.optional-dependencies]
gpu = [
"torch>=2.0",
"torchvision>=0.15",
"GPUtil"
]
dev = [
"notebook",
"ipykernel"
]
[project.urls]
Homepage = "https://github.com/ML4BM-Lab/DeepRBP"
[project.scripts]
preprocess-data = "deeprbp.data_preprocessing.preprocess_data:main"
split-and-save = "deeprbp.data_preprocessing.split_data_and_save:main"
create-optuna-study = "deeprbp.training_module.hyperparameter_optimization.create_optuna_study:main"
analyze-optuna-results = "deeprbp.training_module.hyperparameter_optimization.analyze_results_optuna:main"
run-deeprbp-predictor = "deeprbp.training_module.main_predictor:main"
run-deeprbp-evaluator = "deeprbp.training_module.evaluate_predictor:main"
run-deeprbp-explainer = "deeprbp.explainability_module.main_explainer:main"
run-postar-validator = "deeprbp.explainability_module.postar_validation.postar_validator:main"
preprocess-realkd-data = "deeprbp.explainability_module.real_knockdowns.preprocess_data.preprocess_realkd_data:main"
preprocess-user-data = "deeprbp.data_preprocessing.preprocess_data_user:main"
run-deeprbp-realkd = "deeprbp.explainability_module.real_knockdowns.main_real_knockdowns:main"
run-deeprbp-differential-regulation-scores = "deeprbp.explainability_module.differential_regulation.compute_scores_per_condition:main"
run-deeprbp-differential-expression = "deeprbp.explainability_module.differential_regulation.de_expression_conditions:main"
[tool.setuptools]
package-dir = {"" = "src"}
include-package-data = true
[tool.setuptools.packages.find]
where = ["src"]