Skip to content
Snippets Groups Projects
Commit 782145f7 authored by Martin Larralde's avatar Martin Larralde
Browse files

Release v0.1.0

parent e2c35832
No related branches found
Tags v0.1.0
No related merge requests found
name: Package
on:
- push
# push:
# tags:
# - v*.*.*
push:
tags:
- v*.*.*
jobs:
......@@ -121,7 +120,6 @@ jobs:
- 3.7
- 3.8
- 3.9
- pypy-3.6
- pypy-3.7
steps:
- name: Setup Python ${{ matrix.python-version }}
......
......@@ -6,6 +6,10 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
## [Unreleased]
[Unreleased]: https://github.com/althonos/pyrodigal/compare/4bd3017...HEAD
[Unreleased]: https://github.com/althonos/pyrodigal/compare/v0.1.0...HEAD
## [v0.1.0] - 2021-06-13
[v0.1.0]: https://github.com/althonos/pyrodigal/compare/4bd3017...v0.1.0
Initial release.
......@@ -52,7 +52,7 @@ pyFastANI can be installed directly from [PyPI](https://pypi.org/project/pyfasta
which hosts some pre-built CPython wheels for x86-64 Unix platforms, as well
as the code required to compile from source with Cython:
```console
$ pip install pyrodigal
$ pip install pyfastani
```
Note that in the event you compile from source, you will need to have the
......@@ -72,7 +72,7 @@ affect the `name` attribute of the hits returned for a query.*
Biopython does not let us access to the sequence directly, so we need to
convert it to bytes first with the `bytes` builtin function. For older
versions of Biopython (earlier than 1.79), use `record.seq.encode()`
instead of `bytes(record.seq).`
instead of `bytes(record.seq)`.
```python
import pyfastani
......
......@@ -15,7 +15,7 @@ license = MIT
platform = posix
keywords = bioinformatics, genomics, average, nucleotide, identity
classifier =
Development Status :: 3 - Alpha
Development Status :: 4 - Beta
Intended Audience :: Developers
Intended Audience :: Science/Research
License :: OSI Approved :: MIT License
......@@ -30,15 +30,12 @@ classifier =
Programming Language :: Python :: Implementation :: PyPy
Topic :: Scientific/Engineering :: Bio-Informatics
Topic :: Scientific/Engineering :: Medical Science Apps.
Typing :: Typed
project_urls =
Documentation = https://pyfastani.readthedocs.io/en/stable/
Bug Tracker = https://github.com/althonos/pyFastANI/issues
Changelog = https://github.com/althonos/pyFastANI/blob/master/CHANGELOG.md
Coverage = https://codecov.io/gh/althonos/pyFastANI/
Builds = https://github.com/althonos/pyFastANI/actions/
Zenodo = https://doi.org/10.5281/zenodo.4270012
PyPI = https://pypi.org/project/pyFastANI
Bug Tracker = https://github.com/althonos/pyfastani/issues
Changelog = https://github.com/althonos/pyfastani/blob/master/CHANGELOG.md
Coverage = https://codecov.io/gh/althonos/pyfastani/
Builds = https://github.com/althonos/pyfastani/actions/
PyPI = https://pypi.org/project/pyfastani
[options]
zip_safe = false
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment