Skip to content

Commit

Permalink
Fix broken doc links
Browse files Browse the repository at this point in the history
  • Loading branch information
benmwebb committed Apr 19, 2024
1 parent c065c3d commit a22fa5f
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion modelcif/reference.py
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ class CustomRef(TargetReference):
sequence.
:param str sequence: The complete database sequence, as a string of
one-letter codes. If omitted, will default to the canonical
sequence of the associated :class:`Entity`.
sequence of the associated :class:`~modelcif.Entity`.
:param str details: Longer text describing the sequence.
"""

Expand Down Expand Up @@ -68,6 +68,10 @@ def __init__(self, code, accession, align_begin=None, align_end=None,
warnings.warn(
"No sequence provided. The canonical sequence of the Entity "
"will be used instead.", stacklevel=2)
#: All alignments between the reference and entity sequences, as
#: :class:`Alignment` objects. If none are provided, a simple 1:1
#: alignment is assumed.
self.alignments = []

code = property(lambda self: self.db_code)

Expand Down

0 comments on commit a22fa5f

Please sign in to comment.