Skip to content

Commit 12e062a

Browse files
author
Anne Hartebrodt
committed
Merge branch 'main' of github.com:bionetslab/netmap
2 parents d1031aa + d135b54 commit 12e062a

1 file changed

Lines changed: 25 additions & 0 deletions

File tree

README.md

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1 +1,26 @@
1+
# NETMAP (single-cell gene regulatory networks using XAI)
12

3+
## Installation
4+
The repository is installable using pixi and pip. If you want to try out netmap, you can clone the repository, and install a kernel via pixi.
5+
Note: We do not include torch and cupy. These need to be installed separately when using pip, and will be installed automatically when using pixi installation
6+
7+
### Pixi installation
8+
1. Download and setup [pixi.sh](https://pixi.prefix.dev/latest/).
9+
2. Install the jupyer kernel which includes torch and cupy and netmap. You can then set pixi_netmap as a kernel in your jupyterlab, or vscode environment
10+
3. You can add extra packages using ``` pixi add my-package ``` and reinstall the kernel to add extra packages.
11+
```{bash}
12+
git clone https://github.com/bionetslab/netmap
13+
cd netmap
14+
pixi run install-kernel
15+
```
16+
17+
### pip install
18+
A local, editable install in a conda environment can be done as follows. You need to install extra denpendencies yourself e.g. torch, cupy depending on you system.
19+
20+
```{bash}
21+
git clone https://github.com/bionetslab/netmap
22+
cd netmap
23+
conda create -n netmap_env
24+
conda activate netmap_env
25+
pip install -e .
26+
```

0 commit comments

Comments
 (0)