Learn R Programming

rPDBapi (version 2.1.1)

ContainsPhraseOperator: Create a Contains Phrase Search Operator

Description

Constructs a `ContainsPhraseOperator` object for search operations that look for attributes containing a specific phrase. This operator is ideal for scenarios where the search needs to be more precise than just individual words, such as finding an exact phrase within a text attribute.

Usage

ContainsPhraseOperator(attribute, value)

Value

An object of class `ContainsPhraseOperator` that can be used in search queries to retrieve entries where the attribute contains the specified phrase.

Arguments

attribute

The attribute to be evaluated. This should be the text field within the RCSB PDB that you want to search against.

value

The phrase to search for in the attribute. The search will look for this exact sequence of words within the specified attribute.

Examples

Run this code
# Search for entries containing a specific phrase in an attribute
operator <- ContainsPhraseOperator(attribute = "rcsb_primary_citation.title",
                                    value = "molecular dynamics")
print(operator)

Run the code above in your browser using DataLab