> ## Documentation Index
> Fetch the complete documentation index at: https://proto.evodesign.org/docs/llms.txt
> Use this file to discover all available pages before exploring further.

# Protein Repetitiveness

> Evaluate protein sequence repetitiveness based on k-mer analysis

<div class="page-hero">
  <img class="page-hero-banner" src="https://proto-bio.github.io/proto-assets/images/constraint/protein-repetitiveness/hero.png" alt="Protein Repetitiveness" />
</div>

<p class="entity-disclaimer">This constraint is open source. Any third-party models, product names, or trademarks referenced are the property of their respective owners, and Proto is not affiliated with them.</p>

<hr class="entity-rule" />

<div class="tool-tab-bar entity-source-bar"><span class="tool-tab-wrap"><span class="tool-tab badge-source entity-source-tab"><svg width="14" height="14" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><polyline points="16 18 22 12 16 6" /><polyline points="8 6 2 12 8 18" /></svg> Source</span></span></div>

<a href="https://github.com/evo-design/proto-language/blob/d3b7822f74ea64747cc751a3b2ab1aa6b799ac47/proto_language/constraint/protein_quality/protein_repetitiveness_constraint.py#L68" target="_blank" class="tab-panel source-panel entity-source-panel">
  <div class="source-info">
    <img noZoom src="https://github.com/evo-design.png?size=40" class="source-avatar" width="36" height="36" />

    <span class="source-path">evo-design/proto-language<span class="source-subpath">/proto\_language/constraint/protein\_quality/protein\_repetitiveness\_constraint.py</span></span>
  </div>

  <span class="panel-goto-btn source-goto-btn"><span><svg width="14" height="14" viewBox="0 0 24 24" fill="currentColor"><path d="M12 0C5.37 0 0 5.37 0 12c0 5.31 3.435 9.795 8.205 11.385.6.105.825-.255.825-.57 0-.285-.015-1.23-.015-2.235-3.015.555-3.795-.735-4.035-1.41-.135-.345-.72-1.41-1.23-1.695-.42-.225-1.02-.78-.015-.795.945-.015 1.62.87 1.845 1.23 1.08 1.815 2.805 1.305 3.495.99.105-.78.42-1.305.765-1.605-2.67-.3-5.46-1.335-5.46-5.925 0-1.305.465-2.385 1.23-3.225-.12-.3-.54-1.53.12-3.18 0 0 1.005-.315 3.3 1.23.96-.27 1.98-.405 3-.405s2.04.135 3 .405c2.295-1.56 3.3-1.23 3.3-1.23.66 1.65.24 2.88.12 3.18.765.84 1.23 1.905 1.23 3.225 0 4.605-2.805 5.625-5.475 5.925.435.375.81 1.095.81 2.22 0 1.605-.015 2.895-.015 3.3 0 .315.225.69.825.57A12.02 12.02 0 0024 12c0-6.63-5.37-12-12-12z" /></svg> View source</span></span>
</a>

<div class="entity-contributors"><span class="entity-contributors-label">Constraint contributors</span><span class="entity-contributors-people"><a class="entity-contributor" href="https://github.com/dguo8412" target="_blank" rel="noopener" title="dguo8412: 5 commits"><img noZoom class="entity-contributor-avatar" src="https://avatars.githubusercontent.com/u/46211285?v=4&s=64" alt="" loading="lazy" /><span class="entity-contributor-login">dguo8412</span></a></span></div>
Evaluate protein sequence repetitiveness based on k-mer frequency analysis.

This constraint function analyzes protein sequences for repetitive content by
examining k-mer frequencies. It identifies sequences with excessive repetitive motifs,
which may indicate low-complexity regions or non-functional proteins. The analysis
scans multiple k-mer lengths to detect both short tandem repeats and larger sequence
duplications. The repetitiveness score represents the maximum fraction of the sequence
covered by any repeated k-mer. For example, if "SSS" appears 8 times in a
60-amino-acid sequence, the repetitiveness for 3-mers is (8 \* 3) / 60 = 0.4
(40% of sequence).

## API Reference

<div class="api-model-section api-model-static api-config-section">
  <div class="api-model-header"><span class="api-model-badge api-config-badge">Config</span><span class="api-model-name">ProteinRepetitivenessConfig</span><a href="https://github.com/evo-design/proto-language/blob/d3b7822f74ea64747cc751a3b2ab1aa6b799ac47/proto_language/constraint/protein_quality/protein_repetitiveness_constraint.py#L13" target="_blank" class="func-table-btn func-source-btn api-model-source"><svg width="12" height="12" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><polyline points="16 18 22 12 16 6" /><polyline points="8 6 2 12 8 18" /></svg> Source</a></div>

  Configuration for protein repetitiveness constraint.

  This class defines configuration parameters for evaluating repetitive content
  in protein sequences using k-mer frequency analysis. The constraint detects
  and penalizes sequences with excessive tandem repeats or repetitive motifs,
  which may indicate low-complexity regions or non-functional proteins. The
  repetitiveness score is calculated as the maximum fraction of the sequence
  covered by any repeated k-mer. For example, if "AAA" appears 10 times in a
  100-amino-acid sequence, the repetitiveness for 3-mers is (10 \* 3) / 100 = 0.3
  (30% of sequence).

  <ParamField path="max_repetitiveness" type="number" default="0.1">
    Maximum acceptable repetitiveness fraction (fraction of sequence covered by repeated k-mers)
  </ParamField>

  <ParamField path="min_repeat_length" type="integer" default="1">
    Smallest k-mer length treated as a repeat; the scan continues up to this length plus 6.
  </ParamField>
</div>

<div class="api-model-section api-model-static api-output-section">
  <div class="api-model-header"><span class="api-model-badge api-output-badge">Returns</span><span class="api-model-name">ConstraintOutput</span></div>

  One result per sequence. A score of 0.0 indicates
  acceptable repetitiveness (at or below threshold) and higher values
  indicate excessive repetitive content. Penalties scale linearly with
  excess repetitiveness: if max is 0.4 and actual is 0.6, the excess
  (0.2) is normalized by the remaining range (1.0 - 0.4 = 0.6), giving
  a score of 0.33. `metadata` carries:

  * `repetitiveness_score`: Float repetitiveness score (0.0-1.0)
    representing the maximum fraction of sequence covered by repeated k-mers
  * `max_repetitive_fraction`: Float identical to `repetitiveness_score`
</div>

## Usage

Evaluating repetitiveness with default settings:

```python python icon="python" theme={null}
>>> from proto_language.core import Sequence, SequenceType
>>> config = ProteinRepetitivenessConfig(max_repetitiveness=0.4, min_repeat_length=3)
>>> seq = Sequence("MVLSPADKTNVKAAWGKVGAHAGEYGAEALERMFLSF", "protein")
>>> results = protein_repetitiveness_constraint([(seq,)], config)
>>> print(results[0].score)  # 0.0 if repetitiveness < 40%
>>> print(results[0].metadata["repetitiveness_score"])  # e.g., 0.15
```

## Metadata

| Property        | Value                               |
| --------------- | ----------------------------------- |
| Key             | `protein-repetitiveness`            |
| Function        | `protein_repetitiveness_constraint` |
| Category        | `protein_quality`                   |
| Mode            | `discrete`                          |
| Uses GPU        | `False`                             |
| Supported Types | `protein`                           |
