-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Clémence Réda
committed
May 16, 2024
1 parent
3918671
commit 8bc3729
Showing
4 changed files
with
3,605 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
# NORDic (Boolean network; end-to-end inference) | ||
|
||
Note that NORDic relies on [BoneSiS](https://github.com/bioasp/bonesis) for the inference of Boolean networks. In those synthetic examples, we consider the Boolean trajectories, an appropriate prior knowledge network (or the complete undirected unsigned graph if we have no biological information), and then run the inference + model selection pipeline to get a single model. Note that NORDic can only consider an initial and final (steady) states (no intermediary ones) and a single gene perturbation at a time. Then, some (parts) of the Boolean trajectories are actually ignored in these notebooks. | ||
|
||
## Installation | ||
|
||
```bash | ||
## create virtual env | ||
conda create -n nordic_env python=3.8 -y | ||
conda activate nordic_env | ||
|
||
python3 -m pip install nordic jupyter | ||
|
||
## clean up (if needed) | ||
python3 -m pip cache purge | ||
conda clean -a -y | ||
``` | ||
|
||
## Launch notebook(s) | ||
|
||
```bash | ||
conda activate nordic_env | ||
jupyter notebook toy_star_1.ipynb | ||
jupyter notebook toy_reprogramming_1.ipynb | ||
jupyter notebook synthetic_random_diff3-1.ipynb | ||
``` |
Oops, something went wrong.