Skip to content

Commit

Permalink
add MANIFEST.in, Merge branch 'release/0.1.2'
Browse files Browse the repository at this point in the history
  • Loading branch information
PengNi committed Jan 15, 2019
2 parents 21420ce + 6724780 commit 7dcebae
Show file tree
Hide file tree
Showing 7 changed files with 29 additions and 4 deletions.
1 change: 1 addition & 0 deletions MANIFEST.in
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
include deepsignal/utils/*
7 changes: 6 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,12 +30,17 @@ conda activate deepsignalenv
The virtual environment can also be created by using [*virtualenv*](https://github.com/pypa/virtualenv/).

#### Install deepsignal
After creating the environment, download and install deepsignl from github:
After creating the environment, download and install the **lastest** deepsignl from github:
```bash
git clone https://github.com/bioinfomaticsCSU/deepsignal.git
cd deepsignal
python setup.py install
```
or install deepsignal using *pip*:
```bash
pip install deepsignal
```

[tombo](https://github.com/nanoporetech/tombo) is required to be installed in the same environment:
```bash
# install using conda
Expand Down
15 changes: 15 additions & 0 deletions README.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
deepsignal
==========


Documentation
-------------


v0.1.2
-------------
add MANIFEST.in file

v0.1.1
-------------
3 modules (extract, call_mods, train) supported
2 changes: 1 addition & 1 deletion deepsignal/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@
DNA methylation state from Nanopore reads."""


__version__ = '0.1.1'
__version__ = '0.1.2'
3 changes: 2 additions & 1 deletion deepsignal/deepsignal.py
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,8 @@ def main_train(args):


def main():
parser = argparse.ArgumentParser(description="detecting base modifications from Nanopore sequencing reads, "
parser = argparse.ArgumentParser(prog='deepsignal',
description="detecting base modifications from Nanopore sequencing reads, "
"deepsignal contains three modules: \n"
"\t%(prog)s extract: extract features from corrected (tombo) "
"fast5s for training or testing\n"
Expand Down
2 changes: 2 additions & 0 deletions setup.cfg
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
[metadata]
description-file = README.md
3 changes: 2 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,7 @@ def run_tests(self):
keywords=['methylation', 'nanopore', 'neural network'],
version=find_version('deepsignal', '__init__.py'),
url='https://github.com/bioinfomaticsCSU/deepsignal',
download_url='https://github.com/bioinfomaticsCSU/deepsignal/archive/v0.1.1.tar.gz',
license='GNU General Public License v3 (GPLv3)',
author='Peng Ni, Neng Huang',
# tests_require=['pytest'],
Expand All @@ -66,7 +67,7 @@ def run_tests(self):
# test_suite='test',
zip_safe=False,
include_package_data=True,
package_data={'deepsignal': ['utils/*']},
# package_data={'deepsignal': ['utils/*']},
classifiers=[
'Programming Language :: Python :: 3',
'Development Status :: 4 - Beta',
Expand Down

0 comments on commit 7dcebae

Please sign in to comment.