23.7.1 OEReadFASTAFile

bool MyReadFASTAMolecule(oemolistream &ifs, OEMolBase &mol)
{
  mol.Clear();
  if (OEReadFASTAFile(ifs,mol))
  {
    OEFindRingAtomsAndBonds(mol);
    OEAssignAromaticFlags(mol);
    return true;
  }
  mol.Clear();
  return false;
}