Skip to content

Commit

Permalink
Merge branch 'master' into ci
Browse files Browse the repository at this point in the history
  • Loading branch information
kedhammar authored Jan 11, 2024
2 parents 2547706 + 1cf4aa8 commit 242ac24
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 29 deletions.
15 changes: 0 additions & 15 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,21 +15,6 @@ For more information on how this can be used, please see this [poster](docs/AGBT

## Installation

### Requirements

- Python3 (3.7)

Python modules:

- biopython v. 1.70
- python-levenshtein v. 0.12.0
- numpy v. 1.19.2
- pyyaml v. 6.0

Software:

- minimap2 v. 2.20

### From PyPi

```
Expand Down
2 changes: 1 addition & 1 deletion environment.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,6 @@ channels:
dependencies:
- conda-forge::biopython=1.79
- conda-forge::python-levenshtein=0.23.0
- conda-forge::numpy=1.22.0
- conda-forge::numpy>=1.22.0
- bioconda::minimap2=2.20
- conda-forge::pyyaml=6.0
26 changes: 13 additions & 13 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,26 +17,26 @@
this_directory = Path(__file__).parent
long_description = (this_directory / "README.md").read_text()

version = "0.6.0"
version='0.6.1-dev'

setup(
name="bio-anglerfish",
version=version,
description="Anglerfish, a tool to demultiplex Illumina libraries from ONT data",
long_description=long_description,
long_description_content_type="text/markdown",
author="Remi-Andre Olsen",
author_email="[email protected]",
url="https://github.com/remiolsen/anglerfish",
license="MIT",
python_requires=">=3.7",
packages=find_packages(),
package_data={"": ["config/adaptors.yaml"]},
long_description_content_type='text/markdown',
author='Remi-Andre Olsen',
author_email='[email protected]',
url='https://github.com/remiolsen/anglerfish',
license='MIT',
python_requires=">=3.10",
packages = find_packages(),
package_data = {"":["config/adaptors.yaml"]},
install_requires=[
"python-levenshtein==0.23.0",
"biopython==1.79",
"numpy==1.22.0",
"pyyaml==6.0",
'python-levenshtein==0.23.0',
'biopython==1.79',
'numpy>=1.22.0',
'pyyaml==6.0'
],
entry_points={
"console_scripts": [
Expand Down

0 comments on commit 242ac24

Please sign in to comment.