Scalable gene regulatory network inference using tree-based ensemble regressors with p-values
Project description
SignifiKANTE
SignifiKANTE builds upon the arboreto software library to enable regression-based gene regulatory network inference and efficient, permutation-based empirical P-value computation for predicted regulatory links.
Quick install
The tool is installable via pip and pixi
git clone git@github.com:bionetslab/SignifiKANTE.git
cd SignifiKANTE
pip install -e .
To create a pixi environment, download pixi from pixi.sh, install and run
git clone git@github.com:bionetslab/SignifiKANTE.git
cd SignifiKANTE
pixi install
Create jupyter kernel using pixi.toml/pyproject.toml, which will install a jupyter kernel using a custom environment (including ipython)
git clone git@github.com:bionetslab/SignifiKANTE.git
cd SignifiKANTE
pixi run -e kernel install-kernel
FDR control
We provide an efficient FDR control implementation based on GRNBoost2, which computes empirical P-values for each edge in a given or to-be-inferred GRN. Our implementation offers both a full and a (more efficient) approximate way of P-value computation. An example call to our FDR control includes the following steps:
import pandas as pd
from signifikante.algo import grnboost2_fdr
# Load expression matrix - in this case simulate one.
exp_data = np.random.randn(100, 10)
exp_df = pd.DataFrame(data, columns=columns)
# Run approximate FDR control.
fdr_grn = grnboost2_fdr(
expression_data=exp_df,
cluster_representative_mode="random",
num_target_clusters=5,
num_tf_clusters=-1
)
A more detailed description of all parameters of the grnboost2_fdr function can be found in the respective docstring.
License
This project is licensed under the GNU General Public LICENSE v3.0.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file signifikante-0.1.0.tar.gz.
File metadata
- Download URL: signifikante-0.1.0.tar.gz
- Upload date:
- Size: 11.0 MB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.13.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f5da82a27ab034f41136df2a13e180b9f613f8cea220873932e3285582db59f6
|
|
| MD5 |
bdcdf7764835baa5833000fe51945b37
|
|
| BLAKE2b-256 |
32fc8775698e4dafaf2d50a41975ed5edeee9b65b27df66eeb1ad2362a421bd3
|
File details
Details for the file signifikante-0.1.0-py3-none-any.whl.
File metadata
- Download URL: signifikante-0.1.0-py3-none-any.whl
- Upload date:
- Size: 36.1 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.13.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f320ccca0bfb2037d93bcb5442d10beef1cb8c6b661f1323119e802148dc66c9
|
|
| MD5 |
295b29cc647551adccb56d43bac76316
|
|
| BLAKE2b-256 |
87fcd2ff90f60a068157e0d6b2e6010d471f6eba839d40b7bee9ab13c4ebf370
|