diff --git a/NEWS.md b/NEWS.md index 838ecbd..b7f4c76 100644 --- a/NEWS.md +++ b/NEWS.md @@ -4,7 +4,7 @@ stepRNA is available for download at: - PyPI: [https://pypi.org/project/stepRNA/](https://pypi.org/project/stepRNA/) - Github: [https://github.com/bmm514/stepRNA/releases](https://github.com/bmm514/stepRNA/releases) -v1.b0 is the first version released to the public, v1.0.1 is the latest version. +v1.b0 is the first version released to the public, v1.0.2 is the latest version. stepRNA is licensed under the MIT license. See [LICENSE](https://github.com/bmm514/stepRNA/blob/master/LICENSE) file for details. @@ -17,6 +17,11 @@ Please report any issues to the stepRNA GitHub page or via email: ## Version Release History +**Version 1.0.2 - 4 Mar, 2021** + +- Fixing upload issue from v1.0.1 +- Full manual still to be added + **Version 1.0.1 - 4 Mar, 2021** - Fixing a probelm with underhang length calculation diff --git a/README.md b/README.md index 2c339bc..aa9f073 100644 --- a/README.md +++ b/README.md @@ -100,10 +100,10 @@ See the [MANUAL](URL_LINK) for more information Latest release notes: -**Version 1.0.1 - 4 Mar, 2021** +**Version 1.0.2 - 4 Mar, 2021** -- Fixing a probelm with underhang length calculation -- Full Manual still to be added +- Fixing upload issue from v1.0.1 +- Full manual still to be added See [NEWS](https://github.com/bmm514/stepRNA/blob/master/NEWS.md) for historical updates of release notes @@ -115,7 +115,7 @@ stepRNA is licensed under the MIT license. See [LICENSE](https://github.com/bmm For more information: - Go to [FAQs](https://github.com/bmm514/stepRNA/blob/master/FAQs.md) to see commonly asked quesitons -- Loo at the [USER MANUAL](URL_LINK) to see detailed instructions and all of the available options +- Look at the [USER MANUAL](URL_LINK) to see detailed instructions and all of the available options If you use stepRNA in your work please cite: diff --git a/bin/stepRNA b/bin/stepRNA index 8cd3f40..c3768e7 100644 --- a/bin/stepRNA +++ b/bin/stepRNA @@ -58,7 +58,7 @@ optional.add_argument('-d', '--directory', default = os.curdir, help='Directory optional.add_argument('-m', '--min_score', default=-1, type=int, help='Minimum score to accept. Default is the shortest read length') flags.add_argument('-e', '--remove_exact', action='store_true', help='Remove exact read matches to the reference sequence') flags.add_argument('-u', '--make_unique', action='store_true', help='Make FASTA headers unique in reference and reads i.e. >Ref_1 and >Read_1') -flags.add_argument('-V', '--version', action='version', version='stepRNA v1.0.1', help='Print version number then exit.') +flags.add_argument('-V', '--version', action='version', version='stepRNA v1.0.2', help='Print version number then exit.') args = parser.parse_args() diff --git a/setup.py b/setup.py index b0a9f3e..828df31 100644 --- a/setup.py +++ b/setup.py @@ -4,7 +4,7 @@ long_description = fh.read() setuptools.setup(name='stepRNA', - version='1.0.1', + version='1.0.2', author='Ben Murcott', author_email='bmm41@bath.ac.uk', description='Align short RNA seqeuncing reads to determine the length of of overhang.',