File tree Expand file tree Collapse file tree 5 files changed +13
-59
lines changed
Expand file tree Collapse file tree 5 files changed +13
-59
lines changed Original file line number Diff line number Diff line change 11# ![ ] ( figures/magnipore_logo.png )
22
3- [ ![ License: GPL v3] ( https://img.shields.io/badge/License-GPL%20v3-teal.svg )] ( https://www.gnu.org/licenses/gpl-3.0 ) ![ PyPI - Python Version] ( https://img.shields.io/pypi/pyversions/magnipore ) ![ conda] ( https://img.shields.io/badge/Uses-conda-green.svg )
4-
5- [ ![ PyPI] ( https://img.shields.io/pypi/v/magnipore ) ![ PyPI - Downloads] ( https://img.shields.io/pypi/dm/magnipore ) ![ PyPI - Status] ( https://img.shields.io/pypi/status/magnipore )] ( https://pypi.org/project/magnipore/ )
3+ [ ![ License: GPL v3] ( https://img.shields.io/badge/License-GPL%20v3-teal.svg )] ( https://www.gnu.org/licenses/gpl-3.0 ) ![ conda] ( https://img.shields.io/badge/Uses-conda-green.svg )
64
75[ ![ Conda package] ( https://anaconda.org/jannessp/magnipore/badges/version.svg )] ( https://anaconda.org/jannessp/magnipore ) ![ Conda] ( https://img.shields.io/conda/dn/jannessp/magnipore )
86[ ![ Conda package] ( https://anaconda.org/jannessp/magnipore/badges/latest_release_date.svg )] ( https://anaconda.org/jannessp/magnipore ) [ ![ Conda package] ( https://anaconda.org/jannessp/magnipore/badges/platforms.svg )] ( https://anaconda.org/jannessp/magnipore )
22206 . [ Output File Description] ( #output-file-description )
23217 . [ Error Codes Explanation] ( #error-codes-explanation )
2422___
25- ## Installation
26-
27- ### via pip
28-
29- ``` bash
30- pip install magnipore
31- ```
23+ ## Installation via Conda
3224
33- ### via Conda
3425To install Magnipore we recommend to use Conda:
3526Magnipore is available for ** linux-64 and osx-64** .
3627
Original file line number Diff line number Diff line change 1- Installation
2- ============
3-
4- via pip
5- -------
6-
7- .. code :: bash
8-
9- pip install magnipore
10-
11- via Conda
12- ---------
1+ Installation via Conda
2+ ======================
133
144To install Magnipore we recommend to use Conda: Magnipore is available
155for **linux-64 and osx-64 **.
Original file line number Diff line number Diff line change @@ -20,32 +20,17 @@ requirements:
2020 - pip
2121 run :
2222 - python
23- - h5py>=3.7
24- - biopython>=1.80
25- - mafft>=7.508
26- - matplotlib>=3.6
27- - numpy>=1.21
28- - scipy>=1.9
29- - minimap2>=2.24
30- - samtools>=1.0
31- - pandas>=1.5
32- - seaborn>=0.12
33- - psutil>=5.9
34- - hdf5>=1.12
35- - hdf5plugin>=3.3
36- - ont_vbz_hdf_plugin>=1.0
37- - pytest>=7.1
38- - gzip>=1.12
39- - f5c>=1.2
40- - read5>=1.2.0
23+ # dependencies are defined in setup.py
24+ {% for dep in data['install_requires'] %}
25+ - {{ dep.lower() }}
26+ {% endfor %}
4127
4228test :
4329 source_files :
4430 - tests
4531 requires :
4632 - pytest
4733 commands :
48- - pip install pod5 --no-warn-conflicts --no-python-version-warning
4934 - magnipore --help
5035 - nanosherlock --help
5136 - pytest -vv
5944 description : |
6045 # Magnipore
6146
62- [](https://www.gnu.org/licenses/gpl-3.0)
63-
64- [  ](https://pypi.org/project/magnipore/)
47+ [](https://www.gnu.org/licenses/gpl-3.0)
6548
6649 [](https://anaconda.org/jannessp/magnipore) 
6750 [](https://anaconda.org/jannessp/magnipore) [](https://anaconda.org/jannessp/magnipore)
@@ -80,15 +63,8 @@ about:
8063 6. [Output File Description](#output-file-description)
8164 7. [Error Codes Explanation](#error-codes-explanation)
8265 ___
83- ## Installation
84-
85- ### via pip
86-
87- ```bash
88- pip install magnipore
89- ```
66+ ## Installation via Conda
9067
91- ### via Conda
9268 To install Magnipore we recommend to use Conda:
9369 Magnipore is available for **linux-64 and osx-64**.
9470
Load Diff This file was deleted.
Original file line number Diff line number Diff line change 11from setuptools import setup
22import versioneer
33
4- # pypi dependencies
4+ # conda dependencies
55requirements = [
66 'h5py>=3.7' ,
77 'biopython>=1.80' ,
1616 'psutil>=5.9' ,
1717 'hdf5>=1.12' ,
1818 'hdf5plugin>=3.3' ,
19- 'vbz-h5py-plugin >=1.0' ,
19+ 'ont_vbz_hdf_plugin >=1.0' ,
2020 'pytest>=7.1' ,
2121 'gzip>=1.12' ,
2222 'f5c>=1.2' ,
23- 'read5>=1.2.0 '
23+ 'read5>=1.2'
2424]
2525
2626setup (
You can’t perform that action at this time.
0 commit comments