@@ -7103,7 +7103,7 @@ def concatenate(
7103
7103
):
7104
7104
r"""
7105
7105
Concatenate a set of tree sequences to the right of this one, by repeatedly
7106
- calling { meth}` union` with an (optional)
7106
+ calling : meth:`~TreeSequence. union` with an (optional)
7107
7107
node mapping for each of the ``others``. If any node mapping is ``None``
7108
7108
only map the sample nodes between the input tree sequence and this one,
7109
7109
based on the numerical order of sample node IDs.
@@ -7117,14 +7117,14 @@ def concatenate(
7117
7117
:param Union[list, None] node_mappings: An list of node mappings for each
7118
7118
input tree sequence in ``args``. Each should either be an array of
7119
7119
integers of the same length as the number of nodes in the equivalent
7120
- input tree sequence (see :meth:`union` for details), or ``None``.
7121
- If ``None``, only sample nodes are mapped to each other.
7120
+ input tree sequence (see :meth:`~TreeSequence. union` for details), or
7121
+ ``None``. If ``None``, only sample nodes are mapped to each other.
7122
7122
Default: ``None``, treated as ``[None] * len(args)``.
7123
7123
:param bool record_provenance: If True (default), record details of this
7124
7124
call to ``concatenate`` in the returned tree sequence's provenance
7125
7125
information (Default: True).
7126
7126
:param bool add_populations: If True (default), nodes new to ``self`` will
7127
- be assigned new population IDs (see :meth:`union`)
7127
+ be assigned new population IDs (see :meth:`~TreeSequence. union`)
7128
7128
"""
7129
7129
if node_mappings is None :
7130
7130
node_mappings = [None ] * len (args )
0 commit comments