OEAddCustomFASTAResidue

bool OEAddCustomFASTAResidue(const char *code, const char *smiles)

Add a custom residue to the OEChem TK FASTA parser. The code is the string surrounded in square brackets. The smiles is the structure of the un-natural nucleic acid to add to the internal dictionary. Note, the hydroxyl from the background will be automatically stripped and removed by this function.

In order for these residues to be used, the OEIFlavor_FASTA_CustomResidues flavor must be specified. The following code snippet demonstrates how to register a custom D-isoleucine with the FASTA reader named with [dI]. It also demonstrates using the OEIFlavor_FASTA_EmbeddedSMILES flavor to define a tether that can cyclize the peptide.

from openeye import oechem

ifs = oechem.oemolistream()

flavor = (oechem.OEIFlavor_Generic_Default |
          oechem.OEIFlavor_FASTA_CustomResidues |
          oechem.OEIFlavor_FASTA_EmbeddedSMILES)

ifs.SetFlavor(oechem.OEFormat_FASTA, flavor)
ifs.SetFormat(oechem.OEFormat_FASTA)

oechem.OEAddCustomFASTAResidue("dI", "CC[C@@H](C)[C@@H](C(=O)O)N")

custom_fasta = """>Custom FASTA
FVVVSTDPWVNGLY[dI]D[NC(=O)CNC(=O)[C@@H](N[R16])CSCC(=O)[R1]]"""

ifs.openstring(custom_fasta)

mol = oechem.OEGraphMol()
oechem.OEReadMolecule(ifs, mol)

Warning

This is an experimental API that may change in the future.