Skip to content

Commit

Permalink
docs: update convert_coordinate examples (#24)
Browse files Browse the repository at this point in the history
  • Loading branch information
korikuzma authored Feb 1, 2024
1 parent b1b3434 commit af8197a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ Call ``convert_coordinate()``:

```python3
c.convert_coordinate("chr7", 140453136, "+")
# [['chr7', '140152936', '+']]
# [['chr7', 140152936, '+']]
```

## Development
Expand Down
2 changes: 1 addition & 1 deletion src/agct/converter.py
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ def convert_coordinate(
c = Converter("hg19", "hg38")
c.convert_coordinate("chr7", 140453136, Strand.POSITIVE)
# returns [['chr7', '140753336', '+']]
# returns [['chr7', 140753336, '+']]
:param chrom: chromosome name as given in chainfile. Usually e.g. ``"chr7"``.
Expand Down

0 comments on commit af8197a

Please sign in to comment.