https://github.com/elevans/ast
Research notes for the antimicrobial susceptibility testing (AST) project.
https://github.com/elevans/ast
Last synced: about 1 year ago
JSON representation
Research notes for the antimicrobial susceptibility testing (AST) project.
- Host: GitHub
- URL: https://github.com/elevans/ast
- Owner: elevans
- License: unlicense
- Created: 2025-01-23T00:38:41.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2025-04-09T19:52:42.000Z (about 1 year ago)
- Last Synced: 2025-04-09T20:42:10.834Z (about 1 year ago)
- Language: Python
- Size: 3.91 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# ast
Research notes for the antimicrobial susceptibility testing (AST) project.
## Building the docs
This research notebook is built on the [`sphinx`](https://www.sphinx-doc.org/en/master/) documentation generator. While you can read the `.rst` files directly (they are human readable), building
the research docs with `sphinx` makes them easy to read and searchable. To build this repository follow the instructions below:
1. Build the `conda` or `mamba` documentation environment.
```bash
$ mamba env create -f environment.yml
```
2. Activate the `ast` environment.
```bash
$ mamba activate ast
```
3. Build the docs.
```bash
$ cd docs/
$ make clean html
```
4. Open the `_build/html/index.html` file with any web browser.