Skip to content

Commit

Permalink
Change default parameters to better ones
Browse files Browse the repository at this point in the history
  • Loading branch information
iprada committed Aug 15, 2019
1 parent 56cac9d commit 69c10f7
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 8 deletions.
1 change: 1 addition & 0 deletions circlemap/__version__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
__version__ = '1.1.0'
16 changes: 8 additions & 8 deletions circlemap/circle_map.py
Original file line number Diff line number Diff line change
Expand Up @@ -391,8 +391,8 @@ def args_realigner(self):
default=0.99)

alignment_options.add_argument('-m', '--min_sc', type=float, metavar='',
help="Minimum soft-clipped length to attempt the realignment. Default: 6",
default=6)
help="Minimum soft-clipped length to attempt the realignment. Default: 5",
default=5)

alignment_options.add_argument('-g', '--gap_open', type=int, metavar='',
help="Gap open penalty in the position specific scoring matrix. Default: 5",
Expand Down Expand Up @@ -434,8 +434,8 @@ def args_realigner(self):
# Interval options

interval.add_argument('-f', '--merge_fraction', type=float, metavar='',
help="Merge intervals reciprocally overlapping by a fraction. Default 0.95",
default=0.95)
help="Merge intervals reciprocally overlapping by a fraction. Default 0.99",
default=0.99)

interval.add_argument('-P', '--interval_probability', type=float, metavar='',
help="Skip edges of the graph with a probability below the threshold. Default: 0.01",
Expand Down Expand Up @@ -510,8 +510,8 @@ def args_realigner(self):
default=0.99)

alignment_options.add_argument('-m', '--min_sc', type=float, metavar='',
help="Minimum soft-clipped length to attempt the realignment. Default: 6",
default=6)
help="Minimum soft-clipped length to attempt the realignment. Default: 5",
default=5)

alignment_options.add_argument('-g', '--gap_open', type=int, metavar='',
help="Gap open penalty in the position specific scoring matrix. Default: 5",
Expand Down Expand Up @@ -552,8 +552,8 @@ def args_realigner(self):
# Interval options

interval.add_argument('-f', '--merge_fraction', type=float, metavar='',
help="Merge intervals reciprocally overlapping by a fraction. Default 0.95",
default=0.95)
help="Merge intervals reciprocally overlapping by a fraction. Default 0.99",
default=0.99)

interval.add_argument('-P', '--interval_probability', type=float, metavar='',
help="Skip edges of the graph with a probability below the threshold. Default: 0.01",
Expand Down

0 comments on commit 69c10f7

Please sign in to comment.