Skip to content

Commit 49e42e7

Browse files
authored
docs: fix utr class name (#200)
1 parent 022a3c8 commit 49e42e7

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

genome_kit/genome.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -277,7 +277,7 @@ def utr5s(self): # pragma: no cover
277277
:py:class:`~genome_kit.Utr5Table`
278278
An object that supports looping or queries over annotated coding sequences.
279279
"""
280-
return mock_result(_ga.Utr5Table)
280+
return mock_result(_ga.UtrTable)
281281

282282
@mock
283283
@property
@@ -291,7 +291,7 @@ def utr3s(self): # pragma: no cover
291291
:py:class:`~genome_kit.Utr3Table`
292292
An object that supports looping or queries over annotated coding sequences.
293293
"""
294-
return mock_result(_ga.Utr3Table)
294+
return mock_result(_ga.UtrTable)
295295

296296
def find_motif(self, interval, motif, match_position=0, find_overlapping_motifs=False):
297297
"""Find a genomic motif in an interval on a :py:class:`~genome_kit.Genome`.

genome_kit/genome_annotation.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -913,7 +913,7 @@ def utr5(self): # pragma: no cover
913913
914914
Returns
915915
-------
916-
:py:class:`~genome_kit.Utr5` | :py:data:`None`
916+
:py:class:`~genome_kit.Utr` | :py:data:`None`
917917
The UTR5 contained within this exon, if any.
918918
"""
919919
return mock_result(Utr)
@@ -925,7 +925,7 @@ def utr3(self): # pragma: no cover
925925
926926
Returns
927927
-------
928-
:py:class:`~genome_kit.Utr3` | :py:data:`None`
928+
:py:class:`~genome_kit.Utr` | :py:data:`None`
929929
The UTR3 contained within this exon, if any.
930930
"""
931931
return mock_result(Utr)

0 commit comments

Comments
 (0)