https://github.com/MDverse/mdda
Revision 0ceae9c8b02fd1598e2026652bd9bebec482a3f2 authored by Pierre Poulain on 08 March 2023, 10:39:32 UTC, committed by Pierre Poulain on 08 March 2023, 10:39:32 UTC
1 parent 3744a51
Tip revision: 0ceae9c8b02fd1598e2026652bd9bebec482a3f2 authored by Pierre Poulain on 08 March 2023, 10:39:32 UTC
Update notebooks
Update notebooks
Tip revision: 0ceae9c
README.md
# Molecular dynamics data analysis
## Setup your environment
Clone the repository:
```bash
git clone https://github.com/MDverse/mdda.git
```
Move to the new directory:
```bash
cd mdda
```
Install [miniconda](https://docs.conda.io/en/latest/miniconda.html).
Install [mamba](https://github.com/mamba-org/mamba):
```bash
conda install mamba -n base -c conda-forge
```
Create the `mdda` conda environment:
```
mamba env create -f binder/environment.yml
```
Load the `mdda` conda environment:
```
conda activate mdda
```
Note: you can also update the conda environment with:
```bash
mamba env update -f binder/environment.yml
```
To deactivate an active environment, use
```
conda deactivate
```
## Get data
Data files should be located in the `data` directory and comply with the [data model](https://github.com/MDverse/mdws/blob/main/docs/data_model.md).
## Analyse data
Use this script to run all Jupyter notebooks in batch mode:
```bash
bash make_results.sh
```

Computing file changes ...