Metadata-Version: 2.1
Name: biobricks
Version: 0.3.5
Summary: Biobricks automates bioinformatics data.
Project-URL: Documentation, https://docs.biobricks.ai
Project-URL: Bug Tracker, https://github.com/biobricks-ai/biobricks/issues
Author-email: Thomas Luechtefeld <tom@insilica.co>, "Jose A. Jaramillo" <jjv@utp.edu.co>
License-File: LICENSE
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3
Requires-Python: >=3.7
Requires-Dist: click>=8.1.3
Requires-Dist: cloup>=3.0.0
Requires-Dist: pyyaml>=6.0.1
Requires-Dist: requests>=2.0.0
Requires-Dist: tqdm>=4.0.0
Description-Content-Type: text/markdown

# BioBricks
<!-- badges: start -->
[![codecov](https://codecov.io/gh/biobricks-ai/biobricks/branch/master/graph/badge.svg?token=J041MF0JKG)](https://codecov.io/gh/biobricks-ai/biobricks)
<!-- badges: end -->

BioBricks makes loading data from biological datasets easy.

```bash
pipx install biobricks
```

# initialize
To get started configure biobricks with a path for bricks and a biobricks.ai token:
```
biobricks configure
> Choose path to store bricks: <input a local path>
> Input a token from biobricks.ai/token: <this is your access token>
```

# Install and Use Bricks

To install a brick the command line command:
```sh
> biobricks install tox21
```

You can then use the brick in python as below:
```python
import biobricks as bb
bb.assets('tox21') # get the paths for the 'tox21' brick
```

To list the bricks currently available visit [status.biobricks.ai](https://status.biobricks.ai)
