# Example of creating a structure operator for a specific PDB entry and assembly
struct_operator <- StructureOperator(
pdb_entry_id = "1XYZ",
assembly_id = 1,
search_mode = "STRICT_SHAPE_MATCH"
)
print(struct_operator)
# Example of creating a structure operator with a relaxed search mode
struct_operator_relaxed <- StructureOperator(
pdb_entry_id = "1ABC",
assembly_id = 2,
search_mode = "RELAXED_SHAPE_MATCH"
)
print(struct_operator_relaxed)
Run the code above in your browser using DataLab