Skip to content

Commit

Permalink
code refactoring
Browse files Browse the repository at this point in the history
  • Loading branch information
pfiziev committed Apr 17, 2018
1 parent bbd4320 commit f83a3f7
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion ChromTime.py
Original file line number Diff line number Diff line change
Expand Up @@ -635,7 +635,7 @@ def determine_block_boundaries(aligned_fnames,
default='narrow',
help='punctate: equivalent to \"-b 200 --min-gap 600 --min-dynamic-prior 0.05\", '
'narrow (default): equivalent to \"-b 200 --min-gap 600 --min-dynamic-prior 0\", '
'broad: equivalent to \"-b 500 --min-gap 1500 --merge-peaks\"')
'broad: equivalent to \"-b 500 --min-gap 1500 --merge-peaks --min-dynamic-prior 0\"')

g3.add_argument("-g", "--genome", dest="genome",
help="Genome. One of: [%s] or path to a file with chromosome sizes one per line"
Expand Down Expand Up @@ -754,6 +754,7 @@ def determine_block_boundaries(aligned_fnames,
args.bin_size = 500
args.min_gap = 1500
args.merge_peaks = True
args.min_dynamic_prior = 0

elif args.mode == 'punctate':
args.bin_size = 200
Expand Down

0 comments on commit f83a3f7

Please sign in to comment.