Metadata-Version: 2.1
Name: bamread
Version: 0.0.16
Summary: Read bam files quickly into dataframes in Python
Author-email: Endre Bakken Stovner <endbak@pm.me>
License: MIT
Project-URL: Homepage, http://github.com/pyranges/bamread
Keywords: bioinformatics,bam,pysam
Classifier: Programming Language :: Python :: 3
Classifier: Development Status :: 4 - Beta
Classifier: Environment :: Other Environment
Classifier: Intended Audience :: Developers
Classifier: Intended Audience :: Science/Research
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: POSIX :: Linux
Classifier: Operating System :: MacOS :: MacOS X
Classifier: Topic :: Scientific/Engineering
Description-Content-Type: text/markdown
Provides-Extra: dev

# bamread

Read bam files quickly into dataframes in Python

## Development

### Development

See [How to Publish an Open-Source Python Package to PyPI](https://realpython.com/pypi-publish-python-package/)

Install

```bash
pip install -e .  # -e flag means editing affects the installed package
```

Create sdist and wheel (requires [build](https://pypa-build.readthedocs.io/en/stable/))

```bash
python -m build
```

Check whether the package archives look fine:

```bash
twine check dist/*
```

Upload to PyPI test server

```bash
twine upload -r testpypi dist/*
```

Chek that the package can be installed from the test server

```bash
python -m pip install -i https://test.pypi.org/simple bamread
python -c "import bamread; print(bamread.read_bam('Some.bam'))"
```

Upload to pypi

```bash
twine upload -r testpypi dist/*
```
