replacement_scan ================ Slide a window across the sequence and, at each position, replace the window with every sequence drawn from ``replacement_pool``. The output length equals the background sequence length. .. code-block:: python import poolparty as pp pp.init() ---- Parameters ---------- .. list-table:: :header-rows: 1 :widths: auto * - Parameter - Type - Default - Description * - ``pool`` - ``Pool | str`` - *(required)* - The background Pool or sequence string that is scanned. * - ``replacement_pool`` - ``Pool | str`` - *(required)* - Pool supplying replacement content. Each of this pool's sequences is substituted into the window at every scanned position. The pool's ``seq_length`` determines the window width. * - ``positions`` - ``list[int] | None`` - ``None`` - Explicit list of window start positions. ``None`` = all valid positions. * - ``region`` - ``str | None`` - ``None`` - Name of a tagged region to restrict the scan to. Positions outside the region are never modified. * - ``style`` - ``str | None`` - ``None`` - Style to apply to inserted content. * - ``mode`` - ``str`` - ``'random'`` - ``'sequential'`` iterates positions then replacements in order; ``'random'`` shuffles the (position × replacement) product. * - ``num_states`` - ``int | None`` - ``None`` - Fix the total number of output states. * - ``prefix`` - ``str | None`` - ``None`` - Prefix for auto-generated sequence names. * - ``prefix_position`` - ``str | None`` - ``None`` - Prefix for position index (e.g., 'pos_' produces 'pos_0', 'pos_1', ...). * - ``prefix_insert`` - ``str | None`` - ``None`` - Prefix for insert index (e.g., 'ins_' produces 'ins_0', 'ins_1', ...). * - ``iter_order`` - ``int | None`` - ``None`` - Dimension-name ordering for downstream multi-pool iteration. ---- .. note:: Only the most commonly used parameters are shown above. For the full parameter list, see :func:`~poolparty.replacement_scan` in the :doc:`API Reference `. Examples -------- Single-base replacement at every position ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ Replace each base with every member of a four-base pool — 8 positions × 4 substitutions = 32 sequences. .. code-block:: python import poolparty as pp pp.init() wt = pp.from_seq("ACGTACGT") alt = pp.from_seqs(["A", "C", "G", "T"], mode="sequential") scan = wt.replacement_scan(replacement_pool=alt, mode="sequential", style="red") scan.print_library() .. raw:: html