Skip to content

Commit

Permalink
minor
Browse files Browse the repository at this point in the history
  • Loading branch information
dmnfarrell committed May 8, 2017
1 parent 08090cb commit c7bc046
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions smallrnaseq/aligners.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,7 @@

BOWTIE_INDEXES = None
BOWTIE_PARAMS = '-v 1 --best'
BOWTIE_MIRBASE_PARAMS = '-v 1 -a --best --strata --norc'
SUBREAD_INDEXES = None
SUBREAD_PARAMS = '-m 2 -M 1'

Expand Down
4 changes: 2 additions & 2 deletions smallrnaseq/config.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@

path = os.path.dirname(os.path.abspath(__file__))
datadir = os.path.join(path, 'data')

from . import aligners

baseoptions = {'base': [('filenames',''),('path',''),('overwrite',0),
#('adapter',''),
Expand All @@ -42,7 +42,7 @@
('aligner','bowtie'),
('mirna',0),('species','hsa'),('pad5',3),('pad3',5)],
'aligner': [('default_params','-v 1 --best'),
('mirna_params','-n 1 -l 20')],
('mirna_params',aligners.BOWTIE_MIRBASE_PARAMS)],
'novel': [('score_cutoff',.7), ('read_cutoff',100),
('strict',0)],
'de': [('sample_labels',''),('sep',','),
Expand Down

0 comments on commit c7bc046

Please sign in to comment.