Skip to content

Commit

Permalink
minor
Browse files Browse the repository at this point in the history
  • Loading branch information
dmnfarrell committed May 19, 2017
1 parent ac2a058 commit 9127235
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 4 deletions.
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,8 @@

setup(
name = 'smallrnaseq',
version = '0.2.2',
description = 'Python package for micro rna-seq routines ',
version = '0.3.0',
description = 'Package for short RNA-seq analysis',
url='https://github.com/dmnfarrell/smallrnaseq',
license='GPL v3',
author = 'Damien Farrell',
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.2.2'
__version__ = '0.3.0'
4 changes: 3 additions & 1 deletion smallrnaseq/app.py
Original file line number Diff line number Diff line change
Expand Up @@ -78,6 +78,7 @@ def setup(self):
return True

def check_index(self, name):
"""check if an index present"""

fname = os.path.join(self.index_path, name+'*.ebwt')
print (fname)
Expand Down Expand Up @@ -111,6 +112,7 @@ def remove_output(self):
return

def get_aligner_params(self):
"""Get aligner parameters from current options"""

ap = self.aligner_params = {}
for i in self.libraries:
Expand Down Expand Up @@ -358,7 +360,7 @@ def print_help():
def run_test():
"""Run mirna test with test files"""

print ('running mirna counting test')
print ('running miRNA counting test')
indpath = 'testing/indexes'
aligners.BOWTIE_INDEXES = indpath
if not os.path.exists(indpath):
Expand Down

0 comments on commit 9127235

Please sign in to comment.