@@ -7199,7 +7199,7 @@ def concatenate(
71997199 ):
72007200 r"""
72017201 Concatenate a set of tree sequences to the right of this one, by repeatedly
7202- calling :meth:`~TreeSequence. union` with an (optional)
7202+ calling :meth:`union` with an (optional)
72037203 node mapping for each of the ``others``. If any node mapping is ``None``
72047204 only map the sample nodes between the input tree sequence and this one,
72057205 based on the numerical order of sample node IDs.
@@ -7213,14 +7213,14 @@ def concatenate(
72137213 :param Union[list, None] node_mappings: An list of node mappings for each
72147214 input tree sequence in ``args``. Each should either be an array of
72157215 integers of the same length as the number of nodes in the equivalent
7216- input tree sequence (see :meth:`~TreeSequence. union` for details), or
7216+ input tree sequence (see :meth:`union` for details), or
72177217 ``None``. If ``None``, only sample nodes are mapped to each other.
72187218 Default: ``None``, treated as ``[None] * len(args)``.
72197219 :param bool record_provenance: If True (default), record details of this
72207220 call to ``concatenate`` in the returned tree sequence's provenance
72217221 information (Default: True).
72227222 :param bool add_populations: If True (default), nodes new to ``self`` will
7223- be assigned new population IDs (see :meth:`~TreeSequence. union`)
7223+ be assigned new population IDs (see :meth:`union`).
72247224 """
72257225 if node_mappings is None :
72267226 node_mappings = [None ] * len (args )
0 commit comments