Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,10 @@ Installation of the dependencies via mamba (conda) using the provided environmen
```
mamba env create -n tabs -f environment.yml
```
If you are only interested in using the basic TABS and nTABS functionality, you can also use the minimal environment file:
```
mamba env create -n tabs -f minimalEnvironment.yml
```
To activate the new environment and install tabs:
```
conda activate tabs
Expand Down Expand Up @@ -71,6 +75,9 @@ The complete datasets used in the study can be reproduced by going to Data/TABS
# Analysis
The analysis notebooks to reproduce the plots shown in the study can be found in Analysis/.

# Thanks
This program uses software written by other people. We thank all their authors for their contributions.

# Authors
Jessica Braun ([@brje01](https://github.com/brje01)), Djahan Lamei ([@dlamei](https://github.com/dlamei)), Greg Landrum ([@greglandrum](https://github.com/greglandrum))

Expand Down
10 changes: 10 additions & 0 deletions minimalEnvironment.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
name: tabs
channels:
- conda-forge
dependencies:
- rdkit
- scikit-learn
- jupyter
- ca-certificates
- certifi
- openssl
Loading