Skip to content

Commit

Permalink
update README and wlen in CLI
Browse files Browse the repository at this point in the history
  • Loading branch information
maxibor committed May 19, 2020
1 parent 273296c commit 1c3bb24
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 6 deletions.
9 changes: 4 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# [![pydamage logo](docs/img/logo.png)](https://github.com/maxibor/pydamage)
# [![pydamage logo](https://github.com/maxibor/pydamage/raw/master/docs/img/logo.png)](https://github.com/maxibor/pydamage)

[![pydamage CI](https://github.com/maxibor/pydamage/workflows/pydamage_ci/badge.svg)](https://github.com/maxibor/pydamage/actions) [![Documentation Status](https://readthedocs.org/projects/pydamage/badge/?version=latest)](https://pydamage.readthedocs.io/en/latest/?badge=latest)

Expand Down Expand Up @@ -39,13 +39,12 @@ Usage: pydamage [OPTIONS] BAM

Options:
--version Show the version and exit.
-w, --wlen INTEGER Window length for damage modeling [default: 20]
-w, --wlen INTEGER Window length for damage modeling [default: 35]
-p, --process INTEGER Number of processes [default: 2]
-m, --mini INTEGER Minimum reads aligned to consider reference
[default: 2000]
[default: 1000]

-c, --cov FLOAT Minimum coverage to consider reference [default:
0.5]
-c, --cov FLOAT Minimum coverage to consider reference [default:8]

-s, --show_al Show alignments representations
-pl, --plot Make the damage plots
Expand Down
2 changes: 1 addition & 1 deletion pydamage/cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
@click.argument('bam', type=click.Path(exists=True))
@click.option('-w',
'--wlen',
default=20,
default=35,
type=int,
show_default=True,
help='Window length for damage modeling')
Expand Down

0 comments on commit 1c3bb24

Please sign in to comment.