Skip to content

Commit

Permalink
version update
Browse files Browse the repository at this point in the history
  • Loading branch information
dmnfarrell committed Oct 23, 2020
1 parent d4d7b59 commit 21a2afd
Show file tree
Hide file tree
Showing 5 changed files with 15 additions and 3 deletions.
4 changes: 3 additions & 1 deletion doc/source/cli.rst
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,9 @@ Settings explained:
| | | indexes to map to |
+---------------+---------------------------------+-------------------+
| features | Homo_sapiens.GRCh37.75.gtf | genome annotation |
| | | file |
| | | file. ONLY needed |
| | | for counting |
| | | genomic features |
+---------------+---------------------------------+-------------------+
| output | smrna_results | output folder for |
| | | temp files |
Expand Down
4 changes: 4 additions & 0 deletions doc/source/description.rst
Original file line number Diff line number Diff line change
Expand Up @@ -84,6 +84,10 @@ Then finally run::

pip install smallrnaseq

Or for the current github version you can use::

pip install -e git+https://github.com/dmnfarrell/smallrnaseq.git#egg=smallrnaseq

Snap package
++++++++++++

Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@

setup(
name = 'smallrnaseq',
version = '0.5.0',
version = '0.6.0',
description = 'Package for short RNA-seq analysis',
long_description = 'smallrnaseq is a Python package for processing of small RNA seq data.',
url='https://github.com/dmnfarrell/smallrnaseq',
Expand Down
2 changes: 1 addition & 1 deletion smallrnaseq/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
from .base import *
from .utils import *
#from analysis import *
__version__ = '0.5.0'
__version__ = '0.6.0'
6 changes: 6 additions & 0 deletions smallrnaseq/app.py
Original file line number Diff line number Diff line change
Expand Up @@ -511,6 +511,9 @@ def main():
default=False, help="run DE analysis")
parser.add_option("-t", "--tests", dest="tests", action="store_true",
default=False, help="run tests")
parser.add_option("-v", "--version", dest="version", action="store_true",
help="Get version")

opts, remainder = parser.parse_args()

if opts.infile != None:
Expand Down Expand Up @@ -545,6 +548,9 @@ def main():
print_help()
elif opts.tests == True:
test_run()
elif opts.version == True:
from . import __version__
print ('smallrnaseq version %s' %__version__)
else:
if opts.config != None:
conffile = opts.config
Expand Down

0 comments on commit 21a2afd

Please sign in to comment.