Skip to main content
RNA Structural Property Similarity
License: ViennaRNA is licensed under Custom (ViennaRNA Package License) and may require explicit attribution when utilized. Please refer to the license for full terms.

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.


Go to Tool Page
proto-bio/proto-language/proto_language/constraint/rna_secondary_structure/structure_similarity_constraint.py
View source
@article{lorenz2011viennarna,
  title={ViennaRNA Package 2.0},
  author={Lorenz, Ronny and Bernhart, Stephan H and H{\"o}ner zu Siederdissen, Christian and Tafer, Hakim and Flamm, Christoph and Stadler, Peter F and Hofacker, Ivo L},
  journal={Algorithms for Molecular Biology},
  volume={6},
  number={1},
  pages={26},
  year={2011},
  publisher={BioMed Central},
  doi={10.1186/1748-7188-6-26}
}
Copy citation
Compare basic structural properties (length, pairing ratio) between proposals. and reference. Returns 1 - similarity (so 0 is perfect match, 1 is worst).

API Reference

ConfigRNAPropertySimilarityConfig Source
Configuration for structural property similarity constraint.Inherits from RNAStructureConstraintBaseConfig.
length_weight
number
default:"0.6"
Weight for length similarity
reference_sequence
string
required
Reference RNA/DNA sequence to compare against
temperature
number
default:"37.0"
Folding temperature in Celsius
ReturnsConstraintOutput
Per-proposal score (1 - similarity) with metadata for component similarities and the predicted structure.

Usage

python
from proto_language.core import Constraint
from proto_language.constraint import rna_property_similarity_constraint, RNAPropertySimilarityConfig

constraint = Constraint(
    inputs=[segment],
    function=rna_property_similarity_constraint,
    function_config=RNAPropertySimilarityConfig(
        # Configure parameters here
    ),
)

scores = constraint.evaluate()

Metadata

PropertyValue
Keyrna-property-similarity
Functionrna_property_similarity_constraint
Categoryrna_secondary_structure
Modediscrete
Uses GPUFalse
Supported Typesdna, rna