{ "cells": [ { "cell_type": "markdown", "metadata": {}, "source": [ "# A set of scaffolds from CheMBL papers" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "Been here a few times, keep refining it. :-)" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "# On to the work" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "## Start with the preliminaries\n", "\n", "We need to do a bunch of imports and define some functions we'll use later.\n", "\n", "*Note:* This is a Python3 notebook, so the code below may not work in Python2." ] }, { "cell_type": "code", "execution_count": 1, "metadata": {}, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "2020.09.1\n", "Sun Dec 20 08:43:44 2020\n" ] } ], "source": [ "import numpy\n", "from rdkit.Chem.Draw import IPythonConsole\n", "import pandas as pd\n", "from rdkit.Chem import PandasTools\n", "from rdkit.Chem import AllChem as Chem\n", "from rdkit.Chem import rdFMCS as MCS\n", "from rdkit.Chem import Draw\n", "import pickle\n", "from rdkit import rdBase\n", "print(rdBase.rdkitVersion)\n", "\n", "import time\n", "print(time.asctime())" ] }, { "cell_type": "code", "execution_count": 2, "metadata": {}, "outputs": [], "source": [ "# define a function to convert a query molecule to SVG\n", "\n", "from IPython.display import SVG\n", "from rdkit.Chem import rdDepictor\n", "from rdkit.Chem.Draw import rdMolDraw2D\n", "def moltosvg(mol,molSize=(450,250),kekulize=True):\n", " mc = Chem.Mol(mol.ToBinary())\n", " if kekulize:\n", " try:\n", " Chem.Kekulize(mc)\n", " except:\n", " mc = Chem.Mol(mol.ToBinary())\n", " if not mc.GetNumConformers():\n", " rdDepictor.Compute2DCoords(mc)\n", " drawer = rdMolDraw2D.MolDraw2DSVG(molSize[0],molSize[1])\n", " # the MolDraw2D code is not very good at the moment at dealing with atom queries,\n", " # this is a workaround until that's fixed.\n", " # The rendering is still not going to be perfect because query bonds are not properly indicated\n", " opts = drawer.drawOptions()\n", " for atom in mc.GetAtoms():\n", " if atom.HasQuery() and atom.DescribeQuery().find('AtomAtomicNum')!=0:\n", " opts.atomLabels[atom.GetIdx()]=atom.GetSmarts()\n", " drawer.DrawMolecule(mc)\n", " drawer.FinishDrawing()\n", " svg = drawer.GetDrawingText()\n", " return svg" ] }, { "cell_type": "code", "execution_count": 3, "metadata": {}, "outputs": [], "source": [ "# define a function to find the MCS for a set of molecules and return some summary info about that MCS\n", "\n", "import time\n", "# we will use a namedtuple to return the results\n", "from collections import namedtuple\n", "MCSRes=namedtuple('MCSRes',('smarts','numAtoms','numMols','avgNumMolAtoms','mcsTime'))\n", "\n", "def MCS_Report(ms,printSmarts=True,\n", " atomCompare=MCS.AtomCompare.CompareAny,\n", " bondCompare=MCS.BondCompare.CompareAny,\n", " completeRingsOnly=True,\n", " **kwargs):\n", " t1=time.time()\n", " mcs = MCS.FindMCS(ms,atomCompare=atomCompare,bondCompare=bondCompare,timeout=30,completeRingsOnly=completeRingsOnly,\n", " **kwargs)\n", " t2=time.time()\n", " nAts = numpy.array([x.GetNumAtoms() for x in ms])\n", " print('Mean nAts %.1f, mcs nAts: %d'%(nAts.mean(),mcs.numAtoms))\n", " if printSmarts: \n", " print(mcs.smartsString)\n", " mcsM = Chem.MolFromSmarts(mcs.smartsString) \n", " mcsM.UpdatePropertyCache(False)\n", " Chem.SetHybridization(mcsM)\n", " svg = moltosvg(mcsM,kekulize=False)\n", " tpl = MCSRes(mcs.smartsString,mcs.numAtoms,len(ms),nAts,t2-t1)\n", " return tpl,svg\n" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "## Grab the datasets data" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "Get target information from our local ChEMBL copy:" ] }, { "cell_type": "code", "execution_count": 5, "metadata": {}, "outputs": [], "source": [ "%load_ext sql\n", "%config SqlMagic.feedback = False" ] }, { "cell_type": "code", "execution_count": 17, "metadata": {}, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "367 assays found\n" ] } ], "source": [ "d = %sql postgresql://localhost/chembl_26 \\\n", "select * from (\\\n", " select assay_id,chembl_id assay_chembl_id,count(distinct(molregno)) cnt,description \\\n", " from activities join assays using(assay_id) \\\n", " where standard_type = 'Ki' and confidence_score=9 and assay_type='B' and relationship_type='D' \\\n", " group by (assay_id,chembl_id,description) order by cnt desc) tmp \\\n", " where cnt<100 and cnt>50;\n", "print(f'{len(d)} assays found')" ] }, { "cell_type": "code", "execution_count": 18, "metadata": {}, "outputs": [ { "data": { "text/html": [ "\n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", "
assay_idassay_chembl_idcntdescription
1528353CHEMBL370628498Radioligand Binding Assay: HEK293 stably expressing human orexin 2 receptor (Genebank accession numberNM_001526) were grown to confluency in DMEM (Hyclone, cat # SH30022) , 10%FBS, IX Pen/Strep, IX NaPyruvate, 10 mM HEPES, 600 ug/ml G418 media on 150 cm2 tissue culture plates, washed with 5 mM EDTA in PBS (HyClone Dulbecco's Phoshpate Buffered Saline IX with Calcium and Magnesium, Cat # SH30264.01, hereafter referred to simply as PBS) and scraped into 50 ml tubes. After centrifugation (2K xG, 5 min at 4°C), the supernatant was aspirated and the pellets frozen and stored at -80°C. Cells were resuspended in PBS in the presence of 1 tablet of protease inhibitor cocktail (Roche, Cat. #11836145001) per 50 mL. Each cell pellet from a 15 cm plate was resuspended in 10 mL, stored on ice, and homogenized for 45 sec just prior to addition to the reactions. Competition binding experiments in 96 well polypropylene plates were performed using [3H]-EMPA (Moraveck Corporation, specific activity = 29.6 Ci/mmol).
1527605CHEMBL370528997Binding assay: Binding assay was performed at 4 C. in a final volume of 1 ml, and with an incubation time of 30 min. The radioligand [3H]-rac-2-(1,2,3,4-tetrahydro-1-naphthyl)-2-imidazoline was used at a concentration equal to the calculated Kd value of 60 nM to give a bound at around 0.1% of the total added radioligand concentration, and a specific binding which represented approximately 70-80% of the total binding. Non-specific binding was defined as the amount of [3H]-rac-2-(1,2,3,4-tetrahydro-1-naphthyl)-2-imidazoline bound in the presence of the appropriate unlabelled ligand (10 μM). Competing ligands were tested in a wide range of concentrations (10 μM-30 μM). The final dimethylsulphoxide concentration in the assay was 2%, and it did not affect radioligand binding.
1537148CHEMBL373428397Inhibition of human GRK2 after 90 to 120 mins by Kinase-Glo assay
1535508CHEMBL370783295Radioligand Binding Assay: Aliquots of membrane preparations were thawed at RT, resupended in assay buffer (D2, D3: 50 mM Tris-HCl, 120 mM NaCl, 5 mM MgCl2, 1 mM EDTA, 5 mM KCl, 1.5 mM CaCl2, pH=7.4; 5-HT2A: 50 mM Tris-HCl, 10 mM MgCl2, 1 mM EGTA, pH=7.4), homogenized with a Polytron for 20-30 sec at 12.000 rpm and adjusted to a final concentration of approximately 7.5 ug protein/well (D2, D3) and 15 ug protein/well (5-HT2A), respectively.The binding affinity (Ki) of the compounds was determined using radioligand binding. Membranes were incubated in a total volume of 200 ul with a fixed concentration of radioligand (final concentration approximately 0.7 nM [3H]-spiperone for D2, 0.5 nM [3H]-spiperone for D3, and 1.1 nM [3H]-ketanserin for 5-HT2A) and ten concentrations of test compound in ranging between 10 uM-0.1 nM for 1 h at RT. At the end of the incubation, the reaction mixtures were filtered on to unifilter 96-well white microplates with bonded GF/C filters.
1547124CHEMBL375585995Competitive inhibition of human aromatase extracted from placental microsomes after 5 mins by Dixon plot analysis in presence of [1beta-3H]AD
1528370CHEMBL370538395Radioligand Binding Assay: Aliquots of membrane preparations were thawed at RT, resupended in assay buffer (D2, D3: 50 mM Tris-HCl, 120 mM NaCl, 5 mM MgCl2, 1 mM EDTA, 5 mM KCl, 1.5 mM CaCl2, pH=7.4; 5-HT2A: 50 mM Tris-HCl, 10 mM MgCl2, 1 mM EGTA, pH=7.4), homogenized with a Polytron for 20-30 sec at 12.000 rpm and adjusted to a final concentration of approximately 7.5 ug protein/well (D2, D3) and 15 ug protein/well (5-HT2A), respectively.The binding affinity (Ki) of the compounds was determined using radioligand binding. Membranes were incubated in a total volume of 200 ul with a fixed concentration of radioligand (final concentration approximately 0.7 nM [3H]-spiperone for D2, 0.5 nM [3H]-spiperone for D3, and 1.1 nM [3H]-ketanserin for 5-HT2A) and ten concentrations of test compound in ranging between 10 uM-0.1 nM for 1 h at RT. At the end of the incubation, the reaction mixtures were filtered on to unifilter 96-well white microplates with bonded GF/C filters.
1535361CHEMBL370785995Radioligand Binding Assay: Aliquots of membrane preparations were thawed at RT, resupended in assay buffer (D2, D3: 50 mM Tris-HCl, 120 mM NaCl, 5 mM MgCl2, 1 mM EDTA, 5 mM KCl, 1.5 mM CaCl2, pH=7.4; 5-HT2A: 50 mM Tris-HCl, 10 mM MgCl2, 1 mM EGTA, pH=7.4), homogenized with a Polytron for 20-30 sec at 12.000 rpm and adjusted to a final concentration of approximately 7.5 ug protein/well (D2, D3) and 15 ug protein/well (5-HT2A), respectively.The binding affinity (Ki) of the compounds was determined using radioligand binding. Membranes were incubated in a total volume of 200 ul with a fixed concentration of radioligand (final concentration approximately 0.7 nM [3H]-spiperone for D2, 0.5 nM [3H]-spiperone for D3, and 1.1 nM [3H]-ketanserin for 5-HT2A) and ten concentrations of test compound in ranging between 10 uM-0.1 nM for 1 h at RT. At the end of the incubation, the reaction mixtures were filtered on to unifilter 96-well white microplates with bonded GF/C filters.
444873CHEMBL89402294Inhibition of human recombinant MetAP2
1613477CHEMBL385527794Displacement of [3H]-spiperone from human dopamine D3 receptor expressed in CHO-K1 cell membranes after 90 mins by liquid scintillation counting
1528694CHEMBL370546894Radioligand Binding Assay: Radioligand binding assays for cloned muscarinic receptors were performed in 96-well microtiter plates in a total assay volume of 100 uL. CHO cell membranes stably expressing either the hM1, hM2, hM3, hM4 or hM5 muscarinic subtype were diluted in assay buffer to the following specific target protein concentrations (ug/well): 10 ug for hM1, 10-15 ug for hM2, 10-20 ug for hM3, 10-20 ug for hM4, and 10-12 ug for hM5 to get similar signals (cpm). The membranes were briefly homogenized using a Polytron tissue disruptor (10 seconds) prior to assay plate addition.Saturation binding studies for determining KD values of the radioligand were performed using L-[N-methyl-3H]scopolamine methyl chloride ([3H]-NMS) (TRK666, 84.0 Ci/mmol, Amersham Pharmacia Biotech, Buckinghamshire, England) at concentrations ranging from 0.001 nM to 20 nM.Displacement assays for determination of Ki values of test compounds were performed with [3H]-NMS at 1 nM.
1613478CHEMBL385527893Displacement of [3H]-spiperone from human dopamine D2 receptor expressed in CHO-K1 cell membranes coexpressing Galpha16 after 120 mins by liquid scintillation counting
464889CHEMBL94908892Inhibition of rat recombinant FAAH expressed in Escherichia coli
1527832CHEMBL370505992Radioligand Binding Assay: Radioligand binding assay using muscarinic receptors.
437192CHEMBL90659092Displacement of [125I]MCH from MCHR1 expressed in CHO cells
302650CHEMBL83994092Binding affinity for human glycogen synthase kinase 3 beta
302524CHEMBL82737791Binding affinity for human cyclin-dependent kinase 2
303563CHEMBL82896391Inhibition of [125I]eotaxin-1 binding to human chemokine receptor (hCCR3-C1)
213236CHEMBL82144688Binding affinity towards trypsin
1528352CHEMBL370628388Radioligand Binding Assay: Human Embryonic Kidney 293 cells (HEK293) stably expressing rat orexin 1 receptor(Genebank accession number NM_001525) or Chinese ovary cells (CHO) stably expressing human orexin 1 receptor (Genebank accession number NM_001526) were grown to confluency in DMEM (Hyclone, cat # SH30022), 10% FBS, IX Pen/Strep, IX sodium pyruvate, 10 mM HEPES, 600 ug/mL G418 and DMEM/F12 (Gibco, Cat #1 1039), 10%FBS, IX Pen/Strep, 600 ug/mL G418 media, respectively on 150 cm2 tissue culture plates, washed with 5 mM EDTA in PBS (HyClone Dulbecco's Phoshpate Buffered Saline IX with Calcium and Magnesium, Cat # SH30264.01, hereafter referred to simply as PBS) and scraped into 50 ml tubes. After centrifugation (2K xG, 5 min at 4 C), the supernatant was aspirated and the pellets frozen and stored at -80C. Cells were resuspended in PBS in the presence of 1 tablet of protease inhibitor cocktail (Roche, Cat. #1 1836145001) per 50 mL. Each cell pellet from a 15 cm plate was resuspended in 10 mL.
1537103CHEMBL373420988Displacement of [3H]-PrRP from human GPR10 receptor expressed in HEK293 cell membranes incubated for 90 mins by liquid scintillation counting method
1535076CHEMBL370780488Radioligand Binding Assay: liquots of membrane preparations were thawed at RT, resuspended in assay buffer (D2, D3: 50 mM Tris-HCl, 120 mM NaCl, 5 mM MgCl2, 1 mM EDTA, 5 mM KC1, 1.5 mM CaCl2, pH=7.4; 5-HT2A: 50 mM Tris-HCl, 10 mM MgCl2, 1 mM EGTA, pH=7.4), homogenized with a Polytron for 20-30 sec at 12.000 rpm and adjusted to a final concentration of approximately 7.5 ug protein / well (D2, D3) and 15 ug protein / well (5-HT2A), respectively.The binding affinity (IQ) of the compounds was determined using radioligand binding. Membranes were incubated in a total volume of 200 ul with a fixed concentration of radioligand (final concentration approximately 0.7 nM [3H] -spiperone for D2, 0.5 nM [3H] -spiperone for D3, and 1.1 nM [3H]-ketanserin for 5-HT2A) and ten concentrations of test compound in ranging between 10uM - 0.1 nM for 1 h at RT. At the end of the incubation, the reaction mixtures were filtered on to unifilter 96-well white microplates with bonded GF/C filters.
1535965CHEMBL370759888Radioligand Binding Assay: liquots of membrane preparations were thawed at RT, resuspended in assay buffer (D2, D3: 50 mM Tris-HCl, 120 mM NaCl, 5 mM MgCl2, 1 mM EDTA, 5 mM KC1, 1.5 mM CaCl2, pH=7.4; 5-HT2A: 50 mM Tris-HCl, 10 mM MgCl2, 1 mM EGTA, pH=7.4), homogenized with a Polytron for 20-30 sec at 12.000 rpm and adjusted to a final concentration of approximately 7.5 ug protein / well (D2, D3) and 15 ug protein / well (5-HT2A), respectively.The binding affinity (IQ) of the compounds was determined using radioligand binding. Membranes were incubated in a total volume of 200 ul with a fixed concentration of radioligand (final concentration approximately 0.7 nM [3H] -spiperone for D2, 0.5 nM [3H] -spiperone for D3, and 1.1 nM [3H]-ketanserin for 5-HT2A) and ten concentrations of test compound in ranging between 10uM - 0.1 nM for 1 h at RT. At the end of the incubation, the reaction mixtures were filtered on to unifilter 96-well white microplates with bonded GF/C filters.
1528654CHEMBL370612987Radioligand Binding Assay: liquots of membrane preparations were thawed at RT, resuspended in assay buffer (D2, D3: 50 mM Tris-HCl, 120 mM NaCl, 5 mM MgCl2, 1 mM EDTA, 5 mM KC1, 1.5 mM CaCl2, pH=7.4; 5-HT2A: 50 mM Tris-HCl, 10 mM MgCl2, 1 mM EGTA, pH=7.4), homogenized with a Polytron for 20-30 sec at 12.000 rpm and adjusted to a final concentration of approximately 7.5 ug protein / well (D2, D3) and 15 ug protein / well (5-HT2A), respectively.The binding affinity (IQ) of the compounds was determined using radioligand binding. Membranes were incubated in a total volume of 200 ul with a fixed concentration of radioligand (final concentration approximately 0.7 nM [3H] -spiperone for D2, 0.5 nM [3H] -spiperone for D3, and 1.1 nM [3H]-ketanserin for 5-HT2A) and ten concentrations of test compound in ranging between 10uM - 0.1 nM for 1 h at RT. At the end of the incubation, the reaction mixtures were filtered on to unifilter 96-well white microplates with bonded GF/C filters.
303638CHEMBL82884886Inhibitory constant determined against recombinant Fatty-acid amide hydrolase from rat expressed in Escherichia coli
1620948CHEMBL386323186Displacement of [3H]rosiglitazone from recombinant human C-terminal His-tagged MitoNEET cytosolic domain (32 to 108 residues) expressed in Escherichia coli BL21 by Cheng-Prusoff analysis
1332011CHEMBL322390485Antagonist activity at human adenosine A1 receptor expressed in CHO-K1 cells preincubated for 15 mins before r-PIA addition measured after 5.5 to 6 hrs by beta-galactosidase reporter gene assay
1637967CHEMBL388102885Inhibition of full length human C-terminal 6His-tagged CHK1 expressed in baculovirus/insect expression system assessed as reduction in NADH oxidation using Syntide2 as substrate by pyruvate kinase/lactate dehydrogenase coupled assay
304044CHEMBL84022185Binding affinity against Opioid receptor kappa 1 from guinea pig brain membranes using [3H]U-69593
304036CHEMBL84021484Binding affinity against Opioid receptor mu 1 from rat brain membranes using [3H]DAMGO
303375CHEMBL83969384Binding affinity for human tachykinin receptor 2 was measured by using [125I]NKA as radio ligand
609034CHEMBL106450184Inhibition of human P2Y12 receptor expressed in CHO cells
444902CHEMBL89405082Inhibition of ENT1 in human K562 cells by flow cytometric assay
1366808CHEMBL329724382Displacement of [3H]ketanserin from human recombinant 5-HT2A receptor expressed in CHO-K1 cell membrane after 60 mins by liquid scintillation counting analysis
1366806CHEMBL329724182Displacement of [3H]LSDm from human recombinant 5-HT6 receptor expressed in HEK293 cell membrane after 60 mins by liquid scintillation counting analysis
1366807CHEMBL329724282Displacement of [3H]LSD from human recombinant 5-HT7 receptor expressed in CHO-K1 cell membrane after 120 mins by liquid scintillation counting analysis
1366809CHEMBL329724482Displacement of [3H]N-methylspiperone from human recombinant D2 receptor expressed in CHO-K1 cell membrane after 60 mins by liquid scintillation counting analysis
1659425CHEMBL400903781Displacement of [3H]-LSD from recombinant human 5-HT6 receptor expressed in HEK293 cells after 60 mins
418719CHEMBL91295180Displacement of [125I]CCK-8S from human CCK2R
981861CHEMBL242755680Binding affinity to human adenosine A3 receptor
1535759CHEMBL370777479Radioligand Binding: The binding of [3H]MLA was measured using a modification of the methods of Davies et al., Neuropharmacol. 38: 679 (1999). [3H]MLA (Specific Activity=25-35 Ci/mmol) was obtained from Tocris. The binding of [3H]MLA was determined using a 2 h incubation at 21 C. Incubations were conducted in 48-well micro-titre plates and contained about 200 μg of protein per well in a final incubation volume of 300 uL. The incubation buffer was PBS and the final concentration of [3H]MLA was 5 nM. The binding reaction was terminated by filtration of the protein containing bound ligand onto glass fiber filters (GF/B, Brandel) using a Brandel Tissue Harvester at room temperature. Filters were soaked in de-ionized water containing 0.33% polyethyleneimine to reduce non-specific binding. Each filter was washed with PBS (3x1 mL) at room temperature. Non-specific binding was determined by inclusion of 50 uM non-radioactive MLA in selected wells.
429601CHEMBL91903379Displacement of [3h]DPCPX from adenosine A receptor in rat cerebral cortex membrane
1528657CHEMBL370613279Radioligand Binding: The binding of [3H]MLA was measured using a modification of the methods of Davies et al., Neuropharmacol. 38: 679 (1999). [3H]MLA (Specific Activity=25-35 Ci/mmol) was obtained from Tocris. The binding of [3H]MLA was determined using a 2 h incubation at 21 C. Incubations were conducted in 48-well micro-titre plates and contained about 200 μg of protein per well in a final incubation volume of 300 uL. The incubation buffer was PBS and the final concentration of [3H]MLA was 5 nM. The binding reaction was terminated by filtration of the protein containing bound ligand onto glass fiber filters (GF/B, Brandel) using a Brandel Tissue Harvester at room temperature. Filters were soaked in de-ionized water containing 0.33% polyethyleneimine to reduce non-specific binding. Each filter was washed with PBS (3x1 mL) at room temperature. Non-specific binding was determined by inclusion of 50 uM non-radioactive MLA in selected wells.
583010CHEMBL105184879Displacement of [H]GR-113808 from human 5HT4C receptor expressed in HEK293 cells by liquid scintillation counting
1527942CHEMBL370562979Biochemical Assay: The ability of the compounds to bind to the 5-HT2A, D3 and D2 receptors was determined using radioligand binding to cloned receptors selectively expressed in HEK-293 EBNA cells.
429600CHEMBL91903279Displacement of [3H]ZM241385 from adenosine A2A receptor in rat brain membrane
1535083CHEMBL370782579Biochemical Assay: The ability of the compounds to bind to the 5-HT2A, D3 and D2 receptors was determined using radioligand binding to cloned receptors selectively expressed in HEK-293 EBNA cells.
1535448CHEMBL370769679Biochemical Assay: The ability of the compounds to bind to the 5-HT2A, D3 and D2 receptors was determined using radioligand binding to cloned receptors selectively expressed in HEK-293 EBNA cells.
1527798CHEMBL370533978Enzymatic Assay: The enzymatic activity of PAK4 KD was measured by its ability to catalyzed the transfer of a phosphate residue from a nucleoside triphosphate to an amino acid side chain of a commercially available peptide (amino acid sequence EVPRRKSLVGTPYWM).
1637416CHEMBL388047778Displacement of [3H]-2-[4-(3-azidophenyl)-2-oxo-1-pyrrolidinyl]butanamide from SV2A levetiracetam binding site in Sprague-Dawley rat cerebral cortex membranes after 120 mins by liquid scintillation counting method
880272CHEMBL221585078Displacement of [125I]-CXCL10 from human CXCR3 expressed in HEK293 cells
1534795CHEMBL370779877Radioligand Binding Assay: Aliquots of membrane preparations were thawed at RT, resupended in assay buffer (D2, D3: 50 mM Tris-HCl, 120 mM NaCl, 5 mM MgCl2, 1 mM EDTA, 5 mM KCl, 1.5 mM CaCl2, pH=7.4; 5-HT2A: 50 mM Tris-HCl, 10 mM MgCl2, 1 mM EGTA, pH=7.4), homogenized with a Polytron for 20-30 sec at 12.000 rpm and adjusted to a final concentration of approximately 7.5 μg protein/well (D2, D3) and 15 μg protein/well (5-HT2A), respectively. The binding affinity (Ki) of the compounds was determined using radioligand binding. Membranes were incubated in a total volume of 200 μl with a fixed concentration of radioligand (final concentration approximately 0.7 nM [3H]-spiperone for D2, 0.5 nM [3H]-spiperone for D3, and 1.1 nM [3H]-ketanserin for 5-HT2A) and ten concentrations of test compound in ranging between 10 μM-0.1 nM for 1 h at RT.
1638066CHEMBL388112777Inhibition of recombinant MCH5 (unknown origin) pre-incubated for 60 mins with Acetyl-Tyr-Val-Ala-Asp-amino-4-methylcoumarin substrate followed by enzyme addition by fluorescence based assay
1638064CHEMBL388112577Inhibition of recombinant MCH2 (unknown origin) pre-incubated for 60 mins with Acetyl-Tyr-Val-Ala-Asp-amino-4-methylcoumarin substrate followed by enzyme addition by fluorescence based assay
1638062CHEMBL388112377Inhibition of recombinant CPP32 (unknown origin) pre-incubated for 60 mins with Acetyl-Tyr-Val-Ala-Asp-amino-4-methylcoumarin substrate followed by enzyme addition by fluorescence based assay
1638060CHEMBL388112177Inhibition of mouse recombinant ICE pre-incubated for 60 mins with Acetyl-Tyr-Val-Ala-Asp-amino-4-methylcoumarin substrate followed by enzyme addition by fluorescence based assay
418718CHEMBL91351277Displacement of [125I]CCK-8S from human CCK1R
471789CHEMBL93999777Displacement of [3H]DPCPX from human adenosine A2B receptor expressed in HEK293 cells
1535789CHEMBL370783777Radioligand Binding Assay: Aliquots of membrane preparations were thawed at RT, resupended in assay buffer (D2, D3: 50 mM Tris-HCl, 120 mM NaCl, 5 mM MgCl2, 1 mM EDTA, 5 mM KCl, 1.5 mM CaCl2, pH=7.4; 5-HT2A: 50 mM Tris-HCl, 10 mM MgCl2, 1 mM EGTA, pH=7.4), homogenized with a Polytron for 20-30 sec at 12.000 rpm and adjusted to a final concentration of approximately 7.5 μg protein/well (D2, D3) and 15 μg protein/well (5-HT2A), respectively. The binding affinity (Ki) of the compounds was determined using radioligand binding. Membranes were incubated in a total volume of 200 μl with a fixed concentration of radioligand (final concentration approximately 0.7 nM [3H]-spiperone for D2, 0.5 nM [3H]-spiperone for D3, and 1.1 nM [3H]-ketanserin for 5-HT2A) and ten concentrations of test compound in ranging between 10 μM-0.1 nM for 1 h at RT.
855538CHEMBL216284377Displacement of [3H]-5-CT from human 5-HT7b receptor expressed in HEK293 cells after 1 hr
1528852CHEMBL370602577In Vitro Assay: The effectiveness of compounds of the present invention as inhibitors of the coagulation Factors XIa, VIIa, IXa, Xa, XIIa, plasma kallikrein or thrombin, can be determined using a relevant purified serine protease, respectively, and an appropriate synthetic substrate. The rate of hydrolysis of the chromogenic or fluorogenic substrate by the relevant serine protease was measured both in the absence and presence of compounds of the present invention. Hydrolysis of the substrate resulted in the release of pNA (para nitroaniline), which was monitored spectrophotometrically by measuring the increase in absorbance at 405 nm, or the release of AMC (amino methylcoumarin), which was monitored spectrofluorometrically by measuring the increase in emission at 460 nm with excitation at 380 nm. A decrease in the rate of absorbance or fluorescence change in the presence of inhibitor is indicative of enzyme inhibition. Such methods are known to one skilled in the art.
1528054CHEMBL370536177Radioligand Binding Assay: Aliquots of membrane preparations were thawed at RT, resupended in assay buffer (D2, D3: 50 mM Tris-HCl, 120 mM NaCl, 5 mM MgCl2, 1 mM EDTA, 5 mM KCl, 1.5 mM CaCl2, pH=7.4; 5-HT2A: 50 mM Tris-HCl, 10 mM MgCl2, 1 mM EGTA, pH=7.4), homogenized with a Polytron for 20-30 sec at 12.000 rpm and adjusted to a final concentration of approximately 7.5 μg protein/well (D2, D3) and 15 μg protein/well (5-HT2A), respectively. The binding affinity (Ki) of the compounds was determined using radioligand binding. Membranes were incubated in a total volume of 200 μl with a fixed concentration of radioligand (final concentration approximately 0.7 nM [3H]-spiperone for D2, 0.5 nM [3H]-spiperone for D3, and 1.1 nM [3H]-ketanserin for 5-HT2A) and ten concentrations of test compound in ranging between 10 μM-0.1 nM for 1 h at RT.
743931CHEMBL176792576Inhibition of full-length human FAAH expressed in COS-7 cells assessed as [14C]-labeled oleamide to oleic acid conversion
1699615CHEMBL405059775Inhibition of recombinant human furin expressed in drosophila S2 cells using pyrGlu-Arg-Thr-Lys-Arg-7-amido-4-methylcoumarin as substrate after 60 mins by spectrofluorometry method
55071CHEMBL66838875Inhibitory activity against Lactobacillus casei dihydrofolate reductase (DHFR)
53631CHEMBL66666075Inhibitory activity against isolated chicken liver dihydrofolate reductase (DHFR)
634304CHEMBL112071775Displacement of [3H]N-alpha-methylhistamine from human cloned histamine H3 receptor
634305CHEMBL112071875Displacement of [3H]N-alpha-methylhistamine from rat cloned histamine H3 receptor
634306CHEMBL112071975Displacement of [3H]dofetilide from human ERG expressed in HEK293 cells
1636657CHEMBL387955575Inhibition of human dihydroorotate dehydrogenase assessed as reduction in orotate production using L-dihydroorotate as substrate measured after 20 mins by spectrophotometric method
303258CHEMBL82638475Inhibition of [3H]LSD binding to human 5-hydroxytryptamine 6 receptor expressed in HEK293 cells
513112CHEMBL97360175Binding affinity to human MC4 receptor
1699614CHEMBL405059675Inhibition of recombinant human PACE4 expressed in drosophila S2 cells using pyrGlu-Arg-Thr-Lys-Arg-7-amido-4-methylcoumarin as substrate after 60 mins by spectrofluorometry method
1527621CHEMBL370507875Radioligand Binding Assay: The TAAR1 radioligand 3[H]-(S)-4-[(ethyl-phenyl-amino)-methyl]-4,5-dihydro-oxazol-2-ylamine (described in WO 2008/098857) was used at a concentration equal to the calculated Kd value, that was usually around 0.7 nM, resulting in the binding of approximately 0.5% of the radioligand and a specific binding representing approximately 70% of the total binding. Nonspecific binding was defined as the amount of 3[H]-(S)-4-[(ethyl-phenyl-amino)-methyl]-4,5-dihydro-oxazol-2-ylamine bound in the presence of 10 μM unlabeled ligand.
1528160CHEMBL370536974Inhibition Assay: Using a 96 well plate (#3915, Costar), a test compound (25 μL) was mixed with 20 μM fluorescence enzyme substrate (Boc-Phe-Ser-Arg-AMC, 50 μL) mixed with 200 mM Tris-HCl buffer (pH 8.0), and human trypsin (Sigma, 25 μL) was added. Using a fluorescence plate reader fmax (Molecular Devices, Inc.), the reaction rate was measured from the time-course changes at excitation wavelength 355 nm and fluorescence wavelength 460 nm.
447824CHEMBL89807474Inhibition of human factor 10a
1527780CHEMBL370531474Glucagon SPA Assay: The Glucagon SPA assay is used to determine the ability of test compounds to block the binding of glucagon-cex to the glucagon receptors.
1528161CHEMBL370537074Inhibition Assay: Using a 96 well plate (#3915, Costar), a test compound (25 μL), 400 mM Tris-HCl buffer (pH 8.0, 25 μL) and 0.5 mg/mL fluorescence enzyme substrate (Gly-Asp-Asp-Asp-Asp-Lys-β-Naphtylamide, 25 μL) were mixed, and recombinant human enteropeptidase (R&D Systems, Inc., 25 μL) was added. Using a fluorescence plate reader fmax (Molecular Devices, Inc.), the reaction rate was measured from the time-course changes at excitation wavelength 320 nm and fluorescence wavelength 405 nm.
585133CHEMBL106002274Binding affinity to human recombinant P2Y12 receptor expressed in CHO cells
1527622CHEMBL370507974Radioligand Binding Assay: The TAAR1 radioligand 3[H]-(S)-4-[(ethyl-phenyl-amino)-methyl]-4,5-dihydro-oxazol-2-ylamine (described in WO 2008/098857) was used at a concentration equal to the calculated Kd value, that was usually around 2.3 nM, resulting in the binding of approximately 0.2% of the radioligand and a specific binding representing approximately 85% of the total binding. Nonspecific binding was defined as the amount of 3[H]-(S)-4-[(ethyl-phenyl-amino)-methyl]-4,5-dihydro-oxazol-2-ylamine bound in the presence of 10 μM unlabeled ligand.
371466CHEMBL86418374Displacement of [3H]progesterone from Progesterone receptor
1528930CHEMBL370577773Radioligand Binding Assay: Radioligand binding assays (screening and dose-displacement) used 0.1 nM [3H]-nociceptin (NEN; 87.7 Ci/mmole) with 10-20 ug membrane protein in a final volume of 500 uL binding buffer (10 mM MgCl2, 1 mM EDTA, 5% DMSO, 50 mM HEPES, pH 7.4). Non-specific binding was determined in the presence of 10 nM unlabeled nociceptin (American Peptide Company). All reactions were performed in 96-deep well polypropylene plates for 1 h at about 25 C. Binding reactions were terminated by rapid filtration onto 96-well Unifilter GF/C filter plates (Packard) presoaked in 0.5% polyethylenimine (Sigma-Aldrich). Harvesting was performed using a 96-well tissue harvester (Packard) followed by three filtration washes with 500 uL ice-cold binding buffer. Filter plates were subsequently dried at 50 C. for 2-3 hrs. Fifty L/well scintillation cocktail (BetaScint; Wallac) was added and plates were counted in a Packard Top-Count.
458669CHEMBL94295273Displacement of [12]NDPMSH from human MC4R expressed in HEK293 cells
1536128CHEMBL370765673Radioligand Binding Assay: Human Embryonic Kidney 293 cells (HEK293) stably expressing rat orexin 1 receptor(Genebank accession number NM_001525) or Chinese ovary cells (CHO) stably expressing human orexin 1 receptor (Genebank accession number NM_001526) were grown to confluency in DMEM (Hyclone, cat # SH30022), 10% FBS, IX Pen/Strep, IX sodium pyruvate, 10 mM HEPES, 600 ug/mL G418 and DMEM/F12 (Gibco, Cat #1 1039), 10%FBS, IX Pen/Strep, 600 ug/mL G418 media, respectively on 150 cm2 tissue culture plates, washed with 5 mM EDTA in PBS (HyClone Dulbecco's Phoshpate Buffered Saline IX with Calcium and Magnesium, Cat # SH30264.01, hereafter referred to simply as PBS) and scraped into 50 ml tubes. After centrifugation (2K xG, 5 min at 4 C), the supernatant was aspirated and the pellets frozen and stored at -80C. Cells were resuspended in PBS in the presence of 1 tablet of protease inhibitor cocktail (Roche, Cat. #1 1836145001) per 50 mL. Each cell pellet from a 15 cm plate was resuspended in 10 mL.
54734CHEMBL66718573Negative logarithm of inhibition constant (-log Ki) against Dihydrofolate reductase in Escherichia coli
320876CHEMBL88480173Displacement of [3H]LSD from cloned human 5-hydroxytryptamine 6 receptor expressed in HeLa cells
1522886CHEMBL363075972Antagonist activity at human TRPV1 heterologously expressed in CHO cells assessed as inhibition of capsaicin-induced activation by FLIPR assay
861906CHEMBL217363472Displacement of [3H](+)pentazocine from human sigma 1 receptor transfected in HEK293 cell membranes after 120 mins by scintillation counter
1644378CHEMBL399330772Inhibition of human beta factor 12a using fluorogenic substrate Boc-Gln-Gly-Arg-AMC preincubated for 10 mins followed by addition of substrate measured every min for 30 mins
54735CHEMBL66718672Inhibition constant against binding of Escherichia coli dihydrofolate reductase
303552CHEMBL82895271Inhibitory constant against [3H]methyllycaconitine binding towards Nicotinic acetylcholine receptor alpha-7 of rat brain hippocampus
570539CHEMBL102691171Displacement of [3H]CP-55940 from human cloned CB2 receptor by filtration assay
570538CHEMBL102691071Displacement of [3H]CP-55940 from CB1 receptor in rat brain by filtration assay
54926CHEMBL66722271Inhibitory activity against Lactobacillus casei dihydrofolate reductase
53614CHEMBL66184471Inhibitory activity against chicken liver dihydrofolate reductase
304043CHEMBL87711070Inhibition of [3H]mibolerone binding to cytosolic androgen receptor of rat ventral prostate
588710CHEMBL105931970Inhibition of human PIM1 by scintillation counting
588709CHEMBL105931870Inhibition of human PIM2 by scintillation counting
828300CHEMBL205031970Displacement of [3H]histamine from human histamine H4 receptor expressed in HEK cells
605406CHEMBL107340070Displacement of radioligand from human adenosine A1 receptor expressed in cells by topcount microplate scintillation counting
605405CHEMBL107339970Displacement of radioligand from human adenosine A2A receptor expressed in cells by topcount microplate scintillation counting
596087CHEMBL104087569Displacement of [3H]CP-55940 from human recombinant CB2 receptor expressed in HEK293 cells
596088CHEMBL104087669Displacement of [3H]CP-55940 from human recombinant CB1 receptor expressed in CHO cells
478840CHEMBL92572769Displacement of [3H]PGD2 from human CRTH2 receptor expressed in CHO cells
934321CHEMBL232030769Displacement of FITC-AHx-KALETLRRVGDGVQRNHETAF-NH2 from human MCl1 (172 to 327) expressed in Escherichia coli BL21 (DE3) after 1 hr by fluorescence polarization anisotropy assay
212325CHEMBL81825168Inhibitory constant against bovine trypsin for general specificity against serine proteases
877370CHEMBL218241568Displacement of [3H]epibatidine form human alpha7 nAchR expressed in HEK293 cells
540740CHEMBL103062268Displacement of [125I]nociceptin from human NOP expressed in CHO cells
1572912CHEMBL380123568Antagonist activity at CCR9 receptor in human MOLT4 cells assessed as inhibition of CCL25-induced increase in intracellular calcium level preincubated for 1 hr followed CCL25 addition by FLIPR assay
304008CHEMBL87710968Binding affinity towards Acetylcholinesterase
471788CHEMBL93999668Displacement of [3H]ZM-241385 from human adenosine A2A receptor expressed in CHO cells
960514CHEMBL238948967Antagonist activity at human TRPV1 expressed in CHOK1 cells assessed as inhibition of capsaicin-induced activity by FLIPR assay
540741CHEMBL103062367Displacement of [125I]diprenorphine from human DOP expressed in CHO cells
461138CHEMBL94416167Displacement of [3H]raclopride from rat dopamine D2 receptor
479714CHEMBL92147467Binding affinity at human adenosine A1 receptor
159136CHEMBL76951267Inhibitory activity against HIV-1 protease
540742CHEMBL103062467Displacement of [125I]diprenorphine from human KOP expressed in CHO cells
1653671CHEMBL400303767Inhibition of 5'--FAM-LTFEHYWAQLTS peptide binding to N-terminal domain human MDM2 (1 to 118 residues) expressed in Escherichia coli BL21(DE3) measured after 15 mins by fluorescence polarization assay
479713CHEMBL92147367Binding affinity at human adenosine A2A receptor
540743CHEMBL103062567Displacement of [125I]diprenorphine from human MOP expressed in CHO cells
1527882CHEMBL370512666Biological Assay: Compound affinity for the rat 5-HT7 receptor subtype was evaluated by competitive radioligand binding assay using 5-carboxamido[H3]typtamine ([3H]5-CT)(Amersham Biosciences) detection.
1528915CHEMBL370562166Binding Assay: Receptor binding was performed using membrane fractions prepared from the HEK-293 cell line recombinantly expressing rat 5-HT7 receptors (NCBI accession NM022938). Compound affinity for the rat 5-HT7 receptor subtype was evaluated by competitive radioligand binding assays using 5-carboxamido[3H]tryptamine ([3H]5-CT) (Amersham Biosciences, cat. 90000403) detection. HitHunter cAMP assays are in-vitro based competitive immunoassays. The assay was performed on the HEK-293 cell line stably transfected with r5-HT7 receptor. Cells were pre-incubated with test compounds for 10 minutes.
1688140CHEMBL403871066Antagonist activity at human TRPV1 expressed in CHOK1 cells assessed as inhibition of capsaicin induced calcium influx pretreated for 6 mins followed by capsaicin addition by Fluo-4/Pluronic F127 probe based FLIPR method
466158CHEMBL95016266Displacement of [3H]dexamethasone from human recombinant GR
1653672CHEMBL400303866Inhibition of 5'--FAM-LTFEHYWAQLTS peptide binding to N-terminal domain human MDMX (1 to 134 residues) measured after 15 mins by fluorescence polarization assay
1577550CHEMBL380702666Inhibition of human liver cathepsin B using Cbz-Arg-Arg-pNA as substrate at pH 6 incubated for 30 mins measured for 20 mins by photometrical analysis
1561630CHEMBL377660765Displacement of [3H]-spiperone from human dopamine D3 receptor expressed in CHO-K1 cell membranes after 90 mins by liquid scintillation counter method
946059CHEMBL234209665Inhibition of human carbonic anhydrase-12
946060CHEMBL234209765Inhibition of human carbonic anhydrase-9
946061CHEMBL234209865Inhibition of human carbonic anhydrase-2
302499CHEMBL82821565Binding affinity against bovine trypsin
1459806CHEMBL337119265Antagonist activity at human recombinant 5HT6 receptor expressed in CHO cells
946062CHEMBL234209965Inhibition of human carbonic anhydrase-1
429507CHEMBL91863065Inhibition of human BChE
429506CHEMBL91862965Inhibition of human AChE
429504CHEMBL91862765Inhibition of human liver CE1 expressed in sf21 cells
425700CHEMBL91368265Displacement of [3H]spiperone from human dopamine D4.4 expressed in CHO cell membrane
425699CHEMBL91201565Displacement of [3H]spiperone from human dopamine D3 expressed in CHO cell membrane
511514CHEMBL98095765Displacement of [3H]PK11195 from translocator protein in rat kidney mitochondrial membrane
302753CHEMBL83870065Binding affinity against mu opioid receptor in mouse hot plate test
1528084CHEMBL370564565Radioligand Binding Assay: HEK293 cells stably expressing human CB2 receptors were grown until a confluent monolayer was formed. Briefly, the cells were harvested and homogenized in TE buffer (50 mM Tris-HCl, 1 mM MgCl2, and 1 mM EDTA) using a polytron for 2X10 second bursts in the presence of protease inhibitors, followed by centrifugation at 45,000 ug for 20 minutes. The final membrane pellet was re-homogenized in storage buffer (50 mM Tris-HCl, 1 mM MgCl2, and 1 mM EDTA and 10% sucrose) and frozen at -78 C. until used. Saturation binding reactions were initiated by the addition of membrane preparation (protein concentration of 5 ug/well for human CB2) into wells of a deep well plate containing [3H]CP 55,940 (120 Ci/mmol, a nonselective CB agonist commercially available from Tocris) in assay buffer (50 mM Tris, 2.5 mM EDTA, 5 mM MgCl2, and 0.5 mg/mL fatty acid free BSA, pH 7.4). After 90 min incubation at 30 C., binding reaction was terminated by the addition of 300 uL/well of cold assay buffer.
715074CHEMBL166418064Displacement of [3H]NECA from human adenosine A3 receptor expressed in human HeLa cells by liquid scintillation counting
1565814CHEMBL378942164Displacement of FITC-Bak-BH3 peptide probe from N-terminal His-tagged human Mcl-1 (172 to 327 residues) expressed in Escherichia coli BL21(DE3) after 1.5 hrs by FPA based competition assay
1452896CHEMBL336621264Displacement of [3H]NECA from human adenosine A2A receptor expressed in CHO cells
1452898CHEMBL336621464Antagonist activity at human adenosine A2B receptor expressed in CHO cells assessed as inhibition of NECA-stimulated adenylyl cyclase activity
1452895CHEMBL336621164Displacement of [3H]CCPA from human adenosine A1 receptor expressed in CHO cells
1452897CHEMBL336621364Displacement of [3H]NECA from human adenosine A3 receptor expressed in CHO cells
1528243CHEMBL370621764Radioligand Binding Assay: HEK293 cells stably expressing human CB2 receptors were grown until a confluent monolayer was formed. Briefly, the cells were harvested and homogenized in TE buffer (50 mM Tris-HCl, 1 mM MgCl2, and 1 mM EDTA) using a polytron for 2x 10 second bursts in the presence of protease inhibitors, followed by centrifugation at 45,000xg for 20 minutes. The final membrane pellet was re-homogenized in storage buffer (50 mM Tris-HCl, 1 mM MgCl2, and 1 mM EDTA and 10% sucrose) and frozen at -78 C. until used. Saturation binding reactions were initiated by the addition of membrane preparation (protein concentration of 5 ug/well for human CB2) into wells of a deep well plate containing [3H]CP 55,940 (120 Ci/mmol, a nonselective CB agonist commercially available from Tocris) in assay buffer (50 mM Tris, 2.5 mM EDTA, 5 mM MgCl2, and 0.5 mg/mL fatty acid free BSA, pH 7.4). After 90 min incubation at 30 C., binding reaction was terminated by the addition of 300 uL/well of cold assay buffer.
393314CHEMBL91152463Displacement of [3H]methylspiperone from dopamine D2 receptor expressed in CHO cells
685143CHEMBL128695963Inhibition of human NOX4 overexpressed in human PMN cell membrane assessed as ROS production by cell free assay in presence of NADPH
728369CHEMBL168514563Displacement of [3H]Lu AE93103 from human NK3 receptor expressed in BHK cells
425703CHEMBL91368563Binding affinity to dopamine D2
393313CHEMBL91152363Displacement of [3H]SCH 23390 from dopamine D1 receptor expressed in CHO cells
864185CHEMBL217513463Displacement of [33P]2-MeS-ADP from human recombinant P2Y12 receptor expressed in CHO cell membranes by scintillation counting method
458068CHEMBL92540562Displacement of [125I]Tyr-o-CRF from CRF1 receptor in IMR32 cells
1342911CHEMBL325918662Competitive reversible inhibition of bovine thrombin using alpha-N-benzoyl-DL-arginine-p-nitroanilide hydrochloride as substrate after 15 to 40 mins by Michaelis-Menten plot analysis
333106CHEMBL85359762Inhibition of FKBP12 rotamase activity
1561631CHEMBL377660862Displacement of [3H]-spiperone from human dopamine D2 receptor expressed in CHO-K1 cell membranes after 120 mins by liquid scintillation counter method
664672CHEMBL126055862Displacement of [3H]-Spiperone from human dopamine D2L receptor expressed in CHO cells
664673CHEMBL126055962Binding affinity to human 5HT2A receptor
302621CHEMBL83881862Binding affinity determined against human alpha thrombin
878513CHEMBL218817862Displacement of [3H]NECA from human adenosine A3 receptor expressed in CHO cell membrane
878514CHEMBL218817962Displacement of [3H]NECA from human adenosine A2A receptor expressed in CHO cell membrane
878515CHEMBL218818062Displacement of [3H]CCPA from human adenosine A1 receptor expressed in CHO cell membrane
544730CHEMBL101016861Binding affinity to human coagulation factor 10a
303291CHEMBL82828461Inhibition constant against human liver carboxylesterase 1 (hCE1) using nitrophenyl acetate (o-NPA) as substrate
303460CHEMBL83972061Binding affinity towards metabotropic glutamate receptor 2 of rat expressed in CHO cells was determined by using [3H]MGS-0008
303366CHEMBL83968461Inhibition constant against human intestinal carboxylesterase 2 (hiCE) using nitrophenyl acetate (o-NPA) as substrate
613511CHEMBL107227761Displacement of [3H]histamine from human histamine H4 receptor expressed in HEK293T cells
303261CHEMBL82825661Inhibition constant against rabbit liver carboxylesterase (rCE) using nitrophenyl acetate (o-NPA) as substrate
303260CHEMBL82825561Inhibition constant against human Butyrylcholinesterase (hBuChE) using butyrylthiocholine (BuTCh) as substrate
1436945CHEMBL338844361Inhibition of human IDH1 R132H mutant expressed in Escherichia coli BL21-CodonPlus assessed as reduction in NADPH consumption
303216CHEMBL82984161Inhibition constant against human Acetylcholinesterase (hAcChE) using acetylthiocholine (AcTCh) as substrate
556996CHEMBL95818261Displacement of [3H]histamine from human histamine H4 receptor expressed in HEK cells
745548CHEMBL177586561Inhibition of human PI3Kalpha expressed in Sf9 cells
664675CHEMBL126056161Binding affinity to human 5HT1A receptor expressed in HeLa cells by scintillation proximity assay
464863CHEMBL93058060Binding affinity at rat recombinant histamine H3 receptor in rat cortical membranes
635026CHEMBL111857760Displacement of [125I] Tyr-o-CRF from human CRF[125I]receptor expressed in human IMR-3[125I]cells after 100 mins
635521CHEMBL111810460Displacement of [3H]LSD form human recombinant 5HT6 receptor
641177CHEMBL117468460Displacement of [3H](+)-pentazocine from sigma 1 receptor in guinea pig brain membrane
158035CHEMBL76825960Inhibitory activity against HIV-1 protease
1556442CHEMBL377247360Inhibition of recombinant full lenght human PDE4A using fluorescent labeled cAMP as substrate after 15 mins by IMAP assay
325792CHEMBL86269860Inhibitory constant against rabbit cathepsin K using Z-Phe-Arg-AMC substrate
464862CHEMBL93057960Binding affinity at human recombinant histamine H3 receptor expressed in HEK cells
856937CHEMBL216058060Inhibition of human thrombin using fluorogenic Cbz-Gly-Gly-Arg-NH-Mec as substrate measured over 400 secs by spectrophotometry
325793CHEMBL86269960Inhibitory constant against human cathepsin B using Boc-Leu-Lys-Arg-AMC substrate
325794CHEMBL86270060Inhibitory constant against human cathepsin L using Z-Phe-Arg-AMC substrate
872705CHEMBL218468560Displacement of [3H]epibatidine from human alpha7 nAChR expressed in CHO cells after 2 hrs by liquid scintillation counting
375257CHEMBL86748460Displacement of [3H]MRE 3008F20 from human adenosine A3 receptor expressed in CHO cells
936414CHEMBL231740760Displacement of [3H]NMS from human M5 muscarinic receptor expressed in CHO-K1 cells
936415CHEMBL231740860Displacement of [3H]NMS from human M1 muscarinic receptor expressed in CHO-K1 cells
325795CHEMBL86270160Inhibitory constant against human cathepsin S using Z-Val-Val-Arg-AMC substrate
425772CHEMBL85576260Binding affinity to human CCR8 expressed in L1.2 cells by FMAT assay
1527911CHEMBL370516260Binding Assay: Binding assay using Bradykinin-1 receptor.
364154CHEMBL87084460Displacement of [3H]ZM241385 from human adenosine A2b receptor expressed in HEK cells
982934CHEMBL242957459Displacement of [3H]PSB-13253 from human recombinant GPR35 exprssed in CHO cells by liquid scintillation counting analysis
1342913CHEMBL325918859Competitive reversible inhibition of porcine pancreatic kallikrein using alpha-N-benzoyl-DL-arginine-p-nitroanilide hydrochloride as substrate after 15 to 180 mins by Michaelis-Menten plot analysis
448200CHEMBL89846059Displacement of [125I]His5,D-Tyr6]GnRH from human cloned GnRH receptor transfected in COS7 cells
397859CHEMBL85632059Displacement of [125I]NDP-MSH from human MC4R stably expressed in HEK293 cells
1437207CHEMBL338298159Displacement of [3H]-(+)-pentazocine from sigma-1 receptor in Dunkin Hartley guinea pig brain membranes after 180 mins by liquid scintillation counting analysis
1278707CHEMBL309608159Displacement of [3H]PSB-603 from human adenosine A2B receptor
1278706CHEMBL309608059Displacement of [3H]MSX-2 from adenosine A2A receptor in rat brain striatum
1527697CHEMBL370522659Radioligand Binding Assay: The CRTH2 receptor binding assay is performed in a scintillation proximity assay (SPA) format with the radioligand [3H]-PGD2 (Perkin Elmer, NET616000MC). CHO-K1-hCRTH2 cell membranes are again homogenized by passing through a single use needle (Terumo, 23Gx1") and diluted in SPA incubation buffer in suitable concentrations (0.5-10 ug protein/well). The SPA assay is set up in 96 well microtiter plates (Perkin Elmer, Cat No. 6005040) in SPA incubation buffer with a final volume of 200 uL per well and final concentration of 50 mM Tris-HCl, 10 mM MgCl2, 150 mM NaCl, 1 mM EDTA pH 7.4, 0.1% bovine serum albumin). The SPA assay mixture contains 60 ul of the membrane suspension, 80 uL of Wheat Germ Agglutinin coated PVT beads (GE Healthcare, RPNQ-0001, 0.3 mg/well), 40 uL of [3H]-PGD2 diluted in SPA buffer to a final concentration of 1 nM (50 000 dpm) and 20 uL of the test compound (dissolved in dimethylsulfoxide). The SPA assay mixture is incubated for 3 h at room temperature.
1278703CHEMBL309607759Displacement of [3H]PSB-11 from human adenosine A3 receptor expressed in CHO cells
1278708CHEMBL309608259Displacement of [3H]CCPA from human adenosine A1 receptor expressed in CHO cells
1278709CHEMBL309608359Displacement of [3H]CCPA from adenosine A1 receptor in rat brain cortex
629414CHEMBL110576759Binding affinity to human histamine H3 receptor
398818CHEMBL90803859Binding affinity to human MCHR1
1535209CHEMBL370781158Biological Assay: Biological assay using monoamine oxidase or LSD1.
621604CHEMBL111303658Displacement of SST14 from human recombinant SST3 receptor
621603CHEMBL111303558Displacement of SST14 from human recombinant SST2 receptor
1280134CHEMBL309770558Displacement of [3H]methyllycaconitine from alpha7 nAChR in Sprague-Dawley rat forebrain P2 fraction after 90 mins by liquid scintillation counting analysis
1527788CHEMBL370532258Biological Assay: Biological assay using monoamine oxidase or LSD1.
446257CHEMBL89536158Displacement of [125I]neurokinin A from human recombinant NK2 receptor
621599CHEMBL111303158Displacement of SST14 from human recombinant SST5 receptor expressed in CHO cells by radioligand binding assay
1785273CHEMBL425679058Binding affinity to N-terminal 6x-His-SUMO tagged WDR5 delta23 deletion mutant (24 to 334 residues) (unknown origin) expressed in Escherichia coli BL21 (DE3) in presence of FITC-MLL peptide by FPA assay
560532CHEMBL102138258Displacement of radioligand from human recombinant adenosine A2A receptor at 21 degC after 90 mins by cell-based microplate scintillation counting
931327CHEMBL306998458Binding affinity to acetylcholinesterase (unknown origin)
560533CHEMBL102138358Displacement of radioligand from human recombinant adenosine A1 receptor at 21 degC after 90 mins by cell-based microplate scintillation counting
355136CHEMBL85318958Displacement of [3H]nisoxetine from NET
621605CHEMBL111303758Displacement of SST14 from human recombinant SST4 receptor
443964CHEMBL89211157Displacement of [125I][Tyr14]nociceptin FQ from human NOP receptor expressed in CHO cell membrane
1278712CHEMBL309608657Displacement of [3H]MSX-2 from human adenosine A2A receptor expressed in CHO cells
860488CHEMBL216665757Inhibition of human N-terminal poly-His tagged-PI3Kalpha expressed in Sf9 baculovirus system co-expressing p85alpha after 20 mins by AlphaScreen assay
443967CHEMBL89211457Displacement of [3H]diprenorphine from human MOP receptor expressed in CHO cell membrane
860487CHEMBL216665657Inhibition of human N-terminal poly-His tagged-PI3Kbeta expressed in Sf9 baculovirus system co-expressing p85alpha after 20 mins by AlphaScreen assay
355134CHEMBL85318757Displacement of [3H]citalopram from SERT
634857CHEMBL112048957Displacement [3H]Arg human recombinant Vasopressin V2 receptor
634856CHEMBL112048857Displacement [3H]Arg human recombinant Vasopressin V1a receptor
520160CHEMBL94784857Inhibition of human liver CE1-mediated O-nitrophenyl acetate hydrolysis by spectrophotometry
404874CHEMBL86927657Displacement of [125I]NDP-MSH from human MC4R expressed in HEK293 cells
821892CHEMBL203953857Displacement of [3HPGD2 from human CRTH2 receptor expressed in CHO cell membrane after 90 mins by scintillation proximity assay
450409CHEMBL90069357Inhibition of human CB2 receptor expressed in CHO cells
860486CHEMBL216665557Inhibition of human N-terminal poly-His tagged-PI3Kgamma expressed in Sf9 baculovirus system co-expressing p85alpha after 20 mins by AlphaScreen assay
443966CHEMBL89211357Displacement of [3H]diprenorphine from human KOP receptor expressed in CHO cell membrane
685646CHEMBL128554857Inhibition of wild type HIV1 protease by FRET
860485CHEMBL216665457Inhibition of human N-terminal poly-His tagged-PI3Kdelta expressed in Sf9 baculovirus system co-expressing p85alpha after 20 mins by AlphaScreen assay
443965CHEMBL89211257Displacement of [3H]diprenorphine from human DOP receptor expressed in CHO cell membrane
588142CHEMBL104925957Displacement of [3H]CP-55940 from human recombinant CB2 receptor expressed in HEK cells
588141CHEMBL104925857Displacement of [3H]CP-55940 from human recombinant CB1 receptor expressed in HEK cells
1534939CHEMBL370780356Biological Assay: Biological assay using monoamine oxidase or LSD1.
363667CHEMBL85323456Displacement of [3H]BK from human B2 receptor transfected in CHO cells
863118CHEMBL217561656Inhibition of human recombinant DOT1L catalytic domain amino acid (1 to 472) using [3H]-SAM after 30 mins by scintillation counter
363669CHEMBL85323656Binding affinity to human B1 receptor
391331CHEMBL87046756Displacement of [3H]SCH 23390 from human dopamine D1 receptor expressed in CHO cells
1351394CHEMBL326697056Displacement of [3H]PGE2 from human prostanoid EP4 receptor expressed in cell membranes by scintillation counting
1528180CHEMBL370565056Enzyme Assay: All compound solutions are made to a concentration of 10 mM in DMSO. To test the stability of the compounds in enzyme assay conditions, 25 nmoles of the compound are incubated in TME buffer with 0.1% BSA (final volume of 250 uL) for 15 minutes at 37 C. Samples (100 uL) are taken at the start of the assay and after 15 minutes, diluted 1:5 with acetonitrile and centrifuged (20,000 RCF, five minutes, room temperature) to precipitate the proteins. The resulting supernatant is injected onto the HPLC. Calculations for determining the percent compound remaining are described in the following equation:% R=Peak Area (T15)/Peak Area (T0)To determine whether or not the compounds are good substrates for FAAH, 25 nmoles of the compound were incubated with 75 ug enzyme preparation in TME buffer with 0.1% BSA (final volume 250 uL). The reaction mixture is treated in the same manner as described above.
441650CHEMBL89188156Binding affinity for human cloned vasopressin V1a receptor expressed in CHO cells
611932CHEMBL107149356Inhibition of human adenosine 2A receptor
336777CHEMBL86433856Inhibitory activity against Src in cell free assay
303283CHEMBL82827656Inhibition of [3H]ZM-241385 binding to adenosine A2a receptor of rat brain tissue
816345CHEMBL202474356Inhibition of N-terminal hexa-histidine tagged human cloned Eg5 (1 to 368 amino acids) expressed in Escherichia coli BL21 (DE3) assessed as reduction in basal ATPase activity by pyruvate kinase/lactate dehydrogenase-linked assay
373919CHEMBL86854156Inhibition of matriptase
513861CHEMBL97075556Inhibition of rat FAAH expressed in Escherichia coli at pH 9.0
737263CHEMBL161390956PUBCHEM_BIOASSAY: SAR Colorimetric assay for the identification of compounds that inhibit VHR1. (Class of assay: confirmatory) [Related pubchem assays (depositor defined):AID1654, AID1661, AID1878, AID1957, AID1958, AID1992, AID2074, AID2082, AID2083]
391332CHEMBL87046856Displacement of [3H]methylspiperone from human dopamine D2 receptor expressed in CHO cells
1522895CHEMBL363076856Inhibition of recombinant HIV-1 protease expressed in Escherichia coli using Arg-Glu (EDANS)-Ser-Gln-Asn-Tyr-Pro-Ile-Val-Gln Lys(DABCYL)-Arg as substrate by spectrofluorometric analysis
1690030CHEMBL404060056Inhibition of recombinant human N-terminal GST-tagged IKKalpha (1 to 745 residues) expressed in baculovirus expression system using biotinylated IkBalpha as substrate after 60 mins by DELFIA
444276CHEMBL89451655Binding affinity to human cloned adrenergic alpha-1A receptor
444277CHEMBL89451755Binding affinity to human cloned adrenergic alpha-1B receptor
444278CHEMBL89451855Binding affinity to human cloned adrenergic Alpha-1D receptor
469216CHEMBL94891755Inhibition of human alpha-thrombin
1468240CHEMBL341178355Binding affinity to CB2 receptor (unknown origin)
700657CHEMBL164569655Inhibition of human recombinant CA6 by stopped-flow CO2 hydration assay
700655CHEMBL164569455Inhibition of human recombinant CA1 by stopped-flow CO2 hydration assay
700656CHEMBL164569555Inhibition of human recombinant CA2 by stopped-flow CO2 hydration assay
700659CHEMBL164569855Inhibition of Stylophora pistillata carbonic anhydrase 2 by stopped-flow CO2 hydration assay
979771CHEMBL242181655Inhibition of TYK2 (unknown origin) using 5-carboxyfluorescein-VALVDGYFRLTT-NH2 as substrate
362986CHEMBL87124955Inhibition of human recombinant DPP4
700658CHEMBL164569755Inhibition of Stylophora pistillata carbonic anhydrase by stopped-flow CO2 hydration assay
979759CHEMBL242180455Inhibition of JAK1 (unknown origin)
876706CHEMBL218317754Displacement of [3H]CP55940 from human CB2 receptor expressed in CHO cells incubated for 1 hr
302845CHEMBL82789054Binding affinity for Human gonadotropin-releasing hormone receptor
373920CHEMBL86854254Inhibition of uPA
373921CHEMBL86854354Inhibition of plasmin
373922CHEMBL86854454Inhibition of thrombin
373923CHEMBL86854554Inhibition of f10a
438974CHEMBL88931754Inhibition of human F10a
438975CHEMBL88931854Inhibition of human F2a
444279CHEMBL89451954Binding affinity to human dopamine D2 receptor
472994CHEMBL93164154Displacement of [3H]CP-55940 from human recombinant CB2 receptor expressed in HEK cells
472995CHEMBL93164254Displacement of [3H]CP-55940 from human recombinant CB1 receptor expressed in HEK cells
501433CHEMBL99469254Displacement of [3H]LSD from human recombinant 5HT6 receptor
536731CHEMBL98452554Displacement of [3H]paroxetine from serotonin transporter in Sprague-Dawley rat frontal cortical membrane
560534CHEMBL102138454Displacement of radioligand from human recombinant adenosine A2B receptor at 21 degC after 60 mins by cell-based microplate scintillation counting
560535CHEMBL102138554Displacement of radioligand from human recombinant adenosine A3 receptor at 21 degC after 60 mins by cell-based microplate scintillation counting
675412CHEMBL127349254Inhibition of human N-terminal His6-tagged reticulocyte 15-lipoxygenase-1 after 15 mins by UV-vis spectrophotometer analysis
803919CHEMBL195460654Displacement of [3H]methyllylcaconitine from alpha7 nAChR in rat brain
876705CHEMBL218281854Displacement of [3H]CP55940 from human CB1 receptor expressed in CHO cells incubated for 1 hr
979760CHEMBL242180554Inhibition of JAK2 (unknown origin)
1503354CHEMBL359074554Displacement of (-)-[3H]vesamicol from rat VAChT expressed in PC12 cell membranes incubated for 2 hrs by liquid scintillation counting based competitive radioligand binding assay
1503356CHEMBL359085954Displacement of (-)-[3H]pentazocine from sigma1 receptor in Sprague-Dawley rat cortical membranes incubated for 2 hrs by liquid scintillation counting based competitive radioligand binding assay
1528733CHEMBL370589254Radioligand Binding: The TAAR1 radioligand 3[H](S)-4-[(ethyl-phenyl-amino)-methyl]-4,5-dihydro-oxazol-2-ylamine (described in WO 2008/098857) was used at a concentration equal to the calculated Kd value, that was usually around 2.3 nM, resulting in the binding of approximately 0.2% of the radioligand and a specific binding representing approximately 85% of the total binding. Nonspecific binding was defined as the amount of 3-[H]-(S)-4-[(ethyl-phenyl-amino)-methyl]-4,5-dihydro-oxazol-2-ylamine bound in the presence of 10 uM unlabeled ligand. All compounds were tested at a broad range of concentrations (10 pM to 10 uM) in duplicates. The test compounds (20 ul/well) were transferred into a 96 deep well plate (TreffLab), and 180 ul of HEPES-NaOH (20 mM, pH 7.4) containing MgCl2 (10 mM) and CaCl2 (2 mM) (binding buffer), 300 ul of the radioligand 3[H](S)-4-[(ethyl-phenyl-amino)-methyl]-4,5-dihydro-oxazol-2-ylamine at a concentration of 3.3Kd in nM.
1528734CHEMBL370589354Radioligand Binding: The TAAR1 radioligand 3[H](S)-4-[(ethyl-phenyl-amino)-methyl]-4,5-dihydro-oxazol-2-ylamine (described in WO 2008/098857) was used at a concentration equal to the calculated Kd value, that was usually around 0.7 nM, resulting in the binding of approximately 0.5% of the radioligand and a specific binding representing approximately 70% of the total binding. Nonspecific binding was defined as the amount of 3[H](S)-4-[(ethyl-phenyl-amino)-methyl]-4,5-dihydro-oxazol-2-ylamine bound in the presence of 10 uM unlabeled ligand. All compounds were tested at a broad range of concentrations (10 uM to 10 uM) in duplicates. The test compounds (20 ul/well) were transferred into a 96 deep well plate (Treff Lab), and 180 ul of HEPES-NaOH (20 mM, pH 7.4) containing MgCl2 (10 mM) and CaCl2 (2 mM) (binding buffer), 300 ul of the radioligand 3[H](S)-4-[(ethyl-phenyl-amino)-methyl]-4,5-dihydro-oxazol-2-ylamine at a concentration of 3.3 Kd in nM.
1776530CHEMBL423352254Displacement of [3H]-Nalpha-methylhistamine from human histamine H3 receptor expressed in HEK293 cell membranes
1344334CHEMBL325700453Reversible competitive inhibition of boar spermatozoa acrosin using BzArgOEt as substrate by Dixon plot analysis
873559CHEMBL218747653Displacement of [3H]epibatidine from human alpha7 nAChR expressed in human HEK/RIC3 cells
769241CHEMBL183307853Displacement of [3H]PK11195 from TSPO receptor in rat kidney membranes
990337CHEMBL244575053Displacement of [3H]-CP55940 from CB1 receptor in rat brain homogenate after 1.5 hrs by microbeta liquid scintillation counting analysis
990336CHEMBL244574953Displacement of [3H]-CP55940 from human CB2 receptor expressed in HEK293 cells after 1.5 hrs by microbeta liquid scintillation counting analysis
384211CHEMBL86858153Binding affinity to human 5HT2C receptor
384212CHEMBL86858253Binding affinity to human 5HT2A receptor
384213CHEMBL86858353Binding affinity to human 5HT2B receptor
411464CHEMBL85386153Displacement of [125I]motilin from human MOTR
425512CHEMBL90960253Displacement of Bax-derived peptide from Bcl2 by fluorescence polarization assay
1352081CHEMBL326734653Inhibition of human recombinant adenosine receptor A2b
554819CHEMBL95397253Displacement of [3H]CP-55940 from human CB2 receptor
536733CHEMBL98452753Displacement of [3H]8-OH-DPAT from human cloned 5HT1A receptor expressed in CHO cells
447747CHEMBL89564153Displacement of [125I]NDP-alphaMSH from human melanocortin 4 receptor expressed in CHOK1 cells
157733CHEMBL76517153Inhibitory activity against HIV protease
52222CHEMBL66397253In vitro binding affinity towards Cysteinyl leukotriene D4 receptor by using [3H]LTD4 binding assay in guinea pig lung membranes
470061CHEMBL93343953Inhibition of human factor 10a
1638156CHEMBL388121753Displacement of [3H]-PGD2 from PGD2 receptor in human platelet membranes after 2 hrs by micro beta scintillation counting analysis
856369CHEMBL216072453Binding affinity to human CCR3 expressed in CHOK1 cells by radioligand displacement assay
1671313CHEMBL402134253Displacement of [3H]-MRS-1754 from human adenosine A2B receptor expressed in HEK293 cell membranes after 90 mins
1352085CHEMBL326735052Inhibition of human recombinant adenosine A3 receptor
1330007CHEMBL322251552Displacement of [3H]CP55,940 from human recombinant CB1 receptor expressed in CHO-K1 cells
1527992CHEMBL370591252Binding Assay: Evaluation of the affinity of compounds for the human MCH-1 receptor was accomplished using 4-(3,4,5-tritritiumbenzyloxy)-1-(1-(2-(pyrrolidin-1-yl)ethyl)-1H-indazol-5-yl)pyridin-2(1H)-one and membranes prepared from stable CHO-K1 cells expressing the human MCH1 receptor obtained from Euroscreen (Batch 1138).
1330005CHEMBL322251352Displacement of [3H]CP55,940 from human recombinant CB2 receptor expressed in HEK293 cells
873597CHEMBL218788652Displacement of [3H]BMS-599240 from BACE1 expressed in HEK293 cells
859794CHEMBL216962252Displacement of [3H]CP-55940 from CB1 receptor in Sprague-Dawley rat brain by scintillation counting
859793CHEMBL216962152Displacement of [3H]CP-55940 from CB2 receptor in Sprague-Dawley rat spleen by scintillation counting
859792CHEMBL216962052Displacement of [3H]CP-55940 from human recombinant CB2 receptor expressed in CHO cell membranes incubated for 60 mins by scintillation counting
859791CHEMBL216961952Displacement of [3H]CP-55940 from human recombinant CB1 receptor expressed in CHO cell membranes incubated for 90 mins by scintillation counting
835846CHEMBL207195752Inhibition of KDM4C catalytic core-mediated demethylation of ARK(Me)3STGGK after 30 mins by FDH-coupled assay
801859CHEMBL194747152Displacement of [3H]WIN35428 from human cloned DAT receptor expressed in human HEK293 cells
790253CHEMBL192564652Displacement of [125I-His9]-ghrelin from human GRLN receptor by radioligand binding assay
699418CHEMBL164744552Displacement of [3H]Tiagabine from human recombinant GAT1 expressed in HEK293 cells by equilibrium binding assay
665493CHEMBL126132452Displacement of [125I]-cyanopindolol from human adrenergic beta3 receptor expressed in CHO cells
554820CHEMBL95397352Displacement of [3H]CP-55940 from human CB1 receptor
497564CHEMBL99862152Displacement of [125I]CXCL10 from human CXCR3 expressed in HEK293T cells
475717CHEMBL93460352Displacement of [3H]histamine from human histamine H4 receptor expressed in HEK293T cells
450845CHEMBL89993152Displacement of [125I]NDP-MSH from human MC4 receptor expressed in HEK293 cells
448716CHEMBL89786252Displacement of [3H]LSD from cloned human 5HT6 expressed in HeLa cells
436469CHEMBL90477652Inhibition of Plasmodium falciparum recombinant enoyl ACP reductase expressed in BL21 (DE3) cells with respect to crotonyl CoA
425511CHEMBL90960152Displacement of Bad-derived peptide from Bcl-xL by fluorescence polarization assay
396128CHEMBL91034952Inhibition of [3H]diprenorphine binding to human KOR expressed in CHO cells
370710CHEMBL86723352Displacement of [3H]N-alpha-methylhistamine from human cloned H3 receptor
361059CHEMBL85918152Displacement of [3H]methoxyPEPy from rat mGluR5 expressed in HEK293 cells
1681750CHEMBL403202752Inhibition of human factor 11a using pyro-Glu-Pro-Arg-pNA as substrate at 37 degC after 10 to 120 mins by spectrophotometric method
327232CHEMBL86513152Inhibitory activity against human glutaminyl cyclase
304037CHEMBL84021552Inhibition constant against [3H]-spiperone binding to human Dopamine receptor D3 expressed in CHO cells
157714CHEMBL76338852Inhibition constant against HIV-1 Protease
1444591CHEMBL337541052Displacement of [3H]CP55940 from human CB1R expressed in CHO cells
1444590CHEMBL337540952Displacement of [3H]WIN-55212-2 from human CB2R expressed in CHO cells
613740CHEMBL106888751Displacement of [3H]nisoxetine from human recombinant NET expressed in BacMam virus-transduced cells by scintillation proximity assay
613741CHEMBL106888851Displacement of [3H]citalopram from human recombinant SERT expressed in BacMam virus-transduced cells by scintillation proximity assay
1772843CHEMBL422983551Displacement of [3H]-LSD from human 5-HT6R expressed in HEK293 cell membranes after 1 hr at 37 degC by microbeta counting method
1790426CHEMBL426234551Displacement of [3H]-(+)-pentazocine from human sigma 1 receptor transfected in HEK293 cells after 120 mins by liquid scintillation counting method
1772844CHEMBL422983651Displacement of [3H]-8-OH-DPAT from human 5-HT1AR expressed in HEK293 cell membranes after 1 hr by microbeta counting method
344236CHEMBL86775551Inhibition of bovine CA4
344235CHEMBL87070951Inhibition of human CA2
335548CHEMBL85941451Displacement of [3H]L-leucine from alpha-2delta containing calcium channel in murine brain
36514CHEMBL65016951Inhibitory activity of compound against HIV-1 aspartyl protease.
1772845CHEMBL422983751Displacement of [3H]-5-CT from human 5-HT7R expressed in HEK293 cell membranes after 1 hr at 37 degC by microbeta counting method
457478CHEMBL94199651Displacement of [3H]dexamethasone from human glucocorticoid receptor expressed in recombinant baculovirus
1772846CHEMBL422983851Displacement of [3H]-raclopride from human D2LR expressed in HEK293 cell membranes after 1 hr at 37 degC by microbeta counting method
1790472CHEMBL426239151Displacement of [3H]-(+)-pentazocine from recombinant human sigma1 receptor expressed in HEK293 cell membranes after 120 mins by microbeta scintillation counting method
1571915CHEMBL379630751Displacement of [3H]-Spiperone from human recombinant dopamine D4 receptor expressed in CHOK1 cells
513860CHEMBL97075451Inhibition of rat FAAH expressed in Escherichia coli
436470CHEMBL90477551Inhibition of Plasmodium falciparum recombinant enoyl ACP reductase expressed in BL21 (DE3) cells with respect to NADH
932187CHEMBL307310551Binding affinity to dopamine D2 receptor (unknown origin)
587702CHEMBL103771651Displacement of [3H]CCPA from human adenosine A1 receptor expressed in CHO cells
953474CHEMBL235108551Displacement of [125I]-CX3CL1 from human CX3CR1 transfected in HEK293 cells after 24 hrs by scintillation counting analysis
422416CHEMBL90985151Displacement of [3H]diprenorphine from human cloned mu opioid receptor expressed in CHO cells
610979CHEMBL107031051Displacement of [3H]PGE2 from mouse EP3 receptor expressed in CHO cell membrane
1772842CHEMBL422983451Displacement of [3H]-ketanserin from human 5-HT2AR expressed in CHO-K1 cell membranes after 1.5 hrs by microbeta counting method
613739CHEMBL106888651Displacement of [3H]WIN-35428 from human recombinant DAT expressed in BacMam virus-transduced cells by scintillation proximity assay
" ], "text/plain": [ "[(1528353, 'CHEMBL3706284', 98, \"Radioligand Binding Assay: HEK293 stably expressing human orexin 2 receptor (Genebank accession numberNM_001526) were grown to confluency in DMEM (Hy ... (715 characters truncated) ... petition binding experiments in 96 well polypropylene plates were performed using [3H]-EMPA (Moraveck Corporation, specific activity = 29.6 Ci/mmol).\"),\n", " (1527605, 'CHEMBL3705289', 97, 'Binding assay: Binding assay was performed at 4 C. in a final volume of 1 ml, and with an incubation time of 30 min. The radioligand [3H]-rac-2-(1,2, ... (483 characters truncated) ... ide range of concentrations (10 μM-30 μM). The final dimethylsulphoxide concentration in the assay was 2%, and it did not affect radioligand binding.'),\n", " (1537148, 'CHEMBL3734283', 97, 'Inhibition of human GRK2 after 90 to 120 mins by Kinase-Glo assay'),\n", " (1535508, 'CHEMBL3707832', 95, 'Radioligand Binding Assay: Aliquots of membrane preparations were thawed at RT, resupended in assay buffer (D2, D3: 50 mM Tris-HCl, 120 mM NaCl, 5 mM ... (679 characters truncated) ... for 1 h at RT. At the end of the incubation, the reaction mixtures were filtered on to unifilter 96-well white microplates with bonded GF/C filters.'),\n", " (1547124, 'CHEMBL3755859', 95, 'Competitive inhibition of human aromatase extracted from placental microsomes after 5 mins by Dixon plot analysis in presence of [1beta-3H]AD'),\n", " (1528370, 'CHEMBL3705383', 95, 'Radioligand Binding Assay: Aliquots of membrane preparations were thawed at RT, resupended in assay buffer (D2, D3: 50 mM Tris-HCl, 120 mM NaCl, 5 mM ... (679 characters truncated) ... for 1 h at RT. At the end of the incubation, the reaction mixtures were filtered on to unifilter 96-well white microplates with bonded GF/C filters.'),\n", " (1535361, 'CHEMBL3707859', 95, 'Radioligand Binding Assay: Aliquots of membrane preparations were thawed at RT, resupended in assay buffer (D2, D3: 50 mM Tris-HCl, 120 mM NaCl, 5 mM ... (679 characters truncated) ... for 1 h at RT. At the end of the incubation, the reaction mixtures were filtered on to unifilter 96-well white microplates with bonded GF/C filters.'),\n", " (444873, 'CHEMBL894022', 94, 'Inhibition of human recombinant MetAP2'),\n", " (1613477, 'CHEMBL3855277', 94, 'Displacement of [3H]-spiperone from human dopamine D3 receptor expressed in CHO-K1 cell membranes after 90 mins by liquid scintillation counting'),\n", " (1528694, 'CHEMBL3705468', 94, 'Radioligand Binding Assay: Radioligand binding assays for cloned muscarinic receptors were performed in 96-well microtiter plates in a total assay vo ... (671 characters truncated) ... centrations ranging from 0.001 nM to 20 nM.Displacement assays for determination of Ki values of test compounds were performed with [3H]-NMS at 1 nM.'),\n", " (1613478, 'CHEMBL3855278', 93, 'Displacement of [3H]-spiperone from human dopamine D2 receptor expressed in CHO-K1 cell membranes coexpressing Galpha16 after 120 mins by liquid scintillation counting'),\n", " (464889, 'CHEMBL949088', 92, 'Inhibition of rat recombinant FAAH expressed in Escherichia coli'),\n", " (1527832, 'CHEMBL3705059', 92, 'Radioligand Binding Assay: Radioligand binding assay using muscarinic receptors.'),\n", " (437192, 'CHEMBL906590', 92, 'Displacement of [125I]MCH from MCHR1 expressed in CHO cells'),\n", " (302650, 'CHEMBL839940', 92, 'Binding affinity for human glycogen synthase kinase 3 beta'),\n", " (302524, 'CHEMBL827377', 91, 'Binding affinity for human cyclin-dependent kinase 2'),\n", " (303563, 'CHEMBL828963', 91, 'Inhibition of [125I]eotaxin-1 binding to human chemokine receptor (hCCR3-C1)'),\n", " (213236, 'CHEMBL821446', 88, 'Binding affinity towards trypsin'),\n", " (1528352, 'CHEMBL3706283', 88, \"Radioligand Binding Assay: Human Embryonic Kidney 293 cells (HEK293) stably expressing rat orexin 1 receptor(Genebank accession number NM_001525) or ... (710 characters truncated) ... sence of 1 tablet of protease inhibitor cocktail (Roche, Cat. #1 1836145001) per 50 mL. Each cell pellet from a 15 cm plate was resuspended in 10 mL.\"),\n", " (1537103, 'CHEMBL3734209', 88, 'Displacement of [3H]-PrRP from human GPR10 receptor expressed in HEK293 cell membranes incubated for 90 mins by liquid scintillation counting method'),\n", " (1535076, 'CHEMBL3707804', 88, 'Radioligand Binding Assay: liquots of membrane preparations were thawed at RT, resuspended in assay buffer (D2, D3: 50 mM Tris-HCl, 120 mM NaCl, 5 mM ... (691 characters truncated) ... for 1 h at RT. At the end of the incubation, the reaction mixtures were filtered on to unifilter 96-well white microplates with bonded GF/C filters.'),\n", " (1535965, 'CHEMBL3707598', 88, 'Radioligand Binding Assay: liquots of membrane preparations were thawed at RT, resuspended in assay buffer (D2, D3: 50 mM Tris-HCl, 120 mM NaCl, 5 mM ... (691 characters truncated) ... for 1 h at RT. At the end of the incubation, the reaction mixtures were filtered on to unifilter 96-well white microplates with bonded GF/C filters.'),\n", " (1528654, 'CHEMBL3706129', 87, 'Radioligand Binding Assay: liquots of membrane preparations were thawed at RT, resuspended in assay buffer (D2, D3: 50 mM Tris-HCl, 120 mM NaCl, 5 mM ... (691 characters truncated) ... for 1 h at RT. At the end of the incubation, the reaction mixtures were filtered on to unifilter 96-well white microplates with bonded GF/C filters.'),\n", " (303638, 'CHEMBL828848', 86, 'Inhibitory constant determined against recombinant Fatty-acid amide hydrolase from rat expressed in Escherichia coli'),\n", " (1620948, 'CHEMBL3863231', 86, 'Displacement of [3H]rosiglitazone from recombinant human C-terminal His-tagged MitoNEET cytosolic domain (32 to 108 residues) expressed in Escherichia coli BL21 by Cheng-Prusoff analysis'),\n", " (1332011, 'CHEMBL3223904', 85, 'Antagonist activity at human adenosine A1 receptor expressed in CHO-K1 cells preincubated for 15 mins before r-PIA addition measured after 5.5 to 6 hrs by beta-galactosidase reporter gene assay'),\n", " (1637967, 'CHEMBL3881028', 85, 'Inhibition of full length human C-terminal 6His-tagged CHK1 expressed in baculovirus/insect expression system assessed as reduction in NADH oxidation using Syntide2 as substrate by pyruvate kinase/lactate dehydrogenase coupled assay'),\n", " (304044, 'CHEMBL840221', 85, 'Binding affinity against Opioid receptor kappa 1 from guinea pig brain membranes using [3H]U-69593'),\n", " (304036, 'CHEMBL840214', 84, 'Binding affinity against Opioid receptor mu 1 from rat brain membranes using [3H]DAMGO'),\n", " (303375, 'CHEMBL839693', 84, 'Binding affinity for human tachykinin receptor 2 was measured by using [125I]NKA as radio ligand'),\n", " (609034, 'CHEMBL1064501', 84, 'Inhibition of human P2Y12 receptor expressed in CHO cells'),\n", " (444902, 'CHEMBL894050', 82, 'Inhibition of ENT1 in human K562 cells by flow cytometric assay'),\n", " (1366808, 'CHEMBL3297243', 82, 'Displacement of [3H]ketanserin from human recombinant 5-HT2A receptor expressed in CHO-K1 cell membrane after 60 mins by liquid scintillation counting analysis'),\n", " (1366806, 'CHEMBL3297241', 82, 'Displacement of [3H]LSDm from human recombinant 5-HT6 receptor expressed in HEK293 cell membrane after 60 mins by liquid scintillation counting analysis'),\n", " (1366807, 'CHEMBL3297242', 82, 'Displacement of [3H]LSD from human recombinant 5-HT7 receptor expressed in CHO-K1 cell membrane after 120 mins by liquid scintillation counting analysis'),\n", " (1366809, 'CHEMBL3297244', 82, 'Displacement of [3H]N-methylspiperone from human recombinant D2 receptor expressed in CHO-K1 cell membrane after 60 mins by liquid scintillation counting analysis'),\n", " (1659425, 'CHEMBL4009037', 81, 'Displacement of [3H]-LSD from recombinant human 5-HT6 receptor expressed in HEK293 cells after 60 mins'),\n", " (418719, 'CHEMBL912951', 80, 'Displacement of [125I]CCK-8S from human CCK2R'),\n", " (981861, 'CHEMBL2427556', 80, 'Binding affinity to human adenosine A3 receptor'),\n", " (1535759, 'CHEMBL3707774', 79, 'Radioligand Binding: The binding of [3H]MLA was measured using a modification of the methods of Davies et al., Neuropharmacol. 38: 679 (1999). [3H]ML ... (656 characters truncated) ... er was washed with PBS (3x1 mL) at room temperature. Non-specific binding was determined by inclusion of 50 uM non-radioactive MLA in selected wells.'),\n", " (429601, 'CHEMBL919033', 79, 'Displacement of [3h]DPCPX from adenosine A receptor in rat cerebral cortex membrane'),\n", " (1528657, 'CHEMBL3706132', 79, 'Radioligand Binding: The binding of [3H]MLA was measured using a modification of the methods of Davies et al., Neuropharmacol. 38: 679 (1999). [3H]ML ... (656 characters truncated) ... er was washed with PBS (3x1 mL) at room temperature. Non-specific binding was determined by inclusion of 50 uM non-radioactive MLA in selected wells.'),\n", " (583010, 'CHEMBL1051848', 79, 'Displacement of [H]GR-113808 from human 5HT4C receptor expressed in HEK293 cells by liquid scintillation counting'),\n", " (1527942, 'CHEMBL3705629', 79, 'Biochemical Assay: The ability of the compounds to bind to the 5-HT2A, D3 and D2 receptors was determined using radioligand binding to cloned receptors selectively expressed in HEK-293 EBNA cells.'),\n", " (429600, 'CHEMBL919032', 79, 'Displacement of [3H]ZM241385 from adenosine A2A receptor in rat brain membrane'),\n", " (1535083, 'CHEMBL3707825', 79, 'Biochemical Assay: The ability of the compounds to bind to the 5-HT2A, D3 and D2 receptors was determined using radioligand binding to cloned receptors selectively expressed in HEK-293 EBNA cells.'),\n", " (1535448, 'CHEMBL3707696', 79, 'Biochemical Assay: The ability of the compounds to bind to the 5-HT2A, D3 and D2 receptors was determined using radioligand binding to cloned receptors selectively expressed in HEK-293 EBNA cells.'),\n", " (1527798, 'CHEMBL3705339', 78, 'Enzymatic Assay: The enzymatic activity of PAK4 KD was measured by its ability to catalyzed the transfer of a phosphate residue from a nucleoside triphosphate to an amino acid side chain of a commercially available peptide (amino acid sequence EVPRRKSLVGTPYWM).'),\n", " (1637416, 'CHEMBL3880477', 78, 'Displacement of [3H]-2-[4-(3-azidophenyl)-2-oxo-1-pyrrolidinyl]butanamide from SV2A levetiracetam binding site in Sprague-Dawley rat cerebral cortex membranes after 120 mins by liquid scintillation counting method'),\n", " (880272, 'CHEMBL2215850', 78, 'Displacement of [125I]-CXCL10 from human CXCR3 expressed in HEK293 cells'),\n", " (1534795, 'CHEMBL3707798', 77, 'Radioligand Binding Assay: Aliquots of membrane preparations were thawed at RT, resupended in assay buffer (D2, D3: 50 mM Tris-HCl, 120 mM NaCl, 5 mM ... (546 characters truncated) ... [3H]-spiperone for D3, and 1.1 nM [3H]-ketanserin for 5-HT2A) and ten concentrations of test compound in ranging between 10 μM-0.1 nM for 1 h at RT.'),\n", " (1638066, 'CHEMBL3881127', 77, 'Inhibition of recombinant MCH5 (unknown origin) pre-incubated for 60 mins with Acetyl-Tyr-Val-Ala-Asp-amino-4-methylcoumarin substrate followed by enzyme addition by fluorescence based assay'),\n", " (1638064, 'CHEMBL3881125', 77, 'Inhibition of recombinant MCH2 (unknown origin) pre-incubated for 60 mins with Acetyl-Tyr-Val-Ala-Asp-amino-4-methylcoumarin substrate followed by enzyme addition by fluorescence based assay'),\n", " (1638062, 'CHEMBL3881123', 77, 'Inhibition of recombinant CPP32 (unknown origin) pre-incubated for 60 mins with Acetyl-Tyr-Val-Ala-Asp-amino-4-methylcoumarin substrate followed by enzyme addition by fluorescence based assay'),\n", " (1638060, 'CHEMBL3881121', 77, 'Inhibition of mouse recombinant ICE pre-incubated for 60 mins with Acetyl-Tyr-Val-Ala-Asp-amino-4-methylcoumarin substrate followed by enzyme addition by fluorescence based assay'),\n", " (418718, 'CHEMBL913512', 77, 'Displacement of [125I]CCK-8S from human CCK1R'),\n", " (471789, 'CHEMBL939997', 77, 'Displacement of [3H]DPCPX from human adenosine A2B receptor expressed in HEK293 cells'),\n", " (1535789, 'CHEMBL3707837', 77, 'Radioligand Binding Assay: Aliquots of membrane preparations were thawed at RT, resupended in assay buffer (D2, D3: 50 mM Tris-HCl, 120 mM NaCl, 5 mM ... (546 characters truncated) ... [3H]-spiperone for D3, and 1.1 nM [3H]-ketanserin for 5-HT2A) and ten concentrations of test compound in ranging between 10 μM-0.1 nM for 1 h at RT.'),\n", " (855538, 'CHEMBL2162843', 77, 'Displacement of [3H]-5-CT from human 5-HT7b receptor expressed in HEK293 cells after 1 hr'),\n", " (1528852, 'CHEMBL3706025', 77, 'In Vitro Assay: The effectiveness of compounds of the present invention as inhibitors of the coagulation Factors XIa, VIIa, IXa, Xa, XIIa, plasma kal ... (684 characters truncated) ... absorbance or fluorescence change in the presence of inhibitor is indicative of enzyme inhibition. Such methods are known to one skilled in the art.'),\n", " (1528054, 'CHEMBL3705361', 77, 'Radioligand Binding Assay: Aliquots of membrane preparations were thawed at RT, resupended in assay buffer (D2, D3: 50 mM Tris-HCl, 120 mM NaCl, 5 mM ... (546 characters truncated) ... [3H]-spiperone for D3, and 1.1 nM [3H]-ketanserin for 5-HT2A) and ten concentrations of test compound in ranging between 10 μM-0.1 nM for 1 h at RT.'),\n", " (743931, 'CHEMBL1767925', 76, 'Inhibition of full-length human FAAH expressed in COS-7 cells assessed as [14C]-labeled oleamide to oleic acid conversion'),\n", " (1699615, 'CHEMBL4050597', 75, 'Inhibition of recombinant human furin expressed in drosophila S2 cells using pyrGlu-Arg-Thr-Lys-Arg-7-amido-4-methylcoumarin as substrate after 60 mins by spectrofluorometry method'),\n", " (55071, 'CHEMBL668388', 75, 'Inhibitory activity against Lactobacillus casei dihydrofolate reductase (DHFR)'),\n", " (53631, 'CHEMBL666660', 75, 'Inhibitory activity against isolated chicken liver dihydrofolate reductase (DHFR)'),\n", " (634304, 'CHEMBL1120717', 75, 'Displacement of [3H]N-alpha-methylhistamine from human cloned histamine H3 receptor'),\n", " (634305, 'CHEMBL1120718', 75, 'Displacement of [3H]N-alpha-methylhistamine from rat cloned histamine H3 receptor'),\n", " (634306, 'CHEMBL1120719', 75, 'Displacement of [3H]dofetilide from human ERG expressed in HEK293 cells'),\n", " (1636657, 'CHEMBL3879555', 75, 'Inhibition of human dihydroorotate dehydrogenase assessed as reduction in orotate production using L-dihydroorotate as substrate measured after 20 mins by spectrophotometric method'),\n", " (303258, 'CHEMBL826384', 75, 'Inhibition of [3H]LSD binding to human 5-hydroxytryptamine 6 receptor expressed in HEK293 cells'),\n", " (513112, 'CHEMBL973601', 75, 'Binding affinity to human MC4 receptor'),\n", " (1699614, 'CHEMBL4050596', 75, 'Inhibition of recombinant human PACE4 expressed in drosophila S2 cells using pyrGlu-Arg-Thr-Lys-Arg-7-amido-4-methylcoumarin as substrate after 60 mins by spectrofluorometry method'),\n", " (1527621, 'CHEMBL3705078', 75, 'Radioligand Binding Assay: The TAAR1 radioligand 3[H]-(S)-4-[(ethyl-phenyl-amino)-methyl]-4,5-dihydro-oxazol-2-ylamine (described in WO 2008/098857) ... (254 characters truncated) ... g was defined as the amount of 3[H]-(S)-4-[(ethyl-phenyl-amino)-methyl]-4,5-dihydro-oxazol-2-ylamine bound in the presence of 10 μM unlabeled ligand.'),\n", " (1528160, 'CHEMBL3705369', 74, 'Inhibition Assay: Using a 96 well plate (#3915, Costar), a test compound (25 μL) was mixed with 20 μM fluorescence enzyme substrate (Boc-Phe-Ser-Arg- ... (144 characters truncated) ... cular Devices, Inc.), the reaction rate was measured from the time-course changes at excitation wavelength 355 nm and fluorescence wavelength 460 nm.'),\n", " (447824, 'CHEMBL898074', 74, 'Inhibition of human factor 10a'),\n", " (1527780, 'CHEMBL3705314', 74, 'Glucagon SPA Assay: The Glucagon SPA assay is used to determine the ability of test compounds to block the binding of glucagon-cex to the glucagon receptors.'),\n", " (1528161, 'CHEMBL3705370', 74, 'Inhibition Assay: Using a 96 well plate (#3915, Costar), a test compound (25 μL), 400 mM Tris-HCl buffer (pH 8.0, 25 μL) and 0.5 mg/mL fluorescence e ... (196 characters truncated) ... cular Devices, Inc.), the reaction rate was measured from the time-course changes at excitation wavelength 320 nm and fluorescence wavelength 405 nm.'),\n", " (585133, 'CHEMBL1060022', 74, 'Binding affinity to human recombinant P2Y12 receptor expressed in CHO cells'),\n", " (1527622, 'CHEMBL3705079', 74, 'Radioligand Binding Assay: The TAAR1 radioligand 3[H]-(S)-4-[(ethyl-phenyl-amino)-methyl]-4,5-dihydro-oxazol-2-ylamine (described in WO 2008/098857) ... (254 characters truncated) ... g was defined as the amount of 3[H]-(S)-4-[(ethyl-phenyl-amino)-methyl]-4,5-dihydro-oxazol-2-ylamine bound in the presence of 10 μM unlabeled ligand.'),\n", " (371466, 'CHEMBL864183', 74, 'Displacement of [3H]progesterone from Progesterone receptor'),\n", " (1528930, 'CHEMBL3705777', 73, 'Radioligand Binding Assay: Radioligand binding assays (screening and dose-displacement) used 0.1 nM [3H]-nociceptin (NEN; 87.7 Ci/mmole) with 10-20 u ... (640 characters truncated) ... quently dried at 50 C. for 2-3 hrs. Fifty L/well scintillation cocktail (BetaScint; Wallac) was added and plates were counted in a Packard Top-Count.'),\n", " (458669, 'CHEMBL942952', 73, 'Displacement of [12]NDPMSH from human MC4R expressed in HEK293 cells'),\n", " (1536128, 'CHEMBL3707656', 73, \"Radioligand Binding Assay: Human Embryonic Kidney 293 cells (HEK293) stably expressing rat orexin 1 receptor(Genebank accession number NM_001525) or ... (710 characters truncated) ... sence of 1 tablet of protease inhibitor cocktail (Roche, Cat. #1 1836145001) per 50 mL. Each cell pellet from a 15 cm plate was resuspended in 10 mL.\"),\n", " (54734, 'CHEMBL667185', 73, 'Negative logarithm of inhibition constant (-log Ki) against Dihydrofolate reductase in Escherichia coli'),\n", " (320876, 'CHEMBL884801', 73, 'Displacement of [3H]LSD from cloned human 5-hydroxytryptamine 6 receptor expressed in HeLa cells'),\n", " (1522886, 'CHEMBL3630759', 72, 'Antagonist activity at human TRPV1 heterologously expressed in CHO cells assessed as inhibition of capsaicin-induced activation by FLIPR assay'),\n", " (861906, 'CHEMBL2173634', 72, 'Displacement of [3H](+)pentazocine from human sigma 1 receptor transfected in HEK293 cell membranes after 120 mins by scintillation counter'),\n", " (1644378, 'CHEMBL3993307', 72, 'Inhibition of human beta factor 12a using fluorogenic substrate Boc-Gln-Gly-Arg-AMC preincubated for 10 mins followed by addition of substrate measured every min for 30 mins'),\n", " (54735, 'CHEMBL667186', 72, 'Inhibition constant against binding of Escherichia coli dihydrofolate reductase'),\n", " (303552, 'CHEMBL828952', 71, 'Inhibitory constant against [3H]methyllycaconitine binding towards Nicotinic acetylcholine receptor alpha-7 of rat brain hippocampus'),\n", " (570539, 'CHEMBL1026911', 71, 'Displacement of [3H]CP-55940 from human cloned CB2 receptor by filtration assay'),\n", " (570538, 'CHEMBL1026910', 71, 'Displacement of [3H]CP-55940 from CB1 receptor in rat brain by filtration assay'),\n", " (54926, 'CHEMBL667222', 71, 'Inhibitory activity against Lactobacillus casei dihydrofolate reductase'),\n", " (53614, 'CHEMBL661844', 71, 'Inhibitory activity against chicken liver dihydrofolate reductase'),\n", " (304043, 'CHEMBL877110', 70, 'Inhibition of [3H]mibolerone binding to cytosolic androgen receptor of rat ventral prostate'),\n", " (588710, 'CHEMBL1059319', 70, 'Inhibition of human PIM1 by scintillation counting'),\n", " (588709, 'CHEMBL1059318', 70, 'Inhibition of human PIM2 by scintillation counting'),\n", " (828300, 'CHEMBL2050319', 70, 'Displacement of [3H]histamine from human histamine H4 receptor expressed in HEK cells'),\n", " (605406, 'CHEMBL1073400', 70, 'Displacement of radioligand from human adenosine A1 receptor expressed in cells by topcount microplate scintillation counting'),\n", " (605405, 'CHEMBL1073399', 70, 'Displacement of radioligand from human adenosine A2A receptor expressed in cells by topcount microplate scintillation counting'),\n", " (596087, 'CHEMBL1040875', 69, 'Displacement of [3H]CP-55940 from human recombinant CB2 receptor expressed in HEK293 cells'),\n", " (596088, 'CHEMBL1040876', 69, 'Displacement of [3H]CP-55940 from human recombinant CB1 receptor expressed in CHO cells'),\n", " (478840, 'CHEMBL925727', 69, 'Displacement of [3H]PGD2 from human CRTH2 receptor expressed in CHO cells'),\n", " (934321, 'CHEMBL2320307', 69, 'Displacement of FITC-AHx-KALETLRRVGDGVQRNHETAF-NH2 from human MCl1 (172 to 327) expressed in Escherichia coli BL21 (DE3) after 1 hr by fluorescence polarization anisotropy assay'),\n", " (212325, 'CHEMBL818251', 68, 'Inhibitory constant against bovine trypsin for general specificity against serine proteases'),\n", " (877370, 'CHEMBL2182415', 68, 'Displacement of [3H]epibatidine form human alpha7 nAchR expressed in HEK293 cells'),\n", " (540740, 'CHEMBL1030622', 68, 'Displacement of [125I]nociceptin from human NOP expressed in CHO cells'),\n", " (1572912, 'CHEMBL3801235', 68, 'Antagonist activity at CCR9 receptor in human MOLT4 cells assessed as inhibition of CCL25-induced increase in intracellular calcium level preincubated for 1 hr followed CCL25 addition by FLIPR assay'),\n", " (304008, 'CHEMBL877109', 68, 'Binding affinity towards Acetylcholinesterase'),\n", " (471788, 'CHEMBL939996', 68, 'Displacement of [3H]ZM-241385 from human adenosine A2A receptor expressed in CHO cells'),\n", " (960514, 'CHEMBL2389489', 67, 'Antagonist activity at human TRPV1 expressed in CHOK1 cells assessed as inhibition of capsaicin-induced activity by FLIPR assay'),\n", " (540741, 'CHEMBL1030623', 67, 'Displacement of [125I]diprenorphine from human DOP expressed in CHO cells'),\n", " (461138, 'CHEMBL944161', 67, 'Displacement of [3H]raclopride from rat dopamine D2 receptor'),\n", " (479714, 'CHEMBL921474', 67, 'Binding affinity at human adenosine A1 receptor'),\n", " (159136, 'CHEMBL769512', 67, 'Inhibitory activity against HIV-1 protease'),\n", " (540742, 'CHEMBL1030624', 67, 'Displacement of [125I]diprenorphine from human KOP expressed in CHO cells'),\n", " (1653671, 'CHEMBL4003037', 67, \"Inhibition of 5'--FAM-LTFEHYWAQLTS peptide binding to N-terminal domain human MDM2 (1 to 118 residues) expressed in Escherichia coli BL21(DE3) measured after 15 mins by fluorescence polarization assay\"),\n", " (479713, 'CHEMBL921473', 67, 'Binding affinity at human adenosine A2A receptor'),\n", " (540743, 'CHEMBL1030625', 67, 'Displacement of [125I]diprenorphine from human MOP expressed in CHO cells'),\n", " (1527882, 'CHEMBL3705126', 66, 'Biological Assay: Compound affinity for the rat 5-HT7 receptor subtype was evaluated by competitive radioligand binding assay using 5-carboxamido[H3]typtamine ([3H]5-CT)(Amersham Biosciences) detection.'),\n", " (1528915, 'CHEMBL3705621', 66, 'Binding Assay: Receptor binding was performed using membrane fractions prepared from the HEK-293 cell line recombinantly expressing rat 5-HT7 recepto ... (301 characters truncated) ... he assay was performed on the HEK-293 cell line stably transfected with r5-HT7 receptor. Cells were pre-incubated with test compounds for 10 minutes.'),\n", " (1688140, 'CHEMBL4038710', 66, 'Antagonist activity at human TRPV1 expressed in CHOK1 cells assessed as inhibition of capsaicin induced calcium influx pretreated for 6 mins followed by capsaicin addition by Fluo-4/Pluronic F127 probe based FLIPR method'),\n", " (466158, 'CHEMBL950162', 66, 'Displacement of [3H]dexamethasone from human recombinant GR'),\n", " (1653672, 'CHEMBL4003038', 66, \"Inhibition of 5'--FAM-LTFEHYWAQLTS peptide binding to N-terminal domain human MDMX (1 to 134 residues) measured after 15 mins by fluorescence polarization assay\"),\n", " (1577550, 'CHEMBL3807026', 66, 'Inhibition of human liver cathepsin B using Cbz-Arg-Arg-pNA as substrate at pH 6 incubated for 30 mins measured for 20 mins by photometrical analysis'),\n", " (1561630, 'CHEMBL3776607', 65, 'Displacement of [3H]-spiperone from human dopamine D3 receptor expressed in CHO-K1 cell membranes after 90 mins by liquid scintillation counter method'),\n", " (946059, 'CHEMBL2342096', 65, 'Inhibition of human carbonic anhydrase-12'),\n", " (946060, 'CHEMBL2342097', 65, 'Inhibition of human carbonic anhydrase-9'),\n", " (946061, 'CHEMBL2342098', 65, 'Inhibition of human carbonic anhydrase-2'),\n", " (302499, 'CHEMBL828215', 65, 'Binding affinity against bovine trypsin'),\n", " (1459806, 'CHEMBL3371192', 65, 'Antagonist activity at human recombinant 5HT6 receptor expressed in CHO cells'),\n", " (946062, 'CHEMBL2342099', 65, 'Inhibition of human carbonic anhydrase-1'),\n", " (429507, 'CHEMBL918630', 65, 'Inhibition of human BChE'),\n", " (429506, 'CHEMBL918629', 65, 'Inhibition of human AChE'),\n", " (429504, 'CHEMBL918627', 65, 'Inhibition of human liver CE1 expressed in sf21 cells'),\n", " (425700, 'CHEMBL913682', 65, 'Displacement of [3H]spiperone from human dopamine D4.4 expressed in CHO cell membrane'),\n", " (425699, 'CHEMBL912015', 65, 'Displacement of [3H]spiperone from human dopamine D3 expressed in CHO cell membrane'),\n", " (511514, 'CHEMBL980957', 65, 'Displacement of [3H]PK11195 from translocator protein in rat kidney mitochondrial membrane'),\n", " (302753, 'CHEMBL838700', 65, 'Binding affinity against mu opioid receptor in mouse hot plate test'),\n", " (1528084, 'CHEMBL3705645', 65, 'Radioligand Binding Assay: HEK293 cells stably expressing human CB2 receptors were grown until a confluent monolayer was formed. Briefly, the cells w ... (714 characters truncated) ... fatty acid free BSA, pH 7.4). After 90 min incubation at 30 C., binding reaction was terminated by the addition of 300 uL/well of cold assay buffer.'),\n", " (715074, 'CHEMBL1664180', 64, 'Displacement of [3H]NECA from human adenosine A3 receptor expressed in human HeLa cells by liquid scintillation counting'),\n", " (1565814, 'CHEMBL3789421', 64, 'Displacement of FITC-Bak-BH3 peptide probe from N-terminal His-tagged human Mcl-1 (172 to 327 residues) expressed in Escherichia coli BL21(DE3) after 1.5 hrs by FPA based competition assay'),\n", " (1452896, 'CHEMBL3366212', 64, 'Displacement of [3H]NECA from human adenosine A2A receptor expressed in CHO cells'),\n", " (1452898, 'CHEMBL3366214', 64, 'Antagonist activity at human adenosine A2B receptor expressed in CHO cells assessed as inhibition of NECA-stimulated adenylyl cyclase activity'),\n", " (1452895, 'CHEMBL3366211', 64, 'Displacement of [3H]CCPA from human adenosine A1 receptor expressed in CHO cells'),\n", " (1452897, 'CHEMBL3366213', 64, 'Displacement of [3H]NECA from human adenosine A3 receptor expressed in CHO cells'),\n", " (1528243, 'CHEMBL3706217', 64, 'Radioligand Binding Assay: HEK293 cells stably expressing human CB2 receptors were grown until a confluent monolayer was formed. Briefly, the cells w ... (714 characters truncated) ... fatty acid free BSA, pH 7.4). After 90 min incubation at 30 C., binding reaction was terminated by the addition of 300 uL/well of cold assay buffer.'),\n", " (393314, 'CHEMBL911524', 63, 'Displacement of [3H]methylspiperone from dopamine D2 receptor expressed in CHO cells'),\n", " (685143, 'CHEMBL1286959', 63, 'Inhibition of human NOX4 overexpressed in human PMN cell membrane assessed as ROS production by cell free assay in presence of NADPH'),\n", " (728369, 'CHEMBL1685145', 63, 'Displacement of [3H]Lu AE93103 from human NK3 receptor expressed in BHK cells'),\n", " (425703, 'CHEMBL913685', 63, 'Binding affinity to dopamine D2'),\n", " (393313, 'CHEMBL911523', 63, 'Displacement of [3H]SCH 23390 from dopamine D1 receptor expressed in CHO cells'),\n", " (864185, 'CHEMBL2175134', 63, 'Displacement of [33P]2-MeS-ADP from human recombinant P2Y12 receptor expressed in CHO cell membranes by scintillation counting method'),\n", " (458068, 'CHEMBL925405', 62, 'Displacement of [125I]Tyr-o-CRF from CRF1 receptor in IMR32 cells'),\n", " (1342911, 'CHEMBL3259186', 62, 'Competitive reversible inhibition of bovine thrombin using alpha-N-benzoyl-DL-arginine-p-nitroanilide hydrochloride as substrate after 15 to 40 mins by Michaelis-Menten plot analysis'),\n", " (333106, 'CHEMBL853597', 62, 'Inhibition of FKBP12 rotamase activity'),\n", " (1561631, 'CHEMBL3776608', 62, 'Displacement of [3H]-spiperone from human dopamine D2 receptor expressed in CHO-K1 cell membranes after 120 mins by liquid scintillation counter method'),\n", " (664672, 'CHEMBL1260558', 62, 'Displacement of [3H]-Spiperone from human dopamine D2L receptor expressed in CHO cells'),\n", " (664673, 'CHEMBL1260559', 62, 'Binding affinity to human 5HT2A receptor'),\n", " (302621, 'CHEMBL838818', 62, 'Binding affinity determined against human alpha thrombin'),\n", " (878513, 'CHEMBL2188178', 62, 'Displacement of [3H]NECA from human adenosine A3 receptor expressed in CHO cell membrane'),\n", " (878514, 'CHEMBL2188179', 62, 'Displacement of [3H]NECA from human adenosine A2A receptor expressed in CHO cell membrane'),\n", " (878515, 'CHEMBL2188180', 62, 'Displacement of [3H]CCPA from human adenosine A1 receptor expressed in CHO cell membrane'),\n", " (544730, 'CHEMBL1010168', 61, 'Binding affinity to human coagulation factor 10a'),\n", " (303291, 'CHEMBL828284', 61, 'Inhibition constant against human liver carboxylesterase 1 (hCE1) using nitrophenyl acetate (o-NPA) as substrate'),\n", " (303460, 'CHEMBL839720', 61, 'Binding affinity towards metabotropic glutamate receptor 2 of rat expressed in CHO cells was determined by using [3H]MGS-0008'),\n", " (303366, 'CHEMBL839684', 61, 'Inhibition constant against human intestinal carboxylesterase 2 (hiCE) using nitrophenyl acetate (o-NPA) as substrate'),\n", " (613511, 'CHEMBL1072277', 61, 'Displacement of [3H]histamine from human histamine H4 receptor expressed in HEK293T cells'),\n", " (303261, 'CHEMBL828256', 61, 'Inhibition constant against rabbit liver carboxylesterase (rCE) using nitrophenyl acetate (o-NPA) as substrate'),\n", " (303260, 'CHEMBL828255', 61, 'Inhibition constant against human Butyrylcholinesterase (hBuChE) using butyrylthiocholine (BuTCh) as substrate'),\n", " (1436945, 'CHEMBL3388443', 61, 'Inhibition of human IDH1 R132H mutant expressed in Escherichia coli BL21-CodonPlus assessed as reduction in NADPH consumption'),\n", " (303216, 'CHEMBL829841', 61, 'Inhibition constant against human Acetylcholinesterase (hAcChE) using acetylthiocholine (AcTCh) as substrate'),\n", " (556996, 'CHEMBL958182', 61, 'Displacement of [3H]histamine from human histamine H4 receptor expressed in HEK cells'),\n", " (745548, 'CHEMBL1775865', 61, 'Inhibition of human PI3Kalpha expressed in Sf9 cells'),\n", " (664675, 'CHEMBL1260561', 61, 'Binding affinity to human 5HT1A receptor expressed in HeLa cells by scintillation proximity assay'),\n", " (464863, 'CHEMBL930580', 60, 'Binding affinity at rat recombinant histamine H3 receptor in rat cortical membranes'),\n", " (635026, 'CHEMBL1118577', 60, 'Displacement of [125I] Tyr-o-CRF from human CRF[125I]receptor expressed in human IMR-3[125I]cells after 100 mins'),\n", " (635521, 'CHEMBL1118104', 60, 'Displacement of [3H]LSD form human recombinant 5HT6 receptor'),\n", " (641177, 'CHEMBL1174684', 60, 'Displacement of [3H](+)-pentazocine from sigma 1 receptor in guinea pig brain membrane'),\n", " (158035, 'CHEMBL768259', 60, 'Inhibitory activity against HIV-1 protease'),\n", " (1556442, 'CHEMBL3772473', 60, 'Inhibition of recombinant full lenght human PDE4A using fluorescent labeled cAMP as substrate after 15 mins by IMAP assay'),\n", " (325792, 'CHEMBL862698', 60, 'Inhibitory constant against rabbit cathepsin K using Z-Phe-Arg-AMC substrate'),\n", " (464862, 'CHEMBL930579', 60, 'Binding affinity at human recombinant histamine H3 receptor expressed in HEK cells'),\n", " (856937, 'CHEMBL2160580', 60, 'Inhibition of human thrombin using fluorogenic Cbz-Gly-Gly-Arg-NH-Mec as substrate measured over 400 secs by spectrophotometry'),\n", " (325793, 'CHEMBL862699', 60, 'Inhibitory constant against human cathepsin B using Boc-Leu-Lys-Arg-AMC substrate'),\n", " (325794, 'CHEMBL862700', 60, 'Inhibitory constant against human cathepsin L using Z-Phe-Arg-AMC substrate'),\n", " (872705, 'CHEMBL2184685', 60, 'Displacement of [3H]epibatidine from human alpha7 nAChR expressed in CHO cells after 2 hrs by liquid scintillation counting'),\n", " (375257, 'CHEMBL867484', 60, 'Displacement of [3H]MRE 3008F20 from human adenosine A3 receptor expressed in CHO cells'),\n", " (936414, 'CHEMBL2317407', 60, 'Displacement of [3H]NMS from human M5 muscarinic receptor expressed in CHO-K1 cells'),\n", " (936415, 'CHEMBL2317408', 60, 'Displacement of [3H]NMS from human M1 muscarinic receptor expressed in CHO-K1 cells'),\n", " (325795, 'CHEMBL862701', 60, 'Inhibitory constant against human cathepsin S using Z-Val-Val-Arg-AMC substrate'),\n", " (425772, 'CHEMBL855762', 60, 'Binding affinity to human CCR8 expressed in L1.2 cells by FMAT assay'),\n", " (1527911, 'CHEMBL3705162', 60, 'Binding Assay: Binding assay using Bradykinin-1 receptor.'),\n", " (364154, 'CHEMBL870844', 60, 'Displacement of [3H]ZM241385 from human adenosine A2b receptor expressed in HEK cells'),\n", " (982934, 'CHEMBL2429574', 59, 'Displacement of [3H]PSB-13253 from human recombinant GPR35 exprssed in CHO cells by liquid scintillation counting analysis'),\n", " (1342913, 'CHEMBL3259188', 59, 'Competitive reversible inhibition of porcine pancreatic kallikrein using alpha-N-benzoyl-DL-arginine-p-nitroanilide hydrochloride as substrate after 15 to 180 mins by Michaelis-Menten plot analysis'),\n", " (448200, 'CHEMBL898460', 59, 'Displacement of [125I]His5,D-Tyr6]GnRH from human cloned GnRH receptor transfected in COS7 cells'),\n", " (397859, 'CHEMBL856320', 59, 'Displacement of [125I]NDP-MSH from human MC4R stably expressed in HEK293 cells'),\n", " (1437207, 'CHEMBL3382981', 59, 'Displacement of [3H]-(+)-pentazocine from sigma-1 receptor in Dunkin Hartley guinea pig brain membranes after 180 mins by liquid scintillation counting analysis'),\n", " (1278707, 'CHEMBL3096081', 59, 'Displacement of [3H]PSB-603 from human adenosine A2B receptor'),\n", " (1278706, 'CHEMBL3096080', 59, 'Displacement of [3H]MSX-2 from adenosine A2A receptor in rat brain striatum'),\n", " (1527697, 'CHEMBL3705226', 59, 'Radioligand Binding Assay: The CRTH2 receptor binding assay is performed in a scintillation proximity assay (SPA) format with the radioligand [3H]-PG ... (713 characters truncated) ... of 1 nM (50 000 dpm) and 20 uL of the test compound (dissolved in dimethylsulfoxide). The SPA assay mixture is incubated for 3 h at room temperature.'),\n", " (1278703, 'CHEMBL3096077', 59, 'Displacement of [3H]PSB-11 from human adenosine A3 receptor expressed in CHO cells'),\n", " (1278708, 'CHEMBL3096082', 59, 'Displacement of [3H]CCPA from human adenosine A1 receptor expressed in CHO cells'),\n", " (1278709, 'CHEMBL3096083', 59, 'Displacement of [3H]CCPA from adenosine A1 receptor in rat brain cortex'),\n", " (629414, 'CHEMBL1105767', 59, 'Binding affinity to human histamine H3 receptor'),\n", " (398818, 'CHEMBL908038', 59, 'Binding affinity to human MCHR1'),\n", " (1535209, 'CHEMBL3707811', 58, 'Biological Assay: Biological assay using monoamine oxidase or LSD1.'),\n", " (621604, 'CHEMBL1113036', 58, 'Displacement of SST14 from human recombinant SST3 receptor'),\n", " (621603, 'CHEMBL1113035', 58, 'Displacement of SST14 from human recombinant SST2 receptor'),\n", " (1280134, 'CHEMBL3097705', 58, 'Displacement of [3H]methyllycaconitine from alpha7 nAChR in Sprague-Dawley rat forebrain P2 fraction after 90 mins by liquid scintillation counting analysis'),\n", " (1527788, 'CHEMBL3705322', 58, 'Biological Assay: Biological assay using monoamine oxidase or LSD1.'),\n", " (446257, 'CHEMBL895361', 58, 'Displacement of [125I]neurokinin A from human recombinant NK2 receptor'),\n", " (621599, 'CHEMBL1113031', 58, 'Displacement of SST14 from human recombinant SST5 receptor expressed in CHO cells by radioligand binding assay'),\n", " (1785273, 'CHEMBL4256790', 58, 'Binding affinity to N-terminal 6x-His-SUMO tagged WDR5 delta23 deletion mutant (24 to 334 residues) (unknown origin) expressed in Escherichia coli BL21 (DE3) in presence of FITC-MLL peptide by FPA assay'),\n", " (560532, 'CHEMBL1021382', 58, 'Displacement of radioligand from human recombinant adenosine A2A receptor at 21 degC after 90 mins by cell-based microplate scintillation counting'),\n", " (931327, 'CHEMBL3069984', 58, 'Binding affinity to acetylcholinesterase (unknown origin)'),\n", " (560533, 'CHEMBL1021383', 58, 'Displacement of radioligand from human recombinant adenosine A1 receptor at 21 degC after 90 mins by cell-based microplate scintillation counting'),\n", " (355136, 'CHEMBL853189', 58, 'Displacement of [3H]nisoxetine from NET'),\n", " (621605, 'CHEMBL1113037', 58, 'Displacement of SST14 from human recombinant SST4 receptor'),\n", " (443964, 'CHEMBL892111', 57, 'Displacement of [125I][Tyr14]nociceptin FQ from human NOP receptor expressed in CHO cell membrane'),\n", " (1278712, 'CHEMBL3096086', 57, 'Displacement of [3H]MSX-2 from human adenosine A2A receptor expressed in CHO cells'),\n", " (860488, 'CHEMBL2166657', 57, 'Inhibition of human N-terminal poly-His tagged-PI3Kalpha expressed in Sf9 baculovirus system co-expressing p85alpha after 20 mins by AlphaScreen assay'),\n", " (443967, 'CHEMBL892114', 57, 'Displacement of [3H]diprenorphine from human MOP receptor expressed in CHO cell membrane'),\n", " (860487, 'CHEMBL2166656', 57, 'Inhibition of human N-terminal poly-His tagged-PI3Kbeta expressed in Sf9 baculovirus system co-expressing p85alpha after 20 mins by AlphaScreen assay'),\n", " (355134, 'CHEMBL853187', 57, 'Displacement of [3H]citalopram from SERT'),\n", " (634857, 'CHEMBL1120489', 57, 'Displacement [3H]Arg human recombinant Vasopressin V2 receptor'),\n", " (634856, 'CHEMBL1120488', 57, 'Displacement [3H]Arg human recombinant Vasopressin V1a receptor'),\n", " (520160, 'CHEMBL947848', 57, 'Inhibition of human liver CE1-mediated O-nitrophenyl acetate hydrolysis by spectrophotometry'),\n", " (404874, 'CHEMBL869276', 57, 'Displacement of [125I]NDP-MSH from human MC4R expressed in HEK293 cells'),\n", " (821892, 'CHEMBL2039538', 57, 'Displacement of [3HPGD2 from human CRTH2 receptor expressed in CHO cell membrane after 90 mins by scintillation proximity assay'),\n", " (450409, 'CHEMBL900693', 57, 'Inhibition of human CB2 receptor expressed in CHO cells'),\n", " (860486, 'CHEMBL2166655', 57, 'Inhibition of human N-terminal poly-His tagged-PI3Kgamma expressed in Sf9 baculovirus system co-expressing p85alpha after 20 mins by AlphaScreen assay'),\n", " (443966, 'CHEMBL892113', 57, 'Displacement of [3H]diprenorphine from human KOP receptor expressed in CHO cell membrane'),\n", " (685646, 'CHEMBL1285548', 57, 'Inhibition of wild type HIV1 protease by FRET'),\n", " (860485, 'CHEMBL2166654', 57, 'Inhibition of human N-terminal poly-His tagged-PI3Kdelta expressed in Sf9 baculovirus system co-expressing p85alpha after 20 mins by AlphaScreen assay'),\n", " (443965, 'CHEMBL892112', 57, 'Displacement of [3H]diprenorphine from human DOP receptor expressed in CHO cell membrane'),\n", " (588142, 'CHEMBL1049259', 57, 'Displacement of [3H]CP-55940 from human recombinant CB2 receptor expressed in HEK cells'),\n", " (588141, 'CHEMBL1049258', 57, 'Displacement of [3H]CP-55940 from human recombinant CB1 receptor expressed in HEK cells'),\n", " (1534939, 'CHEMBL3707803', 56, 'Biological Assay: Biological assay using monoamine oxidase or LSD1.'),\n", " (363667, 'CHEMBL853234', 56, 'Displacement of [3H]BK from human B2 receptor transfected in CHO cells'),\n", " (863118, 'CHEMBL2175616', 56, 'Inhibition of human recombinant DOT1L catalytic domain amino acid (1 to 472) using [3H]-SAM after 30 mins by scintillation counter'),\n", " (363669, 'CHEMBL853236', 56, 'Binding affinity to human B1 receptor'),\n", " (391331, 'CHEMBL870467', 56, 'Displacement of [3H]SCH 23390 from human dopamine D1 receptor expressed in CHO cells'),\n", " (1351394, 'CHEMBL3266970', 56, 'Displacement of [3H]PGE2 from human prostanoid EP4 receptor expressed in cell membranes by scintillation counting'),\n", " (1528180, 'CHEMBL3705650', 56, 'Enzyme Assay: All compound solutions are made to a concentration of 10 mM in DMSO. To test the stability of the compounds in enzyme assay conditions, ... (615 characters truncated) ... th 75 ug enzyme preparation in TME buffer with 0.1% BSA (final volume 250 uL). The reaction mixture is treated in the same manner as described above.'),\n", " (441650, 'CHEMBL891881', 56, 'Binding affinity for human cloned vasopressin V1a receptor expressed in CHO cells'),\n", " (611932, 'CHEMBL1071493', 56, 'Inhibition of human adenosine 2A receptor'),\n", " (336777, 'CHEMBL864338', 56, 'Inhibitory activity against Src in cell free assay'),\n", " (303283, 'CHEMBL828276', 56, 'Inhibition of [3H]ZM-241385 binding to adenosine A2a receptor of rat brain tissue'),\n", " (816345, 'CHEMBL2024743', 56, 'Inhibition of N-terminal hexa-histidine tagged human cloned Eg5 (1 to 368 amino acids) expressed in Escherichia coli BL21 (DE3) assessed as reduction in basal ATPase activity by pyruvate kinase/lactate dehydrogenase-linked assay'),\n", " (373919, 'CHEMBL868541', 56, 'Inhibition of matriptase'),\n", " (513861, 'CHEMBL970755', 56, 'Inhibition of rat FAAH expressed in Escherichia coli at pH 9.0'),\n", " (737263, 'CHEMBL1613909', 56, 'PUBCHEM_BIOASSAY: SAR Colorimetric assay for the identification of compounds that inhibit VHR1. (Class of assay: confirmatory) [Related pubchem assays (depositor defined):AID1654, AID1661, AID1878, AID1957, AID1958, AID1992, AID2074, AID2082, AID2083]'),\n", " (391332, 'CHEMBL870468', 56, 'Displacement of [3H]methylspiperone from human dopamine D2 receptor expressed in CHO cells'),\n", " (1522895, 'CHEMBL3630768', 56, 'Inhibition of recombinant HIV-1 protease expressed in Escherichia coli using Arg-Glu (EDANS)-Ser-Gln-Asn-Tyr-Pro-Ile-Val-Gln Lys(DABCYL)-Arg as substrate by spectrofluorometric analysis'),\n", " (1690030, 'CHEMBL4040600', 56, 'Inhibition of recombinant human N-terminal GST-tagged IKKalpha (1 to 745 residues) expressed in baculovirus expression system using biotinylated IkBalpha as substrate after 60 mins by DELFIA'),\n", " (444276, 'CHEMBL894516', 55, 'Binding affinity to human cloned adrenergic alpha-1A receptor'),\n", " (444277, 'CHEMBL894517', 55, 'Binding affinity to human cloned adrenergic alpha-1B receptor'),\n", " (444278, 'CHEMBL894518', 55, 'Binding affinity to human cloned adrenergic Alpha-1D receptor'),\n", " (469216, 'CHEMBL948917', 55, 'Inhibition of human alpha-thrombin'),\n", " (1468240, 'CHEMBL3411783', 55, 'Binding affinity to CB2 receptor (unknown origin)'),\n", " (700657, 'CHEMBL1645696', 55, 'Inhibition of human recombinant CA6 by stopped-flow CO2 hydration assay'),\n", " (700655, 'CHEMBL1645694', 55, 'Inhibition of human recombinant CA1 by stopped-flow CO2 hydration assay'),\n", " (700656, 'CHEMBL1645695', 55, 'Inhibition of human recombinant CA2 by stopped-flow CO2 hydration assay'),\n", " (700659, 'CHEMBL1645698', 55, 'Inhibition of Stylophora pistillata carbonic anhydrase 2 by stopped-flow CO2 hydration assay'),\n", " (979771, 'CHEMBL2421816', 55, 'Inhibition of TYK2 (unknown origin) using 5-carboxyfluorescein-VALVDGYFRLTT-NH2 as substrate'),\n", " (362986, 'CHEMBL871249', 55, 'Inhibition of human recombinant DPP4'),\n", " (700658, 'CHEMBL1645697', 55, 'Inhibition of Stylophora pistillata carbonic anhydrase by stopped-flow CO2 hydration assay'),\n", " (979759, 'CHEMBL2421804', 55, 'Inhibition of JAK1 (unknown origin)'),\n", " (876706, 'CHEMBL2183177', 54, 'Displacement of [3H]CP55940 from human CB2 receptor expressed in CHO cells incubated for 1 hr'),\n", " (302845, 'CHEMBL827890', 54, 'Binding affinity for Human gonadotropin-releasing hormone receptor'),\n", " (373920, 'CHEMBL868542', 54, 'Inhibition of uPA'),\n", " (373921, 'CHEMBL868543', 54, 'Inhibition of plasmin'),\n", " (373922, 'CHEMBL868544', 54, 'Inhibition of thrombin'),\n", " (373923, 'CHEMBL868545', 54, 'Inhibition of f10a'),\n", " (438974, 'CHEMBL889317', 54, 'Inhibition of human F10a'),\n", " (438975, 'CHEMBL889318', 54, 'Inhibition of human F2a'),\n", " (444279, 'CHEMBL894519', 54, 'Binding affinity to human dopamine D2 receptor'),\n", " (472994, 'CHEMBL931641', 54, 'Displacement of [3H]CP-55940 from human recombinant CB2 receptor expressed in HEK cells'),\n", " (472995, 'CHEMBL931642', 54, 'Displacement of [3H]CP-55940 from human recombinant CB1 receptor expressed in HEK cells'),\n", " (501433, 'CHEMBL994692', 54, 'Displacement of [3H]LSD from human recombinant 5HT6 receptor'),\n", " (536731, 'CHEMBL984525', 54, 'Displacement of [3H]paroxetine from serotonin transporter in Sprague-Dawley rat frontal cortical membrane'),\n", " (560534, 'CHEMBL1021384', 54, 'Displacement of radioligand from human recombinant adenosine A2B receptor at 21 degC after 60 mins by cell-based microplate scintillation counting'),\n", " (560535, 'CHEMBL1021385', 54, 'Displacement of radioligand from human recombinant adenosine A3 receptor at 21 degC after 60 mins by cell-based microplate scintillation counting'),\n", " (675412, 'CHEMBL1273492', 54, 'Inhibition of human N-terminal His6-tagged reticulocyte 15-lipoxygenase-1 after 15 mins by UV-vis spectrophotometer analysis'),\n", " (803919, 'CHEMBL1954606', 54, 'Displacement of [3H]methyllylcaconitine from alpha7 nAChR in rat brain'),\n", " (876705, 'CHEMBL2182818', 54, 'Displacement of [3H]CP55940 from human CB1 receptor expressed in CHO cells incubated for 1 hr'),\n", " (979760, 'CHEMBL2421805', 54, 'Inhibition of JAK2 (unknown origin)'),\n", " (1503354, 'CHEMBL3590745', 54, 'Displacement of (-)-[3H]vesamicol from rat VAChT expressed in PC12 cell membranes incubated for 2 hrs by liquid scintillation counting based competitive radioligand binding assay'),\n", " (1503356, 'CHEMBL3590859', 54, 'Displacement of (-)-[3H]pentazocine from sigma1 receptor in Sprague-Dawley rat cortical membranes incubated for 2 hrs by liquid scintillation counting based competitive radioligand binding assay'),\n", " (1528733, 'CHEMBL3705892', 54, 'Radioligand Binding: The TAAR1 radioligand 3[H](S)-4-[(ethyl-phenyl-amino)-methyl]-4,5-dihydro-oxazol-2-ylamine (described in WO 2008/098857) was use ... (659 characters truncated) ... ) (binding buffer), 300 ul of the radioligand 3[H](S)-4-[(ethyl-phenyl-amino)-methyl]-4,5-dihydro-oxazol-2-ylamine at a concentration of 3.3Kd in nM.'),\n", " (1528734, 'CHEMBL3705893', 54, 'Radioligand Binding: The TAAR1 radioligand 3[H](S)-4-[(ethyl-phenyl-amino)-methyl]-4,5-dihydro-oxazol-2-ylamine (described in WO 2008/098857) was use ... (659 characters truncated) ... (binding buffer), 300 ul of the radioligand 3[H](S)-4-[(ethyl-phenyl-amino)-methyl]-4,5-dihydro-oxazol-2-ylamine at a concentration of 3.3 Kd in nM.'),\n", " (1776530, 'CHEMBL4233522', 54, 'Displacement of [3H]-Nalpha-methylhistamine from human histamine H3 receptor expressed in HEK293 cell membranes'),\n", " (1344334, 'CHEMBL3257004', 53, 'Reversible competitive inhibition of boar spermatozoa acrosin using BzArgOEt as substrate by Dixon plot analysis'),\n", " (873559, 'CHEMBL2187476', 53, 'Displacement of [3H]epibatidine from human alpha7 nAChR expressed in human HEK/RIC3 cells'),\n", " (769241, 'CHEMBL1833078', 53, 'Displacement of [3H]PK11195 from TSPO receptor in rat kidney membranes'),\n", " (990337, 'CHEMBL2445750', 53, 'Displacement of [3H]-CP55940 from CB1 receptor in rat brain homogenate after 1.5 hrs by microbeta liquid scintillation counting analysis'),\n", " (990336, 'CHEMBL2445749', 53, 'Displacement of [3H]-CP55940 from human CB2 receptor expressed in HEK293 cells after 1.5 hrs by microbeta liquid scintillation counting analysis'),\n", " (384211, 'CHEMBL868581', 53, 'Binding affinity to human 5HT2C receptor'),\n", " (384212, 'CHEMBL868582', 53, 'Binding affinity to human 5HT2A receptor'),\n", " (384213, 'CHEMBL868583', 53, 'Binding affinity to human 5HT2B receptor'),\n", " (411464, 'CHEMBL853861', 53, 'Displacement of [125I]motilin from human MOTR'),\n", " (425512, 'CHEMBL909602', 53, 'Displacement of Bax-derived peptide from Bcl2 by fluorescence polarization assay'),\n", " (1352081, 'CHEMBL3267346', 53, 'Inhibition of human recombinant adenosine receptor A2b'),\n", " (554819, 'CHEMBL953972', 53, 'Displacement of [3H]CP-55940 from human CB2 receptor'),\n", " (536733, 'CHEMBL984527', 53, 'Displacement of [3H]8-OH-DPAT from human cloned 5HT1A receptor expressed in CHO cells'),\n", " (447747, 'CHEMBL895641', 53, 'Displacement of [125I]NDP-alphaMSH from human melanocortin 4 receptor expressed in CHOK1 cells'),\n", " (157733, 'CHEMBL765171', 53, 'Inhibitory activity against HIV protease'),\n", " (52222, 'CHEMBL663972', 53, 'In vitro binding affinity towards Cysteinyl leukotriene D4 receptor by using [3H]LTD4 binding assay in guinea pig lung membranes'),\n", " (470061, 'CHEMBL933439', 53, 'Inhibition of human factor 10a'),\n", " (1638156, 'CHEMBL3881217', 53, 'Displacement of [3H]-PGD2 from PGD2 receptor in human platelet membranes after 2 hrs by micro beta scintillation counting analysis'),\n", " (856369, 'CHEMBL2160724', 53, 'Binding affinity to human CCR3 expressed in CHOK1 cells by radioligand displacement assay'),\n", " (1671313, 'CHEMBL4021342', 53, 'Displacement of [3H]-MRS-1754 from human adenosine A2B receptor expressed in HEK293 cell membranes after 90 mins'),\n", " (1352085, 'CHEMBL3267350', 52, 'Inhibition of human recombinant adenosine A3 receptor'),\n", " (1330007, 'CHEMBL3222515', 52, 'Displacement of [3H]CP55,940 from human recombinant CB1 receptor expressed in CHO-K1 cells'),\n", " (1527992, 'CHEMBL3705912', 52, 'Binding Assay: Evaluation of the affinity of compounds for the human MCH-1 receptor was accomplished using 4-(3,4,5-tritritiumbenzyloxy)-1-(1-(2-(pyr ... (26 characters truncated) ... azol-5-yl)pyridin-2(1H)-one and membranes prepared from stable CHO-K1 cells expressing the human MCH1 receptor obtained from Euroscreen (Batch 1138).'),\n", " (1330005, 'CHEMBL3222513', 52, 'Displacement of [3H]CP55,940 from human recombinant CB2 receptor expressed in HEK293 cells'),\n", " (873597, 'CHEMBL2187886', 52, 'Displacement of [3H]BMS-599240 from BACE1 expressed in HEK293 cells'),\n", " (859794, 'CHEMBL2169622', 52, 'Displacement of [3H]CP-55940 from CB1 receptor in Sprague-Dawley rat brain by scintillation counting'),\n", " (859793, 'CHEMBL2169621', 52, 'Displacement of [3H]CP-55940 from CB2 receptor in Sprague-Dawley rat spleen by scintillation counting'),\n", " (859792, 'CHEMBL2169620', 52, 'Displacement of [3H]CP-55940 from human recombinant CB2 receptor expressed in CHO cell membranes incubated for 60 mins by scintillation counting'),\n", " (859791, 'CHEMBL2169619', 52, 'Displacement of [3H]CP-55940 from human recombinant CB1 receptor expressed in CHO cell membranes incubated for 90 mins by scintillation counting'),\n", " (835846, 'CHEMBL2071957', 52, 'Inhibition of KDM4C catalytic core-mediated demethylation of ARK(Me)3STGGK after 30 mins by FDH-coupled assay'),\n", " (801859, 'CHEMBL1947471', 52, 'Displacement of [3H]WIN35428 from human cloned DAT receptor expressed in human HEK293 cells'),\n", " (790253, 'CHEMBL1925646', 52, 'Displacement of [125I-His9]-ghrelin from human GRLN receptor by radioligand binding assay'),\n", " (699418, 'CHEMBL1647445', 52, 'Displacement of [3H]Tiagabine from human recombinant GAT1 expressed in HEK293 cells by equilibrium binding assay'),\n", " (665493, 'CHEMBL1261324', 52, 'Displacement of [125I]-cyanopindolol from human adrenergic beta3 receptor expressed in CHO cells'),\n", " (554820, 'CHEMBL953973', 52, 'Displacement of [3H]CP-55940 from human CB1 receptor'),\n", " (497564, 'CHEMBL998621', 52, 'Displacement of [125I]CXCL10 from human CXCR3 expressed in HEK293T cells'),\n", " (475717, 'CHEMBL934603', 52, 'Displacement of [3H]histamine from human histamine H4 receptor expressed in HEK293T cells'),\n", " (450845, 'CHEMBL899931', 52, 'Displacement of [125I]NDP-MSH from human MC4 receptor expressed in HEK293 cells'),\n", " (448716, 'CHEMBL897862', 52, 'Displacement of [3H]LSD from cloned human 5HT6 expressed in HeLa cells'),\n", " (436469, 'CHEMBL904776', 52, 'Inhibition of Plasmodium falciparum recombinant enoyl ACP reductase expressed in BL21 (DE3) cells with respect to crotonyl CoA'),\n", " (425511, 'CHEMBL909601', 52, 'Displacement of Bad-derived peptide from Bcl-xL by fluorescence polarization assay'),\n", " (396128, 'CHEMBL910349', 52, 'Inhibition of [3H]diprenorphine binding to human KOR expressed in CHO cells'),\n", " (370710, 'CHEMBL867233', 52, 'Displacement of [3H]N-alpha-methylhistamine from human cloned H3 receptor'),\n", " (361059, 'CHEMBL859181', 52, 'Displacement of [3H]methoxyPEPy from rat mGluR5 expressed in HEK293 cells'),\n", " (1681750, 'CHEMBL4032027', 52, 'Inhibition of human factor 11a using pyro-Glu-Pro-Arg-pNA as substrate at 37 degC after 10 to 120 mins by spectrophotometric method'),\n", " (327232, 'CHEMBL865131', 52, 'Inhibitory activity against human glutaminyl cyclase'),\n", " (304037, 'CHEMBL840215', 52, 'Inhibition constant against [3H]-spiperone binding to human Dopamine receptor D3 expressed in CHO cells'),\n", " (157714, 'CHEMBL763388', 52, 'Inhibition constant against HIV-1 Protease'),\n", " (1444591, 'CHEMBL3375410', 52, 'Displacement of [3H]CP55940 from human CB1R expressed in CHO cells'),\n", " (1444590, 'CHEMBL3375409', 52, 'Displacement of [3H]WIN-55212-2 from human CB2R expressed in CHO cells'),\n", " (613740, 'CHEMBL1068887', 51, 'Displacement of [3H]nisoxetine from human recombinant NET expressed in BacMam virus-transduced cells by scintillation proximity assay'),\n", " (613741, 'CHEMBL1068888', 51, 'Displacement of [3H]citalopram from human recombinant SERT expressed in BacMam virus-transduced cells by scintillation proximity assay'),\n", " (1772843, 'CHEMBL4229835', 51, 'Displacement of [3H]-LSD from human 5-HT6R expressed in HEK293 cell membranes after 1 hr at 37 degC by microbeta counting method'),\n", " (1790426, 'CHEMBL4262345', 51, 'Displacement of [3H]-(+)-pentazocine from human sigma 1 receptor transfected in HEK293 cells after 120 mins by liquid scintillation counting method'),\n", " (1772844, 'CHEMBL4229836', 51, 'Displacement of [3H]-8-OH-DPAT from human 5-HT1AR expressed in HEK293 cell membranes after 1 hr by microbeta counting method'),\n", " (344236, 'CHEMBL867755', 51, 'Inhibition of bovine CA4'),\n", " (344235, 'CHEMBL870709', 51, 'Inhibition of human CA2'),\n", " (335548, 'CHEMBL859414', 51, 'Displacement of [3H]L-leucine from alpha-2delta containing calcium channel in murine brain'),\n", " (36514, 'CHEMBL650169', 51, 'Inhibitory activity of compound against HIV-1 aspartyl protease.'),\n", " (1772845, 'CHEMBL4229837', 51, 'Displacement of [3H]-5-CT from human 5-HT7R expressed in HEK293 cell membranes after 1 hr at 37 degC by microbeta counting method'),\n", " (457478, 'CHEMBL941996', 51, 'Displacement of [3H]dexamethasone from human glucocorticoid receptor expressed in recombinant baculovirus'),\n", " (1772846, 'CHEMBL4229838', 51, 'Displacement of [3H]-raclopride from human D2LR expressed in HEK293 cell membranes after 1 hr at 37 degC by microbeta counting method'),\n", " (1790472, 'CHEMBL4262391', 51, 'Displacement of [3H]-(+)-pentazocine from recombinant human sigma1 receptor expressed in HEK293 cell membranes after 120 mins by microbeta scintillation counting method'),\n", " (1571915, 'CHEMBL3796307', 51, 'Displacement of [3H]-Spiperone from human recombinant dopamine D4 receptor expressed in CHOK1 cells'),\n", " (513860, 'CHEMBL970754', 51, 'Inhibition of rat FAAH expressed in Escherichia coli'),\n", " (436470, 'CHEMBL904775', 51, 'Inhibition of Plasmodium falciparum recombinant enoyl ACP reductase expressed in BL21 (DE3) cells with respect to NADH'),\n", " (932187, 'CHEMBL3073105', 51, 'Binding affinity to dopamine D2 receptor (unknown origin)'),\n", " (587702, 'CHEMBL1037716', 51, 'Displacement of [3H]CCPA from human adenosine A1 receptor expressed in CHO cells'),\n", " (953474, 'CHEMBL2351085', 51, 'Displacement of [125I]-CX3CL1 from human CX3CR1 transfected in HEK293 cells after 24 hrs by scintillation counting analysis'),\n", " (422416, 'CHEMBL909851', 51, 'Displacement of [3H]diprenorphine from human cloned mu opioid receptor expressed in CHO cells'),\n", " (610979, 'CHEMBL1070310', 51, 'Displacement of [3H]PGE2 from mouse EP3 receptor expressed in CHO cell membrane'),\n", " (1772842, 'CHEMBL4229834', 51, 'Displacement of [3H]-ketanserin from human 5-HT2AR expressed in CHO-K1 cell membranes after 1.5 hrs by microbeta counting method'),\n", " (613739, 'CHEMBL1068886', 51, 'Displacement of [3H]WIN-35428 from human recombinant DAT expressed in BacMam virus-transduced cells by scintillation proximity assay')]" ] }, "execution_count": 18, "metadata": {}, "output_type": "execute_result" } ], "source": [ "d" ] }, { "cell_type": "code", "execution_count": 14, "metadata": {}, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ " * postgresql://localhost/chembl_26\n" ] }, { "data": { "image/png": "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\n", "text/plain": [ "" ] }, "execution_count": 14, "metadata": {}, "output_type": "execute_result" } ], "source": [ "assay_id = 1528353\n", "smis = %sql \\\n", " select chembl_id,m from activities \\\n", " join rdk.mols using (molregno)\\\n", " join chembl_id_lookup on (molregno=entity_id and entity_type='COMPOUND')\\\n", " where assay_id = :assay_id\n", "ms = [Chem.MolFromSmiles(y) for x,y in smis]\n", "Draw.MolsToGridImage(ms[:12],molsPerRow=4)" ] }, { "cell_type": "code", "execution_count": 15, "metadata": {}, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "Mean nAts 30.7, mcs nAts: 18\n", "[#8,#6,#7,#9]-&!@[#6]1:&@[#6,#7]:&@[#6]:&@[#6]:&@[#6,#7]:&@[#6]:&@1-&!@[#6](=&!@[#8])-&!@[#7]1-&@[#6]-&@[#6]-&@[#6]-&@[#6](-&@[#6]-&@1-&!@[#6])-&!@[#7,#8]-&!@[#6]\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "RDKit ERROR: [07:35:34] Aromatic bonds on non aromatic atom 1\n", "RDKit INFO: [07:35:34] Aromatic bonds on non aromatic atom 1\n" ] }, { "data": { "image/svg+xml": [ "\n", "\n", " \n", "\n", "\n", "\n", "\n", "\n", "\n", "\n", "\n", "\n", "\n", "\n", "\n", "\n", "\n", "\n", "\n", "\n", "\n", "\n", "\n", "\n", "\n", "\n", "\n", "\n", "\n", "\n", "\n", "\n", "\n", "\n", "\n", "\n", "\n", "\n", "\n", "\n", "\n", "\n", "\n", "\n", "\n", "\n", "\n", "\n", "\n", "\n", "\n", "\n", "\n", "\n", "\n", "\n", "\n", "\n", "\n", "\n", "\n", "\n", "\n", "\n", "\n", "\n", "\n", "\n", "\n", "" ], "text/plain": [ "" ] }, "execution_count": 15, "metadata": {}, "output_type": "execute_result" } ], "source": [ "tpl,svg=MCS_Report(ms,threshold=0.9,completeRingsOnly=True)\n", "SVG(svg)" ] }, { "cell_type": "code", "execution_count": 19, "metadata": {}, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "(1528353, 'CHEMBL3706284', 98, \"Radioligand Binding Assay: HEK293 stably expressing human orexin 2 receptor (Genebank accession numberNM_001526) were grown to confluency in DMEM (Hy ... (715 characters truncated) ... petition binding experiments in 96 well polypropylene plates were performed using [3H]-EMPA (Moraveck Corporation, specific activity = 29.6 Ci/mmol).\")\n", " * postgresql://localhost/chembl_26\n", "Mean nAts 30.7, mcs nAts: 18\n", "[#8,#6,#7,#9]-&!@[#6]1:&@[#6,#7]:&@[#6]:&@[#6]:&@[#6,#7]:&@[#6]:&@1-&!@[#6](=&!@[#8])-&!@[#7]1-&@[#6]-&@[#6]-&@[#6]-&@[#6](-&@[#6]-&@1-&!@[#6])-&!@[#7,#8]-&!@[#6]\n", "(1527605, 'CHEMBL3705289', 97, 'Binding assay: Binding assay was performed at 4 C. in a final volume of 1 ml, and with an incubation time of 30 min. The radioligand [3H]-rac-2-(1,2, ... (483 characters truncated) ... ide range of concentrations (10 μM-30 μM). The final dimethylsulphoxide concentration in the assay was 2%, and it did not affect radioligand binding.')\n", " * postgresql://localhost/chembl_26\n", "Mean nAts 18.2, mcs nAts: 15\n", "[#7]-&!@[#6]1=&@[#7]-&@[#6](-&@[#6]-&@[#8]-&@1)-&!@[#6]-&!@[#6,#8]-&!@[#8,#6,#14,#16]-&!@[#6]1:&@[#6]:&@[#6]:&@[#6]:&@[#6]:&@[#6]:&@1\n", "(1537148, 'CHEMBL3734283', 97, 'Inhibition of human GRK2 after 90 to 120 mins by Kinase-Glo assay')\n", " * postgresql://localhost/chembl_26\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "RDKit ERROR: [07:38:30] Aromatic bonds on non aromatic atom 1\n", "RDKit INFO: [07:38:30] Aromatic bonds on non aromatic atom 1\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Mean nAts 23.8, mcs nAts: 19\n", "[#8]=&!@[#6](-&!@[#6]-&!@[#7,#8]-&!@[#6]1:&@[#6]:&@[#6]:&@[#6]:&@[#6]:&@[#6]:&@1)-&!@[#7]-&!@[#7]=,-;!@[#6]-&!@[#6]1:&@[#6]:&@[#6]:&@[#7]:&@[#6]:&@[#6]:&@1\n", "(1535508, 'CHEMBL3707832', 95, 'Radioligand Binding Assay: Aliquots of membrane preparations were thawed at RT, resupended in assay buffer (D2, D3: 50 mM Tris-HCl, 120 mM NaCl, 5 mM ... (679 characters truncated) ... for 1 h at RT. At the end of the incubation, the reaction mixtures were filtered on to unifilter 96-well white microplates with bonded GF/C filters.')\n", " * postgresql://localhost/chembl_26\n", "Mean nAts 32.1, mcs nAts: 27\n", "[#6,#7,#8]-,=;!@[#6,#16](=,-;!@[#8,#6])-&!@[#7]-&!@[#6]1-&@[#6]-&@[#6]-&@[#6](-&@[#6]-&@[#6]-&@1)-&!@[#6]-&!@[#6]-&!@[#7]1-&@[#6]-&@[#6]-&@[#6](-&@[#6]-&@[#6]-&@1)-&!@[#6]1:&@[#6]:&@[#6]:&@[#6]:&@[#6]2:&@[#6]:&@1:,-;@[#6]:,-;@[#6]:,-;@[#8]:,-;@2\n", "(1547124, 'CHEMBL3755859', 95, 'Competitive inhibition of human aromatase extracted from placental microsomes after 5 mins by Dixon plot analysis in presence of [1beta-3H]AD')\n", " * postgresql://localhost/chembl_26\n", "Mean nAts 24.7, mcs nAts: 19\n", "[#6]-&!@[#6]12-&@[#6]-&@[#6]-&@[#6]3-&@[#6](-&@[#6]-&@1-&@[#6]-&@[#6]-&@[#6]-&@2=,-;!@[#8])-&@[#6]-,=;@[#6]-,=;@[#6]1-,:;@[#6]-&@3-,:;@[#6]-,=,:;@[#6]-,:;@[#6]-,=,:;@[#6]=,-,:;@1\n", "(1528370, 'CHEMBL3705383', 95, 'Radioligand Binding Assay: Aliquots of membrane preparations were thawed at RT, resupended in assay buffer (D2, D3: 50 mM Tris-HCl, 120 mM NaCl, 5 mM ... (679 characters truncated) ... for 1 h at RT. At the end of the incubation, the reaction mixtures were filtered on to unifilter 96-well white microplates with bonded GF/C filters.')\n", " * postgresql://localhost/chembl_26\n", "Mean nAts 32.1, mcs nAts: 27\n", "[#6,#7,#8]-,=;!@[#6,#16](=,-;!@[#8,#6])-&!@[#7]-&!@[#6]1-&@[#6]-&@[#6]-&@[#6](-&@[#6]-&@[#6]-&@1)-&!@[#6]-&!@[#6]-&!@[#7]1-&@[#6]-&@[#6]-&@[#6](-&@[#6]-&@[#6]-&@1)-&!@[#6]1:&@[#6]:&@[#6]:&@[#6]:&@[#6]2:&@[#6]:&@1-,:;@[#6]-,:;@[#6]-,:;@[#8]-,:;@2\n", "(1535361, 'CHEMBL3707859', 95, 'Radioligand Binding Assay: Aliquots of membrane preparations were thawed at RT, resupended in assay buffer (D2, D3: 50 mM Tris-HCl, 120 mM NaCl, 5 mM ... (679 characters truncated) ... for 1 h at RT. At the end of the incubation, the reaction mixtures were filtered on to unifilter 96-well white microplates with bonded GF/C filters.')\n", " * postgresql://localhost/chembl_26\n", "Mean nAts 32.1, mcs nAts: 27\n", "[#6,#7,#8]-,=;!@[#6,#16](=,-;!@[#8,#6])-&!@[#7]-&!@[#6]1-&@[#6]-&@[#6]-&@[#6](-&@[#6]-&@[#6]-&@1)-&!@[#6]-&!@[#6]-&!@[#7]1-&@[#6]-&@[#6]-&@[#6](-&@[#6]-&@[#6]-&@1)-&!@[#6]1:&@[#6]:&@[#6]:&@[#6]:&@[#6]2:&@[#6]:&@1-,:;@[#6]-,:;@[#6]-,:;@[#8]-,:;@2\n", "(444873, 'CHEMBL894022', 94, 'Inhibition of human recombinant MetAP2')\n", " * postgresql://localhost/chembl_26\n", "Mean nAts 22.4, mcs nAts: 15\n", "[#6]-&!@[#6]-&!@[#16]-&!@[#6]1:&@[#7]:&@[#7]:&@[#6](:&@[#7]:&@1)-&!@[#7]-&!@[#6]1:&@[#6]:&@[#6,#7]:&@[#6]:&@[#6,#7]:&@[#6]:&@1\n", "(1613477, 'CHEMBL3855277', 94, 'Displacement of [3H]-spiperone from human dopamine D3 receptor expressed in CHO-K1 cell membranes after 90 mins by liquid scintillation counting')\n", " * postgresql://localhost/chembl_26\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "RDKit ERROR: [07:38:36] Aromatic bonds on non aromatic atom 14\n", "RDKit INFO: [07:38:36] Aromatic bonds on non aromatic atom 14\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Mean nAts 33.1, mcs nAts: 7\n", "[#6]-&!@[#6,#7]1:&@[#7,#6]:&@[#6,#7]:&@[#8,#6,#7,#16]:&@[#6,#7]:&@1-&!@[#6]\n", "(1528694, 'CHEMBL3705468', 94, 'Radioligand Binding Assay: Radioligand binding assays for cloned muscarinic receptors were performed in 96-well microtiter plates in a total assay vo ... (671 characters truncated) ... centrations ranging from 0.001 nM to 20 nM.Displacement assays for determination of Ki values of test compounds were performed with [3H]-NMS at 1 nM.')\n", " * postgresql://localhost/chembl_26\n", "Mean nAts 62.4, mcs nAts: 29\n", "[#6]-&!@[#7](-&!@[#6])-&!@[#6](=&!@[#8])-&!@[#6]-&!@[#6]-&!@[#7]1-&@[#6]-&@[#6]-&@[#6](-&@[#6]-&@[#6]-&@1)-&!@[#8]-&!@[#6](=&!@[#8])-&!@[#7]-&!@[#6]1:&@[#6]:&@[#6]:&@[#6]:&@[#6]:&@[#6]:&@1-&!@[#6]1:&@[#6]:&@[#6]:&@[#6]:&@[#6]:&@[#6]:&@1\n", "(1613478, 'CHEMBL3855278', 93, 'Displacement of [3H]-spiperone from human dopamine D2 receptor expressed in CHO-K1 cell membranes coexpressing Galpha16 after 120 mins by liquid scintillation counting')\n", " * postgresql://localhost/chembl_26\n", "Mean nAts 33.1, mcs nAts: 7\n", "[#6]-&!@[#6,#7]1:&@[#7,#6]:&@[#6,#7]:&@[#8,#6,#7,#16]:&@[#6,#7]:&@1-&!@[#6]\n", "(464889, 'CHEMBL949088', 92, 'Inhibition of rat recombinant FAAH expressed in Escherichia coli')\n", " * postgresql://localhost/chembl_26\n", "Mean nAts 28.5, mcs nAts: 15\n", "[#6](-&!@[#6]-&!@[#6]-&!@[#6]1:&@[#6]:&@[#6]:&@[#6](:&@[#6]:&@[#6]:&@1)-&!@[#6,#7,#8,#16])-&!@[#6]1:&@[#7]:&@[#6]:&@[#6]:&@[#8]:&@1\n", "(1527832, 'CHEMBL3705059', 92, 'Radioligand Binding Assay: Radioligand binding assay using muscarinic receptors.')\n", " * postgresql://localhost/chembl_26\n", "Mean nAts 62.5, mcs nAts: 29\n", "[#6]-&!@[#7](-&!@[#6])-&!@[#6](=&!@[#8])-&!@[#6]-&!@[#6]-&!@[#7]1-&@[#6]-&@[#6]-&@[#6](-&@[#6]-&@[#6]-&@1)-&!@[#8]-&!@[#6](=&!@[#8])-&!@[#7]-&!@[#6]1:&@[#6]:&@[#6]:&@[#6]:&@[#6]:&@[#6]:&@1-&!@[#6]1:&@[#6]:&@[#6]:&@[#6]:&@[#6]:&@[#6]:&@1\n", "(437192, 'CHEMBL906590', 92, 'Displacement of [125I]MCH from MCHR1 expressed in CHO cells')\n", " * postgresql://localhost/chembl_26\n", "Mean nAts 36.0, mcs nAts: 20\n", "[#8]=&!@[#6](-&!@[#7]-&!@[#6]1:&@[#6]:&@[#6]:&@[#6,#7]:&@[#6](:&@[#6]:&@1)-&!@[#17,#6,#7,#8,#9,#35])-&!@[#7](-&!@[#6]-&!@[#6])-&!@[#6]1-&@[#6]-&@[#6]=,-;@[#6](-&@[#6]-&@[#6]-&@1)-&!@[#6]\n", "(302650, 'CHEMBL839940', 92, 'Binding affinity for human glycogen synthase kinase 3 beta')\n", " * postgresql://localhost/chembl_26\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "RDKit ERROR: [07:40:10] Aromatic bonds on non aromatic atom 8\n", "RDKit INFO: [07:40:10] Aromatic bonds on non aromatic atom 8\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Mean nAts 30.0, mcs nAts: 22\n", "[#6]1:&@[#6]:&@[#6]:&@[#6](:&@[#6]:&@[#6]:&@1)-&!@[#7]-&!@[#6]1:&@[#7]:&@[#6]:&@[#6]:&@[#6](:&@[#7]:&@1)-&!@[#6]1:&@[#6]:&@[#7]:&@[#7]2:&@[#6]:&@1:&@[#6]:&@[#6]:&@[#6]:&@[#7]:&@2\n", "(302524, 'CHEMBL827377', 91, 'Binding affinity for human cyclin-dependent kinase 2')\n", " * postgresql://localhost/chembl_26\n", "Mean nAts 30.0, mcs nAts: 22\n", "[#6]1:&@[#6]:&@[#6]:&@[#6](:&@[#6]:&@[#6]:&@1)-&!@[#7]-&!@[#6]1:&@[#7]:&@[#6]:&@[#6]:&@[#6](:&@[#7]:&@1)-&!@[#6]1:&@[#6]:&@[#7]:&@[#7]2:&@[#6]:&@1:&@[#6]:&@[#6]:&@[#6]:&@[#7]:&@2\n", "(303563, 'CHEMBL828963', 91, 'Inhibition of [125I]eotaxin-1 binding to human chemokine receptor (hCCR3-C1)')\n", " * postgresql://localhost/chembl_26\n", "Mean nAts 33.6, mcs nAts: 24\n", "[#6,#7,#8]-&!@[#7,#6]1-,:;@[#6]-,:;@[#6]-,:;@[#7,#6](-,:;@[#6]-,:;@[#6]-,:;@1)-&!@[#6](-&!@[#6]-&!@[#7]-&!@[#6]-&!@[#6,#7]-&!@[#6]1:&@[#6]:&@[#6]:&@[#6]:&@[#6]:&@[#6]:&@1)-&!@[#6,#7]1:,-;@[#6]:,-;@[#6]:,-;@[#6,#7]:,-;@[#6]:,-;@[#6]:,-;@1\n", "(213236, 'CHEMBL821446', 88, 'Binding affinity towards trypsin')\n", " * postgresql://localhost/chembl_26\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "RDKit ERROR: [07:40:13] Aromatic bonds on non aromatic atom 23\n", "RDKit INFO: [07:40:13] Aromatic bonds on non aromatic atom 23\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Mean nAts 36.1, mcs nAts: 24\n", "[#7,#8]-,=;!@[#6](=,-;!@[#8,#6,#7])-&!@[#6](-&!@[#6]-&!@[#6]1:&@[#6]:&@[#6]:&@[#6]:&@[#6](:&@[#6]:&@1)-&!@[#6](=&!@[#7])-&!@[#7])-&!@[#7]-&!@[#16](=&!@[#8])(=&!@[#8])-&!@[#6]1:&@[#6]:&@[#6]:&@[#6]:&@[#6]:&@[#6]:&@1\n", "(1528352, 'CHEMBL3706283', 88, \"Radioligand Binding Assay: Human Embryonic Kidney 293 cells (HEK293) stably expressing rat orexin 1 receptor(Genebank accession number NM_001525) or ... (710 characters truncated) ... sence of 1 tablet of protease inhibitor cocktail (Roche, Cat. #1 1836145001) per 50 mL. Each cell pellet from a 15 cm plate was resuspended in 10 mL.\")\n", " * postgresql://localhost/chembl_26\n", "Mean nAts 30.6, mcs nAts: 18\n", "[#8,#6,#7]-&!@[#6]1:&@[#6,#7]:&@[#6]:&@[#6]:&@[#6,#7]:&@[#6]:&@1-&!@[#6](=&!@[#8])-&!@[#7]1-&@[#6]-&@[#6]-&@[#6]-&@[#6](-&@[#6]-&@1-&!@[#6])-&!@[#7,#8]-&!@[#6]\n", "(1537103, 'CHEMBL3734209', 88, 'Displacement of [3H]-PrRP from human GPR10 receptor expressed in HEK293 cell membranes incubated for 90 mins by liquid scintillation counting method')\n", " * postgresql://localhost/chembl_26\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "RDKit ERROR: [07:40:47] Aromatic bonds on non aromatic atom 1\n", "RDKit INFO: [07:40:47] Aromatic bonds on non aromatic atom 1\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Mean nAts 37.5, mcs nAts: 25\n", "[#6]-&!@[#8,#6,#7]-&!@[#7]1:&@[#6](-&!@[#7]-&!@[#6](-&!@[#6])-&!@[#6]2-,:;@[#6]-,:;@[#6]-,:;@[#6]-,:;@[#6]-,:;@[#6]-,:;@2):&@[#7]:&@[#6]2:&@[#6](:&@[#6]:&@1=&!@[#8])-&@[#6]-&@[#7](-&@[#6]-&@[#6]-&@2)-&!@[#6](=,-;!@[#8,#6])-,=;!@[#6,#8]\n", "(1535076, 'CHEMBL3707804', 88, 'Radioligand Binding Assay: liquots of membrane preparations were thawed at RT, resuspended in assay buffer (D2, D3: 50 mM Tris-HCl, 120 mM NaCl, 5 mM ... (691 characters truncated) ... for 1 h at RT. At the end of the incubation, the reaction mixtures were filtered on to unifilter 96-well white microplates with bonded GF/C filters.')\n", " * postgresql://localhost/chembl_26\n", "Mean nAts 32.8, mcs nAts: 27\n", "[#6,#7,#8]-,=;!@[#6,#16](=,-;!@[#8,#6])-&!@[#7]-&!@[#6]1-&@[#6]-&@[#6]-&@[#6](-&@[#6]-&@[#6]-&@1)-&!@[#6]-&!@[#6]-&!@[#7]1-&@[#6]-&@[#6]-&@[#6](-&@[#6]-&@[#6]-&@1)-&!@[#6]1:&@[#6]:&@[#8]:&@[#6]2:&@[#6]:&@1:&@[#6]:&@[#6]:&@[#6]:&@[#6]:&@2\n", "(1535965, 'CHEMBL3707598', 88, 'Radioligand Binding Assay: liquots of membrane preparations were thawed at RT, resuspended in assay buffer (D2, D3: 50 mM Tris-HCl, 120 mM NaCl, 5 mM ... (691 characters truncated) ... for 1 h at RT. At the end of the incubation, the reaction mixtures were filtered on to unifilter 96-well white microplates with bonded GF/C filters.')\n", " * postgresql://localhost/chembl_26\n", "Mean nAts 32.8, mcs nAts: 27\n", "[#6,#7,#8]-,=;!@[#6,#16](=,-;!@[#8,#6])-&!@[#7]-&!@[#6]1-&@[#6]-&@[#6]-&@[#6](-&@[#6]-&@[#6]-&@1)-&!@[#6]-&!@[#6]-&!@[#7]1-&@[#6]-&@[#6]-&@[#6](-&@[#6]-&@[#6]-&@1)-&!@[#6]1:&@[#6]:&@[#8]:&@[#6]2:&@[#6]:&@1:&@[#6]:&@[#6]:&@[#6]:&@[#6]:&@2\n", "(1528654, 'CHEMBL3706129', 87, 'Radioligand Binding Assay: liquots of membrane preparations were thawed at RT, resuspended in assay buffer (D2, D3: 50 mM Tris-HCl, 120 mM NaCl, 5 mM ... (691 characters truncated) ... for 1 h at RT. At the end of the incubation, the reaction mixtures were filtered on to unifilter 96-well white microplates with bonded GF/C filters.')\n", " * postgresql://localhost/chembl_26\n", "Mean nAts 32.8, mcs nAts: 27\n", "[#6,#7,#8]-,=;!@[#6,#16](=,-;!@[#8,#6])-&!@[#7]-&!@[#6]1-&@[#6]-&@[#6]-&@[#6](-&@[#6]-&@[#6]-&@1)-&!@[#6]-&!@[#6]-&!@[#7]1-&@[#6]-&@[#6]-&@[#6](-&@[#6]-&@[#6]-&@1)-&!@[#6]1:&@[#6]:&@[#8]:&@[#6]2:&@[#6]:&@1:&@[#6]:&@[#6]:&@[#6]:&@[#6]:&@2\n", "(303638, 'CHEMBL828848', 86, 'Inhibitory constant determined against recombinant Fatty-acid amide hydrolase from rat expressed in Escherichia coli')\n", " * postgresql://localhost/chembl_26\n", "Mean nAts 24.8, mcs nAts: 9\n", "[#8,#6]=,-,#;!@[#6,#14]-&!@[#6]-,#;!@[#6]-&!@[#6]-&!@[#6]-&!@[#6]-,#;!@[#6]-,=;!@[#6,#8,#9]\n", "(1620948, 'CHEMBL3863231', 86, 'Displacement of [3H]rosiglitazone from recombinant human C-terminal His-tagged MitoNEET cytosolic domain (32 to 108 residues) expressed in Escherichia coli BL21 by Cheng-Prusoff analysis')\n", " * postgresql://localhost/chembl_26\n", "Mean nAts 20.3, mcs nAts: 7\n", "[#6,#7,#8,#16]-,=;!@[#6,#7]1:,-,=;@[#6,#7]:,-;@[#6,#7]:,-;@[#6,#7,#8,#16]:,-,=;@[#6,#7]:,-;@[#6,#7]:,-;@1\n", "(1332011, 'CHEMBL3223904', 85, 'Antagonist activity at human adenosine A1 receptor expressed in CHO-K1 cells preincubated for 15 mins before r-PIA addition measured after 5.5 to 6 hrs by beta-galactosidase reporter gene assay')\n", " * postgresql://localhost/chembl_26\n", "Mean nAts 24.2, mcs nAts: 13\n", "[#7]-&!@[#6]-&!@[#6]1:&@[#6]:&@[#6]2:&@[#6](:&@[#16]:&@1):&@[#7]:&@[#6](:&@[#7]:&@[#6]:&@2-&!@[#7])-&!@[#6]\n", "(1637967, 'CHEMBL3881028', 85, 'Inhibition of full length human C-terminal 6His-tagged CHK1 expressed in baculovirus/insect expression system assessed as reduction in NADH oxidation using Syntide2 as substrate by pyruvate kinase/lactate dehydrogenase coupled assay')\n", " * postgresql://localhost/chembl_26\n", "Mean nAts 27.9, mcs nAts: 11\n", "[#6,#7,#8,#16]-&!@[#6]1:&@[#6]:&@[#6]:&@[#6]2:&@[#6](:&@[#6]:&@1):&@[#7]:&@[#7]:&@[#6]:&@2-&!@[#6]\n", "(304044, 'CHEMBL840221', 85, 'Binding affinity against Opioid receptor kappa 1 from guinea pig brain membranes using [3H]U-69593')\n", " * postgresql://localhost/chembl_26\n", "Mean nAts 33.2, mcs nAts: 18\n", "[#6]1:&@[#6]:&@[#6]:&@[#6]:&@[#6]2:&@[#6]:&@1-&@[#6]13-&@[#6]-&@[#6]-&@[#7](-&@[#6](-&@[#6]-&@2)-&@[#6]-&@1-&@[#6]-&@[#6]-,:;@[#6]-&@[#6]-&@3)-&!@[#6]\n", "(304036, 'CHEMBL840214', 84, 'Binding affinity against Opioid receptor mu 1 from rat brain membranes using [3H]DAMGO')\n", " * postgresql://localhost/chembl_26\n", "Mean nAts 33.0, mcs nAts: 18\n", "[#6]1:&@[#6]:&@[#6]:&@[#6]:&@[#6]2:&@[#6]:&@1-&@[#6]13-&@[#6]-&@[#6]-&@[#7](-&@[#6](-&@[#6]-&@2)-&@[#6]-&@1-&@[#6]-&@[#6]-,:;@[#6]-&@[#6]-&@3)-&!@[#6]\n", "(303375, 'CHEMBL839693', 84, 'Binding affinity for human tachykinin receptor 2 was measured by using [125I]NKA as radio ligand')\n", " * postgresql://localhost/chembl_26\n", "Mean nAts 37.2, mcs nAts: 24\n", "[#8,#6,#7]=,-;!@[#6](-&!@[#7]-&!@[#6](-&!@[#6]-&!@[#6]1:&@[#6]:&@[#6]:&@[#6]:&@[#6]:&@[#6]:&@1)-&!@[#6](=&!@[#8])-&!@[#7]-&!@[#6]-&!@[#6]-&!@[#6]-&!@[#7]1-&@[#6]-&@[#6]-&@[#8]-&@[#6]-&@[#6]-&@1)-,=;!@[#6,#7,#8]\n", "(609034, 'CHEMBL1064501', 84, 'Inhibition of human P2Y12 receptor expressed in CHO cells')\n", " * postgresql://localhost/chembl_26\n", "Mean nAts 47.2, mcs nAts: 37\n", "[#6]-&!@[#6]-&!@[#6]-&!@[#6]-&!@[#8]-&!@[#6](=&!@[#8])-&!@[#7]1-&@[#6]-&@[#6]-&@[#7](-&@[#6]-&@[#6]-&@1)-&!@[#6](=&!@[#8])-&!@[#6](-&!@[#6]-&!@[#6]-&!@[#6](=&!@[#8])-&!@[#8])-&!@[#7]-&!@[#6](=&!@[#8])-&!@[#6]1:&@[#6]:&@[#6](-&!@[#7]):&@[#6]:&@[#6](:&@[#7]:&@1)-&!@[#6]1:&@[#6]:&@[#6]:&@[#6]:&@[#6]:&@[#6]:&@1\n", "(444902, 'CHEMBL894050', 82, 'Inhibition of ENT1 in human K562 cells by flow cytometric assay')\n", " * postgresql://localhost/chembl_26\n", "Mean nAts 35.4, mcs nAts: 20\n", "[#7,#6]-&!@[#6]1:&@[#7]:&@[#6](-&!@[#7,#8]-&!@[#6]-&!@[#6]-&!@[#8]):&@[#7]:&@[#6]2:&@[#6]:&@1:&@[#7]:&@[#6](:&@[#7]:&@[#6]:&@2-&!@[#7,#6])-&!@[#7,#8]-&!@[#6]-&!@[#6]-&!@[#8]\n", "(1366808, 'CHEMBL3297243', 82, 'Displacement of [3H]ketanserin from human recombinant 5-HT2A receptor expressed in CHO-K1 cell membrane after 60 mins by liquid scintillation counting analysis')\n", " * postgresql://localhost/chembl_26\n", "Mean nAts 31.8, mcs nAts: 21\n", "[#8,#6,#16]=,-;!@[#16,#7]-&!@[#7,#6]-&!@[#6]-&!@[#6]-&!@[#6]-&!@[#7]1-&@[#6]-&@[#6]-&@[#7,#6](-&@[#6]-&@[#6]-&@1)-&!@[#6]1:&@[#7]:&@[#16,#8]:&@[#6]2:&@[#6]:&@1:&@[#6]:&@[#6]:&@[#6]:&@[#6]:&@2\n", "(1366806, 'CHEMBL3297241', 82, 'Displacement of [3H]LSDm from human recombinant 5-HT6 receptor expressed in HEK293 cell membrane after 60 mins by liquid scintillation counting analysis')\n", " * postgresql://localhost/chembl_26\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "RDKit ERROR: [07:43:13] Aromatic bonds on non aromatic atom 12\n", "RDKit INFO: [07:43:13] Aromatic bonds on non aromatic atom 12\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Mean nAts 31.8, mcs nAts: 21\n", "[#8,#6,#16]=,-;!@[#16,#7]-&!@[#7,#6]-&!@[#6]-&!@[#6]-&!@[#6]-&!@[#7]1-&@[#6]-&@[#6]-&@[#7,#6](-&@[#6]-&@[#6]-&@1)-&!@[#6]1:&@[#7]:&@[#16,#8]:&@[#6]2:&@[#6]:&@1:&@[#6]:&@[#6]:&@[#6]:&@[#6]:&@2\n", "(1366807, 'CHEMBL3297242', 82, 'Displacement of [3H]LSD from human recombinant 5-HT7 receptor expressed in CHO-K1 cell membrane after 120 mins by liquid scintillation counting analysis')\n", " * postgresql://localhost/chembl_26\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "RDKit ERROR: [07:43:14] Aromatic bonds on non aromatic atom 12\n", "RDKit INFO: [07:43:14] Aromatic bonds on non aromatic atom 12\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Mean nAts 31.8, mcs nAts: 21\n", "[#8,#6,#16]=,-;!@[#16,#7]-&!@[#7,#6]-&!@[#6]-&!@[#6]-&!@[#6]-&!@[#7]1-&@[#6]-&@[#6]-&@[#7,#6](-&@[#6]-&@[#6]-&@1)-&!@[#6]1:&@[#7]:&@[#16,#8]:&@[#6]2:&@[#6]:&@1:&@[#6]:&@[#6]:&@[#6]:&@[#6]:&@2\n", "(1366809, 'CHEMBL3297244', 82, 'Displacement of [3H]N-methylspiperone from human recombinant D2 receptor expressed in CHO-K1 cell membrane after 60 mins by liquid scintillation counting analysis')\n", " * postgresql://localhost/chembl_26\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "RDKit ERROR: [07:43:15] Aromatic bonds on non aromatic atom 12\n", "RDKit INFO: [07:43:15] Aromatic bonds on non aromatic atom 12\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Mean nAts 31.8, mcs nAts: 21\n", "[#8,#6,#16]=,-;!@[#16,#7]-&!@[#7,#6]-&!@[#6]-&!@[#6]-&!@[#6]-&!@[#7]1-&@[#6]-&@[#6]-&@[#7,#6](-&@[#6]-&@[#6]-&@1)-&!@[#6]1:&@[#7]:&@[#16,#8]:&@[#6]2:&@[#6]:&@1:&@[#6]:&@[#6]:&@[#6]:&@[#6]:&@2\n", "(1659425, 'CHEMBL4009037', 81, 'Displacement of [3H]-LSD from recombinant human 5-HT6 receptor expressed in HEK293 cells after 60 mins')\n", " * postgresql://localhost/chembl_26\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "RDKit ERROR: [07:43:16] Aromatic bonds on non aromatic atom 12\n", "RDKit INFO: [07:43:16] Aromatic bonds on non aromatic atom 12\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Mean nAts 29.7, mcs nAts: 25\n", "[#8]=&!@[#16](=&!@[#8])(-&!@[#6]1:&@[#6]:&@[#6]:&@[#6]:&@[#6]:&@[#6]:&@1)-&!@[#7]1:&@[#6,#7]:&@[#6](:&@[#6]2:&@[#6]:&@1:&@[#6,#7]:&@[#6]:&@[#6]:&@[#6,#7]:&@2)-&!@[#6]-&!@[#7]1-&@[#6]-&@[#6]-&@[#7]-&@[#6]-&@[#6]-&@1\n", "(418719, 'CHEMBL912951', 80, 'Displacement of [125I]CCK-8S from human CCK2R')\n", " * postgresql://localhost/chembl_26\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "RDKit ERROR: [07:43:18] Aromatic bonds on non aromatic atom 9\n", "RDKit INFO: [07:43:18] Aromatic bonds on non aromatic atom 9\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Mean nAts 29.5, mcs nAts: 18\n", "[#8,#7]=,-;!@[#6](-&!@[#6]1:,-;@[#6]:,=;@[#6]:,-;@[#6]:,-;@[#6,#7]:,-;@[#6]:,=;@1-&!@[#7]-&!@[#16,#6](=&!@[#8])-&!@[#6]1:&@[#6]:&@[#6]:&@[#6]:&@[#6]:&@[#6]:&@1)-,=;!@[#7,#8]\n", "(981861, 'CHEMBL2427556', 80, 'Binding affinity to human adenosine A3 receptor')\n", " * postgresql://localhost/chembl_26\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "RDKit ERROR: [07:43:48] Aromatic bonds on non aromatic atom 2\n", "RDKit INFO: [07:43:48] Aromatic bonds on non aromatic atom 2\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Mean nAts 30.8, mcs nAts: 19\n", "[#6]-&!@[#7]1:&@[#6]:&@[#6]2:&@[#6](:&@[#7]:&@1):&@[#7]:&@[#6](:&@[#7]1:&@[#6]:&@2:&@[#7]:&@[#6](:&@[#7]:&@1)-&!@[#6]1:&@[#6]:&@[#6]:&@[#6]:&@[#8]:&@1)-&!@[#7]\n", "(1535759, 'CHEMBL3707774', 79, 'Radioligand Binding: The binding of [3H]MLA was measured using a modification of the methods of Davies et al., Neuropharmacol. 38: 679 (1999). [3H]ML ... (656 characters truncated) ... er was washed with PBS (3x1 mL) at room temperature. Non-specific binding was determined by inclusion of 50 uM non-radioactive MLA in selected wells.')\n", " * postgresql://localhost/chembl_26\n", "Mean nAts 17.3, mcs nAts: 15\n", "[#8]=&!@[#6](-&!@[#6]1:&@[#6,#7,#8]:&@[#6,#7,#8]:&@[#7,#6,#8]:&@[#8,#6,#7]:&@1)-&!@[#7]1-&@[#6]-&@[#6]-&@[#6]-&@[#7]-&@[#6]-&@[#6]-&@[#6]-&@1\n", "(429601, 'CHEMBL919033', 79, 'Displacement of [3h]DPCPX from adenosine A receptor in rat cerebral cortex membrane')\n", " * postgresql://localhost/chembl_26\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "RDKit ERROR: [07:43:49] Aromatic bonds on non aromatic atom 2\n", "RDKit INFO: [07:43:49] Aromatic bonds on non aromatic atom 2\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Mean nAts 32.5, mcs nAts: 16\n", "[#7]-&!@[#6]1:&@[#7,#6]:&@[#6](-&!@[#7]):&@[#7,#6]:&@[#6]2:&@[#7]:&@1:&@[#7]:&@[#6](:&@[#7]:&@2)-&!@[#6]1:&@[#6]:&@[#6]:&@[#6]:&@[#8]:&@1\n", "(1528657, 'CHEMBL3706132', 79, 'Radioligand Binding: The binding of [3H]MLA was measured using a modification of the methods of Davies et al., Neuropharmacol. 38: 679 (1999). [3H]ML ... (656 characters truncated) ... er was washed with PBS (3x1 mL) at room temperature. Non-specific binding was determined by inclusion of 50 uM non-radioactive MLA in selected wells.')\n", " * postgresql://localhost/chembl_26\n", "Mean nAts 17.3, mcs nAts: 15\n", "[#8]=&!@[#6](-&!@[#6]1:&@[#6,#7,#8]:&@[#6,#7,#8]:&@[#6,#7,#8]:&@[#8,#6,#7]:&@1)-&!@[#7]1-&@[#6]-&@[#6]-&@[#6]-&@[#7]-&@[#6]-&@[#6]-&@[#6]-&@1\n", "(583010, 'CHEMBL1051848', 79, 'Displacement of [H]GR-113808 from human 5HT4C receptor expressed in HEK293 cells by liquid scintillation counting')\n", " * postgresql://localhost/chembl_26\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "RDKit ERROR: [07:44:02] Aromatic bonds on non aromatic atom 1\n", "RDKit INFO: [07:44:02] Aromatic bonds on non aromatic atom 1\n", "RDKit ERROR: [07:44:02] Aromatic bonds on non aromatic atom 2\n", "RDKit INFO: [07:44:02] Aromatic bonds on non aromatic atom 2\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Mean nAts 32.3, mcs nAts: 9\n", "[#6]1:,-;@[#6,#7]:,-;@[#6,#7]:,-;@[#6]:,-;@[#6]:,-;@[#6,#7]:,-;@1-&!@[#6,#7]-&!@[#7,#6,#8]-,=;!@[#6,#7,#8]\n", "(1527942, 'CHEMBL3705629', 79, 'Biochemical Assay: The ability of the compounds to bind to the 5-HT2A, D3 and D2 receptors was determined using radioligand binding to cloned receptors selectively expressed in HEK-293 EBNA cells.')\n", " * postgresql://localhost/chembl_26\n", "Mean nAts 31.8, mcs nAts: 27\n", "[#6,#7,#8]-,=;!@[#6,#16](=,-;!@[#8,#6,#7])-&!@[#7]-&!@[#6]1-&@[#6]-&@[#6]-&@[#6](-&@[#6]-&@[#6]-&@1)-&!@[#6]-&!@[#6]-&!@[#7]1-&@[#6]-&@[#6]-&@[#6](-&@[#6]-&@[#6]-&@1)-&!@[#6]1:&@[#6]:&@[#6]:&@[#6]:&@[#6]2:&@[#6]:&@1-&@[#8]-&@[#6]-&@[#8]-&@2\n", "(429600, 'CHEMBL919032', 79, 'Displacement of [3H]ZM241385 from adenosine A2A receptor in rat brain membrane')\n", " * postgresql://localhost/chembl_26\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "RDKit ERROR: [07:44:02] Aromatic bonds on non aromatic atom 0\n", "RDKit INFO: [07:44:02] Aromatic bonds on non aromatic atom 0\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Mean nAts 32.5, mcs nAts: 16\n", "[#7]-&!@[#6]1:&@[#7,#6]:&@[#6](-&!@[#7]):&@[#7,#6]:&@[#6]2:&@[#7]:&@1:&@[#7]:&@[#6](:&@[#7]:&@2)-&!@[#6]1:&@[#6]:&@[#6]:&@[#6]:&@[#8]:&@1\n", "(1535083, 'CHEMBL3707825', 79, 'Biochemical Assay: The ability of the compounds to bind to the 5-HT2A, D3 and D2 receptors was determined using radioligand binding to cloned receptors selectively expressed in HEK-293 EBNA cells.')\n", " * postgresql://localhost/chembl_26\n", "Mean nAts 31.8, mcs nAts: 27\n", "[#6,#7,#8]-,=;!@[#6,#16](=,-;!@[#8,#6,#7])-&!@[#7]-&!@[#6]1-&@[#6]-&@[#6]-&@[#6](-&@[#6]-&@[#6]-&@1)-&!@[#6]-&!@[#6]-&!@[#7]1-&@[#6]-&@[#6]-&@[#6](-&@[#6]-&@[#6]-&@1)-&!@[#6]1:&@[#6]:&@[#6]:&@[#6]:&@[#6]2:&@[#6]:&@1-&@[#8]-&@[#6]-&@[#8]-&@2\n", "(1535448, 'CHEMBL3707696', 79, 'Biochemical Assay: The ability of the compounds to bind to the 5-HT2A, D3 and D2 receptors was determined using radioligand binding to cloned receptors selectively expressed in HEK-293 EBNA cells.')\n", " * postgresql://localhost/chembl_26\n", "Mean nAts 31.8, mcs nAts: 27\n", "[#6,#7,#8]-,=;!@[#6,#16](=,-;!@[#8,#6,#7])-&!@[#7]-&!@[#6]1-&@[#6]-&@[#6]-&@[#6](-&@[#6]-&@[#6]-&@1)-&!@[#6]-&!@[#6]-&!@[#7]1-&@[#6]-&@[#6]-&@[#6](-&@[#6]-&@[#6]-&@1)-&!@[#6]1:&@[#6]:&@[#6]:&@[#6]:&@[#6]2:&@[#6]:&@1-&@[#8]-&@[#6]-&@[#8]-&@2\n", "(1527798, 'CHEMBL3705339', 78, 'Enzymatic Assay: The enzymatic activity of PAK4 KD was measured by its ability to catalyzed the transfer of a phosphate residue from a nucleoside triphosphate to an amino acid side chain of a commercially available peptide (amino acid sequence EVPRRKSLVGTPYWM).')\n", " * postgresql://localhost/chembl_26\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "RDKit ERROR: [07:44:15] Aromatic bonds on non aromatic atom 1\n", "RDKit INFO: [07:44:15] Aromatic bonds on non aromatic atom 1\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Mean nAts 33.9, mcs nAts: 21\n", "[#6]1:&@[#7,#6]:&@[#6]:&@[#6,#7]:&@[#6](:&@[#7,#6]:&@1)-&!@[#7]-&!@[#6]1:&@[#7]:&@[#7]:&@[#6]2:&@[#6]:&@1-&@[#6]-&@[#7](-&@[#6]-&@2(-&!@[#6])-&!@[#6])-&!@[#6](=&!@[#8])-&!@[#7,#8]-&!@[#6]\n", "(1637416, 'CHEMBL3880477', 78, 'Displacement of [3H]-2-[4-(3-azidophenyl)-2-oxo-1-pyrrolidinyl]butanamide from SV2A levetiracetam binding site in Sprague-Dawley rat cerebral cortex membranes after 120 mins by liquid scintillation counting method')\n", " * postgresql://localhost/chembl_26\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "RDKit ERROR: [07:44:45] Aromatic bonds on non aromatic atom 0\n", "RDKit INFO: [07:44:45] Aromatic bonds on non aromatic atom 0\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Mean nAts 17.1, mcs nAts: 13\n", "[#6,#7]-&!@[#6]1-&@[#6]-&@[#6](-&@[#7](-&@[#6]-&@1)-&!@[#6](-&!@[#6]-&!@[#6])-&!@[#6](-,=;!@[#7,#8])=,-;!@[#8,#7])=&!@[#8]\n", "(880272, 'CHEMBL2215850', 78, 'Displacement of [125I]-CXCL10 from human CXCR3 expressed in HEK293 cells')\n", " * postgresql://localhost/chembl_26\n", "Mean nAts 25.1, mcs nAts: 11\n", "[#6,#7]-,=;!@[#7,#6](-&!@[#6,#7]-,=;!@[#6,#8])-&!@[#6,#7]-&!@[#6]1:,-,=;@[#6]:,-;@[#6]:,-;@[#6]:,-;@[#6,#7]:,-;@[#6]:,-;@1\n", "(1534795, 'CHEMBL3707798', 77, 'Radioligand Binding Assay: Aliquots of membrane preparations were thawed at RT, resupended in assay buffer (D2, D3: 50 mM Tris-HCl, 120 mM NaCl, 5 mM ... (546 characters truncated) ... [3H]-spiperone for D3, and 1.1 nM [3H]-ketanserin for 5-HT2A) and ten concentrations of test compound in ranging between 10 μM-0.1 nM for 1 h at RT.')\n", " * postgresql://localhost/chembl_26\n", "Mean nAts 31.7, mcs nAts: 27\n", "[#6,#7,#8]-,=;!@[#6,#16](=,-;!@[#8,#6,#7])-&!@[#7]-&!@[#6]1-&@[#6]-&@[#6]-&@[#6](-&@[#6]-&@[#6]-&@1)-&!@[#6]-&!@[#6]-&!@[#7]1-&@[#6]-&@[#6]-&@[#7](-&@[#6]-&@[#6]-&@1)-&!@[#6]1:&@[#6]:&@[#6]:&@[#6]:&@[#6]2:&@[#6]:&@1-&@[#8]-&@[#6]-&@[#8]-&@2\n", "(1638066, 'CHEMBL3881127', 77, 'Inhibition of recombinant MCH5 (unknown origin) pre-incubated for 60 mins with Acetyl-Tyr-Val-Ala-Asp-amino-4-methylcoumarin substrate followed by enzyme addition by fluorescence based assay')\n", " * postgresql://localhost/chembl_26\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "RDKit ERROR: [07:44:47] Aromatic bonds on non aromatic atom 5\n", "RDKit INFO: [07:44:47] Aromatic bonds on non aromatic atom 5\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Mean nAts 41.1, mcs nAts: 22\n", "[#6]-&!@[#6](-&!@[#7]-&!@[#6](=&!@[#8])-&!@[#6](=&!@[#8])-&!@[#7]-&!@[#6])-&!@[#6](=&!@[#8])-&!@[#7]-&!@[#6](-&!@[#6]-&!@[#6](=&!@[#8])-&!@[#8])-&!@[#6](=&!@[#8])-&!@[#6]-&!@[#8]-&!@[#6,#15]\n", "(1638064, 'CHEMBL3881125', 77, 'Inhibition of recombinant MCH2 (unknown origin) pre-incubated for 60 mins with Acetyl-Tyr-Val-Ala-Asp-amino-4-methylcoumarin substrate followed by enzyme addition by fluorescence based assay')\n", " * postgresql://localhost/chembl_26\n", "Mean nAts 41.1, mcs nAts: 22\n", "[#6]-&!@[#6](-&!@[#7]-&!@[#6](=&!@[#8])-&!@[#6](=&!@[#8])-&!@[#7]-&!@[#6])-&!@[#6](=&!@[#8])-&!@[#7]-&!@[#6](-&!@[#6]-&!@[#6](=&!@[#8])-&!@[#8])-&!@[#6](=&!@[#8])-&!@[#6]-&!@[#8]-&!@[#6,#15]\n", "(1638062, 'CHEMBL3881123', 77, 'Inhibition of recombinant CPP32 (unknown origin) pre-incubated for 60 mins with Acetyl-Tyr-Val-Ala-Asp-amino-4-methylcoumarin substrate followed by enzyme addition by fluorescence based assay')\n", " * postgresql://localhost/chembl_26\n", "Mean nAts 41.1, mcs nAts: 22\n", "[#6]-&!@[#6](-&!@[#7]-&!@[#6](=&!@[#8])-&!@[#6](=&!@[#8])-&!@[#7]-&!@[#6])-&!@[#6](=&!@[#8])-&!@[#7]-&!@[#6](-&!@[#6]-&!@[#6](=&!@[#8])-&!@[#8])-&!@[#6](=&!@[#8])-&!@[#6]-&!@[#8]-&!@[#6,#15]\n", "(1638060, 'CHEMBL3881121', 77, 'Inhibition of mouse recombinant ICE pre-incubated for 60 mins with Acetyl-Tyr-Val-Ala-Asp-amino-4-methylcoumarin substrate followed by enzyme addition by fluorescence based assay')\n", " * postgresql://localhost/chembl_26\n", "Mean nAts 41.1, mcs nAts: 22\n", "[#6]-&!@[#6](-&!@[#7]-&!@[#6](=&!@[#8])-&!@[#6](=&!@[#8])-&!@[#7]-&!@[#6])-&!@[#6](=&!@[#8])-&!@[#7]-&!@[#6](-&!@[#6]-&!@[#6](=&!@[#8])-&!@[#8])-&!@[#6](=&!@[#8])-&!@[#6]-&!@[#8]-&!@[#6,#15]\n", "(418718, 'CHEMBL913512', 77, 'Displacement of [125I]CCK-8S from human CCK1R')\n", " * postgresql://localhost/chembl_26\n", "Mean nAts 29.6, mcs nAts: 19\n", "[#8,#7]=,-;!@[#6](-&!@[#6]1:,-;@[#6]:,=;@[#6]:,-;@[#6]:,-;@[#6,#7]:,-;@[#6]:,=;@1-&!@[#7]-&!@[#16](=&!@[#8])(=&!@[#8])-&!@[#6]1:&@[#6]:&@[#6]:&@[#6]:&@[#6]:&@[#6]:&@1)-,=;!@[#7,#8]\n", "(471789, 'CHEMBL939997', 77, 'Displacement of [3H]DPCPX from human adenosine A2B receptor expressed in HEK293 cells')\n", " * postgresql://localhost/chembl_26\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "RDKit ERROR: [07:45:29] Aromatic bonds on non aromatic atom 2\n", "RDKit INFO: [07:45:29] Aromatic bonds on non aromatic atom 2\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Mean nAts 38.3, mcs nAts: 29\n", "[#7,#6]1-&@[#6]-&@[#6]-&@[#7](-&@[#6]-&@[#6]-,:;@1)-&!@[#6](=&!@[#8])-&!@[#6]-&!@[#8]-&!@[#6]1:&@[#6]:&@[#6]:&@[#6](:&@[#6]:&@[#6]:&@1)-&!@[#6]1:&@[#6,#7]:&@[#6]2:&@[#6](:&@[#7,#6]:&@1):&@[#6,#7](=,-;!@[#8,#6]):&@[#7,#6](:&@[#6,#7](:&@[#7,#6]:&@2-,=;!@[#6,#8])=,-;!@[#8,#6])-,=;!@[#6,#8]\n", "(1535789, 'CHEMBL3707837', 77, 'Radioligand Binding Assay: Aliquots of membrane preparations were thawed at RT, resupended in assay buffer (D2, D3: 50 mM Tris-HCl, 120 mM NaCl, 5 mM ... (546 characters truncated) ... [3H]-spiperone for D3, and 1.1 nM [3H]-ketanserin for 5-HT2A) and ten concentrations of test compound in ranging between 10 μM-0.1 nM for 1 h at RT.')\n", " * postgresql://localhost/chembl_26\n", "Mean nAts 31.7, mcs nAts: 27\n", "[#6,#7,#8]-,=;!@[#6,#16](=,-;!@[#8,#6,#7])-&!@[#7]-&!@[#6]1-&@[#6]-&@[#6]-&@[#6](-&@[#6]-&@[#6]-&@1)-&!@[#6]-&!@[#6]-&!@[#7]1-&@[#6]-&@[#6]-&@[#7](-&@[#6]-&@[#6]-&@1)-&!@[#6]1:&@[#6]:&@[#6]:&@[#6]:&@[#6]2:&@[#6]:&@1-&@[#8]-&@[#6]-&@[#8]-&@2\n", "(855538, 'CHEMBL2162843', 77, 'Displacement of [3H]-5-CT from human 5-HT7b receptor expressed in HEK293 cells after 1 hr')\n", " * postgresql://localhost/chembl_26\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "RDKit ERROR: [07:45:59] Aromatic bonds on non aromatic atom 16\n", "RDKit INFO: [07:45:59] Aromatic bonds on non aromatic atom 16\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Mean nAts 29.1, mcs nAts: 10\n", "[#6]1-,:;@[#6]-,:;@[#6]-,:;@[#7,#6](-,:;@[#6]-,:;@[#6]-,:;@1)-&!@[#6,#8,#16]-&!@[#6,#7]-&!@[#8,#6,#16]-,=;!@[#6,#7,#8]\n", "(1528852, 'CHEMBL3706025', 77, 'In Vitro Assay: The effectiveness of compounds of the present invention as inhibitors of the coagulation Factors XIa, VIIa, IXa, Xa, XIIa, plasma kal ... (684 characters truncated) ... absorbance or fluorescence change in the presence of inhibitor is indicative of enzyme inhibition. Such methods are known to one skilled in the art.')\n", " * postgresql://localhost/chembl_26\n", "Mean nAts 41.7, mcs nAts: 10\n", "[#6,#7,#8]-,=;!@[#8,#6]-&!@[#6]-,=;!@[#7,#6]-&!@[#6]1:&@[#6]:&@[#6]:&@[#6]:&@[#6]:&@[#6]:&@1\n", "(1528054, 'CHEMBL3705361', 77, 'Radioligand Binding Assay: Aliquots of membrane preparations were thawed at RT, resupended in assay buffer (D2, D3: 50 mM Tris-HCl, 120 mM NaCl, 5 mM ... (546 characters truncated) ... [3H]-spiperone for D3, and 1.1 nM [3H]-ketanserin for 5-HT2A) and ten concentrations of test compound in ranging between 10 μM-0.1 nM for 1 h at RT.')\n", " * postgresql://localhost/chembl_26\n", "Mean nAts 31.7, mcs nAts: 27\n", "[#6,#7,#8]-,=;!@[#6,#16](=,-;!@[#8,#6,#7])-&!@[#7]-&!@[#6]1-&@[#6]-&@[#6]-&@[#6](-&@[#6]-&@[#6]-&@1)-&!@[#6]-&!@[#6]-&!@[#7]1-&@[#6]-&@[#6]-&@[#7](-&@[#6]-&@[#6]-&@1)-&!@[#6]1:&@[#6]:&@[#6]:&@[#6]:&@[#6]2:&@[#6]:&@1-&@[#8]-&@[#6]-&@[#8]-&@2\n", "(743931, 'CHEMBL1767925', 76, 'Inhibition of full-length human FAAH expressed in COS-7 cells assessed as [14C]-labeled oleamide to oleic acid conversion')\n", " * postgresql://localhost/chembl_26\n", "Mean nAts 28.2, mcs nAts: 8\n", "[#8,#6]=,-;!@[#6](-,=;!@[#6,#8])-&!@[#6]1-,:;@[#6,#7]-,:;@[#6,#7]:&@[#6]-,:;@[#6,#8]-,:;@1\n", "(1699615, 'CHEMBL4050597', 75, 'Inhibition of recombinant human furin expressed in drosophila S2 cells using pyrGlu-Arg-Thr-Lys-Arg-7-amido-4-methylcoumarin as substrate after 60 mins by spectrofluorometry method')\n", " * postgresql://localhost/chembl_26\n", "Mean nAts 73.5, mcs nAts: 44\n", "[#6]-&!@[#6](=,-;!@[#8,#6])-&!@[#7,#6]-&!@[#6](-&!@[#6,#7]-&!@[#6](-,=;!@[#6,#7,#8])-,=;!@[#6,#8])-&!@[#6](=&!@[#8])-&!@[#7]-&!@[#6](-&!@[#6]-&!@[#6,#8])-&!@[#6](=&!@[#8])-&!@[#7]-&!@[#6](-&!@[#6]-&!@[#6]-,=;!@[#6,#7,#8,#16])-&!@[#6](=&!@[#8])-&!@[#7]-&!@[#6]-&!@[#6](=&!@[#8])-&!@[#7]-&!@[#6](-&!@[#6]-&!@[#6])-&!@[#6](=&!@[#8])-&!@[#7]-&!@[#6](-&!@[#6]-&!@[#7,#6]-&!@[#6]-&!@[#6]-&!@[#6,#7])-&!@[#6](-,=;!@[#6,#8])-&!@[#6,#7]\n", "(55071, 'CHEMBL668388', 75, 'Inhibitory activity against Lactobacillus casei dihydrofolate reductase (DHFR)')\n", " * postgresql://localhost/chembl_26\n", "Mean nAts 22.7, mcs nAts: 16\n", "[#6]-&!@[#6]1(-&!@[#6])-&@[#7]=&@[#6](-&!@[#7])-&@[#7]=&@[#6](-&@[#7]-&@1-&!@[#6]1:&@[#6]:&@[#6]:&@[#6]:&@[#6]:&@[#6]:&@1)-&!@[#7]\n", "(53631, 'CHEMBL666660', 75, 'Inhibitory activity against isolated chicken liver dihydrofolate reductase (DHFR)')\n", " * postgresql://localhost/chembl_26\n", "Mean nAts 22.7, mcs nAts: 16\n", "[#6]-&!@[#6]1(-&!@[#6])-&@[#7]=&@[#6](-&!@[#7])-&@[#7]=&@[#6](-&@[#7]-&@1-&!@[#6]1:&@[#6]:&@[#6]:&@[#6]:&@[#6]:&@[#6]:&@1)-&!@[#7]\n", "(634304, 'CHEMBL1120717', 75, 'Displacement of [3H]N-alpha-methylhistamine from human cloned histamine H3 receptor')\n", " * postgresql://localhost/chembl_26\n", "Mean nAts 27.3, mcs nAts: 19\n", "[#6,#7]-&!@[#6]1:&@[#6]:&@[#6]:&@[#6]2:&@[#6](:&@[#7]:&@1):&@[#6]:&@[#6]:&@[#6](:&@[#6]:&@2)-&!@[#6]-&!@[#6]-&!@[#7]1-&@[#6]-&@[#6]-&@[#6]-&@[#6]-&@1-&!@[#6]\n", "(634305, 'CHEMBL1120718', 75, 'Displacement of [3H]N-alpha-methylhistamine from rat cloned histamine H3 receptor')\n", " * postgresql://localhost/chembl_26\n", "Mean nAts 27.3, mcs nAts: 19\n", "[#6,#7]-&!@[#6]1:&@[#6]:&@[#6]:&@[#6]2:&@[#6](:&@[#7]:&@1):&@[#6]:&@[#6]:&@[#6](:&@[#6]:&@2)-&!@[#6]-&!@[#6]-&!@[#7]1-&@[#6]-&@[#6]-&@[#6]-&@[#6]-&@1-&!@[#6]\n", "(634306, 'CHEMBL1120719', 75, 'Displacement of [3H]dofetilide from human ERG expressed in HEK293 cells')\n", " * postgresql://localhost/chembl_26\n", "Mean nAts 27.3, mcs nAts: 19\n", "[#6,#7]-&!@[#6]1:&@[#6]:&@[#6]:&@[#6]2:&@[#6](:&@[#7]:&@1):&@[#6]:&@[#6]:&@[#6](:&@[#6]:&@2)-&!@[#6]-&!@[#6]-&!@[#7]1-&@[#6]-&@[#6]-&@[#6]-&@[#6]-&@1-&!@[#6]\n", "(1636657, 'CHEMBL3879555', 75, 'Inhibition of human dihydroorotate dehydrogenase assessed as reduction in orotate production using L-dihydroorotate as substrate measured after 20 mins by spectrophotometric method')\n", " * postgresql://localhost/chembl_26\n", "Mean nAts 29.0, mcs nAts: 14\n", "[#6]-&!@[#6]-&!@[#6]-&!@[#6]1:&@[#6](-&!@[#6](=&!@[#8])-&!@[#8]):&@[#7]:&@[#6](:&@[#7]:&@[#6]:&@1=&!@[#8])=&!@[#8]\n", "(303258, 'CHEMBL826384', 75, 'Inhibition of [3H]LSD binding to human 5-hydroxytryptamine 6 receptor expressed in HEK293 cells')\n", " * postgresql://localhost/chembl_26\n", "Mean nAts 29.7, mcs nAts: 8\n", "[#6,#7,#8,#16]-,=;!@[#7,#8,#16]-&!@[#6,#7]1:,-;@[#6]:,-;@[#6]:,-;@[#7,#6]:,-;@[#6]:,-;@[#7,#6]:,-;@1\n", "(513112, 'CHEMBL973601', 75, 'Binding affinity to human MC4 receptor')\n", " * postgresql://localhost/chembl_26\n", "Mean nAts 37.4, mcs nAts: 30\n", "[#6]-&!@[#6,#7,#8]-&!@[#6]-&!@[#6]1:,-;@[#6]:,-;@[#6]:,-;@[#6]:,-;@[#6]:,-;@[#6]:,-;@1-&!@[#7]1-&@[#6]-&@[#6]-&@[#7](-&@[#6]-&@[#6]-&@1)-&!@[#6](=&!@[#8])-&!@[#6](-&!@[#6]-&!@[#6]1:&@[#6]:&@[#6]:&@[#6](:&@[#6]:&@[#6]:&@1-&!@[#17])-&!@[#17])-&!@[#7]-&!@[#6]-,=;!@[#6,#8]\n", "(1699614, 'CHEMBL4050596', 75, 'Inhibition of recombinant human PACE4 expressed in drosophila S2 cells using pyrGlu-Arg-Thr-Lys-Arg-7-amido-4-methylcoumarin as substrate after 60 mins by spectrofluorometry method')\n", " * postgresql://localhost/chembl_26\n", "Mean nAts 73.5, mcs nAts: 44\n", "[#6]-&!@[#6](=,-;!@[#8,#6])-&!@[#7,#6]-&!@[#6](-&!@[#6,#7]-&!@[#6](-,=;!@[#6,#7,#8])-,=;!@[#6,#8])-&!@[#6](=&!@[#8])-&!@[#7]-&!@[#6](-&!@[#6]-&!@[#6,#8])-&!@[#6](=&!@[#8])-&!@[#7]-&!@[#6](-&!@[#6]-&!@[#6]-,=;!@[#6,#7,#8,#16])-&!@[#6](=&!@[#8])-&!@[#7]-&!@[#6]-&!@[#6](=&!@[#8])-&!@[#7]-&!@[#6](-&!@[#6]-&!@[#6])-&!@[#6](=&!@[#8])-&!@[#7]-&!@[#6](-&!@[#6]-&!@[#7,#6]-&!@[#6]-&!@[#6]-&!@[#6,#7])-&!@[#6](-,=;!@[#6,#8])-&!@[#6,#7]\n", "(1527621, 'CHEMBL3705078', 75, 'Radioligand Binding Assay: The TAAR1 radioligand 3[H]-(S)-4-[(ethyl-phenyl-amino)-methyl]-4,5-dihydro-oxazol-2-ylamine (described in WO 2008/098857) ... (254 characters truncated) ... g was defined as the amount of 3[H]-(S)-4-[(ethyl-phenyl-amino)-methyl]-4,5-dihydro-oxazol-2-ylamine bound in the presence of 10 μM unlabeled ligand.')\n", " * postgresql://localhost/chembl_26\n", "Mean nAts 24.0, mcs nAts: 16\n", "[#7]-&!@[#6]1=&@[#7]-&@[#6](-&@[#6]-&@[#8]-&@1)-&!@[#6]-&!@[#6]-&!@[#6]1:&@[#6]:&@[#6]:&@[#6](:&@[#6,#7]:&@[#6]:&@1)-&!@[#7]-&!@[#6]\n", "(1528160, 'CHEMBL3705369', 74, 'Inhibition Assay: Using a 96 well plate (#3915, Costar), a test compound (25 μL) was mixed with 20 μM fluorescence enzyme substrate (Boc-Phe-Ser-Arg- ... (144 characters truncated) ... cular Devices, Inc.), the reaction rate was measured from the time-course changes at excitation wavelength 355 nm and fluorescence wavelength 460 nm.')\n", " * postgresql://localhost/chembl_26\n", "Mean nAts 33.8, mcs nAts: 25\n", "[#6]-&!@[#6](-&!@[#6])(-&!@[#6]-&!@[#6]1:&@[#6]:&@[#6]:&@[#6](:&@[#16]:&@1)-&!@[#6](=&!@[#8])-&!@[#8]-&!@[#6]1:&@[#6]:&@[#6]:&@[#6](:&@[#6]:&@[#6]:&@1-&!@[#9])-&!@[#6](=&!@[#7])-&!@[#7])-&!@[#6](=,-;!@[#8,#7])-,=;!@[#8,#7]\n", "(447824, 'CHEMBL898074', 74, 'Inhibition of human factor 10a')\n", " * postgresql://localhost/chembl_26\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "RDKit ERROR: [07:48:12] Aromatic bonds on non aromatic atom 13\n", "RDKit INFO: [07:48:12] Aromatic bonds on non aromatic atom 13\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Mean nAts 32.9, mcs nAts: 11\n", "[#8]=&!@[#6,#16](-&!@[#7,#6]-&!@[#6])-&!@[#6]1:&@[#6]:&@[#6]:&@[#6](:&@[#6]:&@[#6]:&@1)-&!@[#7,#6,#8,#17]\n", "(1527780, 'CHEMBL3705314', 74, 'Glucagon SPA Assay: The Glucagon SPA assay is used to determine the ability of test compounds to block the binding of glucagon-cex to the glucagon receptors.')\n", " * postgresql://localhost/chembl_26\n", "Mean nAts 35.7, mcs nAts: 28\n", "[#6]-&!@[#6](-&!@[#8,#7]-&!@[#6]1:&@[#6]:&@[#6,#7]:&@[#6](:&@[#6,#7]:&@[#6]:&@1)-&!@[#7,#6]1:&@[#6,#7]:&@[#6,#7]:&@[#6,#7]:&@[#7,#6]:&@1)-&!@[#6]1:&@[#6]:&@[#6]:&@[#6](:&@[#6]:&@[#6,#7]:&@1)-&!@[#6](=&!@[#8])-&!@[#7]-&!@[#6]-&!@[#6]-&!@[#6](=,-;!@[#8])-,=;!@[#8]\n", "(1528161, 'CHEMBL3705370', 74, 'Inhibition Assay: Using a 96 well plate (#3915, Costar), a test compound (25 μL), 400 mM Tris-HCl buffer (pH 8.0, 25 μL) and 0.5 mg/mL fluorescence e ... (196 characters truncated) ... cular Devices, Inc.), the reaction rate was measured from the time-course changes at excitation wavelength 320 nm and fluorescence wavelength 405 nm.')\n", " * postgresql://localhost/chembl_26\n", "Mean nAts 33.8, mcs nAts: 25\n", "[#6]-&!@[#6](-&!@[#6])(-&!@[#6]-&!@[#6]1:&@[#6]:&@[#6]:&@[#6](:&@[#16]:&@1)-&!@[#6](=&!@[#8])-&!@[#8]-&!@[#6]1:&@[#6]:&@[#6]:&@[#6](:&@[#6]:&@[#6]:&@1-&!@[#9])-&!@[#6](=&!@[#7])-&!@[#7])-&!@[#6](=,-;!@[#8,#7])-,=;!@[#8,#7]\n", "(585133, 'CHEMBL1060022', 74, 'Binding affinity to human recombinant P2Y12 receptor expressed in CHO cells')\n", " * postgresql://localhost/chembl_26\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "RDKit ERROR: [07:48:21] Aromatic bonds on non aromatic atom 8\n", "RDKit INFO: [07:48:21] Aromatic bonds on non aromatic atom 8\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Mean nAts 40.3, mcs nAts: 33\n", "[#6]-&!@[#6]-&!@[#6,#8]-&!@[#8,#6]-&!@[#7]1-&@[#6]-&@[#6]-&@[#7](-&@[#6]-&@[#6]-&@1)-&!@[#6](=&!@[#8])-&!@[#6](-&!@[#6]-&!@[#6]-&!@[#6](=&!@[#8])-&!@[#8])-&!@[#7]-&!@[#6](=&!@[#8])-&!@[#6]1:&@[#6,#7]:&@[#6]:&@[#6,#7]:&@[#6](:&@[#7,#6]:&@1)-&!@[#6]1:&@[#6]:&@[#6]:&@[#6]:&@[#6]:&@[#6]:&@1\n", "(1527622, 'CHEMBL3705079', 74, 'Radioligand Binding Assay: The TAAR1 radioligand 3[H]-(S)-4-[(ethyl-phenyl-amino)-methyl]-4,5-dihydro-oxazol-2-ylamine (described in WO 2008/098857) ... (254 characters truncated) ... g was defined as the amount of 3[H]-(S)-4-[(ethyl-phenyl-amino)-methyl]-4,5-dihydro-oxazol-2-ylamine bound in the presence of 10 μM unlabeled ligand.')\n", " * postgresql://localhost/chembl_26\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "RDKit ERROR: [07:48:22] Aromatic bonds on non aromatic atom 21\n", "RDKit INFO: [07:48:22] Aromatic bonds on non aromatic atom 21\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Mean nAts 23.9, mcs nAts: 16\n", "[#7]-&!@[#6]1=&@[#7]-&@[#6](-&@[#6]-&@[#8]-&@1)-&!@[#6]-&!@[#6]-&!@[#6]1:&@[#6]:&@[#6]:&@[#6](:&@[#6,#7]:&@[#6]:&@1)-&!@[#7]-&!@[#6]\n", "(371466, 'CHEMBL864183', 74, 'Displacement of [3H]progesterone from Progesterone receptor')\n", " * postgresql://localhost/chembl_26\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "RDKit ERROR: [07:48:23] Aromatic bonds on non aromatic atom 13\n", "RDKit INFO: [07:48:23] Aromatic bonds on non aromatic atom 13\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Mean nAts 21.9, mcs nAts: 13\n", "[#6]-&!@[#6]1=,-;@[#6]-&@[#6](-&!@[#6])(-&!@[#6])-&@[#7]-&@[#6]2:&@[#6]-&@1:&@[#6]:&@[#6]:&@[#6]:&@[#6]:&@2\n", "(1528930, 'CHEMBL3705777', 73, 'Radioligand Binding Assay: Radioligand binding assays (screening and dose-displacement) used 0.1 nM [3H]-nociceptin (NEN; 87.7 Ci/mmole) with 10-20 u ... (640 characters truncated) ... quently dried at 50 C. for 2-3 hrs. Fifty L/well scintillation cocktail (BetaScint; Wallac) was added and plates were counted in a Packard Top-Count.')\n", " * postgresql://localhost/chembl_26\n", "Mean nAts 36.6, mcs nAts: 17\n", "[#7,#6]=,-;!@[#6]1:,-;@[#7]:,-;@[#6]2:&@[#6](:,-;@[#7]:,-;@1-&!@[#6]1-&@[#6]-&@[#6]-&@[#7](-&@[#6]-&@[#6]-&@1)-&!@[#6]):&@[#6]:&@[#6]:&@[#6]:&@[#6]:&@2\n", "(458669, 'CHEMBL942952', 73, 'Displacement of [12]NDPMSH from human MC4R expressed in HEK293 cells')\n", " * postgresql://localhost/chembl_26\n", "Mean nAts 39.8, mcs nAts: 32\n", "[#6,#8]-,=;!@[#6,#16]-&!@[#7]-&!@[#6]-&!@[#6]1(-&!@[#7]2-&@[#6]-&@[#6]-&@[#7](-&@[#6]-&@[#6]-&@2)-&!@[#6](=&!@[#8])-&!@[#6]2-&@[#6]-&@[#7](-&@[#6]-&@[#6]-&@2-&!@[#6]2:&@[#6]:&@[#6]:&@[#6]:&@[#6]:&@[#6]:&@2)-&!@[#6,#16](-,=;!@[#6,#7,#8])-,=;!@[#6,#8])-&@[#6]-&@[#6]-&@[#6]-&@[#6]-&@[#6]-&@1\n", "(1536128, 'CHEMBL3707656', 73, \"Radioligand Binding Assay: Human Embryonic Kidney 293 cells (HEK293) stably expressing rat orexin 1 receptor(Genebank accession number NM_001525) or ... (710 characters truncated) ... sence of 1 tablet of protease inhibitor cocktail (Roche, Cat. #1 1836145001) per 50 mL. Each cell pellet from a 15 cm plate was resuspended in 10 mL.\")\n", " * postgresql://localhost/chembl_26\n", "Mean nAts 31.1, mcs nAts: 23\n", "[#8,#6,#7,#9]-&!@[#6]1:&@[#6,#7]:&@[#6]:&@[#6]:&@[#6,#7]:&@[#6]:&@1-&!@[#6](=&!@[#8])-&!@[#7]1-&@[#6]-&@[#6]-&@[#6]-&@[#6](-&@[#6]-&@1-&!@[#6])-&!@[#7,#8]-&!@[#6]1:&@[#6,#7]:&@[#6,#7]:&@[#6,#7]:&@[#6,#7]:&@[#7]:&@1\n", "(54734, 'CHEMBL667185', 73, 'Negative logarithm of inhibition constant (-log Ki) against Dihydrofolate reductase in Escherichia coli')\n", " * postgresql://localhost/chembl_26\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "RDKit ERROR: [07:49:56] Aromatic bonds on non aromatic atom 1\n", "RDKit INFO: [07:49:56] Aromatic bonds on non aromatic atom 1\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Mean nAts 20.0, mcs nAts: 15\n", "[#7,#6]-&!@[#6]1=,:;@[#7,#6]-,:;@[#6]-,:;@[#6](-,:;@[#6](=,:;@[#7,#6]-,:;@1)-&!@[#7,#8])-&!@[#6]-&!@[#6]1:&@[#6]:&@[#6]:&@[#6]:&@[#6]:&@[#6]:&@1\n", "(320876, 'CHEMBL884801', 73, 'Displacement of [3H]LSD from cloned human 5-hydroxytryptamine 6 receptor expressed in HeLa cells')\n", " * postgresql://localhost/chembl_26\n", "Mean nAts 25.9, mcs nAts: 14\n", "[#8,#6]=,-;!@[#16](=&!@[#8])(-,=;!@[#6,#8])-&!@[#7]1:&@[#6]:&@[#6](:&@[#6]2:&@[#6]:&@1:&@[#6]:&@[#6]:&@[#6]:&@[#6]:&@2)-&!@[#6]\n", "(1522886, 'CHEMBL3630759', 72, 'Antagonist activity at human TRPV1 heterologously expressed in CHO cells assessed as inhibition of capsaicin-induced activation by FLIPR assay')\n", " * postgresql://localhost/chembl_26\n", "Mean nAts 35.8, mcs nAts: 29\n", "[#6]-&!@[#6](-&!@[#6](=&!@[#8])-&!@[#7]-&!@[#6]-&!@[#6]1:&@[#6]:&@[#6]:&@[#6](:&@[#6,#7]:&@[#6]:&@1-&!@[#17,#6,#7,#8,#9,#16])-&!@[#6](-&!@[#9,#6])(-&!@[#9])-&!@[#9])-&!@[#6]1:&@[#6]:&@[#6]:&@[#6](:&@[#6](:&@[#6]:&@1)-&!@[#9])-&!@[#7]-&!@[#16](-&!@[#6])(=&!@[#8])=&!@[#8]\n", "(861906, 'CHEMBL2173634', 72, 'Displacement of [3H](+)pentazocine from human sigma 1 receptor transfected in HEK293 cell membranes after 120 mins by scintillation counter')\n", " * postgresql://localhost/chembl_26\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "RDKit ERROR: [07:50:16] Aromatic bonds on non aromatic atom 11\n", "RDKit INFO: [07:50:16] Aromatic bonds on non aromatic atom 11\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Mean nAts 24.4, mcs nAts: 15\n", "[#6,#7]1:&@[#6,#7]:&@[#7,#6](:&@[#7,#6]:&@[#6]:&@1-&!@[#8,#7,#16]-&!@[#6]-&!@[#6]-&!@[#7,#6,#8])-&!@[#6]1-,:;@[#6]-,:;@[#6]-,:;@[#6]-,:;@[#6]-,:;@[#6]-,:;@1\n", "(1644378, 'CHEMBL3993307', 72, 'Inhibition of human beta factor 12a using fluorogenic substrate Boc-Gln-Gly-Arg-AMC preincubated for 10 mins followed by addition of substrate measured every min for 30 mins')\n", " * postgresql://localhost/chembl_26\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "RDKit ERROR: [07:50:17] Aromatic bonds on non aromatic atom 4\n", "RDKit INFO: [07:50:17] Aromatic bonds on non aromatic atom 4\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Mean nAts 146.3, mcs nAts: 5\n", "[#6,#7]-,=;!@[#6](-,=;!@[#6,#7,#8])-&!@[#6,#7]-&!@[#6,#7]\n", "(54735, 'CHEMBL667186', 72, 'Inhibition constant against binding of Escherichia coli dihydrofolate reductase')\n", " * postgresql://localhost/chembl_26\n", "Mean nAts 20.2, mcs nAts: 9\n", "[#7,#6]-&!@[#6]1:,-,=;@[#7,#6]:,-,=;@[#6]:,-;@[#6,#7](:,-;@[#6](:,-,=;@[#7,#6]:,-,=;@1)-&!@[#7,#6,#8])-&!@[#6,#8,#35]\n", "(303552, 'CHEMBL828952', 71, 'Inhibitory constant against [3H]methyllycaconitine binding towards Nicotinic acetylcholine receptor alpha-7 of rat brain hippocampus')\n", " * postgresql://localhost/chembl_26\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "RDKit ERROR: [07:50:47] Aromatic bonds on non aromatic atom 1\n", "RDKit INFO: [07:50:47] Aromatic bonds on non aromatic atom 1\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Mean nAts 27.1, mcs nAts: 14\n", "[#8,#6,#7]=,-;!@[#6,#16](-&!@[#7,#8]-&!@[#6]1-&@[#6]2-&@[#6]-&@[#6]-&@[#7](-&@[#6]-&@1-&!@[#6]-&!@[#6,#7])-&@[#6]-&@[#6]-&@2)-,=;!@[#6,#7,#8]\n", "(570539, 'CHEMBL1026911', 71, 'Displacement of [3H]CP-55940 from human cloned CB2 receptor by filtration assay')\n", " * postgresql://localhost/chembl_26\n", "Mean nAts 26.5, mcs nAts: 15\n", "[#6]-&!@[#6]-&!@[#6]-&!@[#7]1:&@[#6]:&@[#6](:&@[#6]2:&@[#6]:&@1:&@[#6]:&@[#6]:&@[#6]:&@[#6]:&@2)-&!@[#6](=,-;!@[#8,#6])-,=;!@[#6,#8]\n", "(570538, 'CHEMBL1026910', 71, 'Displacement of [3H]CP-55940 from CB1 receptor in rat brain by filtration assay')\n", " * postgresql://localhost/chembl_26\n", "Mean nAts 26.5, mcs nAts: 15\n", "[#6]-&!@[#6]-&!@[#6]-&!@[#7]1:&@[#6]:&@[#6](:&@[#6]2:&@[#6]:&@1:&@[#6]:&@[#6]:&@[#6]:&@[#6]:&@2)-&!@[#6](=,-;!@[#8,#6])-,=;!@[#6,#8]\n", "(54926, 'CHEMBL667222', 71, 'Inhibitory activity against Lactobacillus casei dihydrofolate reductase')\n", " * postgresql://localhost/chembl_26\n", "Mean nAts 20.2, mcs nAts: 15\n", "[#7]-&!@[#6]1:&@[#7]:&@[#6]:&@[#6](:&@[#6](:&@[#7]:&@1)-&!@[#7])-&!@[#6]-&!@[#6]1:&@[#6]:&@[#6]:&@[#6]:&@[#6]:&@[#6]:&@1\n", "(53614, 'CHEMBL661844', 71, 'Inhibitory activity against chicken liver dihydrofolate reductase')\n", " * postgresql://localhost/chembl_26\n", "Mean nAts 20.2, mcs nAts: 15\n", "[#7]-&!@[#6]1:&@[#7]:&@[#6]:&@[#6](:&@[#6](:&@[#7]:&@1)-&!@[#7])-&!@[#6]-&!@[#6]1:&@[#6]:&@[#6]:&@[#6]:&@[#6]:&@[#6]:&@1\n", "(304043, 'CHEMBL877110', 70, 'Inhibition of [3H]mibolerone binding to cytosolic androgen receptor of rat ventral prostate')\n", " * postgresql://localhost/chembl_26\n", "Mean nAts 28.1, mcs nAts: 10\n", "[#7,#8]-,=;!@[#6]1:&@[#6,#8]:&@[#6]:&@[#6]:&@[#6](:&@[#6]:&@1)-&!@[#6,#7,#16](-,=;!@[#9,#6,#8])-,=;!@[#9,#8]\n", "(588710, 'CHEMBL1059319', 70, 'Inhibition of human PIM1 by scintillation counting')\n", " * postgresql://localhost/chembl_26\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "RDKit ERROR: [07:50:56] Aromatic bonds on non aromatic atom 1\n", "RDKit INFO: [07:50:56] Aromatic bonds on non aromatic atom 1\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Mean nAts 24.0, mcs nAts: 17\n", "[#7,#6,#8]-&!@[#6]-&!@[#6]1:&@[#7]:&@[#6]2:&@[#6](:&@[#6](:&@[#7]:&@1)=&!@[#8]):&@[#16]:&@[#6]1:&@[#6]:&@2:&@[#6]:&@[#6](:&@[#6]:&@[#6]:&@1)-&!@[#17,#6,#7,#35]\n", "(588709, 'CHEMBL1059318', 70, 'Inhibition of human PIM2 by scintillation counting')\n", " * postgresql://localhost/chembl_26\n", "Mean nAts 24.0, mcs nAts: 17\n", "[#7,#6,#8]-&!@[#6]-&!@[#6]1:&@[#7]:&@[#6]2:&@[#6](:&@[#6](:&@[#7]:&@1)=&!@[#8]):&@[#16]:&@[#6]1:&@[#6]:&@2:&@[#6]:&@[#6](:&@[#6]:&@[#6]:&@1)-&!@[#17,#6,#7,#35]\n", "(828300, 'CHEMBL2050319', 70, 'Displacement of [3H]histamine from human histamine H4 receptor expressed in HEK cells')\n", " * postgresql://localhost/chembl_26\n", "Mean nAts 19.7, mcs nAts: 12\n", "[#7,#8]-,=;!@[#6](=,-;!@[#8,#7])-&!@[#6]1:&@[#6,#7]:&@[#6]2:&@[#6](:&@[#7,#6,#8,#16]:&@1):&@[#6,#7]:&@[#6,#7]:&@[#6,#7]:&@[#6,#7]:&@2\n", "(605406, 'CHEMBL1073400', 70, 'Displacement of radioligand from human adenosine A1 receptor expressed in cells by topcount microplate scintillation counting')\n", " * postgresql://localhost/chembl_26\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "RDKit ERROR: [07:50:59] Aromatic bonds on non aromatic atom 3\n", "RDKit INFO: [07:50:59] Aromatic bonds on non aromatic atom 3\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Mean nAts 24.1, mcs nAts: 13\n", "[#8,#6,#7]-&!@[#6]1:&@[#6,#7]:&@[#6](-&!@[#6](=&!@[#8])-&!@[#7]-&!@[#6]-&!@[#6]):&@[#7,#6]:&@[#6](:&@[#7]:&@1)-&!@[#7,#6]\n", "(605405, 'CHEMBL1073399', 70, 'Displacement of radioligand from human adenosine A2A receptor expressed in cells by topcount microplate scintillation counting')\n", " * postgresql://localhost/chembl_26\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "RDKit ERROR: [07:51:05] Aromatic bonds on non aromatic atom 1\n", "RDKit INFO: [07:51:05] Aromatic bonds on non aromatic atom 1\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Mean nAts 24.1, mcs nAts: 13\n", "[#8,#6,#7]-&!@[#6]1:&@[#6,#7]:&@[#6](-&!@[#6](=&!@[#8])-&!@[#7]-&!@[#6]-&!@[#6]):&@[#7,#6]:&@[#6](:&@[#7]:&@1)-&!@[#7,#6]\n", "(596087, 'CHEMBL1040875', 69, 'Displacement of [3H]CP-55940 from human recombinant CB2 receptor expressed in HEK293 cells')\n", " * postgresql://localhost/chembl_26\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "RDKit ERROR: [07:51:10] Aromatic bonds on non aromatic atom 1\n", "RDKit INFO: [07:51:10] Aromatic bonds on non aromatic atom 1\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Mean nAts 25.2, mcs nAts: 14\n", "[#6,#8]-,=;!@[#6](=,-;!@[#8,#6])-&!@[#6]1:&@[#6]:&@[#7](:&@[#6]2:&@[#6]:&@1:&@[#6]:&@[#6]:&@[#6]:&@[#6]:&@2)-&!@[#6]-,=;!@[#6,#8]\n", "(596088, 'CHEMBL1040876', 69, 'Displacement of [3H]CP-55940 from human recombinant CB1 receptor expressed in CHO cells')\n", " * postgresql://localhost/chembl_26\n", "Mean nAts 25.2, mcs nAts: 14\n", "[#6,#8]-,=;!@[#6](=,-;!@[#8,#6])-&!@[#6]1:&@[#6]:&@[#7](:&@[#6]2:&@[#6]:&@1:&@[#6]:&@[#6]:&@[#6]:&@[#6]:&@2)-&!@[#6]-,=;!@[#6,#8]\n", "(478840, 'CHEMBL925727', 69, 'Displacement of [3H]PGD2 from human CRTH2 receptor expressed in CHO cells')\n", " * postgresql://localhost/chembl_26\n", "Mean nAts 29.6, mcs nAts: 21\n", "[#6,#8]-&!@[#6]-&!@[#7]1-&@[#6](=&!@[#8])-&@[#6]-&@[#6]2(-&@[#6]-&@1)-&@[#6](=&!@[#8])-&@[#7](-&@[#6]1:&@[#6]-&@2:&@[#6]:&@[#6](:&@[#6]:&@[#6]:&@1)-&!@[#17,#8,#9])-&!@[#6]-&!@[#6]=,-;!@[#8,#6]\n", "(934321, 'CHEMBL2320307', 69, 'Displacement of FITC-AHx-KALETLRRVGDGVQRNHETAF-NH2 from human MCl1 (172 to 327) expressed in Escherichia coli BL21 (DE3) after 1 hr by fluorescence polarization anisotropy assay')\n", " * postgresql://localhost/chembl_26\n", "Mean nAts 23.0, mcs nAts: 13\n", "[#6,#17]-&!@[#7,#6]1:&@[#6](-&!@[#6](=,-;!@[#8,#7])-,=;!@[#8]):&@[#6,#7,#8,#16]:&@[#6]2:&@[#6]:&@1:&@[#6]:&@[#6]:&@[#6]:&@[#6]:&@2\n", "(212325, 'CHEMBL818251', 68, 'Inhibitory constant against bovine trypsin for general specificity against serine proteases')\n", " * postgresql://localhost/chembl_26\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "RDKit ERROR: [07:52:23] Aromatic bonds on non aromatic atom 7\n", "RDKit INFO: [07:52:23] Aromatic bonds on non aromatic atom 7\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Mean nAts 31.5, mcs nAts: 25\n", "[#6]-&!@[#6]1:&@[#6]:&@[#6](-&!@[#8]-&!@[#6]2:&@[#6]:&@[#6]:&@[#6]:&@[#6](:&@[#6]:&@2)-&!@[#7,#6,#8]):&@[#7]:&@[#6](:&@[#6]:&@1)-&!@[#8]-&!@[#6]1:&@[#6]:&@[#6]:&@[#6]:&@[#6](:&@[#6]:&@1)-&!@[#6,#7,#16](=,-;!@[#7,#6,#8])-,=;!@[#7,#6,#8]\n", "(877370, 'CHEMBL2182415', 68, 'Displacement of [3H]epibatidine form human alpha7 nAchR expressed in HEK293 cells')\n", " * postgresql://localhost/chembl_26\n", "Mean nAts 26.2, mcs nAts: 19\n", "[#8,#6]=,-;!@[#6](-&!@[#7]-&!@[#6]1-&@[#6]2-&@[#6]-&@[#6]-&@[#7](-&@[#6]-&@1-&!@[#6]-&!@[#6]1:&@[#6]:&@[#6]:&@[#6]:&@[#7]:&@[#6]:&@1)-&@[#6]-&@[#6]-&@2)-,=;!@[#6,#8]\n", "(540740, 'CHEMBL1030622', 68, 'Displacement of [125I]nociceptin from human NOP expressed in CHO cells')\n", " * postgresql://localhost/chembl_26\n", "Mean nAts 35.2, mcs nAts: 20\n", "[#6]-&!@[#6]-&!@[#7]1-&@[#6]-&@[#7](-&@[#6]2(-&@[#6]-&@1=&!@[#8])-&@[#6]-&@[#6]-&@[#7](-&@[#6]-&@[#6]-&@2)-&!@[#6])-&!@[#6]1:&@[#6]:&@[#6]:&@[#6]:&@[#6]:&@[#6]:&@1\n", "(1572912, 'CHEMBL3801235', 68, 'Antagonist activity at CCR9 receptor in human MOLT4 cells assessed as inhibition of CCL25-induced increase in intracellular calcium level preincubated for 1 hr followed CCL25 addition by FLIPR assay')\n", " * postgresql://localhost/chembl_26\n", "Mean nAts 33.7, mcs nAts: 26\n", "[#6]-&!@[#6](-&!@[#6])(-&!@[#6])-&!@[#6]1:&@[#6]:&@[#6]:&@[#6](:&@[#6]:&@[#6]:&@1)-&!@[#16](=&!@[#8])(=&!@[#8])-&!@[#7]-&!@[#6]1:&@[#6]:&@[#6]:&@[#6]:&@[#6]2:&@[#6]:&@1-&@[#6](=&!@[#8])-&@[#7](-&@[#6]-&@2=&!@[#8])-&!@[#6]\n", "(304008, 'CHEMBL877109', 68, 'Binding affinity towards Acetylcholinesterase')\n", " * postgresql://localhost/chembl_26\n", "Mean nAts 28.1, mcs nAts: 11\n", "[#6,#7,#8,#16]-,=,#;!@[#8,#6,#7]-&!@[#6]1:,-,=;@[#6,#7]:,-;@[#6,#7,#8,#16]-,:;@[#6,#8]-,=,:;@[#6,#7,#8]-,:;@[#16,#6,#7]-,:;@[#6,#7,#8]:,-;@[#6,#8]:,-;@[#6,#7,#16]:,-;@1\n", "(471788, 'CHEMBL939996', 68, 'Displacement of [3H]ZM-241385 from human adenosine A2A receptor expressed in CHO cells')\n", " * postgresql://localhost/chembl_26\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "RDKit ERROR: [07:53:11] Aromatic bonds on non aromatic atom 2\n", "RDKit INFO: [07:53:11] Aromatic bonds on non aromatic atom 2\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Mean nAts 38.2, mcs nAts: 29\n", "[#7,#6]1-&@[#6]-&@[#6]-&@[#7](-&@[#6]-&@[#6]-,:;@1)-&!@[#6](=&!@[#8])-&!@[#6]-&!@[#8]-&!@[#6]1:&@[#6]:&@[#6]:&@[#6](:&@[#6]:&@[#6]:&@1)-&!@[#6]1:&@[#6,#7]:&@[#6]2:&@[#6](:&@[#7,#6]:&@1):&@[#6,#7](=,-;!@[#8,#6]):&@[#7,#6](:&@[#6,#7](:&@[#7,#6]:&@2-,=;!@[#6,#8])=,-;!@[#8,#6])-,=;!@[#6,#8]\n", "(960514, 'CHEMBL2389489', 67, 'Antagonist activity at human TRPV1 expressed in CHOK1 cells assessed as inhibition of capsaicin-induced activity by FLIPR assay')\n", " * postgresql://localhost/chembl_26\n", "Mean nAts 36.0, mcs nAts: 30\n", "[#6]-&!@[#8]-&!@[#6]1:&@[#7]:&@[#6](-&!@[#6](-&!@[#9])(-&!@[#9])-&!@[#9]):&@[#6]:&@[#6]:&@[#6]:&@1-&!@[#6]-&!@[#7]-&!@[#6](=&!@[#8])-&!@[#6](-&!@[#6])-&!@[#6]1:&@[#6]:&@[#6]:&@[#6](:&@[#6](:&@[#6]:&@1)-&!@[#9])-&!@[#7]-&!@[#16](-&!@[#6])(=&!@[#8])=&!@[#8]\n", "(540741, 'CHEMBL1030623', 67, 'Displacement of [125I]diprenorphine from human DOP expressed in CHO cells')\n", " * postgresql://localhost/chembl_26\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "RDKit ERROR: [07:53:41] Aromatic bonds on non aromatic atom 16\n", "RDKit INFO: [07:53:41] Aromatic bonds on non aromatic atom 16\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Mean nAts 35.2, mcs nAts: 20\n", "[#6]-&!@[#6]-&!@[#7]1-&@[#6]-&@[#7](-&@[#6]2(-&@[#6]-&@1=&!@[#8])-&@[#6]-&@[#6]-&@[#7](-&@[#6]-&@[#6]-&@2)-&!@[#6])-&!@[#6]1:&@[#6]:&@[#6]:&@[#6]:&@[#6]:&@[#6]:&@1\n", "(461138, 'CHEMBL944161', 67, 'Displacement of [3H]raclopride from rat dopamine D2 receptor')\n", " * postgresql://localhost/chembl_26\n", "Mean nAts 22.7, mcs nAts: 11\n", "[#6,#8]-,=;!@[#6,#7]1:,-;@[#6]:,-;@[#6]:,-;@[#6]2:&@[#6](:,-;@[#6]:,-;@1)-,:;@[#6]:,-;@[#6,#7]-,:;@[#6,#7]-,:;@[#6]-,:;@2\n", "(479714, 'CHEMBL921474', 67, 'Binding affinity at human adenosine A1 receptor')\n", " * postgresql://localhost/chembl_26\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "RDKit ERROR: [07:54:25] Aromatic bonds on non aromatic atom 6\n", "RDKit INFO: [07:54:25] Aromatic bonds on non aromatic atom 6\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Mean nAts 23.8, mcs nAts: 17\n", "[#7,#6,#8,#16]-&!@[#6]1:&@[#7]:&@[#6](-&!@[#6,#7]2:&@[#6,#7]:&@[#6,#7]:&@[#6,#7]:&@[#8,#7,#16]:&@2):&@[#6]2:&@[#6](:&@[#7]:&@1):&@[#7](:&@[#7,#6]:&@[#6,#7]:&@2)-&!@[#6]-,=;!@[#6,#7,#8]\n", "(159136, 'CHEMBL769512', 67, 'Inhibitory activity against HIV-1 protease')\n", " * postgresql://localhost/chembl_26\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "RDKit ERROR: [07:54:27] Aromatic bonds on non aromatic atom 1\n", "RDKit INFO: [07:54:27] Aromatic bonds on non aromatic atom 1\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Mean nAts 38.4, mcs nAts: 28\n", "[#6]-&!@[#6]-&!@[#7]1-&@[#6](=&!@[#8])-&@[#7](-&!@[#6]-&!@[#6])-&@[#6](-&@[#6](-&@[#6](-&@[#6]-&@1-&!@[#6]-&!@[#6]1:&@[#6]:&@[#6]:&@[#6]:&@[#6]:&@[#6]:&@1)-&!@[#8])-&!@[#8])-&!@[#6]-&!@[#6]1:&@[#6]:&@[#6]:&@[#6]:&@[#6]:&@[#6]:&@1\n", "(540742, 'CHEMBL1030624', 67, 'Displacement of [125I]diprenorphine from human KOP expressed in CHO cells')\n", " * postgresql://localhost/chembl_26\n", "Mean nAts 35.2, mcs nAts: 20\n", "[#6]-&!@[#6]-&!@[#7]1-&@[#6]-&@[#7](-&@[#6]2(-&@[#6]-&@1=&!@[#8])-&@[#6]-&@[#6]-&@[#7](-&@[#6]-&@[#6]-&@2)-&!@[#6])-&!@[#6]1:&@[#6]:&@[#6]:&@[#6]:&@[#6]:&@[#6]:&@1\n", "(1653671, 'CHEMBL4003037', 67, \"Inhibition of 5'--FAM-LTFEHYWAQLTS peptide binding to N-terminal domain human MDM2 (1 to 118 residues) expressed in Escherichia coli BL21(DE3) measured after 15 mins by fluorescence polarization assay\")\n", " * postgresql://localhost/chembl_26\n", "Mean nAts 40.2, mcs nAts: 22\n", "[#6]-&!@[#7]-&!@[#6](-&!@[#6]1:&@[#6](-&!@[#6](=,-;!@[#8])-,=;!@[#8]):&@[#7]:&@[#6]2:&@[#6]:&@1:&@[#6]:&@[#6]:&@[#6](:&@[#6]:&@2)-&!@[#17])-&!@[#6]1:&@[#7]:&@[#7]:&@[#7]:&@[#7]:&@1-&!@[#6]\n", "(479713, 'CHEMBL921473', 67, 'Binding affinity at human adenosine A2A receptor')\n", " * postgresql://localhost/chembl_26\n", "Mean nAts 23.8, mcs nAts: 17\n", "[#7,#6,#8,#16]-&!@[#6]1:&@[#7]:&@[#6](-&!@[#6,#7]2:&@[#6,#7]:&@[#6,#7]:&@[#6,#7]:&@[#8,#7,#16]:&@2):&@[#6]2:&@[#6](:&@[#7]:&@1):&@[#7](:&@[#7,#6]:&@[#6,#7]:&@2)-&!@[#6]-,=;!@[#6,#7,#8]\n", "(540743, 'CHEMBL1030625', 67, 'Displacement of [125I]diprenorphine from human MOP expressed in CHO cells')\n", " * postgresql://localhost/chembl_26\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "RDKit ERROR: [07:55:03] Aromatic bonds on non aromatic atom 1\n", "RDKit INFO: [07:55:03] Aromatic bonds on non aromatic atom 1\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Mean nAts 35.2, mcs nAts: 20\n", "[#6]-&!@[#6]-&!@[#7]1-&@[#6]-&@[#7](-&@[#6]2(-&@[#6]-&@1=&!@[#8])-&@[#6]-&@[#6]-&@[#7](-&@[#6]-&@[#6]-&@2)-&!@[#6])-&!@[#6]1:&@[#6]:&@[#6]:&@[#6]:&@[#6]:&@[#6]:&@1\n", "(1527882, 'CHEMBL3705126', 66, 'Biological Assay: Compound affinity for the rat 5-HT7 receptor subtype was evaluated by competitive radioligand binding assay using 5-carboxamido[H3]typtamine ([3H]5-CT)(Amersham Biosciences) detection.')\n", " * postgresql://localhost/chembl_26\n", "Mean nAts 20.6, mcs nAts: 12\n", "[#6]1:&@[#6]:&@[#6]:&@[#6](:&@[#6]:&@[#6]:&@1)-&!@[#6]1:&@[#6]:&@[#6]:&@[#6]:&@[#6]:&@[#6]:&@1\n", "(1528915, 'CHEMBL3705621', 66, 'Binding Assay: Receptor binding was performed using membrane fractions prepared from the HEK-293 cell line recombinantly expressing rat 5-HT7 recepto ... (301 characters truncated) ... he assay was performed on the HEK-293 cell line stably transfected with r5-HT7 receptor. Cells were pre-incubated with test compounds for 10 minutes.')\n", " * postgresql://localhost/chembl_26\n", "Mean nAts 20.6, mcs nAts: 12\n", "[#6]1:&@[#6]:&@[#6]:&@[#6](:&@[#6]:&@[#6]:&@1)-&!@[#6]1:&@[#6]:&@[#6]:&@[#6]:&@[#6]:&@[#6]:&@1\n", "(1688140, 'CHEMBL4038710', 66, 'Antagonist activity at human TRPV1 expressed in CHOK1 cells assessed as inhibition of capsaicin induced calcium influx pretreated for 6 mins followed by capsaicin addition by Fluo-4/Pluronic F127 probe based FLIPR method')\n", " * postgresql://localhost/chembl_26\n", "Mean nAts 34.7, mcs nAts: 29\n", "[#8,#6,#7,#16]-&!@[#6]1:&@[#7,#6]:&@[#6](-&!@[#6](-&!@[#6])(-&!@[#6])-&!@[#6]):&@[#6]:&@[#6]:&@[#6]:&@1-&!@[#6]-&!@[#7]-&!@[#6](=&!@[#8])-&!@[#6](-&!@[#6])-&!@[#6]1:&@[#6]:&@[#6]:&@[#6](:&@[#6](:&@[#6]:&@1)-&!@[#9])-&!@[#7]-&!@[#16](-&!@[#6])(=&!@[#8])=&!@[#8]\n", "(466158, 'CHEMBL950162', 66, 'Displacement of [3H]dexamethasone from human recombinant GR')\n", " * postgresql://localhost/chembl_26\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "RDKit ERROR: [07:55:17] Aromatic bonds on non aromatic atom 1\n", "RDKit INFO: [07:55:17] Aromatic bonds on non aromatic atom 1\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Mean nAts 36.2, mcs nAts: 28\n", "[#16,#6](-&!@[#6,#7]1:,-;@[#6]:,-;@[#6]:,-;@[#6,#7,#8]:,-;@[#6,#7]:,-;@[#6,#7]:,-;@1)-&!@[#7]1-&@[#6]-&@[#6]-&@[#6]2-&@[#6](-&@[#6]-&@1)(-&@[#6]-&@[#6]1:&@[#6](-&@[#6]=&@2):&@[#7](:&@[#7]:&@[#6]:&@1)-&!@[#6]1:&@[#6]:&@[#6]:&@[#6](:&@[#6]:&@[#6]:&@1)-&!@[#9])-&!@[#6]\n", "(1653672, 'CHEMBL4003038', 66, \"Inhibition of 5'--FAM-LTFEHYWAQLTS peptide binding to N-terminal domain human MDMX (1 to 134 residues) measured after 15 mins by fluorescence polarization assay\")\n", " * postgresql://localhost/chembl_26\n", "Mean nAts 40.2, mcs nAts: 22\n", "[#6]-&!@[#7]-&!@[#6](-&!@[#6]1:&@[#6](-&!@[#6](=,-;!@[#8])-,=;!@[#8]):&@[#7]:&@[#6]2:&@[#6]:&@1:&@[#6]:&@[#6]:&@[#6](:&@[#6]:&@2)-&!@[#17])-&!@[#6]1:&@[#7]:&@[#7]:&@[#7]:&@[#7]:&@1-&!@[#6]\n", "(1577550, 'CHEMBL3807026', 66, 'Inhibition of human liver cathepsin B using Cbz-Arg-Arg-pNA as substrate at pH 6 incubated for 30 mins measured for 20 mins by photometrical analysis')\n", " * postgresql://localhost/chembl_26\n", "Mean nAts 25.8, mcs nAts: 12\n", "[#6,#8]-,=;!@[#6](-&!@[#7]-&!@[#6](=,-;!@[#8,#6])-,=;!@[#8,#6,#7])-&!@[#6](=,-;!@[#8,#6])-&!@[#7]-&!@[#6]-&!@[#6,#8]#,-;!@[#7,#6,#8]\n", "(1561630, 'CHEMBL3776607', 65, 'Displacement of [3H]-spiperone from human dopamine D3 receptor expressed in CHO-K1 cell membranes after 90 mins by liquid scintillation counter method')\n", " * postgresql://localhost/chembl_26\n", "Mean nAts 33.1, mcs nAts: 25\n", "[#6]-&!@[#7]1:&@[#6](-&!@[#16]-&!@[#6]-&!@[#6]-&!@[#6]-&!@[#7]2-&@[#6]-&@[#6]3-&@[#6](-&@[#6]-&@2)-&@[#7](-&@[#6]-&@[#6]-&@3)-&!@[#6]2:&@[#6]:&@[#6]:&@[#6]:&@[#6]:&@[#6]:&@2):&@[#7]:&@[#7]:&@[#6]:&@1-&!@[#6,#7]\n", "(946059, 'CHEMBL2342096', 65, 'Inhibition of human carbonic anhydrase-12')\n", " * postgresql://localhost/chembl_26\n", "Mean nAts 24.4, mcs nAts: 16\n", "[#7]-&!@[#16](=&!@[#8])(=&!@[#8])-&!@[#7,#8]-&!@[#6]1:&@[#6]:&@[#6]:&@[#6](:&@[#6]:&@[#6]:&@1)-&!@[#7]-&!@[#6](=&!@[#8])-&!@[#7]-&!@[#6]\n", "(946060, 'CHEMBL2342097', 65, 'Inhibition of human carbonic anhydrase-9')\n", " * postgresql://localhost/chembl_26\n", "Mean nAts 24.4, mcs nAts: 16\n", "[#7]-&!@[#16](=&!@[#8])(=&!@[#8])-&!@[#7,#8]-&!@[#6]1:&@[#6]:&@[#6]:&@[#6](:&@[#6]:&@[#6]:&@1)-&!@[#7]-&!@[#6](=&!@[#8])-&!@[#7]-&!@[#6]\n", "(946061, 'CHEMBL2342098', 65, 'Inhibition of human carbonic anhydrase-2')\n", " * postgresql://localhost/chembl_26\n", "Mean nAts 24.4, mcs nAts: 16\n", "[#7]-&!@[#16](=&!@[#8])(=&!@[#8])-&!@[#7,#8]-&!@[#6]1:&@[#6]:&@[#6]:&@[#6](:&@[#6]:&@[#6]:&@1)-&!@[#7]-&!@[#6](=&!@[#8])-&!@[#7]-&!@[#6]\n", "(302499, 'CHEMBL828215', 65, 'Binding affinity against bovine trypsin')\n", " * postgresql://localhost/chembl_26\n", "Mean nAts 39.5, mcs nAts: 13\n", "[#6,#16]-&!@[#6,#16]-&!@[#6,#7]-&!@[#6](-&!@[#7,#6]-&!@[#6,#16])-&!@[#6](=,-;!@[#8])-&!@[#6,#7]1:,-;@[#7,#6,#16]:,-;@[#6]:,-;@[#6]:,-;@[#16,#6,#7,#8]:,-;@1\n", "(1459806, 'CHEMBL3371192', 65, 'Antagonist activity at human recombinant 5HT6 receptor expressed in CHO cells')\n", " * postgresql://localhost/chembl_26\n", "Mean nAts 25.9, mcs nAts: 8\n", "[#6,#7,#8,#16]-,=;!@[#7,#6,#8,#16]-&!@[#6]1:,-;@[#6]:,-;@[#6,#8]:,-;@[#6,#7]:,-;@[#6,#7]:,-;@[#7,#6,#8]:,-;@1\n", "(946062, 'CHEMBL2342099', 65, 'Inhibition of human carbonic anhydrase-1')\n", " * postgresql://localhost/chembl_26\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "RDKit ERROR: [07:56:20] Aromatic bonds on non aromatic atom 2\n", "RDKit INFO: [07:56:20] Aromatic bonds on non aromatic atom 2\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Mean nAts 24.4, mcs nAts: 16\n", "[#7]-&!@[#16](=&!@[#8])(=&!@[#8])-&!@[#7,#8]-&!@[#6]1:&@[#6]:&@[#6]:&@[#6](:&@[#6]:&@[#6]:&@1)-&!@[#7]-&!@[#6](=&!@[#8])-&!@[#7]-&!@[#6]\n", "(429507, 'CHEMBL918630', 65, 'Inhibition of human BChE')\n", " * postgresql://localhost/chembl_26\n", "Mean nAts 16.1, mcs nAts: 11\n", "[#8]=&!@[#6]1-&@[#7,#6]-&@[#6]2:&@[#6](-&@[#6,#7]-&@1=,-;!@[#8,#6,#17]):&@[#6]:&@[#6]:&@[#6]:&@[#6]:&@2\n", "(429506, 'CHEMBL918629', 65, 'Inhibition of human AChE')\n", " * postgresql://localhost/chembl_26\n", "Mean nAts 16.1, mcs nAts: 11\n", "[#8]=&!@[#6]1-&@[#7,#6]-&@[#6]2:&@[#6](-&@[#6,#7]-&@1=,-;!@[#8,#6,#17]):&@[#6]:&@[#6]:&@[#6]:&@[#6]:&@2\n", "(429504, 'CHEMBL918627', 65, 'Inhibition of human liver CE1 expressed in sf21 cells')\n", " * postgresql://localhost/chembl_26\n", "Mean nAts 16.1, mcs nAts: 11\n", "[#8]=&!@[#6]1-&@[#7,#6]-&@[#6]2:&@[#6](-&@[#6,#7]-&@1=,-;!@[#8,#6,#17]):&@[#6]:&@[#6]:&@[#6]:&@[#6]:&@2\n", "(425700, 'CHEMBL913682', 65, 'Displacement of [3H]spiperone from human dopamine D4.4 expressed in CHO cell membrane')\n", " * postgresql://localhost/chembl_26\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "RDKit ERROR: [07:56:20] Aromatic bonds on non aromatic atom 3\n", "RDKit INFO: [07:56:20] Aromatic bonds on non aromatic atom 3\n", "RDKit ERROR: [07:56:21] Aromatic bonds on non aromatic atom 3\n", "RDKit INFO: [07:56:21] Aromatic bonds on non aromatic atom 3\n", "RDKit ERROR: [07:56:21] Aromatic bonds on non aromatic atom 3\n", "RDKit INFO: [07:56:21] Aromatic bonds on non aromatic atom 3\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Mean nAts 30.1, mcs nAts: 14\n", "[#6]1:&@[#6]:&@[#6]:&@[#6](:&@[#6]:&@[#6]:&@1)-&!@[#7,#6]1-&@[#6]-&@[#6]-&@[#7](-&@[#6]-&@[#6]-&@1)-&!@[#6]-&!@[#6]\n", "(425699, 'CHEMBL912015', 65, 'Displacement of [3H]spiperone from human dopamine D3 expressed in CHO cell membrane')\n", " * postgresql://localhost/chembl_26\n", "Mean nAts 30.1, mcs nAts: 14\n", "[#6]1:&@[#6]:&@[#6]:&@[#6](:&@[#6]:&@[#6]:&@1)-&!@[#7,#6]1-&@[#6]-&@[#6]-&@[#7](-&@[#6]-&@[#6]-&@1)-&!@[#6]-&!@[#6]\n", "(511514, 'CHEMBL980957', 65, 'Displacement of [3H]PK11195 from translocator protein in rat kidney mitochondrial membrane')\n", " * postgresql://localhost/chembl_26\n", "Mean nAts 29.2, mcs nAts: 23\n", "[#6]-&!@[#6]-&!@[#7](-&!@[#6])-&!@[#6](=&!@[#8])-&!@[#6](=&!@[#8])-&!@[#6]1:&@[#6](-&!@[#6]2:&@[#6]:&@[#6]:&@[#6]:&@[#6]:&@[#6]:&@2):&@[#7]:&@[#6]2:&@[#6]:&@1:&@[#6]:&@[#6]:&@[#6]:&@[#6]:&@2\n", "(302753, 'CHEMBL838700', 65, 'Binding affinity against mu opioid receptor in mouse hot plate test')\n", " * postgresql://localhost/chembl_26\n", "Mean nAts 33.6, mcs nAts: 23\n", "[#6]-&!@[#6]-&!@[#7]-&!@[#6](=&!@[#8])-&!@[#6]1:&@[#6]:&@[#6]:&@[#6](:&@[#6]:&@[#6]:&@1)-&!@[#6](-&!@[#35,#6])=&!@[#6]1-&@[#6]-&@[#6]2-&@[#6]-&@[#6]-&@[#6](-&@[#6]-&@1)-&@[#7]-&@2-&!@[#6]-&!@[#6]\n", "(1528084, 'CHEMBL3705645', 65, 'Radioligand Binding Assay: HEK293 cells stably expressing human CB2 receptors were grown until a confluent monolayer was formed. Briefly, the cells w ... (714 characters truncated) ... fatty acid free BSA, pH 7.4). After 90 min incubation at 30 C., binding reaction was terminated by the addition of 300 uL/well of cold assay buffer.')\n", " * postgresql://localhost/chembl_26\n", "Mean nAts 35.8, mcs nAts: 31\n", "[#6]-,=;!@[#7,#6]-&!@[#8,#7]-&!@[#6]1:&@[#6]:&@[#6]:&@[#6](:&@[#6]:&@[#6]:&@1-&!@[#6](=&!@[#8,#16])-&!@[#7]=&!@[#6]1:&@[#16]:&@[#6](:&@[#6]:&@[#7]:&@1-&!@[#6]-&!@[#6]1-&@[#6]-&@[#6]-&@[#6]-&@[#8]-&@1)-&!@[#6](-&!@[#6])(-&!@[#6])-&!@[#6])-&!@[#6](-&!@[#9])(-&!@[#9])-&!@[#9]\n", "(715074, 'CHEMBL1664180', 64, 'Displacement of [3H]NECA from human adenosine A3 receptor expressed in human HeLa cells by liquid scintillation counting')\n", " * postgresql://localhost/chembl_26\n", "Mean nAts 26.5, mcs nAts: 12\n", "[#6,#8]-,=;!@[#6](=,-;!@[#8,#6])-&!@[#7]-&!@[#6]1:&@[#6,#7]:&@[#6](-&!@[#6]):&@[#7,#6]:&@[#6](:&@[#7]:&@1)-&!@[#6]\n", "(1565814, 'CHEMBL3789421', 64, 'Displacement of FITC-Bak-BH3 peptide probe from N-terminal His-tagged human Mcl-1 (172 to 327 residues) expressed in Escherichia coli BL21(DE3) after 1.5 hrs by FPA based competition assay')\n", " * postgresql://localhost/chembl_26\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "RDKit ERROR: [07:56:47] Aromatic bonds on non aromatic atom 4\n", "RDKit INFO: [07:56:47] Aromatic bonds on non aromatic atom 4\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Mean nAts 41.8, mcs nAts: 29\n", "[#6]-&!@[#6]1:&@[#6]:&@[#6](-&!@[#8]-&!@[#6]-&!@[#6]-&!@[#6]-&!@[#6]2:&@[#6](-&!@[#6](=&!@[#8])-&!@[#7]-&!@[#16](-,=;!@[#6,#8])(=&!@[#8])=,-;!@[#8,#6]):&@[#7]:&@[#6]3:&@[#6]:&@2:&@[#6]:&@[#6]:&@[#6]:&@[#6]:&@3):&@[#6]:&@[#6](:&@[#6]:&@1-&!@[#17])-&!@[#6]\n", "(1452896, 'CHEMBL3366212', 64, 'Displacement of [3H]NECA from human adenosine A2A receptor expressed in CHO cells')\n", " * postgresql://localhost/chembl_26\n", "Mean nAts 26.6, mcs nAts: 18\n", "[#6,#8]-,=;!@[#7,#6,#8]-&!@[#6,#7]-&!@[#6]1:,=;@[#6,#7]:,-;@[#7,#6]:,=;@[#6](:,-;@[#7,#6]2:,-;@[#6,#7]:,-;@1:,=;@[#7,#6]:,-;@[#6](:,=;@[#7,#6]:,-;@2)-&!@[#6]1:,=;@[#6]:,-;@[#6]:,=;@[#6]:,-;@[#8,#6]:,-;@1)-&!@[#7,#6,#16]\n", "(1452898, 'CHEMBL3366214', 64, 'Antagonist activity at human adenosine A2B receptor expressed in CHO cells assessed as inhibition of NECA-stimulated adenylyl cyclase activity')\n", " * postgresql://localhost/chembl_26\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "RDKit ERROR: [07:57:06] Aromatic bonds on non aromatic atom 3\n", "RDKit INFO: [07:57:06] Aromatic bonds on non aromatic atom 3\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Mean nAts 26.6, mcs nAts: 18\n", "[#6,#8]-,=;!@[#7,#6,#8]-&!@[#6,#7]-&!@[#6]1:,=;@[#6,#7]:,-;@[#7,#6]:,=;@[#6](:,-;@[#7,#6]2:,-;@[#6,#7]:,-;@1:,=;@[#7,#6]:,-;@[#6](:,=;@[#7,#6]:,-;@2)-&!@[#6]1:,=;@[#6]:,-;@[#6]:,=;@[#6]:,-;@[#8,#6]:,-;@1)-&!@[#7,#6,#16]\n", "(1452895, 'CHEMBL3366211', 64, 'Displacement of [3H]CCPA from human adenosine A1 receptor expressed in CHO cells')\n", " * postgresql://localhost/chembl_26\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "RDKit ERROR: [07:57:06] Aromatic bonds on non aromatic atom 3\n", "RDKit INFO: [07:57:06] Aromatic bonds on non aromatic atom 3\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Mean nAts 26.6, mcs nAts: 18\n", "[#6,#8]-,=;!@[#7,#6,#8]-&!@[#6,#7]-&!@[#6]1:,=;@[#6,#7]:,-;@[#7,#6]:,=;@[#6](:,-;@[#7,#6]2:,-;@[#6,#7]:,-;@1:,=;@[#7,#6]:,-;@[#6](:,=;@[#7,#6]:,-;@2)-&!@[#6]1:,=;@[#6]:,-;@[#6]:,=;@[#6]:,-;@[#8,#6]:,-;@1)-&!@[#7,#6,#16]\n", "(1452897, 'CHEMBL3366213', 64, 'Displacement of [3H]NECA from human adenosine A3 receptor expressed in CHO cells')\n", " * postgresql://localhost/chembl_26\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "RDKit ERROR: [07:57:06] Aromatic bonds on non aromatic atom 3\n", "RDKit INFO: [07:57:06] Aromatic bonds on non aromatic atom 3\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Mean nAts 26.6, mcs nAts: 18\n", "[#6,#8]-,=;!@[#7,#6,#8]-&!@[#6,#7]-&!@[#6]1:,=;@[#6,#7]:,-;@[#7,#6]:,=;@[#6](:,-;@[#7,#6]2:,-;@[#6,#7]:,-;@1:,=;@[#7,#6]:,-;@[#6](:,=;@[#7,#6]:,-;@2)-&!@[#6]1:,=;@[#6]:,-;@[#6]:,=;@[#6]:,-;@[#8,#6]:,-;@1)-&!@[#7,#6,#16]\n", "(1528243, 'CHEMBL3706217', 64, 'Radioligand Binding Assay: HEK293 cells stably expressing human CB2 receptors were grown until a confluent monolayer was formed. Briefly, the cells w ... (714 characters truncated) ... fatty acid free BSA, pH 7.4). After 90 min incubation at 30 C., binding reaction was terminated by the addition of 300 uL/well of cold assay buffer.')\n", " * postgresql://localhost/chembl_26\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "RDKit ERROR: [07:57:06] Aromatic bonds on non aromatic atom 3\n", "RDKit INFO: [07:57:06] Aromatic bonds on non aromatic atom 3\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Mean nAts 33.8, mcs nAts: 25\n", "[#6]-&!@[#6]-&!@[#7]1:&@[#7]:&@[#6](:&@[#16,#6]:&@[#6]:&@1=&!@[#7]-&!@[#6](=&!@[#8])-&!@[#6]1:&@[#6]:&@[#6](-&!@[#6]-,#;!@[#9,#7]):&@[#6]:&@[#6]:&@[#6]:&@1-&!@[#8,#7]-,=;!@[#7]-,=;!@[#6])-&!@[#6](-&!@[#6])(-&!@[#6])-&!@[#6]\n", "(393314, 'CHEMBL911524', 63, 'Displacement of [3H]methylspiperone from dopamine D2 receptor expressed in CHO cells')\n", " * postgresql://localhost/chembl_26\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "RDKit ERROR: [07:57:16] Aromatic bonds on non aromatic atom 2\n", "RDKit INFO: [07:57:16] Aromatic bonds on non aromatic atom 2\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Mean nAts 35.3, mcs nAts: 22\n", "[#6]-&!@[#7]1-&@[#6]-&@[#6]-&@[#7](-&@[#6]-&@[#6]-&@1)-&!@[#6]1=&@[#7]-&@[#6]2:&@[#6]:&@[#6]:&@[#6]:&@[#6]:&@[#6]:&@2-&@[#7]-&@[#6]2:&@[#6]-&@1:&@[#6]:&@[#6]:&@[#6]:&@[#6]:&@2\n", "(685143, 'CHEMBL1286959', 63, 'Inhibition of human NOX4 overexpressed in human PMN cell membrane assessed as ROS production by cell free assay in presence of NADPH')\n", " * postgresql://localhost/chembl_26\n", "Mean nAts 28.4, mcs nAts: 14\n", "[#6]-&!@[#6]1:&@[#6]2:&@[#6](=&!@[#8]):&@[#7](:&@[#7]:&@[#6]:&@2:&@[#6]:&@[#6](:&@[#7]:&@1-&!@[#6,#7])=&!@[#8])-&!@[#6]\n", "(728369, 'CHEMBL1685145', 63, 'Displacement of [3H]Lu AE93103 from human NK3 receptor expressed in BHK cells')\n", " * postgresql://localhost/chembl_26\n", "Mean nAts 39.6, mcs nAts: 24\n", "[#6]-&!@[#7](-&!@[#6]-&!@[#6]1:&@[#6]:&@[#6]:&@[#6]:&@[#6]:&@[#6]:&@1)-&!@[#6](=&!@[#8])-&!@[#6]1(-&!@[#6])-&@[#6]-&@[#6]-&@1-&!@[#6]-&!@[#7]1-&@[#6]-&@[#6]-&@[#7,#6](-&@[#6]-&@[#6]-&@1)-&!@[#16,#6,#7]=,-;!@[#8,#6,#16]\n", "(425703, 'CHEMBL913685', 63, 'Binding affinity to dopamine D2')\n", " * postgresql://localhost/chembl_26\n", "Mean nAts 30.0, mcs nAts: 14\n", "[#6]1:&@[#6]:&@[#6]:&@[#6](:&@[#6]:&@[#6]:&@1)-&!@[#7,#6]1-&@[#6]-&@[#6]-&@[#7](-&@[#6]-&@[#6]-&@1)-&!@[#6]-&!@[#6]\n", "(393313, 'CHEMBL911523', 63, 'Displacement of [3H]SCH 23390 from dopamine D1 receptor expressed in CHO cells')\n", " * postgresql://localhost/chembl_26\n", "Mean nAts 35.3, mcs nAts: 22\n", "[#6]-&!@[#7]1-&@[#6]-&@[#6]-&@[#7](-&@[#6]-&@[#6]-&@1)-&!@[#6]1=&@[#7]-&@[#6]2:&@[#6]:&@[#6]:&@[#6]:&@[#6]:&@[#6]:&@2-&@[#7]-&@[#6]2:&@[#6]-&@1:&@[#6]:&@[#6]:&@[#6]:&@[#6]:&@2\n", "(864185, 'CHEMBL2175134', 63, 'Displacement of [33P]2-MeS-ADP from human recombinant P2Y12 receptor expressed in CHO cell membranes by scintillation counting method')\n", " * postgresql://localhost/chembl_26\n", "Mean nAts 47.3, mcs nAts: 25\n", "[#6,#7]-&!@[#7,#6]1-&@[#6]-&@[#6]-&@[#7](-&@[#6]-&@[#6]-&@1)-&!@[#6](=&!@[#8])-&!@[#6]-&!@[#7]-&!@[#6](=&!@[#8])-&!@[#6]1:&@[#6]:&@[#6](:&@[#7](:&@[#7]:&@1)-&!@[#6]1:&@[#6]:&@[#6]:&@[#6]:&@[#6]:&@[#6]:&@1)=,-;!@[#8]\n", "(458068, 'CHEMBL925405', 62, 'Displacement of [125I]Tyr-o-CRF from CRF1 receptor in IMR32 cells')\n", " * postgresql://localhost/chembl_26\n", "Mean nAts 29.0, mcs nAts: 17\n", "[#6]-&!@[#7]-&!@[#6]1:&@[#7]:&@[#6](-&!@[#6]):&@[#6](:&@[#7]:&@[#6]:&@1-&!@[#6])-&!@[#8,#7]-&!@[#6]1:&@[#6,#7]:&@[#6]:&@[#6,#7]:&@[#6]:&@[#7,#6]:&@1\n", "(1342911, 'CHEMBL3259186', 62, 'Competitive reversible inhibition of bovine thrombin using alpha-N-benzoyl-DL-arginine-p-nitroanilide hydrochloride as substrate after 15 to 40 mins by Michaelis-Menten plot analysis')\n", " * postgresql://localhost/chembl_26\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "RDKit ERROR: [07:59:05] Aromatic bonds on non aromatic atom 11\n", "RDKit INFO: [07:59:05] Aromatic bonds on non aromatic atom 11\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Mean nAts 24.7, mcs nAts: 12\n", "[#7]=,-;!@[#6](-,=;!@[#7,#8])-&!@[#6]1:&@[#6]:&@[#6,#7]:,-;@[#6,#7,#8]:,-,=;@[#16,#6,#7,#8]:,-,=;@[#6,#7,#8,#16]:,-;@[#6,#7,#8,#16]:,-;@[#6,#7]:&@[#6,#16]:&@1\n", "(333106, 'CHEMBL853597', 62, 'Inhibition of FKBP12 rotamase activity')\n", " * postgresql://localhost/chembl_26\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "RDKit ERROR: [07:59:06] Aromatic bonds on non aromatic atom 3\n", "RDKit INFO: [07:59:06] Aromatic bonds on non aromatic atom 3\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Mean nAts 34.7, mcs nAts: 21\n", "[#6]1:&@[#6]:&@[#6]:&@[#6]2:&@[#6](:&@[#6]:&@1)-&@[#6]-&@[#6]-&@[#7]1-&@[#6]-&@2-&@[#6]2-&@[#6]-&@[#6]-&@[#6]-&@[#6](-&@[#7]-&@2-&!@[#16,#6](=,-;!@[#8,#6])-,=;!@[#7,#6,#8])-&@[#6]-&@1=&!@[#8]\n", "(1561631, 'CHEMBL3776608', 62, 'Displacement of [3H]-spiperone from human dopamine D2 receptor expressed in CHO-K1 cell membranes after 120 mins by liquid scintillation counter method')\n", " * postgresql://localhost/chembl_26\n", "Mean nAts 33.1, mcs nAts: 25\n", "[#6]-&!@[#7]1:&@[#6](-&!@[#16]-&!@[#6]-&!@[#6]-&!@[#6]-&!@[#7]2-&@[#6]-&@[#6]3-&@[#6](-&@[#6]-&@2)-&@[#7](-&@[#6]-&@[#6]-&@3)-&!@[#6]2:&@[#6]:&@[#6]:&@[#6]:&@[#6]:&@[#6]:&@2):&@[#7]:&@[#7]:&@[#6]:&@1-&!@[#6,#7]\n", "(664672, 'CHEMBL1260558', 62, 'Displacement of [3H]-Spiperone from human dopamine D2L receptor expressed in CHO cells')\n", " * postgresql://localhost/chembl_26\n", "Mean nAts 31.5, mcs nAts: 21\n", "[#6,#8]1:,-;@[#6,#8]:,-;@[#6,#8]:,-;@[#6]2:&@[#6](:,-;@[#6]:,-;@1):&@[#6]:&@[#6]:&@[#6]:&@[#6]:&@2-&!@[#7]1-&@[#6]-&@[#6]-&@[#7](-&@[#6]-&@[#6]-&@1)-&!@[#6]-&!@[#6]-&!@[#6]-&!@[#8,#6]-&!@[#6,#8]\n", "(664673, 'CHEMBL1260559', 62, 'Binding affinity to human 5HT2A receptor')\n", " * postgresql://localhost/chembl_26\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "RDKit ERROR: [08:00:10] Aromatic bonds on non aromatic atom 5\n", "RDKit INFO: [08:00:10] Aromatic bonds on non aromatic atom 5\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Mean nAts 31.5, mcs nAts: 21\n", "[#6,#8]1:,-;@[#6,#8]:,-;@[#6,#8]:,-;@[#6]2:&@[#6](:,-;@[#6]:,-;@1):&@[#6]:&@[#6]:&@[#6]:&@[#6]:&@2-&!@[#7]1-&@[#6]-&@[#6]-&@[#7](-&@[#6]-&@[#6]-&@1)-&!@[#6]-&!@[#6]-&!@[#6]-&!@[#8,#6]-&!@[#6,#8]\n", "(302621, 'CHEMBL838818', 62, 'Binding affinity determined against human alpha thrombin')\n", " * postgresql://localhost/chembl_26\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "RDKit ERROR: [08:00:18] Aromatic bonds on non aromatic atom 5\n", "RDKit INFO: [08:00:18] Aromatic bonds on non aromatic atom 5\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Mean nAts 39.8, mcs nAts: 16\n", "[#7,#6,#8]-&!@[#6]-&!@[#6](=&!@[#8])-&!@[#7]1-&@[#6]-&@[#6]-&@[#6]-&@[#6]-&@1-&!@[#6](=&!@[#8])-&!@[#7]-&!@[#6](-&!@[#6]=,-;!@[#8,#6])-&!@[#6]\n", "(878513, 'CHEMBL2188178', 62, 'Displacement of [3H]NECA from human adenosine A3 receptor expressed in CHO cell membrane')\n", " * postgresql://localhost/chembl_26\n", "Mean nAts 25.3, mcs nAts: 20\n", "[#6,#8]-&!@[#7,#8]-&!@[#6]1:&@[#7]:&@[#6]2:&@[#7]:&@[#7](:&@[#6]:&@[#6]:&@2:&@[#6]2:&@[#7]:&@1:&@[#7]:&@[#6](:&@[#7]:&@2)-&!@[#6]1:&@[#6]:&@[#6]:&@[#6]:&@[#8]:&@1)-&!@[#6]\n", "(878514, 'CHEMBL2188179', 62, 'Displacement of [3H]NECA from human adenosine A2A receptor expressed in CHO cell membrane')\n", " * postgresql://localhost/chembl_26\n", "Mean nAts 25.3, mcs nAts: 20\n", "[#6,#8]-&!@[#7,#8]-&!@[#6]1:&@[#7]:&@[#6]2:&@[#7]:&@[#7](:&@[#6]:&@[#6]:&@2:&@[#6]2:&@[#7]:&@1:&@[#7]:&@[#6](:&@[#7]:&@2)-&!@[#6]1:&@[#6]:&@[#6]:&@[#6]:&@[#8]:&@1)-&!@[#6]\n", "(878515, 'CHEMBL2188180', 62, 'Displacement of [3H]CCPA from human adenosine A1 receptor expressed in CHO cell membrane')\n", " * postgresql://localhost/chembl_26\n", "Mean nAts 25.3, mcs nAts: 20\n", "[#6,#8]-&!@[#7,#8]-&!@[#6]1:&@[#7]:&@[#6]2:&@[#7]:&@[#7](:&@[#6]:&@[#6]:&@2:&@[#6]2:&@[#7]:&@1:&@[#7]:&@[#6](:&@[#7]:&@2)-&!@[#6]1:&@[#6]:&@[#6]:&@[#6]:&@[#8]:&@1)-&!@[#6]\n", "(544730, 'CHEMBL1010168', 61, 'Binding affinity to human coagulation factor 10a')\n", " * postgresql://localhost/chembl_26\n", "Mean nAts 36.9, mcs nAts: 30\n", "[#7,#6]-&!@[#6]1(-&!@[#6]2:&@[#6]:&@[#6]:&@[#6](:&@[#6]:&@[#6]:&@2)-&!@[#7]2-&@[#6]-&@[#6]-&@[#6]3:,-;@[#6](-&@[#6]-&@2=&!@[#8]):,-;@[#7](:,-;@[#7]:,=;@[#6]:,-;@3-&!@[#6,#16]#,-;!@[#7,#6,#9])-&!@[#6]2:&@[#6]:&@[#6]:&@[#6](:&@[#6]:&@[#6]:&@2)-&!@[#8]-&!@[#6])-&@[#6]-&@[#6]-&@1\n", "(303291, 'CHEMBL828284', 61, 'Inhibition constant against human liver carboxylesterase 1 (hCE1) using nitrophenyl acetate (o-NPA) as substrate')\n", " * postgresql://localhost/chembl_26\n", "Mean nAts 16.3, mcs nAts: 7\n", "[#8,#6,#7,#16]=,-;!@[#6]1-,=,:;@[#6,#7]-,=,:;@[#6]-,=,:;@[#6]-,:;@[#6,#7,#8]-,=,:;@[#6]-,:;@1\n", "(303460, 'CHEMBL839720', 61, 'Binding affinity towards metabotropic glutamate receptor 2 of rat expressed in CHO cells was determined by using [3H]MGS-0008')\n", " * postgresql://localhost/chembl_26\n", "Mean nAts 24.2, mcs nAts: 17\n", "[#6]-&!@[#6]-&!@[#8]-&!@[#6]1-&@[#6]-&@[#6]2-&@[#6](-&@[#6]-&@1(-&!@[#7])-&!@[#6](=&!@[#8])-&!@[#8])-&@[#6]-&@2(-&!@[#9])-&!@[#6](=&!@[#8])-&!@[#8]\n", "(303366, 'CHEMBL839684', 61, 'Inhibition constant against human intestinal carboxylesterase 2 (hiCE) using nitrophenyl acetate (o-NPA) as substrate')\n", " * postgresql://localhost/chembl_26\n", "Mean nAts 16.3, mcs nAts: 7\n", "[#8,#6,#7,#16]=,-;!@[#6]1-,=,:;@[#6,#7]-,=,:;@[#6]-,=,:;@[#6]-,:;@[#6,#7,#8]-,=,:;@[#6]-,:;@1\n", "(613511, 'CHEMBL1072277', 61, 'Displacement of [3H]histamine from human histamine H4 receptor expressed in HEK293T cells')\n", " * postgresql://localhost/chembl_26\n", "Mean nAts 26.0, mcs nAts: 19\n", "[#6]-&!@[#7,#8]-&!@[#6]1:&@[#7]:&@[#6](-&!@[#7]2-&@[#6]-&@[#6]-&@[#7](-&@[#6]-&@[#6]-&@2)-&!@[#6]):&@[#7]:&@[#6]2:&@[#6]:&@1:&@[#6]:&@[#6]:&@[#6]:&@[#6]:&@2\n", "(303261, 'CHEMBL828256', 61, 'Inhibition constant against rabbit liver carboxylesterase (rCE) using nitrophenyl acetate (o-NPA) as substrate')\n", " * postgresql://localhost/chembl_26\n", "Mean nAts 16.3, mcs nAts: 7\n", "[#8,#6,#7,#16]=,-;!@[#6]1-,=,:;@[#6,#7]-,=,:;@[#6]-,=,:;@[#6]-,:;@[#6,#7,#8]-,=,:;@[#6]-,:;@1\n", "(303260, 'CHEMBL828255', 61, 'Inhibition constant against human Butyrylcholinesterase (hBuChE) using butyrylthiocholine (BuTCh) as substrate')\n", " * postgresql://localhost/chembl_26\n", "Mean nAts 16.3, mcs nAts: 7\n", "[#8,#6,#7,#16]=,-;!@[#6]1-,=,:;@[#6,#7]-,=,:;@[#6]-,=,:;@[#6]-,:;@[#6,#7,#8]-,=,:;@[#6]-,:;@1\n", "(1436945, 'CHEMBL3388443', 61, 'Inhibition of human IDH1 R132H mutant expressed in Escherichia coli BL21-CodonPlus assessed as reduction in NADPH consumption')\n", " * postgresql://localhost/chembl_26\n", "Mean nAts 17.5, mcs nAts: 9\n", "[#8,#6]=,-;!@[#6,#7,#8]-&!@[#6,#7]1:,-;@[#6,#7,#8]:,=;@[#6]:,-;@[#6,#7]:,-;@[#7,#6](:,-;@[#6,#7,#8]:,=;@1)-,=;!@[#8,#6,#9,#16]\n", "(303216, 'CHEMBL829841', 61, 'Inhibition constant against human Acetylcholinesterase (hAcChE) using acetylthiocholine (AcTCh) as substrate')\n", " * postgresql://localhost/chembl_26\n", "Mean nAts 16.3, mcs nAts: 7\n", "[#8,#6,#7,#16]=,-;!@[#6]1-,=,:;@[#6,#7]-,=,:;@[#6]-,=,:;@[#6]-,:;@[#6,#7,#8]-,=,:;@[#6]-,:;@1\n", "(556996, 'CHEMBL958182', 61, 'Displacement of [3H]histamine from human histamine H4 receptor expressed in HEK cells')\n", " * postgresql://localhost/chembl_26\n", "Mean nAts 23.6, mcs nAts: 11\n", "[#7,#17]-&!@[#6]1:&@[#7,#6]:&@[#6,#7]:&@[#6]2:&@[#6](:&@[#7,#6]:&@1):&@[#6]:&@[#6,#7]:&@[#6]:&@[#6,#7]:&@2\n", "(745548, 'CHEMBL1775865', 61, 'Inhibition of human PI3Kalpha expressed in Sf9 cells')\n", " * postgresql://localhost/chembl_26\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "RDKit ERROR: [08:00:54] Aromatic bonds on non aromatic atom 1\n", "RDKit INFO: [08:00:54] Aromatic bonds on non aromatic atom 1\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Mean nAts 29.3, mcs nAts: 21\n", "[#6,#16]-&!@[#16,#6,#7,#8]-&!@[#6]1:&@[#7,#6]:&@[#6,#7]:&@[#6]:&@[#6](:&@[#7,#6]:&@1)-&!@[#6]1:&@[#6]:&@[#6]:&@[#6]2:&@[#6](:&@[#6]:&@1):&@[#16]:&@[#6](:&@[#7]:&@2)-&!@[#7]-&!@[#6](-&!@[#6])=&!@[#8]\n", "(664675, 'CHEMBL1260561', 61, 'Binding affinity to human 5HT1A receptor expressed in HeLa cells by scintillation proximity assay')\n", " * postgresql://localhost/chembl_26\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "RDKit ERROR: [08:01:02] Aromatic bonds on non aromatic atom 2\n", "RDKit INFO: [08:01:02] Aromatic bonds on non aromatic atom 2\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Mean nAts 31.5, mcs nAts: 21\n", "[#6,#8]1:,-;@[#6,#8]:,-;@[#6,#8]:,-;@[#6]2:&@[#6](:,-;@[#6]:,-;@1):&@[#6]:&@[#6]:&@[#6]:&@[#6]:&@2-&!@[#7]1-&@[#6]-&@[#6]-&@[#7](-&@[#6]-&@[#6]-&@1)-&!@[#6]-&!@[#6]-&!@[#6]-&!@[#8,#6]-&!@[#6,#8]\n", "(464863, 'CHEMBL930580', 60, 'Binding affinity at rat recombinant histamine H3 receptor in rat cortical membranes')\n", " * postgresql://localhost/chembl_26\n", "Mean nAts 15.9, mcs nAts: 8\n", "[#6,#8]1:,-;@[#6,#7]:,-;@[#16,#6,#7]:,-;@[#6,#7](:,-;@[#6,#7]:,-;@1)-&!@[#6]-&!@[#6]-&!@[#7,#6]\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "RDKit ERROR: [08:01:06] Aromatic bonds on non aromatic atom 5\n", "RDKit INFO: [08:01:06] Aromatic bonds on non aromatic atom 5\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "(635026, 'CHEMBL1118577', 60, 'Displacement of [125I] Tyr-o-CRF from human CRF[125I]receptor expressed in human IMR-3[125I]cells after 100 mins')\n", " * postgresql://localhost/chembl_26\n", "Mean nAts 32.8, mcs nAts: 24\n", "[#7]-&!@[#6]-&!@[#6]1:&@[#6](-&!@[#6](-&!@[#9])(-&!@[#9])-&!@[#9]):&@[#7]:&@[#6]2:&@[#7]:&@1:&@[#6]:&@[#6](:&@[#7]:&@2-&!@[#6]1:&@[#6](-&!@[#6]):&@[#6]:&@[#6](:&@[#6]:&@[#6]:&@1-&!@[#6,#17])-&!@[#6])-&!@[#17]\n", "(635521, 'CHEMBL1118104', 60, 'Displacement of [3H]LSD form human recombinant 5HT6 receptor')\n", " * postgresql://localhost/chembl_26\n", "Mean nAts 25.4, mcs nAts: 16\n", "[#7,#6]-,=;!@[#6]-&!@[#6]1-&@[#6]-&@[#6]-&@[#6]-&@[#6]2:&@[#6]-&@1:&@[#6]:&@[#6]:&@[#6](:&@[#6]:&@2)-&!@[#16](=,-;!@[#8,#6])(=&!@[#8])-,=;!@[#6,#8]\n", "(641177, 'CHEMBL1174684', 60, 'Displacement of [3H](+)-pentazocine from sigma 1 receptor in guinea pig brain membrane')\n", " * postgresql://localhost/chembl_26\n", "Mean nAts 25.1, mcs nAts: 9\n", "[#6,#7,#8]-,=,#;!@[#6,#7,#8]-&!@[#6]-&!@[#7,#6]1-,:;@[#6]-,:;@[#6]-,:;@[#6]-,:;@[#6]-,:;@[#6,#8]-,:;@1\n", "(158035, 'CHEMBL768259', 60, 'Inhibitory activity against HIV-1 protease')\n", " * postgresql://localhost/chembl_26\n", "Mean nAts 40.3, mcs nAts: 30\n", "[#8]=&!@[#6]1-&@[#7]-&@[#6](-&!@[#6]-,=;!@[#6]-&!@[#6]2:&@[#6]:&@[#6]:&@[#6]:&@[#6]:&@[#6]:&@2)-&@[#6](-&@[#6](-&@[#7]-&@1-&!@[#6]-&!@[#6]1:&@[#6]:&@[#6]:&@[#6]:&@[#6]:&@[#6]:&@1)-&!@[#6]-&!@[#6]1:&@[#6]:&@[#6]:&@[#6]:&@[#6]:&@[#6]:&@1)-&!@[#8]\n", "(1556442, 'CHEMBL3772473', 60, 'Inhibition of recombinant full lenght human PDE4A using fluorescent labeled cAMP as substrate after 15 mins by IMAP assay')\n", " * postgresql://localhost/chembl_26\n", "Mean nAts 36.1, mcs nAts: 20\n", "[#6,#8]-,=;!@[#7,#6]1-&@[#6]-,:;@[#6]=,:;@[#6,#7](-&!@[#7,#6,#8,#16]-&!@[#6]2:,-;@[#6]:,-;@[#6]:,-;@[#6,#7]:,-;@[#6]:,-;@[#6]:,-;@2)-,:;@[#7]-,:;@[#7,#6]-,:;@[#6,#7]-&@[#7,#6]-&@[#6]-&@[#6,#7]-,=;@[#7,#6]=,-;@[#6,#7]-&@1\n", "(325792, 'CHEMBL862698', 60, 'Inhibitory constant against rabbit cathepsin K using Z-Phe-Arg-AMC substrate')\n", " * postgresql://localhost/chembl_26\n", "Mean nAts 29.9, mcs nAts: 14\n", "[#6,#7](-&!@[#7,#6]-&!@[#6]-&!@[#8,#6,#7]-&!@[#6]-&!@[#6]1:&@[#6]:&@[#6]:&@[#6]:&@[#6]:&@[#6]:&@1)-&!@[#6]-&!@[#7,#6]-,#;!@[#6,#7]\n", "(464862, 'CHEMBL930579', 60, 'Binding affinity at human recombinant histamine H3 receptor expressed in HEK cells')\n", " * postgresql://localhost/chembl_26\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "RDKit ERROR: [08:02:35] Aromatic bonds on non aromatic atom 11\n", "RDKit INFO: [08:02:35] Aromatic bonds on non aromatic atom 11\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Mean nAts 15.9, mcs nAts: 8\n", "[#6,#8]1:,-;@[#6,#7]:,-;@[#16,#6,#7]:,-;@[#6,#7](:,-;@[#6,#7]:,-;@1)-&!@[#6]-&!@[#6]-&!@[#7,#6]\n", "(856937, 'CHEMBL2160580', 60, 'Inhibition of human thrombin using fluorogenic Cbz-Gly-Gly-Arg-NH-Mec as substrate measured over 400 secs by spectrophotometry')\n", " * postgresql://localhost/chembl_26\n", "Mean nAts 33.5, mcs nAts: 11\n", "[#6]1:&@[#6]:&@[#6]:&@[#6]:&@[#6](:&@[#6]:&@1)-&!@[#16](=&!@[#8])(=&!@[#8])-&!@[#7]-&!@[#6]\n", "(325793, 'CHEMBL862699', 60, 'Inhibitory constant against human cathepsin B using Boc-Leu-Lys-Arg-AMC substrate')\n", " * postgresql://localhost/chembl_26\n", "Mean nAts 29.9, mcs nAts: 14\n", "[#6,#7](-&!@[#7,#6]-&!@[#6]-&!@[#8,#6,#7]-&!@[#6]-&!@[#6]1:&@[#6]:&@[#6]:&@[#6]:&@[#6]:&@[#6]:&@1)-&!@[#6]-&!@[#7,#6]-,#;!@[#6,#7]\n", "(325794, 'CHEMBL862700', 60, 'Inhibitory constant against human cathepsin L using Z-Phe-Arg-AMC substrate')\n", " * postgresql://localhost/chembl_26\n", "Mean nAts 29.9, mcs nAts: 14\n", "[#6,#7](-&!@[#7,#6]-&!@[#6]-&!@[#8,#6,#7]-&!@[#6]-&!@[#6]1:&@[#6]:&@[#6]:&@[#6]:&@[#6]:&@[#6]:&@1)-&!@[#6]-&!@[#7,#6]-,#;!@[#6,#7]\n", "(872705, 'CHEMBL2184685', 60, 'Displacement of [3H]epibatidine from human alpha7 nAChR expressed in CHO cells after 2 hrs by liquid scintillation counting')\n", " * postgresql://localhost/chembl_26\n", "Mean nAts 16.1, mcs nAts: 5\n", "[#7,#6]1-,:;@[#6,#7,#8]-,:;@[#6,#7,#8]-,:;@[#6,#7,#8]-,:;@[#6,#7,#8]-,:;@1\n", "(375257, 'CHEMBL867484', 60, 'Displacement of [3H]MRE 3008F20 from human adenosine A3 receptor expressed in CHO cells')\n", " * postgresql://localhost/chembl_26\n", "Mean nAts 27.5, mcs nAts: 9\n", "[#8,#6,#7]=,-;!@[#6,#8,#16]-&!@[#7,#6]-&!@[#6]1:&@[#6,#7]:&@[#6,#7]:&@[#6,#7]:&@[#6,#7]:&@[#6,#7]:&@1\n", "(936414, 'CHEMBL2317407', 60, 'Displacement of [3H]NMS from human M5 muscarinic receptor expressed in CHO-K1 cells')\n", " * postgresql://localhost/chembl_26\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "RDKit ERROR: [08:02:36] Aromatic bonds on non aromatic atom 3\n", "RDKit INFO: [08:02:36] Aromatic bonds on non aromatic atom 3\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Mean nAts 27.8, mcs nAts: 18\n", "[#6]-&!@[#7]1-&@[#6]-&@[#6]-&@[#6](=&@[#6](-&@[#6]-&@1)-&!@[#6](=&!@[#8])-&!@[#8]-&!@[#6]-&!@[#6])-&!@[#6]1:&@[#6]:&@[#6]:&@[#6]:&@[#6]:&@[#6]:&@1\n", "(936415, 'CHEMBL2317408', 60, 'Displacement of [3H]NMS from human M1 muscarinic receptor expressed in CHO-K1 cells')\n", " * postgresql://localhost/chembl_26\n", "Mean nAts 27.8, mcs nAts: 18\n", "[#6]-&!@[#7]1-&@[#6]-&@[#6]-&@[#6](=&@[#6](-&@[#6]-&@1)-&!@[#6](=&!@[#8])-&!@[#8]-&!@[#6]-&!@[#6])-&!@[#6]1:&@[#6]:&@[#6]:&@[#6]:&@[#6]:&@[#6]:&@1\n", "(325795, 'CHEMBL862701', 60, 'Inhibitory constant against human cathepsin S using Z-Val-Val-Arg-AMC substrate')\n", " * postgresql://localhost/chembl_26\n", "Mean nAts 29.9, mcs nAts: 14\n", "[#6,#7](-&!@[#7,#6]-&!@[#6]-&!@[#8,#6,#7]-&!@[#6]-&!@[#6]1:&@[#6]:&@[#6]:&@[#6]:&@[#6]:&@[#6]:&@1)-&!@[#6]-&!@[#7,#6]-,#;!@[#6,#7]\n", "(425772, 'CHEMBL855762', 60, 'Binding affinity to human CCR8 expressed in L1.2 cells by FMAT assay')\n", " * postgresql://localhost/chembl_26\n", "Mean nAts 34.0, mcs nAts: 20\n", "[#7,#6,#8]-,=;!@[#16,#7]-&!@[#6]1:&@[#6]:&@[#6]:&@[#6](:&@[#6]2:&@[#6]:&@1:&@[#6]:&@[#6]:&@[#6]:&@[#6]:&@2)-&!@[#7,#6,#8,#16]-&!@[#6,#7]-&!@[#6,#7]1:,-;@[#6]:,-;@[#6]:,-;@[#6,#7]:,-;@[#6]:,-;@[#6]:,-;@1\n", "(1527911, 'CHEMBL3705162', 60, 'Binding Assay: Binding assay using Bradykinin-1 receptor.')\n", " * postgresql://localhost/chembl_26\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "RDKit ERROR: [08:02:48] Aromatic bonds on non aromatic atom 19\n", "RDKit INFO: [08:02:48] Aromatic bonds on non aromatic atom 19\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Mean nAts 36.7, mcs nAts: 20\n", "[#6]-&!@[#6,#7]1:&@[#7]:&@[#6](:&@[#7]:&@[#8,#7]:&@1)-&!@[#6]1:&@[#6](-&!@[#9]):&@[#6]:&@[#6](:&@[#6]:&@[#6]:&@1-&!@[#6]1:&@[#6]:&@[#6,#7]:&@[#6]:&@[#6,#7]:&@[#6]:&@1)-&!@[#17]\n", "(364154, 'CHEMBL870844', 60, 'Displacement of [3H]ZM241385 from human adenosine A2b receptor expressed in HEK cells')\n", " * postgresql://localhost/chembl_26\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "RDKit ERROR: [08:03:19] Aromatic bonds on non aromatic atom 18\n", "RDKit INFO: [08:03:19] Aromatic bonds on non aromatic atom 18\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Mean nAts 29.9, mcs nAts: 20\n", "[#6]-&!@[#6]-&!@[#7]1:&@[#6](=&!@[#8]):&@[#6]2:&@[#7]:&@[#6](:&@[#7]:&@[#6]:&@2:&@[#7](:&@[#6]:&@1=&!@[#8])-&!@[#6]-&!@[#6])-&!@[#6,#7]1-,:;@[#6]-,:;@[#6,#7]-,:;@[#6,#7]-,:;@[#6,#7]-,:;@1\n", "(982934, 'CHEMBL2429574', 59, 'Displacement of [3H]PSB-13253 from human recombinant GPR35 exprssed in CHO cells by liquid scintillation counting analysis')\n", " * postgresql://localhost/chembl_26\n", "Mean nAts 24.8, mcs nAts: 9\n", "[#8,#6,#7]=,-;!@[#6,#7,#8,#16]-&!@[#6]1:&@[#6]:&@[#6](=,-;!@[#8,#6,#7,#9,#17,#35]):&@[#6]:&@[#6]:&@[#7,#6,#8]:&@1\n", "(1342913, 'CHEMBL3259188', 59, 'Competitive reversible inhibition of porcine pancreatic kallikrein using alpha-N-benzoyl-DL-arginine-p-nitroanilide hydrochloride as substrate after 15 to 180 mins by Michaelis-Menten plot analysis')\n", " * postgresql://localhost/chembl_26\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "RDKit ERROR: [08:03:20] Aromatic bonds on non aromatic atom 2\n", "RDKit INFO: [08:03:20] Aromatic bonds on non aromatic atom 2\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Mean nAts 24.4, mcs nAts: 11\n", "[#7,#6]=,-;!@[#6,#7]-,=;!@[#6]1:,-;@[#6,#7]:,=;@[#6,#7]:,-;@[#6,#7,#8]:,-,=;@[#16,#6,#7,#8]:,-,=;@[#6,#7,#8,#16]:,-;@[#6,#7,#8,#16]:,-;@[#6,#7]:&@[#6,#7,#16]:,-;@1\n", "(448200, 'CHEMBL898460', 59, 'Displacement of [125I]His5,D-Tyr6]GnRH from human cloned GnRH receptor transfected in COS7 cells')\n", " * postgresql://localhost/chembl_26\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "RDKit ERROR: [08:03:21] Aromatic bonds on non aromatic atom 2\n", "RDKit INFO: [08:03:21] Aromatic bonds on non aromatic atom 2\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Mean nAts 40.9, mcs nAts: 22\n", "[#6]-&!@[#7]1:&@[#6](=&!@[#8]):&@[#6]2:&@[#6](:&@[#7](:&@[#6]:&@1=&!@[#8])-&!@[#6]-&!@[#6]1:&@[#6](-&!@[#9]):&@[#6]:&@[#6]:&@[#6]:&@[#6]:&@1-&!@[#9,#6])-&@[#6]-&@[#7,#6]-&@[#6,#7]-&@[#6]-&@2\n", "(397859, 'CHEMBL856320', 59, 'Displacement of [125I]NDP-MSH from human MC4R stably expressed in HEK293 cells')\n", " * postgresql://localhost/chembl_26\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "RDKit ERROR: [08:03:41] Aromatic bonds on non aromatic atom 1\n", "RDKit INFO: [08:03:41] Aromatic bonds on non aromatic atom 1\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Mean nAts 33.6, mcs nAts: 23\n", "[#6]-&!@[#6](-&!@[#6])-&!@[#6]-&!@[#6](-&!@[#7])-&!@[#6]1:&@[#6]:&@[#6](-&!@[#6,#9,#17]):&@[#6]:&@[#6]:&@[#6]:&@1-&!@[#7]1-&@[#6]-&@[#6]-&@[#7](-&@[#6]-&@[#6]-&@1)-&!@[#6](=&!@[#8])-&!@[#6]-&!@[#6,#7,#8,#16]\n", "(1437207, 'CHEMBL3382981', 59, 'Displacement of [3H]-(+)-pentazocine from sigma-1 receptor in Dunkin Hartley guinea pig brain membranes after 180 mins by liquid scintillation counting analysis')\n", " * postgresql://localhost/chembl_26\n", "Mean nAts 24.4, mcs nAts: 17\n", "[#6]1:&@[#6]:&@[#6](-&!@[#8]-&!@[#6]-&!@[#6]-,=;!@[#6,#8]-&!@[#7,#6]):&@[#7]:&@[#6](:&@[#7]:&@1)-&!@[#6]1:&@[#6]:&@[#6]:&@[#6]:&@[#6]:&@[#6]:&@1\n", "(1278707, 'CHEMBL3096081', 59, 'Displacement of [3H]PSB-603 from human adenosine A2B receptor')\n", " * postgresql://localhost/chembl_26\n", "Mean nAts 28.6, mcs nAts: 18\n", "[#6]-&!@[#7]1:&@[#6](=&!@[#8]):&@[#6]2:&@[#6](:&@[#7](:&@[#6]:&@1=&!@[#8])-&!@[#6]):&@[#7]:&@[#6]1:&@[#7]:&@2-&@[#6]-&@[#6]-&@[#6]-&@[#7]-&@1-&!@[#6]\n", "(1278706, 'CHEMBL3096080', 59, 'Displacement of [3H]MSX-2 from adenosine A2A receptor in rat brain striatum')\n", " * postgresql://localhost/chembl_26\n", "Mean nAts 28.6, mcs nAts: 18\n", "[#6]-&!@[#7]1:&@[#6](=&!@[#8]):&@[#6]2:&@[#6](:&@[#7](:&@[#6]:&@1=&!@[#8])-&!@[#6]):&@[#7]:&@[#6]1:&@[#7]:&@2-&@[#6]-&@[#6]-&@[#6]-&@[#7]-&@1-&!@[#6]\n", "(1527697, 'CHEMBL3705226', 59, 'Radioligand Binding Assay: The CRTH2 receptor binding assay is performed in a scintillation proximity assay (SPA) format with the radioligand [3H]-PG ... (713 characters truncated) ... of 1 nM (50 000 dpm) and 20 uL of the test compound (dissolved in dimethylsulfoxide). The SPA assay mixture is incubated for 3 h at room temperature.')\n", " * postgresql://localhost/chembl_26\n", "Mean nAts 32.8, mcs nAts: 30\n", "[#6]-&!@[#6]1:&@[#7]:&@[#7](:&@[#6](:&@[#6]:&@1-&!@[#6]-&!@[#6](=&!@[#8])-&!@[#8])-&!@[#6])-&!@[#6]-&!@[#6]1:&@[#6]:&@[#6]:&@[#6](:&@[#6]:&@[#6]:&@1)-&!@[#7]-&!@[#6](=&!@[#8])-&!@[#6]1:&@[#6,#7,#8,#16]:&@[#6]2:&@[#6](:&@[#7,#6,#8,#16]:&@1):&@[#6]:&@[#6]:&@[#6]:&@[#6]:&@2\n", "(1278703, 'CHEMBL3096077', 59, 'Displacement of [3H]PSB-11 from human adenosine A3 receptor expressed in CHO cells')\n", " * postgresql://localhost/chembl_26\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "RDKit ERROR: [08:04:16] Aromatic bonds on non aromatic atom 21\n", "RDKit INFO: [08:04:16] Aromatic bonds on non aromatic atom 21\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Mean nAts 28.6, mcs nAts: 18\n", "[#6]-&!@[#7]1:&@[#6](=&!@[#8]):&@[#6]2:&@[#6](:&@[#7](:&@[#6]:&@1=&!@[#8])-&!@[#6]):&@[#7]:&@[#6]1:&@[#7]:&@2-&@[#6]-&@[#6]-&@[#6]-&@[#7]-&@1-&!@[#6]\n", "(1278708, 'CHEMBL3096082', 59, 'Displacement of [3H]CCPA from human adenosine A1 receptor expressed in CHO cells')\n", " * postgresql://localhost/chembl_26\n", "Mean nAts 28.6, mcs nAts: 18\n", "[#6]-&!@[#7]1:&@[#6](=&!@[#8]):&@[#6]2:&@[#6](:&@[#7](:&@[#6]:&@1=&!@[#8])-&!@[#6]):&@[#7]:&@[#6]1:&@[#7]:&@2-&@[#6]-&@[#6]-&@[#6]-&@[#7]-&@1-&!@[#6]\n", "(1278709, 'CHEMBL3096083', 59, 'Displacement of [3H]CCPA from adenosine A1 receptor in rat brain cortex')\n", " * postgresql://localhost/chembl_26\n", "Mean nAts 28.6, mcs nAts: 18\n", "[#6]-&!@[#7]1:&@[#6](=&!@[#8]):&@[#6]2:&@[#6](:&@[#7](:&@[#6]:&@1=&!@[#8])-&!@[#6]):&@[#7]:&@[#6]1:&@[#7]:&@2-&@[#6]-&@[#6]-&@[#6]-&@[#7]-&@1-&!@[#6]\n", "(629414, 'CHEMBL1105767', 59, 'Binding affinity to human histamine H3 receptor')\n", " * postgresql://localhost/chembl_26\n", "Mean nAts 27.4, mcs nAts: 16\n", "[#7]1-&@[#6]-&@[#6](-&@[#6]-&@[#6]-&@1-&!@[#6](=&!@[#8])-&!@[#7]1-&@[#6]-&@[#6]-&@[#6]-&@[#7]-&@[#6]-&@[#6]-&@1)-&!@[#8,#6]-&!@[#6]\n", "(398818, 'CHEMBL908038', 59, 'Binding affinity to human MCHR1')\n", " * postgresql://localhost/chembl_26\n", "Mean nAts 40.1, mcs nAts: 27\n", "[#6]1:&@[#6,#7]:&@[#6,#7]:&@[#6]:&@[#6](:&@[#6]:&@1)-&!@[#6]1:&@[#6]:&@[#6]:&@[#6]2:&@[#6](:&@[#6]:&@1)-&@[#6]-&@[#6]-&@[#7](-&@[#6]-&@2)-&!@[#6]-&!@[#6](=&!@[#8])-&!@[#7]-&!@[#6]1:&@[#6]:&@[#6]:&@[#6]:&@[#6](:&@[#6]:&@1)-&!@[#17,#6,#9]\n", "(1535209, 'CHEMBL3707811', 58, 'Biological Assay: Biological assay using monoamine oxidase or LSD1.')\n", " * postgresql://localhost/chembl_26\n", "Mean nAts 24.5, mcs nAts: 14\n", "[#7,#8]-,=;!@[#6](=,-;!@[#8,#7])-&!@[#6]-&!@[#7]-&!@[#6]1-&@[#6]-&@[#6]-&@1-&!@[#6]1:&@[#6]:&@[#6]:&@[#6]:&@[#6]:&@[#6]:&@1\n", "(621604, 'CHEMBL1113036', 58, 'Displacement of SST14 from human recombinant SST3 receptor')\n", " * postgresql://localhost/chembl_26\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "RDKit ERROR: [08:05:08] Aromatic bonds on non aromatic atom 0\n", "RDKit INFO: [08:05:08] Aromatic bonds on non aromatic atom 0\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Mean nAts 30.7, mcs nAts: 17\n", "[#6,#7]-&!@[#7,#6]1-&@[#6]-&@[#6]-&@[#6,#7](-&@[#6]-&@[#6]-&@1)-&!@[#7,#6]-&!@[#6]1:&@[#7]:&@[#6]2:&@[#6](:&@[#16,#7,#8]:&@1):&@[#6,#7]:&@[#6,#7]:&@[#6]:&@[#6,#7]:&@2\n", "(621603, 'CHEMBL1113035', 58, 'Displacement of SST14 from human recombinant SST2 receptor')\n", " * postgresql://localhost/chembl_26\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "RDKit ERROR: [08:05:10] Aromatic bonds on non aromatic atom 8\n", "RDKit INFO: [08:05:10] Aromatic bonds on non aromatic atom 8\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Mean nAts 30.7, mcs nAts: 17\n", "[#6,#7]-&!@[#7,#6]1-&@[#6]-&@[#6]-&@[#6,#7](-&@[#6]-&@[#6]-&@1)-&!@[#7,#6]-&!@[#6]1:&@[#7]:&@[#6]2:&@[#6](:&@[#16,#7,#8]:&@1):&@[#6,#7]:&@[#6,#7]:&@[#6]:&@[#6,#7]:&@2\n", "(1280134, 'CHEMBL3097705', 58, 'Displacement of [3H]methyllycaconitine from alpha7 nAChR in Sprague-Dawley rat forebrain P2 fraction after 90 mins by liquid scintillation counting analysis')\n", " * postgresql://localhost/chembl_26\n", "Mean nAts 23.6, mcs nAts: 12\n", "[#6,#7,#8]-,=;!@[#6,#16](=,-;!@[#8,#6,#7])-&!@[#7]1-&@[#6]-&@[#6]2-&@[#6]-&@[#6](-&@[#6]-&@1)-&@[#6]-&@[#7]-&@[#6]-&@2\n", "(1527788, 'CHEMBL3705322', 58, 'Biological Assay: Biological assay using monoamine oxidase or LSD1.')\n", " * postgresql://localhost/chembl_26\n", "Mean nAts 24.5, mcs nAts: 14\n", "[#7,#8]-,=;!@[#6](=,-;!@[#8,#7])-&!@[#6]-&!@[#7]-&!@[#6]1-&@[#6]-&@[#6]-&@1-&!@[#6]1:&@[#6]:&@[#6]:&@[#6]:&@[#6]:&@[#6]:&@1\n", "(446257, 'CHEMBL895361', 58, 'Displacement of [125I]neurokinin A from human recombinant NK2 receptor')\n", " * postgresql://localhost/chembl_26\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "RDKit ERROR: [08:05:11] Aromatic bonds on non aromatic atom 8\n", "RDKit INFO: [08:05:11] Aromatic bonds on non aromatic atom 8\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Mean nAts 42.3, mcs nAts: 24\n", "[#8,#6,#7,#16]=,-;!@[#6](-&!@[#7]-&!@[#6]1(-&!@[#6](=&!@[#8])-&!@[#7]-&!@[#6](-&!@[#6]-&!@[#6]2:&@[#6]:&@[#6]:&@[#6]:&@[#6]:&@[#6]:&@2)-&!@[#6](=&!@[#8])-&!@[#7]-&!@[#6])-&@[#6]-&@[#6]-,=;@[#6]-&@[#6]-&@1)-,=;!@[#6,#7,#8]\n", "(621599, 'CHEMBL1113031', 58, 'Displacement of SST14 from human recombinant SST5 receptor expressed in CHO cells by radioligand binding assay')\n", " * postgresql://localhost/chembl_26\n", "Mean nAts 30.7, mcs nAts: 17\n", "[#6,#7]-&!@[#7,#6]1-&@[#6]-&@[#6]-&@[#6,#7](-&@[#6]-&@[#6]-&@1)-&!@[#7,#6]-&!@[#6]1:&@[#7]:&@[#6]2:&@[#6](:&@[#16,#7,#8]:&@1):&@[#6,#7]:&@[#6,#7]:&@[#6]:&@[#6,#7]:&@2\n", "(1785273, 'CHEMBL4256790', 58, 'Binding affinity to N-terminal 6x-His-SUMO tagged WDR5 delta23 deletion mutant (24 to 334 residues) (unknown origin) expressed in Escherichia coli BL21 (DE3) in presence of FITC-MLL peptide by FPA assay')\n", " * postgresql://localhost/chembl_26\n", "Mean nAts 25.5, mcs nAts: 14\n", "[#6]1:&@[#6]:&@[#6]:&@[#6](:&@[#6]:&@[#6]:&@1)-&!@[#6]1:&@[#6]:&@[#7]2:&@[#6](:&@[#7]:&@1)-&@[#6,#16]-&@[#6]-&@[#6]-&@2\n", "(560532, 'CHEMBL1021382', 58, 'Displacement of radioligand from human recombinant adenosine A2A receptor at 21 degC after 90 mins by cell-based microplate scintillation counting')\n", " * postgresql://localhost/chembl_26\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "RDKit ERROR: [08:05:17] Aromatic bonds on non aromatic atom 8\n", "RDKit INFO: [08:05:17] Aromatic bonds on non aromatic atom 8\n", "RDKit ERROR: [08:05:17] Aromatic bonds on non aromatic atom 6\n", "RDKit INFO: [08:05:17] Aromatic bonds on non aromatic atom 6\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Mean nAts 23.3, mcs nAts: 17\n", "[#7]-&!@[#6]1:&@[#7]:&@[#6](-&!@[#6]2:&@[#6,#7,#16]:&@[#6,#7]:&@[#6,#7]:&@[#8,#7,#16]:&@2):&@[#6]2:&@[#6](:&@[#7]:&@1):&@[#7](:&@[#7]:&@[#7]:&@2)-&!@[#6]-&!@[#6]\n", "(931327, 'CHEMBL3069984', 58, 'Binding affinity to acetylcholinesterase (unknown origin)')\n", " * postgresql://localhost/chembl_26\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "RDKit ERROR: [08:05:22] Aromatic bonds on non aromatic atom 4\n", "RDKit INFO: [08:05:22] Aromatic bonds on non aromatic atom 4\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Mean nAts 28.2, mcs nAts: 8\n", "[#6,#7,#8,#9]-,=;!@[#8,#6,#7,#16]-&!@[#6,#7]1:,-;@[#6]:,-;@[#6]:,-;@[#6,#7]:,-;@[#6,#7]:,-;@[#6]:,-;@1\n", "(560533, 'CHEMBL1021383', 58, 'Displacement of radioligand from human recombinant adenosine A1 receptor at 21 degC after 90 mins by cell-based microplate scintillation counting')\n", " * postgresql://localhost/chembl_26\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "RDKit ERROR: [08:05:22] Aromatic bonds on non aromatic atom 7\n", "RDKit INFO: [08:05:22] Aromatic bonds on non aromatic atom 7\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Mean nAts 23.3, mcs nAts: 17\n", "[#7]-&!@[#6]1:&@[#7]:&@[#6](-&!@[#6]2:&@[#6,#7,#16]:&@[#6,#7]:&@[#6,#7]:&@[#8,#7,#16]:&@2):&@[#6]2:&@[#6](:&@[#7]:&@1):&@[#7](:&@[#7]:&@[#7]:&@2)-&!@[#6]-&!@[#6]\n", "(355136, 'CHEMBL853189', 58, 'Displacement of [3H]nisoxetine from NET')\n", " * postgresql://localhost/chembl_26\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "RDKit ERROR: [08:05:27] Aromatic bonds on non aromatic atom 4\n", "RDKit INFO: [08:05:27] Aromatic bonds on non aromatic atom 4\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Mean nAts 30.1, mcs nAts: 16\n", "[#6]-&!@[#6]-&!@[#7](-&!@[#6]-&!@[#6]1:&@[#6]:&@[#6]:&@[#6]:&@[#6]:&@[#6]:&@1)-&!@[#6]1-&@[#6]-&@[#6]-&@[#7]-&@[#6]-&@[#6]-&@1\n", "(621605, 'CHEMBL1113037', 58, 'Displacement of SST14 from human recombinant SST4 receptor')\n", " * postgresql://localhost/chembl_26\n", "Mean nAts 30.7, mcs nAts: 17\n", "[#6,#7]-&!@[#7,#6]1-&@[#6]-&@[#6]-&@[#6,#7](-&@[#6]-&@[#6]-&@1)-&!@[#7,#6]-&!@[#6]1:&@[#7]:&@[#6]2:&@[#6](:&@[#16,#7,#8]:&@1):&@[#6,#7]:&@[#6,#7]:&@[#6]:&@[#6,#7]:&@2\n", "(443964, 'CHEMBL892111', 57, 'Displacement of [125I][Tyr14]nociceptin FQ from human NOP receptor expressed in CHO cell membrane')\n", " * postgresql://localhost/chembl_26\n", "Mean nAts 28.7, mcs nAts: 21\n", "[#6,#8]-&!@[#6]1(-&!@[#8,#6])-&@[#6]-&@[#6]-&@[#7](-&@[#6]-&@[#6]-&@1)-&!@[#6](-&!@[#6]1:&@[#6]:&@[#6]:&@[#6]:&@[#6]:&@[#6]:&@1)-&!@[#6]1:&@[#6]:&@[#6]:&@[#6]:&@[#6]:&@[#6]:&@1\n", "(1278712, 'CHEMBL3096086', 57, 'Displacement of [3H]MSX-2 from human adenosine A2A receptor expressed in CHO cells')\n", " * postgresql://localhost/chembl_26\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "RDKit ERROR: [08:05:29] Aromatic bonds on non aromatic atom 8\n", "RDKit INFO: [08:05:29] Aromatic bonds on non aromatic atom 8\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Mean nAts 28.7, mcs nAts: 18\n", "[#6]-&!@[#7]1:&@[#6](=&!@[#8]):&@[#6]2:&@[#6](:&@[#7](:&@[#6]:&@1=&!@[#8])-&!@[#6]):&@[#7]:&@[#6]1:&@[#7]:&@2-&@[#6]-&@[#6]-&@[#6]-&@[#7]-&@1-&!@[#6]\n", "(860488, 'CHEMBL2166657', 57, 'Inhibition of human N-terminal poly-His tagged-PI3Kalpha expressed in Sf9 baculovirus system co-expressing p85alpha after 20 mins by AlphaScreen assay')\n", " * postgresql://localhost/chembl_26\n", "Mean nAts 27.5, mcs nAts: 20\n", "[#6,#7]-&!@[#6]1:&@[#6,#7]:&@[#6](-&!@[#6]2:&@[#6,#7]:&@[#6,#7]:&@[#6,#7]:&@[#7,#6]:&@[#6]:&@2-&!@[#7,#8]-&!@[#6]2:&@[#6]:&@[#6]:&@[#6]:&@[#6,#7]:&@[#6]:&@2):&@[#7,#6]:&@[#6]:&@[#7]:&@1\n", "(443967, 'CHEMBL892114', 57, 'Displacement of [3H]diprenorphine from human MOP receptor expressed in CHO cell membrane')\n", " * postgresql://localhost/chembl_26\n", "Mean nAts 28.7, mcs nAts: 21\n", "[#6,#8]-&!@[#6]1(-&!@[#8,#6])-&@[#6]-&@[#6]-&@[#7](-&@[#6]-&@[#6]-&@1)-&!@[#6](-&!@[#6]1:&@[#6]:&@[#6]:&@[#6]:&@[#6]:&@[#6]:&@1)-&!@[#6]1:&@[#6]:&@[#6]:&@[#6]:&@[#6]:&@[#6]:&@1\n", "(860487, 'CHEMBL2166656', 57, 'Inhibition of human N-terminal poly-His tagged-PI3Kbeta expressed in Sf9 baculovirus system co-expressing p85alpha after 20 mins by AlphaScreen assay')\n", " * postgresql://localhost/chembl_26\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "RDKit ERROR: [08:05:39] Aromatic bonds on non aromatic atom 1\n", "RDKit INFO: [08:05:39] Aromatic bonds on non aromatic atom 1\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Mean nAts 27.5, mcs nAts: 20\n", "[#6,#7]-&!@[#6]1:&@[#6,#7]:&@[#6](-&!@[#6]2:&@[#6,#7]:&@[#6,#7]:&@[#6,#7]:&@[#7,#6]:&@[#6]:&@2-&!@[#7,#8]-&!@[#6]2:&@[#6]:&@[#6]:&@[#6]:&@[#6,#7]:&@[#6]:&@2):&@[#7,#6]:&@[#6]:&@[#7]:&@1\n", "(355134, 'CHEMBL853187', 57, 'Displacement of [3H]citalopram from SERT')\n", " * postgresql://localhost/chembl_26\n", "Mean nAts 30.3, mcs nAts: 16\n", "[#6]-&!@[#6]-&!@[#7](-&!@[#6]-&!@[#6]1:&@[#6]:&@[#6]:&@[#6]:&@[#6]:&@[#6]:&@1)-&!@[#6]1-&@[#6]-&@[#6]-&@[#7]-&@[#6]-&@[#6]-&@1\n", "(634857, 'CHEMBL1120489', 57, 'Displacement [3H]Arg human recombinant Vasopressin V2 receptor')\n", " * postgresql://localhost/chembl_26\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "RDKit ERROR: [08:05:40] Aromatic bonds on non aromatic atom 1\n", "RDKit INFO: [08:05:40] Aromatic bonds on non aromatic atom 1\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Mean nAts 31.3, mcs nAts: 8\n", "[#6,#8]-&!@[#6]1:&@[#6]:&@[#6]:&@[#6]:&@[#6]:&@[#6]:&@1-&!@[#6,#8,#17]\n", "(634856, 'CHEMBL1120488', 57, 'Displacement [3H]Arg human recombinant Vasopressin V1a receptor')\n", " * postgresql://localhost/chembl_26\n", "Mean nAts 31.3, mcs nAts: 8\n", "[#6,#8]-&!@[#6]1:&@[#6]:&@[#6]:&@[#6]:&@[#6]:&@[#6]:&@1-&!@[#6,#8,#17]\n", "(520160, 'CHEMBL947848', 57, 'Inhibition of human liver CE1-mediated O-nitrophenyl acetate hydrolysis by spectrophotometry')\n", " * postgresql://localhost/chembl_26\n", "Mean nAts 29.9, mcs nAts: 16\n", "[#6]1:&@[#6]:&@[#6]:&@[#6](:&@[#6]:&@[#6]:&@1)-&!@[#7]-&!@[#16](=&!@[#8])(=&!@[#8])-&!@[#6]1:&@[#6]:&@[#6]:&@[#6]:&@[#6]:&@[#6]:&@1\n", "(404874, 'CHEMBL869276', 57, 'Displacement of [125I]NDP-MSH from human MC4R expressed in HEK293 cells')\n", " * postgresql://localhost/chembl_26\n", "Mean nAts 36.0, mcs nAts: 25\n", "[#6,#7]-&!@[#6](-&!@[#7,#6])-&!@[#6]1:&@[#6]:&@[#6]:&@[#6]:&@[#6]:&@[#6]:&@1-&!@[#7]1-&@[#6]-&@[#6]-&@[#7](-&@[#6]-&@[#6]-&@1)-&!@[#6](=&!@[#8])-&!@[#6]-&!@[#6]-&!@[#6]1:&@[#6]:&@[#6]:&@[#6]:&@[#6]:&@[#6]:&@1\n", "(821892, 'CHEMBL2039538', 57, 'Displacement of [3HPGD2 from human CRTH2 receptor expressed in CHO cell membrane after 90 mins by scintillation proximity assay')\n", " * postgresql://localhost/chembl_26\n", "Mean nAts 28.2, mcs nAts: 22\n", "[#6,#8]-,=;!@[#6](=,-;!@[#8,#6])-&!@[#7](-&!@[#6]-&!@[#6]1:&@[#6]:&@[#6]:&@[#6]:&@[#6]:&@[#6,#7]:&@1)-&!@[#6]1:&@[#6]:&@[#6]:&@[#6]:&@[#6](:&@[#6]:&@1)-&!@[#6]1:&@[#7]:&@[#7]:&@[#7]:&@[#7]:&@1\n", "(450409, 'CHEMBL900693', 57, 'Inhibition of human CB2 receptor expressed in CHO cells')\n", " * postgresql://localhost/chembl_26\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "RDKit ERROR: [08:07:12] Aromatic bonds on non aromatic atom 5\n", "RDKit INFO: [08:07:12] Aromatic bonds on non aromatic atom 5\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Mean nAts 30.5, mcs nAts: 15\n", "[#6]-&!@[#6]-&!@[#7]1:&@[#6,#7]:&@[#6](-&!@[#6,#7]-,=;!@[#6,#7,#8]):&@[#6](:&@[#6]2:&@[#6]:&@1:&@[#6,#7]:&@[#6]:&@[#6,#7]:&@[#6,#7]:&@2)=&!@[#8,#16]\n", "(860486, 'CHEMBL2166655', 57, 'Inhibition of human N-terminal poly-His tagged-PI3Kgamma expressed in Sf9 baculovirus system co-expressing p85alpha after 20 mins by AlphaScreen assay')\n", " * postgresql://localhost/chembl_26\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "RDKit ERROR: [08:07:13] Aromatic bonds on non aromatic atom 2\n", "RDKit INFO: [08:07:13] Aromatic bonds on non aromatic atom 2\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Mean nAts 27.5, mcs nAts: 20\n", "[#6,#7]-&!@[#6]1:&@[#6,#7]:&@[#6](-&!@[#6]2:&@[#6,#7]:&@[#6,#7]:&@[#6,#7]:&@[#7,#6]:&@[#6]:&@2-&!@[#7,#8]-&!@[#6]2:&@[#6]:&@[#6]:&@[#6]:&@[#6,#7]:&@[#6]:&@2):&@[#7,#6]:&@[#6]:&@[#7]:&@1\n", "(443966, 'CHEMBL892113', 57, 'Displacement of [3H]diprenorphine from human KOP receptor expressed in CHO cell membrane')\n", " * postgresql://localhost/chembl_26\n", "Mean nAts 28.7, mcs nAts: 21\n", "[#6,#8]-&!@[#6]1(-&!@[#8,#6])-&@[#6]-&@[#6]-&@[#7](-&@[#6]-&@[#6]-&@1)-&!@[#6](-&!@[#6]1:&@[#6]:&@[#6]:&@[#6]:&@[#6]:&@[#6]:&@1)-&!@[#6]1:&@[#6]:&@[#6]:&@[#6]:&@[#6]:&@[#6]:&@1\n", "(685646, 'CHEMBL1285548', 57, 'Inhibition of wild type HIV1 protease by FRET')\n", " * postgresql://localhost/chembl_26\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "RDKit ERROR: [08:07:14] Aromatic bonds on non aromatic atom 1\n", "RDKit INFO: [08:07:14] Aromatic bonds on non aromatic atom 1\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Mean nAts 44.9, mcs nAts: 40\n", "[#6]-&!@[#6](-&!@[#6])-&!@[#6]-&!@[#7](-&!@[#6]-&!@[#6](-&!@[#8])-&!@[#6](-&!@[#6]-&!@[#6]1:&@[#6]:&@[#6]:&@[#6]:&@[#6]:&@[#6]:&@1)-&!@[#7]-&!@[#6](=&!@[#8])-&!@[#6]1-&@[#6]-&@[#7](-&@[#6](-&@[#8]-&@1)=&!@[#8])-&!@[#6]1:&@[#6]:&@[#6]:&@[#6]:&@[#6]:&@[#6]:&@1)-&!@[#16](=&!@[#8])(=&!@[#8])-&!@[#6]1:&@[#6]:&@[#6]:&@[#6]:&@[#6]:&@[#6]:&@1\n", "(860485, 'CHEMBL2166654', 57, 'Inhibition of human N-terminal poly-His tagged-PI3Kdelta expressed in Sf9 baculovirus system co-expressing p85alpha after 20 mins by AlphaScreen assay')\n", " * postgresql://localhost/chembl_26\n", "Mean nAts 27.5, mcs nAts: 20\n", "[#6,#7]-&!@[#6]1:&@[#6,#7]:&@[#6](-&!@[#6]2:&@[#6,#7]:&@[#6,#7]:&@[#6,#7]:&@[#7,#6]:&@[#6]:&@2-&!@[#7,#8]-&!@[#6]2:&@[#6]:&@[#6]:&@[#6]:&@[#6,#7]:&@[#6]:&@2):&@[#7,#6]:&@[#6]:&@[#7]:&@1\n", "(443965, 'CHEMBL892112', 57, 'Displacement of [3H]diprenorphine from human DOP receptor expressed in CHO cell membrane')\n", " * postgresql://localhost/chembl_26\n", "Mean nAts 28.7, mcs nAts: 21\n", "[#6,#8]-&!@[#6]1(-&!@[#8,#6])-&@[#6]-&@[#6]-&@[#7](-&@[#6]-&@[#6]-&@1)-&!@[#6](-&!@[#6]1:&@[#6]:&@[#6]:&@[#6]:&@[#6]:&@[#6]:&@1)-&!@[#6]1:&@[#6]:&@[#6]:&@[#6]:&@[#6]:&@[#6]:&@1\n", "(588142, 'CHEMBL1049259', 57, 'Displacement of [3H]CP-55940 from human recombinant CB2 receptor expressed in HEK cells')\n", " * postgresql://localhost/chembl_26\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "RDKit ERROR: [08:07:19] Aromatic bonds on non aromatic atom 1\n", "RDKit INFO: [08:07:19] Aromatic bonds on non aromatic atom 1\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Mean nAts 31.7, mcs nAts: 22\n", "[#6]-&!@[#6]1:&@[#6](-&!@[#6](=&!@[#8])-&!@[#7]-&!@[#6]):&@[#7]:&@[#7](:&@[#6]:&@1-&!@[#7]1:&@[#6]:&@[#6]:&@[#6]:&@[#6]:&@1)-&!@[#6]1:&@[#6]:&@[#6]:&@[#6](:&@[#6]:&@[#6]:&@1)-&!@[#9,#17]\n", "(588141, 'CHEMBL1049258', 57, 'Displacement of [3H]CP-55940 from human recombinant CB1 receptor expressed in HEK cells')\n", " * postgresql://localhost/chembl_26\n", "Mean nAts 31.7, mcs nAts: 22\n", "[#6]-&!@[#6]1:&@[#6](-&!@[#6](=&!@[#8])-&!@[#7]-&!@[#6]):&@[#7]:&@[#7](:&@[#6]:&@1-&!@[#7]1:&@[#6]:&@[#6]:&@[#6]:&@[#6]:&@1)-&!@[#6]1:&@[#6]:&@[#6]:&@[#6](:&@[#6]:&@[#6]:&@1)-&!@[#9,#17]\n", "(1534939, 'CHEMBL3707803', 56, 'Biological Assay: Biological assay using monoamine oxidase or LSD1.')\n", " * postgresql://localhost/chembl_26\n", "Mean nAts 24.9, mcs nAts: 14\n", "[#7,#8]-,=;!@[#6](=,-;!@[#8,#7])-&!@[#6]-&!@[#7]-&!@[#6]1-&@[#6]-&@[#6]-&@1-&!@[#6]1:&@[#6]:&@[#6]:&@[#6]:&@[#6]:&@[#6]:&@1\n", "(363667, 'CHEMBL853234', 56, 'Displacement of [3H]BK from human B2 receptor transfected in CHO cells')\n", " * postgresql://localhost/chembl_26\n", "Mean nAts 41.8, mcs nAts: 31\n", "[#6]-&!@[#6]1:&@[#6]:&@[#6]:&@[#6]2:&@[#6](:&@[#7]:&@1):&@[#6](:&@[#6]:&@[#6]:&@[#6]:&@2)-&!@[#8]-&!@[#6]-&!@[#6]1:&@[#6](-&!@[#17]):&@[#6]:&@[#6]:&@[#6](:&@[#6]:&@1-&!@[#17])-&!@[#16](=&!@[#8])(=&!@[#8])-&!@[#7]-&!@[#6](-&!@[#6])(-&!@[#6])-&!@[#6](=,-;!@[#8,#7])-,=;!@[#7,#8]\n", "(863118, 'CHEMBL2175616', 56, 'Inhibition of human recombinant DOT1L catalytic domain amino acid (1 to 472) using [3H]-SAM after 30 mins by scintillation counter')\n", " * postgresql://localhost/chembl_26\n", "Mean nAts 31.2, mcs nAts: 21\n", "[#6]-&!@[#6]-&!@[#7,#16]-&!@[#6]-&!@[#6]1-&@[#8]-&@[#6](-&@[#6](-&@[#6]-&@1-&!@[#8])-&!@[#8])-&!@[#7]1:&@[#6]:&@[#7]:&@[#6]2:&@[#6]:&@1:&@[#7]:&@[#6]:&@[#7]:&@[#6]:&@2-&!@[#7]\n", "(363669, 'CHEMBL853236', 56, 'Binding affinity to human B1 receptor')\n", " * postgresql://localhost/chembl_26\n", "Mean nAts 41.8, mcs nAts: 31\n", "[#6]-&!@[#6]1:&@[#6]:&@[#6]:&@[#6]2:&@[#6](:&@[#7]:&@1):&@[#6](:&@[#6]:&@[#6]:&@[#6]:&@2)-&!@[#8]-&!@[#6]-&!@[#6]1:&@[#6](-&!@[#17]):&@[#6]:&@[#6]:&@[#6](:&@[#6]:&@1-&!@[#17])-&!@[#16](=&!@[#8])(=&!@[#8])-&!@[#7]-&!@[#6](-&!@[#6])(-&!@[#6])-&!@[#6](=,-;!@[#8,#7])-,=;!@[#7,#8]\n", "(391331, 'CHEMBL870467', 56, 'Displacement of [3H]SCH 23390 from human dopamine D1 receptor expressed in CHO cells')\n", " * postgresql://localhost/chembl_26\n", "Mean nAts 33.9, mcs nAts: 27\n", "[#6,#8]-,=;!@[#6](=,-;!@[#8,#6])-&!@[#7]-&!@[#7]1-&@[#6]2:&@[#6]:&@[#6]:&@[#6](:&@[#6]:&@[#6]:&@2-&@[#7]=&@[#6](-&@[#6]2:&@[#6]-&@1:&@[#6]:&@[#6]:&@[#6]:&@[#6]:&@2)-&!@[#7]1-&@[#6]-&@[#6]-&@[#7](-&@[#6]-&@[#6]-&@1)-&!@[#6])-&!@[#17]\n", "(1351394, 'CHEMBL3266970', 56, 'Displacement of [3H]PGE2 from human prostanoid EP4 receptor expressed in cell membranes by scintillation counting')\n", " * postgresql://localhost/chembl_26\n", "Mean nAts 28.7, mcs nAts: 10\n", "[#8,#6,#7]=,-;!@[#6]-&!@[#6]1:&@[#6]:&@[#6](:&@[#6,#8]:&@[#8,#6]:&@1)-&!@[#6,#7]-&!@[#8,#6,#7]-,=;!@[#6,#8,#16]\n", "(1528180, 'CHEMBL3705650', 56, 'Enzyme Assay: All compound solutions are made to a concentration of 10 mM in DMSO. To test the stability of the compounds in enzyme assay conditions, ... (615 characters truncated) ... th 75 ug enzyme preparation in TME buffer with 0.1% BSA (final volume 250 uL). The reaction mixture is treated in the same manner as described above.')\n", " * postgresql://localhost/chembl_26\n", "Mean nAts 21.4, mcs nAts: 11\n", "[#6,#8]-,=;!@[#6]-&!@[#8,#6]-&!@[#6]-&!@[#7,#6,#8]-&!@[#6]1:&@[#6]:&@[#6]:&@[#6]:&@[#6]:&@[#6]:&@1\n", "(441650, 'CHEMBL891881', 56, 'Binding affinity for human cloned vasopressin V1a receptor expressed in CHO cells')\n", " * postgresql://localhost/chembl_26\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "RDKit ERROR: [08:08:50] Aromatic bonds on non aromatic atom 2\n", "RDKit INFO: [08:08:50] Aromatic bonds on non aromatic atom 2\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Mean nAts 50.6, mcs nAts: 31\n", "[#6,#7,#8]-,=;!@[#6]-&!@[#6](-&!@[#6](=,-;!@[#8,#7])-,=;!@[#8,#6,#7])-&!@[#7]1-&@[#6](=&!@[#8])-&@[#6](-&@[#6]-&@1-&!@[#6]=,-;!@[#6]-&!@[#6]1:&@[#6]:&@[#6]:&@[#6]:&@[#6]:&@[#6]:&@1)-&!@[#7]1-&@[#6](=&!@[#8])-&@[#8]-&@[#6]-&@[#6]-&@1-&!@[#6]1:&@[#6]:&@[#6]:&@[#6]:&@[#6]:&@[#6]:&@1\n", "(611932, 'CHEMBL1071493', 56, 'Inhibition of human adenosine 2A receptor')\n", " * postgresql://localhost/chembl_26\n", "Mean nAts 23.1, mcs nAts: 7\n", "[#6,#7,#8,#16]-,=;!@[#6,#7]1:,-,=;@[#6,#7]:,-;@[#7,#6]:,-;@[#6,#7]:,-;@[#7,#6,#8]:,-;@[#6,#7]:,-;@1\n", "(336777, 'CHEMBL864338', 56, 'Inhibitory activity against Src in cell free assay')\n", " * postgresql://localhost/chembl_26\n", "Mean nAts 25.0, mcs nAts: 18\n", "[#7]-&!@[#6]1:&@[#7]:&@[#6]:&@[#7]:&@[#6]2:&@[#6]:&@1:&@[#6]:&@[#7]:&@[#7]:&@2-&!@[#6]=,-;!@[#6]-&!@[#6]1:&@[#6]:&@[#6]:&@[#6]:&@[#6]:&@[#6]:&@1\n", "(303283, 'CHEMBL828276', 56, 'Inhibition of [3H]ZM-241385 binding to adenosine A2a receptor of rat brain tissue')\n", " * postgresql://localhost/chembl_26\n", "Mean nAts 30.0, mcs nAts: 16\n", "[#7]-&!@[#6]1:&@[#7]:&@[#6](-&!@[#7]):&@[#7]:&@[#6]2:&@[#7]:&@1:&@[#7]:&@[#6](:&@[#7]:&@2)-&!@[#6]1:&@[#6]:&@[#6]:&@[#6]:&@[#8]:&@1\n", "(816345, 'CHEMBL2024743', 56, 'Inhibition of N-terminal hexa-histidine tagged human cloned Eg5 (1 to 368 amino acids) expressed in Escherichia coli BL21 (DE3) assessed as reduction in basal ATPase activity by pyruvate kinase/lactate dehydrogenase-linked assay')\n", " * postgresql://localhost/chembl_26\n", "Mean nAts 26.0, mcs nAts: 23\n", "[#7]-&!@[#6]-&!@[#6]-&!@[#16,#6,#7,#8]-&!@[#6](-&!@[#6]1:&@[#6]:&@[#6]:&@[#6]:&@[#6]:&@[#6]:&@1)(-&!@[#6]1:&@[#6]:&@[#6]:&@[#6]:&@[#6]:&@[#6]:&@1)-&!@[#6]1:&@[#6]:&@[#6]:&@[#6]:&@[#6]:&@[#6]:&@1\n", "(373919, 'CHEMBL868541', 56, 'Inhibition of matriptase')\n", " * postgresql://localhost/chembl_26\n", "Mean nAts 42.3, mcs nAts: 24\n", "[#6]1:&@[#6]:&@[#6]:&@[#6](:&@[#6]:&@[#6,#7]:&@1)-&!@[#16](=&!@[#8])(=&!@[#8])-&!@[#7]-&!@[#6](-&!@[#6]-&!@[#6]1:&@[#6]:&@[#6]:&@[#6]:&@[#6](:&@[#6]:&@1)-&!@[#6](=&!@[#7])-&!@[#7])-&!@[#6](=,-;!@[#8,#7])-,=;!@[#7,#8]\n", "(513861, 'CHEMBL970755', 56, 'Inhibition of rat FAAH expressed in Escherichia coli at pH 9.0')\n", " * postgresql://localhost/chembl_26\n", "Mean nAts 24.7, mcs nAts: 15\n", "[#8,#6]=,-;!@[#6](-&!@[#6]-&!@[#6]-&!@[#6]-&!@[#6]-&!@[#6]-&!@[#6]-&!@[#6]1:&@[#6]:&@[#6]:&@[#6]:&@[#6]:&@[#6]:&@1)-,=;!@[#6,#8]\n", "(737263, 'CHEMBL1613909', 56, 'PUBCHEM_BIOASSAY: SAR Colorimetric assay for the identification of compounds that inhibit VHR1. (Class of assay: confirmatory) [Related pubchem assays (depositor defined):AID1654, AID1661, AID1878, AID1957, AID1958, AID1992, AID2074, AID2082, AID2083]')\n", " * postgresql://localhost/chembl_26\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "RDKit ERROR: [08:09:23] Aromatic bonds on non aromatic atom 0\n", "RDKit INFO: [08:09:23] Aromatic bonds on non aromatic atom 0\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Mean nAts 23.4, mcs nAts: 7\n", "[#7,#6,#8,#9]-,=;!@[#6,#7]1:,-;@[#6,#7]:,-,=;@[#6]:,-;@[#6,#7,#8]:,-;@[#6,#7]:,-,=;@[#6,#7]:,-;@1\n", "(391332, 'CHEMBL870468', 56, 'Displacement of [3H]methylspiperone from human dopamine D2 receptor expressed in CHO cells')\n", " * postgresql://localhost/chembl_26\n", "Mean nAts 33.9, mcs nAts: 27\n", "[#6,#8]-,=;!@[#6](=,-;!@[#8,#6])-&!@[#7]-&!@[#7]1-&@[#6]2:&@[#6]:&@[#6]:&@[#6](:&@[#6]:&@[#6]:&@2-&@[#7]=&@[#6](-&@[#6]2:&@[#6]-&@1:&@[#6]:&@[#6]:&@[#6]:&@[#6]:&@2)-&!@[#7]1-&@[#6]-&@[#6]-&@[#7](-&@[#6]-&@[#6]-&@1)-&!@[#6])-&!@[#17]\n", "(1522895, 'CHEMBL3630768', 56, 'Inhibition of recombinant HIV-1 protease expressed in Escherichia coli using Arg-Glu (EDANS)-Ser-Gln-Asn-Tyr-Pro-Ile-Val-Gln Lys(DABCYL)-Arg as substrate by spectrofluorometric analysis')\n", " * postgresql://localhost/chembl_26\n", "Mean nAts 31.6, mcs nAts: 17\n", "[#6]-&!@[#6]1=&@[#7]-&@[#6](-&!@[#6])-&@[#6](-&@[#7]-&@[#6]2:&@[#6]-&@1:&@[#6]:&@[#6]:&@[#6](:&@[#6]:&@2)-&!@[#6](=&!@[#8])-&!@[#8])=&!@[#8]\n", "(1690030, 'CHEMBL4040600', 56, 'Inhibition of recombinant human N-terminal GST-tagged IKKalpha (1 to 745 residues) expressed in baculovirus expression system using biotinylated IkBalpha as substrate after 60 mins by DELFIA')\n", " * postgresql://localhost/chembl_26\n", "Mean nAts 19.6, mcs nAts: 12\n", "[#7,#6]#,-;!@[#6,#7]-&!@[#6]1:&@[#6,#7]:&@[#7,#6]:&@[#6,#7]:&@[#7,#6]:&@[#6,#7]:&@[#7,#6]:&@[#6](:&@[#6,#7]:&@1)-&!@[#17,#6,#7]\n", "(444276, 'CHEMBL894516', 55, 'Binding affinity to human cloned adrenergic alpha-1A receptor')\n", " * postgresql://localhost/chembl_26\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "RDKit ERROR: [08:09:45] Aromatic bonds on non aromatic atom 2\n", "RDKit INFO: [08:09:45] Aromatic bonds on non aromatic atom 2\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Mean nAts 34.6, mcs nAts: 31\n", "[#6]-&!@[#6]-&!@[#8]-&!@[#6]1:&@[#6]:&@[#6]:&@[#6]:&@[#6]:&@[#6]:&@1-&!@[#7]1-&@[#6]-&@[#6]-&@[#7](-&@[#6]-&@[#6]-&@1)-&!@[#6]1-&@[#6]-&@[#6]-&@[#6](-&@[#6]-&@[#6]-&@1)-&!@[#7]-&!@[#16](=&!@[#8])(=&!@[#8])-&!@[#6]1:&@[#6]:&@[#6,#7]:&@[#6]:&@[#7,#6]:&@[#6]:&@1\n", "(444277, 'CHEMBL894517', 55, 'Binding affinity to human cloned adrenergic alpha-1B receptor')\n", " * postgresql://localhost/chembl_26\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "RDKit ERROR: [08:09:53] Aromatic bonds on non aromatic atom 30\n", "RDKit INFO: [08:09:53] Aromatic bonds on non aromatic atom 30\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Mean nAts 34.6, mcs nAts: 31\n", "[#6]-&!@[#6]-&!@[#8]-&!@[#6]1:&@[#6]:&@[#6]:&@[#6]:&@[#6]:&@[#6]:&@1-&!@[#7]1-&@[#6]-&@[#6]-&@[#7](-&@[#6]-&@[#6]-&@1)-&!@[#6]1-&@[#6]-&@[#6]-&@[#6](-&@[#6]-&@[#6]-&@1)-&!@[#7]-&!@[#16](=&!@[#8])(=&!@[#8])-&!@[#6]1:&@[#6]:&@[#6,#7]:&@[#6]:&@[#7,#6]:&@[#6]:&@1\n", "(444278, 'CHEMBL894518', 55, 'Binding affinity to human cloned adrenergic Alpha-1D receptor')\n", " * postgresql://localhost/chembl_26\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "RDKit ERROR: [08:10:03] Aromatic bonds on non aromatic atom 30\n", "RDKit INFO: [08:10:03] Aromatic bonds on non aromatic atom 30\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Mean nAts 34.6, mcs nAts: 31\n", "[#6]-&!@[#6]-&!@[#8]-&!@[#6]1:&@[#6]:&@[#6]:&@[#6]:&@[#6]:&@[#6]:&@1-&!@[#7]1-&@[#6]-&@[#6]-&@[#7](-&@[#6]-&@[#6]-&@1)-&!@[#6]1-&@[#6]-&@[#6]-&@[#6](-&@[#6]-&@[#6]-&@1)-&!@[#7]-&!@[#16](=&!@[#8])(=&!@[#8])-&!@[#6]1:&@[#6]:&@[#6,#7]:&@[#6]:&@[#7,#6]:&@[#6]:&@1\n", "(469216, 'CHEMBL948917', 55, 'Inhibition of human alpha-thrombin')\n", " * postgresql://localhost/chembl_26\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "RDKit ERROR: [08:10:12] Aromatic bonds on non aromatic atom 30\n", "RDKit INFO: [08:10:12] Aromatic bonds on non aromatic atom 30\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Mean nAts 40.5, mcs nAts: 13\n", "[#6,#7]-&!@[#6](-&!@[#7,#6]-&!@[#6,#16](=,-;!@[#8,#6])-,=;!@[#6,#8])-&!@[#6](=&!@[#8])-&!@[#6,#7]1:,-;@[#7,#6,#16]:,-;@[#6,#7]:,-;@[#6,#7]:,-;@[#16,#6,#7,#8]:,-;@1\n", "(1468240, 'CHEMBL3411783', 55, 'Binding affinity to CB2 receptor (unknown origin)')\n", " * postgresql://localhost/chembl_26\n", "Mean nAts 30.2, mcs nAts: 10\n", "[#6,#8]-,=;!@[#6,#7]-&!@[#8,#6,#7,#16]-&!@[#6]1:&@[#6]:&@[#6]:&@[#6]:&@[#6,#7]:&@[#6]:&@1-,=;!@[#8,#7,#16]\n", "(700657, 'CHEMBL1645696', 55, 'Inhibition of human recombinant CA6 by stopped-flow CO2 hydration assay')\n", " * postgresql://localhost/chembl_26\n", "Mean nAts 11.8, mcs nAts: 1\n", "[#9]\n", "(700655, 'CHEMBL1645694', 55, 'Inhibition of human recombinant CA1 by stopped-flow CO2 hydration assay')\n", " * postgresql://localhost/chembl_26\n", "Mean nAts 11.8, mcs nAts: 1\n", "[#9]\n", "(700656, 'CHEMBL1645695', 55, 'Inhibition of human recombinant CA2 by stopped-flow CO2 hydration assay')\n", " * postgresql://localhost/chembl_26\n", "Mean nAts 11.8, mcs nAts: 1\n", "[#9]\n", "(700659, 'CHEMBL1645698', 55, 'Inhibition of Stylophora pistillata carbonic anhydrase 2 by stopped-flow CO2 hydration assay')\n", " * postgresql://localhost/chembl_26\n", "Mean nAts 11.8, mcs nAts: 1\n", "[#9]\n", "(979771, 'CHEMBL2421816', 55, 'Inhibition of TYK2 (unknown origin) using 5-carboxyfluorescein-VALVDGYFRLTT-NH2 as substrate')\n", " * postgresql://localhost/chembl_26\n", "Mean nAts 20.2, mcs nAts: 15\n", "[#8,#6]=,-;!@[#6,#7,#16](-&!@[#7,#6]-&!@[#6]1:&@[#6]:&@[#6]:&@[#7,#6]:&@[#6]:&@[#6,#7]:&@1)-&!@[#6]1:&@[#6]:&@[#6]:&@[#6,#7]:&@[#6]:&@[#6]:&@1\n", "(362986, 'CHEMBL871249', 55, 'Inhibition of human recombinant DPP4')\n", " * postgresql://localhost/chembl_26\n", "Mean nAts 23.9, mcs nAts: 16\n", "[#7]#&!@[#6]-&!@[#6]1-&@[#6]-&@[#6]-&@[#6]-&@[#7]-&@1-&!@[#6](=&!@[#8])-&!@[#6]1-&@[#6]-&@[#6]-&@[#6](-&@[#7]-&@1)-&!@[#6]-,=;!@[#8,#6,#7]\n", "(700658, 'CHEMBL1645697', 55, 'Inhibition of Stylophora pistillata carbonic anhydrase by stopped-flow CO2 hydration assay')\n", " * postgresql://localhost/chembl_26\n", "Mean nAts 11.8, mcs nAts: 1\n", "[#9]\n", "(979759, 'CHEMBL2421804', 55, 'Inhibition of JAK1 (unknown origin)')\n", " * postgresql://localhost/chembl_26\n", "Mean nAts 20.2, mcs nAts: 15\n", "[#8,#6]=,-;!@[#6,#7,#16](-&!@[#7,#6]-&!@[#6]1:&@[#6]:&@[#6]:&@[#7,#6]:&@[#6]:&@[#6,#7]:&@1)-&!@[#6]1:&@[#6]:&@[#6]:&@[#6,#7]:&@[#6]:&@[#6]:&@1\n", "(876706, 'CHEMBL2183177', 54, 'Displacement of [3H]CP55940 from human CB2 receptor expressed in CHO cells incubated for 1 hr')\n", " * postgresql://localhost/chembl_26\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "RDKit ERROR: [08:10:14] Aromatic bonds on non aromatic atom 3\n", "RDKit INFO: [08:10:14] Aromatic bonds on non aromatic atom 3\n", "RDKit ERROR: [08:10:14] Aromatic bonds on non aromatic atom 3\n", "RDKit INFO: [08:10:14] Aromatic bonds on non aromatic atom 3\n", "RDKit ERROR: [08:10:14] Aromatic bonds on non aromatic atom 3\n", "RDKit INFO: [08:10:14] Aromatic bonds on non aromatic atom 3\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Mean nAts 30.7, mcs nAts: 13\n", "[#6,#8]-,=;!@[#6,#7]-&!@[#6,#7]-&!@[#6,#7]-&!@[#7,#6]-&!@[#6,#7]-,=;!@[#6]-&!@[#6]1:&@[#6]:&@[#6]:&@[#6]:&@[#6]:&@[#6]:&@1\n", "(302845, 'CHEMBL827890', 54, 'Binding affinity for Human gonadotropin-releasing hormone receptor')\n", " * postgresql://localhost/chembl_26\n", "Mean nAts 34.5, mcs nAts: 26\n", "[#6]1:&@[#6]:&@[#6]:&@[#6]:&@[#6](:&@[#6]:&@1)-&!@[#6]1:&@[#6](-&!@[#6]):&@[#7](-&!@[#6]-&!@[#6]2:,-;@[#6]:,-;@[#6]:,-;@[#6]:,-;@[#6,#7]:,-;@[#6,#7]:,-;@2):&@[#6](:&@[#7](:&@[#6]:&@1=&!@[#8])-&!@[#6]-&!@[#6](-&!@[#6,#7])-&!@[#7,#6])=&!@[#8]\n", "(373920, 'CHEMBL868542', 54, 'Inhibition of uPA')\n", " * postgresql://localhost/chembl_26\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "RDKit ERROR: [08:10:23] Aromatic bonds on non aromatic atom 11\n", "RDKit INFO: [08:10:23] Aromatic bonds on non aromatic atom 11\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Mean nAts 42.5, mcs nAts: 24\n", "[#7]=&!@[#6](-&!@[#7])-&!@[#6]1:&@[#6]:&@[#6]:&@[#6]:&@[#6](:&@[#6]:&@1)-&!@[#6]-&!@[#6](-&!@[#7]-&!@[#16](=,-;!@[#8,#6])(=&!@[#8])-,=;!@[#6,#8])-&!@[#6](=&!@[#8])-&!@[#7]1-&@[#6]-&@[#6]-&@[#7,#6]-&@[#6]-&@[#6]-&@1\n", "(373921, 'CHEMBL868543', 54, 'Inhibition of plasmin')\n", " * postgresql://localhost/chembl_26\n", "Mean nAts 42.5, mcs nAts: 24\n", "[#7]=&!@[#6](-&!@[#7])-&!@[#6]1:&@[#6]:&@[#6]:&@[#6]:&@[#6](:&@[#6]:&@1)-&!@[#6]-&!@[#6](-&!@[#7]-&!@[#16](=,-;!@[#8,#6])(=&!@[#8])-,=;!@[#6,#8])-&!@[#6](=&!@[#8])-&!@[#7]1-&@[#6]-&@[#6]-&@[#7,#6]-&@[#6]-&@[#6]-&@1\n", "(373922, 'CHEMBL868544', 54, 'Inhibition of thrombin')\n", " * postgresql://localhost/chembl_26\n", "Mean nAts 42.5, mcs nAts: 24\n", "[#7]=&!@[#6](-&!@[#7])-&!@[#6]1:&@[#6]:&@[#6]:&@[#6]:&@[#6](:&@[#6]:&@1)-&!@[#6]-&!@[#6](-&!@[#7]-&!@[#16](=,-;!@[#8,#6])(=&!@[#8])-,=;!@[#6,#8])-&!@[#6](=&!@[#8])-&!@[#7]1-&@[#6]-&@[#6]-&@[#7,#6]-&@[#6]-&@[#6]-&@1\n", "(373923, 'CHEMBL868545', 54, 'Inhibition of f10a')\n", " * postgresql://localhost/chembl_26\n", "Mean nAts 42.5, mcs nAts: 24\n", "[#7]=&!@[#6](-&!@[#7])-&!@[#6]1:&@[#6]:&@[#6]:&@[#6]:&@[#6](:&@[#6]:&@1)-&!@[#6]-&!@[#6](-&!@[#7]-&!@[#16](=,-;!@[#8,#6])(=&!@[#8])-,=;!@[#6,#8])-&!@[#6](=&!@[#8])-&!@[#7]1-&@[#6]-&@[#6]-&@[#7,#6]-&@[#6]-&@[#6]-&@1\n", "(438974, 'CHEMBL889317', 54, 'Inhibition of human F10a')\n", " * postgresql://localhost/chembl_26\n", "Mean nAts 35.6, mcs nAts: 30\n", "[#6]-&!@[#8]-&!@[#6]1:&@[#6]:&@[#6](-&!@[#17]):&@[#6]:&@[#6](:&@[#6]:&@1-&!@[#7]-&!@[#6](=&!@[#8])-&!@[#6]1:&@[#16]:&@[#6]:&@[#6](:&@[#6]:&@1-&!@[#17])-&!@[#6]-&!@[#7])-&!@[#6](=&!@[#8])-&!@[#7]-&!@[#6]1:&@[#6]:&@[#6]:&@[#6](:&@[#6]:&@[#7,#6]:&@1)-&!@[#17]\n", "(438975, 'CHEMBL889318', 54, 'Inhibition of human F2a')\n", " * postgresql://localhost/chembl_26\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "RDKit ERROR: [08:12:34] Aromatic bonds on non aromatic atom 23\n", "RDKit INFO: [08:12:34] Aromatic bonds on non aromatic atom 23\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Mean nAts 35.6, mcs nAts: 30\n", "[#6]-&!@[#8]-&!@[#6]1:&@[#6]:&@[#6](-&!@[#17]):&@[#6]:&@[#6](:&@[#6]:&@1-&!@[#7]-&!@[#6](=&!@[#8])-&!@[#6]1:&@[#16]:&@[#6]:&@[#6](:&@[#6]:&@1-&!@[#17])-&!@[#6]-&!@[#7])-&!@[#6](=&!@[#8])-&!@[#7]-&!@[#6]1:&@[#6]:&@[#6]:&@[#6](:&@[#6]:&@[#7,#6]:&@1)-&!@[#17]\n", "(444279, 'CHEMBL894519', 54, 'Binding affinity to human dopamine D2 receptor')\n", " * postgresql://localhost/chembl_26\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "RDKit ERROR: [08:12:44] Aromatic bonds on non aromatic atom 23\n", "RDKit INFO: [08:12:44] Aromatic bonds on non aromatic atom 23\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Mean nAts 34.7, mcs nAts: 32\n", "[#6]-&!@[#6](-&!@[#6])-&!@[#8]-&!@[#6]1:&@[#6]:&@[#6]:&@[#6]:&@[#6]:&@[#6]:&@1-&!@[#7]1-&@[#6]-&@[#6]-&@[#7](-&@[#6]-&@[#6]-&@1)-&!@[#6]1-&@[#6]-&@[#6]-&@[#6](-&@[#6]-&@[#6]-&@1)-&!@[#7]-&!@[#16](=&!@[#8])(=&!@[#8])-&!@[#6]1:&@[#6]:&@[#6,#7]:&@[#6]:&@[#6,#7]:&@[#6]:&@1\n", "(472994, 'CHEMBL931641', 54, 'Displacement of [3H]CP-55940 from human recombinant CB2 receptor expressed in HEK cells')\n", " * postgresql://localhost/chembl_26\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "RDKit ERROR: [08:12:45] Aromatic bonds on non aromatic atom 31\n", "RDKit INFO: [08:12:45] Aromatic bonds on non aromatic atom 31\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Mean nAts 28.4, mcs nAts: 20\n", "[#6]-&!@[#6]1(-&!@[#6])-&@[#6](-&@[#6]-&@1(-&!@[#6])-&!@[#6])-&!@[#6](=&!@[#8])-&!@[#6]1:&@[#6]:&@[#7](:&@[#6]2:&@[#6]:&@1:&@[#6]:&@[#6]:&@[#6]:&@[#6]:&@2)-&!@[#6]-&!@[#6]\n", "(472995, 'CHEMBL931642', 54, 'Displacement of [3H]CP-55940 from human recombinant CB1 receptor expressed in HEK cells')\n", " * postgresql://localhost/chembl_26\n", "Mean nAts 28.4, mcs nAts: 20\n", "[#6]-&!@[#6]1(-&!@[#6])-&@[#6](-&@[#6]-&@1(-&!@[#6])-&!@[#6])-&!@[#6](=&!@[#8])-&!@[#6]1:&@[#6]:&@[#7](:&@[#6]2:&@[#6]:&@1:&@[#6]:&@[#6]:&@[#6]:&@[#6]:&@2)-&!@[#6]-&!@[#6]\n", "(501433, 'CHEMBL994692', 54, 'Displacement of [3H]LSD from human recombinant 5HT6 receptor')\n", " * postgresql://localhost/chembl_26\n", "Mean nAts 23.2, mcs nAts: 21\n", "[#6]-&!@[#6]1:&@[#6](-&!@[#8,#6]-&!@[#6,#8,#16]-&!@[#6]2:&@[#6]:&@[#6]:&@[#6]:&@[#6,#7]:&@[#6]:&@2):&@[#6,#7]:&@[#6]:&@[#6]:&@[#6]:&@1-&!@[#7,#6]1-&@[#6]-&@[#6]-&@[#7]-&@[#6]-&@[#6]-&@1\n", "(536731, 'CHEMBL984525', 54, 'Displacement of [3H]paroxetine from serotonin transporter in Sprague-Dawley rat frontal cortical membrane')\n", " * postgresql://localhost/chembl_26\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "RDKit ERROR: [08:13:45] Aromatic bonds on non aromatic atom 1\n", "RDKit INFO: [08:13:45] Aromatic bonds on non aromatic atom 1\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Mean nAts 32.3, mcs nAts: 17\n", "[#6]-&!@[#6]-&!@[#6]-&!@[#7](-&!@[#6])-&!@[#6]1-&@[#6]-&@[#8]-&@[#6]2:&@[#6](-&@[#6]-&@1):&@[#6](:&@[#6]:&@[#6]:&@[#6]:&@2)-&!@[#8,#6]-,=;!@[#6,#7,#8]\n", "(560534, 'CHEMBL1021384', 54, 'Displacement of radioligand from human recombinant adenosine A2B receptor at 21 degC after 60 mins by cell-based microplate scintillation counting')\n", " * postgresql://localhost/chembl_26\n", "Mean nAts 23.9, mcs nAts: 22\n", "[#7]-&!@[#6]1:&@[#7]:&@[#6](-&!@[#6]2:&@[#6,#7,#16]:&@[#6,#7]:&@[#6,#7]:&@[#8,#7,#16]:&@2):&@[#6]2:&@[#6](:&@[#7]:&@1):&@[#7](:&@[#7]:&@[#7]:&@2)-&!@[#6]-&!@[#6]1:,-;@[#6]:,-;@[#6,#7]:,-;@[#6]:,-;@[#7,#6]:,-;@[#6,#7]:,-;@1\n", "(560535, 'CHEMBL1021385', 54, 'Displacement of radioligand from human recombinant adenosine A3 receptor at 21 degC after 60 mins by cell-based microplate scintillation counting')\n", " * postgresql://localhost/chembl_26\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "RDKit ERROR: [08:13:52] Aromatic bonds on non aromatic atom 4\n", "RDKit INFO: [08:13:52] Aromatic bonds on non aromatic atom 4\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Mean nAts 23.9, mcs nAts: 22\n", "[#7]-&!@[#6]1:&@[#7]:&@[#6](-&!@[#6]2:&@[#6,#7,#16]:&@[#6,#7]:&@[#6,#7]:&@[#8,#7,#16]:&@2):&@[#6]2:&@[#6](:&@[#7]:&@1):&@[#7](:&@[#7]:&@[#7]:&@2)-&!@[#6]-&!@[#6]1:,-;@[#6]:,-;@[#7,#6]:,-;@[#6]:,-;@[#6,#7]:,-;@[#7,#6]:,-;@1\n", "(675412, 'CHEMBL1273492', 54, 'Inhibition of human N-terminal His6-tagged reticulocyte 15-lipoxygenase-1 after 15 mins by UV-vis spectrophotometer analysis')\n", " * postgresql://localhost/chembl_26\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "RDKit ERROR: [08:13:57] Aromatic bonds on non aromatic atom 4\n", "RDKit INFO: [08:13:57] Aromatic bonds on non aromatic atom 4\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Mean nAts 29.8, mcs nAts: 20\n", "[#8,#6]=,-;!@[#6](-&!@[#8,#7]-&!@[#6]-&!@[#6]#,-,=;!@[#6]-&!@[#6]-&!@[#16,#7]-&!@[#6]1:&@[#7]:&@[#7]:&@[#6](:&@[#8]:&@1)-&!@[#6]1:&@[#6]:&@[#6]:&@[#6]:&@[#6]:&@[#6]:&@1)-,=;!@[#6,#8]\n", "(803919, 'CHEMBL1954606', 54, 'Displacement of [3H]methyllylcaconitine from alpha7 nAChR in rat brain')\n", " * postgresql://localhost/chembl_26\n", "Mean nAts 27.4, mcs nAts: 7\n", "[#6,#7,#8]-,=;!@[#6,#7]1:,-;@[#6]:,-;@[#6]:,-;@[#6,#7,#8]:,-;@[#7,#6]:,-;@[#6]:,-;@1\n", "(876705, 'CHEMBL2182818', 54, 'Displacement of [3H]CP55940 from human CB1 receptor expressed in CHO cells incubated for 1 hr')\n", " * postgresql://localhost/chembl_26\n", "Mean nAts 31.1, mcs nAts: 13\n", "[#6,#8]-,=;!@[#6,#7]-&!@[#6,#7]-&!@[#6,#7]-&!@[#7,#6]-&!@[#6,#7]-,=;!@[#6]-&!@[#6]1:&@[#6]:&@[#6]:&@[#6]:&@[#6]:&@[#6]:&@1\n", "(979760, 'CHEMBL2421805', 54, 'Inhibition of JAK2 (unknown origin)')\n", " * postgresql://localhost/chembl_26\n", "Mean nAts 20.2, mcs nAts: 15\n", "[#8,#6]=,-;!@[#6,#7,#16](-&!@[#7,#6]-&!@[#6]1:&@[#6]:&@[#6]:&@[#7,#6]:&@[#6]:&@[#6,#7]:&@1)-&!@[#6]1:&@[#6]:&@[#6]:&@[#6,#7]:&@[#6]:&@[#6]:&@1\n", "(1503354, 'CHEMBL3590745', 54, 'Displacement of (-)-[3H]vesamicol from rat VAChT expressed in PC12 cell membranes incubated for 2 hrs by liquid scintillation counting based competitive radioligand binding assay')\n", " * postgresql://localhost/chembl_26\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "RDKit ERROR: [08:14:02] Aromatic bonds on non aromatic atom 6\n", "RDKit INFO: [08:14:02] Aromatic bonds on non aromatic atom 6\n", "RDKit ERROR: [08:14:02] Aromatic bonds on non aromatic atom 3\n", "RDKit INFO: [08:14:02] Aromatic bonds on non aromatic atom 3\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Mean nAts 25.9, mcs nAts: 13\n", "[#8]-&!@[#6]1-&@[#6]-&@[#6]-,=,:;@[#6]-&@[#6]-&@[#6]-&@1-&!@[#7]1-&@[#6]-&@[#6]-,=;@[#6,#7]:,-;@[#6]-&@[#6]-&@1\n", "(1503356, 'CHEMBL3590859', 54, 'Displacement of (-)-[3H]pentazocine from sigma1 receptor in Sprague-Dawley rat cortical membranes incubated for 2 hrs by liquid scintillation counting based competitive radioligand binding assay')\n", " * postgresql://localhost/chembl_26\n", "Mean nAts 25.9, mcs nAts: 13\n", "[#8]-&!@[#6]1-&@[#6]-&@[#6]-,=,:;@[#6]-&@[#6]-&@[#6]-&@1-&!@[#7]1-&@[#6]-&@[#6]-,=;@[#6,#7]:,-;@[#6]-&@[#6]-&@1\n", "(1528733, 'CHEMBL3705892', 54, 'Radioligand Binding: The TAAR1 radioligand 3[H](S)-4-[(ethyl-phenyl-amino)-methyl]-4,5-dihydro-oxazol-2-ylamine (described in WO 2008/098857) was use ... (659 characters truncated) ... ) (binding buffer), 300 ul of the radioligand 3[H](S)-4-[(ethyl-phenyl-amino)-methyl]-4,5-dihydro-oxazol-2-ylamine at a concentration of 3.3Kd in nM.')\n", " * postgresql://localhost/chembl_26\n", "Mean nAts 28.4, mcs nAts: 26\n", "[#8]=&!@[#6](-&!@[#7]-&!@[#6]1:&@[#6]:&@[#6]:&@[#6](:&@[#6]:&@[#6]:&@1)-&!@[#6]1-&@[#6]-&@[#7,#6]-&@[#6]-&@[#6,#7]-&@[#8,#6]-&@1)-&!@[#6]1:&@[#6,#7]:&@[#6,#7](:&@[#7,#6]:&@[#7,#6]:&@1)-&!@[#6]1:&@[#6,#7]:&@[#6,#7]:&@[#6,#7]:&@[#6,#7]:&@[#6,#7]:&@1\n", "(1528734, 'CHEMBL3705893', 54, 'Radioligand Binding: The TAAR1 radioligand 3[H](S)-4-[(ethyl-phenyl-amino)-methyl]-4,5-dihydro-oxazol-2-ylamine (described in WO 2008/098857) was use ... (659 characters truncated) ... (binding buffer), 300 ul of the radioligand 3[H](S)-4-[(ethyl-phenyl-amino)-methyl]-4,5-dihydro-oxazol-2-ylamine at a concentration of 3.3 Kd in nM.')\n", " * postgresql://localhost/chembl_26\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "RDKit ERROR: [08:14:04] Aromatic bonds on non aromatic atom 15\n", "RDKit INFO: [08:14:04] Aromatic bonds on non aromatic atom 15\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Mean nAts 28.4, mcs nAts: 26\n", "[#8]=&!@[#6](-&!@[#7]-&!@[#6]1:&@[#6]:&@[#6]:&@[#6](:&@[#6]:&@[#6]:&@1)-&!@[#6]1-&@[#6]-&@[#7,#6]-&@[#6]-&@[#6,#7]-&@[#8,#6]-&@1)-&!@[#6]1:&@[#6,#7]:&@[#6,#7](:&@[#7,#6]:&@[#7,#6]:&@1)-&!@[#6]1:&@[#6,#7]:&@[#6,#7]:&@[#6,#7]:&@[#6,#7]:&@[#6,#7]:&@1\n", "(1776530, 'CHEMBL4233522', 54, 'Displacement of [3H]-Nalpha-methylhistamine from human histamine H3 receptor expressed in HEK293 cell membranes')\n", " * postgresql://localhost/chembl_26\n", "Mean nAts 22.4, mcs nAts: 9\n", "[#6,#7,#8]-,=;!@[#6,#7]-&!@[#6,#8]-&!@[#6]1:&@[#7,#6,#8]:&@[#7,#16]:&@[#6](:&@[#8,#7]:&@1)-&!@[#7,#6]\n", "(1344334, 'CHEMBL3257004', 53, 'Reversible competitive inhibition of boar spermatozoa acrosin using BzArgOEt as substrate by Dixon plot analysis')\n", " * postgresql://localhost/chembl_26\n", "Mean nAts 25.0, mcs nAts: 12\n", "[#7,#6,#8]=,-;!@[#6,#7](-&!@[#7,#6,#8])-&!@[#6]1:&@[#6]:&@[#6]:&@[#6](:&@[#6]:&@[#6]:&@1)-&!@[#6,#8]-&!@[#8,#6]-&!@[#6]\n", "(873559, 'CHEMBL2187476', 53, 'Displacement of [3H]epibatidine from human alpha7 nAChR expressed in human HEK/RIC3 cells')\n", " * postgresql://localhost/chembl_26\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "RDKit ERROR: [08:14:04] Aromatic bonds on non aromatic atom 15\n", "RDKit INFO: [08:14:04] Aromatic bonds on non aromatic atom 15\n", "RDKit ERROR: [08:14:04] Aromatic bonds on non aromatic atom 3\n", "RDKit INFO: [08:14:04] Aromatic bonds on non aromatic atom 3\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Mean nAts 18.2, mcs nAts: 15\n", "[#6,#7]1:&@[#6,#7]:&@[#7,#6]:&@[#6,#7]:&@[#6](:&@[#6]:&@1)-&!@[#7,#6]1-,=;@[#6]-&@[#6]2-&@[#6]-&@[#7]-&@[#6]-&@[#6](-&@[#6]-,=;@1)-&@[#6]-&@2\n", "(769241, 'CHEMBL1833078', 53, 'Displacement of [3H]PK11195 from TSPO receptor in rat kidney membranes')\n", " * postgresql://localhost/chembl_26\n", "Mean nAts 23.6, mcs nAts: 16\n", "[#6]-&!@[#6,#7]-&!@[#7,#6](-,=;!@[#6,#8])-&!@[#6]-&!@[#6]1:&@[#6,#7,#8]:&@[#8,#7]:&@[#6](:&@[#7,#6]:&@1)-&!@[#6]1:&@[#6]:&@[#6]:&@[#6]:&@[#6]:&@[#6]:&@1\n", "(990337, 'CHEMBL2445750', 53, 'Displacement of [3H]-CP55940 from CB1 receptor in rat brain homogenate after 1.5 hrs by microbeta liquid scintillation counting analysis')\n", " * postgresql://localhost/chembl_26\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "RDKit ERROR: [08:14:04] Aromatic bonds on non aromatic atom 5\n", "RDKit INFO: [08:14:04] Aromatic bonds on non aromatic atom 5\n", "RDKit ERROR: [08:14:04] Aromatic bonds on non aromatic atom 5\n", "RDKit INFO: [08:14:04] Aromatic bonds on non aromatic atom 5\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Mean nAts 27.4, mcs nAts: 17\n", "[#6]-&!@[#6]-&!@[#7]1:&@[#6]2:&@[#6]:&@[#6]:&@[#6]:&@[#6]:&@[#6]:&@2:&@[#6]2:&@[#6]:&@1:&@[#6]:&@[#6,#7]:&@[#6](:&@[#6]:&@2)-&!@[#6]#,-,=;!@[#7,#8,#16]\n", "(990336, 'CHEMBL2445749', 53, 'Displacement of [3H]-CP55940 from human CB2 receptor expressed in HEK293 cells after 1.5 hrs by microbeta liquid scintillation counting analysis')\n", " * postgresql://localhost/chembl_26\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "RDKit ERROR: [08:14:09] Aromatic bonds on non aromatic atom 2\n", "RDKit INFO: [08:14:09] Aromatic bonds on non aromatic atom 2\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Mean nAts 27.4, mcs nAts: 17\n", "[#6]-&!@[#6]-&!@[#7]1:&@[#6]2:&@[#6]:&@[#6]:&@[#6]:&@[#6]:&@[#6]:&@2:&@[#6]2:&@[#6]:&@1:&@[#6]:&@[#6,#7]:&@[#6](:&@[#6]:&@2)-&!@[#6]#,-,=;!@[#7,#8,#16]\n", "(384211, 'CHEMBL868581', 53, 'Binding affinity to human 5HT2C receptor')\n", " * postgresql://localhost/chembl_26\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "RDKit ERROR: [08:14:13] Aromatic bonds on non aromatic atom 2\n", "RDKit INFO: [08:14:13] Aromatic bonds on non aromatic atom 2\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Mean nAts 31.5, mcs nAts: 28\n", "[#8]=&!@[#6]1-&@[#6,#7](-&!@[#6]2:&@[#6]:&@[#6]:&@[#6]:&@[#6]:&@[#6]:&@2)=,-;@[#6]-&@[#6]-,=;@[#7,#6]-&@1-&!@[#6]1:&@[#6]:&@[#6]:&@[#6](:&@[#6](:&@[#6]:&@1)-&!@[#8]-&!@[#6]-&!@[#6]-&!@[#7]1-&@[#6]-&@[#6]-&@[#6,#8]-&@[#6]-&@[#6]-&@1)-&!@[#17,#6,#7,#8]\n", "(384212, 'CHEMBL868582', 53, 'Binding affinity to human 5HT2A receptor')\n", " * postgresql://localhost/chembl_26\n", "Mean nAts 31.5, mcs nAts: 28\n", "[#8]=&!@[#6]1-&@[#6,#7](-&!@[#6]2:&@[#6]:&@[#6]:&@[#6]:&@[#6]:&@[#6]:&@2)=,-;@[#6]-&@[#6]-,=;@[#7,#6]-&@1-&!@[#6]1:&@[#6]:&@[#6]:&@[#6](:&@[#6](:&@[#6]:&@1)-&!@[#8]-&!@[#6]-&!@[#6]-&!@[#7]1-&@[#6]-&@[#6]-&@[#6,#8]-&@[#6]-&@[#6]-&@1)-&!@[#17,#6,#7,#8]\n", "(384213, 'CHEMBL868583', 53, 'Binding affinity to human 5HT2B receptor')\n", " * postgresql://localhost/chembl_26\n", "Mean nAts 31.5, mcs nAts: 28\n", "[#8]=&!@[#6]1-&@[#6,#7](-&!@[#6]2:&@[#6]:&@[#6]:&@[#6]:&@[#6]:&@[#6]:&@2)=,-;@[#6]-&@[#6]-,=;@[#7,#6]-&@1-&!@[#6]1:&@[#6]:&@[#6]:&@[#6](:&@[#6](:&@[#6]:&@1)-&!@[#8]-&!@[#6]-&!@[#6]-&!@[#7]1-&@[#6]-&@[#6]-&@[#6,#8]-&@[#6]-&@[#6]-&@1)-&!@[#17,#6,#7,#8]\n", "(411464, 'CHEMBL853861', 53, 'Displacement of [125I]motilin from human MOTR')\n", " * postgresql://localhost/chembl_26\n", "Mean nAts 41.5, mcs nAts: 7\n", "[#6]-&!@[#6]1:,-;@[#6]:,-;@[#6]:,-;@[#6]:,-;@[#6]:,-;@[#6]:,-;@1\n", "(425512, 'CHEMBL909602', 53, 'Displacement of Bax-derived peptide from Bcl2 by fluorescence polarization assay')\n", " * postgresql://localhost/chembl_26\n", "Mean nAts 52.6, mcs nAts: 44\n", "[#6,#8]-,=;!@[#8,#6,#16]-,=;!@[#6,#7]1-&@[#6]-&@[#6]-&@[#7](-&@[#6]-&@[#6]-&@1)-&!@[#6]1:&@[#6]:&@[#6]:&@[#6](:&@[#6]:&@[#6]:&@1)-&!@[#6](=&!@[#8])-&!@[#7]-&!@[#16](=&!@[#8])(=&!@[#8])-&!@[#6]1:&@[#6]:&@[#6]:&@[#6](:&@[#6](:&@[#6]:&@1)-&!@[#7](=&!@[#8])-&!@[#8])-&!@[#7]-&!@[#6](-&!@[#6]-&!@[#6]-&!@[#7](-&!@[#6])-&!@[#6])-&!@[#6]-&!@[#16]-&!@[#6]1:&@[#6]:&@[#6]:&@[#6]:&@[#6]:&@[#6]:&@1\n", "(1352081, 'CHEMBL3267346', 53, 'Inhibition of human recombinant adenosine receptor A2b')\n", " * postgresql://localhost/chembl_26\n", "Mean nAts 26.3, mcs nAts: 7\n", "[#6,#7,#8]-&!@[#7,#6]1:,-;@[#6,#7]:,-;@[#6,#7]:,-;@[#6,#7]:,-;@[#7,#6]:,-;@[#6,#7,#8]:,-;@1\n", "(554819, 'CHEMBL953972', 53, 'Displacement of [3H]CP-55940 from human CB2 receptor')\n", " * postgresql://localhost/chembl_26\n", "Mean nAts 31.6, mcs nAts: 23\n", "[#6]-&!@[#8]-&!@[#6]1:&@[#6]:&@[#6]:&@[#6](:&@[#6,#7]:&@[#6,#7]:&@1)-&!@[#6]-&!@[#6]1:&@[#7]:&@[#6]2:&@[#6](:&@[#7]:&@1-&!@[#6]-&!@[#6]):&@[#6]:&@[#6]:&@[#6](:&@[#6]:&@2)-&!@[#6,#7](-,=;!@[#7,#6,#8])=,-;!@[#8,#6,#7]\n", "(536733, 'CHEMBL984527', 53, 'Displacement of [3H]8-OH-DPAT from human cloned 5HT1A receptor expressed in CHO cells')\n", " * postgresql://localhost/chembl_26\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "RDKit ERROR: [08:15:47] Aromatic bonds on non aromatic atom 2\n", "RDKit INFO: [08:15:47] Aromatic bonds on non aromatic atom 2\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Mean nAts 32.2, mcs nAts: 17\n", "[#6]-&!@[#6]-&!@[#6]-&!@[#7](-&!@[#6])-&!@[#6]1-&@[#6]-&@[#8]-&@[#6]2:&@[#6](-&@[#6]-&@1):&@[#6](:&@[#6]:&@[#6]:&@[#6]:&@2)-&!@[#8,#6]-,=;!@[#6,#7,#8]\n", "(447747, 'CHEMBL895641', 53, 'Displacement of [125I]NDP-alphaMSH from human melanocortin 4 receptor expressed in CHOK1 cells')\n", " * postgresql://localhost/chembl_26\n", "Mean nAts 39.8, mcs nAts: 25\n", "[#7,#6]-&!@[#6]1:&@[#7]:&@[#6]2:&@[#6](:&@[#7]:&@1-&!@[#6]-&!@[#6]-&!@[#6]-&!@[#7,#6,#8]):&@[#6]:&@[#6](:&@[#6]:&@[#6]:&@2)-&!@[#6](=&!@[#8])-&!@[#7](-&!@[#6]-&!@[#6]-&!@[#6]-&!@[#6])-&!@[#6]-&!@[#6]-&!@[#6]-&!@[#6]\n", "(157733, 'CHEMBL765171', 53, 'Inhibitory activity against HIV protease')\n", " * postgresql://localhost/chembl_26\n", "Mean nAts 46.8, mcs nAts: 38\n", "[#6]1:&@[#6]:&@[#6]:&@[#6]:&@[#6](:&@[#6]:&@1)-&!@[#6]-&!@[#7]1-&@[#6](=&!@[#8])-&@[#7](-&!@[#6]-&!@[#6]2:&@[#6]:&@[#6]:&@[#6]:&@[#6]:&@[#6]:&@2)-&@[#6](-&@[#6](-&@[#6](-&@[#6]-&@1-&!@[#6]-&!@[#6]1:&@[#6]:&@[#6]:&@[#6]:&@[#6]:&@[#6]:&@1)-&!@[#8])-&!@[#8])-&!@[#6]-&!@[#6]1:&@[#6]:&@[#6]:&@[#6]:&@[#6]:&@[#6]:&@1\n", "(52222, 'CHEMBL663972', 53, 'In vitro binding affinity towards Cysteinyl leukotriene D4 receptor by using [3H]LTD4 binding assay in guinea pig lung membranes')\n", " * postgresql://localhost/chembl_26\n", "Mean nAts 36.9, mcs nAts: 18\n", "[#6]1:&@[#6]:&@[#6]:&@[#6](:&@[#6,#7]:&@[#6]:&@1)-&!@[#8,#6,#7]-,=;!@[#6,#8]-&!@[#6]1:&@[#6]:&@[#6]:&@[#6]2:&@[#6](:&@[#7,#6]:&@1):&@[#6]:&@[#6]:&@[#6]:&@[#6]:&@2\n", "(470061, 'CHEMBL933439', 53, 'Inhibition of human factor 10a')\n", " * postgresql://localhost/chembl_26\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "RDKit ERROR: [08:16:31] Aromatic bonds on non aromatic atom 0\n", "RDKit INFO: [08:16:31] Aromatic bonds on non aromatic atom 0\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Mean nAts 39.0, mcs nAts: 23\n", "[#6]1:,-;@[#6]:,-;@[#6,#7]:,-;@[#6]:,-;@[#6]:,-;@[#6,#7]:,-;@1-&!@[#6]1:&@[#6]:&@[#6]:&@[#6](:&@[#6]:&@[#6]:&@1)-&!@[#7]1-&@[#6]-&@[#6]-&@[#6]-&@[#6](-&@[#6]-&@1=&!@[#8])-&!@[#7]-&!@[#16,#6](=,-;!@[#8,#6,#7])-,=;!@[#6,#8]\n", "(1638156, 'CHEMBL3881217', 53, 'Displacement of [3H]-PGD2 from PGD2 receptor in human platelet membranes after 2 hrs by micro beta scintillation counting analysis')\n", " * postgresql://localhost/chembl_26\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "RDKit ERROR: [08:17:02] Aromatic bonds on non aromatic atom 0\n", "RDKit INFO: [08:17:02] Aromatic bonds on non aromatic atom 0\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Mean nAts 35.1, mcs nAts: 30\n", "[#6]-&!@[#6](-&!@[#6])-&!@[#8,#16]-&!@[#6]1:&@[#6]:&@[#6]:&@[#6](:&@[#6]:&@[#6,#7]:&@1)-&!@[#16](=&!@[#8])(=&!@[#8])-&!@[#7]1-&@[#6]-&@[#6]-&@[#6,#7](-&@[#6]-&@[#6]-&@1)-&!@[#6]1:&@[#6]:&@[#6]:&@[#6]:&@[#6](:&@[#6]:&@1)-&!@[#8,#7]-&!@[#6]-&!@[#6](=&!@[#8])-&!@[#8]\n", "(856369, 'CHEMBL2160724', 53, 'Binding affinity to human CCR3 expressed in CHOK1 cells by radioligand displacement assay')\n", " * postgresql://localhost/chembl_26\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "RDKit ERROR: [08:17:02] Aromatic bonds on non aromatic atom 4\n", "RDKit INFO: [08:17:02] Aromatic bonds on non aromatic atom 4\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Mean nAts 33.5, mcs nAts: 22\n", "[#6,#9,#17]-&!@[#7,#6]1-,:;@[#6]-,:;@[#6]-,:;@[#6](-,:;@[#6]-,:;@[#6]-,:;@1)-&!@[#6,#8]-&!@[#7,#6]1-&@[#6]-&@[#6]-&@[#6,#7](-&@[#6]-&@[#6]-&@1)-&!@[#8,#6]-&!@[#6,#7]1:,-;@[#6]:,-;@[#6]:,-;@[#6,#7](:,-;@[#6]:,-;@[#6]:,-;@1)-&!@[#17,#6,#8]\n", "(1671313, 'CHEMBL4021342', 53, 'Displacement of [3H]-MRS-1754 from human adenosine A2B receptor expressed in HEK293 cell membranes after 90 mins')\n", " * postgresql://localhost/chembl_26\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "RDKit ERROR: [08:17:04] Aromatic bonds on non aromatic atom 20\n", "RDKit INFO: [08:17:04] Aromatic bonds on non aromatic atom 20\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Mean nAts 33.5, mcs nAts: 22\n", "[#6]#,-;!@[#6]-&!@[#6,#8]-&!@[#7,#6]1:&@[#6]:&@[#6](:&@[#6,#7,#8]:&@[#7]:&@1)-&!@[#6]1:&@[#7]:&@[#6]2:&@[#6](:&@[#7]:&@1):&@[#6](=&!@[#8]):&@[#7](:&@[#6](:&@[#7]:&@2)=&!@[#8])-&!@[#6]-&!@[#6]-&!@[#6]\n", "(1352085, 'CHEMBL3267350', 52, 'Inhibition of human recombinant adenosine A3 receptor')\n", " * postgresql://localhost/chembl_26\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "RDKit ERROR: [08:17:32] Aromatic bonds on non aromatic atom 7\n", "RDKit INFO: [08:17:32] Aromatic bonds on non aromatic atom 7\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Mean nAts 26.5, mcs nAts: 7\n", "[#6,#7,#8]-&!@[#7,#6]1:,-;@[#6,#7]:,-;@[#6,#7]:,-;@[#6,#7]:,-;@[#7,#6]:,-;@[#6,#7,#8]:,-;@1\n", "(1330007, 'CHEMBL3222515', 52, 'Displacement of [3H]CP55,940 from human recombinant CB1 receptor expressed in CHO-K1 cells')\n", " * postgresql://localhost/chembl_26\n", "Mean nAts 22.8, mcs nAts: 8\n", "[#6,#8,#15]=,-;!@[#6,#7,#8]-&!@[#6]1:,-;@[#6]:,-;@[#6]:,-;@[#6]:,-;@[#6]:,-;@[#6]:,-;@1\n", "(1527992, 'CHEMBL3705912', 52, 'Binding Assay: Evaluation of the affinity of compounds for the human MCH-1 receptor was accomplished using 4-(3,4,5-tritritiumbenzyloxy)-1-(1-(2-(pyr ... (26 characters truncated) ... azol-5-yl)pyridin-2(1H)-one and membranes prepared from stable CHO-K1 cells expressing the human MCH1 receptor obtained from Euroscreen (Batch 1138).')\n", " * postgresql://localhost/chembl_26\n", "Mean nAts 33.2, mcs nAts: 21\n", "[#6,#8]-&!@[#6]1:&@[#6]:&@[#6]:&@[#7](:&@[#6](:&@[#6]:&@1)=&!@[#8])-&!@[#6]1:&@[#6]:&@[#6]:&@[#6]2:&@[#6](:&@[#6,#7]:&@1):&@[#7]:&@[#6]1:&@[#6]:&@2-&@[#6]-&@[#7,#6]-&@[#6,#7]-&@[#6]-&@1\n", "(1330005, 'CHEMBL3222513', 52, 'Displacement of [3H]CP55,940 from human recombinant CB2 receptor expressed in HEK293 cells')\n", " * postgresql://localhost/chembl_26\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "RDKit ERROR: [08:18:03] Aromatic bonds on non aromatic atom 11\n", "RDKit INFO: [08:18:03] Aromatic bonds on non aromatic atom 11\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Mean nAts 22.8, mcs nAts: 8\n", "[#6,#8,#15]=,-;!@[#6,#7,#8]-&!@[#6]1:,-;@[#6]:,-;@[#6]:,-;@[#6]:,-;@[#6]:,-;@[#6]:,-;@1\n", "(873597, 'CHEMBL2187886', 52, 'Displacement of [3H]BMS-599240 from BACE1 expressed in HEK293 cells')\n", " * postgresql://localhost/chembl_26\n", "Mean nAts 32.4, mcs nAts: 26\n", "[#6]-&!@[#6]1:&@[#8,#7,#16]:&@[#7,#8]:&@[#6](:&@[#6]:&@1-&!@[#6](=&!@[#8])-&!@[#7]=&!@[#6](-&!@[#7])-&!@[#7]-&!@[#6]-&!@[#6]1:&@[#6]:&@[#6]:&@[#6]:&@[#6]:&@[#6]:&@1)-&!@[#6]1:&@[#6]:&@[#6]:&@[#6](:&@[#6]:&@[#6]:&@1)-&!@[#9,#8]\n", "(859794, 'CHEMBL2169622', 52, 'Displacement of [3H]CP-55940 from CB1 receptor in Sprague-Dawley rat brain by scintillation counting')\n", " * postgresql://localhost/chembl_26\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "RDKit ERROR: [08:18:04] Aromatic bonds on non aromatic atom 1\n", "RDKit INFO: [08:18:04] Aromatic bonds on non aromatic atom 1\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Mean nAts 29.2, mcs nAts: 19\n", "[#6]-&!@[#6]1-&@[#6]-&@[#8]-&@[#6]2:&@[#6]3:&@[#7]-&@1:&@[#6]:&@[#6](:&@[#6](:&@[#6]:&@3:&@[#6]:&@[#6]:&@[#6]:&@2)=&!@[#8])-&!@[#6](=&!@[#8])-&!@[#7]-&!@[#6]\n", "(859793, 'CHEMBL2169621', 52, 'Displacement of [3H]CP-55940 from CB2 receptor in Sprague-Dawley rat spleen by scintillation counting')\n", " * postgresql://localhost/chembl_26\n", "Mean nAts 29.2, mcs nAts: 19\n", "[#6]-&!@[#6]1-&@[#6]-&@[#8]-&@[#6]2:&@[#6]3:&@[#7]-&@1:&@[#6]:&@[#6](:&@[#6](:&@[#6]:&@3:&@[#6]:&@[#6]:&@[#6]:&@2)=&!@[#8])-&!@[#6](=&!@[#8])-&!@[#7]-&!@[#6]\n", "(859792, 'CHEMBL2169620', 52, 'Displacement of [3H]CP-55940 from human recombinant CB2 receptor expressed in CHO cell membranes incubated for 60 mins by scintillation counting')\n", " * postgresql://localhost/chembl_26\n", "Mean nAts 29.2, mcs nAts: 19\n", "[#6]-&!@[#6]1-&@[#6]-&@[#8]-&@[#6]2:&@[#6]3:&@[#7]-&@1:&@[#6]:&@[#6](:&@[#6](:&@[#6]:&@3:&@[#6]:&@[#6]:&@[#6]:&@2)=&!@[#8])-&!@[#6](=&!@[#8])-&!@[#7]-&!@[#6]\n", "(859791, 'CHEMBL2169619', 52, 'Displacement of [3H]CP-55940 from human recombinant CB1 receptor expressed in CHO cell membranes incubated for 90 mins by scintillation counting')\n", " * postgresql://localhost/chembl_26\n", "Mean nAts 29.2, mcs nAts: 19\n", "[#6]-&!@[#6]1-&@[#6]-&@[#8]-&@[#6]2:&@[#6]3:&@[#7]-&@1:&@[#6]:&@[#6](:&@[#6](:&@[#6]:&@3:&@[#6]:&@[#6]:&@[#6]:&@2)=&!@[#8])-&!@[#6](=&!@[#8])-&!@[#7]-&!@[#6]\n", "(835846, 'CHEMBL2071957', 52, 'Inhibition of KDM4C catalytic core-mediated demethylation of ARK(Me)3STGGK after 30 mins by FDH-coupled assay')\n", " * postgresql://localhost/chembl_26\n", "Mean nAts 13.5, mcs nAts: 6\n", "[#6,#5,#7,#8,#16,#17,#35]-&!@[#7,#6]1:,-;@[#6,#7,#16]:,-,=;@[#6,#7,#16]:,-;@[#7,#6]:,-,=;@[#7,#6]:,-;@1\n", "(801859, 'CHEMBL1947471', 52, 'Displacement of [3H]WIN35428 from human cloned DAT receptor expressed in human HEK293 cells')\n", " * postgresql://localhost/chembl_26\n", "Mean nAts 23.7, mcs nAts: 18\n", "[#6]-&!@[#8]-&!@[#6](=&!@[#8])-&!@[#6]1-&@[#6](-&!@[#6]2:&@[#6]:&@[#6]:&@[#6]:&@[#6]:&@[#6]:&@2)-&@[#6]-&@[#6]2-&@[#7]-&@[#6]-&@1-&@[#6]-&@[#6]-&@2\n", "(790253, 'CHEMBL1925646', 52, 'Displacement of [125I-His9]-ghrelin from human GRLN receptor by radioligand binding assay')\n", " * postgresql://localhost/chembl_26\n", "Mean nAts 37.8, mcs nAts: 24\n", "[#6]-&!@[#6]1-&@[#7]-&@[#6]-&@[#6]-&@[#8,#6]-&@[#6]:,-;@[#6]-,=;@[#6]-,=;@[#6]-&@[#6]-&@[#7]-&@[#6](-&@[#6](-&@[#7]-&@[#6](-&@[#6]-&@[#7]-&@[#6]-&@1=&!@[#8])=&!@[#8])-&!@[#6]-&!@[#8,#6])=&!@[#8]\n", "(699418, 'CHEMBL1647445', 52, 'Displacement of [3H]Tiagabine from human recombinant GAT1 expressed in HEK293 cells by equilibrium binding assay')\n", " * postgresql://localhost/chembl_26\n", "Mean nAts 27.3, mcs nAts: 12\n", "[#6]-&!@[#6](=&!@[#6]-&!@[#6]-&!@[#6]-&!@[#7]1-&@[#6]-&@[#6]-&@[#6,#8]-&@[#6]-&@[#6]-&@1)-&!@[#6]\n", "(665493, 'CHEMBL1261324', 52, 'Displacement of [125I]-cyanopindolol from human adrenergic beta3 receptor expressed in CHO cells')\n", " * postgresql://localhost/chembl_26\n", "Mean nAts 34.2, mcs nAts: 27\n", "[#8]-&!@[#6](-&!@[#6]-&!@[#7]-&!@[#6]1-&@[#6]-&@[#6]-&@[#7](-&@[#6]-&@[#6]-&@1)-&!@[#6]1:&@[#7]:&@[#6]:&@[#7]:&@[#6]2:&@[#6]:&@1:&@[#16,#6]:&@[#6]:&@[#6,#16]:&@2)-&!@[#6]-&!@[#8]-&!@[#6]1:&@[#6]:&@[#6]:&@[#6]:&@[#6]:&@[#6]:&@1\n", "(554820, 'CHEMBL953973', 52, 'Displacement of [3H]CP-55940 from human CB1 receptor')\n", " * postgresql://localhost/chembl_26\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "RDKit ERROR: [08:20:29] Aromatic bonds on non aromatic atom 14\n", "RDKit INFO: [08:20:29] Aromatic bonds on non aromatic atom 14\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Mean nAts 31.6, mcs nAts: 23\n", "[#6]-&!@[#8]-&!@[#6]1:&@[#6]:&@[#6]:&@[#6](:&@[#6,#7]:&@[#6,#7]:&@1)-&!@[#6]-&!@[#6]1:&@[#7]:&@[#6]2:&@[#6](:&@[#7]:&@1-&!@[#6]-&!@[#6]):&@[#6]:&@[#6]:&@[#6](:&@[#6]:&@2)-&!@[#6,#7](-,=;!@[#7,#6,#8])=,-;!@[#8,#6,#7]\n", "(497564, 'CHEMBL998621', 52, 'Displacement of [125I]CXCL10 from human CXCR3 expressed in HEK293T cells')\n", " * postgresql://localhost/chembl_26\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "RDKit ERROR: [08:20:33] Aromatic bonds on non aromatic atom 2\n", "RDKit INFO: [08:20:33] Aromatic bonds on non aromatic atom 2\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Mean nAts 26.7, mcs nAts: 14\n", "[#6]1:,-;@[#6]:,-;@[#6,#7](-&!@[#17,#6,#7,#8]):,-;@[#6]:,-;@[#6]:,-;@[#6,#7]:,-,=;@1-&!@[#6,#7]-&!@[#7,#6]1-,:;@[#6]-,:;@[#6]-,:;@[#6,#7]-,:;@[#6]-,:;@[#6]-,:;@1\n", "(475717, 'CHEMBL934603', 52, 'Displacement of [3H]histamine from human histamine H4 receptor expressed in HEK293T cells')\n", " * postgresql://localhost/chembl_26\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "RDKit ERROR: [08:20:33] Aromatic bonds on non aromatic atom 0\n", "RDKit INFO: [08:20:33] Aromatic bonds on non aromatic atom 0\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Mean nAts 22.3, mcs nAts: 11\n", "[#7,#6,#8]-,=;!@[#6]1:&@[#7,#6]:&@[#6,#7]:&@[#6]2:&@[#6](:&@[#7]:&@1):&@[#6]:&@[#6]:&@[#6]:&@[#6]:&@2\n", "(450845, 'CHEMBL899931', 52, 'Displacement of [125I]NDP-MSH from human MC4 receptor expressed in HEK293 cells')\n", " * postgresql://localhost/chembl_26\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "RDKit ERROR: [08:20:35] Aromatic bonds on non aromatic atom 1\n", "RDKit INFO: [08:20:35] Aromatic bonds on non aromatic atom 1\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Mean nAts 38.5, mcs nAts: 31\n", "[#6]-&!@[#6]-&!@[#6](-&!@[#7])-&!@[#6]1:&@[#6]:&@[#6]:&@[#6]:&@[#6]:&@[#6]:&@1-&!@[#7]1-&@[#6]-&@[#6]-&@[#7](-&@[#6]-&@[#6]-&@1)-&!@[#6](=&!@[#8])-&!@[#6]1-&@[#6]-&@[#7](-&@[#6]-&@[#6]-&@1-&!@[#6]1:&@[#6]:&@[#6]:&@[#6](:&@[#6]:&@[#6]:&@1)-&!@[#17,#8])-&!@[#6,#16]\n", "(448716, 'CHEMBL897862', 52, 'Displacement of [3H]LSD from cloned human 5HT6 expressed in HeLa cells')\n", " * postgresql://localhost/chembl_26\n", "Mean nAts 25.9, mcs nAts: 14\n", "[#8]=&!@[#16](=&!@[#8])(-&!@[#6])-&!@[#6]1:&@[#6]:&@[#7](:&@[#6]2:&@[#6]:&@1:&@[#6]:&@[#6]:&@[#6]:&@[#7]:&@2)-&!@[#6]\n", "(436469, 'CHEMBL904776', 52, 'Inhibition of Plasmodium falciparum recombinant enoyl ACP reductase expressed in BL21 (DE3) cells with respect to crotonyl CoA')\n", " * postgresql://localhost/chembl_26\n", "Mean nAts 24.3, mcs nAts: 9\n", "[#6]-&!@[#6]-,=;!@[#7,#6]1-&@[#6,#16]-&@[#6](-&@[#16,#7]-&@[#6]-&@1=&!@[#16,#8])=&!@[#6,#16]\n", "(425511, 'CHEMBL909601', 52, 'Displacement of Bad-derived peptide from Bcl-xL by fluorescence polarization assay')\n", " * postgresql://localhost/chembl_26\n", "Mean nAts 52.5, mcs nAts: 44\n", "[#6,#8]-,=;!@[#8,#6,#16]-,=;!@[#6,#7]1-&@[#6]-&@[#6]-&@[#7](-&@[#6]-&@[#6]-&@1)-&!@[#6]1:&@[#6]:&@[#6]:&@[#6](:&@[#6]:&@[#6]:&@1)-&!@[#6](=&!@[#8])-&!@[#7]-&!@[#16](=&!@[#8])(=&!@[#8])-&!@[#6]1:&@[#6]:&@[#6]:&@[#6](:&@[#6](:&@[#6]:&@1)-&!@[#7](=&!@[#8])-&!@[#8])-&!@[#7]-&!@[#6](-&!@[#6]-&!@[#6]-&!@[#7](-&!@[#6])-&!@[#6])-&!@[#6]-&!@[#16]-&!@[#6]1:&@[#6]:&@[#6]:&@[#6]:&@[#6]:&@[#6]:&@1\n", "(396128, 'CHEMBL910349', 52, 'Inhibition of [3H]diprenorphine binding to human KOR expressed in CHO cells')\n", " * postgresql://localhost/chembl_26\n", "Mean nAts 30.8, mcs nAts: 26\n", "[#6]-&!@[#8,#7]-&!@[#6]-&!@[#6]1-&@[#6]-&@[#6](-&!@[#7,#8])-&@[#6](-&@[#6]2-&@[#6]-&@1(-&!@[#6])-&@[#6]-&@[#6]-&@[#6]1-&@[#6]-&@2(-&@[#6]-&@[#6](-&@[#8]-&@[#6]-&@1)-&!@[#6]1:&@[#6]:&@[#6]:&@[#8]:&@[#6]:&@1)-&!@[#6])=&!@[#8]\n", "(370710, 'CHEMBL867233', 52, 'Displacement of [3H]N-alpha-methylhistamine from human cloned H3 receptor')\n", " * postgresql://localhost/chembl_26\n", "Mean nAts 24.8, mcs nAts: 16\n", "[#6]1:,-;@[#6]:,-;@[#6]:,-;@[#6]:,-;@[#6,#7](:,-;@[#6]:,-;@1)-&!@[#8,#6]-&!@[#6]-&!@[#6]-&!@[#6,#8]-&!@[#7,#6]1-,:;@[#6]-,:;@[#6]-,:;@[#6]-,:;@[#6]-,:;@[#6]-,:;@1\n", "(361059, 'CHEMBL859181', 52, 'Displacement of [3H]methoxyPEPy from rat mGluR5 expressed in HEK293 cells')\n", " * postgresql://localhost/chembl_26\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "RDKit ERROR: [08:21:47] Aromatic bonds on non aromatic atom 0\n", "RDKit INFO: [08:21:47] Aromatic bonds on non aromatic atom 0\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Mean nAts 28.4, mcs nAts: 20\n", "[#8]=&!@[#6](-&!@[#7]-,=;!@[#6]1:&@[#6,#7](-&!@[#6]2:&@[#6]:&@[#6]:&@[#6]:&@[#6]:&@[#6,#7]:&@2):&@[#7,#6]:&@[#6,#7]:&@[#7,#6]:&@1)-&!@[#6]1:,-,=;@[#6]:,-;@[#6]:,-;@[#6,#7]:,-;@[#6,#7]:,-;@[#6]:,-;@1\n", "(1681750, 'CHEMBL4032027', 52, 'Inhibition of human factor 11a using pyro-Glu-Pro-Arg-pNA as substrate at 37 degC after 10 to 120 mins by spectrophotometric method')\n", " * postgresql://localhost/chembl_26\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "RDKit ERROR: [08:21:48] Aromatic bonds on non aromatic atom 5\n", "RDKit INFO: [08:21:48] Aromatic bonds on non aromatic atom 5\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Mean nAts 42.7, mcs nAts: 33\n", "[#8,#6,#7]=,-;!@[#6,#7]-&!@[#6]1:&@[#6]:&@[#6]:&@[#6](:&@[#6]:&@[#6]:&@1)-&!@[#7]-&!@[#6](=&!@[#8])-&!@[#6]1-&@[#6]:,-;@[#6]-,:;@[#6]-&@[#6]-&@[#7]-&@1-&!@[#6](=&!@[#8])-&!@[#6]=&!@[#6]-&!@[#6]1:&@[#6]:&@[#6](-&!@[#17]):&@[#6]:&@[#6]:&@[#6]:&@1-&!@[#7]1:&@[#6]:&@[#7]:&@[#7]:&@[#7]:&@1\n", "(327232, 'CHEMBL865131', 52, 'Inhibitory activity against human glutaminyl cyclase')\n", " * postgresql://localhost/chembl_26\n", "Mean nAts 20.5, mcs nAts: 10\n", "[#6,#7]-,=;!@[#7,#6,#8]-,=;!@[#6,#7]-&!@[#6]-&!@[#6]-&!@[#7]1:&@[#6]:&@[#6]:&@[#7]:&@[#6]:&@1\n", "(304037, 'CHEMBL840215', 52, 'Inhibition constant against [3H]-spiperone binding to human Dopamine receptor D3 expressed in CHO cells')\n", " * postgresql://localhost/chembl_26\n", "Mean nAts 19.2, mcs nAts: 9\n", "[#6]1-&@[#6]-&@[#6]-&@[#6,#7]2:&@[#6](-,:;@[#6]-&@1):&@[#16,#6,#7]:&@[#6,#7]:&@[#7,#6]:&@2\n", "(157714, 'CHEMBL763388', 52, 'Inhibition constant against HIV-1 Protease')\n", " * postgresql://localhost/chembl_26\n", "Mean nAts 45.4, mcs nAts: 9\n", "[#6,#7,#8]-&!@[#6,#7,#8]-&!@[#6,#8,#16]-&!@[#6]1:,-;@[#6]:,-;@[#6,#7]:,-;@[#6]:,-;@[#6]:,-;@[#6,#7]:,-;@1\n", "(1444591, 'CHEMBL3375410', 52, 'Displacement of [3H]CP55940 from human CB1R expressed in CHO cells')\n", " * postgresql://localhost/chembl_26\n", "Mean nAts 27.3, mcs nAts: 21\n", "[#6]1:&@[#6]:&@[#6]:&@[#6]2:&@[#6](:&@[#6]:&@1):&@[#7]:&@[#6]1:&@[#6]:&@2:&@[#7]:&@[#7]:&@[#6](:&@[#7]:&@1)-&!@[#16]-&!@[#6]-&!@[#6]1-,:;@[#6]-,:;@[#6]-,:;@[#6]-,:;@[#6]-,:;@[#6]-,:;@1\n", "(1444590, 'CHEMBL3375409', 52, 'Displacement of [3H]WIN-55212-2 from human CB2R expressed in CHO cells')\n", " * postgresql://localhost/chembl_26\n", "Mean nAts 27.3, mcs nAts: 21\n", "[#6]1:&@[#6]:&@[#6]:&@[#6]2:&@[#6](:&@[#6]:&@1):&@[#7]:&@[#6]1:&@[#6]:&@2:&@[#7]:&@[#7]:&@[#6](:&@[#7]:&@1)-&!@[#16]-&!@[#6]-&!@[#6]1-,:;@[#6]-,:;@[#6]-,:;@[#6]-,:;@[#6]-,:;@[#6]-,:;@1\n", "(613740, 'CHEMBL1068887', 51, 'Displacement of [3H]nisoxetine from human recombinant NET expressed in BacMam virus-transduced cells by scintillation proximity assay')\n", " * postgresql://localhost/chembl_26\n", "Mean nAts 19.0, mcs nAts: 14\n", "[#17]-&!@[#6]1:&@[#6]:&@[#6]:&@[#6](:&@[#6]:&@[#6]:&@1-&!@[#17])-&!@[#6]1-&@[#6]-&@[#7,#6]-&@[#6,#7]-&@[#6,#7]-&@[#6]-&@1\n", "(613741, 'CHEMBL1068888', 51, 'Displacement of [3H]citalopram from human recombinant SERT expressed in BacMam virus-transduced cells by scintillation proximity assay')\n", " * postgresql://localhost/chembl_26\n", "Mean nAts 19.0, mcs nAts: 14\n", "[#17]-&!@[#6]1:&@[#6]:&@[#6]:&@[#6](:&@[#6]:&@[#6]:&@1-&!@[#17])-&!@[#6]1-&@[#6]-&@[#7,#6]-&@[#6,#7]-&@[#6,#7]-&@[#6]-&@1\n", "(1772843, 'CHEMBL4229835', 51, 'Displacement of [3H]-LSD from human 5-HT6R expressed in HEK293 cell membranes after 1 hr at 37 degC by microbeta counting method')\n", " * postgresql://localhost/chembl_26\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "RDKit ERROR: [08:22:19] Aromatic bonds on non aromatic atom 3\n", "RDKit INFO: [08:22:19] Aromatic bonds on non aromatic atom 3\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Mean nAts 34.4, mcs nAts: 12\n", "[#6]1-,:;@[#6,#7]-,:;@[#6,#7]-,:;@[#6]:&@[#6,#7]:&@[#6]:&@[#6](:&@[#6]:&@[#6,#7]-,:;@[#7,#6]-,:;@1)-&!@[#8,#6,#16]-,=;!@[#6,#7,#8]\n", "(1790426, 'CHEMBL4262345', 51, 'Displacement of [3H]-(+)-pentazocine from human sigma 1 receptor transfected in HEK293 cells after 120 mins by liquid scintillation counting method')\n", " * postgresql://localhost/chembl_26\n", "Mean nAts 26.6, mcs nAts: 16\n", "[#7,#6,#8,#16]-,=;!@[#6](=,-;!@[#8,#6,#7,#16])-&!@[#7]-&!@[#6]1:&@[#7]:&@[#6]:&@[#7]:&@[#6]2:&@[#6]:&@1:&@[#6]:&@[#7]:&@[#7]:&@2-&!@[#6]-&!@[#6]-&!@[#7,#6]\n", "(1772844, 'CHEMBL4229836', 51, 'Displacement of [3H]-8-OH-DPAT from human 5-HT1AR expressed in HEK293 cell membranes after 1 hr by microbeta counting method')\n", " * postgresql://localhost/chembl_26\n", "Mean nAts 34.4, mcs nAts: 12\n", "[#6]1-,:;@[#6,#7]-,:;@[#6,#7]-,:;@[#6]:&@[#6,#7]:&@[#6]:&@[#6](:&@[#6]:&@[#6,#7]-,:;@[#7,#6]-,:;@1)-&!@[#8,#6,#16]-,=;!@[#6,#7,#8]\n", "(344236, 'CHEMBL867755', 51, 'Inhibition of bovine CA4')\n", " * postgresql://localhost/chembl_26\n", "Mean nAts 17.3, mcs nAts: 5\n", "[#6,#7]-&!@[#16](-,=;!@[#7,#8])(=&!@[#8])=,-;!@[#8,#6,#7]\n", "(344235, 'CHEMBL870709', 51, 'Inhibition of human CA2')\n", " * postgresql://localhost/chembl_26\n", "Mean nAts 17.3, mcs nAts: 5\n", "[#6,#7]-&!@[#16](-,=;!@[#7,#8])(=&!@[#8])=,-;!@[#8,#6,#7]\n", "(335548, 'CHEMBL859414', 51, 'Displacement of [3H]L-leucine from alpha-2delta containing calcium channel in murine brain')\n", " * postgresql://localhost/chembl_26\n", "Mean nAts 15.1, mcs nAts: 9\n", "[#6](-&!@[#6,#16]-,=;!@[#8,#6,#7])-&!@[#6]1:,-;@[#6]:,-;@[#6]:,-;@[#6]:,-;@[#6]:,-;@[#6]:,-;@1\n", "(36514, 'CHEMBL650169', 51, 'Inhibitory activity of compound against HIV-1 aspartyl protease.')\n", " * postgresql://localhost/chembl_26\n", "Mean nAts 40.5, mcs nAts: 30\n", "[#8]=&!@[#6]1-&@[#7]-&@[#6](-&!@[#6]-&!@[#6]-&!@[#6]2:&@[#6]:&@[#6]:&@[#6]:&@[#6]:&@[#6]:&@2)-&@[#6](-&@[#6](-&@[#7]-&@1-&!@[#6]-&!@[#6]1:&@[#6]:&@[#6]:&@[#6]:&@[#6]:&@[#6]:&@1)-&!@[#6]-&!@[#6]1:&@[#6]:&@[#6]:&@[#6]:&@[#6]:&@[#6]:&@1)-&!@[#8]\n", "(1772845, 'CHEMBL4229837', 51, 'Displacement of [3H]-5-CT from human 5-HT7R expressed in HEK293 cell membranes after 1 hr at 37 degC by microbeta counting method')\n", " * postgresql://localhost/chembl_26\n", "Mean nAts 34.4, mcs nAts: 12\n", "[#6]1-,:;@[#6,#7]-,:;@[#6,#7]-,:;@[#6]:&@[#6,#7]:&@[#6]:&@[#6](:&@[#6]:&@[#6,#7]-,:;@[#7,#6]-,:;@1)-&!@[#8,#6,#16]-,=;!@[#6,#7,#8]\n", "(457478, 'CHEMBL941996', 51, 'Displacement of [3H]dexamethasone from human glucocorticoid receptor expressed in recombinant baculovirus')\n", " * postgresql://localhost/chembl_26\n", "Mean nAts 30.7, mcs nAts: 20\n", "[#6,#8]-,=;!@[#6,#16]-&!@[#7]1-&@[#6]-&@[#6]-&@[#6]2-&@[#6](-&@[#6]-&@1)(-&@[#6]-&@[#6]-&@[#6](-&@[#6]=&@2)=&!@[#8])-&!@[#6]-&!@[#6]1:&@[#6]:&@[#6]:&@[#6]:&@[#6]:&@[#6]:&@1\n", "(1772846, 'CHEMBL4229838', 51, 'Displacement of [3H]-raclopride from human D2LR expressed in HEK293 cell membranes after 1 hr at 37 degC by microbeta counting method')\n", " * postgresql://localhost/chembl_26\n", "Mean nAts 34.4, mcs nAts: 12\n", "[#6]1-,:;@[#6,#7]-,:;@[#6,#7]-,:;@[#6]:&@[#6,#7]:&@[#6]:&@[#6](:&@[#6]:&@[#6,#7]-,:;@[#7,#6]-,:;@1)-&!@[#8,#6,#16]-,=;!@[#6,#7,#8]\n", "(1790472, 'CHEMBL4262391', 51, 'Displacement of [3H]-(+)-pentazocine from recombinant human sigma1 receptor expressed in HEK293 cell membranes after 120 mins by microbeta scintillation counting method')\n", " * postgresql://localhost/chembl_26\n", "Mean nAts 24.3, mcs nAts: 18\n", "[#7,#6]-&!@[#6]1:&@[#7]:&@[#6]:&@[#7]:&@[#6]2:&@[#6]:&@1:&@[#6]:&@[#7]:&@[#7]:&@2-&!@[#6]-&!@[#6]-&!@[#7]1-&@[#6]-&@[#6]-&@[#6]-&@[#6]-&@[#6]-&@1\n", "(1571915, 'CHEMBL3796307', 51, 'Displacement of [3H]-Spiperone from human recombinant dopamine D4 receptor expressed in CHOK1 cells')\n", " * postgresql://localhost/chembl_26\n", "Mean nAts 24.2, mcs nAts: 16\n", "[#6]-&!@[#6,#8]-&!@[#7,#6]1-,:;@[#6]-,:;@[#6]-,:;@[#8,#6]-,:;@[#6](-,:;@[#6]-,:;@1)-&!@[#6,#8]-&!@[#8,#6,#16]-&!@[#6]1:,-;@[#6]:,-;@[#6,#7]:,-;@[#6]:,-;@[#7,#6]:,-;@[#6,#7,#8]:,-;@1\n", "(513860, 'CHEMBL970754', 51, 'Inhibition of rat FAAH expressed in Escherichia coli')\n", " * postgresql://localhost/chembl_26\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "RDKit ERROR: [08:23:15] Aromatic bonds on non aromatic atom 10\n", "RDKit INFO: [08:23:15] Aromatic bonds on non aromatic atom 10\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Mean nAts 25.9, mcs nAts: 9\n", "[#6](-&!@[#6]-&!@[#6]-&!@[#6])-&!@[#6]1:&@[#7,#6,#8]:&@[#6,#7,#8]:&@[#6,#7,#8]:&@[#8,#7,#16]:&@1\n", "(436470, 'CHEMBL904775', 51, 'Inhibition of Plasmodium falciparum recombinant enoyl ACP reductase expressed in BL21 (DE3) cells with respect to NADH')\n", " * postgresql://localhost/chembl_26\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "RDKit ERROR: [08:23:15] Aromatic bonds on non aromatic atom 4\n", "RDKit INFO: [08:23:15] Aromatic bonds on non aromatic atom 4\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Mean nAts 24.4, mcs nAts: 9\n", "[#6]-&!@[#6]-,=;!@[#7,#6]1-&@[#6,#16]-&@[#6](-&@[#16,#7]-&@[#6]-&@1=&!@[#16,#8])=&!@[#6,#16]\n", "(932187, 'CHEMBL3073105', 51, 'Binding affinity to dopamine D2 receptor (unknown origin)')\n", " * postgresql://localhost/chembl_26\n", "Mean nAts 27.5, mcs nAts: 15\n", "[#6]1:&@[#6]:&@[#6,#7]:&@[#6](:&@[#6,#7]:&@[#6]:&@1)-&!@[#7]1-&@[#6]-&@[#6]-&@[#7](-&@[#6]-&@[#6]-&@1)-&!@[#6]-&!@[#6]-&!@[#6,#8]\n", "(587702, 'CHEMBL1037716', 51, 'Displacement of [3H]CCPA from human adenosine A1 receptor expressed in CHO cells')\n", " * postgresql://localhost/chembl_26\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "RDKit ERROR: [08:23:16] Aromatic bonds on non aromatic atom 0\n", "RDKit INFO: [08:23:16] Aromatic bonds on non aromatic atom 0\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Mean nAts 34.4, mcs nAts: 23\n", "[#6]-&!@[#7]1:&@[#6]:&@[#6]2:&@[#6](:&@[#7]:&@1):&@[#7]:&@[#6](:&@[#7]1:&@[#6]:&@2:&@[#7]:&@[#6](:&@[#7]:&@1)-&!@[#6]1:&@[#6]:&@[#6]:&@[#6]:&@[#8]:&@1)-&!@[#7]-&!@[#6](=&!@[#8])-&!@[#6]-&!@[#6,#8]\n", "(953474, 'CHEMBL2351085', 51, 'Displacement of [125I]-CX3CL1 from human CX3CR1 transfected in HEK293 cells after 24 hrs by scintillation counting analysis')\n", " * postgresql://localhost/chembl_26\n", "Mean nAts 27.0, mcs nAts: 24\n", "[#6,#8]-&!@[#6]-&!@[#6](-&!@[#6]-,=;!@[#8,#6,#7])-&!@[#7]-&!@[#6]1:&@[#7]:&@[#6](-&!@[#16,#8]-&!@[#6]-&!@[#6]2:&@[#6]:&@[#6,#7]:&@[#6,#7]:&@[#6,#7]:&@[#6,#7]:&@2):&@[#7]:&@[#6]2:&@[#6]:&@1:&@[#16]:&@[#6](:&@[#7]:&@2)=,-;!@[#8,#7]\n", "(422416, 'CHEMBL909851', 51, 'Displacement of [3H]diprenorphine from human cloned mu opioid receptor expressed in CHO cells')\n", " * postgresql://localhost/chembl_26\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "RDKit ERROR: [08:23:47] Aromatic bonds on non aromatic atom 11\n", "RDKit INFO: [08:23:47] Aromatic bonds on non aromatic atom 11\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Mean nAts 27.1, mcs nAts: 19\n", "[#6]1-&@[#6]-&@[#7]2-&@[#6]-&@[#6](-&!@[#6])-&@[#6](-&@[#6]-&@[#6]-&@2-&@[#6]-&@[#7,#6]-&@1)(-&!@[#6])-&!@[#6]1:&@[#6]:&@[#6]:&@[#6]:&@[#6](:&@[#6]:&@1)-&!@[#8,#6]\n", "(610979, 'CHEMBL1070310', 51, 'Displacement of [3H]PGE2 from mouse EP3 receptor expressed in CHO cell membrane')\n", " * postgresql://localhost/chembl_26\n", "Mean nAts 35.9, mcs nAts: 33\n", "[#6]-&!@[#6](-&!@[#6])-&!@[#6]-&!@[#6](-&!@[#7]-&!@[#6](=&!@[#8])-&!@[#6]1:&@[#6]:&@[#6](-&!@[#6]-&!@[#8]-&!@[#6]2:&@[#6]:&@[#6]:&@[#6]:&@[#6]:&@[#6]:&@2):&@[#6]:&@[#6]:&@[#6]:&@1-&!@[#6]-&!@[#6]-&!@[#6](=&!@[#8])-&!@[#8])-&!@[#6]1:&@[#6]:&@[#6]:&@[#6]:&@[#6]:&@[#6]:&@1\n", "(1772842, 'CHEMBL4229834', 51, 'Displacement of [3H]-ketanserin from human 5-HT2AR expressed in CHO-K1 cell membranes after 1.5 hrs by microbeta counting method')\n", " * postgresql://localhost/chembl_26\n", "Mean nAts 34.4, mcs nAts: 12\n", "[#6]1-,:;@[#6,#7]-,:;@[#6,#7]-,:;@[#6]:&@[#6,#7]:&@[#6]:&@[#6](:&@[#6]:&@[#6,#7]-,:;@[#7,#6]-,:;@1)-&!@[#8,#6,#16]-,=;!@[#6,#7,#8]\n", "(613739, 'CHEMBL1068886', 51, 'Displacement of [3H]WIN-35428 from human recombinant DAT expressed in BacMam virus-transduced cells by scintillation proximity assay')\n", " * postgresql://localhost/chembl_26\n", "Mean nAts 19.0, mcs nAts: 14\n", "[#17]-&!@[#6]1:&@[#6]:&@[#6]:&@[#6](:&@[#6]:&@[#6]:&@1-&!@[#17])-&!@[#6]1-&@[#6]-&@[#7,#6]-&@[#6,#7]-&@[#6,#7]-&@[#6]-&@1\n" ] } ], "source": [ "results = []\n", "for row in d:\n", " assay_id=row[0]\n", " print(row) \n", " smis = %sql \\\n", " select chembl_id,m from activities \\\n", " join rdk.mols using (molregno)\\\n", " join chembl_id_lookup on (molregno=entity_id and entity_type='COMPOUND')\\\n", " where assay_id = :assay_id\n", " ms = [Chem.MolFromSmiles(y) for x,y in smis]\n", " tpl,svg=MCS_Report(ms,threshold=0.9,completeRingsOnly=True)\n", " results.append((row,smis,tpl,svg))" ] }, { "cell_type": "code", "execution_count": 20, "metadata": {}, "outputs": [], "source": [ "for i,row in enumerate(results):\n", " ms = list(row[1])\n", " row = (row[0],ms,row[2],row[3])\n", " results[i] = row\n", "import pickle\n", "pickle.dump(results,open('../data/scaffolds_revisited_again.pkl','wb+'))" ] }, { "cell_type": "code", "execution_count": 4, "metadata": {}, "outputs": [], "source": [ "results = pickle.load(open('../data/scaffolds_revisited_again.pkl','rb'))" ] }, { "cell_type": "code", "execution_count": 21, "metadata": {}, "outputs": [ { "data": { "text/plain": [ "((1528353, 'CHEMBL3706284', 98, \"Radioligand Binding Assay: HEK293 stably expressing human orexin 2 receptor (Genebank accession numberNM_001526) were grown to confluency in DMEM (Hy ... (715 characters truncated) ... petition binding experiments in 96 well polypropylene plates were performed using [3H]-EMPA (Moraveck Corporation, specific activity = 29.6 Ci/mmol).\"),\n", " [('CHEMBL3704924', 'Cc1cc(C)nc(N[C@@H]2CCCN(C(=O)c3ccc(F)cc3-n3nccn3)[C@H]2C)n1'),\n", " ('CHEMBL3704925', 'Cc1cc(C)nc(N[C@@H]2CCCN(C(=O)c3c(F)cccc3-c3ncccn3)[C@H]2C)n1'),\n", " ('CHEMBL3704926', 'Cc1cc(C)nc(N[C@@H]2CCCN(C(=O)c3c(F)cccc3-n3nccn3)[C@H]2C)n1'),\n", " ('CHEMBL3704927', 'Cc1cc(C)nc(N[C@@H]2CCCN(C(=O)c3ccccc3-n3nccn3)[C@H]2C)n1'),\n", " ('CHEMBL3704928', 'Cc1cc(C)nc(N[C@@H]2CCCN(C(=O)c3cc(F)ccc3-n3nccn3)[C@H]2C)n1'),\n", " ('CHEMBL3704929', 'Cc1ccc(-c2ncccn2)c(C(=O)N2CCC[C@@H](Nc3nc(C)cc(C)n3)[C@@H]2C)c1'),\n", " ('CHEMBL3704930', 'Cc1ccc(-c2ncccn2)c(C(=O)N2CCC[C@@H](Nc3cc(C)nc(C(F)(F)F)n3)[C@@H]2C)c1'),\n", " ('CHEMBL3704931', 'Cc1ccc(-n2nccn2)c(C(=O)N2CCC[C@@H](Nc3cc(C)nc(C(F)(F)F)n3)[C@@H]2C)c1'),\n", " ('CHEMBL3704932', 'Cc1cc(N[C@@H]2CCCN(C(=O)c3cc(F)ccc3-c3ncccn3)[C@H]2C)nc(C(F)(F)F)n1'),\n", " ('CHEMBL3704933', 'C[C@H]1[C@H](Nc2nccc(C(F)(F)F)n2)CCCN1C(=O)c1c(F)cccc1-n1nccn1'),\n", " ('CHEMBL3704934', 'Cc1ccc(C(=O)N2CCC[C@@H](Nc3nccc(C(F)(F)F)n3)[C@@H]2C)c(-n2ccnn2)n1'),\n", " ('CHEMBL3704935', 'C[C@H]1[C@H](Nc2ccc(C(F)(F)F)cn2)CCCN1C(=O)c1ccccc1-n1nccn1'),\n", " ('CHEMBL3704936', 'Cc1ccc(C(=O)N2CCC[C@@H](Nc3ccc(C(F)(F)F)cn3)[C@@H]2C)c(-n2nccn2)c1'),\n", " ('CHEMBL3704936', 'Cc1ccc(C(=O)N2CCC[C@@H](Nc3ccc(C(F)(F)F)cn3)[C@@H]2C)c(-n2nccn2)c1'),\n", " ('CHEMBL3704937', 'Cc1ccc(C(=O)N2CCC[C@H](Nc3ccc(C(F)(F)F)cn3)[C@H]2C)c(-n2nccn2)c1'),\n", " ('CHEMBL3704938', 'CCOc1ccc(C)nc1C(=O)N1CCC[C@@H](Nc2ccc(C(F)(F)F)cn2)[C@@H]1C'),\n", " ('CHEMBL3597969', 'C[C@H]1[C@H](Nc2ccc(C(F)(F)F)cn2)CCCN1C(=O)c1cc(Cl)ccc1-n1nccn1'),\n", " ('CHEMBL3704939', 'Cc1ccc(-n2nccn2)c(C(=O)N2CCC[C@@H](Nc3ccc(C(F)(F)F)cn3)[C@@H]2C)n1'),\n", " ('CHEMBL3704940', 'COc1ccc(-n2nccn2)c(C(=O)N2CCC[C@@H](Nc3ccc(C(F)(F)F)cn3)[C@@H]2C)c1'),\n", " ('CHEMBL3704941', 'Cc1cccc(C(=O)N2CCC[C@@H](Nc3ccc(C(F)(F)F)cn3)[C@@H]2C)c1-n1nccn1'),\n", " ('CHEMBL3704942', 'C[C@H]1[C@H](Nc2ccc(C(F)(F)F)cn2)CCCN1C(=O)c1ncccc1-n1nccn1'),\n", " ('CHEMBL3704943', 'Cc1ccc(-c2ncco2)c(C(=O)N2CCC[C@@H](Nc3ccc(C(F)(F)F)cn3)[C@@H]2C)n1'),\n", " ('CHEMBL3704944', 'Cc1ccc(-c2ncccn2)c(C(=O)N2CCC[C@@H](Nc3ccc(C(F)(F)F)cn3)[C@@H]2C)n1'),\n", " ('CHEMBL3704945', 'C[C@H]1[C@H](Nc2ccc(C(F)(F)F)cn2)CCCN1C(=O)c1cc(F)ccc1-n1nccn1'),\n", " ('CHEMBL3704943', 'Cc1ccc(-c2ncco2)c(C(=O)N2CCC[C@@H](Nc3ccc(C(F)(F)F)cn3)[C@@H]2C)n1'),\n", " ('CHEMBL3704946', 'Cc1cnc(C(=O)N2CCC[C@@H](Nc3ccc(C(F)(F)F)cn3)[C@@H]2C)c(-n2nccn2)c1'),\n", " ('CHEMBL3704947', 'Cc1cnc(C(=O)N2CCC[C@@H](Nc3ccc(C(F)(F)F)cn3)[C@@H]2C)c(-c2ncccn2)c1'),\n", " ('CHEMBL3704948', 'COc1c(F)cccc1C(=O)N1CCC[C@@H](Nc2ccc(C(F)(F)F)cn2)[C@@H]1C'),\n", " ('CHEMBL3704949', 'CCOc1ccccc1C(=O)N1CCC[C@@H](Nc2ccc(C(F)(F)F)cn2)[C@@H]1C'),\n", " ('CHEMBL3704950', 'C[C@H]1[C@H](Nc2ncc(Cl)cn2)CCCN1C(=O)c1ccccc1-n1nccn1'),\n", " ('CHEMBL3640038', 'Cc1cnc(N[C@@H]2CCCN(C(=O)c3ccccc3-n3nccn3)[C@H]2C)nc1'),\n", " ('CHEMBL3704951', 'C[C@H]1[C@H](Nc2ccc(Cl)cn2)CCCN1C(=O)c1ccccc1-n1nccn1'),\n", " ('CHEMBL3704952', 'C[C@H]1[C@H](Nc2ccc(C(F)(F)F)nn2)CCCN1C(=O)c1ccccc1-n1nccn1'),\n", " ('CHEMBL3704953', 'C[C@H]1[C@H](Nc2ccc(F)cn2)CCCN1C(=O)c1ccccc1-n1nccn1'),\n", " ('CHEMBL3704954', 'C[C@H]1[C@H](Nc2ncc(C(F)(F)F)cn2)CCCN1C(=O)c1ccccc1-n1nccn1'),\n", " ('CHEMBL3704955', 'C[C@H]1[C@H](Nc2ccccn2)CCCN1C(=O)c1ccccc1-n1nccn1'),\n", " ('CHEMBL3704956', 'Cc1ccc(N[C@@H]2CCCN(C(=O)c3ccccc3-n3nccn3)[C@H]2C)nc1'),\n", " ('CHEMBL3704957', 'C[C@H]1[C@H](Nc2cnc(C(F)(F)F)cn2)CCCN1C(=O)c1ccccc1-n1nccn1'),\n", " ('CHEMBL3704958', 'C[C@H]1[C@H](Nc2ncc3ccccc3n2)CCCN1C(=O)c1ccccc1-n1nccn1'),\n", " ('CHEMBL3704959', 'C[C@H]1[C@H](Nc2ncc(F)cn2)CCCN1C(=O)c1ccccc1-n1nccn1'),\n", " ('CHEMBL3704960', 'C[C@H]1[C@H](Nc2nc3ccccc3o2)CCCN1C(=O)c1ccccc1-n1nccn1'),\n", " ('CHEMBL3704961', 'C[C@H]1[C@H](Nc2ccc(Br)cn2)CCCN1C(=O)c1ccccc1-n1nccn1'),\n", " ('CHEMBL3704962', 'COc1c(F)cccc1C(=O)N1CCC[C@@H](Nc2ccc(Br)cn2)[C@@H]1C'),\n", " ('CHEMBL3704963', 'CCOc1ccccc1C(=O)N1CCC[C@@H](Nc2ccc(Br)cn2)[C@@H]1C'),\n", " ('CHEMBL3704964', 'C[C@H]1[C@H](Nc2nc3cc(Cl)ccc3o2)CCCN1C(=O)c1ccccc1-n1nccn1'),\n", " ('CHEMBL3704965', 'CCOc1ccccc1C(=O)N1CCC[C@@H](Nc2nc3cc(Cl)ccc3o2)[C@@H]1C'),\n", " ('CHEMBL3704966', 'COc1c(F)cccc1C(=O)N1CCC[C@@H](Nc2nc3cc(Cl)ccc3o2)[C@@H]1C'),\n", " ('CHEMBL3704967', 'C[C@H]1[C@H](Nc2cnc3ccccc3n2)CCCN1C(=O)c1ccccc1-n1nccn1'),\n", " ('CHEMBL3704968', 'CCOc1ccccc1C(=O)N1CCC[C@@H](Nc2cnc3ccccc3n2)[C@@H]1C'),\n", " ('CHEMBL3704969', 'COc1c(F)cccc1C(=O)N1CCC[C@@H](Nc2cnc3ccccc3n2)[C@@H]1C'),\n", " ('CHEMBL3704970', 'C[C@H]1[C@H](Nc2nccc(-c3ccccc3)n2)CCCN1C(=O)c1ccccc1-n1nccn1'),\n", " ('CHEMBL3669006', 'COc1c(F)cccc1C(=O)N1CCC[C@@H](Nc2nccc(-c3ccccc3)n2)[C@@H]1C'),\n", " ('CHEMBL3669007', 'CCOc1ccccc1C(=O)N1CCC[C@@H](Nc2nccc(-c3ccccc3)n2)[C@@H]1C'),\n", " ('CHEMBL3669008', 'COc1c(F)cccc1C(=O)N1CCC[C@@H](Nc2ccc(C(F)(F)F)cn2)[C@H]1C'),\n", " ('CHEMBL3669009', 'CCOc1ccccc1C(=O)N1CCC[C@@H](Nc2ccc(C(F)(F)F)cn2)[C@H]1C'),\n", " ('CHEMBL3669010', 'C[C@@H]1[C@H](Nc2ccc(C(F)(F)F)cn2)CCCN1C(=O)c1ccccc1-n1nccn1'),\n", " ('CHEMBL3669011', 'C[C@@H]1[C@H](Nc2ccc(Br)cn2)CCCN1C(=O)c1ccccc1-n1nccn1'),\n", " ('CHEMBL3669012', 'COc1c(F)cccc1C(=O)N1CCC[C@@H](Nc2ccc(Br)cn2)[C@H]1C'),\n", " ('CHEMBL3669013', 'CCOc1ccccc1C(=O)N1CCC[C@@H](Nc2ccc(Br)cn2)[C@H]1C'),\n", " ('CHEMBL3639678', 'C[C@@H]1[C@H](Nc2nc3cc(Cl)ccc3o2)CCCN1C(=O)c1ccccc1-n1nccn1'),\n", " ('CHEMBL3669014', 'CCOc1ccccc1C(=O)N1CCC[C@@H](Nc2nc3cc(Cl)ccc3o2)[C@H]1C'),\n", " ('CHEMBL3669015', 'COc1c(F)cccc1C(=O)N1CCC[C@@H](Nc2nc3cc(Cl)ccc3o2)[C@H]1C'),\n", " ('CHEMBL3669016', 'C[C@@H]1[C@H](Nc2cnc3ccccc3n2)CCCN1C(=O)c1ccccc1-n1nccn1'),\n", " ('CHEMBL3669017', 'COc1c(F)cccc1C(=O)N1CCC[C@@H](Nc2cnc3ccccc3n2)[C@H]1C'),\n", " ('CHEMBL3669018', 'CCOc1ccccc1C(=O)N1CCC[C@@H](Nc2cnc3ccccc3n2)[C@H]1C'),\n", " ('CHEMBL3669019', 'C[C@@H]1[C@H](Nc2nccc(-c3ccccc3)n2)CCCN1C(=O)c1ccccc1-n1nccn1'),\n", " ('CHEMBL3669020', 'COc1c(F)cccc1C(=O)N1CCC[C@@H](Nc2nccc(-c3ccccc3)n2)[C@H]1C'),\n", " ('CHEMBL3669021', 'CCOc1ccccc1C(=O)N1CCC[C@@H](Nc2nccc(-c3ccccc3)n2)[C@H]1C'),\n", " ('CHEMBL3905361', 'Cc1cnc(C(=O)N2CCC[C@@H](Nc3cnc(C(F)(F)F)cn3)[C@@H]2C)c(-n2nccn2)c1'),\n", " ('CHEMBL3669022', 'Cc1ccc(C(=O)N2CCC[C@@H](Nc3ncc(C(F)(F)F)cn3)[C@@H]2C)c(-n2nccn2)n1'),\n", " ('CHEMBL3669023', 'Cc1ccc(C(=O)N2CCC[C@@H](Nc3ncc(C(F)(F)F)cn3)[C@@H]2C)c(-n2nccn2)c1'),\n", " ('CHEMBL3905361', 'Cc1cnc(C(=O)N2CCC[C@@H](Nc3cnc(C(F)(F)F)cn3)[C@@H]2C)c(-n2nccn2)c1'),\n", " ('CHEMBL3669025', 'Cc1cnc(C(=O)N2CCC[C@@H](Nc3nc4ccccc4o3)[C@@H]2C)c(-n2nccn2)c1'),\n", " ('CHEMBL3669022', 'Cc1ccc(C(=O)N2CCC[C@@H](Nc3ncc(C(F)(F)F)cn3)[C@@H]2C)c(-n2nccn2)n1'),\n", " ('CHEMBL3669026', 'Cc1ccc(C(=O)N2CCC[C@@H](Nc3nc4ccccc4o3)[C@@H]2C)c(-n2nccn2)n1'),\n", " ('CHEMBL3669027', 'Cc1ccc(C(=O)N2CCC[C@@H](Nc3nc4ccccc4o3)[C@@H]2C)c(-n2ccnn2)n1'),\n", " ('CHEMBL3669028', 'Cc1cnc(C(=O)N2CCC[C@@H](Nc3ccc(Cl)cn3)[C@@H]2C)c(-c2ncco2)c1'),\n", " ('CHEMBL3669029', 'Cc1ccc(-c2ncccn2)c(C(=O)N2CCC[C@@H](Nc3ncc(C(F)(F)F)cn3)[C@@H]2C)n1'),\n", " ('CHEMBL3669030', 'Cc1ccc(C(=O)N2CCC[C@@H](Nc3cnc(C(F)(F)F)cn3)[C@@H]2C)c(-n2nccn2)c1'),\n", " ('CHEMBL3669031', 'Cc1cnc(C(=O)N2CCC[C@@H](Nc3ccc(Br)cn3)[C@@H]2C)c(-c2ncco2)c1'),\n", " ('CHEMBL3669032', 'Cc1ccc(-c2ncccn2)c(C(=O)N2CCC[C@@H](Nc3nc4ccccc4o3)[C@@H]2C)n1'),\n", " ('CHEMBL3669033', 'COc1ccc(C(=O)N2CCC[C@@H](Nc3cnc(C(F)(F)F)cn3)[C@@H]2C)c(-n2nccn2)c1'),\n", " ('CHEMBL3669034', 'Cc1cnc(C(=O)N2CCC[C@@H](Nc3cnc(C(F)(F)F)cn3)[C@@H]2C)c(-c2ncco2)c1'),\n", " ('CHEMBL3669035', 'Cc1ccc(-c2ncccn2)c(C(=O)N2CCC[C@@H](Nc3cnc(C(F)(F)F)cn3)[C@@H]2C)n1'),\n", " ('CHEMBL3704957', 'C[C@H]1[C@H](Nc2cnc(C(F)(F)F)cn2)CCCN1C(=O)c1ccccc1-n1nccn1'),\n", " ('CHEMBL3669036', 'Cc1cnc(C(=O)N2CCC[C@@H](Nc3cnc(Cl)cn3)[C@@H]2C)c(-c2ncco2)c1'),\n", " ('CHEMBL3704939', 'Cc1ccc(-n2nccn2)c(C(=O)N2CCC[C@@H](Nc3ccc(C(F)(F)F)cn3)[C@@H]2C)n1'),\n", " ('CHEMBL3669037', 'Cc1cnc(C(=O)N2CCC[C@@H](Nc3nc4ccccc4o3)[C@@H]2C)c(-c2ncco2)c1'),\n", " ('CHEMBL3669038', 'COc1ccc(-n2nccn2)c(C(=O)N2CCC[C@@H](Nc3ncc(C(F)(F)F)cn3)[C@@H]2C)c1'),\n", " ('CHEMBL3669039', 'C[C@H]1[C@H](Nc2cnc(C(F)(F)F)cn2)CCCN1C(=O)c1cc(F)ccc1-n1nccn1'),\n", " ('CHEMBL3669040', 'Cc1ccc(C(=O)N2CCC[C@@H](Nc3ncc(Cl)cn3)[C@@H]2C)c(-n2nccn2)c1'),\n", " ('CHEMBL3669041', 'Cc1cnc(C(=O)N2CCC[C@@H](Nc3ccc(Br)cn3)[C@@H]2C)c(-n2nccn2)c1'),\n", " ('CHEMBL3669042', 'Cc1ccc(C(=O)N2CCC[C@@H](Nc3ccc(C(F)(F)F)cn3)[C@@H]2C)c(-n2ccnn2)n1'),\n", " ('CHEMBL3669024', 'Cc1cnc(C(=O)N2CCC[C@@H](Nc3ncc(C(F)(F)F)cn3)[C@@H]2C)c(-n2nccn2)c1'),\n", " ('CHEMBL3669043', 'COc1ccc(C(=O)N2CCC[C@@H](Nc3ncc(C(F)(F)F)cn3)[C@@H]2C)c(-n2nccn2)c1'),\n", " ('CHEMBL3669044', 'Cc1ccc(C(=O)N2CCC[C@@H](Nc3cnc(C(F)(F)F)cn3)[C@@H]2C)c(-n2ccnn2)n1'),\n", " ('CHEMBL3669045', 'COc1ccc(C(=O)N2CCC[C@@H](Nc3ccc(C(F)(F)F)cn3)[C@@H]2C)c(-n2nccn2)c1'),\n", " ('CHEMBL3669046', 'Cc1ccc(C(=O)N2CCC[C@@H](Nc3ccc(C(F)(F)F)cn3)[C@@H]2C)c(-n2nccn2)n1'),\n", " ('CHEMBL3669047', 'Cc1ccc(C(=O)N2CCC[C@@H](Nc3ccc(Cl)cn3)[C@@H]2C)c(-n2nccn2)c1'),\n", " ('CHEMBL3704951', 'C[C@H]1[C@H](Nc2ccc(Cl)cn2)CCCN1C(=O)c1ccccc1-n1nccn1'),\n", " ('CHEMBL3669048', 'Cc1cnc(C(=O)N2CCC[C@@H](Oc3ncc(C(F)(F)F)cn3)[C@@H]2C)c(-n2nccn2)c1'),\n", " ('CHEMBL3669049', 'Cc1ccc(C(=O)N2CCC[C@@H](Oc3ncc(C(F)(F)F)cn3)[C@@H]2C)c(-n2nccn2)c1'),\n", " ('CHEMBL3669050', 'C[C@H]1[C@H](Oc2ncc(C(F)(F)F)cn2)CCCN1C(=O)c1ccccc1-n1nccn1'),\n", " ('CHEMBL3669051', 'Cc1ccc(-n2nccn2)c(C(=O)N2CCC[C@@H](Oc3ncc(C(F)(F)F)cn3)[C@@H]2C)n1'),\n", " ('CHEMBL3597970', 'Cc1ccc(C(=O)N2CCC[C@@H](Oc3ccc(C(F)(F)F)cn3)[C@@H]2C)c(-n2nccn2)c1')],\n", " MCSRes(smarts='[#8,#6,#7,#9]-&!@[#6]1:&@[#6,#7]:&@[#6]:&@[#6]:&@[#6,#7]:&@[#6]:&@1-&!@[#6](=&!@[#8])-&!@[#7]1-&@[#6]-&@[#6]-&@[#6]-&@[#6](-&@[#6]-&@1-&!@[#6])-&!@[#7,#8]-&!@[#6]', numAtoms=18, numMols=105, avgNumMolAtoms=array([30, 31, 30, 29, 30, 31, 34, 33, 34, 32, 32, 31, 32, 32, 32, 30, 32,\n", " 32, 33, 32, 31, 32, 33, 32, 32, 32, 33, 29, 29, 28, 28, 28, 31, 28,\n", " 31, 27, 28, 31, 31, 28, 30, 28, 26, 26, 31, 29, 29, 31, 29, 29, 33,\n", " 31, 31, 29, 29, 31, 28, 26, 26, 31, 29, 29, 31, 29, 29, 33, 31, 31,\n", " 32, 32, 32, 32, 31, 32, 31, 31, 29, 33, 32, 29, 32, 33, 32, 33, 31,\n", " 29, 32, 31, 33, 32, 29, 29, 32, 32, 33, 32, 33, 32, 29, 28, 32, 32,\n", " 31, 32, 32]), mcsTime=30.103430032730103),\n", " \"\\n\\n\\n \\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\")" ] }, "execution_count": 21, "metadata": {}, "output_type": "execute_result" } ], "source": [ "results[0]" ] }, { "cell_type": "code", "execution_count": 13, "metadata": {}, "outputs": [], "source": [ "tmp = []\n", "for row in results:\n", " tmp.append((row[0][1],row[2].smarts,str(row[2].numAtoms/row[2].avgNumMolAtoms.mean())))\n", "with open('../data/scaffolds_revisited_again.txt','w+') as outf:\n", " print('assay_chembl_id\\tsmarts\\tfraction_of_average_molecule_size',file=outf)\n", " for row in tmp:\n", " print('\\t'.join(row),file=outf)" ] }, { "cell_type": "code", "execution_count": 14, "metadata": {}, "outputs": [ { "data": { "text/plain": [ "367" ] }, "execution_count": 14, "metadata": {}, "output_type": "execute_result" } ], "source": [ "len(results)" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "The data is organized in a dictionary with one entry per paper." ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "The `MCS_Report()` function defined above prints out the mean number of atoms per molecule in the input along with the size of the MCS. This is intended to help assess whether or not the MCS is actually a scaffold." ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "How many \"scaffolds\" do we have in total?" ] }, { "cell_type": "code", "execution_count": 7, "metadata": {}, "outputs": [ { "data": { "text/html": [ "
\n", "\n", "\n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", "
assay_idnumAtomsavgNumMolAtomssmartstime
015283531830.676190[#8,#6,#7,#9]-&!@[#6]1:&@[#6,#7]:&@[#6]:&@[#6]...30.103430
115276051518.164948[#7]-&!@[#6]1=&@[#7]-&@[#6](-&@[#6]-&@[#8]-&@1...0.049682
215371481923.814433[#8]=&!@[#6](-&!@[#6]-&!@[#7,#8]-&!@[#6]1:&@[#...0.114761
315355082732.147368[#6,#7,#8]-,=;!@[#6,#16](=,-;!@[#8,#6])-&!@[#7...0.473388
415471241924.715789[#6]-&!@[#6]12-&@[#6]-&@[#6]-&@[#6]3-&@[#6](-&...4.220924
\n", "
" ], "text/plain": [ " assay_id numAtoms avgNumMolAtoms \\\n", "0 1528353 18 30.676190 \n", "1 1527605 15 18.164948 \n", "2 1537148 19 23.814433 \n", "3 1535508 27 32.147368 \n", "4 1547124 19 24.715789 \n", "\n", " smarts time \n", "0 [#8,#6,#7,#9]-&!@[#6]1:&@[#6,#7]:&@[#6]:&@[#6]... 30.103430 \n", "1 [#7]-&!@[#6]1=&@[#7]-&@[#6](-&@[#6]-&@[#8]-&@1... 0.049682 \n", "2 [#8]=&!@[#6](-&!@[#6]-&!@[#7,#8]-&!@[#6]1:&@[#... 0.114761 \n", "3 [#6,#7,#8]-,=;!@[#6,#16](=,-;!@[#8,#6])-&!@[#7... 0.473388 \n", "4 [#6]-&!@[#6]12-&@[#6]-&@[#6]-&@[#6]3-&@[#6](-&... 4.220924 " ] }, "execution_count": 7, "metadata": {}, "output_type": "execute_result" } ], "source": [ "tbl = []\n", "for row in results:\n", " db,smis,tpl,svg = row\n", " m = Chem.MolFromSmarts(tpl.smarts)\n", " m.UpdatePropertyCache(False)\n", " rdDepictor.Compute2DCoords(m)\n", " #svg = moltosvg(m,kekulize=False)\n", " tbl.append((db[0],tpl.numAtoms,tpl.avgNumMolAtoms.mean(),tpl.smarts,tpl.mcsTime))\n", "df = pd.DataFrame(data=tbl,columns=('assay_id','numAtoms','avgNumMolAtoms','smarts','time'))\n", "#PandasTools.RenderImagesInAllDataFrames(images=True)\n", "df.head(5)" ] }, { "cell_type": "code", "execution_count": 8, "metadata": {}, "outputs": [ { "data": { "text/plain": [ "367" ] }, "execution_count": 8, "metadata": {}, "output_type": "execute_result" } ], "source": [ "len(df)" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "How many are reasonably sized?" ] }, { "cell_type": "code", "execution_count": 9, "metadata": {}, "outputs": [ { "data": { "text/plain": [ "357" ] }, "execution_count": 9, "metadata": {}, "output_type": "execute_result" } ], "source": [ "len(df[df.numAtoms>6])" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "How many make up a large percentage of the average molecule size?" ] }, { "cell_type": "code", "execution_count": 10, "metadata": {}, "outputs": [ { "data": { "text/plain": [ "205" ] }, "execution_count": 10, "metadata": {}, "output_type": "execute_result" } ], "source": [ "len(df[df.numAtoms/df.avgNumMolAtoms>0.6])" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "Not bad! It's still worth looking at the ones that are super small:" ] }, { "cell_type": "code", "execution_count": 46, "metadata": {}, "outputs": [ { "data": { "text/html": [ "\n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", "
assay_idnumAtomsavgNumMolAtomsmolsmartstime
93219473534.382353\"Mol\"/[#6,#7]-[#16](-,=[#7,#8])(=[#8])=,-[#8,#6]0.011775
161872705516.116667\"Mol\"/[#7,#6]1-,:[#6,#7,#8]-,:[#6,#7,#8]-,:[#6,#7,#8]-,:[#6,#7,#8]-,:10.018745
241700655011.785714\"Mol\"/0.000230
250700659011.785714\"Mol\"/0.000242
251700658011.785714\"Mol\"/0.000235
252700657011.785714\"Mol\"/0.000287
253700656011.785714\"Mol\"/0.000229
279411464641.471698\"Mol\"/[#6]1:,-[#6]:,-[#6]:,-[#6]:,-[#6]:,-[#6]:,-10.058937
316835846613.538462\"Mol\"/[#6,#5,#7,#8,#16,#17,#35]-[#7,#6]1:,-[#6,#7,#16]:,-,=[#6,#7,#16]:,-[#7,#6]:,-,=[#7,#6]:,-10.022784
325344235517.339623\"Mol\"/[#6,#7]-[#16](-,=[#7,#8])(=[#8])=,-[#8,#6,#7]0.006560
326344236517.339623\"Mol\"/[#6,#7]-[#16](-,=[#7,#8])(=[#8])=,-[#8,#6,#7]0.007446
" ], "text/plain": [ " assay_id numAtoms avgNumMolAtoms mol smarts time\n", "93 219473 5 34.382353 \"Mol\"/ [#6,#7]-[#16](-,=[#7,#8])(=[#8])=,-[#8,#6] 0.011775\n", "161 872705 5 16.116667 \"Mol\"/ [#7,#6]1-,:[#6,#7,#8]-,:[#6,#7,#8]-,:[#6,#7,#8]-,:[#6,#7,#8]-,:1 0.018745\n", "241 700655 0 11.785714 \"Mol\"/ 0.000230\n", "250 700659 0 11.785714 \"Mol\"/ 0.000242\n", "251 700658 0 11.785714 \"Mol\"/ 0.000235\n", "252 700657 0 11.785714 \"Mol\"/ 0.000287\n", "253 700656 0 11.785714 \"Mol\"/ 0.000229\n", "279 411464 6 41.471698 \"Mol\"/ [#6]1:,-[#6]:,-[#6]:,-[#6]:,-[#6]:,-[#6]:,-1 0.058937\n", "316 835846 6 13.538462 \"Mol\"/ [#6,#5,#7,#8,#16,#17,#35]-[#7,#6]1:,-[#6,#7,#16]:,-,=[#6,#7,#16]:,-[#7,#6]:,-,=[#7,#6]:,-1 0.022784\n", "325 344235 5 17.339623 \"Mol\"/ [#6,#7]-[#16](-,=[#7,#8])(=[#8])=,-[#8,#6,#7] 0.006560\n", "326 344236 5 17.339623 \"Mol\"/ [#6,#7]-[#16](-,=[#7,#8])(=[#8])=,-[#8,#6,#7] 0.007446" ] }, "execution_count": 46, "metadata": {}, "output_type": "execute_result" } ], "source": [ "df[df.numAtoms<=6]" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "We can also render those better:" ] }, { "cell_type": "code", "execution_count": 56, "metadata": {}, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "2885\n" ] } ], "source": [ "d = %sql postgresql://localhost/chembl_23 \\\n", "select * from (\\\n", " select assay_id,count(distinct(molregno)) cnt,description \\\n", " from activities join assays using(assay_id) \\\n", " where standard_type = 'Ki' and confidence_score=9 and assay_type='B' and relationship_type='D' \\\n", " group by (assay_id,description) order by cnt desc) tmp \\\n", " where cnt<50 and cnt>20;\n", "print(len(d))" ] }, { "cell_type": "code", "execution_count": 57, "metadata": {}, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "Row: 1 Displacement of [3H]PSB0413 from human platelet P2Y12 receptor\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 32.5, mcs nAts: 18\n", "[#6,#8,#16]-[#6]1:,-[#6]:,-[#6](-[#8,#7]):,-[#6]2:[#6](:,-[#6]:,-1)-,:[#6](=,-[#8,#6])-,:[#6]1:,-[#6]:,-[#6]:[#6]:,-[#6]:,-[#6]:1-,:[#6]-,:2=,-[#8]\n", "Row: 2 Displacement of [125I]RTI55 from human DAT expressed in COS1 cell membrane\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 19.0, mcs nAts: 7\n", "[#6]-[#6]1=,-,:[#6]-,:[#6,#7]-,:[#6]-,:[#6,#7]-,:[#6]-,:1\n", "Row: 3 Displacement of [3H]ZM-241385 from human adenosine A2a receptor expressed in HEK cells\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 30.3, mcs nAts: 19\n", "[#6]-[#7]1:[#6](=[#8]):[#6]2:[#7]:[#6](-[#6]3:[#6,#7]:[#7]:[#7,#6](:[#6]:3)-[#6,#7]):[#7]:[#6]:2:[#7](:[#6]:1=[#8])-[#6]\n", "Row: 4 Binding affinity to human factor 10a after 10 mins\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 33.3, mcs nAts: 26\n", "[#6]1:,-[#6]:,-[#6](-[#17,#6]):,=[#6](:,-[#16]:,-1)-[#6](=[#8])-[#7]-[#6]1:[#6]:[#6]:[#6](:[#6]:[#6]:1-[#6](=[#8])-[#7]-[#6]1:[#6]:[#6]:[#6](:[#6]:[#6]:1)-[#17])-[#17]\n", "Row: 5 Displacement of [125I]NDP-MSH from human MC4R expressed in HEK293 cells\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 37.6, mcs nAts: 31\n", "[#6,#7,#8]-,=,#[#8,#6]-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1-[#7]1-[#6]-[#6]-[#7](-[#6]-[#6]-1)-[#6](=[#8])-[#6]1-[#6]-[#7](-[#6](-[#6])-[#6])-[#6]-[#6]-1-[#6]1:[#6]:[#6]:[#6](:[#6]:[#6]:1)-[#17]\n", "Row: 6 Binding affinity to human thrombin after 10 mins\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 33.3, mcs nAts: 26\n", "[#6]1:,-[#6]:,-[#6](-[#17,#6]):,=[#6](:,-[#16]:,-1)-[#6](=[#8])-[#7]-[#6]1:[#6]:[#6]:[#6](:[#6]:[#6]:1-[#6](=[#8])-[#7]-[#6]1:[#6]:[#6]:[#6](:[#6]:[#6]:1)-[#17])-[#17]\n", "Row: 7 Displacement of biotinylated phosphatidylinositol-3,4,5-phosphate from mouse AKT1 PH domain by surface plasmon resonance competitive binding assay\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 26.7, mcs nAts: 15\n", "[#6]1:[#6]:[#6]:[#6](:[#6]:[#6]:1)-[#16](=[#8])(=[#8])-[#7]-[#6]1:[#7]:[#7]:[#6]:[#16]:1\n", "Row: 8 Displacement of [3H]diprenorphine from human MOP receptor expressed in CHO cell membranes\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 26.7, mcs nAts: 21\n", "[#6]-[#6](-[#6]1:[#6]:[#6]:[#6]:[#6,#7]:[#6,#7]:1)-[#7]1-[#6]-[#6]-[#6](-[#6]-[#6]-1)(-[#8])-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1\n", "Row: 9 Displacement of [3H]diprenorphine from human DOP receptor expressed in CHO cell membranes\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 26.7, mcs nAts: 21\n", "[#6]-[#6](-[#6]1:[#6]:[#6]:[#6]:[#6,#7]:[#6,#7]:1)-[#7]1-[#6]-[#6]-[#6](-[#6]-[#6]-1)(-[#8])-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1\n", "Row: 10 Displacement of [3H]diprenorphine from human KOP receptor expressed in CHO cell membranes\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 26.7, mcs nAts: 21\n", "[#6]-[#6](-[#6]1:[#6]:[#6]:[#6]:[#6,#7]:[#6,#7]:1)-[#7]1-[#6]-[#6]-[#6](-[#6]-[#6]-1)(-[#8])-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1\n", "Row: 11 Displacement of [125I]-IL8 from human CXCR2 transfected in HEK293 cells after 4 hrs by microbeta counting analysis\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 27.0, mcs nAts: 24\n", "[#6,#8]-[#6]-[#6](-[#6]-,=[#8,#6,#7])-[#7]-[#6]1:[#7]:[#6](-[#16,#8]-[#6]-[#6]2:[#6]:[#6,#7]:[#6,#7]:[#6,#7]:[#6,#7]:2):[#7]:[#6]2:[#6]:1:[#16]:[#6](:[#7]:2)=,-[#8,#7]\n", "Row: 12 Displacement of [3H]neurokinin A from human NK2 receptor\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 44.4, mcs nAts: 23\n", "[#6,#8]-,=[#6](=,-[#8,#6])-[#7]-[#6]1(-[#6](=[#8])-[#7]-[#6](-[#6]-,=[#6,#7,#8]-[#6,#7])-[#6]-[#6]2:[#6]:[#6]:[#6]:[#6]:[#6]:2)-[#6]-[#6]-[#6]-[#6]-1\n", "Row: 13 Displacement of [125I]RTI55 from human SERT expressed in COS1 cell membrane\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 19.0, mcs nAts: 7\n", "[#6]-[#6]1=,-,:[#6]-,:[#6,#7]-,:[#6]-,:[#6,#7]-,:[#6]-,:1\n", "Row: 14 Displacement of [3H]CP-55,940 from CB2 receptor (unknown origin) after 1 hr by scintillation counting analysis\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 30.3, mcs nAts: 17\n", "[#6]-[#7](-[#6]-[#6]1:[#6]:[#6]:[#6](:[#6]:[#6]:1)-[#7](-[#6]-[#6])-[#6]-[#6])-[#16,#6](=,-[#8,#6])-,=[#6,#8]\n", "Row: 15 Displacement of [125I]RTI55 from human NET expressed in COS1 cell membrane\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 19.0, mcs nAts: 7\n", "[#6]-[#6]1=,-,:[#6]-,:[#6,#7]-,:[#6]-,:[#6,#7]-,:[#6]-,:1\n", "Row: 16 Displacement of [3H]-MPEP from human mGluR5 expressed in HEK293 cells after 2 hrs\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 23.1, mcs nAts: 14\n", "[#6]1:[#6]:[#6]:[#6](:[#7,#6]:[#6,#7]:1)-[#6]#[#6]-[#6]1:[#6,#7]:[#6]:[#6]:[#6,#7]:[#6,#7]:1\n", "Row: 17 Inhibition of [3H]LSD binding to human 5-hydroxytryptamine 6 receptor expressed in HeLa cells\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 27.7, mcs nAts: 25\n", "[#8]=[#16](=[#8])(-[#7]-[#6]1:[#6]:[#6]:[#6]2:[#6](:[#6]:1):[#6](:[#6]:[#7]:2)-[#6]-[#6]1-[#6,#7]-[#6]-[#6]-[#7,#6]-1)-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1\n", "Row: 18 Inhibition of GST-tagged human recombinant wild type LRRK2 using fluorescein- ERM as substrate after 1 hr by TR-FRET assay\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 21.0, mcs nAts: 17\n", "[#6]-[#16,#6,#7,#8]-[#6]1:[#16]:[#6](-[#6]2:[#6,#7]:[#6]:[#7,#6]:[#7,#16]:2):[#6]2:[#6]:1-[#6](=[#8])-[#7,#6]-[#6]-[#6]-2\n", "Row: 19 Inhibition of [125I]Tyr-o-CRF binding to Corticotropin releasing factor receptor 1 expressed in IMR-32 human neuroblastoma cells\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 29.6, mcs nAts: 21\n", "[#9]-[#6](-[#9])(-[#9])-[#6]1:[#7]:[#6](-[#7]-[#6]2:[#6](-[#17]):[#6]:[#6](:[#6]:[#6]:2-[#17])-[#17]):[#16]:[#6]:1-[#6]-[#7]\n", "Row: 20 Inhibition of human recombinant TACE\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 28.2, mcs nAts: 11\n", "[#8,#7]-,=[#6](=,-[#8,#7])-[#6]1(-[#6])-[#6]-[#6]-1-[#6](=[#8])-[#7]-[#8]\n", "Row: 21 Displacement of [3H]DHT from human androgen receptor after 16 hrs by scintillation counting\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 28.9, mcs nAts: 19\n", "[#6]1:[#6]:[#6]:[#6](:[#6]:[#6]:1)-[#6](=[#8])-[#6]-[#6](-[#7]-[#6]1:[#6]:[#6]:[#6](:[#6]:[#6]:1)-[#7,#6,#8,#9])-[#6]\n", "Row: 22 Displacement of [3H]WIN35428 from human recombinant DAT transfected in HEK293 cell membrane\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 21.5, mcs nAts: 19\n", "[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1-[#8]-[#6](-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1)-[#6]1-[#6]-[#6]-[#7]-[#6]-1\n", "Row: 23 Inhibitory activity against papain using Z-Phe-Arg-NHNp substrate\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 22.0, mcs nAts: 12\n", "[#6]-[#6,#7](-[#7]-[#6](=,-[#8,#6])-,=[#8,#6])-[#6](=[#8])-[#7]-[#6]-[#6]#,-,=[#7,#6,#8]\n", "Row: 24 Inhibitory activity against bovine cathepsin L using Z-Phe-Arg-NHMec substrate\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 22.0, mcs nAts: 12\n", "[#6]-[#6,#7](-[#7]-[#6](=,-[#8,#6])-,=[#8,#6])-[#6](=[#8])-[#7]-[#6]-[#6]#,-,=[#7,#6,#8]\n", "Row: 25 Inhibitory activity against human cathepsin S using Z-Val-Val-Arg-NHMec substrate\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 22.0, mcs nAts: 12\n", "[#6]-[#6,#7](-[#7]-[#6](=,-[#8,#6])-,=[#8,#6])-[#6](=[#8])-[#7]-[#6]-[#6]#,-,=[#7,#6,#8]\n", "Row: 26 Inhibitory activity against human cathepsin K using Z-Leu-Arg-NHMec substrate\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 22.0, mcs nAts: 12\n", "[#6]-[#6,#7](-[#7]-[#6](=,-[#8,#6])-,=[#8,#6])-[#6](=[#8])-[#7]-[#6]-[#6]#,-,=[#7,#6,#8]\n", "Row: 27 Displacement of [125I]-sauvagine from human CRF-1 receptor expressed in human IMR-32 cells after 2 hrs by scintillation counting\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 25.5, mcs nAts: 20\n", "[#6,#7,#8]-[#6]-[#6]-[#7,#6,#8,#16]-[#6]1:[#7]:[#6](-[#6,#8]):[#6](:[#7]:[#6]:1-[#6,#8,#9,#17,#53])-[#6]1:[#6]:[#6,#7]:[#6](:[#6,#7]:[#6]:1-[#17,#6,#7,#8])-[#17,#6,#8]\n", "Row: 28 Inhibitory constant against Leishmania major deoxyuridine 5'-triphosphate nucleotidohydrolase\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 28.2, mcs nAts: 18\n", "[#6,#7,#8]-,=[#6,#14,#15,#16](=,-[#8,#6])-[#8,#7,#14]-[#6,#8]-[#6]1-[#8,#6]-[#6](-[#7]2:[#6]:[#6]:[#6](:[#7]:[#6]:2=[#8])=[#8])-[#6,#8]-,=[#6]-1\n", "Row: 29 Binding affinity to bovine adenosine A1 receptor\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 28.5, mcs nAts: 24\n", "[#6]-[#7]-[#6]1:[#7]:[#6](-[#6]2:[#6]:[#6]:[#6]:[#6]:[#6]:2):[#7]:[#6]2:[#6]:1:[#7]:[#7]:[#7]:2-[#6]-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1\n", "Row: 30 Displacement of [3H]CP-55,940 from CB1 receptor (unknown origin) after 1 hr by scintillation counting analysis\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 30.4, mcs nAts: 17\n", "[#6]-[#7](-[#6]-[#6]1:[#6]:[#6]:[#6](:[#6]:[#6]:1)-[#7](-[#6]-[#6])-[#6]-[#6])-[#16,#6](=,-[#8,#6])-,=[#6,#8]\n", "Row: 31 Displacement of [3H]CP-55940 from human CB1 receptor expressed in CHO cell membranes after 1 hr by scintillation counting analysis\n", " * postgresql://localhost/chembl_23\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Mean nAts 30.2, mcs nAts: 18\n", "[#7,#6,#8]-[#6]1:[#6]:[#6]:[#6](:[#6]:[#6]:1)-[#6]-[#7]-[#16](=[#8])(=[#8])-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1\n", "Row: 32 Displacement of [3H]CP-55940 from human CB2 receptor expressed in CHO cell membranes after 1 hr by scintillation counting analysis\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 30.2, mcs nAts: 18\n", "[#7,#6,#8]-[#6]1:[#6]:[#6]:[#6](:[#6]:[#6]:1)-[#6]-[#7]-[#16](=[#8])(=[#8])-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1\n", "Row: 33 Displacement of [3H]histamine from human histamine H4 receptor\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 19.3, mcs nAts: 9\n", "[#7]-[#6]1:[#6,#7]:[#6](-[#7]):[#7,#6]:[#6](:[#7,#6]:1)-[#7]\n", "Row: 34 Binding affinity for HIV-1 protease enzyme was measured by using fluorescent peptide substrate\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 39.9, mcs nAts: 28\n", "[#6]-[#6]-[#7]1-[#6](=[#8,#7])-[#7](-[#6]-[#6])-[#6](-[#6]-[#6]2:[#6]:[#6]:[#6]:[#6]:[#6]:2)-[#6](-[#6](-[#6]-1-[#6]-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1)-[#8])-[#8]\n", "Row: 35 BindingDB_Patents: Radioligand Binding Assay. The affinity of a test compound for the human dopamine receptor subtype hDRD2 was determined by radioligand binding assays in CHO-K1 cells stably transfected with hDRD2 receptor, as follows. The cDNA coding sequence of hDRD2 (GenBank accession No. X51362) was subcloned into the mammalian expression vector pcDNA3.1/GS (Life Technologies). Clonal cell lines stably expressing hDRD2 were obtained by transfection into CHO-K1 cells and subsequently selected with culture medium containing 0.3 mg/mL of zeocin (Life Technologies).Membranes for in vitro receptor binding assays were obtained by the following procedures. CHO-K1 cells expressing hDRD2 were homogenized in ice-cold buffer with 10 mM Tris-HCl, 5 mM EDTA, 3 mM EGTA, 1 mM phenylmethylsuphonyl fluoride, pH 7.6 using Polytron PT10-35GT (Kinematica) at 18,000 rpm for 30 seconds and centrifuged at 500xg for 10 minutes. The supernatant containing the plasma membranes was centrifuged at 100,000xg for 30 minutes and the pellet was resuspended.\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 114.3, mcs nAts: 87\n", "[#6]-[#6](-[#8])-[#6]1-[#7]-[#6](=[#8])-[#6](-[#6]-[#6]-[#6]-[#6]-[#7])-[#7]-[#6](=[#8])-[#6](-[#6]-[#6]2:[#6]:[#7]:[#6]3:[#6]:2:[#6]:[#6]:[#6]:[#6]:3)-[#7]-[#6](=[#8])-[#6](-[#6]-[#6]2:[#6]:[#6]:[#6,#7]:[#6,#7]:[#6]:2)-[#7]-[#6](=[#8])-[#6](-[#6]-[#6]2:[#6]:[#6]:[#6]:[#6]:[#6]:2)-[#7]-[#6](-[#6](-[#7]-[#6](-[#6](-[#6]-[#6]-[#6]-[#6]-[#7]-[#6](-[#6](-[#7]-[#6]-1=[#8])-[#6]-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1)=[#8])-[#7]-[#6]-[#6]-[#6,#7,#16]-,=[#6,#7,#8,#16])=[#8])-[#6]-[#6]-[#6]-[#7]-[#6](=[#7])-[#7])=[#8]\n", "Row: 36 Displacement of [125I]RTI55 from DAT in rat brain synaptosomes\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 33.5, mcs nAts: 26\n", "[#6]-[#6]-[#7]1-[#6]-[#6]-[#7,#6](-[#6]-[#6]-1)-[#6]-[#6]-[#8]-[#6](-[#6]1:[#6]:[#6]:[#6](:[#6]:[#6]:1)-[#9])-[#6]1:[#6]:[#6]:[#6](:[#6]:[#6]:1)-[#9]\n", "Row: 37 Inhibition of human alpha-thrombin using tPa (CH3SO2-D-Cha-Gly-Arg-pNA.AcOH) as chromogenic substrate by kinetic photometric assay\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 25.3, mcs nAts: 18\n", "[#6,#7]-[#6,#7]-[#6]-[#7,#6]1-[#6]-[#6]-[#6]-[#6,#7]-1-[#6](=[#8])-[#7,#6]-[#6]-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1\n", "Row: 38 Displacement of [125I]neurokinin A from human NK2 receptor expressed in CHOK1 cells\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 52.4, mcs nAts: 42\n", "[#8]=[#6]1-[#6]-[#6]-[#6](=[#8])-[#7]-[#6](-[#6]-[#6]2:[#6]:[#7]:[#6]3:[#6]:2:[#6]:[#6]:[#6]:[#6]:3)-[#6](=[#8])-[#7]-[#6](-[#6](-[#7]-[#6](-[#6]-[#7]-1)-[#6]-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1)=[#8])-[#6]-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1\n", "Row: 39 Displacement of [125I]DOI from human recombinant 5HT2C expressed in HEK293E cells\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 18.3, mcs nAts: 15\n", "[#8]=[#6]1-[#6]2:[#6](-[#8,#6,#9,#16,#17]):[#6]:[#6]:[#6]:[#6]:2-[#6]2-[#7]-1-[#6]-[#6]-[#7]-[#6]-2\n", "Row: 40 Displacement of [3H]LSD from human recombinant 5HT2B expressed in HEK293E cells\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 18.3, mcs nAts: 15\n", "[#8]=[#6]1-[#6]2:[#6](-[#8,#6,#9,#16,#17]):[#6]:[#6]:[#6]:[#6]:2-[#6]2-[#7]-1-[#6]-[#6]-[#7]-[#6]-2\n", "Row: 41 Displacement of [125I]DOI from human recombinant 5HT2A expressed in HEK293E cells\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 18.3, mcs nAts: 15\n", "[#8]=[#6]1-[#6]2:[#6](-[#8,#6,#9,#16,#17]):[#6]:[#6]:[#6]:[#6]:2-[#6]2-[#7]-1-[#6]-[#6]-[#7]-[#6]-2\n", "Row: 42 Displacement of [3H]LSD from human cloned 5-HT6 receptor expressed in HEK293 cells\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 27.8, mcs nAts: 25\n", "[#6]-[#7](-[#6])-[#6]1-[#6]-[#6]-[#6]2:[#6](-[#6]-1):[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1:[#7]:2-[#16](=[#8])(=[#8])-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1\n", "Row: 43 Inhibition of 6-His tagged human ERK2 expressed in Escherichia coli measured over 30 mins by competition assay\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 30.6, mcs nAts: 22\n", "[#8,#6]=,-[#6]1:[#6,#7]:[#6](-[#6]2:[#6,#7]:[#6]:[#7]:[#6](:[#7,#6]:2)-[#7]-[#6]):[#6]:[#6,#7]:[#7]:1-[#6]-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1\n", "Row: 44 Displacement of [125I]RTI55 from SERT in rat brain synaptosomes\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 33.5, mcs nAts: 26\n", "[#6]-[#6]-[#7]1-[#6]-[#6]-[#7,#6](-[#6]-[#6]-1)-[#6]-[#6]-[#8]-[#6](-[#6]1:[#6]:[#6]:[#6](:[#6]:[#6]:1)-[#9])-[#6]1:[#6]:[#6]:[#6](:[#6]:[#6]:1)-[#9]\n", "Row: 45 Inhibition of human Poly (ADP-ribose) polymerase 1 enzyme\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 20.7, mcs nAts: 14\n", "[#8]=[#6]1-[#7]-[#6]-[#6]-[#7]2:,-[#6]3:[#6]-1:[#6]:[#6]:[#6]:[#6]:3:,-[#6]:,-[#6]:,-2\n", "Row: 46 Inhibition of human PPO by capillary electrophoresis method\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 27.2, mcs nAts: 24\n", "[#6,#8]#,-[#6,#8]-[#6]-[#16]-[#6]1:[#7]:[#6]2:[#6]:[#6](-[#7]3:[#7]:[#6](-[#6](-[#6])(-[#6])-[#6]):[#16,#8]:[#6]:3=[#8]):[#6](:[#6]:[#6]:2:[#16]:1)-[#9,#17,#35]\n", "Row: 47 Inhibitory concentration against Bacillus subtilis DNA polymerase IIIC using [3H]dTMP 250 pM (30 degree C for 10 min)\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 26.5, mcs nAts: 22\n", "[#6]-[#6]-[#6]1:[#6]:[#6](-[#7]-[#6]2:[#6]:[#6](=[#8]):[#7](:[#6](:[#7]:2)=[#8])-[#6]-[#6,#7]-,=,#[#6,#8]-[#8,#6,#7]):[#6]:[#6]:[#6]:1-[#6]\n", "Row: 48 Displacement of [3H]SCH-23390 from rat dopamine D1 receptor\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 22.9, mcs nAts: 11\n", "[#6,#8]-,=[#6,#7]1:,-[#6]:,-[#6]:,-[#6]2:[#6](:,-[#6]:,-1)-,:[#6]:,-[#6,#7]-,:[#6,#7]-,:[#6]-,:2\n", "Row: 49 Inhibition of human ERAP2 preincubated for 30 to 60 mins followed by addition of Arg-AMC as substrate measured for 15 mins by spectrofluorimetric method\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 19.2, mcs nAts: 9\n", "[#6]-[#7,#6]-[#6]-[#6](-[#7])-[#15](=,-[#8,#6])(-,=[#8])-[#8,#6]\n", "Row: 50 Inhibition of human recombinant cathepsin S expressed in baculovirus by fluorescence assay\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 36.7, mcs nAts: 33\n", "[#6]-[#6]-[#6]1-[#8]-[#6]-[#6](-[#6]-1-[#7]-[#6](=[#8])-[#6](-[#6]-[#6]1(-[#6])-[#6]-[#6]-[#6]-[#6]-1)-[#7]-[#6](=[#8])-[#6]1:[#6]:[#6]:[#6](:[#7,#6]:[#6]:1)-[#7]-[#16](-,=[#6,#8])(=[#8])=,-[#8,#6,#7])=[#8]\n", "Row: 51 Displacement of [3H]SCH-58261 from human adenosine A2A receptor expressed in HEK cell membranes after 60 mins by microplate scintillation counting analysis\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 28.1, mcs nAts: 21\n", "[#7]-[#6]1:[#7,#6]:[#6](-[#6](=[#8])-[#7]-[#6]-[#6]2:,-[#6,#7]:,-[#6,#7]:,-[#6,#7]:,-[#6]:,-[#6,#7]:,-2):[#6]2:[#6](:[#7]:1):[#6]:[#6]:[#6]:[#6]:2\n", "Row: 52 Displacement of [125I]urotensin 2 from urotensin 2 receptor in human RMS13 cells by scintillation proximity assay\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 42.1, mcs nAts: 27\n", "[#6]-[#8]-[#6]1:[#6]:[#6]:[#6](:[#6]:[#6]:1-[#8]-[#6])-[#6]-[#7]1-[#6](=[#8])-[#6]2:[#6]:[#6]:[#6]:[#6](:[#6]:2-[#6]-1)-[#7]1-[#6]-[#6]-[#7]-[#6]-[#6]-1\n", "Row: 53 Displacement of [3H]LSD from human recombinant 5HT2B receptor stably expressed in HEK cells\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 19.2, mcs nAts: 17\n", "[#7,#6,#16]=,-[#6,#7]1-,=[#7,#6]-[#6,#7](=,-[#8,#6])-[#6](-[#7,#6]-1)=[#6]-[#6]1:[#6]:[#7]:[#6]2:[#6]:1:[#6]:[#6]:[#6]:[#6]:2\n", "Row: 54 Inhibition of human recombinant carbonic anhydrase 1 by stopped-flow CO2 hydrase assay\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 17.6, mcs nAts: 6\n", "[#6]1:,-[#6,#7]:,-[#6,#7,#8]:,-[#6,#16]:,-[#6]:,-[#6,#7]:,-1\n", "Row: 55 Inhibition of human recombinant carbonic anhydrase 2 by stopped-flow CO2 hydrase assay\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 17.6, mcs nAts: 6\n", "[#6]1:,-[#6,#7]:,-[#6,#7,#8]:,-[#6,#16]:,-[#6]:,-[#6,#7]:,-1\n", "Row: 56 Inhibition of Helicobacter pylori recombinant carbonic anhydrase by stopped-flow CO2 hydrase assay\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 17.6, mcs nAts: 6\n", "[#6]1:,-[#6,#7]:,-[#6,#7,#8]:,-[#6,#16]:,-[#6]:,-[#6,#7]:,-1\n", "Row: 57 Inhibition of rat FAAH\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 25.1, mcs nAts: 11\n", "[#6]-[#6]-[#6]-[#6]-[#6](=[#8])-[#6]1:[#7]:[#6,#7]:[#6,#7]:[#8,#7,#16]:1\n", "Row: 58 Binding affinity to factor 7a\n", " * postgresql://localhost/chembl_23\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Mean nAts 35.0, mcs nAts: 33\n", "[#7]=[#6](-[#7])-[#6]1:[#6]:[#6]:[#6]2:[#6](:[#6]:1):[#7]:[#6](:[#7]:2)-[#6]1:[#6]:[#6](-[#6](-[#6]-[#6](=[#8])-[#8])-[#6](=[#8])-[#8]):[#6]:[#6](:[#6]:1-[#8])-[#6]1:[#6]:[#6]:[#6]:[#6,#7]:[#6]:1\n", "Row: 59 Displacement of Flu-BID/FAM-BID from His-tagged MCL1 (171 to 327) (unknown origin) expressed in Escherichia coli BL21(DE3) after 3 hrs by fluorescence polarization assay\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 28.4, mcs nAts: 18\n", "[#6,#8]-,=[#16,#6](=,-[#8,#6])-[#7]-[#6]1:[#6]:[#6](-[#16,#6]-[#6]-[#6]):[#6](:[#6]2:[#6]:1:[#6]:[#6]:[#6]:[#6]:2)-[#8]\n", "Row: 60 Inhibition of fluorescently labeled VER51001 binding to full length human HSP90beta after 30 mins by fluorescence polarization assay\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 26.1, mcs nAts: 19\n", "[#6]-[#16,#6,#7,#8]-[#6]1:[#7]:[#6](-[#6]2:[#6]:[#6]:[#6](:[#6]:[#6]:2-[#6,#17])-[#9,#6,#8,#17]):[#6]2:[#6](:[#7]:1):[#7]:[#6,#7]:[#6,#7]:2\n", "Row: 61 Inhibition of human recombinant cathepsin K expressed in baculovirus by fluorescence assay\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 36.7, mcs nAts: 33\n", "[#6]-[#6]-[#6]1-[#8]-[#6]-[#6](-[#6]-1-[#7]-[#6](=[#8])-[#6](-[#6]-[#6]1(-[#6])-[#6]-[#6]-[#6]-[#6]-1)-[#7]-[#6](=[#8])-[#6]1:[#6]:[#6]:[#6](:[#7,#6]:[#6]:1)-[#7]-[#16](-,=[#6,#8])(=[#8])=,-[#8,#6,#7])=[#8]\n", "Row: 62 Displacement of [3H](+)-pentazocine from human sigma 1 receptor transfected in HEK293 cells after 120 mins by liquid scintillation counting\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 23.1, mcs nAts: 10\n", "[#7,#6]-[#6,#7]-[#6]-[#7,#8]-[#6]1:[#6,#7]:[#7,#6](-[#6]):[#7,#6]:[#7,#6]:1\n", "Row: 63 BindingDB_Patents: Radioligand Binding Assay. HEK293 stably expressing human orexin 2 receptor (Genebank accession number NM 001526) were grown to confluency in DMEM (Hyclone, cat # SH30022), 10% FBS, 1x Pen/Strep, 1x NaPyruvate, 10 mM HEPES, 600 ug/ml G418 media on 150 cm2 tissue culture plates, washed with 5 mM EDTA in PBS (HyClone Dulbecco's Phosphate Buffered Saline 1x with Calcium and Magnesium, Cat # SH30264.01, hereafter referred to simply as PBS) and scraped into 50 ml tubes. After centrifugation (2Kx G, 5 min at 4x C.), the supernatant was aspirated and the pellets frozen and stored at -80 C. Cells were resuspended in PBS in the presence of 1 tablet of protease inhibitor cocktail (Roche, Cat. #11836145001) per 50 mL. Each cell pellet from a 15 cm plate was resuspended in 10 mL, stored on ice, and homogenized for 45 sec just prior to addition to the reactions. Competition binding experiments in 96 well polypropylene plates were performed using [3H]-EMPA (Moraveck Corporation, specific activity=29.6 Ci/mmol).\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 31.8, mcs nAts: 24\n", "[#8]=[#6](-[#6]1:[#6,#7]:[#6]:[#6]:[#6,#7]:[#6]:1-[#35,#6,#7,#8])-[#7]1-[#6]-[#6]2-[#6]-[#6](-[#6]-1-[#6]-2)-[#8,#7]-[#6]1:[#6]:[#6,#7]:[#6](:[#6]:[#7]:1)-[#6,#35]\n", "Row: 64 Displacement of [125I]-alpha-bungarotoxin from alpha7 nAChR in rat brain membrane after 3 hrs\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 23.0, mcs nAts: 19\n", "[#6](=,-[#6]1-[#6]-[#6]-[#6]-[#7]=[#6]-1-[#6]1:[#6]:[#6]:[#6]:[#7]:[#6]:1)-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1\n", "Row: 65 Inhibition of human N-terminal His6-tagged Eg5 (1 to 368 amino acid residues) motor domain basal ATPase activity expressed in Escherichia coli BL21 (DE3) by pyruvate kinase/lactate dehydrogenase-coupled assay\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 26.1, mcs nAts: 23\n", "[#7]-[#6]-[#6]-[#16,#6]-[#6](-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1)(-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1)-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1\n", "Row: 66 Inhibition of human ERAP1 preincubated for 30 to 60 mins followed by addition of Leu-AMC as substrate measured for 15 mins by spectrofluorimetric method\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 19.2, mcs nAts: 9\n", "[#6]-[#7,#6]-[#6]-[#6](-[#7])-[#15](=,-[#8,#6])(-,=[#8])-[#8,#6]\n", "Row: 67 Inhibitory activity against HIV protease\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 38.9, mcs nAts: 20\n", "[#6,#8]-,=[#6,#7]1-[#6,#7](-,=[#8,#6])-[#6,#7](-[#8,#6])-[#6,#7](-[#6,#8])-[#7,#6](-[#6,#7](-[#7,#6]-1-[#6]-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1)=,-[#8,#6])-,=[#6,#8]\n", "Row: 68 Displacement of [125I]-cyanopindolol from human adrenergic beta2 receptor expressed in CHO cells\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 34.1, mcs nAts: 27\n", "[#8]-[#6](-[#6]-[#7]-[#6]1-[#6]-[#6]-[#7](-[#6]-[#6]-1)-[#6]1:[#7]:[#6]:[#7]:[#6]2:[#6]:1:[#16,#6]:[#6]:[#6,#16]:2)-[#6]-[#8]-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1\n", "Row: 69 Inhibition of mouse recombinant iNOS\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 25.1, mcs nAts: 15\n", "[#6]-[#7,#8]-[#6]1-[#6]-[#7]-[#6]-[#6]-1-[#6]-[#6]1:[#6,#7]:[#6]:[#6]:[#6](:[#7,#6]:1)-[#7,#6]\n", "Row: 70 Displacement of [3H]RTX from rat TRPV1 expressed in CHO cells\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 29.4, mcs nAts: 18\n", "[#6]-,=[#6,#8]-[#7,#6]-[#6,#7]-[#6](-[#6])-[#6]1:[#6]:[#6]:[#6](:[#6](:[#6]:1)-[#9,#8])-[#7]-[#16](-[#6])(=[#8])=[#8]\n", "Row: 71 Displacement of [3H]methyllycaconitine from Sprague-Dawley rat brain alpha7 nAChR after 120 mins by liquid scintillation counting analysis\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 20.4, mcs nAts: 10\n", "[#8,#6]=,-[#6,#7]1:,-[#6]:,-[#6]:,-[#6]:,-[#6](:,-[#7,#6]:,-1)-[#6]-[#6,#7]-[#7,#6]\n", "Row: 72 Inhibitory constant against human deoxyuridine 5'-triphosphate nucleotidohydrolase expressed in Escherichia coli BL21 (DE3) cells\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 28.1, mcs nAts: 18\n", "[#6,#7,#8]-,=[#6,#14,#15,#16](=,-[#8,#6])-[#8,#7,#14]-[#6,#8]-[#6]1-[#8,#6]-[#6](-[#7]2:[#6]:[#6]:[#6](:[#7]:[#6]:2=[#8])=[#8])-[#6,#8]-,=[#6]-1\n", "Row: 73 Inhibition of human cathepsin L by fluorescence assay\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 36.7, mcs nAts: 33\n", "[#6]-[#6]-[#6]1-[#8]-[#6]-[#6](-[#6]-1-[#7]-[#6](=[#8])-[#6](-[#6]-[#6]1(-[#6])-[#6]-[#6]-[#6]-[#6]-1)-[#7]-[#6](=[#8])-[#6]1:[#6]:[#6]:[#6](:[#7,#6]:[#6]:1)-[#7]-[#16](-,=[#6,#8])(=[#8])=,-[#8,#6,#7])=[#8]\n", "Row: 74 BindingDB_Patents: Radioligand Binding Assay. Human Embryonic Kidney 293 cells (HEK293) stably expressing rat orexin 1 receptor (Genebank accession number NM 001525) or Chinese ovary cells (CHO) stably expressing human orexin 1 receptor (Genebank accession number NM 001526) were grown to confluency in DMEM (Hyclone, cat # SH30022), 10% FBS, 1x Pen/Strep, 1x sodium pyruvate, 10 mM HEPES, 600 ug/mL G418 and DMEM/F12 (Gibco, Cat #11039), 10% FBS, 1x Pen/Strep, 600 ug/mL G418 media, respectively on 150 cm2 tissue culture plates, washed with 5 mM EDTA in PBS (HyClone Dulbecco's Phosphate Buffered Saline 1x with Calcium and Magnesium, Cat # SH30264.01, hereafter referred to simply as PBS) and scraped into 50 ml tubes. After centrifugation (2Kx G, 5 min at 4 C.), the supernatant was aspirated and the pellets frozen and stored at -80 C. Cells were resuspended in PBS in the presence of 1 tablet of protease inhibitor cocktail (Roche, Cat. #11836145001) per 50 mL.\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 31.8, mcs nAts: 24\n", "[#8]=[#6](-[#6]1:[#6,#7]:[#6]:[#6]:[#6,#7]:[#6]:1-[#35,#6,#7,#8])-[#7]1-[#6]-[#6]2-[#6]-[#6](-[#6]-1-[#6]-2)-[#8,#7]-[#6]1:[#6]:[#6,#7]:[#6](:[#6]:[#7]:1)-[#6,#35]\n", "Row: 75 BindingDB_Patents: Inhibition Assay. Inhibition assay using matriptase enzyme\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 41.4, mcs nAts: 30\n", "[#7]=[#6](-[#7])-[#6]1:[#6]:[#6]:[#6]:[#6](:[#6]:1)-[#6]-[#6](-[#7]-[#16](=[#8])(=[#8])-[#6]1:[#6]:[#6]:[#6]:[#6](:[#6]:1)-[#7,#6])-[#6](=[#8])-[#7]1-[#6]-[#6]-[#7,#6]-[#6]-[#6]-1\n", "Row: 76 Displacement of [3H]DPCPX from human adenosine A1 receptor expressed in CHO cell membranes after 60 mins by microplate scintillation counting analysis\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 28.1, mcs nAts: 21\n", "[#7]-[#6]1:[#7,#6]:[#6](-[#6](=[#8])-[#7]-[#6]-[#6]2:,-[#6,#7]:,-[#6,#7]:,-[#6,#7]:,-[#6]:,-[#6,#7]:,-2):[#6]2:[#6](:[#7]:1):[#6]:[#6]:[#6]:[#6]:2\n", "Row: 77 Displacement of (S)-4-(2,4-difluorophenyl-3-tritio) -4,5-dihydro-2-oxazolamine from human TAAR1 receptor expressed in HEK293 cells after 90 mins by beta counting analysis\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 16.2, mcs nAts: 8\n", "[#6,#7]1:,-[#6]:[#6,#7]:,-[#6,#7](:,-[#6,#7]:,-[#6]:,-1)-[#6,#7,#8,#16]-[#6,#7,#9]\n", "Row: 78 Inhibition of human glutaminyl cyclase expressed in Pichia pastoris by pGAP coupled enzyme assay\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 23.0, mcs nAts: 10\n", "[#6,#7]-[#7,#6]=,-[#6]-[#7,#6]-[#6,#7]1:,-[#6]:,-[#6,#7]:,-[#6]:,-[#6,#7]:,-[#6]:,-1\n", "Row: 79 Displacement of [3H]BH-CCK-8S from human recombinant CCK2 receptor expressed in NIH3T3 cells\n", " * postgresql://localhost/chembl_23\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Mean nAts 40.5, mcs nAts: 29\n", "[#6]-[#7]1-[#6](=[#8])-[#7,#6](-[#6,#7]-[#6](=[#8])-[#7]-[#6]2:[#6]:[#6]:[#6]:[#6]:[#6]:2)-[#7]=[#6](-[#6]2:[#6]-1:[#6]:[#6]:[#6]:[#6]:2)-[#6]1-,:[#6]-,:[#6]-,:[#6]-,:[#6]-,:[#6,#7]-,:1\n", "Row: 80 Displacement of [3H]N-alpha-methylhistamine from human recombinant histamine H3 receptor expressed in HEK293 cells\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 27.0, mcs nAts: 22\n", "[#17,#6,#7,#35]-[#6]1:[#6,#7]:[#6,#7]:[#6]2:[#6](:[#7,#6]:1):[#16]:[#6](:[#7]:2)-[#7]1-[#6]-[#6]-[#6](-[#6]-[#6]-1)-[#7]1-[#6]-[#6]-[#6]-[#6]-[#6]-1\n", "Row: 81 Inhibition of mouse TAAR1\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 24.0, mcs nAts: 18\n", "[#8]=[#6](-[#7]-[#6]1:[#6]:[#6]:[#6]:[#6](:[#6]:1)-[#17,#6,#8,#9,#35])-[#6]1:[#6]:[#6]:[#6](:[#6](:[#6]:1)-[#17,#6,#7,#8,#9,#16,#35])-[#17,#7,#9,#16,#35]\n", "Row: 82 Inhibition of rabbit skeletal muscle glycogen phosphorylase b assessed as inorganic phosphate release\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 23.2, mcs nAts: 15\n", "[#6,#7,#8]-,=[#6](=,-[#8,#6,#7])-[#7]-[#6]1-[#8]-[#6](-[#6]-[#8])-[#6](-[#6](-[#6]-1-[#8])-[#8])-[#8]\n", "Row: 83 Inhibition of dihydrofolate reductase (DHFR) from Leishmania major\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 24.4, mcs nAts: 18\n", "[#6,#7,#8,#9,#16,#34]-,=,#[#6,#7,#8,#16]-[#6]1:[#6]:[#6]:[#6]:[#6](:[#6]:1)-[#7]1-[#6](-[#7])=[#7]-[#6](=[#7]-[#6]-1(-[#6])-[#6])-[#7]\n", "Row: 84 Inhibition of human factor 10a\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 34.7, mcs nAts: 28\n", "[#6]-[#6](-[#6](=[#8])-[#7](-[#6])-[#6])-[#7]1-[#6]-[#6]-[#6](-[#6]-1=[#8])-[#7]-[#16](=[#8])(=[#8])-[#6]1:[#6]:[#6]:[#6]2:[#6](:[#6]:1):[#6]:[#6]:[#6](:[#6]:2)-[#17]\n", "Row: 85 Inhibition of His6-MBP tagged recombinant human Mcl-1 residues 172 to 327 expressed in Escherichia coli assessed as inhibition of interaction with Bak BH3 peptide (GQVGRQLAIIGDDINR) after 3 hrs by fluorescence polarization competition assay\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 28.9, mcs nAts: 19\n", "[#6]-[#7]-[#16](=[#8])(=[#8])-[#6]1:[#6]:[#6](-[#6](=,-[#8])-,=[#8]):[#6](:[#6]2:[#6]:1:[#6]:[#6]:[#6]:[#6]:2)-[#8]\n", "Row: 86 Binding affinity against adenosine A1 receptor using N6-[3H]cyclohexyladenosine as radioligand in guinea pig forebrain membranes\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 23.7, mcs nAts: 12\n", "[#7,#6](:[#6,#7]):[#6,#7]:[#7,#6](:[#6]1:[#7,#6]:[#6,#7](:[#7,#6]:[#6,#7]:1)-[#6])-[#6,#7]-[#6]\n", "Row: 87 Displacement of [3H]diprenorphine from human MOP receptor expressed in CHOK1 cells\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 30.4, mcs nAts: 7\n", "[#7,#6]-[#6,#7]1-,:[#6]-,:[#6,#8]-,:[#7,#6]-,:[#6,#7]-,:[#6,#16]-,:1\n", "Row: 88 Displacement of [3H]nociceptin from human NOP receptor expressed in CHO cells\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 30.4, mcs nAts: 7\n", "[#7,#6]-[#6,#7]1-,:[#6]-,:[#6,#8]-,:[#7,#6]-,:[#6,#7]-,:[#6,#16]-,:1\n", "Row: 89 Inhibition of human BACE1 using QSY7EISEVNLDAEFC-Eu-amide as substrate incubated for 30 mins prior to substrate addition measured after 90 mins by FRET analysis\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 25.4, mcs nAts: 21\n", "[#6]-[#7]1-[#6](=[#7])-[#7]-[#6](-[#6]-1=[#8])(-[#6])-[#6]1:[#6]:[#6]:[#6]:[#6](:[#6]:1)-[#6]1:[#6]:[#6,#7]:[#6,#7]:[#6,#7]:[#6,#7]:1\n", "Row: 90 Displacement of [3H]progesterone from human progesterone receptor B after 16 hrs by scintillation counting\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 29.0, mcs nAts: 24\n", "[#8,#6,#7,#9]-[#6]1:[#6]:[#6]:[#6](:[#6]:[#6]:1)-[#7]-[#6](-[#6]-[#6](=[#8])-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1)-[#6]1:,-[#6]:,-[#6]:,-[#6]:,-[#6]:,-[#6]:,-1\n", "Row: 91 Inhibition of human carbonic anhydrase 2-catalyzed CO2 hydration preincubated for 10 mins by stopped-flow assay\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 19.7, mcs nAts: 11\n", "[#7,#6]-,=[#6,#7]-[#6]1:[#6]:[#6]:[#6](:[#6]:[#6]:1)-[#16,#6](=,-[#8,#6,#7])=,-[#8,#6]\n", "Row: 92 Inhibition of human carbonic anhydrase 1-catalyzed CO2 hydration preincubated for 10 mins by stopped-flow assay\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 19.7, mcs nAts: 11\n", "[#7,#6]-,=[#6,#7]-[#6]1:[#6]:[#6]:[#6](:[#6]:[#6]:1)-[#16,#6](=,-[#8,#6,#7])=,-[#8,#6]\n", "Row: 93 Inhibition of human recombinant PTP1B\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 33.0, mcs nAts: 22\n", "[#6,#16]-[#8,#7]-[#6]1:[#6]:[#6]:[#6]:[#6](:[#6]:1)-[#6]1:[#16]:[#6](-[#6](=[#8])-[#8]):[#6](:[#6]:1-[#35,#6,#17])-[#8]-[#6]-[#6](=[#8])-[#8]\n", "Row: 94 In vitro binding affinity against C-C chemokine receptor type 3 expressing in rat Y3 cell line\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 33.4, mcs nAts: 22\n", "[#6,#7,#8]-,=[#6](=,-[#8,#6])-[#7]1-[#6]-[#6]-[#6](-[#6]-[#6]-1)-[#7]1-[#6]-[#6]-[#6](-[#6]-[#6]-1)-[#6]-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1\n", "Row: 95 Inhibitory constant against HIV-1 protease\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 57.9, mcs nAts: 36\n", "[#6]-[#6]-[#8,#7]-[#6](=[#8])-[#6](-[#7]-[#6](=[#8])-[#6](-[#7,#16]-[#6])-[#6](-[#8])-[#6](-[#6]-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1)-[#7]-[#6](=[#8])-[#6](-[#7]-[#6](=[#8])-[#8,#6,#7]-[#6,#8]-[#6])-[#6])-[#6](-[#6])-[#6]\n", "Row: 96 Displacement of [125I]-iodoproxyfan from human recombinant histamine H3 receptor expressed in human SK-N-MC cells after 1 hr by scintillation counting\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 26.3, mcs nAts: 14\n", "[#6,#9,#16,#17]-[#6,#7]1:,-[#6]:,-[#6]:,-[#6,#7](:,-[#7,#6]:,-[#6,#7]:,-1)-[#8,#6,#16]-[#6]1:[#6]:[#6,#7]:[#6,#7]:[#6,#7]:[#6,#7]:1\n", "Row: 97 BindingDB_Patents: Lanthascreen Binding Assay. This assay was used to determine a compound's potency in inhibiting activity of LRRK2 by determining, Kiapp, IC50, or percent inhibition values. In 384 well proxiplates F black, shallow well plates LRRK2, Eu-anti-GST-antibody, Alexa Fluor Kinase tracer 236 and test compound were incubated together. Binding of the Alexa Fluor tracer to a kinase was detected by addition of a Eu-labeled anti-GST antibody. Binding of the tracer and antibody to a kinase results in a high degree of FRET, whereas displacement of the tracer with a kinase inhibitor results in a loss of FRET.\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 27.2, mcs nAts: 22\n", "[#6]-[#7]-[#6]1:[#7]:[#6](-[#7]-[#6]2:[#6]:[#6]:[#6](:[#6]:[#6]:2-[#8,#17])-[#6,#7]2:[#6,#7]:[#7,#6]:[#8,#6,#7]:[#6,#7,#8]:2):[#7]:[#6]:[#6]:1-[#17,#6]\n", "Row: 98 Displacement of [3H]DPCPX from bovine cerebral cortex adenosine A1 receptor\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 28.2, mcs nAts: 24\n", "[#6]-[#7]-[#6]1:[#7,#6]:[#6](-[#6]2:[#6]:[#6]:[#6]:[#6]:[#6]:2):[#7]:[#6]2:[#6]:1:[#7]:[#7]:[#7]:2-[#6]-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1\n", "Row: 99 Inhibition of dihydrofolate reductase (DHFR) from Pneumocystis carinii.\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 24.4, mcs nAts: 16\n", "[#6]-[#6]1(-[#6])-[#7]=[#6](-[#7])-[#7]=[#6](-[#7]-1-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1)-[#7]\n", "Row: 100 Displacement of [3H]ZM241385 from human adenosine A2A receptor expressed in HEK293 cells after 1 hr by microbeta scintillation counting analysis\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 24.0, mcs nAts: 14\n", "[#6]-[#7]1:[#6](=[#8]):[#6]2:[#6](:[#7](:[#6]:1=[#8])-[#6]):[#6,#7]:[#6]:[#7]:2-[#6]\n", "Row: 101 Displacement of [125I]NKA from human NK2 expressed in CHO-K1 cells\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 41.5, mcs nAts: 31\n", "[#6,#7]-[#8,#6,#7]-[#6]-[#6]-[#7]-[#6](=[#8])-[#6](-[#6]-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1)-[#7]-[#6](=[#8])-[#6]-[#7]-[#6](=[#8])-[#6]1:[#6]:[#6]2:[#6]:[#6]:[#6]:[#6]:[#6]:2:[#16]:1\n", "Row: 102 BindingDB_Patents: Radioligand Binding Assay. The compounds of the present invention inhibit the binding of PGD2 to its receptor CRTH2. The inhibitory activity can be investigated by a radioligand binding assay (Sawyer et al., Br. J. Pharmocol 2002, 137, 1163-72). The radioligand binding assay was performed at room temperature in binding buffer (10 mM HEPES/KOH pH 7.4, mM MnCl2, with protease inhibitor cocktail tablets), containing 1.5 nM [3H]PGD2 (Amersham, 156 Cie/mmol), and 10 ug of hCRTH2 HEK293 (EBNA) cell membrane protein in a final volume of 100 ul in 96 well plates (Corning, USA). Non-specific binding was determined in the presence of 1 uM PGD2 (Cayman, USA). Competing pyrazine sulfonamides were diluted in dimethylsulphoxide so that the total volume of dimethylsulfoxide was kept constant at 1% dimethylsulphoxide (Me2SO). 10 ul of the pyrazine sulfonamides were added. Incubation (60 min at room temperature) was terminated by rapid filtration through 96 wells hydrophobic GF/C Unifilter plates.\n", " * postgresql://localhost/chembl_23\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Mean nAts 35.9, mcs nAts: 24\n", "[#7,#6,#8]-[#6]-[#6,#7]1:,-[#6]:,-[#6]:,-[#6,#7](:,-[#6]:,-[#6]:,-1)-[#6]1:[#7]:[#6]:[#6]:[#7]:[#6]:1-[#7]-[#16](=[#8])(=[#8])-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1\n", "Row: 103 Displacement of [3H]LSD from human recombinant 5HT7 receptor expressed in CHO cells\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 29.5, mcs nAts: 20\n", "[#6]1(-[#6]-[#6]-[#6]-[#6]-[#7]2-[#6]-[#6]-,=[#6,#7]-,:[#6]-[#6]-2)-[#6](=[#8])-[#7]-[#6]2:[#6]-1:[#6]:[#6]:[#6]:[#6]:2\n", "Row: 104 Inhibition of human thymidylate synthase A\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 23.9, mcs nAts: 11\n", "[#8,#6,#7,#16]=,-[#6]1-,:[#8,#6]-,:[#6]-,:[#6]:[#6]2:[#6]-,:1:[#6]:[#6]:[#6]:[#6]:2\n", "Row: 105 Binding affinity for human 5-hydroxytryptamine 6 receptor\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 25.2, mcs nAts: 8\n", "[#6,#7]1:,-[#6,#7]:,-[#6,#7]:,-[#6,#7](:,-[#6,#7]:,-[#6,#7]:,-1)-[#16,#7,#8]=,-[#8,#6,#7,#16]\n", "Row: 106 Inhibition of mouse Oat1-mediated [3H]PAH uptake in Xenopus oocytes after 1 hr\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 14.2, mcs nAts: 5\n", "[#6,#7,#8]-,=[#6,#7,#8]-[#6,#7,#16](=,-[#8,#6])-,=[#8,#6,#16]\n", "Row: 107 Inhibition of mouse Oat6-mediated [3H]ES uptake in Xenopus oocytes after 1 hr\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 14.2, mcs nAts: 5\n", "[#6,#7,#8]-,=[#6,#7,#8]-[#6,#7,#16](=,-[#8,#6])-,=[#8,#6,#16]\n", "Row: 108 Inhibition of purified His6-tagged recombinant human HPPD assessed as inhibition of maleylacetoacetate formation after 30 mins by UV/visible spectrophotometry\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 28.9, mcs nAts: 27\n", "[#6]-[#6]1:[#7]:[#6]2:[#6]:[#6]:[#6](:[#6]:[#6]:2:[#6](:[#7]:1-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1)=[#8])-[#6](=[#8])-[#6]1:[#6]:[#7]:[#7](:[#6]:1-[#8])-[#6]\n", "Row: 109 Displacement of [3H]mesulergine from human recombinant 5HT2C receptor expressed in Flp-IN HEK cells\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 19.2, mcs nAts: 17\n", "[#7,#6,#16]=,-[#6,#7]1-,=[#7,#6]-[#6,#7](=,-[#8,#6])-[#6](-[#7,#6]-1)=[#6]-[#6]1:[#6]:[#7]:[#6]2:[#6]:1:[#6]:[#6]:[#6]:[#6]:2\n", "Row: 110 Displacement of [3H]diprenorphine from human mu opioid receptor expressed in CHO cells\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 31.4, mcs nAts: 21\n", "[#8,#6,#7]-[#6]1(-[#6,#8])-[#6]-[#6]-[#7](-[#6]-[#6]-1)-[#6](-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1)-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1\n", "Row: 111 Displacement of [125I][Tyr14]nociceptin from human cloned NOP receptor expressed in CHO cells\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 31.4, mcs nAts: 21\n", "[#8,#6,#7]-[#6]1(-[#6,#8])-[#6]-[#6]-[#7](-[#6]-[#6]-1)-[#6](-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1)-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1\n", "Row: 112 Inhibition of bovine brain mitochondrial MAO-A by fluorometric assay\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 20.1, mcs nAts: 9\n", "[#7,#6,#8]-,=[#6,#7]-[#6,#7,#8]-[#6,#7]1:,-[#6]:,-[#6]:,-[#6,#8]:,-[#6]:,-[#6]:,-1\n", "Row: 113 Inhibition of bovine brain mitochondrial MAO-B by fluorometric assay\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 20.1, mcs nAts: 9\n", "[#7,#6,#8]-,=[#6,#7]-[#6,#7,#8]-[#6,#7]1:,-[#6]:,-[#6]:,-[#6,#8]:,-[#6]:,-[#6]:,-1\n", "Row: 114 Binding affinity to glucocorticoid receptor (unknown origin) by fluorescence polarization assay\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 32.6, mcs nAts: 21\n", "[#6]-[#6](-[#6](=[#8])-[#7]-[#6,#7]1:[#7,#6,#16]:[#7,#6]:[#6,#7,#16]:[#16,#6,#7]:1)-[#6](-[#6])-[#6]1:[#6]:[#6]:[#6]2:[#6](:[#6]:1):,-[#6]:,=[#7]:,-[#7,#6]:,-2\n", "Row: 115 Displacement of [125I-Tyr13]MCH from human MCHR1 expressed in HEK293 cells\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 40.5, mcs nAts: 30\n", "[#6]-[#7](-[#6](=[#8])-[#6]1:[#6]:[#6]:[#6](:[#6]:[#6]:1)-[#6]1:[#6]:[#6]:[#6](:[#6,#7]:[#6]:1)-[#6,#7,#8,#9,#16,#17])-[#6]1-[#6]-[#6]-[#7](-[#6]-1)-[#6](=[#8])-[#7]1-[#6]-[#6]-[#6](-[#6]-1)-[#7]\n", "Row: 116 Displacement of [3H]-LSD from cloned human 5-HT6 receptor expressed in human HeLa cells\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 29.9, mcs nAts: 18\n", "[#8]=[#16](=[#8])(-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1)-[#6]1:[#7]:[#7]:[#6]2:[#6]:1:[#6]:[#6]:[#6]:[#6]:2\n", "Row: 117 Inhibition of recombinant human AChE\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 15.8, mcs nAts: 6\n", "[#6,#8]-[#6,#7]1:,-[#6,#8]:,-[#6]:[#7,#6,#8]:,-[#8,#6,#7]:,-1\n", "Row: 118 Displacement of [3H]spiperone from dopamine D2 receptor in rat striatum after 15 mins by liquid scintillation counting analysis\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 33.3, mcs nAts: 17\n", "[#6]-[#6]1:,-[#6]:,-[#6](=[#8]):,-[#8]:,-[#6]2:[#6]:,-1:[#6]:[#6]:[#6](:[#6]:2)-[#8]-[#6]-[#6]-,=[#6]-[#6,#7]\n", "Row: 119 Displacement of [3H]8-OH-DPAT from 5HT1A receptor in rat cerebral cortex after 30 mins by liquid scintillation counting analysis\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 33.3, mcs nAts: 17\n", "[#6]-[#6]1:,-[#6]:,-[#6](=[#8]):,-[#8]:,-[#6]2:[#6]:,-1:[#6]:[#6]:[#6](:[#6]:2)-[#8]-[#6]-[#6]-,=[#6]-[#6,#7]\n", "Row: 120 Displacement of [3H]ketanserin from 5HT2A receptor in rat cerebral cortex after 15 mins by liquid scintillation counting analysis\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 33.3, mcs nAts: 17\n", "[#6]-[#6]1:,-[#6]:,-[#6](=[#8]):,-[#8]:,-[#6]2:[#6]:,-1:[#6]:[#6]:[#6](:[#6]:2)-[#8]-[#6]-[#6]-,=[#6]-[#6,#7]\n", "Row: 121 Inhibitory constant against human Carbonic anhydrase II\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 26.4, mcs nAts: 9\n", "[#7,#6,#8]-[#16,#6,#7]-[#6]1:,-[#6,#7]:[#6,#7]:,-[#6,#7,#16]:,-[#6,#7](:,-[#6,#7]:,-1)-[#16,#6,#7,#8]\n", "Row: 122 Inhibitory constant against human Carbonic anhydrase IX\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 26.4, mcs nAts: 9\n", "[#7,#6,#8]-[#16,#6,#7]-[#6]1:,-[#6,#7]:[#6,#7]:,-[#6,#7,#16]:,-[#6,#7](:,-[#6,#7]:,-1)-[#16,#6,#7,#8]\n", "Row: 123 Displacement of rhodamine-green labelled (2-(6-amino-3-imino-3H-xanthen-9-yl)-5-{[({4-[4-(4-Cl-3-hydroxyphenyl)-5-(4-pyridinyl)-1H-imidazol-2yl]phenyl}methyl)amino]carbonyl}benzoic acid from human GST-tagged p38alpha by fluorescence polarisation assay\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 27.7, mcs nAts: 20\n", "[#6,#7,#8,#9,#17]-[#6]1:[#6]:[#6]:[#6](:[#6]:[#6]:1-[#6]1:[#6]:[#6]:[#6](:[#6]:[#6]:1)-[#6](=[#8])-[#7]-[#7,#6])-[#6,#7]-[#7,#6]-,=[#6,#8]\n", "Row: 124 Binding affinity to human neuropeptide Y receptor type 4 receptor expressed in CHO cells using Cy5-[K4]-hPP by flow cytometric analysis\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 80.8, mcs nAts: 35\n", "[#7]=,-[#6](-,=[#7,#8])-,=[#7]-[#6]-[#6]-[#6]-[#6](-[#7]-[#6](=[#8])-[#6](-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1)-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1)-[#6](=[#8])-[#7]-[#6]-[#6]1:[#6]:[#6]:[#6](:[#6]:[#6]:1)-[#8,#6]\n", "Row: 125 Displacement of [3H]methylscopolamine from recombinant human muscarinic M3 receptors expressed in CHO cells\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 21.8, mcs nAts: 12\n", "[#6,#7]1:[#6](-[#7]-[#6]2-[#6]-[#6]-2):[#7,#6]:[#6](:[#7]:[#6]:1-[#7,#6])-[#6,#7]\n", "Row: 126 Displacement of [3H]ZM-241385 from human recombinant adenosine A2B receptor expressed in HEK293 cells\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 29.2, mcs nAts: 19\n", "[#6]-[#6]-[#7]1:[#6](=[#8]):[#6]2:[#7]:[#6](-[#6]3:[#6]:[#7]:[#7]:[#6]:3):[#7]:[#6]:2:[#7](:[#6]:1=[#8])-[#6]\n", "Row: 127 Binding affinity to human neuropeptide Y receptor type 5 receptor expressed in HEC-1B cells using Cy5-pNPY by flow cytometric analysis\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 80.8, mcs nAts: 35\n", "[#7]=,-[#6](-,=[#7,#8])-,=[#7]-[#6]-[#6]-[#6]-[#6](-[#7]-[#6](=[#8])-[#6](-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1)-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1)-[#6](=[#8])-[#7]-[#6]-[#6]1:[#6]:[#6]:[#6](:[#6]:[#6]:1)-[#8,#6]\n", "Row: 128 Inhibition of recombinant cathepsin-L (unknown origin) using Z-Phe-Arg-AMC as substrate by fluorescence assay\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 33.8, mcs nAts: 21\n", "[#6]-[#6]-[#6](-[#7]-[#6](=[#8])-[#6](-[#6]-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1)-[#7]-[#6](=,-[#8,#6])-,=[#6,#8])-[#6](-[#7])=[#8]\n", "Row: 129 Inhibition of recombinant cathepsin-B (unknown origin) using Z-Arg-Arg-AMC as substrate by fluorescence assay\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 33.8, mcs nAts: 21\n", "[#6]-[#6]-[#6](-[#7]-[#6](=[#8])-[#6](-[#6]-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1)-[#7]-[#6](=,-[#8,#6])-,=[#6,#8])-[#6](-[#7])=[#8]\n", "Row: 130 Displacement of [3H]8-OH-DPAT from human 5HT1A receptor expressed in CHO cells\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 31.7, mcs nAts: 27\n", "[#6]1:[#6]:[#6]:[#6]:[#6](:[#6]:1)-[#7]1-[#6]-[#6]-[#7](-[#6]-[#6]-1)-[#6]1-[#6]-[#6]-[#6](-[#6]-[#6]-1)-[#6]1:[#6]:[#7]:[#6]2:[#6]:1:[#6]:[#6]:[#6]:[#7,#6]:2\n", "Row: 131 Inhibition of [125I]NDP-MSH (radioligand) binding to the hMC4R stably expressed in HEK293 cells \n", " * postgresql://localhost/chembl_23\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Mean nAts 41.0, mcs nAts: 34\n", "[#6,#7,#8]-,=[#6]-[#7]-[#6]-[#6]1(-[#7]2-[#6]-[#6]-[#7](-[#6]-[#6]-2)-[#6](=[#8])-[#6](-[#6]-[#6]2:[#6]:[#6]:[#6](:[#6]:[#6]:2-[#17])-[#17])-[#7]-[#6](=[#8])-[#6]-[#6]-[#7])-[#6]-[#6]-[#6]-[#6]-[#6]-1\n", "Row: 132 Binding affinity to human neuropeptide Y receptor type 2 receptor expressed in CHO cells using Cy5-pNPY by flow cytometric analysis\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 80.8, mcs nAts: 35\n", "[#7]=,-[#6](-,=[#7,#8])-,=[#7]-[#6]-[#6]-[#6]-[#6](-[#7]-[#6](=[#8])-[#6](-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1)-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1)-[#6](=[#8])-[#7]-[#6]-[#6]1:[#6]:[#6]:[#6](:[#6]:[#6]:1)-[#8,#6]\n", "Row: 133 Displacement of [3H]-U-69,593 from Opioid receptor kappa 1 in guinea pig cerebellar.\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 48.3, mcs nAts: 38\n", "[#6](-[#7]-[#6](=[#8])-[#6]1(-[#6]2:[#6]:[#6]:[#6]:[#6]:[#6]:2)-[#6]-[#6]-1-[#6]-[#7]1-[#6]-[#6]-[#6]2(-[#6](-[#6]-1-[#6]-[#6]1:[#6]:[#6]:[#6](:[#6]:[#6]-2:1)-[#8])-[#6])-[#6])-[#6](=[#8])-[#7]-[#6]-[#6]-[#6,#7]-[#6,#7]-,=[#7,#6]\n", "Row: 134 Binding affinity to human P2Y1 receptor\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 34.1, mcs nAts: 28\n", "[#6]1:[#6]:[#6](-[#8]-[#6]2:[#6,#7]:[#6]:[#6,#7]:[#6]:[#6]:2-[#7]-[#6](=[#8])-[#7]-[#6]2:[#6]:[#6]:[#6]:[#6,#7]:[#6,#7]:2):[#7](:[#7]:1)-[#6]1:[#6]:[#6]:[#6]:[#6,#7]:[#6,#7]:1\n", "Row: 135 Displacement of Thio-T from recombinant alpha-synuclein (unknown origin) expressed in Escherichia coli after 1.5 hrs by fluorescence assay\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 26.5, mcs nAts: 12\n", "[#8]=[#6]1-[#7,#6]-[#6]2:[#6,#7]:[#6]:[#6]:[#6,#7]:[#6]:2-[#6,#7]-1=,-[#6]-[#6]\n", "Row: 136 Displacement of Thio-T from amyloid beta (1 to 42) (unknown origin) expressed in Escherichia coli after 1.5 hrs by fluorescence assay\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 26.5, mcs nAts: 12\n", "[#8]=[#6]1-[#7,#6]-[#6]2:[#6,#7]:[#6]:[#6]:[#6,#7]:[#6]:2-[#6,#7]-1=,-[#6]-[#6]\n", "Row: 137 Displacement of Thio-T from human recombinant tau (243 to 375) expressed in Escherichia coli BL21(DE3)RIL after 1.5 hrs by fluorescence assay\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 26.5, mcs nAts: 12\n", "[#8]=[#6]1-[#7,#6]-[#6]2:[#6,#7]:[#6]:[#6]:[#6,#7]:[#6]:2-[#6,#7]-1=,-[#6]-[#6]\n", "Row: 138 Inhibition of human PDE10A2 transfected in AD293 cells by IMAP FP assay\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 20.8, mcs nAts: 10\n", "[#6]-[#6]1:[#6](-[#17,#7]):[#7]:[#6](:[#7]:[#6]:1-[#17,#7])-[#6,#8]\n", "Row: 139 Binding affinity towards human serum albumin\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 18.7, mcs nAts: 9\n", "[#8,#6,#7]=,-[#6,#7,#16](-,=[#8,#6])-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1\n", "Row: 140 Inhibition of human recombinant CA1 by stopped flow CO2 hydration assay\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 36.4, mcs nAts: 12\n", "[#7,#6,#8]-[#16,#6,#8]-[#6]1-[#8]-[#6](-[#6,#7,#8,#16])-[#6](-[#6](-[#6]-1-[#8])-[#8])-[#8]\n", "Row: 141 Displacement of [3H]RTX from rat TRPV1 expressed in CHO cells\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 32.3, mcs nAts: 14\n", "[#8,#17,#35]-[#6]1:[#6]:[#6](-[#6]-[#6](=[#8])-[#7]-[#6]-[#6]):[#6]:[#6]:[#6]:1-[#8,#7]\n", "Row: 142 Inhibitory constant against human Carbonic anhydrase I\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 26.5, mcs nAts: 11\n", "[#7]-[#16](=[#8])(=[#8])-[#6]1:[#6]:[#6]:[#6](:[#6]:[#6]:1)-[#17,#6,#7,#16]\n", "Row: 143 Affinity for human EMP expressed in ERG2 deficient strain of Saccharomyces cerevisiae using [3H]ifenprodil or (+)-[3H]pentazocine as radioligand\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 26.2, mcs nAts: 7\n", "[#6,#7,#8,#17]-,=[#7,#6]1-,=,:[#6]-,=,:[#6]-,:[#6,#7,#8]-,:[#6,#7]-,:[#6]-,:1\n", "Row: 144 Inhibition of human recombinant CA2 by stopped flow CO2 hydration assay\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 36.4, mcs nAts: 12\n", "[#7,#6,#8]-[#16,#6,#8]-[#6]1-[#8]-[#6](-[#6,#7,#8,#16])-[#6](-[#6](-[#6]-1-[#8])-[#8])-[#8]\n", "Row: 145 Binding affinity to adrenergic alpha1A receptor (unknown origin)\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 28.6, mcs nAts: 8\n", "[#6,#7]1:,-[#6]:,-[#6]:,-[#6,#7](:,-[#6]:,-,=[#6]:,-1)-[#8,#6]-,#[#6,#7,#8]\n", "Row: 146 Inhibition of binding to human D5 receptor expressed in HEK 293 cells by radioligand binding assay\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 21.1, mcs nAts: 6\n", "[#6,#7]1:,-[#6,#8]:,-[#6]:,-[#6]:,-[#6]:,-[#6,#7,#8]:,-1\n", "Row: 147 Inhibition of human carbonic anhydrase I by spectrophotometry at pH 7.5\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 16.6, mcs nAts: 5\n", "[#6,#7,#8]-,=[#16,#6](-,=[#7,#8,#9])(=,-[#8,#9])=,-[#8,#6,#7,#9]\n", "Row: 148 Binding affinity towards adenosine A2a receptor of rat brain homogenates using [3H]ZM-241385 compared to SCH-58261 (Ki=37 nM)\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 25.7, mcs nAts: 16\n", "[#7]-[#6]1:[#7]:[#6](-[#6]):[#6]:[#7]2:[#6]:1:[#7]:[#6](:[#7]:2)-[#6]1:[#6]:[#6]:[#6]:[#8]:1\n", "Row: 149 Displacement of [125I]NDP-MSH from human MC4R expressed in HEK293 cells\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 39.8, mcs nAts: 32\n", "[#6,#7,#8]-,=[#6]-[#7]-[#6]-[#6]1:[#6]:[#6]:[#6]:[#7,#6]:[#6]:1-[#7]1-[#6]-[#6]-[#7](-[#6]-[#6]-1)-[#6](=[#8])-[#6](-[#6]-[#6]1:[#6]:[#6]:[#6](:[#6]:[#6]:1-[#17])-[#17])-[#7]-[#6](-,=[#6,#8])=,-[#8,#6]\n", "Row: 150 Displacement of [3H]-methyllysergic acid diethylamide from human 5-HT6 receptor expressed in CHO cells after 30 mins by liquid scintillation counting\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 23.4, mcs nAts: 17\n", "[#6]1-[#6]=,-[#7,#6]-[#7](-[#6,#7]-,=1)-[#6](-[#7])=[#7]-[#16](=[#8])(=[#8])-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1\n", "Row: 151 Inhibition of human carbonic anhydrase II by spectrophotometry at pH 7.5\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 16.6, mcs nAts: 5\n", "[#6,#7,#8]-,=[#16,#6](-,=[#7,#8,#9])(=,-[#8,#9])=,-[#8,#6,#7,#9]\n", "Row: 152 Inhibition of binding to human D4 receptor expressed in HEK 293 cells by radioligand binding assay\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 21.1, mcs nAts: 6\n", "[#6,#7]1:,-[#6,#8]:,-[#6]:,-[#6]:,-[#6]:,-[#6,#7,#8]:,-1\n", "Row: 153 Binding affinity to human recombinant c-MET assessed as inhibition of autophosphorylation by continuous fluorometric assay\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 30.5, mcs nAts: 17\n", "[#6,#8](-[#8,#6]-[#6]1:[#6]:[#6]:[#6]:[#7,#6]:[#6]:1-[#7,#6,#9,#17])-[#6]1:[#6](-[#17,#7,#9]):[#6,#7]:[#6]:[#6](:[#6]:1)-[#9,#6]\n", "Row: 154 Inhibition of binding to human D2L receptor expressed in HEK 293 cells by radioligand binding assay\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 21.1, mcs nAts: 6\n", "[#6,#7]1:,-[#6,#8]:,-[#6]:,-[#6]:,-[#6]:,-[#6,#7,#8]:,-1\n", "Row: 155 Displacement [3H]SB-222200 from of human recombinant NK3 receptor expressed in CHO cells\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 28.5, mcs nAts: 20\n", "[#8]=[#6,#16](-[#6]1:[#6]:[#6](-[#6]2:,-[#6]:,-[#6]:,-[#6,#7]:,-[#6,#7]:,-[#6,#7]:,-2):[#7,#8]:[#7,#6,#8]:1)-[#7]1-[#6]-[#6]-[#7](-[#6]-[#6]-1)-[#6]\n", "Row: 156 Inhibition of human recombinant CA9 by stopped flow CO2 hydration assay\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 36.4, mcs nAts: 12\n", "[#7,#6,#8]-[#16,#6,#8]-[#6]1-[#8]-[#6](-[#6,#7,#8,#16])-[#6](-[#6](-[#6]-1-[#8])-[#8])-[#8]\n", "Row: 157 Displacement of [3H]-histamine from human histamine H4 receptor expressed in Sf9 cells coexpressing RGS19, Galphai2, Gbeta1gamma2\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 14.3, mcs nAts: 7\n", "[#6,#7,#8,#16]-[#6]-[#6]1:,-[#6,#7]:,-[#7,#6]:,-[#6,#7]:,-[#7,#6,#8,#16,#34]:,-1\n", "Row: 158 Inhibition of binding to human D1 receptor expressed in HEK 293 cells by radioligand binding assay\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 21.1, mcs nAts: 6\n", "[#6,#7]1:,-[#6,#8]:,-[#6]:,-[#6]:,-[#6]:,-[#6,#7,#8]:,-1\n", "Row: 159 Displacement of [3H]RTX from rat TRPV1 expressed in CHO cells\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 32.9, mcs nAts: 16\n", "[#6]-[#6]-[#6,#7]-[#6](=[#8,#16])-[#7]-[#6]-[#6]1:[#6]:[#6](-[#8]-[#6]):[#6](:[#6]:[#6]:1)-[#8]\n", "Row: 160 Displacement of [3H]diprenorphine from human cloned kappa opioid receptor expressed in CHO cells\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 27.0, mcs nAts: 19\n", "[#6]1-[#6]-[#7]2-[#6]-[#6](-[#6])-[#6](-[#6]-[#6]-2-[#6]-[#7,#6]-1)(-[#6])-[#6]1:[#6]:[#6]:[#6]:[#6](:[#6]:1)-[#8,#6]\n", "Row: 161 Inhibition of human recombinant CA12 by stopped flow CO2 hydration assay\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 36.4, mcs nAts: 12\n", "[#7,#6,#8]-[#16,#6,#8]-[#6]1-[#8]-[#6](-[#6,#7,#8,#16])-[#6](-[#6](-[#6]-1-[#8])-[#8])-[#8]\n", "Row: 162 Inhibition of human SERT\n", " * postgresql://localhost/chembl_23\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Mean nAts 29.7, mcs nAts: 19\n", "[#6]-[#7]-[#6]-[#6]1:[#6]:[#6](-[#6](=[#8])-[#7]):[#6]:[#6]:[#6]:1-[#8]-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1\n", "Row: 163 Binding affinity to human BK1 receptor\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 36.9, mcs nAts: 26\n", "[#6]-[#8]-[#6](=[#8])-[#6]1:[#6](-[#9,#17]):[#6]:[#6]:[#6]:[#6]:1-[#6]1:[#6]:[#6]:[#6](:[#6](:[#6]:1)-[#9])-[#6]-[#7]-[#6]1:[#6,#7]:[#6]:[#6]:[#6]:[#7,#6]:1\n", "Row: 164 Inhibition of HIV1 protease\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 44.5, mcs nAts: 24\n", "[#7]-[#6]-[#6](-[#8])-[#6](-[#6]-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1)-[#7]-[#6](=[#8])-[#8]-[#6]1-[#6]-[#8]-[#6]2-[#6]-1-[#6]-[#6]-[#8]-2\n", "Row: 165 Displacement of [125I]human urotensin 2 from human recombinant urotensin 2 receptor expressed in HEK293 cells\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 29.7, mcs nAts: 12\n", "[#7,#6]-[#6]-[#6](=[#8])-[#7]1-[#6]-[#6]-[#6,#8]-[#6]-[#6]-1-[#6]-[#7]\n", "Row: 166 Inhibition of Mycobacterium tuberculosis PtpA\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 22.8, mcs nAts: 14\n", "[#8]=[#15](-[#8])(-[#8])-[#6](-[#9])(-[#9])-[#6]1:[#6]:[#6]:[#6](:[#6]:[#6]:1)-[#35,#6,#7,#16]\n", "Row: 167 Displacement of [3H]spiperone from human dopamine D2S receptor expressed in HEK cells\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 34.8, mcs nAts: 11\n", "[#6](-[#6,#7]=,-[#6]-[#6,#7]1:,-[#6]:,-[#6]:,-[#6,#7]:,-[#6]:,-[#6]:,-1)-[#7,#6]-[#6,#7]\n", "Row: 168 Binding affinity against mitochondrial DBI complex (peripheral benzodiazepine receptor) using primary cultures of glial cells\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 27.3, mcs nAts: 13\n", "[#6,#7]-[#7,#6]-[#6]-,=[#6]-[#6]1:[#6]:[#7]:[#6]2:[#6]:1:[#6]:[#6]:[#6]:[#6]:2\n", "Row: 169 Inhibition of rat recombinant nNOS\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 24.9, mcs nAts: 15\n", "[#6]-[#7,#8]-[#6]1-[#6]-[#7]-[#6]-[#6]-1-[#6]-[#6]1:[#6,#7]:[#6]:[#6]:[#6](:[#7,#6]:1)-[#7,#6]\n", "Row: 170 BindingDB_Patents: Time-Resolved FRET Assay. A homogeneous time-resolved FRET assay was used to determine IC50 values for inhibitors of the soluble human BACE1 catalytic domain. The assay monitored the increase of 620nm fluorescence that resulted from BACE1 cleavage of an APPswedish APPswe mutant peptide FRET substrate (QSY7-EISEVNLDAEFC-Europium-amide).\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 30.3, mcs nAts: 27\n", "[#6,#8]-[#6]1:[#7]:[#6](-[#7]2-[#6]-[#6]3-[#6](=[#8])-[#7](-[#6])-[#6](=,-[#7]-[#6]-3(-[#6]-2)-[#6]2:[#6]:[#6]:[#6]:[#6]:[#6]:2)-,=[#7]):[#7]:[#6](:[#6]:1-[#9,#17])-[#6,#8]\n", "Row: 171 Displacement of [3H]-(+)-pentazocine from Sigma1 receptor in Dunkin Hartley guinea pig brain membrane after 180 mins by liquid scintillation counting analysis\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 24.9, mcs nAts: 18\n", "[#7,#6]-[#6]-[#6]-[#6]-[#8]-[#6]1:[#6]:[#6]:[#6](:[#7](:[#7]:1)-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1)=[#8]\n", "Row: 172 Binding affinity to human cloned Alpha-2C adrenergic receptor\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 28.0, mcs nAts: 23\n", "[#7,#6]1-[#6]-[#6]-[#7](-[#6]-[#6,#7]-1)-[#6]1:[#6]:[#6]:[#6](:[#6]:[#6]:1)-[#7]-[#6]1:[#6]:[#6]:[#7]:[#6]2:[#6]:1:,-[#6]:,-[#6]:,-[#6]:,-[#6]:,-2\n", "Row: 173 Displacement of [3H]WIN35,428 from Sprague-Dawley rat brain DAT after 120 mins by liquid scintillation counting analysis\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 23.4, mcs nAts: 17\n", "[#7,#8]-,=[#6]-[#6]-[#16]-[#6](-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1)-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1\n", "Row: 174 Displacement of [3H]rauwolscine from human ADRA2A expressed in S115 cells\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 28.0, mcs nAts: 23\n", "[#7,#6]1-[#6]-[#6]-[#7](-[#6]-[#6,#7]-1)-[#6]1:[#6]:[#6]:[#6](:[#6]:[#6]:1)-[#7]-[#6]1:[#6]:[#6]:[#7]:[#6]2:[#6]:1:,-[#6]:,-[#6]:,-[#6]:,-[#6]:,-2\n", "Row: 175 Inhibition of bovine recombinant eNOS\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 24.9, mcs nAts: 15\n", "[#6]-[#7,#8]-[#6]1-[#6]-[#7]-[#6]-[#6]-1-[#6]-[#6]1:[#6,#7]:[#6]:[#6]:[#6](:[#7,#6]:1)-[#7,#6]\n", "Row: 176 Displacement of [3H]rauwolscine from human ADRA2B expressed in S115 cells\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 28.0, mcs nAts: 23\n", "[#7,#6]1-[#6]-[#6]-[#7](-[#6]-[#6,#7]-1)-[#6]1:[#6]:[#6]:[#6](:[#6]:[#6]:1)-[#7]-[#6]1:[#6]:[#6]:[#7]:[#6]2:[#6]:1:,-[#6]:,-[#6]:,-[#6]:,-[#6]:,-2\n", "Row: 177 Displacement of [3H]rauwolscine from human ADRA2C expressed in S115 cells\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 28.0, mcs nAts: 23\n", "[#7,#6]1-[#6]-[#6]-[#7](-[#6]-[#6,#7]-1)-[#6]1:[#6]:[#6]:[#6](:[#6]:[#6]:1)-[#7]-[#6]1:[#6]:[#6]:[#7]:[#6]2:[#6]:1:,-[#6]:,-[#6]:,-[#6]:,-[#6]:,-2\n", "Row: 178 Displacement of [3H]-8-OH-DPAT from human 5-HT1A receptor expressed in HEK293 cells after 1 hr\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 28.5, mcs nAts: 10\n", "[#6]1-,:[#6]-,:[#6]-,:[#7,#6](-,:[#6]-,:[#6]-,:1)-[#6,#8]-[#6,#7]-[#8,#6]-,=[#6,#7,#8]\n", "Row: 179 Inhibition of human cytosolic carbonic anhydrase 1 by stopped flow CO2 hydration assay\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 10.7, mcs nAts: 4\n", "[#6,#8]-,=[#6,#7](=,-[#8,#6,#7])-,=[#8,#6,#7]\n", "Row: 180 Displacement of [3H]spiperone from human D3 receptor expressed in CHO cells\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 34.8, mcs nAts: 11\n", "[#6](-[#6,#7]=,-[#6]-[#6,#7]1:,-[#6]:,-[#6]:,-[#6,#7]:,-[#6]:,-[#6]:,-1)-[#7,#6]-[#6,#7]\n", "Row: 181 Inhibition of [3H]DPCPX binding to rat cerebral cortex adenosine A1 receptor\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 29.2, mcs nAts: 22\n", "[#7]-[#6]1:[#7]:[#6](-[#7]2-[#6]-[#6]-[#7](-[#6]-[#6]-2)-[#6]):[#7]:[#6]2:[#7]:1:[#7]:[#6](:[#7]:2)-[#6]1:[#6]:[#6]:[#6]:[#8]:1\n", "Row: 182 Displacement of [3H]CP-55,940 from Sprague-Dawley rat brain CB1 receptor by scintillation counting analysis\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 28.0, mcs nAts: 17\n", "[#6,#7,#8]-,=[#6]-[#6]-[#7]1:[#6]:[#6](-[#6](=[#8])-[#7]-[#6]):[#6](:[#7,#6]2:[#6]:1:[#7,#8,#16]:[#6,#7]:[#7,#6]:2)=[#8]\n", "Row: 183 Binding affinity to dopamine D3 receptor (unknown origin)\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 28.8, mcs nAts: 18\n", "[#6]-[#7,#8]-[#6]-[#6]-[#6]-[#6]-[#7]1-[#6]-[#6]-[#7](-[#6]-[#6]-1)-[#6]1:[#6,#7]:[#6,#7]:[#6]:[#6]:[#6,#7]:1\n", "Row: 184 Inhibition of recombinant human GST-tagged LSD1 catalytic domain (172 to 833 residues) using dimethylated H3K4 peptide substrate preincubated for 10 mins followed by substrate addition by HPLC-MS analysis\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 29.4, mcs nAts: 26\n", "[#6,#7]1:[#6]:[#6]:[#6](:[#6]:[#6,#7]:1)-[#6]1:[#7,#6]:[#6]:[#6](:[#7,#6]:[#6]:1-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1)-[#8,#7]-[#6]-[#6]1-,:[#6]-,:[#6]-,:[#7,#6]-,:[#6,#7]-,:[#6]-,:1\n", "Row: 185 Binding affinity to dopamine D2 receptor (unknown origin)\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 28.8, mcs nAts: 18\n", "[#6]-[#7,#8]-[#6]-[#6]-[#6]-[#6]-[#7]1-[#6]-[#6]-[#7](-[#6]-[#6]-1)-[#6]1:[#6,#7]:[#6,#7]:[#6]:[#6]:[#6,#7]:1\n", "Row: 186 Displacement of [3H]CP-55,940 from human recombinant CB2 receptor expressed in CHO cell membranes after 60 mins by scintillation counting analysis\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 28.0, mcs nAts: 17\n", "[#6,#7,#8]-,=[#6]-[#6]-[#7]1:[#6]:[#6](-[#6](=[#8])-[#7]-[#6]):[#6](:[#7,#6]2:[#6]:1:[#7,#8,#16]:[#6,#7]:[#7,#6]:2)=[#8]\n", "Row: 187 Inhibition of human factor 10a\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 35.7, mcs nAts: 25\n", "[#8]=[#6](-[#7]-[#6]1-[#6]-,:[#6,#7,#8]-,:[#6]-[#6]-1-[#7]-[#6](=[#8])-[#6])-[#6]1:[#6]:[#6]:[#6](:[#6]:[#6]:1)-[#7]1:[#6]:[#6]:[#6]:[#6]:[#6]:1=[#8]\n", "Row: 188 Displacement of [3H]CP-55,940 from Sprague-Dawley rat spleen CB2 receptor by scintillation counting analysis\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 28.0, mcs nAts: 17\n", "[#6,#7,#8]-,=[#6]-[#6]-[#7]1:[#6]:[#6](-[#6](=[#8])-[#7]-[#6]):[#6](:[#7,#6]2:[#6]:1:[#7,#8,#16]:[#6,#7]:[#7,#6]:2)=[#8]\n", "Row: 189 Displacement of [3H]N-methyl-scopolamine from human muscarinic M3 receptor expressed in CHO K1 cells\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 31.8, mcs nAts: 14\n", "[#6]-[#7]1-[#6]-[#6]-[#6](-[#6]-[#6]-1)-[#7]1-[#6]-[#6](-[#6])-[#7,#8]-[#6]-1=[#8]\n", "Row: 190 Displacement of [3H]CP-55,940 from human recombinant CB1 receptor expressed in CHO cell membranes after 90 mins by scintillation counting analysis\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 28.0, mcs nAts: 17\n", "[#6,#7,#8]-,=[#6]-[#6]-[#7]1:[#6]:[#6](-[#6](=[#8])-[#7]-[#6]):[#6](:[#7,#6]2:[#6]:1:[#7,#8,#16]:[#6,#7]:[#7,#6]:2)=[#8]\n", "Row: 191 BindingDB_Patents: Radioligand Binding Assay. Compounds of the invention were assessed in a competition binding assay where different concentrations of compounds were incubated with the LXR ligand binding domain (LBD) in the presence of radiolabeled LXR ligand [3H]TO901317. The amount of the LXR-LBD that complexed with [3H]T0901317 was measured by scintillation proximity assay (SPA) employing non-specific binding of LXR-LBD to poly-lysine coated Yttrium silicate beads. Partially purified LXR alpha or beta LBD protein (15-45 nM) was incubated at rt for 30 min with 15 nM [3H]T0901317 (25-40 Ci/mmol) and different concentrations of test compounds in 80 uL of phosphate buffered saline (PBS) buffer containing 2.5% DMSO, 1% glycerol, 2 mM EDTA, 2 mM CHAPS and 5 mM DTT in 96-well plates. Poly-lysine SPA beads (50 ug) were added to each well and the total volume was adjusted to 120 uL. The plates were shaken on an orbital shaker for 20 min and then allowed to settle for 10 more minutes at room temperature.\n", " * postgresql://localhost/chembl_23\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Mean nAts 34.7, mcs nAts: 32\n", "[#6]-[#6](-[#6])-[#6]1-[#6]2:[#7]:[#6]3:[#6]:[#6]:[#6](:[#6]:[#6]:3:[#7]:2-[#6]-[#6]-[#7]-1-[#6]1:[#7]:[#6]:[#6](:[#6](:[#7]:1)-[#6](-[#9])(-[#9])-[#9])-[#6]-,=[#8,#6,#7])-[#16](-[#6])(=[#8])=[#8]\n", "Row: 192 Binding affinity against human immunodeficiency virus (HIV) protease\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 39.2, mcs nAts: 23\n", "[#7,#6,#8,#16]-[#6,#7,#16]-[#6,#7]-[#6,#7]-[#6]-[#6]-[#7,#6]-[#6,#7]-[#8,#6]-[#6,#8]-[#6]1-[#6]2:[#6]:[#6]:[#6]:[#6]:[#6]:2-[#6]2:[#6]-1:[#6]:[#6]:[#6]:[#6]:2\n", "Row: 193 Binding affinity to 5HT1A receptor (unknown origin)\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 28.8, mcs nAts: 18\n", "[#6]-[#7,#8]-[#6]-[#6]-[#6]-[#6]-[#7]1-[#6]-[#6]-[#7](-[#6]-[#6]-1)-[#6]1:[#6,#7]:[#6,#7]:[#6]:[#6]:[#6,#7]:1\n", "Row: 194 Binding affinity to 5HT2A receptor (unknown origin)\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 28.8, mcs nAts: 18\n", "[#6]-[#7,#8]-[#6]-[#6]-[#6]-[#6]-[#7]1-[#6]-[#6]-[#7](-[#6]-[#6]-1)-[#6]1:[#6,#7]:[#6,#7]:[#6]:[#6]:[#6,#7]:1\n", "Row: 195 Displacement of [3H]-(+)-pentazocine from sigma 1 receptor in guinea pig brain membranes after 120 mins by scintillation counting\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 29.0, mcs nAts: 21\n", "[#6]1=,-[#6]-[#6]2:[#6,#16]:[#6,#16]:[#16,#6]:[#6]:2-[#6]2(-[#8]-1)-[#6]-[#6]-[#7](-[#6]-[#6]-2)-[#6]-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1\n", "Row: 196 Binding affinity for human corticotropin releasing factor receptor 1\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 35.8, mcs nAts: 27\n", "[#6]-[#6]-[#7](-[#6]-[#6]1:[#6](-[#6]):[#7]:[#6]2:[#7]:1:[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1:[#7]:2-[#6]1:[#6]:[#6]:[#6](:[#6]:[#6]:1-[#6,#17,#35])-[#6,#17])-[#6]-[#6]\n", "Row: 197 Inhibition of human histamine H3 receptor\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 29.7, mcs nAts: 19\n", "[#6]-[#7]-[#6]-[#6]1:[#6]:[#6](-[#6](=[#8])-[#7]):[#6]:[#6]:[#6]:1-[#8]-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1\n", "Row: 198 Binding affinity to 5HT2C receptor (unknown origin)\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 28.8, mcs nAts: 18\n", "[#6]-[#7,#8]-[#6]-[#6]-[#6]-[#6]-[#7]1-[#6]-[#6]-[#7](-[#6]-[#6]-1)-[#6]1:[#6,#7]:[#6,#7]:[#6]:[#6]:[#6,#7]:1\n", "Row: 199 Inhibition of [3H]ZM-241,385 binding to rat brain adenosine A2a receptor\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 29.2, mcs nAts: 22\n", "[#7]-[#6]1:[#7]:[#6](-[#7]2-[#6]-[#6]-[#7](-[#6]-[#6]-2)-[#6]):[#7]:[#6]2:[#7]:1:[#7]:[#6](:[#7]:2)-[#6]1:[#6]:[#6]:[#6]:[#8]:1\n", "Row: 200 Displacement of [125I]SS14 from human SST3 expressed in CHO membrane after 60 to 90 mins by scintillation counting\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 26.9, mcs nAts: 10\n", "[#6]-[#7,#6,#8]-[#6,#7](=,-[#8,#6])-[#6]1:,-[#6]:,-[#6]:,-[#6]:,-[#6]:,-[#6,#7]:,-1\n", "Row: 201 Binding activity against human MCH-R1\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 29.0, mcs nAts: 10\n", "[#6]1:[#6]:[#6]:[#6]:[#6](:[#6]:1)-[#6](=[#8])-[#7]-[#6]\n", "Row: 202 Displacement of [3H]UR-MK114 from human neuropeptide Y receptor type 1 expressed in human SK-N-MC cells\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 82.5, mcs nAts: 35\n", "[#7]=,-[#6](-,=[#7,#8])-,=[#7]-[#6]-[#6]-[#6]-[#6](-[#7]-[#6](=[#8])-[#6](-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1)-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1)-[#6](=[#8])-[#7]-[#6]-[#6]1:[#6]:[#6]:[#6](:[#6]:[#6]:1)-[#8,#6]\n", "Row: 203 Displacement of [125I]-cyanopindolol from human adrenergic beta-1 receptor expressed in CHO cells\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 34.0, mcs nAts: 27\n", "[#8]-[#6](-[#6]-[#7]-[#6]1-[#6]-[#6]-[#7](-[#6]-[#6]-1)-[#6]1:[#7]:[#6]:[#7]:[#6]2:[#6]:1:[#16,#6]:[#6]:[#6,#16]:2)-[#6]-[#8]-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1\n", "Row: 204 Inhibition of wild type HIV1 protease by FRET assay\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 40.1, mcs nAts: 30\n", "[#6]-[#6]-[#6]-[#6]-[#7](-[#6]-[#6](-[#8])-[#6](-[#6]-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1)-[#7]-[#6](=[#8])-[#8]-[#6])-[#16](=[#8])(=[#8])-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1\n", "Row: 205 Displacement of [125I][Tyr14]nociceptin FQ from human cloned nociceptin receptor expressed in CHO cells\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 34.3, mcs nAts: 26\n", "[#7,#6]-[#6]-[#6]1(-[#6])-[#6]-[#6]2-[#6]-[#6]-[#6](-[#6]-1)-[#7]-2-[#6](-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1-[#17])-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1-[#17]\n", "Row: 206 Binding affinity at human MC4R\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 41.5, mcs nAts: 36\n", "[#6]-[#6](-,=[#6,#8])-[#6,#7]-[#6](-[#7,#6])-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1-[#7]1-[#6]-[#6]-[#7](-[#6]-[#6]-1)-[#6](=[#8])-[#6](-[#6]-[#6]1:[#6]:[#6]:[#6](:[#6]:[#6]:1-[#17])-[#17])-[#7]1-[#6]-[#6]-[#6]-[#6]-1=[#8]\n", "Row: 207 Inhibition of human recombinant carbonic anhydrase 2 at pH 7.5 by stopped flow CO2 hydration assay\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 16.3, mcs nAts: 6\n", "[#6]1:,-[#6,#7]:,-[#6,#7,#8]:,-[#6,#16]:,-[#6]:,-[#6,#7]:,-1\n", "Row: 208 Displacement of [3H]A585539 from alpha7 nicotinic acetylcholine receptor in rat brain minus cerebellum membrane\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 24.9, mcs nAts: 14\n", "[#6,#7]1:[#6,#7]:[#7,#6]:[#6,#7]:[#6](:[#6]:1)-[#7]1-[#6]-[#6]2-[#6]-[#7]-[#6]-[#6]-2-[#6]-1\n", "Row: 209 Displacement of [3H]cytisine from alpha4beta2 nicotinic acetylcholine receptor in rat brain minus cerebellum membrane\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 24.9, mcs nAts: 14\n", "[#6,#7]1:[#6,#7]:[#7,#6]:[#6,#7]:[#6](:[#6]:1)-[#7]1-[#6]-[#6]2-[#6]-[#7]-[#6]-[#6]-2-[#6]-1\n", "Row: 210 Inhibition of human ERG channel\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 28.6, mcs nAts: 7\n", "[#6,#7,#8,#9,#16,#17]-,=[#6,#7,#16]1:,-[#6,#7]:,-[#6]:,-[#6,#7]:,-[#7,#6]:,-[#6,#7]:,-1\n", "Row: 211 Inhibition of human recombinant carbonic anhydrase 1 at pH 7.5 by stopped flow CO2 hydration assay\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 16.3, mcs nAts: 6\n", "[#6]1:,-[#6,#7]:,-[#6,#7,#8]:,-[#6,#16]:,-[#6]:,-[#6,#7]:,-1\n", "Row: 212 Displacement of [3H]CP55,940 from CB1 receptor in rat brain cortical membranes\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 22.7, mcs nAts: 8\n", "[#6,#8]=,-[#6,#7,#8]-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1\n", "Row: 213 Displacement of [3H]-R(+)-7-OHDPAT from dopamine D3 receptor in rat brain homogenates\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 34.5, mcs nAts: 26\n", "[#6]-[#6]-[#6]-[#7](-[#6]-[#6]-[#6]1-[#6]-[#6]-[#6](-[#6]-[#6]-1)-[#7]-[#16,#6](=[#8])-,=[#6,#8])-[#6]1-[#6]-[#6]-[#6]2:[#6](-[#6]-1):[#16]:[#6](:[#7]:2)-[#7]\n", "Row: 214 Displacement of [125I]iodocyanopindolol from cloned human adrenergic beta-3 receptor expressed in CHO cells\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 33.0, mcs nAts: 17\n", "[#6]-[#16](=[#8])(=[#8])-[#7]-[#6]1:[#6]:[#6](-[#6]-[#6]-[#6,#7]-[#6,#7]-[#7,#6]):[#6]:[#6]:[#6]:1-[#8]\n", "Row: 215 Displacement of [3H]HTS446284 from human recombinant His-tagged TGFbetaR1 after 1 hr by scintillation counting\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 25.9, mcs nAts: 19\n", "[#6]-[#7,#6]1:[#6](-[#6]2:[#6]:[#6]:[#6]3:[#6](:[#6]:2):[#7]:[#6]:[#6]:[#7]:3):[#6,#7](-[#6]):[#6,#7](:[#7,#6]:1-,=[#6,#8])=,-[#8,#6]\n", "Row: 216 Competitive inhibition of N-terminal His6-tagged recombinant human c-MET (974 to 1390 amino acids) by spectrophotometry\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 25.8, mcs nAts: 12\n", "[#7,#6,#8]-[#6]1:[#6]:[#7]:[#6]2:[#6,#7](:[#7]:1):[#7,#6](:[#7]:[#7]:2)-[#6]-[#6,#7,#8,#16]\n", "Row: 217 Displacement of [3H]histamine from human recombinant histamine H4 receptor\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 18.8, mcs nAts: 8\n", "[#6,#7]-[#6]1:[#6,#7]:[#6,#7]:[#7,#6]:[#6](:[#7,#6]:1)-[#7,#6]\n", "Row: 218 Inhibitory activity against HIV-1 protease\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 53.1, mcs nAts: 38\n", "[#8]=[#6]1-[#7](-[#6]-[#6]2:[#6]:[#6]:[#6]:[#6]:[#6]:2)-[#6](-[#6]-[#6]2:[#6]:[#6]:[#6]:[#6]:[#6]:2)-[#6](-[#8])-[#6](-[#6](-[#7]-1-[#6]-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1)-[#6]-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1)-[#8]\n", "Row: 219 Displacement of [3H](+)-pentazocine from sigma1 receptor in rat liver membrane by liquid scintillation counting\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 24.2, mcs nAts: 8\n", "[#6]1:,-[#6]:,-[#6,#7]:,-[#6]:,-[#6]:,-[#6,#7]:,-1-[#7,#6,#8]-[#6,#7]\n", "Row: 220 Displacement of [125I]I-AB-MECA from human recombinant adenosine A3 receptor expressed in CHO cells after 60 mins by gamma counter\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 28.2, mcs nAts: 8\n", "[#6,#7,#8,#9]-[#8,#6,#7]-,=[#6,#7]1:,-[#6,#7]:,-,=[#6,#7]:,-[#6,#7]:,-,=[#6,#7]:,-[#6,#7]:,-1\n", "Row: 221 Inhibition of Mycobacterium tuberculosis TMPK using dTMP substrate and NADH by pyruvate kinase/lactate dehydrogenase coupling system based spectrophotometric assay\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 20.9, mcs nAts: 16\n", "[#8]=[#6]1:[#7]:[#6](=[#8]):[#7](:[#6]:[#6]:1-[#9,#6,#17,#35])-[#6]-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1\n", "Row: 222 Displacement of [125I]iodomelatonin from human cloned MT2 receptor expressed in rat NIH3T3 cells after 90 mins\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 16.0, mcs nAts: 13\n", "[#6,#8]-,=[#6](=,-[#8,#6])-[#7]-[#6]-[#6]-[#16,#8]-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1\n", "Row: 223 Displacement of [125I]iodomelatonin from human cloned MT1 receptor expressed in rat NIH3T3 cells after 90 mins\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 16.0, mcs nAts: 13\n", "[#6,#8]-,=[#6](=,-[#8,#6])-[#7]-[#6]-[#6]-[#16,#8]-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1\n", "Row: 224 Binding affinity to human AR\n", " * postgresql://localhost/chembl_23\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Mean nAts 24.8, mcs nAts: 17\n", "[#6,#8]-,=[#6]-[#7](-[#6]-[#6])-[#6]1:[#6]:[#6]:[#6]2:[#6](:[#6]:1):[#6](:[#6]:[#6](:[#7]:2)-,=[#8])-[#6,#8,#17,#35]\n", "Row: 225 Displacement of [3H]CP-55940 from human CB2 receptor expressed in HEK cells\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 34.5, mcs nAts: 24\n", "[#6]-,=,#[#6]-[#6]-[#7]1:[#6]:[#6](-[#6](=[#8])-[#7]-[#7,#6]2-[#6]-[#6]-[#6]-[#6]-[#6]-2):[#6](:[#6]2:[#6]:1:[#6]:[#6]:[#6](:[#6]:2)-[#35,#6,#7,#16,#53])=[#8]\n", "Row: 226 Displacement of [3H]CP-55940 from human CB1 receptor expressed in HEK cells\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 34.5, mcs nAts: 24\n", "[#6]-,=,#[#6]-[#6]-[#7]1:[#6]:[#6](-[#6](=[#8])-[#7]-[#7,#6]2-[#6]-[#6]-[#6]-[#6]-[#6]-2):[#6](:[#6]2:[#6]:1:[#6]:[#6]:[#6](:[#6]:2)-[#35,#6,#7,#16,#53])=[#8]\n", "Row: 227 Inhibition of GST-tagged astrosclera willeyana Astrosclerin-3 expressed in Escherichia coli after 15 mins preincubation by stopped flow CO2 hydration assay\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 16.3, mcs nAts: 6\n", "[#6]1:,-[#6,#7]:,-[#6,#7,#8]:,-[#6,#16]:,-[#6]:,-[#6,#7]:,-1\n", "Row: 228 Binding affinity towards Opioid receptor kappa 1 from guinea pig brain using [3H]U-69593 as radioligand\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 24.7, mcs nAts: 19\n", "[#6]-[#6]1-[#6]2-[#6]-[#6]3:[#6](-[#6]-1(-[#6])-[#6]-[#6]-[#7]-2-[#6]-[#6]1-[#6]-[#6]-1):[#6]:[#6]:[#6]:[#6]:3\n", "Row: 229 Displacement of [125I-Tyr13] from human MCH-R1 expressed in HEK 293 cells\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 40.5, mcs nAts: 22\n", "[#6,#8]-,=[#7,#6]1-[#6,#7](=,-[#8,#6])-[#7,#6](-,=[#6,#8])-[#6]2(-[#6,#7]-1=,-[#8,#6])-[#6]-[#6]-[#7](-[#6]-[#6]-2)-[#6]-[#6]1:[#6]:[#6]:[#6](:[#6]:[#6]:1)-[#7,#6]\n", "Row: 230 BindingDB_Patents: Receptor Binding Assay. Receptor binding assay: Membranes were prepared from CHO cells expressing S1P1 or S1P3 for use in ligand and 355-GTPgammaS binding studies. Cells were suspended in 50 mM TRIS, pH 7.4, 2 mM EDTA, 250 mM Sucrose (buffer A) and 1x Complete protease inhibitor cocktail (Roche), and disrupted at 4 C. by N2 decompression using a cell disruption bomb (Parr Instrument). Following centrifugation at 1000 RPM for 10 min at 4 C., the supernatant was suspended in buffer A and centrifuged again at 19000 RPM for 60 min at 4 C. The pellet was then suspended in 10 mM HEPES, pH 7.4, 1 mM EDTA, 250 mM Sucrose (Buffer B), and 1x Complete EDTA-free protease inhibitor cocktail and homogenized using a potter. Membranes were flash frozen in liquid N2 and stored at --80 C. [33P]sphingosine 1-phosphate (3000 Ci/mmol; American Radiolabeled Chemicals, Inc.) was added to test compounds in DMSO. Membranes and WGA SPA beads (GE Healthcare) were added to give a final volume of 100 ul in 96-well plates.\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 32.1, mcs nAts: 18\n", "[#6]-[#6]1:[#6](-[#6]2:[#7]:[#6](-[#6]3:[#6]:[#6]:[#6]:[#6]:[#6]:3):[#7]:[#8]:2):[#6]:[#7]:[#7]:1-[#6]\n", "Row: 231 Displacement of (+)-[3H]pentazocine from guinea pig brain sigma 1 receptor after 180 mins by scintillation counting\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 25.5, mcs nAts: 13\n", "[#7,#6](-[#6,#7]-[#6]-[#6]-[#6]1:,-[#6](-,:[#6]-,=,:[#6]-,:[#8,#6]):,-[#7,#6]:,-[#7,#6]:,-[#6,#8]:,-1)-,=[#6]\n", "Row: 232 Binding affinity against adenosine A1 receptor of cerebral cortex using [3H]CPX as a radioligand\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 18.3, mcs nAts: 15\n", "[#6]-[#6]-[#6]-[#7]1:[#6](=[#8]):[#7](-[#6]):[#6](:[#6]2:[#6]:1:[#7]:[#6]:[#7]:2)=[#8]\n", "Row: 233 Inhibition of IMPDH1 (unknown origin)\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 39.9, mcs nAts: 24\n", "[#6]-[#8]-[#6]1:[#6](-[#6]):[#6]2:[#6](:[#6](:[#6]:1-[#6]-[#6]=,-[#6,#8]-[#6,#15]-[#6]-[#6,#15](=[#8])-[#7,#8]-[#6]-[#6])-[#8])-[#6](=[#8])-[#8]-[#6]-2\n", "Row: 234 Inhibition of wild type HIV1 protease Q7K mutant\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 44.5, mcs nAts: 38\n", "[#6]-[#6]-[#7](-[#6]-[#6](-[#8])-[#6](-[#6]-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1)-[#7]-[#6](=[#8])-[#6]1-[#6]-[#7](-[#6]2:[#6]:[#6]:[#6]:[#6]:[#6]:2)-[#6](-[#8]-1)=[#8])-[#16](=[#8])(=[#8])-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1\n", "Row: 235 Inhibition of human plasmin\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 26.6, mcs nAts: 19\n", "[#7]-[#6](-[#7])=[#7]-[#6]1:[#7]:[#6]:[#6](:[#6]2:[#6]:1:[#6]:[#6](:[#6]:[#6]:2)-[#16](-,=[#7,#8])(=[#8])=,-[#8,#7])-[#17]\n", "Row: 236 Inhibition of human tPA\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 26.6, mcs nAts: 19\n", "[#7]-[#6](-[#7])=[#7]-[#6]1:[#7]:[#6]:[#6](:[#6]2:[#6]:1:[#6]:[#6](:[#6]:[#6]:2)-[#16](-,=[#7,#8])(=[#8])=,-[#8,#7])-[#17]\n", "Row: 237 Inhibition of human uPA\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 26.6, mcs nAts: 19\n", "[#7]-[#6](-[#7])=[#7]-[#6]1:[#7]:[#6]:[#6](:[#6]2:[#6]:1:[#6]:[#6](:[#6]:[#6]:2)-[#16](-,=[#7,#8])(=[#8])=,-[#8,#7])-[#17]\n", "Row: 238 Binding affinity towards Opioid receptor mu 1 from guinea pig brain using [3H]DAMGO as radioligand\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 24.7, mcs nAts: 19\n", "[#6]-[#6]1-[#6]2-[#6]-[#6]3:[#6](-[#6]-1(-[#6])-[#6]-[#6]-[#7]-2-[#6]-[#6]1-[#6]-[#6]-1):[#6]:[#6]:[#6]:[#6]:3\n", "Row: 239 Displacement of WFYpSPFLE from human Pin1 catalytic domain after 10-20 mins by fluorescence polarization assay\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 26.5, mcs nAts: 12\n", "[#8,#7]=,-[#6](-[#7,#6]-[#6,#7]-,=,#[#6]-[#6]1:,=[#6]:,-[#6]:,-[#6]:,-[#6]:,-[#6]:,-1)-,=[#6,#8]\n", "Row: 240 Inhibition of IMPDH2 (unknown origin)\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 39.9, mcs nAts: 24\n", "[#6]-[#8]-[#6]1:[#6](-[#6]):[#6]2:[#6](:[#6](:[#6]:1-[#6]-[#6]=,-[#6,#8]-[#6,#15]-[#6]-[#6,#15](=[#8])-[#7,#8]-[#6]-[#6])-[#8])-[#6](=[#8])-[#8]-[#6]-2\n", "Row: 241 Displacement of [3H]citalopram from Sprague-Dawley rat brain stem SERT site S1 by scintillation counting analysis\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 31.3, mcs nAts: 23\n", "[#6]-[#7](-[#6])-[#6]-[#6]-[#6]-[#6]1(-[#6]2:[#6]:[#6]:[#6](:[#6]:[#6]:2)-[#35,#6,#9])-[#8]-[#6]-[#6]2:[#6]-1:[#6]:[#6]:[#6](:[#6]:2)-[#6]\n", "Row: 242 Inhibition against Bacillus subtilis DNA topoisomerase III (wild type)\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 17.0, mcs nAts: 15\n", "[#8,#6]-,=[#6]1:[#6]:[#6](-[#7]-[#6]2:[#6]:[#6]:[#6,#7]:[#6]:[#6,#7]:2):[#7,#6]:[#6](:[#7,#6]:1)-,=[#8,#6]\n", "Row: 243 Displacement of [3H]histamine from human recombinant histamine H4 receptor expressed in SK-N-MC cells after 45 mins by competition binding analysis\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 18.9, mcs nAts: 7\n", "[#7,#6]-[#6,#7]1:,-[#6,#7]:,-[#6,#7]:,-[#7,#6]:,-[#6]:,-[#7,#6]:,-1\n", "Row: 244 Displacement of [3H]CP-559440 from human CB1 receptor expressed in HEK293 cells\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 29.7, mcs nAts: 23\n", "[#8]=[#6](-[#7]-[#6,#7])-[#6]1:[#6]:[#7,#6](-[#6]2:,-[#6]:,-[#6]:,-[#6](:,-[#6]:,-[#6]:,-2)-[#17,#6,#8,#9,#35]):[#6,#7](:[#7]:1)-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1-[#17,#6,#8,#9]\n", "Row: 245 Binding affinity against adenosine A1 receptor in guinea pig forebrain membranes using N6-[3H]cyclohexyladenosine as radioligand\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 23.5, mcs nAts: 11\n", "[#6,#8,#17]-,=[#7,#6]:[#6,#7]:[#7,#6]:[#6,#7]1:[#7,#6]:[#6,#7]:[#7]:[#6,#7]:1:[#6,#7]=,-[#8,#6,#7]\n", "Row: 246 Displacement of [125]NDPMSH from human MC4 receptor expressed in HEK293 cells\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 36.2, mcs nAts: 30\n", "[#6,#9,#17]-[#6]1:[#6]:[#6]:[#6](:[#6](:[#6]:1)-[#6](-[#7])-[#6]-[#6])-[#7]1-[#6]-[#6]-[#7](-[#6]-[#6]-1)-[#6](=[#8])-[#6]1-[#7]-[#6]-[#6]-[#6]-1-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1\n", "Row: 247 Displacement of [3H]diprenorphine from human kappa opioid receptor expressed in CHO cell membrane\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 28.5, mcs nAts: 18\n", "[#8]=[#6]1-[#7]-[#6]-[#7](-[#6]-12-[#6]-[#6]-[#7](-[#6]-[#6]-2)-[#6])-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1\n", "Row: 248 Inhibition of human recombinant carbonic anhydrase 2 after 15 mins by stopped flow CO2 hydration assay\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 16.4, mcs nAts: 6\n", "[#6]1:,-[#6,#7]:,-[#6,#7,#8]:,-[#6,#16]:,-[#6]:,-[#6,#7]:,-1\n", "Row: 249 Displacement of [3H]diprenorphine from human mu opioid receptor expressed in CHO cell membrane\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 28.5, mcs nAts: 18\n", "[#8]=[#6]1-[#7]-[#6]-[#7](-[#6]-12-[#6]-[#6]-[#7](-[#6]-[#6]-2)-[#6])-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1\n", "Row: 250 Inhibition of human recombinant carbonic anhydrase 1 after 15 mins by stopped flow CO2 hydration assay\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 16.4, mcs nAts: 6\n", "[#6]1:,-[#6,#7]:,-[#6,#7,#8]:,-[#6,#16]:,-[#6]:,-[#6,#7]:,-1\n", "Row: 251 Displacement of [125I]-Tyr-o- CRF from human corticotropin releasing factor receptor 1 expressed in IMR-32 cells\n", " * postgresql://localhost/chembl_23\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Mean nAts 30.2, mcs nAts: 20\n", "[#6,#7]-[#7]-[#6]-[#6]1:[#6](-[#6]):[#7]:[#6]2:[#7]:1-[#6]-[#6]-[#7]-2-[#6]1:[#6]:[#6]:[#6](:[#6]:[#6]:1-[#6,#17,#35])-[#6,#17]\n", "Row: 252 Displacement of [3H]5-HT from human 5-HT7 receptor expressed in HEK293 cells after 30 mins by microbeta counting analysis\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 26.6, mcs nAts: 15\n", "[#7,#6]-[#6]-[#6]-[#7]1-[#6]-[#6]-[#7,#6](-[#6]-[#6]-1)-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1\n", "Row: 253 Binding affinity to human thrombin by standard kinetic photometric assay\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 25.4, mcs nAts: 19\n", "[#6,#7]-[#6,#7]-[#6](=[#8])-[#7,#6]1-[#6]-[#6]-[#6]-[#6,#7]-1-[#6](=[#8])-[#7,#6]-[#6]-[#6]1:,-[#6]:,-[#6]:,-[#6]:,-[#6]:,-[#6]:,-1\n", "Row: 254 Inhibition of human recombinant dUTPase\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 27.8, mcs nAts: 10\n", "[#6]1:[#6]:[#6]:[#7,#6](:[#6]:[#7,#6]:1)-[#6,#14]-[#6,#7,#8]-,=[#6]-[#8,#6,#7]\n", "Row: 255 Inhibition of human glutaminyl cyclase expressed in Escherichia coli DH5alpha using H-Gln-AMC as substrate by fluorometric analysis in presence of pyroglutamyl aminopeptidase\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 23.4, mcs nAts: 17\n", "[#6,#8]-,=[#6,#8,#16]-[#16,#6,#7]-[#6,#7]1:[#7,#6,#8]:[#7,#6]:[#6](:[#8,#6,#7,#16]:1)-[#6]1:[#6]:[#6]:[#6]2:[#6](:[#6]:1):[#7]:[#6]:[#7]:2\n", "Row: 256 Displacement of [3H]DPCPX from adenosine A1 receptor in bovine cerebral cortical membranes\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 31.2, mcs nAts: 23\n", "[#7]-[#6]1:[#6](-[#6](=[#8])-[#8]-[#6]):[#6]:[#7]:[#6]2:[#6]:1:[#6]:[#7]:[#7]:2-[#6]-[#6](-[#17])-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1\n", "Row: 257 Binding affinity using [125I]hU-II radioligand binding assay in HEK293 cell membranes expressing human Urotensin 2 receptor \n", " * postgresql://localhost/chembl_23\n", "Mean nAts 34.1, mcs nAts: 23\n", "[#6,#8]-,=[#6](=,-[#8,#6])-[#7]-[#6]1-[#6]-[#6]-[#7](-[#6]-1)-[#6]-[#6]1:[#6]:[#6]:[#6](:[#6]:[#6]:1)-[#8]-[#6]-[#6]-[#6]-[#7](-[#6])-[#6]\n", "Row: 258 BindingDB_Patents: Radioligand Binding Assay. Human Embryonic Kidney 293 cells (HEK293) stably expressing rat orexin 1 receptor (Genebank accession number NM 001525) or Chinese ovary cells (CHO) stably expressing human orexin 1 receptor (Genebank accession number NM 001526) were grown to confluency in DMEM (Hyclone, cat # SH30022), 10% FBS, 1x Pen/Strep, 1x sodium pyruvate, 10 mM HEPES, 600 ug/mL G418 and DMEM/F12 (Gibco, Cat #11039), 10% FBS, 1x Pen/Strep, 600 ug/mL G418 media, respectively on 150 cm2 tissue culture plates, washed with 5 mM EDTA in PBS (HyClone Dulbecco's Phosphate Buffered Saline 1x with Calcium and Magnesium, Cat # SH30264.01, hereafter referred to simply as PBS) and scraped into 50 ml tubes. After centrifugation (2Kx G, 5 min at 4 C.), the supernatant was aspirated and the pellets frozen and stored at -80 C. Cells were resuspended in PBS in the presence of 1 tablet of protease inhibitor cocktail (Roche, Cat. #11836145001) per 50 mL.\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 31.8, mcs nAts: 27\n", "[#8]=[#6](-[#6]1:[#6,#7]:[#6]:[#6]:[#6,#7]:[#6]:1-[#35,#6,#7,#8])-[#7]1-[#6]-[#6]2-[#6]-[#6](-[#6]-1-[#6]-2)-[#8,#7]-[#6]1:[#6]:[#6,#7]:[#6](:[#6]:[#7]:1)-[#6](-[#9])(-[#9])-[#9]\n", "Row: 259 Inhibition of human carbonic anhydrase 2 preincubated for 15 mins measured for 10 to 100 sec by stopped-flow method\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 15.4, mcs nAts: 6\n", "[#6]1:,-[#6,#7]:,-[#6,#7,#8]:,-[#6,#16]:,-[#6]:,-[#6,#7]:,-1\n", "Row: 260 Displacement of [3H]A585539 from alpha7 nACHR in rat brain homogenate\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 21.9, mcs nAts: 15\n", "[#6]-[#7]1-[#6]-[#6]2-[#6]-[#6]-1-[#6]-[#7]-2-[#6]1:[#6,#7]:[#6,#7]:[#6](:[#7,#6]:[#7]:1)-[#17,#6]\n", "Row: 261 Displacement of [3H]CP-55940 from human CB2 receptor expressed in CHO cell membrane after 60 mins by scintillation counting analysis\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 31.5, mcs nAts: 20\n", "[#6]-[#6]-[#6]-[#6]-[#6]-[#7]1:[#6]:[#6](-[#6](=[#8])-[#7]-[#6]):[#6](:[#7]2:[#6]:1:[#6]:[#6](:[#7]:2)-[#6])=[#8]\n", "Row: 262 Displacement of [125I]MCH from human MCHR1 expressed in CHO cell\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 36.8, mcs nAts: 25\n", "[#6]1:[#6]:[#6,#7]:[#6]:[#6](:[#6]:1)-[#6]1=,-[#6]-[#6](-[#7](-[#6]-[#6]-[#7,#6])-[#6](=[#8])-[#7]-[#6]2:[#6]:[#6]:[#6]:[#6](:[#6]:2)-[#17,#6])-[#6]-[#6]-1\n", "Row: 263 Displacement of [3H]Nalpha-methylhistamine from histamine H3 receptor in guinea pig brain\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 33.6, mcs nAts: 20\n", "[#7,#6]1-,:[#6]-,:[#6]-,:[#7,#6](-,:[#6]-,:[#6,#7]-,:1)-[#6]-[#6,#7]1-[#6]-[#6]-[#7,#6](-[#6]-[#6]-1)-[#6]-[#6,#7]1:,-[#6]:,-[#6]:,-[#7,#6]:,-[#6]:,-[#6]:,-1\n", "Row: 264 Inhibition of human recombinant airway trypsin-like protease HAT using D-cyclohexylalanine-Pro-Arg-AMC as substrate by fluorescence plate reader analysis\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 40.9, mcs nAts: 17\n", "[#7,#6,#8]-,=[#6](=,-[#8,#6,#7])-[#6](-[#6]-,=[#8,#6])-[#7]-[#16](=[#8])(=[#8])-[#6]-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1\n", "Row: 265 Displacement of [3H]8-OH-DPAT from 5HT1A receptor in Sprague-Dawley rat brain cortex incubated for 30 mins by liquid scintillation counting analysis\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 25.7, mcs nAts: 12\n", "[#8]=[#6](-[#7]-[#6]-[#6]-[#7,#6])-[#6]1:[#6]:[#6]:[#7]:[#6]:[#6]:1\n", "Row: 266 Displacement of [3H]ketanserin from 5HT2A receptor in Sprague-Dawley rat brain cortex incubated for 15 mins by liquid scintillation counting analysis\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 26.0, mcs nAts: 12\n", "[#8]=[#6](-[#7]-[#6]-[#6]-[#7,#6])-[#6]1:[#6]:[#6]:[#7]:[#6]:[#6]:1\n", "Row: 267 Displacement of [3H]mesulergine from 5HT2C receptor in Sprague-Dawley rat brain cortex incubated for 15 mins by liquid scintillation counting analysis\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 25.9, mcs nAts: 12\n", "[#8]=[#6](-[#7]-[#6]-[#6]-[#7,#6])-[#6]1:[#6]:[#6]:[#7]:[#6]:[#6]:1\n", "Row: 268 Displacement of [3H]AVP from human V1A receptor expressed in CHO cells\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 35.2, mcs nAts: 18\n", "[#7,#6,#8,#16]-,=[#6,#7]-[#6,#7](-[#6]-[#6,#7]1:,-[#6]:,-[#6]:,-[#6,#7]:,-[#6]:,-[#6]:,-1)-[#7,#6]-[#16,#6,#7]-[#6]1:,-[#6]:,-[#6]:,-[#6,#7]:,-[#6]:,-[#6]:,-1\n", "Row: 269 Displacement of [3H]CP55940 from human CB1 receptor expressed in CHOK1 cells after 1 hr by liquid scintillation counting analysis\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 29.4, mcs nAts: 24\n", "[#6]-[#8,#6,#7]-[#6]1:[#7,#6]:[#6,#7]:[#6](:[#6,#7]:[#6]:1-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1)-[#6](=[#8])-[#7]-[#6]1-[#6]-[#6]-[#6]-[#6]-[#6]-1-[#8]\n", "Row: 270 Displacement of [3H]CP-55940 from human CB1 receptor expressed in CHO cell membrane after 90 mins by scintillation counting analysis\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 31.5, mcs nAts: 20\n", "[#6]-[#6]-[#6]-[#6]-[#6]-[#7]1:[#6]:[#6](-[#6](=[#8])-[#7]-[#6]):[#6](:[#7]2:[#6]:1:[#6]:[#6](:[#7]:2)-[#6])=[#8]\n", "Row: 271 Binding affinity to human recombinant CRTH2 receptor by cell based radioligand equilibrium competition assay\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 30.3, mcs nAts: 26\n", "[#8,#6]=,-[#6]-[#6]-[#6,#7]1:[#6]2:[#7,#6](:[#6]3:[#6]:1:[#6]:[#6]:[#6]:[#6]:3)-[#6]-[#6](-[#6]-[#6]-2)-[#7]-[#16](=[#8])(=[#8])-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6,#7]:1\n", "Row: 272 Displacement of [3H]CP-55940 from cloned human CB2 receptor\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 24.7, mcs nAts: 18\n", "[#6]1:[#6]:[#6,#7]:[#6]:[#6](:[#6]:1)-[#6]1:[#6]:[#6]:[#6](:[#6]:[#6]:1-[#8,#6,#7])-[#6](-[#6])(-[#6])-[#6]-,=[#8,#6,#7]\n", "Row: 273 Displacement of [3H]LSD from human cloned 5HT6 receptor expressed in human HeLa cells\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 27.9, mcs nAts: 18\n", "[#8]=[#16](=[#8])(-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1)-[#6]1:[#7]:[#7]:[#6]2:[#6]:1:[#6]:[#6]:[#6]:[#6]:2\n", "Row: 274 Displacement of [125]metastin from metastin receptor\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 111.5, mcs nAts: 48\n", "[#6,#7]-[#6](-,=[#6,#8])-[#6]-[#6](-[#7]-[#6](=[#8])-[#6]-[#7]-[#6](=[#8])-[#6](-[#6])-[#7]-[#6](=[#8])-[#6](-[#6])-[#7]-[#6](=[#8])-[#6](-[#6,#7]-[#6](-[#7,#6])=[#8])-[#7,#6])-[#6](=[#8])-[#7]-[#6](-[#6]-[#6,#8])-[#6](=[#8])-[#7]-[#6](-[#6]-[#6]1:,-[#6]:,-[#6]:,-[#6]:,-[#6,#7]:,-[#6]:,-1)-[#6](-,=[#7,#8])=,-[#8,#7]\n", "Row: 275 Displacement of [3H]CP-55940 from cloned human CB1 receptor\n", " * postgresql://localhost/chembl_23\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Mean nAts 24.7, mcs nAts: 18\n", "[#6]1:[#6]:[#6,#7]:[#6]:[#6](:[#6]:1)-[#6]1:[#6]:[#6]:[#6](:[#6]:[#6]:1-[#8,#6,#7])-[#6](-[#6])(-[#6])-[#6]-,=[#8,#6,#7]\n", "Row: 276 Inhibition of bovine thrombin using D-Phe-Pip-Arg-p-NA as substrate by chromogenic assay\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 30.7, mcs nAts: 20\n", "[#6]1:[#6]:[#6]:[#6]:[#6](:[#6]:1)-[#7]-[#6]-[#6]1-[#6]-[#6]-[#7](-[#6]-[#6]-1)-[#6]1:[#6,#7]:[#6]:[#7,#6]:[#6]:[#6,#7]:1\n", "Row: 277 Inhibition of human factor 10a using Z-D-Arg-Gly-Arg-p-NA as substrate by chromogenic assay\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 30.7, mcs nAts: 23\n", "[#6,#7,#8,#9,#16,#17,#35]-[#7,#6]1-,:[#6]-,:[#6]-,:[#6](-,:[#6]-,:[#6]-,:1)-[#6,#8]-[#7,#6,#8]-[#6]1:[#6]:[#6]:[#6]:[#6](:[#6]:1)-[#8,#6,#7]-[#6,#8]-[#6]1:,-[#6]:,-[#6]:,-[#6,#7]:,-[#6]:,-[#6]:,-1\n", "Row: 278 Displacement of [3H]CP-55940 from Sprague-Dawley rat brain CB1 receptor after 90 mins by scintillation counting analysis\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 31.5, mcs nAts: 20\n", "[#6]-[#6]-[#6]-[#6]-[#6]-[#7]1:[#6]:[#6](-[#6](=[#8])-[#7]-[#6]):[#6](:[#7]2:[#6]:1:[#6]:[#6](:[#7]:2)-[#6])=[#8]\n", "Row: 279 Displacement of [3H]CP-55940 from Sprague-Dawley rat spleen CB2 receptor after 60 mins by scintillation counting analysis\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 31.5, mcs nAts: 20\n", "[#6]-[#6]-[#6]-[#6]-[#6]-[#7]1:[#6]:[#6](-[#6](=[#8])-[#7]-[#6]):[#6](:[#7]2:[#6]:1:[#6]:[#6](:[#7]:2)-[#6])=[#8]\n", "Row: 280 Displacement of [3H]diprenorphine from human delta opioid receptor expressed in CHO cell membrane\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 28.5, mcs nAts: 18\n", "[#8]=[#6]1-[#7]-[#6]-[#7](-[#6]-12-[#6]-[#6]-[#7](-[#6]-[#6]-2)-[#6])-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1\n", "Row: 281 Displacement of [3H]diprenorphine from human cloned delta opioid receptor expressed in CHO cells\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 26.8, mcs nAts: 19\n", "[#6]-[#6]1-[#6]-[#7]2-[#6]-[#6]-[#7,#6]-[#6]-[#6]-2-[#6]-[#6]-1(-[#6])-[#6]1:[#6]:[#6]:[#6]:[#6](:[#6]:1)-[#8,#6]\n", "Row: 282 Displacement of [3H]alpha-bungarotoxin from nAChR in Musca domestica (house fly) head membrane after 60 min by scintillation counting\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 14.2, mcs nAts: 2\n", "[#6,#7,#8]-,=,#[#7,#6,#8]\n", "Row: 283 Inhibition of Thalassiosira weissflogii delta carbonic anhydrase preincubated for 15 mins by stopped flow CO2 hydration assay\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 16.4, mcs nAts: 6\n", "[#6]1:,-[#6,#7]:,-[#6,#7,#8]:,-[#6,#16]:,-[#6]:,-[#6,#7]:,-1\n", "Row: 284 Displacement of [3H]LSD from rat recombinant 5HT7 receptor expressed in HEK293 cells\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 32.0, mcs nAts: 17\n", "[#8]=[#6](-[#6]-[#6]-[#6]-[#6,#7])-[#7]-[#6]1-[#6]-[#6]-[#6]-[#6]2:[#6]-1:[#6]:[#6]:[#6]:[#6]:2\n", "Row: 285 Displacement of [3H]8-OH-DPAT from 5HT1A receptor in Wistar Han rat hippocampal membranes\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 32.1, mcs nAts: 17\n", "[#8]=[#6](-[#6]-[#6]-[#6]-[#6,#7])-[#7]-[#6]1-[#6]-[#6]-[#6]-[#6]2:[#6]-1:[#6]:[#6]:[#6]:[#6]:2\n", "Row: 286 Displacement of [125I]nociceptin from human nociceptin receptor expressed in CHO cell membrane\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 28.5, mcs nAts: 18\n", "[#8]=[#6]1-[#7]-[#6]-[#7](-[#6]-12-[#6]-[#6]-[#7](-[#6]-[#6]-2)-[#6])-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1\n", "Row: 287 Inhibition of human carbonic anhydrase 2 incubated for 15 mins by stopped-flow CO2 hydration assay\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 16.4, mcs nAts: 6\n", "[#6]1:,-[#6,#7]:,-[#6,#7,#8]:,-[#6,#16]:,-[#6]:,-[#6,#7]:,-1\n", "Row: 288 Inhibition of human carbonic anhydrase 1 incubated for 15 mins by stopped-flow CO2 hydration assay\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 16.4, mcs nAts: 6\n", "[#6]1:,-[#6,#7]:,-[#6,#7,#8]:,-[#6,#16]:,-[#6]:,-[#6,#7]:,-1\n", "Row: 289 Inhibition of human carbonic anhydrase 2 preincubated for 15 mins by CO2 hydrase stopped flow assay\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 16.4, mcs nAts: 6\n", "[#6]1:,-[#6,#7]:,-[#6,#7,#8]:,-[#6,#16]:,-[#6]:,-[#6,#7]:,-1\n", "Row: 290 Displacement of [3H]-LSD from human 5-HT6 receptor expressed in HEK293 cells after 1 hr\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 28.4, mcs nAts: 10\n", "[#6]1-,:[#6]-,:[#6]-,:[#7,#6](-,:[#6]-,:[#6]-,:1)-[#6,#8]-[#6]-[#8,#6]-[#6,#7]\n", "Row: 291 Inhibition constant for HIV aspartyl protease\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 42.5, mcs nAts: 33\n", "[#6,#7]-[#6]1:[#6]:[#6]:[#6](:[#6]:[#6]:1)-[#16](=[#8])(=[#8])-[#7](-[#6]-[#6]-[#6])-[#6](-[#6]-[#6]-[#6]-[#6]-[#7]-,=[#6](=,-[#8,#16])-[#7](-[#6])-[#6]-[#6]1:[#6]:[#6]:[#6,#7]:[#6,#7]:[#6]:1)-[#6]-,=[#8]\n", "Row: 292 Binding affinity to human dopamine D2L receptor expressed in HEK293 cells after 1 hr\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 28.4, mcs nAts: 10\n", "[#6]1-,:[#6]-,:[#6]-,:[#7,#6](-,:[#6]-,:[#6]-,:1)-[#6,#8]-[#6]-[#8,#6]-[#6,#7]\n", "Row: 293 Inhibition of IRAP in HEKT cells assessed as hydrolysis of L-leucine-4-methyl-7-coumarinylamide after 30 mins\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 24.8, mcs nAts: 20\n", "[#7,#8]#,-,=[#6]-[#6]1=[#6](-[#7])-[#8]-[#6]2:[#6](-[#6]-1-[#6]1:[#6]:[#6,#7]:[#6,#7]:[#7,#6]:[#6,#7]:1):[#6]:[#6]:[#6](:[#6]:2)-[#8,#7]\n", "Row: 294 Displacement of [3H]CP55940 from human CB2 receptor expressed in CHOK1 cells after 1 hr by liquid scintillation counting analysis\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 29.4, mcs nAts: 24\n", "[#6]-[#8,#6,#7]-[#6]1:[#7,#6]:[#6,#7]:[#6](:[#6,#7]:[#6]:1-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1)-[#6](=[#8])-[#7]-[#6]1-[#6]-[#6]-[#6]-[#6]-[#6]-1-[#8]\n", "Row: 295 Inhibition of human Carbonic anhydrase1 using CO2 as substrate preincubated for 15 mins by stopped-flow CO2 hydration assay\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 16.4, mcs nAts: 6\n", "[#6]1:,-[#6,#7]:,-[#6,#7,#8]:,-[#6,#16]:,-[#6]:,-[#6,#7]:,-1\n", "Row: 296 Inhibition of human Carbonic anhydrase2 using CO2 as substrate preincubated for 15 mins by stopped-flow CO2 hydration assay\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 16.4, mcs nAts: 6\n", "[#6]1:,-[#6,#7]:,-[#6,#7,#8]:,-[#6,#16]:,-[#6]:,-[#6,#7]:,-1\n", "Row: 297 Binding affinity to human CCR3 receptor expressed in CHOK1 cells by radioligand displacement assay\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 34.3, mcs nAts: 23\n", "[#6,#7,#8]-,=[#6,#16](=,-[#8,#6,#7])-[#7]1-[#6]-[#6]-[#6](-[#6]-[#6]-1)-[#7]1-[#6]-[#6]-[#6](-[#6]-[#6]-1)-[#8]-[#6]1:[#6]:[#6]:[#6](:[#6]:[#6]:1)-[#17,#9]\n", "Row: 298 In vitro ability to displace [3H]SCH-58261 from A2A adenosine receptor in Rat\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 29.6, mcs nAts: 21\n", "[#7]-[#6]1:[#7]:[#6](-[#6]2:[#6]:[#6]:[#6,#7]:[#6,#7]:[#6,#7]:2):[#6]:[#6]2:[#7]:1:[#7]:[#6](:[#7]:2)-[#6]1:[#6]:[#6]:[#6]:[#8]:1\n", "Row: 299 Inhibition of recombinant Thiomicrospira crunogena XCL-2 carbonic anhydrase by stopped flow CO2 hydrase assay\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 15.9, mcs nAts: 6\n", "[#6]1:,-[#6,#7]:,-[#6,#7,#8]:,-[#6,#16]:,-[#6]:,-[#6,#7]:,-1\n", "Row: 300 Inhibition of recombinant human carbonic anhydrase-2 by stopped flow CO2 hydrase assay\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 15.9, mcs nAts: 6\n", "[#6]1:,-[#6,#7]:,-[#6,#7,#8]:,-[#6,#16]:,-[#6]:,-[#6,#7]:,-1\n", "Row: 301 Inhibition of recombinant human carbonic anhydrase-1 by stopped flow CO2 hydrase assay\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 15.9, mcs nAts: 6\n", "[#6]1:,-[#6,#7]:,-[#6,#7,#8]:,-[#6,#16]:,-[#6]:,-[#6,#7]:,-1\n", "Row: 302 BindingDB_Patents: Inhibition Assay. Antibacterial activity as measured by the minimal inhibitory concentrations (MIC) and minimal bactericidal concentrations of compounds are well known (see., e.g., National Committee for Clinical Laboratory Standards 2000 Performance standards for antimicrobial disk susceptibility tests: approved standard, 7th ed. M2-A7, vol. 20, no. 1, Committee for Clinical Laboratory Standards, Wayne, Pa.).\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 25.6, mcs nAts: 13\n", "[#6,#7]-[#6]1:[#6]:[#6]:[#6]2:[#6](:[#6]:1):[#7]:[#6](:[#7]:[#6]:2-[#7])-[#7]\n", "Row: 303 Inhibition of human carbonic anhydrase-2 by stopped-flow CO2 hydration assay\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 16.4, mcs nAts: 6\n", "[#6]1:,-[#6,#7]:,-[#6,#7,#8]:,-[#6,#16]:,-[#6]:,-[#6,#7]:,-1\n", "Row: 304 Inhibition of human carbonic anhydrase-1 by stopped-flow CO2 hydration assay\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 16.4, mcs nAts: 6\n", "[#6]1:,-[#6,#7]:,-[#6,#7,#8]:,-[#6,#16]:,-[#6]:,-[#6,#7]:,-1\n", "Row: 305 Binding affinity against Hepatitis C virus NS3 protease\n", " * postgresql://localhost/chembl_23\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Mean nAts 75.4, mcs nAts: 40\n", "[#6]-[#6]-[#6]-[#7](-[#7]-[#6](=[#8])-[#6]1-[#6]-[#6]-[#6]-[#7]-1-[#6](=[#8])-[#6](-[#7]-[#6](=[#8])-[#6](-[#7]-[#6](=[#8])-[#6](-[#6]-[#6](=[#8])-[#8])-[#7]-[#6](-,=[#6,#8])=,-[#8,#6])-[#6](-[#6])-[#6])-[#6](-[#6])-[#6])-[#6,#16](=,-[#8,#6])-,=[#8,#6,#7,#16]\n", "Row: 306 BindingDB_Patents: Inhibition Assay. Antibacterial activity as measured by the minimal inhibitory concentrations (MIC) and minimal bactericidal concentrations of compounds are well known (see., e.g., National Committee for Clinical Laboratory Standards 2000 Performance standards for antimicrobial disk susceptibility tests: approved standard, 7th ed. M2-A7, vol. 20, no. 1, Committee for Clinical Laboratory Standards, Wayne, Pa.).\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 25.6, mcs nAts: 13\n", "[#6,#7]-[#6]1:[#6]:[#6]:[#6]2:[#6](:[#6]:1):[#7]:[#6](:[#7]:[#6]:2-[#7])-[#7]\n", "Row: 307 Inhibition of rat SERT\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 29.7, mcs nAts: 19\n", "[#6]-[#7]-[#6]-[#6]1:[#6]:[#6](-[#6](=[#8])-[#7]):[#6]:[#6]:[#6]:1-[#8]-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1\n", "Row: 308 Inhibition of human recombinant carbonic anhydrase 1 by stopped flow CO2 hydration assay\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 16.4, mcs nAts: 6\n", "[#6]1:,-[#6,#7]:,-[#6,#7,#8]:,-[#6,#16]:,-[#6]:,-[#6,#7]:,-1\n", "Row: 309 Inhibition of human recombinant carbonic anhydrase 2 by stopped flow CO2 hydration assay\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 16.4, mcs nAts: 6\n", "[#6]1:,-[#6,#7]:,-[#6,#7,#8]:,-[#6,#16]:,-[#6]:,-[#6,#7]:,-1\n", "Row: 310 Inhibition constant against Cannabinoid receptor 2\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 33.9, mcs nAts: 28\n", "[#6]-[#6](-[#7]-[#16](-[#6])(=[#8])=[#8])-[#6]1:[#6]:[#6]:[#6](:[#6]:[#6]:1)-[#6,#16]-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1-[#16,#6](=,-[#8,#6])-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1\n", "Row: 311 Inhibition of [3H]CHA binding to adenosine A1 receptor of bovine brain cortical membrane\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 23.0, mcs nAts: 14\n", "[#8,#6,#7]-,=[#6]-[#6]1:[#6]:[#7]:[#6]2:[#6](:[#6]:1-[#8,#7,#16,#17]):[#6]:[#6]:[#6](:[#7]:2)-[#6,#7,#8,#17,#35]\n", "Row: 312 Displacement of [3H]naltrindole from human delta opioid receptor expressed in CHO cells\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 35.1, mcs nAts: 19\n", "[#6]-[#7]1-[#6]-[#6]-[#6]23-[#6](-[#6]-1-[#6]-[#6]1:[#6]:[#6]:[#6](:[#6]:[#6]-2:1)-[#8,#7])-[#6]-[#6]-[#6]-[#6]-3\n", "Row: 313 Displacement of [3H]U69593 from human kappa opioid receptor expressed in CHO cells\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 35.1, mcs nAts: 19\n", "[#6]-[#7]1-[#6]-[#6]-[#6]23-[#6](-[#6]-1-[#6]-[#6]1:[#6]:[#6]:[#6](:[#6]:[#6]-2:1)-[#8,#7])-[#6]-[#6]-[#6]-[#6]-3\n", "Row: 314 Displacement of [3H]DAMGO from human mu opioid receptor expressed in CHO cells\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 35.1, mcs nAts: 19\n", "[#6]-[#7]1-[#6]-[#6]-[#6]23-[#6](-[#6]-1-[#6]-[#6]1:[#6]:[#6]:[#6](:[#6]:[#6]-2:1)-[#8,#7])-[#6]-[#6]-[#6]-[#6]-3\n", "Row: 315 Displacement of [3H]-DAMGO from human mu opioid receptor expressed in CHO cells after 60 mins by scintillation counting\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 29.0, mcs nAts: 19\n", "[#6]-[#7]1-[#6]-[#6]-[#6]23-[#6](-[#6]-1-[#6]-[#6]1:[#6]:[#6]:[#6](:[#6]:[#6]-2:1)-[#7,#8])-[#6]-,=[#6]-[#6]-[#6]-3\n", "Row: 316 Binding affinity for human corticotropin releasing factor receptor 1 expressed in LtK- cells using [125I]sauvagine\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 27.6, mcs nAts: 22\n", "[#6]1-[#6]-[#7]2:[#7]:[#6](-[#6]3:[#6]:[#6]:[#6](:[#6]:[#6]:3-[#17,#6,#8,#9])-[#17,#6,#8,#9]):[#6]3:[#6]:2:[#6](-[#7]-1-[#6]):[#6]:[#6](:[#7]:3)-[#6]\n", "Row: 317 Inhibition of human recombinant carbonic anhydrase 2 preincubated for 15 mins by stopped flow CO2 hydration assay\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 16.4, mcs nAts: 6\n", "[#6]1:,-[#6,#7]:,-[#6,#7,#8]:,-[#6,#16]:,-[#6]:,-[#6,#7]:,-1\n", "Row: 318 Displacement of [3H]-N-alpha-methylhistamine from human recombinant histamine H3 receptor expressed in HEK cell membrane after 30 mins by Scintillation counting\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 29.1, mcs nAts: 22\n", "[#35,#6,#7]-[#6]1:[#6]:[#7]:[#6]2:[#6](:[#6]:1):[#8]:[#6](:[#7]:2)-[#7]1-[#6]-[#6]-[#6](-[#6]-[#6]-1)-[#7]1-[#6]-[#6]-[#6]-[#6]-[#6]-1\n", "Row: 319 Displacement of [3H]-diprenorphine from human KOR expressed in CHO cells\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 35.0, mcs nAts: 30\n", "[#6]-[#8]-[#6]12-[#6]-,=[#6]-[#6]3(-[#6]-[#6]-1-[#6](-[#8,#6])-[#6,#8])-[#6]14-[#6]-2-[#8]-[#6]2:[#6]-1:[#6](-[#6]-[#6]-3-[#7](-[#6]-[#6]-4)-[#6]-[#6]1-[#6]-[#6]-1):[#6]:[#6]:[#6]:2-[#8]\n", "Row: 320 Inhibitory activity against cruzain, the major cysteine protease found in Trypanosoma cruzi\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 39.5, mcs nAts: 22\n", "[#6]-[#6]-[#6](-[#7]-[#6](=[#8])-[#8,#6]-[#6]-[#6]1:[#6]:[#6]:[#6,#7]:[#6,#7]:[#6,#7]:1)-[#6](=[#8])-[#7,#6]-[#6,#16]-[#6]-[#6]-[#16,#6,#7,#8]-[#6,#8]\n", "Row: 321 Inhibition of human recombinant carbonic anhydrase 2 preincubated for 15 mins by CO2 hydration stopped-flow assay\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 16.1, mcs nAts: 5\n", "[#6,#7,#8]-,=[#16,#6](-,=[#7,#8,#9])(=,-[#8,#9])=,-[#8,#6,#7,#9]\n", "Row: 322 Inhibition of human recombinant carbonic anhydrase 1 preincubated for 15 mins by CO2 hydration stopped-flow assay\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 16.1, mcs nAts: 5\n", "[#6,#7,#8]-,=[#16,#6](-,=[#7,#8,#9])(=,-[#8,#9])=,-[#8,#6,#7,#9]\n", "Row: 323 Displacement of [125I]BTX from rat alpha7 nAChR expressed in rat GH4C1 cells\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 20.6, mcs nAts: 10\n", "[#7,#8,#16]-,=[#6](=,-[#8,#7])-[#8,#6,#7]-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1\n", "Row: 324 Displacement of [3H]AB-MECA from human adenosine A3 receptor expressed in CHO cell membranes incubated for 30 mins by scintillation counting method\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 39.0, mcs nAts: 23\n", "[#6]-[#6]-[#7]-[#6](=[#8])-[#6]1-[#8]-[#6](-[#7]2:[#6]:[#7]:[#6]3:[#6]:2:[#7]:[#6](:[#7]:[#6]:3-[#7])-[#7])-[#6](-[#6]-1-[#8])-[#8]\n", "Row: 325 Displacement of [3H]CGS21680 from human adenosine A2A receptor expressed in CHO cell membranes incubated for 120 mins by scintillation counting method\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 39.0, mcs nAts: 23\n", "[#6]-[#6]-[#7]-[#6](=[#8])-[#6]1-[#8]-[#6](-[#7]2:[#6]:[#7]:[#6]3:[#6]:2:[#7]:[#6](:[#7]:[#6]:3-[#7])-[#7])-[#6](-[#6]-1-[#8])-[#8]\n", "Row: 326 Displacement of [3H]CCPA from human adenosine A1 receptor expressed in CHO cell membranes incubated for 120 mins by scintillation counting method\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 39.0, mcs nAts: 23\n", "[#6]-[#6]-[#7]-[#6](=[#8])-[#6]1-[#8]-[#6](-[#7]2:[#6]:[#7]:[#6]3:[#6]:2:[#7]:[#6](:[#7]:[#6]:3-[#7])-[#7])-[#6](-[#6]-1-[#8])-[#8]\n", "Row: 327 Displacement of [3H]8-OH-DPAT from 5HT1A receptor in rat hippocampal membrane\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 31.7, mcs nAts: 15\n", "[#7,#6]-[#6]-[#6]-[#7]1-[#6]-[#6]-[#7](-[#6]-[#6]-1)-[#6]1:[#6,#7]:[#6]:[#6]:[#6]:[#6,#7]:1\n", "Row: 328 Inhibition of Anopheles gambiae carbonic anhydrase pre-incubated for 15 mins by stopped-flow CO2 hydration assay\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 16.4, mcs nAts: 6\n", "[#6]1:,-[#6,#7]:,-[#6,#7,#8]:,-[#6,#16]:,-[#6]:,-[#6,#7]:,-1\n", "Row: 329 Inhibition of human carbonic anhydrase 2 pre-incubated for 15 mins by stopped-flow CO2 hydration assay\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 16.4, mcs nAts: 6\n", "[#6]1:,-[#6,#7]:,-[#6,#7,#8]:,-[#6,#16]:,-[#6]:,-[#6,#7]:,-1\n", "Row: 330 Displacement of [125I]DOI from human recombinant 5-HT2A receptor expressed in HEK293E cells after 45 mins by Top counting analysis\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 17.0, mcs nAts: 15\n", "[#8,#6]=,-[#6]1-[#6,#7]2:,-[#6]:,-[#6]:,-[#6,#7]:,-[#6]:,-[#6]:,-2-[#6]-[#6,#7]2-,:[#7,#6]-1-,:[#6]-,:[#6,#7]-,:[#7,#6]-,:[#6]-,:2\n", "Row: 331 Displacement of [125I]LSD from human recombinant 5-HT2B receptor expressed in HEK293E cells after 45 mins by Top counting analysis\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 17.0, mcs nAts: 15\n", "[#8,#6]=,-[#6]1-[#6,#7]2:,-[#6]:,-[#6]:,-[#6,#7]:,-[#6]:,-[#6]:,-2-[#6]-[#6,#7]2-,:[#7,#6]-1-,:[#6]-,:[#6,#7]-,:[#7,#6]-,:[#6]-,:2\n", "Row: 332 Inhibition of human carbonic anhydrase 1 pre-incubated for 15 mins by stopped-flow CO2 hydration assay\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 16.4, mcs nAts: 6\n", "[#6]1:,-[#6,#7]:,-[#6,#7,#8]:,-[#6,#16]:,-[#6]:,-[#6,#7]:,-1\n", "Row: 333 Inhibition of human recombinant carbonic anhydrase 2 by stopped flow CO2 hydrase assay\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 16.4, mcs nAts: 6\n", "[#6]1:,-[#6,#7]:,-[#6,#7,#8]:,-[#6,#16]:,-[#6]:,-[#6,#7]:,-1\n", "Row: 334 Inhibition of human recombinant carbonic anhydrase 1 by stopped flow CO2 hydrase assay\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 16.4, mcs nAts: 6\n", "[#6]1:,-[#6,#7]:,-[#6,#7,#8]:,-[#6,#16]:,-[#6]:,-[#6,#7]:,-1\n", "Row: 335 Displacement of [125I]DOI from human recombinant 5-HT2C receptor expressed in HEK293E cells after 45 mins by Top counting analysis\n", " * postgresql://localhost/chembl_23\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Mean nAts 17.0, mcs nAts: 15\n", "[#8,#6]=,-[#6]1-[#6,#7]2:,-[#6]:,-[#6]:,-[#6,#7]:,-[#6]:,-[#6]:,-2-[#6]-[#6,#7]2-,:[#7,#6]-1-,:[#6]-,:[#6,#7]-,:[#7,#6]-,:[#6]-,:2\n", "Row: 336 Inhibition of human STEP using pNPP as substrate after 5 mins by spectrophotometric plate reader analysis\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 23.9, mcs nAts: 12\n", "[#6]1:[#6]:[#6]:[#6](:[#6]:[#6]:1)-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1\n", "Row: 337 Displacement of [3H](+)-pentazocine from sigma-1 receptor in rat brain homogenates\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 21.8, mcs nAts: 12\n", "[#7,#8]-[#6]1-[#6]2-[#6]3-[#6]-[#6]4-[#6]-1-[#6]1-[#6]-2-[#6]-[#6]-3-[#6]-1-4\n", "Row: 338 Inhibition of human recombinant Carbonic anhydrase 2 compound preincubated for 15 mins by stopped flow CO2 hydrase assay method\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 16.4, mcs nAts: 6\n", "[#6]1:,-[#6,#7]:,-[#6,#7,#8]:,-[#6,#16]:,-[#6]:,-[#6,#7]:,-1\n", "Row: 339 Inhibition of human recombinant c-Src by filter-binding assay\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 26.9, mcs nAts: 21\n", "[#7]-[#6]1:[#7]:[#6](-[#16,#7]-[#6]):[#7]:[#6]2:[#6]:1:[#6]:[#7]:[#7]:2-[#6]-[#6](-[#17,#35])-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1\n", "Row: 340 Inhibition of human recombinant Carbonic anhydrase 1 compound preincubated for 15 mins by stopped flow CO2 hydrase assay method\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 16.4, mcs nAts: 6\n", "[#6]1:,-[#6,#7]:,-[#6,#7,#8]:,-[#6,#16]:,-[#6]:,-[#6,#7]:,-1\n", "Row: 341 Displacement of [3H]dofetilide from human ERG potassium channel expressed in HEK293 cells\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 38.4, mcs nAts: 11\n", "[#6,#8]-,=[#7,#6,#16](-,=[#6,#8])-[#6,#7]-[#6]1:[#6]:[#6]:[#6](:[#6]:[#6,#7]:1)-[#6,#8,#16,#17]\n", "Row: 342 Displacement of [3H]histamine from recombinant human histamine H4 receptor in SK-N-MC cells\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 19.2, mcs nAts: 14\n", "[#6]-[#7]1-[#6]-[#6]-[#7](-[#6]-[#6]-1)-[#6](=[#8])-[#6]1:[#6,#7]:[#6]:[#6]:[#7,#6]:1\n", "Row: 343 Displacement of [3H]prozosin from rat cloned alpha1d receptor\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 28.8, mcs nAts: 8\n", "[#6]-[#7,#6]1-,:[#6]-,:[#6]-,:[#7,#6](-,:[#6]-,:[#6]-,:1)-[#6]\n", "Row: 344 Inhibition of [125I][Tyr0]-sauvagine binding to human Corticotropin releasing factor receptor 1 expressed in mouse fibroblast Ltk- cells \n", " * postgresql://localhost/chembl_23\n", "Mean nAts 28.6, mcs nAts: 20\n", "[#6]-[#6]-[#6]-[#7](-[#6,#8]-[#6])-[#6]1:[#7]:[#6](-[#6]2:[#6]:[#6]:[#6](:[#6]:[#6]:2-[#17,#6,#8])-[#17,#8]):[#7](:[#7]:1)-[#6]\n", "Row: 345 Displacement of [3H]CP-55940 from human recombinant cannabinoid CB2 receptor expressed in HEK293 cells\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 21.1, mcs nAts: 12\n", "[#6,#8]-,=[#6]1:,-,=[#6,#8]:,-[#6](:,-[#6,#8]:,-[#6]:,-[#6]:,-,=[#6]):,-[#6]:,-[#8,#6]:,-,=[#6]:,-1=,-[#8,#6]\n", "Row: 346 Displacement of [3H]CP-55940 from cannabinoid CB1 receptor in rat brain cortical membrane\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 21.1, mcs nAts: 12\n", "[#6,#8]-,=[#6]1:,-,=[#6,#8]:,-[#6](:,-[#6,#8]:,-[#6]:,-[#6]:,-,=[#6]):,-[#6]:,-[#8,#6]:,-,=[#6]:,-1=,-[#8,#6]\n", "Row: 347 Displacement of [125I]I-AB-MEAC from human adenosine A3 receptor expressed in CHO cells\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 31.7, mcs nAts: 22\n", "[#7,#8]-,=[#6](=,-[#8,#7])-[#6]1-[#8]-[#6](-[#7]2:[#6]:[#7]:[#6]3:[#6]:2:[#7]:[#6](:[#7]:[#6]:3-[#7]-[#6])-[#17])-[#6](-[#6]-1-[#8])-[#8]\n", "Row: 348 Inhibition of Bacillus anthracis lethal factor assessed as proteolysis using MCA-KKVYPYPME-Dap(Dnp)-NH2 peptide substrate after 4 hrs by FRET assay\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 28.7, mcs nAts: 18\n", "[#6](-[#6]-[#6]-[#6,#7]-[#6,#7]-[#7,#6,#8]-[#6]-[#6]1:[#6]:[#6]:[#6](:[#6]:[#6]:1)-[#9,#17])-[#6](=,-[#8,#6,#7])-[#7,#6]-,=[#8]\n", "Row: 349 Displacement of [3H]citalopram from human recombinant SERT scintillation proximity assay\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 22.3, mcs nAts: 16\n", "[#6]-[#6]12-[#6]-[#7]-[#6]-[#6]-[#6]-1(-[#6]1:[#6]:[#6]:[#6](:[#6](:[#6]:1)-[#17])-[#17])-[#6]-2\n", "Row: 350 Inhibition of human matriptase-2 expressed in HEK-MT2 cells using fluorogenic Boc- Gln-Ala-Arg-NH-Mec as substrate measured over 400 secs by spectrophotometry\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 33.5, mcs nAts: 11\n", "[#6]1:[#6]:[#6]:[#6]:[#6](:[#6]:1)-[#16](=[#8])(=[#8])-[#7]-[#6]\n", "Row: 351 Binding affinity to human HT3A receptor\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 27.6, mcs nAts: 21\n", "[#7,#6]-[#6]1:[#7,#8]:[#6]2:[#6](-[#6](=[#8])-[#7]-[#6]3-[#6]-[#7,#6](-[#6]-[#6])-[#6,#7]-[#6]-[#6]-3):[#6]:[#6]:[#6]:[#6]:2:[#8,#7]:1\n", "Row: 352 Binding affinity at human adenosine A1 receptor\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 17.3, mcs nAts: 11\n", "[#17,#6,#7,#8]-[#6]1:[#7]:[#6](-[#6,#7]):[#6]2:[#6](:[#7]:1):[#6]:[#6]:[#16]:2\n", "Row: 353 Inhibition of N-terminus polyHis-tagged human recombinant PI3Kalpha expressed in baculovirus infected insect Sf9 cells using phosphoinositol-4,5-bisphosphate as substrate after 1.5 hrs by spectrophotometric analysis\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 33.7, mcs nAts: 28\n", "[#8]=[#16](=[#8])(-[#7]-[#6]1:[#6]:[#6](-[#6]2:[#6,#7]:[#6,#7]:[#6]3:[#6](:[#6,#7]:2):[#6,#7]:[#6,#7]:[#7,#6]:[#7,#6]:3):[#6]:[#7]:[#6]:1-[#17])-[#6]1:[#6]:[#6]:[#6](:[#6]:[#6]:1)-[#9]\n", "Row: 354 Displacement of [3H]-U69,593 from human kappa opioid receptor expressed in CHO cells after 60 mins by scintillation counting\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 29.0, mcs nAts: 19\n", "[#6]-[#7]1-[#6]-[#6]-[#6]23-[#6](-[#6]-1-[#6]-[#6]1:[#6]:[#6]:[#6](:[#6]:[#6]-2:1)-[#7,#8])-[#6]-,=[#6]-[#6]-[#6]-3\n", "Row: 355 Binding affinity to human recombinant PTP1B\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 31.2, mcs nAts: 6\n", "[#6]1:,-[#6]:,-[#6,#7]:,-[#6]:,-[#6,#8,#16]:,-[#6]:,-1\n", "Row: 356 Inhibition of Pim2 (unknown origin) using 5FAM-ARKRRRHPSGPPTA as substrate after 90 mins\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 25.0, mcs nAts: 11\n", "[#6]-[#6]1:[#7,#6]:[#7]:[#6]2:[#6]:1:[#6]:[#6](:[#7,#6]:[#6]:2)-[#6,#7]\n", "Row: 357 Displacement of [3H]CP55940 from human recombinant CB2 receptor transfected in HEK cell membranes\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 31.9, mcs nAts: 16\n", "[#6,#7,#8]-[#7]-[#6](=[#8])-[#6]1:[#6]:[#7]:[#6]2:[#6](:[#6]:1=[#8]):[#6]:[#6]:[#6](:[#6]:2)-[#9,#6,#16,#35]\n", "Row: 358 Binding affinity to PTP1B\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 19.4, mcs nAts: 7\n", "[#8,#6]=,-[#6,#7](-[#8,#6])-[#6](=[#8])-[#7,#6]-,=[#6,#8]\n", "Row: 359 Displacement of [3H]diprenorphine from human mu opioid receptor expressed in CHO cells\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 34.5, mcs nAts: 26\n", "[#7,#6]-[#6]-[#6]1(-[#6])-[#6]-[#6]2-[#6]-[#6]-[#6](-[#6]-1)-[#7]-2-[#6](-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1-[#17])-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1-[#17]\n", "Row: 360 Inhibition of [125I]-AB-MECA binding to human Adenosine A3 receptor expressed in CHO cells\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 30.2, mcs nAts: 20\n", "[#6]-[#7]-[#6]1:[#7]:[#6]:[#7]:[#6]2:[#6]:1:[#7]:[#6]:[#7]:2-[#6]1-[#8,#6]-[#6](-[#6]-[#8,#7])-[#6](-[#6]-1-[#8])-[#8]\n", "Row: 361 Displacement of [3H]CP55940 from human recombinant CB1 receptor transfected in HEK cell membrane\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 31.9, mcs nAts: 16\n", "[#6,#7,#8]-[#7]-[#6](=[#8])-[#6]1:[#6]:[#7]:[#6]2:[#6](:[#6]:1=[#8]):[#6]:[#6]:[#6](:[#6]:2)-[#9,#6,#16,#35]\n", "Row: 362 Binding affinity at human adenosine A2A receptor\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 17.3, mcs nAts: 11\n", "[#17,#6,#7,#8]-[#6]1:[#7]:[#6](-[#6,#7]):[#6]2:[#6](:[#7]:1):[#6]:[#6]:[#16]:2\n", "Row: 363 Displacement of [3H]nisoxetine from human recombinant NET by scintillation proximity assay\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 22.3, mcs nAts: 16\n", "[#6]-[#6]12-[#6]-[#7]-[#6]-[#6]-[#6]-1(-[#6]1:[#6]:[#6]:[#6](:[#6](:[#6]:1)-[#17])-[#17])-[#6]-2\n", "Row: 364 Displacement of [3H]WIN-35428 from human recombinant DAT by scintillation proximity assay\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 22.3, mcs nAts: 16\n", "[#6]-[#6]12-[#6]-[#7]-[#6]-[#6]-[#6]-1(-[#6]1:[#6]:[#6]:[#6](:[#6](:[#6]:1)-[#17])-[#17])-[#6]-2\n", "Row: 365 Displacement of [125I]ABMECA from human recombinant adenosine A3 receptor expressed in CHO cells\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 29.1, mcs nAts: 19\n", "[#6]-[#6]-[#7]1:[#6](=[#8]):[#6]2:[#7]:[#6](-[#6]3:[#6]:[#7]:[#7]:[#6]:3):[#7]:[#6]:2:[#7](:[#6]:1=[#8])-[#6]\n", "Row: 366 BindingDB_Patents: Inhibition Assay. Enzymatic reactions are carried out in a reaction containing 50 mM NaH2PO4, 100 mM NaCl and 0.1% BSA (pH 7.0) using 2 mM 4-Methylumbelliferyl N-acetyl-ß-D-glucosaminide dihydrate (Sigma M2133) dissolved in ddH2O, as a substrate. The amount of purified human O-GlcNAcase enzyme used in the reaction is 0.7 nM. Test compound of varying concentrations is added to the enzyme prior to initiation of the reaction. The reaction is performed at room temperature in a 96-well plate and is initiated with the addition of substrate. The production of fluorescent product is measured every 60 sec for 45 min with a Tecan Infinite M200 plate-reader with excitation at 355 nM and emission detected at 460 nM, with 4-Methylumbelliferone (Sigma M1381) used to produce a standard curve. The slope of product production is determined for each concentration of compound tested and plotted, using standard curve fitting algorithms for sigmoidal dose response curves.\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 19.1, mcs nAts: 15\n", "[#7]-[#6]1=[#7]-[#6]2-[#6](-[#16]-1)-[#8]-[#6](-[#6](-[#6]-2-[#8])-[#8,#6])-[#6](-[#6,#8])-[#8,#6,#9]\n", "Row: 367 Displacement of [125I]I-AB-MECA from human adenosine A3 receptor expressed in CHO cells\n", " * postgresql://localhost/chembl_23\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Mean nAts 31.3, mcs nAts: 22\n", "[#6]-[#6]-,#[#8,#6]-[#6]1:[#7]:[#6](-[#7]):[#6]2:[#6](:[#7]:1):[#7](:[#6]:[#7]:2)-[#6]1-[#8]-[#6](-[#6]-[#8,#7])-[#6](-[#6]-1-[#8])-[#8]\n", "Row: 368 Inhibition of [3H]R-PIA binding to human Adenosine A1 receptor expressed in CHO cells\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 30.2, mcs nAts: 20\n", "[#6]-[#7]-[#6]1:[#7]:[#6]:[#7]:[#6]2:[#6]:1:[#7]:[#6]:[#7]:2-[#6]1-[#8,#6]-[#6](-[#6]-[#8,#7])-[#6](-[#6]-1-[#8])-[#8]\n", "Row: 369 Displacement of [3H]CP-55940 from human recombinant CB1 receptor\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 29.5, mcs nAts: 18\n", "[#6]-,=[#6]-,=[#6]-,=[#6]-,=[#6]-,=[#6]-,=[#6]-,=[#6]-,=[#6]=,-[#6,#7]-[#6,#7]-[#7,#6]-[#6,#7]1:,-[#6]:,-[#6]:,-[#6,#7]:,-[#6]:,-[#6]:,-1\n", "Row: 370 Inhibition of Pim1 (unknown origin) using 5FAM-ARKRRRHPSGPPTA as substrate after 90 mins\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 25.0, mcs nAts: 11\n", "[#6]-[#6]1:[#7,#6]:[#7]:[#6]2:[#6]:1:[#6]:[#6](:[#7,#6]:[#6]:2)-[#6,#7]\n", "Row: 371 Binding affinity to FKBP51 FK506-binding domain (1 to 140 amino acids) (unknown origin) incubated for 30 mins using fluorescein-conjugated 2-(5-((2-(3-((R)-3-(3,4-dimethoxyphenyl)-1-((S)-1-(3,3-dimethyl-2-oxopentanoyl)piperidine-2-carbonyloxy)propyl)phenoxy)acetamido)methyl)-6-hydroxy-3-oxo-3H-xanthen-9-yl)benzoic acid by competitive fluorescence polarization assay\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 38.3, mcs nAts: 33\n", "[#6]-[#8]-[#6]1:[#6]:[#6](-[#6](-[#6](=[#8])-[#7]2-[#6]-[#6]-[#6]-[#6]-[#6]-2-[#6](=[#8])-[#7]-[#6]-[#6]-,=[#7,#6,#8])-[#6]2-[#6]-[#6]-[#6]-[#6]-[#6]-2):[#6]:[#6](:[#6]:1-[#8]-[#6])-[#8]-[#6]\n", "Row: 372 Displacement of [3H]-diprenorphine from rat recombinant MOR expressed in rat C6 cells after 2 hrs\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 35.3, mcs nAts: 30\n", "[#6]-[#8]-[#6]12-[#6]-,=[#6]-[#6]3(-[#6]-[#6]-1-[#6](-[#8,#6])-[#6,#8])-[#6]14-[#6]-2-[#8]-[#6]2:[#6]-1:[#6](-[#6]-[#6]-3-[#7](-[#6]-[#6]-4)-[#6]-[#6]1-[#6]-[#6]-1):[#6]:[#6]:[#6]:2-[#8]\n", "Row: 373 Displacement of [3H]CP-55940 from human CB1 receptor expressed in COS cells\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 30.2, mcs nAts: 16\n", "[#6](-[#6]-[#6]-[#6]-[#6]-[#6]-[#8,#6]-[#6]1:[#6]:[#6]:[#6]:[#6](:[#6]:1)-[#8,#6])-[#7,#6]-[#6]\n", "Row: 374 Binding affinity against human Melatonin receptor type 1B by using 2-[125I]iodomelatonin as radioligand\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 21.0, mcs nAts: 16\n", "[#6,#7,#8]-,=[#6](=,-[#8,#6,#7])-[#7]-[#6]-[#6]-[#6]-[#6]1:[#6]:[#6]:[#6]:[#6]2:[#6]:1:[#8]:[#6]:[#7]:2\n", "Row: 375 Displacement of [125I]AB-MECA from human adenosine A3 receptor transfected in CHO cells\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 31.7, mcs nAts: 22\n", "[#7,#8]-,=[#6](=,-[#8,#7])-[#6]1-[#16]-[#6](-[#7]2:[#6]:[#7]:[#6]3:[#6]:2:[#7]:[#6](:[#7]:[#6]:3-[#7]-[#6])-[#17])-[#6](-[#6]-1-[#8])-[#8]\n", "Row: 376 Inhibition of [3H]DPCPX binding to adenosine A1 receptor of rat cerebral cortex\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 30.4, mcs nAts: 16\n", "[#7]-[#6]1:[#7]:[#6](-[#7]):[#7]:[#6]2:[#7]:1:[#7]:[#6](:[#7]:2)-[#6]1:[#6]:[#6]:[#6]:[#8]:1\n", "Row: 377 Displacement of [3H]ZM-241385 from human recombinant adenosine A2A receptor expressed in HEK293 cells\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 29.1, mcs nAts: 19\n", "[#6]-[#6]-[#7]1:[#6](=[#8]):[#6]2:[#7]:[#6](-[#6]3:[#6]:[#7]:[#7]:[#6]:3):[#7]:[#6]:2:[#7](:[#6]:1=[#8])-[#6]\n", "Row: 378 Displacement of [3H]PK11195 from PBR receptor in Wistar rat heart homogenates\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 28.5, mcs nAts: 24\n", "[#6]-[#6]-[#7](-[#6]-[#6])-[#6](=[#8])-[#6]1-,:[#16,#6]-,:[#6]2:[#6]:[#6]:[#6]:[#6]:[#6]:2-,:[#6]2:,-[#6]-,:1:[#6]1:[#6]:[#6]:[#6]:[#6,#7]:[#6]:1:[#7]:2\n", "Row: 379 Displacement of [3H]N-alpha-methylhistamine from human histamine H3 receptor expressed in SK-N-MC cells\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 22.6, mcs nAts: 8\n", "[#6,#7,#8,#16]-,=,#[#8,#6]-[#6,#7]1:,-[#6]:,-[#6,#7]:,-[#6,#7,#8]:,-[#6]:,-[#6,#7]:,-1\n", "Row: 380 Displacement of [125I]RTI-55 from human DAT expressed in HEK293 cells\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 19.3, mcs nAts: 12\n", "[#6]-,=,#[#6]-[#6,#7]-[#6]-[#6](=,-[#8])-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1\n", "Row: 381 Displacement of [125I]RTI-55 from human SERT expressed in HEK293 cells\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 19.3, mcs nAts: 12\n", "[#6]-,=,#[#6]-[#6,#7]-[#6]-[#6](=,-[#8])-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1\n", "Row: 382 Displacement of [125I]RTI-55 from human NET expressed in HEK293 cells\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 19.3, mcs nAts: 12\n", "[#6]-,=,#[#6]-[#6,#7]-[#6]-[#6](=,-[#8])-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1\n", "Row: 383 Binding affinity towards human melanocortin 4 receptor expressed in HEK 293 cells was determined by using [125I]NDP-MSH as radioligand\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 38.1, mcs nAts: 19\n", "[#8]=[#6](-[#6]-[#6,#7,#8])-[#7]1-[#6]-[#6]-[#7](-[#6]-[#6]-1)-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1-[#6]-[#7,#6]-[#6]\n", "Row: 384 Binding affinity to human F10a\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 38.7, mcs nAts: 26\n", "[#6]-[#8]-[#6]1:[#6]:[#6]:[#6](:[#6]:[#6]:1)-[#7]1:[#7]:[#6](-[#6,#7,#16]):[#6]2:[#6]:1-[#6](=[#8])-[#7](-[#6]1:[#6]:[#6]:[#6](:[#6]:[#6]:1)-[#7,#6])-[#6]-[#6]-2\n", "Row: 385 Displacement of [3H]nisoxetine from human recombinant NET expressed in HEK293 cells by scintillation proximity assay\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 22.5, mcs nAts: 15\n", "[#6]-[#7](-[#6]-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1-[#16,#6,#8,#17])-[#6]1-[#6]-[#6]-[#7]-[#6]-1\n", "Row: 386 Displacement of [3H]-SB222200 from recombinant human NK3R expressed in CHO cell membranes after 90 mins by scintillation counting analysis\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 28.3, mcs nAts: 14\n", "[#8,#6]=,-[#6](-[#6,#7]1:,-[#6]:,-[#6]:,-[#6,#7]:,-[#6]:,-[#6,#7]:,-1)-[#7,#6]1-,:[#6]-,:[#6]-,:[#7,#6]:[#6]-,:[#6,#7]-,:1\n", "Row: 387 Displacement of [3H]citalopram from human recombinant SERT expressed in HEK293 cells by scintillation proximity assay\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 22.5, mcs nAts: 15\n", "[#6]-[#7](-[#6]-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1-[#16,#6,#8,#17])-[#6]1-[#6]-[#6]-[#7]-[#6]-1\n", "Row: 388 Displacement of radioligand from human recombinant DAT expressed in HEK293 cells by scintillation proximity assay\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 22.5, mcs nAts: 15\n", "[#6]-[#7](-[#6]-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1-[#16,#6,#8,#17])-[#6]1-[#6]-[#6]-[#7]-[#6]-1\n", "Row: 389 Displacement of [3H]CPX from human recombinant adenosine A1 receptor expressed in CHO cells\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 29.1, mcs nAts: 19\n", "[#6]-[#6]-[#7]1:[#6](=[#8]):[#6]2:[#7]:[#6](-[#6]3:[#6]:[#7]:[#7]:[#6]:3):[#7]:[#6]:2:[#7](:[#6]:1=[#8])-[#6]\n", "Row: 390 Inhibition of human DPP4\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 17.6, mcs nAts: 10\n", "[#6,#7]-[#6](-[#7,#6])-[#6](=[#8])-[#7]1-[#6]-[#6]-,:[#6,#16]-,=,:[#7,#6]-1\n", "Row: 391 Inhibition of human recombinant carbonic anhydrase-2 by stopped flow CO2 hydrase assay method\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 16.2, mcs nAts: 5\n", "[#6,#7,#8]-,=[#16,#6](-,=[#7,#8,#9])(=,-[#8,#9])=,-[#8,#6,#7,#9]\n", "Row: 392 Inhibitory activity against isolated chicken liver dihydrofolate reductase (DHFR)\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 24.2, mcs nAts: 16\n", "[#6]-[#6]1(-[#6])-[#7]=[#6](-[#7])-[#7]=[#6](-[#7]-1-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1)-[#7]\n", "Row: 393 Displacement of [3H]-5-CT from human 5-HT7B receptor expressed in HEK293 cells after 1 hr\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 30.4, mcs nAts: 10\n", "[#6]1-,:[#6]-,:[#6]-,:[#7,#6](-,:[#6]-,:[#6]-,:1)-[#6,#7,#8]-[#6]-[#8,#6,#7]-[#6,#7]\n", "Row: 394 Displacement of [3H]-8-OH-DPAT from human 5-HT1A receptor expressed in HEK293 cells after 1 hr\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 30.4, mcs nAts: 10\n", "[#6]1-,:[#6]-,:[#6]-,:[#7,#6](-,:[#6]-,:[#6]-,:1)-[#6,#7,#8]-[#6]-[#8,#6,#7]-[#6,#7]\n", "Row: 395 Inhibition of human recombinant CA 3 assessed as CO2 hydration by stopped flow kinetic assay\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 16.9, mcs nAts: 5\n", "[#6,#7,#8]-,=[#16,#6](-,=[#7,#8,#9])(=,-[#8,#9])=,-[#8,#6,#7,#9]\n", "Row: 396 Displacement of [3H]prozosin from hamster cloned alpha-1b receptor\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 28.8, mcs nAts: 8\n", "[#6]-[#7,#6]1-,:[#6]-,:[#6]-,:[#7,#6](-,:[#6]-,:[#6]-,:1)-[#6]\n", "Row: 397 Inhibition of human CA2 cytosolic isoform after 15 mins by stopped-flow CO2 hydration assay\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 34.0, mcs nAts: 11\n", "[#7,#8]-,=[#16](=[#8])(=,-[#8,#7])-[#6]1:[#6]:[#6]:[#6](:[#6]:[#6]:1)-[#17,#16]\n", "Row: 398 Inhibition of human CA2 after 15 mins by stopped-flow/Co2 hydration assay\n", " * postgresql://localhost/chembl_23\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Mean nAts 6.6, mcs nAts: 0\n", "\n", "Row: 399 Inhibition of [3H]DA uptake at VMAT2 in rat striatal synaptic vesicles\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 29.2, mcs nAts: 22\n", "[#6]1:[#6]:[#6]:[#6](:[#6]:[#6]:1)-[#6]-[#6]-[#6]1-[#6]-[#6]-[#6]-[#6](-[#7]-1)-[#6]-[#6]-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1\n", "Row: 400 Displacement of [3H]-ZM241385 from human A2B receptor expressed in HEK293 cell membranes\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 29.9, mcs nAts: 19\n", "[#6]-[#6]-[#7]1:[#6](=[#8]):[#7]:[#6]:[#6](:[#6]:1):[#7]:[#6](:[#7])-[#6]1:[#6]:[#7]:[#7](:[#6]:1)-[#6]-[#6]\n", "Row: 401 Displacement of [3H]-CPX from human A1 receptor expressed in CHO cell membranes\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 29.9, mcs nAts: 19\n", "[#6]-[#6]-[#7]1:[#6](=[#8]):[#7]:[#6]:[#6](:[#6]:1):[#7]:[#6](-[#6]1:[#6]:[#7]:[#7](:[#6]:1)-[#6]-[#6]):[#7]\n", "Row: 402 Displacement of [125]DOI from human recombinant full length 5HT2C receptor expressed in HEK293E cells\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 29.5, mcs nAts: 13\n", "[#6,#8]-[#7,#6]1-,:[#6]-,:[#6]-,:[#6,#7]2-,:[#6](-,:[#6]-,:1)-,:[#6](:,-[#6]:,-[#6,#7]:,-[#6]):,-[#6]-[#7,#6]-2\n", "Row: 403 Inhibition of human recombinant carbonic anhydrase 2 by stopped flow CO2 hydrase assay\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 15.9, mcs nAts: 5\n", "[#6,#7,#8]-,=[#16,#6](-,=[#7,#8,#9])(=,-[#8,#9])=,-[#8,#6,#7,#9]\n", "Row: 404 Displacement of [3H]-labeled substance P from cloned human NK1 receptor expressed in CHO cells\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 33.5, mcs nAts: 21\n", "[#6]1:[#6]:[#7,#6]:[#6]:[#6]:[#6]:1-[#7,#6]-[#7,#6,#8]=,-[#6,#7]-[#6]1:[#6,#7]:[#6,#7]:[#6,#7]:[#6,#7]:[#6]:1-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1\n", "Row: 405 Displacement of [125I]ghrelin from ovine recombinant GHSR1a expressed in HEK293F cells after 6 hrs by scintillation proximity assay\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 33.2, mcs nAts: 19\n", "[#6]-[#6]1:[#7]:[#6]2:[#6]:[#6]:[#6]:[#6]:[#6]:2:[#6](:[#7]:1-[#6]-[#6]1-,=[#6]-[#6,#7]-[#6]-[#7,#6]-[#6,#8]-1)=[#8]\n", "Row: 406 Displacement of [3H]pyrilamine from human H1 receptor expressed in CHOK1 cells\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 34.6, mcs nAts: 24\n", "[#6,#7,#8]-,=[#6,#16](=,-[#8,#6,#7])-[#7]1-[#6]-[#6]-[#6](-[#6]-[#6]-1)-[#7]1-[#6]-[#6]-[#6](-[#6]-[#6]-1)-[#8]-[#6]1:[#6]:[#6]:[#6](:[#6](:[#6]:1)-[#17,#6,#9])-[#17,#9]\n", "Row: 407 Displacement of [125]DOI from human recombinant full length 5HT2A receptor expressed in HEK293E cells\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 29.5, mcs nAts: 13\n", "[#6,#8]-[#7,#6]1-,:[#6]-,:[#6]-,:[#6,#7]2-,:[#6](-,:[#6]-,:1)-,:[#6](:,-[#6]:,-[#6,#7]:,-[#6]):,-[#6]-[#7,#6]-2\n", "Row: 408 Displacement of [125I]ghrelin from human GHSR1a after 1 hr\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 32.2, mcs nAts: 22\n", "[#6]-[#6](-[#6])(-[#7])-[#6](=[#8])-[#7]-[#6](-[#6]-[#8]-[#6]-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1)-[#6]1:[#7]:[#7]:[#7]:[#7]:1\n", "Row: 409 Inhibition of human carbonic anhydrase 14 preincubated for 15 mins by CO2 hydration stopped-flow assay\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 14.1, mcs nAts: 7\n", "[#7,#6,#8]-[#6]1:[#6]:[#6]:[#6,#7]:[#6]:[#6]:1\n", "Row: 410 Inhibition of human CA12 after 15 mins by stopped-flow CO2 hydration assay\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 34.0, mcs nAts: 11\n", "[#7,#8]-,=[#16](=[#8])(=,-[#8,#7])-[#6]1:[#6]:[#6]:[#6](:[#6]:[#6]:1)-[#17,#16]\n", "Row: 411 Inhibition of [3H]choline uptake at choline transporter 1 in mouse brain synaptosome\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 12.7, mcs nAts: 2\n", "[#6,#7,#8]-[#7,#6,#8]\n", "Row: 412 Inhibition of human CA9 after 15 mins by stopped-flow CO2 hydration assay\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 34.0, mcs nAts: 11\n", "[#7,#8]-,=[#16](=[#8])(=,-[#8,#7])-[#6]1:[#6]:[#6]:[#6](:[#6]:[#6]:1)-[#17,#16]\n", "Row: 413 Displacement of [125I]RTI55 from cloned human NET expressed in HEK293 cells\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 17.0, mcs nAts: 10\n", "[#6,#7,#8]-,=[#6](-[#6,#7,#8]-[#6]1:,-[#6]:,-[#6]:,-[#6,#7]:,-[#6]:,-[#6]:,-1)-[#7,#6]\n", "Row: 414 Displacement of [125I]RTI55 from cloned human SERT expressed in HEK293 cells\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 17.0, mcs nAts: 10\n", "[#6,#7,#8]-,=[#6](-[#6,#7,#8]-[#6]1:,-[#6]:,-[#6]:,-[#6,#7]:,-[#6]:,-[#6]:,-1)-[#7,#6]\n", "Row: 415 Concentration required to inhibit the binding of 20 pM [125I]-BH-CCK-8S radioligand to mouse cortical membrane CCK2 receptor\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 35.3, mcs nAts: 19\n", "[#6]-[#6]1:[#7,#6]:[#6](-[#6](=[#8])-[#7]-[#6]2:[#6]:[#6]:[#6]:[#6](:[#6]:2)-[#6,#7]):[#6](:[#7]:1)-[#6]-[#6,#8]-[#6]\n", "Row: 416 Displacement of [3H]CP-55940 from human recombinant CB2 receptor\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 29.5, mcs nAts: 18\n", "[#6]-,=[#6]-,=[#6]-,=[#6]-,=[#6]-,=[#6]-,=[#6]-,=[#6]-,=[#6]=,-[#6,#7]-[#6,#7]-[#7,#6]-[#6,#7]1:,-[#6]:,-[#6]:,-[#6,#7]:,-[#6]:,-[#6]:,-1\n", "Row: 417 Displacement of [3H]-M-MPEP from mGlu5 receptor in Sprague-Dawley rat cortex after 1 hr by liquid scintillation counting\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 22.9, mcs nAts: 11\n", "[#6](-[#8])-[#6]#[#6]-[#6]1:[#6]:[#6]:[#6]:[#6](:[#6,#7]:1)-[#6,#8,#9,#17]\n", "Row: 418 Displacement of [125I]RTI55 from cloned human DAT expressed in HEK293 cells\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 17.0, mcs nAts: 10\n", "[#6,#7,#8]-,=[#6](-[#6,#7,#8]-[#6]1:,-[#6]:,-[#6]:,-[#6,#7]:,-[#6]:,-[#6]:,-1)-[#7,#6]\n", "Row: 419 Inhibition of porcine kidney APN assessed as decrease in p-nitroanilide release using L-leucine-p-nitroanilide as substrate by spectrophotometric analysis\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 21.1, mcs nAts: 13\n", "[#7]-[#6]1-[#6]-[#6]-[#6]2:[#6]:[#6]:[#6]:[#6]:[#6]:2-[#6]-[#6]-1=[#8]\n", "Row: 420 Inhibition of recombinant human carbonic anhydrase 2 after 15 mins by stopped flow CO2 hydration assay at pH 8.3\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 6.4, mcs nAts: 0\n", "\n", "Row: 421 Binding affinity against HIV-1 protease\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 52.7, mcs nAts: 32\n", "[#6]-[#6](-[#6])-[#8,#6]-[#6](=[#8])-[#7]-[#6](-[#6]-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1)-[#6](-[#8])-[#6](-[#7]-[#6]-[#6]1:[#6]:[#6]:[#6](:[#6]:[#6]:1)-[#8,#6]-[#6,#7])-[#6](=[#8])-[#7]-[#6]\n", "Row: 422 Displacement of FITC-geldanamycin from recombinant HSP90beta (unknown origin) after 2 hrs by fluorescence polarization assay\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 29.5, mcs nAts: 18\n", "[#6]-[#6]1(-[#6])-[#6]-[#6](=[#8])-[#6]2:,=[#6](-[#6]-1):,-[#7](-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1):,-[#6]:,-[#6]:,-2\n", "Row: 423 Inhibition of recombinant human carbonic anhydrase 1 after 15 mins by stopped flow CO2 hydration assay at pH 8.3\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 6.4, mcs nAts: 0\n", "\n", "Row: 424 Inhibition of P-glycoprotein in human drug-resistant K562/ADR cells assessed as reduction in P-gp mediated rhodamine 123 efflux by spectrofluorometry\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 34.1, mcs nAts: 27\n", "[#6,#7]-[#7,#6]-[#6]-[#6]-[#7]1:[#6](=[#8]):[#6](=[#6]-[#6]2:[#6]:[#6]:[#6]:[#6]:[#6]:2):[#16]:[#6]:1=[#6]1-[#6](=[#8])-[#7]-[#6]2:[#6]-1:[#6]:[#6]:[#6]:[#6]:2\n", "Row: 425 Inhibition of human recombinant Abl by filter-binding assay\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 26.9, mcs nAts: 21\n", "[#7]-[#6]1:[#7]:[#6](-[#16,#7]-[#6]):[#7]:[#6]2:[#6]:1:[#6]:[#7]:[#7]:2-[#6]-[#6](-[#17,#35])-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1\n", "Row: 426 Inhibition of human recombinant carbonic anhydrase 1 by stopped flow CO2 hydrase assay\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 15.9, mcs nAts: 5\n", "[#6,#7,#8]-,=[#16,#6](-,=[#7,#8,#9])(=,-[#8,#9])=,-[#8,#6,#7,#9]\n", "Row: 427 Antagonist activity at recombinant human adenosine A2B receptor expressed in CHOK1 cell membrane assessed as inhibition of NECA-stimulated adenylyl cyclase activity incubated for 20 mins in presence of [alpha32P]ATP\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 22.3, mcs nAts: 17\n", "[#17,#7]-[#6]1:[#7]:[#6]:[#7]:[#6]2:[#6]:1:[#7]:[#6](:[#16]:2)-[#7]-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1\n", "Row: 428 Binding affinity to dopamine D1 receptor (unknown origin)\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 26.3, mcs nAts: 15\n", "[#6]1:[#6]:[#6]:[#6](:[#6]:[#6]:1)-[#7]1-[#6]-[#6]-[#7](-[#6]-[#6]-1)-[#6]-[#6]-[#8,#6]\n", "Row: 429 Displacement of [3H]N-alpha methyl histamine from rat cortical membrane histamine H3 receptor\n", " * postgresql://localhost/chembl_23\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Mean nAts 23.5, mcs nAts: 7\n", "[#7,#6,#8]-[#6]1:,-[#6]:,-[#6]:,-[#6]:,-[#6]:,-[#6]:,-1\n", "Row: 430 Displacement of [3H]granisetron from human 5HT3A receptor expressed in HEK293 cells by filter binding assay\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 22.5, mcs nAts: 14\n", "[#6]1:[#6]:[#6]:[#6](:[#6]:[#6]:1)-[#16,#8]-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1-[#7]\n", "Row: 431 Inhibition of human carbonic anhydrase 2 preincubated for 15 mins by stopped flow CO2 hydration method\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 6.5, mcs nAts: 0\n", "\n", "Row: 432 Displacement of [3H]N-alpha methyl histamine from human cloned histamine H3 receptor expressed in C6 cells\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 23.5, mcs nAts: 7\n", "[#7,#6,#8]-[#6]1:,-[#6]:,-[#6]:,-[#6]:,-[#6]:,-[#6]:,-1\n", "Row: 433 Displacement of [3H]N-methylspiperone from human D2L receptor expressed in CHO cells after 1.5 hrs by microbeta counting method\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 29.8, mcs nAts: 9\n", "[#7,#6]1-,:[#6]-,:[#6]-,:[#7,#6](-,:[#6,#7]-,:[#6]-,:1)-[#6,#8]-[#6,#8]-[#6]\n", "Row: 434 Displacement of FITC-geldanamycin from recombinant HSP90alpha (unknown origin) after 2 hrs by fluorescence polarization assay\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 29.5, mcs nAts: 18\n", "[#6]-[#6]1(-[#6])-[#6]-[#6](=[#8])-[#6]2:,=[#6](-[#6]-1):,-[#7](-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1):,-[#6]:,-[#6]:,-2\n", "Row: 435 Inhibition of human CA1 cytosolic isoform after 15 mins by stopped-flow CO2 hydration assay\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 34.0, mcs nAts: 11\n", "[#7,#8]-,=[#16](=[#8])(=,-[#8,#7])-[#6]1:[#6]:[#6]:[#6](:[#6]:[#6]:1)-[#17,#16]\n", "Row: 436 Inhibition of [3H]NBTI binding to nucleoside transport protein of human erythrocyte membrane\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 30.8, mcs nAts: 27\n", "[#8]=[#7](-[#8])-[#6]1:[#6]:[#6]:[#6](:[#6]:[#6]:1)-[#6]-[#16]-[#6]1:[#7]:[#6]:[#7]:[#6]2:[#6]:1:[#7]:[#6]:[#7]:2-[#6]-[#6]1:[#6]:[#6]:[#6,#7]:[#6,#7]:[#6]:1\n", "Row: 437 Inhibition of human factor 10a\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 34.1, mcs nAts: 9\n", "[#6,#7,#8]-,=,#[#8,#6,#7]-[#6]1:[#6]:[#6]:[#6](:[#6]:[#6]:1)-[#7,#6,#8,#9,#17]\n", "Row: 438 Inhibition of human recombinant carbonic anhydrase 9 catalytic domain by stopped flow CO2 hydrase assay\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 15.9, mcs nAts: 5\n", "[#6,#7,#8]-,=[#16,#6](-,=[#7,#8,#9])(=,-[#8,#9])=,-[#8,#6,#7,#9]\n", "Row: 439 Displacement of [3H]ZM241385 from human A2A receptor expressed in HEK293 cell membranes\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 29.9, mcs nAts: 19\n", "[#6]-[#6]-[#7]1:[#6](=[#8]):[#7]:[#6]:[#6](:[#6]:1):[#7]:[#6](:[#7])-[#6]1:[#6]:[#7]:[#7](:[#6]:1)-[#6]-[#6]\n", "Row: 440 Displacement of [3H]-N-methylspiperone from rat recombinant dopamine D2 short receptor expressed in CHO cells\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 29.5, mcs nAts: 13\n", "[#6,#8]-[#7,#6]1-,:[#6]-,:[#6]-,:[#6,#7]2-,:[#6](-,:[#6]-,:1)-,:[#6](:,-[#6]:,-[#6,#7]:,-[#6]):,-[#6]-[#7,#6]-2\n", "Row: 441 Inhibition of human full length recombinant carbonic anhydrase 6 by stopped flow CO2 hydrase assay\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 15.9, mcs nAts: 5\n", "[#6,#7,#8]-,=[#16,#6](-,=[#7,#8,#9])(=,-[#8,#9])=,-[#8,#6,#7,#9]\n", "Row: 442 Inhibition of Astrosclera willeyana recombinant GST-tagged astrosclerin 3 expressed in Escherichia coli BL21-DE3-RIPL cells preincubated for 15 mins measured for 10 to 100 secs by stopped flow CO2 hydration assay\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 6.6, mcs nAts: 0\n", "\n", "Row: 443 Displacement of [3H]PK11195 from TSPO in rat kidney mitochondrial membranes by competitive binding assay\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 26.2, mcs nAts: 19\n", "[#7,#8]-,=[#6](=,-[#8,#7])-[#6]1:[#7]:[#6](-[#6]2:[#6]:[#6]:[#6]:[#6]:[#6]:2):[#6]2:[#6](:[#7,#6]:1):[#6]:[#6]:[#6]:[#6]:2\n", "Row: 444 Binding affinity to human androgen receptor expressed in CV1 cells\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 20.9, mcs nAts: 15\n", "[#6]1:[#6]:[#6]:[#6]2:[#6](:[#6]:1):[#7,#8]:[#6](:[#6]:[#6]:2-[#6](-[#9])(-[#9])-[#9])=,-[#8]\n", "Row: 445 Displacement of [125I][Tyr14]nociceptin from human cloned ORL1 receptor expressed in CHO cells\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 33.6, mcs nAts: 26\n", "[#7,#6]-[#6,#7]-[#6]1(-[#6,#7])-[#6]-[#6]2-[#6]-[#6]-[#6](-[#6]-1)-[#7]-2-[#6](-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1-[#17])-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1-[#17]\n", "Row: 446 Inhibition of Bacillus thermoproteolyticus TLN using 2-furanacryloyl-Gly-Leu-NH2 substrate by biochemical assay\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 30.4, mcs nAts: 23\n", "[#6]-[#6]-[#7]-[#6](=[#8])-[#6](-[#6])-[#7]-[#15](=[#8])(-[#8])-[#6]-[#7]-[#6](=[#8])-[#8]-[#6]-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1\n", "Row: 447 BindingDB_Patents: Binding Assay. Evaluation of the affinity of compounds for the human MCH-1 receptor was accomplished using 4-(3,4,5-tritritiumbenzyloxy)-1-(1-(2-(pyrrolidin-1-yl)ethyl)-1H-indazol-5-yl)pyridin-2(1H)-one and membranes prepared from stable CHO-K1 cells expressing the human MCH1 receptor obtained from Euroscreen (Batch 1138). Cell membrane homogenates (8.92 µg protein) were incubated for 60 min at 25° C. with 1.4 µM of the [3H]-labeled compound in the absence or presence of the test compound in 50 mM Tris-HCl buffer, pH 7.4. Nonspecific binding was determined in the presence of 50 µM 1-(5-(4-cyanophenyl)bicyclo[3.1.0]hexan-2-yl)-3-(4-fluoro 3-(trifluoromethyl)phenyl)-1-(3-(4-methylpiperazin-1-yl)propyl)urea. Following incubation, the samples were filtered rapidly under vacuum through Skatron 11731 filters, pre-soaked in 0.5% polyethylenimine, and washed with ice-cold 50 mM Tris-HCl buffer, pH 7.4, (wash setting 9,9,0) using a Skatron cell harvester.\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 32.4, mcs nAts: 21\n", "[#8]=[#6]1:,-[#6]:,-[#6,#7](-[#8,#6]):,-[#6]:,-[#6,#7]:,-[#7]:,-1-[#6]1:[#6]:[#6]:[#6]2:[#6](:[#6,#7]:1):[#7]:[#6]1:[#6]:2-[#6]-[#7]-[#6]-[#6]-1\n", "Row: 448 Inhibition of PKAalpha (1 to 351 amino acids) (unknown origin) using Leu-Arg-Arg-Ala-Ser-Leu-Gly as substrate by pyruvate kinase/lactate dehydrogenase coupled assay\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 23.6, mcs nAts: 21\n", "[#8]=[#6](-[#6]-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1)-[#7]-[#6]1:[#7,#6,#16]:[#6](-[#6]2:[#6]:[#6]:[#7]:[#6]:[#6,#7]:2):[#6,#7,#16]:[#16,#6,#7]:1\n", "Row: 449 BindingDB_Patents: Binding Assay. Kippa-Opioid Receptor Binding Assay Procedures: Membranes from recombinant HEK-293 cells expressing the human kippa opioid receptor (kippa) (cloned in house) were prepared by lysing cells in ice cold hypotonic buffer (2.5 mM MgCl2, 50 mM HEPES, pH 7.4) (10 mL/10 cm dish) followed by homogenization with a tissue grinder/Teflon pestle. Membranes were collected by centrifugation at 30,000xg for 15 mM at 4 C. and pellets were resuspended in hypotonic buffer to a final concentration of 1-3 mg/mL. Protein concentrations were determined using the BioRad protein assay reagent with bovine serum albumen as standard. Aliquots of kippa receptor membranes were stored at -80 C.Radioligand dose displacement assays used 0.4 nM [3H]-U69,593 (GE Healthcare, Piscataway, N.J.; 40 Ci/mmole) with 15 ug membrane protein (recombinant lc opioid receptor expressed in HEK 293 cells; in-house prep) in a final volume of 200 ul binding buffer (5% DMSO, 50 mM Trizma base, pH 7.4).\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 38.1, mcs nAts: 32\n", "[#6]-[#8]-[#6]12-[#6]-[#6]-[#6]3(-[#6]-[#6]-1-[#6]-[#7]-[#6,#16](=,-[#8,#6])-,=[#6,#7,#8])-[#6]14-[#6]-2-[#8]-[#6]2:[#6]-1:[#6](-[#6]-[#6]-3-[#7](-[#6]-[#6]-4)-[#6]-[#6]1-[#6]-[#6]-1):[#6]:[#6]:[#6]:2-[#8]\n", "Row: 450 Inhibition of PTP1B (unknown origin)\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 37.7, mcs nAts: 13\n", "[#7,#8](-[#6]-[#6]=,-[#8,#6])-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1-[#6](=,-[#8])-,=[#8]\n", "Row: 451 Displacement of [3H]CCPA from recombinant human adenosine A1 receptor expressed in CHO cell membrane after 3 hrs by microbeta scintillation counting method\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 22.3, mcs nAts: 17\n", "[#17,#7]-[#6]1:[#7]:[#6]:[#7]:[#6]2:[#6]:1:[#7]:[#6](:[#16]:2)-[#7]-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1\n", "Row: 452 Displacement of [3H]HEMADO from recombinant human adenosine A3 receptor expressed in CHO cell membrane after 3 hrs by microbeta scintillation counting method\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 22.3, mcs nAts: 17\n", "[#17,#7]-[#6]1:[#7]:[#6]:[#7]:[#6]2:[#6]:1:[#7]:[#6](:[#16]:2)-[#7]-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1\n", "Row: 453 Displacement of [3H]LSD from human recombinant 5HT5A receptor expressed in HEK293-EBNA cells\n", " * postgresql://localhost/chembl_23\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Mean nAts 13.6, mcs nAts: 11\n", "[#7,#6,#8,#17]-[#6,#7]1=,-,:[#7,#6]-,:[#6]2:,-[#6,#7]:,-,=[#6,#7]:,-[#6,#7]:,-,=[#6,#7]:,-[#6]:2-,:[#6,#7]-,=,:[#7,#6]-,:1\n", "Row: 454 Inhibition of human carbonic anhydrase 7 preincubated for 15 mins by CO2 hydration stopped-flow assay\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 14.1, mcs nAts: 7\n", "[#7,#6,#8]-[#6]1:[#6]:[#6]:[#6,#7]:[#6]:[#6]:1\n", "Row: 455 Binding affinity to Homo sapiens (human) alpha1A adrenergic receptor\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 43.9, mcs nAts: 35\n", "[#7,#6,#8]-,=[#6](=,-[#8,#7])-[#6]1=[#6](-[#6])-[#7]-[#6](=[#6](-[#6]-1-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1)-[#6](=[#8])-[#7]-[#6]-[#6]-[#6]-[#7]1-[#6]-[#6]-[#6](-[#6]-[#6]-1)-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1)-[#6]\n", "Row: 456 BindingDB_Patents: FLIPR Assay. The agonistic or antagonistic effect of the substances to be tested on the vanilloid receptor 1 (VR1) can also be determined using the following assay. In this assay, the influx of Ca2+ through the channel is quantified with the aid of a Ca2+-sensitive dye (type Fluo-4, Molecular Probes Europe BV, Leiden, the Netherlands) in a fluorescent imaging plate reader (FLIPR, Molecular Devices, Sunnyvale, USA).Method:Chinese hamster ovary cells (CHO K1 cells, European Collection of Cell Cultures (ECACC) United Kingdom) are stably transfected with the VR1 gene. For functional testing, these cells are plated out on poly-D-lysine-coated black 96-well plates having a clear base (BD Biosciences, Heidelberg, Germany) at a density of 25,000 cells/well. The cells are incubated overnight at 37 C. and 5% CO2 in a culture medium (Ham's F12 nutrient mixture, 10% by volume of FCS (foetal calf serum), 18 ug/ml of L-proline). The next day the cells are incubated with Fluo-4.\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 33.9, mcs nAts: 26\n", "[#8]=[#6](-[#6,#7]-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1)-[#7]-[#6]-[#6]1:[#6]:[#6](-[#6](-[#9,#6])(-[#9,#6])-[#9,#6]):[#7]:[#7]:1-[#6]1:,-[#6]:,-[#6]:,-[#6]:,-[#6]:,-[#6,#7]:,-1\n", "Row: 457 Inhibition of mouse recombinant carbonic anhydrase 15 by stopped flow CO2 hydrase assay\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 15.9, mcs nAts: 5\n", "[#6,#7,#8]-,=[#16,#6](-,=[#7,#8,#9])(=,-[#8,#9])=,-[#8,#6,#7,#9]\n", "Row: 458 Inhibition of ROCK1 (6 to 553 amino acids) (unknown origin) using Lys-Lys-Arg-Asn-Arg-Thr-Leu-Ser-Val as substrate preincubated for 15 mins followed by ATP addition by pyruvate kinase/lactate dehydrogenase coupled assay\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 23.6, mcs nAts: 21\n", "[#8]=[#6](-[#6]-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1)-[#7]-[#6]1:[#7,#6,#16]:[#6](-[#6]2:[#6]:[#6]:[#7]:[#6]:[#6,#7]:2):[#6,#7,#16]:[#16,#6,#7]:1\n", "Row: 459 Binding affinity for human dopamine D3 receptor\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 29.6, mcs nAts: 22\n", "[#8,#6]=,-[#6](-[#7]-[#6]-[#6]=,-[#6]-[#6]-[#7]1-[#6]-[#6]-[#7](-[#6]-[#6]-1)-[#6]1:[#6]:[#6]:[#6]:[#6](:[#6]:1-[#17])-[#17])-,=[#6,#8]\n", "Row: 460 Displacement of [3H]5-carboxamidotryptamine to human 5HT1A expressed in HEK293 cells by filter binding assay\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 22.5, mcs nAts: 14\n", "[#6]1:[#6]:[#6]:[#6](:[#6]:[#6]:1)-[#16,#8]-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1-[#7]\n", "Row: 461 Inhibition of human PNP by xanthine-oxidase coupled assay\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 18.9, mcs nAts: 12\n", "[#8]=[#6]1:[#7]:[#6]:[#7]:[#6]2:[#6]:1:[#7]:[#6]:[#6]:2-[#6]-[#7,#6]\n", "Row: 462 Binding affinity for human dopamine D2 receptor\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 29.6, mcs nAts: 22\n", "[#8,#6]=,-[#6](-[#7]-[#6]-[#6]=,-[#6]-[#6]-[#7]1-[#6]-[#6]-[#7](-[#6]-[#6]-1)-[#6]1:[#6]:[#6]:[#6]:[#6](:[#6]:1-[#17])-[#17])-,=[#6,#8]\n", "Row: 463 Displacement of [125I]-AB-MECA from human A3 receptor expressed in CHO cells\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 29.9, mcs nAts: 19\n", "[#6]-[#6]-[#7]1:[#6](=[#8]):[#7]:[#6]:[#6](:[#6]:1):[#7]:[#6](:[#7])-[#6]1:[#6]:[#7]:[#7](:[#6]:1)-[#6]-[#6]\n", "Row: 464 Inhibition of human recombinant adenosine A1 receptor\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 26.7, mcs nAts: 7\n", "[#6,#7,#8]-[#7,#6]1:,-[#6,#7]:,-[#6,#7]:,-[#6,#7]:,-[#7,#6]:,-[#6,#7,#8]:,-1\n", "Row: 465 Displacement of [125I]BTX from rat alpha7 nicotinic acetylcholine receptor expressed in GH4C1 cells\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 20.7, mcs nAts: 18\n", "[#6]1:[#6,#7]:[#6,#7]:[#6]2:[#6](:[#6,#7]:1):[#7,#8]:[#6](:[#8,#7]:2)-[#7]1-[#6]-[#6]-[#7]2-[#6]-[#6]-[#6]-1-[#6]-[#6]-2\n", "Row: 466 Displacement of [3H]Nociceptin from human recombinant NOP receptor expressed in CHO cells by scintillation counter\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 31.1, mcs nAts: 12\n", "[#7,#6]-,:[#6,#7]-,:[#6]-,:[#6]-,:[#6]1:,-[#16,#6,#8]:,-[#6]:,-[#6]:,-[#6]:,-1-,:[#6]-,:[#6]-,:[#8,#6]\n", "Row: 467 Displacement of [3H]LY278584 from mouse 5HT3 receptor expressed in HEK293 cells\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 20.7, mcs nAts: 18\n", "[#6]1:[#6,#7]:[#6,#7]:[#6]2:[#6](:[#6,#7]:1):[#7,#8]:[#6](:[#8,#7]:2)-[#7]1-[#6]-[#6]-[#7]2-[#6]-[#6]-[#6]-1-[#6]-[#6]-2\n", "Row: 468 Binding affinity against cloned human 5-hydroxytryptamine 6 receptor expressed in HeLa cells using [3H]LSD\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 26.1, mcs nAts: 18\n", "[#6,#8]-,=[#16,#6](=,-[#8,#6,#7])-[#7]1:[#6]:[#6](-[#6]2=,-[#6]-[#6]-[#7]-[#6]-[#6]-2):[#6]2:[#6]:1:[#6]:[#6]:[#6]:[#6]:2\n", "Row: 469 Inhibition of recombinant matriptase (unknown origin) using Boc-Gln-Ala-Arg-7-amido-4-methyl coumarin hydrobromide\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 36.1, mcs nAts: 15\n", "[#7]=,-[#6]-[#6]1:[#6]:[#6]:[#6](:[#6]:[#6]:1)-[#8]-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1\n", "Row: 470 BindingDB_Patents: Radioligand Binding Assays. The CB1 and CB2 radioligand binding assays described herein are utilized to ascertain the selectivity of compounds of the present application for binding to CB2 relative to CB1 receptors.HEK293 cells stably expressing human CB2 receptors were grown until a confluent monolayer was formed. Briefly, the cells were harvested and homogenized in TE buffer (50 mM Tris-HCl, 1 mM MgCl2, and 1 mM EDTA) using a polytron for 210 second bursts in the presence of protease inhibitors, followed by centrifugation at 45,000xg for 20 minutes. The final membrane pellet was re-homogenized in storage buffer (50 mM Tris-HCl, 1 mM MgCl2, and 1 mM EDTA and 10% sucrose) and frozen at -78 C. until used. Saturation binding reactions were initiated by the addition of membrane preparation (protein concentration of 5 ug/well for human CB2) into wells of a deep well plate containing [3H]CP 55,940 (120 Ci/mmol, a nonselective CB agonist commercially available from Tocris) in assay buffer.\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 32.3, mcs nAts: 20\n", "[#6,#8]-,=[#6]-[#6]-[#7]1:[#6]:[#6]:[#16]:[#6]:1=[#7]-[#6](=[#8])-[#6]1:[#6]:[#6](-[#17,#6,#35]):[#6]:[#6]:[#6]:1-[#8,#7]-[#6,#7]\n", "Row: 471 Displacement of 0.1 nM [125I]CCL2 from human CCR2 expressing human U2OS cell membrane by scintillation spectrometry\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 37.2, mcs nAts: 26\n", "[#6]-[#6](-[#6])-[#6]1(-[#6](=[#8])-[#7]2-[#6]-[#6]-[#6,#7]:,-[#6]-[#6]-2)-[#6]-[#6]-[#6](-[#6]-1)-[#7]-[#6]1-[#6]-[#6]-[#6]2:[#6]-1:[#6]:[#6]:[#6]:[#6]:2\n", "Row: 472 Displacement of radiolabeled iodo-MCH from human MCHR1 expressed in HEK293 cells\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 32.9, mcs nAts: 20\n", "[#8,#6,#9]-[#6]1:[#6]:[#6](-[#7]-[#6,#16](=[#8])-[#6]2:[#6]:[#6]:[#6]:[#6]:[#6]:2):[#6]:[#6]:[#6]:1-[#8]-[#6]-[#6]-[#7]\n", "Row: 473 Inhibition of human recombinant carbonic anhydrase 1 by stopped-flow CO2 hydration assay\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 16.2, mcs nAts: 5\n", "[#6,#7,#8]-,=[#16,#6](-,=[#7,#8,#9])(=,-[#8,#9])=,-[#8,#6,#7,#9]\n", "Row: 474 Inhibition of human recombinant carbonic anhydrase 2 by stopped-flow CO2 hydration assay\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 16.2, mcs nAts: 5\n", "[#6,#7,#8]-,=[#16,#6](-,=[#7,#8,#9])(=,-[#8,#9])=,-[#8,#6,#7,#9]\n", "Row: 475 Displacement of [3H]NECA from recombinant human adenosine A2A receptor expressed in CHO cell membrane after 3 hrs by microbeta scintillation counting method\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 22.3, mcs nAts: 17\n", "[#17,#7]-[#6]1:[#7]:[#6]:[#7]:[#6]2:[#6]:1:[#7]:[#6](:[#16]:2)-[#7]-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1\n", "Row: 476 Binding affinity at human GnRH receptor\n", " * postgresql://localhost/chembl_23\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Mean nAts 37.8, mcs nAts: 11\n", "[#6,#7]1:[#6,#7](-[#6]):[#6,#7]:[#7,#6](:[#6](:[#7,#6]:1)=[#8])-[#6]-[#6,#8]-[#7,#6]\n", "Row: 477 Inhibition of archaeon Methanosarcina thermophila gamma-CA after 15 mins by stopped-flow/Co2 hydration assay\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 6.6, mcs nAts: 0\n", "\n", "Row: 478 Inhibition of human carbonic anhydrase 1 preincubated for 15 mins by stopped flow CO2 hydration method\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 6.5, mcs nAts: 0\n", "\n", "Row: 479 Inhibition of binding to human D3 receptor expressed in HEK 293 cells by radioligand binding assay\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 21.0, mcs nAts: 6\n", "[#6,#7]1:,-[#6,#8]:,-[#6]:,-[#6]:,-[#6]:,-[#6,#7,#8]:,-1\n", "Row: 480 Inhibition of human carbonic anhydrase 2 preincubated for 15 mins by stopped flow CO2 hydration method\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 6.5, mcs nAts: 0\n", "\n", "Row: 481 Binding affinity against opioid receptor kappa 1 using [3H]-U-69,593 as radioligand in guinea pig brain membranes.\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 23.6, mcs nAts: 19\n", "[#6]-[#7]1-[#6]-[#6]-[#6]23-[#6](-[#6]-1-[#6]-[#6]1:[#6]:[#6]:[#6](:[#6]:[#6]-2:1)-[#8,#6,#7])-[#6]-[#6]-[#6]-[#6]-3\n", "Row: 482 Inhibitory concentration against recombinant human Cathepsin L at 37 degree C at pH 5.5\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 34.8, mcs nAts: 20\n", "[#6]-[#8]-[#6]1:[#6]:[#6]:[#6](:[#6]:[#6]:1)-[#7]-[#6]-[#6]-[#7]-[#6](=[#8])-[#6](-[#6,#7]-[#6](-,=[#6,#8])-[#6])-[#7,#6]\n", "Row: 483 Inhibitory concentration against recombinant human Cathepsin S at 37 degree C at pH 5.5\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 34.8, mcs nAts: 20\n", "[#6]-[#8]-[#6]1:[#6]:[#6]:[#6](:[#6]:[#6]:1)-[#7]-[#6]-[#6]-[#7]-[#6](=[#8])-[#6](-[#6,#7]-[#6](-,=[#6,#8])-[#6])-[#7,#6]\n", "Row: 484 Inhibition of Homo sapiens (human) recombinant protoporphyrinogen oxidase expressed in Escherichia coli JM109 assessed as oxidation of protoporphyrinogen IX substrate by UV-visible spectrophotometry\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 27.1, mcs nAts: 24\n", "[#6,#8]=,-,#[#6,#8]-[#6]-[#16]-[#6]1:[#7]:[#6]2:[#6]:[#6](-[#7]3:[#7]:[#6](-[#6](-[#6])(-[#6])-[#6]):[#8]:[#6]:3=[#8]):[#6](:[#6]:[#6]:2:[#16]:1)-[#9,#17,#35]\n", "Row: 485 Inhibition of human carbonic anhydrase 2\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 16.8, mcs nAts: 10\n", "[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1-[#16](-,=[#7,#8])(=[#8])=,-[#8,#7]\n", "Row: 486 Inhibition of recombinant human IDH1 R132H mutant expressed in Escherichia coli using alpha-KG as substrate preincubated for 5 mins followed by substrate addition measured every 30 secs by microplate reader analysis\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 18.4, mcs nAts: 14\n", "[#8,#16]=[#6]1-[#7]-[#6](=,-[#16,#6,#7,#8])-,=[#7,#6,#16]-[#6,#7]-1=,-[#6]-[#6]1:[#6]:[#6,#7]:[#6,#7]:[#7,#6]:[#6,#7]:1\n", "Row: 487 Displacement of [3H]-epibatidine from histidine-tagged Lymnaea stagnalis AChBP expressed in Sf9 cells after 1.5 hrs by liquid scintillation counting\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 19.2, mcs nAts: 6\n", "[#6,#7]1:,-[#6,#7]:,-,=[#6,#7,#8]:,-[#6,#7]:,-[#7,#6,#8]:,-[#6,#7]:,-1\n", "Row: 488 Inhibition of Pseudomonas aeruginosa PAO1 type-2 beta-carbonic anhydrase psCA3 expressed in Escherichia coli Tuner BL21 (DE3) cells pre-incubated for 15 mins at pH 8.3 and 293K by CO2 hydration reaction based colorimetric stopped-flow method\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 6.7, mcs nAts: 0\n", "\n", "Row: 489 Inhibitory activity on aminopeptidase N (APN) using Ala-pNA as substrate.\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 33.2, mcs nAts: 18\n", "[#6]-[#6](-[#7]-[#6](=[#8])-[#6](-[#6]-[#6])-[#6]-[#15](=[#8])(-[#8])-[#6](-[#6,#7])-[#7,#6])-[#6](=[#8])-[#8]\n", "Row: 490 Inhibitory activity on neutral endopeptidase (NEP) using DGNPA as substrate.\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 33.2, mcs nAts: 18\n", "[#6]-[#6](-[#7]-[#6](=[#8])-[#6](-[#6]-[#6])-[#6]-[#15](=[#8])(-[#8])-[#6](-[#6,#7])-[#7,#6])-[#6](=[#8])-[#8]\n", "Row: 491 Displacement of [3H]-DPCPX from human adenosine A1 receptor expressed in CHO-K1 cells after 1 hr by scintillation counting\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 29.8, mcs nAts: 21\n", "[#6]-[#6]-[#7](-[#6](-[#6,#9])=,-[#8,#6,#9])-[#6]1:[#6]:[#6]:[#6](:[#6]2:[#6]:1:[#16]:[#6](:[#7]:2)-[#7]-[#6](=[#8])-[#6])-[#8]-[#6]\n", "Row: 492 BindingDB_Patents: Fluorescence Resonance Energy Transfer (FRET) Assay. Potency of test compounds were determined by measurement of their inhibition of BACE1 activity toward a fluorescent substrate. Experiments were performed by reference to the procedure as described in Ermolieff, et al. (Biochemistry 39:12450-12456 (2000), the teachings of which are incorporated hereby in their entirety). Briefly, the recombinant protease unit of BACE1 was prepared from E. coli expression as inclusion bodies, refolded, and purified as described in Lin, et al., (Proc. Nat. Acad. Sci. 97:1456-1460 (2000)). Fluorogenic substrate, MCA-SEVNLDAEFK(DNP)-NH2 (SEQ ID NO:1) was purchased. (M-2485, Bachem Americas, Torrance, Calif.). The substrate was derived from 10 amino acids of the human amyloid precursor protein (APP), with the Swedish variant amino acids at the beta-secretase cleavage site. The terminal amino acid was modified from arginine to lysine to facilitate derivatization with a functional group for detection by autofluorescence.\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 27.5, mcs nAts: 16\n", "[#7]-[#6]1=[#7,#6]-[#6]2(-[#6]-,:[#8,#6,#16]-1)-[#6]1:[#6]:[#6](-[#35,#6,#7]):[#6]:[#6]:[#6]:1-[#8]-[#6]-[#6]-2\n", "Row: 493 Displacement of [3H]-ZM241385 from human adenosine A2A receptor expressed in CHO-K1 cells after 1 hr by scintillation counting\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 29.8, mcs nAts: 21\n", "[#6]-[#6]-[#7](-[#6](-[#6,#9])=,-[#8,#6,#9])-[#6]1:[#6]:[#6]:[#6](:[#6]2:[#6]:1:[#16]:[#6](:[#7]:2)-[#7]-[#6](=[#8])-[#6])-[#8]-[#6]\n", "Row: 494 Displacement of [3H]ZM241385 from human adenosine A2B receptor expressed in CHO cells after 1 hr by scintillation counting\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 29.8, mcs nAts: 21\n", "[#6]-[#6]-[#7](-[#6](-[#6,#9])=,-[#8,#6,#9])-[#6]1:[#6]:[#6]:[#6](:[#6]2:[#6]:1:[#16]:[#6](:[#7]:2)-[#7]-[#6](=[#8])-[#6])-[#8]-[#6]\n", "Row: 495 Displacement of [3H]CP101606 from NR2B in rat brain minus cerebellum membrane\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 21.9, mcs nAts: 15\n", "[#6]-[#7,#6]-[#6,#7]-[#6]1:[#6]:[#7,#6]:[#6,#7]:[#6](:[#7,#6]:1)-[#6]1:[#6]:[#6,#7]:[#6]:[#6]:[#6,#7]:1\n", "Row: 496 Displacement of FITC-geldanamycin from recombinant TRAP1 (unknown origin) after 2 hrs by fluorescence polarization assay\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 29.5, mcs nAts: 18\n", "[#6]-[#6]1(-[#6])-[#6]-[#6](=[#8])-[#6]2:,=[#6](-[#6]-1):,-[#7](-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1):,-[#6]:,-[#6]:,-2\n", "Row: 497 Displacement of [3H]ZM241385 from human adenosine A2A receptor expressed in HEK293 cells\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 24.9, mcs nAts: 17\n", "[#7,#6]-[#6]1:[#6,#7]:[#6](-[#7]-[#6](-,=[#6,#8])=,-[#8,#6,#7]):[#7,#6]:[#6](:[#7]:1)-[#7]1:,-[#7,#6]:,-[#6]:,-[#6]:,-[#6]:,-1-[#6]\n", "Row: 498 Inhibition of human carbonic anhydrase 9 catalytic domain preincubated for 15 mins by stopped flow CO2 hydration assay\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 36.5, mcs nAts: 13\n", "[#7,#6,#16]-,=[#6,#7]-[#6,#7]-[#6]1:[#6]:[#6]:[#6](:[#6]:[#6]:1)-[#16](-[#7])(=[#8])=[#8]\n", "Row: 499 Displacement of [3H]CCPA from recombinant human adenosine receptor A1 expressed in CHO cell membranes\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 33.3, mcs nAts: 17\n", "[#6]-[#7]1:[#6](=[#8]):[#6]2:[#6](:[#7](:[#6]:1=[#8])-[#6]):[#7]:[#6]1:[#7]:2-[#6]-[#6]-[#6,#7]-[#7,#6]-1\n", "Row: 500 Inhibition of full length Mycobacterium tuberculosis H37Rv recombinant carbonic anhydrase 2 encoded by RV3588c by stopped flow CO2 hydration assay\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 16.1, mcs nAts: 5\n", "[#6,#7,#8]-,=[#16,#6](-,=[#7,#8,#9])(=,-[#8,#9])=,-[#8,#6,#7,#9]\n", "Row: 501 Inhibition of human recombinant CA2 by stopped-flow hydration assay\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 16.1, mcs nAts: 5\n", "[#6,#7,#8]-,=[#16,#6](-,=[#7,#8,#9])(=,-[#8,#9])=,-[#8,#6,#7,#9]\n", "Row: 502 Inhibition of human cloned carbonic anhydrase 1 preincubated for 15 mins by stopped flow CO2 hydration assay\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 36.5, mcs nAts: 13\n", "[#7,#6,#16]-,=[#6,#7]-[#6,#7]-[#6]1:[#6]:[#6]:[#6](:[#6]:[#6]:1)-[#16](-[#7])(=[#8])=[#8]\n", "Row: 503 Inhibition of Saccharomyces cerevisiae recombinant CA expressed in Escherichia coli by stopped-flow CO2 hydrase assay\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 16.1, mcs nAts: 5\n", "[#6,#7,#8]-,=[#16,#6](-,=[#7,#8,#9])(=,-[#8,#9])=,-[#8,#6,#7,#9]\n", "Row: 504 Inhibition of cloned Stylophora pistillata alpha-CA expressed in human HEK293 cells by stopped-flow CO2 assay\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 16.0, mcs nAts: 5\n", "[#6,#7,#8]-,=[#16,#6](-,=[#7,#8,#9])(=,-[#8,#9])=,-[#8,#6,#7,#9]\n", "Row: 505 Inhibition of human recombinant CA2 by stopped-flow CO2 assay\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 16.0, mcs nAts: 5\n", "[#6,#7,#8]-,=[#16,#6](-,=[#7,#8,#9])(=,-[#8,#9])=,-[#8,#6,#7,#9]\n", "Row: 506 Inhibition of human recombinant CA1 by stopped-flow CO2 assay\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 16.0, mcs nAts: 5\n", "[#6,#7,#8]-,=[#16,#6](-,=[#7,#8,#9])(=,-[#8,#9])=,-[#8,#6,#7,#9]\n", "Row: 507 Inhibitory activity against Carbonic anhydrase IX\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 21.8, mcs nAts: 8\n", "[#6]1:,-[#6]:,-[#6,#16]:,-[#6]:,-[#6,#16]:,-[#6,#7]:,-1-[#16,#6,#7,#8]=,-[#8,#6,#7]\n", "Row: 508 Inhibitory activity against Carbonic anhydrase II\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 21.8, mcs nAts: 8\n", "[#6]1:,-[#6]:,-[#6,#16]:,-[#6]:,-[#6,#16]:,-[#6,#7]:,-1-[#16,#6,#7,#8]=,-[#8,#6,#7]\n", "Row: 509 Binding affinity to human adrenergic Alpha-1B receptor expressed in rat intact fibroblasts\n", " * postgresql://localhost/chembl_23\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Mean nAts 32.1, mcs nAts: 19\n", "[#6]-[#7]1:[#7]:[#6](-[#6]-[#6]2:,-[#6]:,-[#6]:,-[#6]:,-[#6]:,-[#6]:,-2):[#6]2:[#6](:[#6]:1=[#8]):[#6]:[#6]:[#6]:[#6]:2\n", "Row: 510 Displacement of [3H]E-3-(2-chloro-8-methylquinolin-3-yl)-1-(thiophen-2-yl)prop-2-en-1-one from mGluR1 in rat cerebellar membrane after 14 to 16 hrs by scintillation counting\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 23.9, mcs nAts: 8\n", "[#6,#8]=,-[#6,#7,#8]-[#6]1:,-[#6,#7]:,-[#7,#6]:,-[#6]:,-[#6,#7]:,-[#6,#7]:,-1\n", "Row: 511 Inhibitory activity against Carbonic anhydrase I\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 21.8, mcs nAts: 8\n", "[#6]1:,-[#6]:,-[#6,#16]:,-[#6]:,-[#6,#16]:,-[#6,#7]:,-1-[#16,#6,#7,#8]=,-[#8,#6,#7]\n", "Row: 512 Displacement of [3H]CCPA from human recombinant adenosine A1 receptor expressed in CHO cells after 60 mins by gamma counter\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 27.7, mcs nAts: 7\n", "[#8,#6,#7]-,=[#6,#7]1:,-[#6,#7]:,-[#6,#7]:,-[#6,#7]:,-[#6,#7]:,-[#6,#7]:,-1\n", "Row: 513 Inhibition of human cloned carbonic anhydrase 2 preincubated for 15 mins by stopped flow CO2 hydration assay\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 36.5, mcs nAts: 13\n", "[#7,#6,#16]-,=[#6,#7]-[#6,#7]-[#6]1:[#6]:[#6]:[#6](:[#6]:[#6]:1)-[#16](-[#7])(=[#8])=[#8]\n", "Row: 514 Displacement of [3H]-citalopram from human serotonin transporter expressed in HEK 293 cells\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 32.1, mcs nAts: 21\n", "[#8,#6]-[#6,#8]-[#6]-[#6]-[#6]-[#7]1-[#6]-[#6]-[#7](-[#6]-[#6]-1)-[#6]1:[#6]:[#6]:[#6]:[#6]2:[#6]:1:[#6]:[#6]:[#6]:[#6]:2\n", "Row: 515 Displacement of [3H]-citalopram from human serotonin transporter expressed in HEK 293 cells by scintillation proximity assay\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 32.1, mcs nAts: 21\n", "[#6,#8]-[#8,#6]-[#6]-[#6]-[#6]-[#7]1-[#6]-[#6]-[#7](-[#6]-[#6]-1)-[#6]1:[#6]:[#6]:[#6]:[#6]2:[#6]:1:[#6]:[#6]:[#6]:[#6]:2\n", "Row: 516 Displacement of FITC-geldanamycin from recombinant GRP94 (unknown origin) after 2 hrs by fluorescence polarization assay\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 29.5, mcs nAts: 18\n", "[#6]-[#6]1(-[#6])-[#6]-[#6](=[#8])-[#6]2:,=[#6](-[#6]-1):,-[#7](-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1):,-[#6]:,-[#6]:,-2\n", "Row: 517 Displacement of [3H]MSX2 from adenosine receptor A2a in rat brain striatal membranes\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 33.3, mcs nAts: 17\n", "[#6]-[#7]1:[#6](=[#8]):[#6]2:[#6](:[#7](:[#6]:1=[#8])-[#6]):[#7]:[#6]1:[#7]:2-[#6]-[#6]-[#6,#7]-[#7,#6]-1\n", "Row: 518 Inhibition of human recombinant carbonic anhydrase 1 by stopped-flow CO2 hydrase method\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 16.1, mcs nAts: 5\n", "[#6,#7,#8]-,=[#16,#6](-,=[#7,#8,#9])(=,-[#8,#9])=,-[#8,#6,#7,#9]\n", "Row: 519 Inhibition of human recombinant CA2 by stopped-flow CO2 hydrase assay\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 16.1, mcs nAts: 5\n", "[#6,#7,#8]-,=[#16,#6](-,=[#7,#8,#9])(=,-[#8,#9])=,-[#8,#6,#7,#9]\n", "Row: 520 Displacement of [3H]prozosin from bovine cloned Alpha-1A receptor expressed in BHK cells\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 28.8, mcs nAts: 8\n", "[#6]-[#7,#6]1-,:[#6]-,:[#6]-,:[#7,#6](-,:[#6]-,:[#6]-,:1)-[#6]\n", "Row: 521 Inhibition of Candida albicans recombinant Nce103 by stopped-flow CO2 hydration assay\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 16.1, mcs nAts: 5\n", "[#6,#7,#8]-,=[#16,#6](-,=[#7,#8,#9])(=,-[#8,#9])=,-[#8,#6,#7,#9]\n", "Row: 522 Displacement of [3H]prozosin from human cloned dopamine D2 receptor expressed in CHO cells\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 28.8, mcs nAts: 8\n", "[#6]-[#7,#6]1-,:[#6]-,:[#6]-,:[#7,#6](-,:[#6]-,:[#6]-,:1)-[#6]\n", "Row: 523 Inhibition of Trypanosoma brucei rhodesiense rhodesain\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 38.9, mcs nAts: 14\n", "[#6,#8](-[#7,#6]-[#6])-[#6](=[#8])-[#7,#6]1-[#6,#7](-[#6](=,-[#8,#6])-,=[#8])-[#6,#7]-1-[#6](=[#8])-[#8,#6]\n", "Row: 524 Inhibition of human recombinant carbonic anhydrase 2 by stopped flow CO2 hydration method\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 16.1, mcs nAts: 5\n", "[#6,#7,#8]-,=[#16,#6](-,=[#7,#8,#9])(=,-[#8,#9])=,-[#8,#6,#7,#9]\n", "Row: 525 Inhibition of human recombinant carbonic anhydrase 1 by stopped flow CO2 hydration method\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 16.1, mcs nAts: 5\n", "[#6,#7,#8]-,=[#16,#6](-,=[#7,#8,#9])(=,-[#8,#9])=,-[#8,#6,#7,#9]\n", "Row: 526 Displacement of [3H]SCH58261 from human recombinant A2A receptor expressed in HEK293 cells\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 33.5, mcs nAts: 22\n", "[#7]1:[#6](-[#7]-[#6](=[#8])-[#6]2:[#6]:[#6]:[#6]:[#6](:[#6]:2)-[#6,#8,#9,#17]):[#7]:[#6]2:[#6]:1:[#7,#6]:[#6]:[#6](:[#6,#7]:2)-[#6](-,=[#7,#8])=,-[#8,#7]\n", "Row: 527 Inhibition constant against Bacillus subtilis DNA topoisomerase III (wild type).\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 17.4, mcs nAts: 15\n", "[#8]=,-[#6]1:[#6]:[#6](-[#7]-[#6]2:[#6]:[#6]:[#6]:[#6]:[#6]:2):[#7]:[#6](:[#7]:1)=,-[#8]\n", "Row: 528 Inhibition constant against Bacillus subtilis azp-12 DNA topoisomerase III (mutant enzyme).\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 17.4, mcs nAts: 15\n", "[#8]=,-[#6]1:[#6]:[#6](-[#7]-[#6]2:[#6]:[#6]:[#6]:[#6]:[#6]:2):[#7]:[#6](:[#7]:1)=,-[#8]\n", "Row: 529 Displacement of [3H]NECA from recombinant rat adenosine receptor A3 expressed in CHO cell membranes\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 33.3, mcs nAts: 17\n", "[#6]-[#7]1:[#6](=[#8]):[#6]2:[#6](:[#7](:[#6]:1=[#8])-[#6]):[#7]:[#6]1:[#7]:2-[#6]-[#6]-[#6,#7]-[#7,#6]-1\n", "Row: 530 Inhibition of TYK2 (unknown origin)\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 25.6, mcs nAts: 23\n", "[#8]=[#6](-[#7]-[#6]1:[#6]:[#6]:[#7]:[#6](:[#6]:1)-[#7]-[#6](=[#8])-[#6]1-[#6]-[#6]-1)-[#6]1:[#6](-[#17,#9]):[#6]:[#6]:[#6]:[#6]:1-[#17]\n", "Row: 531 Displacement of [3H]PSB-603 from recombinant rat adenosine receptor A2b expressed in CHO cell membranes\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 33.3, mcs nAts: 17\n", "[#6]-[#7]1:[#6](=[#8]):[#6]2:[#6](:[#7](:[#6]:1=[#8])-[#6]):[#7]:[#6]1:[#7]:2-[#6]-[#6]-[#6,#7]-[#7,#6]-1\n", "Row: 532 Displacement of [125ITyr0-Glu1,Nle17]-PS-Svg in mouse CRF-R2 beta expressed in COS-M6 cells after 90 mins by gamma counting assay\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 278.9, mcs nAts: 60\n", "[#6,#7]-[#6]-[#6]-[#6]-[#6](-[#7]-[#6](=[#8])-[#6](-[#6]-[#6](-[#6])-[#6])-[#7]-[#6](=[#8])-[#6](-[#6]-[#6]-[#6])-[#7]-[#6](=[#8])-[#6](-[#6]-[#6])-[#7]-[#6](=[#8])-[#6](-[#6]-[#6])-[#7]-[#6](=,-[#8,#6])-,=[#6,#8])-[#6](=[#8])-[#7]-[#6](-[#6]-[#6]-[#6](=[#8])-[#8])-[#6](=[#8])-[#7]-[#6](-[#6])-[#6](=[#8])-[#7]-[#6](-[#6]=,-[#8,#6,#7])-[#6](-,=[#6,#8])-[#6,#7]-[#6]\n", "Row: 533 Binding affinity against opioid receptor mu 1 using [3H]DAMGO as radioligand in guinea pig brain membranes.\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 23.6, mcs nAts: 19\n", "[#6]-[#7]1-[#6]-[#6]-[#6]23-[#6](-[#6]-1-[#6]-[#6]1:[#6]:[#6]:[#6](:[#6]:[#6]-2:1)-[#8,#6,#7])-[#6]-[#6]-[#6]-[#6]-3\n", "Row: 534 Inhibition of human recombinant carbonic anhydrase 1 by stopped flow CO2 hydration assay\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 16.1, mcs nAts: 5\n", "[#6,#7,#8]-,=[#16,#6](-,=[#7,#8,#9])(=,-[#8,#9])=,-[#8,#6,#7,#9]\n", "Row: 535 Compound was tested for inhibition activity against bovine trypsin.\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 29.4, mcs nAts: 20\n", "[#6]1:[#6]:[#6]:[#6]:[#6](:[#6]:1)-[#8,#7]-[#6]1:,-[#6,#7]:,-[#6,#7]:,-[#6]:,-[#6](:,=[#7,#6]:,-1)-[#8,#7]-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6,#7]:1\n", "Row: 536 Inhibitory concentration against recombinant human Cathepsin K at 37 degree C at pH 5.5\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 34.8, mcs nAts: 20\n", "[#6]-[#8]-[#6]1:[#6]:[#6]:[#6](:[#6]:[#6]:1)-[#7]-[#6]-[#6]-[#7]-[#6](=[#8])-[#6](-[#6,#7]-[#6](-,=[#6,#8])-[#6])-[#7,#6]\n", "Row: 537 Inhibition of human recombinant carbonic anhydrase 2 by stopped flow CO2 hydration assay\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 16.1, mcs nAts: 5\n", "[#6,#7,#8]-,=[#16,#6](-,=[#7,#8,#9])(=,-[#8,#9])=,-[#8,#6,#7,#9]\n", "Row: 538 Inhibition of human recombinant CA1 by stopped-flow CO2 hydrase assay\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 16.1, mcs nAts: 5\n", "[#6,#7,#8]-,=[#16,#6](-,=[#7,#8,#9])(=,-[#8,#9])=,-[#8,#6,#7,#9]\n", "Row: 539 Displacement of [3H]5-hydroxytryptamine from human cloned 5HT1D receptor expressed in CHOK1 cells by liquid scintillation counting\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 43.9, mcs nAts: 11\n", "[#6]-[#6]1:[#6]:[#7]:[#6]2:[#6]:1:[#6]:[#6](:[#6]:[#6]:2)-[#8,#6,#7]\n", "Row: 540 Antagonist activity at human TRPV1 expressed in CHO cells assessed as inhibition of capsaicin-induced increase in intracellular Ca2+ level by FLIPR assay\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 34.6, mcs nAts: 29\n", "[#6]-[#6](-[#6](=[#8])-[#7]-[#6]-[#6]1:[#6]:[#6]:[#6](:[#7]:[#6]:1-[#17,#6,#7,#35])-[#6](-[#9])(-[#9])-[#9])-[#6]1:[#6]:[#6]:[#6](:[#6](:[#6]:1)-[#9])-[#7]-[#16](-[#6])(=[#8])=[#8]\n", "Row: 541 Inhibition of Mycobacterium tuberculosis recombinant carbonic anhydrase 1 encoded by Rv1284 by stopped flow CO2 hydration assay\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 16.1, mcs nAts: 5\n", "[#6,#7,#8]-,=[#16,#6](-,=[#7,#8,#9])(=,-[#8,#9])=,-[#8,#6,#7,#9]\n", "Row: 542 Displacement of [3H]ZM241385 from human adenosine A2A receptor expressed in HEK293 cells by scintillation counting\n", " * postgresql://localhost/chembl_23\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Mean nAts 28.5, mcs nAts: 16\n", "[#7]-[#6]1:[#7]:[#6](-[#8,#7]):[#7]:[#6]2:[#7]:1:[#7]:[#6](:[#7]:2)-[#6]1:[#6]:[#6]:[#6]:[#8]:1\n", "Row: 543 Displacement of [125I]IABN from human dopamine D2L receptor expressed in HEK293 cells\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 25.5, mcs nAts: 23\n", "[#8,#6,#7,#9]-[#6]1(-[#6]2:[#6]:[#6]:[#6]:[#6]:[#6]:2)-[#6]-[#6]-[#7](-[#6]-[#6]-1)-[#6]-[#6]1:[#6,#7]:[#7,#6,#8]:[#6](:[#6,#7]:1):[#6]:[#6]:[#6]:[#6]\n", "Row: 544 Displacement of [125I]IABN from human dopamine D3 receptor expressed in HEK293 cells\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 25.5, mcs nAts: 23\n", "[#8,#6,#7,#9]-[#6]1(-[#6]2:[#6]:[#6]:[#6]:[#6]:[#6]:2)-[#6]-[#6]-[#7](-[#6]-[#6]-1)-[#6]-[#6]1:[#6,#7]:[#7,#6,#8]:[#6](:[#6,#7]:1):[#6]:[#6]:[#6]:[#6]\n", "Row: 545 Displacement of [125I]NDP-MSH from human MC4R expressed in HEK293 cells\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 39.1, mcs nAts: 30\n", "[#6]-[#6,#7]-[#6](-[#7,#6])-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1-[#7]1-[#6]-[#6]-[#7](-[#6]-[#6]-1)-[#6](=[#8])-[#6]1-[#6,#8]-[#6,#8,#16]-[#8,#6]-[#6]-1-[#6]1:[#6]:[#6]:[#6](:[#6]:[#6]:1)-[#17]\n", "Row: 546 Displacement of [3H]CP-55940 from human cloned CB2 receptor by scintillation spectrometry\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 26.5, mcs nAts: 17\n", "[#6,#35]-[#6]1:[#6]:[#6]:[#6](:[#6]:[#6]:1-[#16](=[#8])(=[#8])-[#7]1-[#6]-[#6]-[#8]-[#6]-[#6]-1)-[#6,#7]\n", "Row: 547 Displacement of [125I]IABN from human dopamine D4 receptor expressed in HEK293 cells\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 25.5, mcs nAts: 23\n", "[#8,#6,#7,#9]-[#6]1(-[#6]2:[#6]:[#6]:[#6]:[#6]:[#6]:2)-[#6]-[#6]-[#7](-[#6]-[#6]-1)-[#6]-[#6]1:[#6,#7]:[#7,#6,#8]:[#6](:[#6,#7]:1):[#6]:[#6]:[#6]:[#6]\n", "Row: 548 Displacement of [3H]CP-55940 from human recombinant CB1 receptor expressed in HEK cells\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 29.2, mcs nAts: 20\n", "[#8]=[#6](-[#7]-[#7,#6])-[#6]1:[#6]:[#6](-[#7]2:[#6]:[#6]:[#6]:[#6]:2):[#7](:[#7]:1)-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1\n", "Row: 549 Displacement of [3H]CP-55940 from human recombinant CB2 receptor expressed in HEK cells\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 29.2, mcs nAts: 20\n", "[#8]=[#6](-[#7]-[#7,#6])-[#6]1:[#6]:[#6](-[#7]2:[#6]:[#6]:[#6]:[#6]:2):[#7](:[#7]:1)-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1\n", "Row: 550 Inhibition of human urine urokinase using L-PyroGlu-Gly-Arg-pNA.HCl substrate at 5 uM\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 36.3, mcs nAts: 19\n", "[#7]=[#6](-[#7])-[#6]1:[#6]:[#6]:[#6](:[#6]:[#6]:1)-[#8]-[#6]1:[#6]:[#6](-[#7,#6,#8]):[#6]:[#6](:[#6]:1)-[#8,#6]-,=[#6,#7,#8]\n", "Row: 551 Binding affinity to human cloned NPY Y5 receptor expressed in african green monkey COS7 cells by radioligand binding assay\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 25.9, mcs nAts: 17\n", "[#6,#7,#8]-,=[#16](=[#8])(=,-[#8,#6,#7])-[#7]-[#6]-[#6]-[#6,#8]-[#6]-[#6]-[#7]-[#6]1:[#7]:[#6](-[#6]):[#6]:[#16]:1\n", "Row: 552 Displacement of [3H]PSB-603 from recombinant human adenosine receptor A3 expressed in CHO cell membranes\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 33.3, mcs nAts: 17\n", "[#6]-[#7]1:[#6](=[#8]):[#6]2:[#6](:[#7](:[#6]:1=[#8])-[#6]):[#7]:[#6]1:[#7]:2-[#6]-[#6]-[#6,#7]-[#7,#6]-1\n", "Row: 553 Displacement of [3H]diprenorphine from human mu opioid receptor expressed in CHO cells\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 33.6, mcs nAts: 26\n", "[#6,#7]-[#7,#6]-[#6]1(-[#6,#7])-[#6]-[#6]2-[#6]-[#6]-[#6](-[#6]-1)-[#7]-2-[#6](-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1-[#17])-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1-[#17]\n", "Row: 554 Displacement of [3H]PSB-603 from recombinant human adenosine receptor A2b expressed in CHO cell membranes\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 33.3, mcs nAts: 17\n", "[#6]-[#7]1:[#6](=[#8]):[#6]2:[#6](:[#7](:[#6]:1=[#8])-[#6]):[#7]:[#6]1:[#7]:2-[#6]-[#6]-[#6,#7]-[#7,#6]-1\n", "Row: 555 Binding affinity to human adrenergic alpha1A receptor expressed in rat intact fibroblasts\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 32.1, mcs nAts: 19\n", "[#6]-[#7]1:[#7]:[#6](-[#6]-[#6]2:,-[#6]:,-[#6]:,-[#6]:,-[#6]:,-[#6]:,-2):[#6]2:[#6](:[#6]:1=[#8]):[#6]:[#6]:[#6]:[#6]:2\n", "Row: 556 Displacement of [3H]CCPA from adenosine receptor A1 in rat brain cortical membranes\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 33.3, mcs nAts: 17\n", "[#6]-[#7]1:[#6](=[#8]):[#6]2:[#6](:[#7](:[#6]:1=[#8])-[#6]):[#7]:[#6]1:[#7]:2-[#6]-[#6]-[#7,#6]-[#6,#7]-1\n", "Row: 557 Antagonist activity at human TRPV1 expressed in CHOK1 cells assessed as inhibition of capsaicin-induced activity by FLIPR assay\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 35.8, mcs nAts: 30\n", "[#6]-[#6](-[#6](=[#8])-[#7]-[#6]-[#6]1:[#6]:[#6]:[#6](:[#7]:[#6]:1-[#16]-,=[#6,#8])-[#6](-[#9])(-[#9])-[#9])-[#6]1:[#6]:[#6]:[#6](:[#6](:[#6]:1)-[#9])-[#7]-[#16](-[#6])(=[#8])=[#8]\n", "Row: 558 Displacement of [3H]-5-CT from human 5-HT7 receptor expressed in HEK293 cells after 1 hr by beta-counting\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 31.6, mcs nAts: 9\n", "[#6,#7]-,#[#6]-[#7,#6]1-,:[#6]-,:[#6]-,:[#7,#6](-,:[#6]-,:[#6]-,:1)-[#6]\n", "Row: 559 Displacement of [3H]PK11195 from peripheral benzodiazepine receptor of rat cerebral cortex\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 29.5, mcs nAts: 20\n", "[#7,#8]-,=[#6](=,-[#8,#7])-[#6]-[#6]1:[#6](-[#6]2:[#6]:[#6]:[#6]:[#6]:[#6]:2):[#7]:[#6]2:[#7]:1:[#6]:[#6](:[#6]:[#6]:2)-[#17]\n", "Row: 560 Inhibition of human recombinant AChE by modified Ellman's spectrophotometric method\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 22.8, mcs nAts: 17\n", "[#7,#8]-,=[#6](=,-[#8,#7])-[#7]1-[#6]2:[#6]:[#6]:[#6]:[#6]:[#6]:2-[#16]-[#6]2:[#6]-1:[#6]:[#6]:[#6]:[#6]:2\n", "Row: 561 Displacement of [125I]pig PPY from human NPY1 receptor expressed in CHOK1 cells by scintillation counting\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 27.8, mcs nAts: 20\n", "[#6]1:[#6]:[#6]:[#6]2:[#6](:[#6]:1):[#7,#16]:[#6](:[#16,#7]:2)-[#7]-[#6]-[#6]-[#6]1:[#6]:[#6]:[#6](:[#6]:[#6]:1)-[#7]-[#6]\n", "Row: 562 Inhibition of human plasma BuChE by modified Ellman's spectrophotometric method\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 22.8, mcs nAts: 17\n", "[#7,#8]-,=[#6](=,-[#8,#7])-[#7]1-[#6]2:[#6]:[#6]:[#6]:[#6]:[#6]:2-[#16]-[#6]2:[#6]-1:[#6]:[#6]:[#6]:[#6]:2\n", "Row: 563 Displacement of [3H]MSX2 from recombinant human adenosine receptor A2a expressed in CHO cell membranes\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 33.3, mcs nAts: 17\n", "[#6]-[#7]1:[#6](=[#8]):[#6]2:[#6](:[#7](:[#6]:1=[#8])-[#6]):[#7]:[#6]1:[#7]:2-[#6]-[#6]-[#6,#7]-[#7,#6]-1\n", "Row: 564 Binding affinity against purified rat Fatty-acid amide hydrolase (FAAH) expressed in Escherichia coli\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 25.6, mcs nAts: 12\n", "[#6]-[#6]-[#6]-[#6]-[#6]-[#6]-[#16,#6]-[#6]1:[#7]:[#6,#7]:[#6]:[#8]:1\n", "Row: 565 Binding affinity to human CB1 receptor\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 30.5, mcs nAts: 22\n", "[#7,#6,#8]-,=[#6,#16]-[#6]1-[#6]-[#6]-[#6](-[#7](-[#6]-1)-[#6]1:[#6]:[#6]:[#6](:[#6]:[#6]:1)-[#17])-[#6]1:[#6]:[#6]:[#6](:[#6]:[#6]:1)-[#17]\n", "Row: 566 Inhibition of Pim3 (unknown origin) using 5FAM-ARKRRRHPSGPPTA as substrate after 90 mins\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 25.1, mcs nAts: 11\n", "[#6]-[#6]1:[#7,#6]:[#7]:[#6]2:[#6]:1:[#6]:[#6](:[#7,#6]:[#6]:2)-[#6,#7]\n", "Row: 567 Binding affinity to human GPR119 in HEK293FT cell membrane by radioligand binding assay\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 33.8, mcs nAts: 28\n", "[#6]-[#6]-[#8]-[#6](=[#8])-[#7]1-[#6]2-[#6]-[#6]3-[#6]-[#6]-1-[#6]-[#6](-[#6]-2)-[#7]-3-[#6]1:[#7]:[#6]:[#7]:[#6](:[#6]:1)-[#8]-[#6]1:[#6]:[#6,#7]:[#6]:[#7,#6]:[#6]:1\n", "Row: 568 Displacement of [3H]-MLA from human alpha7 nAChR expressed in human SH-SY5Y cells after 1.5 hrs by liquid scintillation counting\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 19.2, mcs nAts: 6\n", "[#6,#7]1:,-[#6,#7]:,-,=[#6,#7,#8]:,-[#6,#7]:,-[#7,#6,#8]:,-[#6,#7]:,-1\n", "Row: 569 Displacement of [3H]-8-OH-DPAT from human 5-HT1A receptor expressed in HEK293 cells after 1 hr by beta-counting\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 31.6, mcs nAts: 9\n", "[#6,#7]-,#[#6]-[#7,#6]1-,:[#6]-,:[#6]-,:[#7,#6](-,:[#6]-,:[#6]-,:1)-[#6]\n", "Row: 570 Inhibition of human cloned CA9 catalytic domain by CO2 hydration method\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 33.3, mcs nAts: 9\n", "[#6]-[#8,#6,#7,#16]-[#6,#7,#8]-[#6]1:,-[#6,#8]:,-[#6,#7]:,-[#6,#16]:,-[#6,#8]:,-[#6]:,-1\n", "Row: 571 Inhibition of human recombinant PARP1\n", " * postgresql://localhost/chembl_23\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Mean nAts 19.7, mcs nAts: 13\n", "[#7]-[#6](=[#8])-[#6]1:[#6]:[#6]:[#6]:[#6]2:[#6]:1:[#7]:[#6](:[#7]:2)-[#6]\n", "Row: 572 Displacement of [beta-33P]-2MeS-ADP from human P2Y1 receptor transfected in HEK293 cells assessed as residual [beta-33P] bound to plate after 1 hr by scintillation counting analysis\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 28.9, mcs nAts: 23\n", "[#8]=[#6](-[#7]-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1)-[#7]-[#6]1:[#6]:[#6]:[#6]:[#7]:[#6]:1-[#8,#7,#16]-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1\n", "Row: 573 Inhibition of human cytosolic carbonic anhydrase 2 by stopped flow CO2 hydration assay\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 11.2, mcs nAts: 4\n", "[#6,#8]-,=[#6,#7](-,=[#6,#7,#8])-,=[#6,#7,#8]\n", "Row: 574 Displacement of [3H]-MPEP from human mGluR5 expressed in CHO cells after 60 mins\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 26.6, mcs nAts: 21\n", "[#8,#6]=,-[#6](-,=[#6,#8])-[#7]1-[#6]-[#6]-[#6]-[#6]-1-[#6]1:[#6]:[#6,#7]:[#6](:[#7,#6]:[#6]:1)-[#6]1:[#6]:[#6]:[#6,#7]:[#6](:[#6]:1)-[#17,#6,#9]\n", "Row: 575 Binding affinity to TP receptor\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 30.0, mcs nAts: 18\n", "[#6,#7,#8]-,=[#6,#16]-[#6]1-,:[#6]-,:[#6]-,:[#6]-,:[#6](:[#6]-,:1):[#6]:[#6]:[#7]-[#6]-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6,#7]:1\n", "Row: 576 Inhibition of human CK2 alpha\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 28.6, mcs nAts: 19\n", "[#7,#6]#,-[#6]-[#6](:[#6]:[#7]):[#6]1:[#7]:[#6](:[#7]:[#6](:[#7]:1)-[#7]-[#6]1:[#6]:[#6]:[#6]:[#6,#7]:[#6]:1)-[#7]\n", "Row: 577 Displacement of [3H]DPDPE from cloned human delta opioid receptor\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 31.6, mcs nAts: 27\n", "[#6,#8]-,=[#6](=,-[#8,#6])-[#7]1-[#6]-[#6]-[#6](-[#6]-[#6]-1)(-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1)-[#6]1:[#7]:[#6]:[#6]:[#7]:1-[#6]-[#6]1:,-[#6]:,-[#6]:,-[#6]:,-[#6]:,-[#6,#7]:,-1\n", "Row: 578 Binding affinity to DP receptor\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 30.0, mcs nAts: 18\n", "[#6,#7,#8]-,=[#6,#16]-[#6]1-,:[#6]-,:[#6]-,:[#6]-,:[#6](:[#6]-,:1):[#6]:[#6]:[#7]-[#6]-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6,#7]:1\n", "Row: 579 Displacement of [3H]RTX from human TRPV1 receptor expressed in HEK293 cells\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 23.9, mcs nAts: 16\n", "[#6]-[#6,#7]-[#6]1:[#6]:[#6]:[#6](:[#6]:[#6]:1)-[#6,#7]-[#7,#6]-[#6]1:[#6]:[#6,#7]:[#6]:[#7,#6]:[#6]:1\n", "Row: 580 Displacement of [125I]ABMECA from adenosine A3 receptor expressed in CHO cells\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 34.5, mcs nAts: 26\n", "[#6]-[#6]1:[#6]:[#7]:[#7](:[#6]:1)-[#6]1:[#7]:[#6](-[#7]-[#6]):[#6]2:[#6](:[#7]:1):[#7](:[#6]:[#7]:2)-[#6]1-[#8]-[#6](-[#6]-[#8])-[#6](-[#6]-1-[#8])-[#8]\n", "Row: 581 Binding affinity to PA N-terminal domain (Competitive)\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 21.2, mcs nAts: 9\n", "[#6,#7,#8]-,=[#6](=,-[#8,#6,#7])-[#6]1:,-[#6,#7]:,-[#6]:,-[#6,#7]:,-[#6]:,-[#6]:,-1\n", "Row: 582 Displacement of [3H]CT from human 5-HT7 receptor expressed in CHO cells by scintillation spectrometry\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 29.1, mcs nAts: 26\n", "[#8]=[#6]1-[#7]-[#6]2:[#6]:[#6]:[#6]:[#6]:[#6]:2-[#6]-1-[#6]-[#6]-[#6]-[#6]-[#7]1-[#6]-[#6]-,=[#7,#6](-[#6]-[#6]-1)-[#6]1:[#6]:[#6]:[#6]:[#6]:[#7,#6]:1\n", "Row: 583 HEK293DHEK293iHEK293sHEK293pHEK293lHEK293aHEK293cHEK293eHEK293mHEK293eHEK293nHEK293tHEK293 HEK293oHEK293fHEK293 HEK293[HEK2933HEK293HHEK293]HEK293CHEK293PHEK293-HEK2935HEK2935HEK293,HEK2939HEK2934HEK2930HEK293 HEK293fHEK293rHEK293oHEK293mHEK293 HEK293hHEK293uHEK293mHEK293aHEK293nHEK293 HEK293rHEK293eHEK293cHEK293oHEK293mHEK293bHEK293iHEK293nHEK293aHEK293nHEK293tHEK293 HEK293CHEK293BHEK2931HEK293RHEK293 HEK293eHEK293xHEK293pHEK293rHEK293eHEK293sHEK293sHEK293eHEK293dHEK293 HEK293iHEK293nHEK293 HEK293HHEK293EHEK293KHEK293-HEK2932HEK2939HEK2933HEK293 HEK293cHEK293eHEK293lHEK293lHEK293sHEK293 HEK293aHEK293fHEK293tHEK293eHEK293rHEK293 HEK2939HEK2930HEK293 HEK293mHEK293iHEK293nHEK293sHEK293 HEK293bHEK293yHEK293 HEK293lHEK293iHEK293qHEK293uHEK293iHEK293dHEK293 HEK293sHEK293cHEK293iHEK293nHEK293tHEK293iHEK293lHEK293lHEK293aHEK293tHEK293iHEK293oHEK293nHEK293 HEK293cHEK293oHEK293uHEK293nHEK293tHEK293iHEK293nHEK293gHEK293\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 30.1, mcs nAts: 23\n", "[#6]-[#6]1-[#6]-[#6]-[#6](-[#6]-[#6]-1)-[#7]-[#6](=[#8])-[#6]1:[#6]:[#6]2:[#6]:[#6]:[#6]:[#7]:[#6]:2:[#7](:[#6]:1=[#8])-[#6]-[#6]\n", "Row: 584 HEK293DHEK293iHEK293sHEK293pHEK293lHEK293aHEK293cHEK293eHEK293mHEK293eHEK293nHEK293tHEK293 HEK293oHEK293fHEK293 HEK293[HEK2933HEK293HHEK293]HEK293CHEK293PHEK293-HEK2935HEK2935HEK293,HEK2939HEK2934HEK2930HEK293 HEK293fHEK293rHEK293oHEK293mHEK293 HEK293hHEK293uHEK293mHEK293aHEK293nHEK293 HEK293rHEK293eHEK293cHEK293oHEK293mHEK293bHEK293iHEK293nHEK293aHEK293nHEK293tHEK293 HEK293CHEK293BHEK2932HEK293RHEK293 HEK293eHEK293xHEK293pHEK293rHEK293eHEK293sHEK293sHEK293eHEK293dHEK293 HEK293iHEK293nHEK293 HEK293HHEK293EHEK293KHEK293-HEK2932HEK2939HEK2933HEK293 HEK293cHEK293eHEK293lHEK293lHEK293sHEK293 HEK293aHEK293fHEK293tHEK293eHEK293rHEK293 HEK2939HEK2930HEK293 HEK293mHEK293iHEK293nHEK293sHEK293 HEK293bHEK293yHEK293 HEK293lHEK293iHEK293qHEK293uHEK293iHEK293dHEK293 HEK293sHEK293cHEK293iHEK293nHEK293tHEK293iHEK293lHEK293lHEK293aHEK293tHEK293iHEK293oHEK293nHEK293 HEK293cHEK293oHEK293uHEK293nHEK293tHEK293iHEK293nHEK293gHEK293\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 29.8, mcs nAts: 23\n", "[#6]-[#6]1-[#6]-[#6]-[#6](-[#6]-[#6]-1)-[#7]-[#6](=[#8])-[#6]1:[#6]:[#6]2:[#6]:[#6]:[#6]:[#7]:[#6]:2:[#7](:[#6]:1=[#8])-[#6]-[#6]\n", "Row: 585 Displacement of [3H]DAMGO from cloned human mu opioid receptor\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 31.6, mcs nAts: 27\n", "[#6,#8]-,=[#6](=,-[#8,#6])-[#7]1-[#6]-[#6]-[#6](-[#6]-[#6]-1)(-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1)-[#6]1:[#7]:[#6]:[#6]:[#7]:1-[#6]-[#6]1:,-[#6]:,-[#6]:,-[#6]:,-[#6]:,-[#6,#7]:,-1\n", "Row: 586 Binding affinity for melanocortin-4 receptor transfected in HEK 293 cells using [125I]NDP-MSH as radioligand\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 39.9, mcs nAts: 29\n", "[#6,#7,#8]-,=[#6,#16]-[#7]-[#6](-[#6]-[#6])-[#6](=[#8])-[#7]1-[#6]-[#6]-[#7](-[#6]-[#6]-1)-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1-[#6]-[#7]-[#6]-[#6]-[#6]1:[#6]:[#6]:[#6]:[#16]:1\n", "Row: 587 Binding affinity for platelet activating factor receptor using [3H]PAF in rabbit platelet membranes\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 40.6, mcs nAts: 33\n", "[#6,#7,#8]-,=[#6]-[#7]1:[#6]:[#6](-[#6](=[#8,#7])-[#6]2:[#6]:[#6]:[#7]3:[#6]:2-[#6]-[#16]-[#6]-3-[#6]2:,=[#6]:,-[#6,#7]:,-[#6]:,-[#7,#6]:,=[#6]:,-2):[#6]2:[#6]:1:[#6]:[#6](:[#6]:[#6]:2)-[#6]1:[#6]:[#6,#7]:[#6]:[#6,#7]:[#6]:1\n", "Row: 588 Inhibition of human recombinant CA14 by CO2 hydration assay\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 33.2, mcs nAts: 9\n", "[#6]-[#8,#6,#7]-[#6,#7,#8]-[#6]1:,-[#6,#8]:,-[#6,#7,#8]:,-[#6,#16]:,-[#6,#8]:,-[#6]:,-1\n", "Row: 589 Inhibitory activity against HIV-1 protease in tandem assay.\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 39.3, mcs nAts: 27\n", "[#6]-[#6,#8]-[#6]-[#6]1(-[#6]-[#6,#8]-[#6])-[#6,#8]-[#6](=,-[#8])-,=[#6](=,-[#6](-[#8,#6]-1)-,=[#8])-[#6](-[#6])-[#6]1:[#6]:[#6]:[#6]:[#6](:[#6]:1)-[#7]-[#16](=[#8])(=[#8])-[#6]\n", "Row: 590 Inhibition of human factor 9a using CH3SO2-D-CHG-Gly-Arg-AFC.AcOH as substrate by fluorescence assay\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 28.3, mcs nAts: 11\n", "[#6]-[#6]-[#7]-[#6](=[#8])-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1\n", "Row: 591 Displacement of [3H]epibatidine from rat alpha7 nAChR transfected in HEK293 cells by liquid scintillation counting\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 23.2, mcs nAts: 13\n", "[#6,#7,#8]1:,-[#6]:,-[#6]:,-[#6,#7](:,-[#6,#7]:,-[#6,#7]:,-1)-[#6]1:[#6]:[#6]:[#6](:[#7,#6]:[#7,#6]:1)-[#7,#6]\n", "Row: 592 Displacement of [3H]CCPA from human recombinant adenosine A1 receptor expressed in CHO cells\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 30.2, mcs nAts: 22\n", "[#6]-[#8]-[#7]-[#6]1:[#7]:[#6](-[#53,#6]):[#7]:[#6]2:[#6]:1:[#7]:[#6]:[#7]:2-[#6]1-[#8]-[#6](-[#6]-,=[#8,#7])-[#6](-[#6]-1-[#8])-[#8]\n", "Row: 593 Inhibition of human cytosolic carbonic anhydrase 2 preincubated for 15 mins by stopped flow CO2 hydration assay\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 6.6, mcs nAts: 0\n", "\n", "Row: 594 Inhibition of TPPII in rat cerebral membrane\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 18.3, mcs nAts: 7\n", "[#6,#7]-[#6]-[#6](-[#7,#6])-[#6](=,-[#8,#6,#7])-,=[#7,#6,#8]\n", "Row: 595 Displacement of [3H]NECA from human recombinant adenosine A2A receptor expressed in CHO cells\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 30.2, mcs nAts: 22\n", "[#6]-[#8]-[#7]-[#6]1:[#7]:[#6](-[#53,#6]):[#7]:[#6]2:[#6]:1:[#7]:[#6]:[#7]:2-[#6]1-[#8]-[#6](-[#6]-,=[#8,#7])-[#6](-[#6]-1-[#8])-[#8]\n", "Row: 596 Displacement of [3H]PDBu from human recombinant PKCalpha expressed in Escherichia coli BL21-21-Gold (DE3)\n", " * postgresql://localhost/chembl_23\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Mean nAts 29.0, mcs nAts: 15\n", "[#6]-[#6](=[#8])-[#8]-[#6]-[#6]1(-[#6]-[#8])-[#6]-[#6](=[#6]-[#6])-[#6](-[#8]-1)=[#8]\n", "Row: 597 Inhibition of human cytosolic carbonic anhydrase 1 preincubated for 15 mins by stopped flow CO2 hydration assay\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 6.6, mcs nAts: 0\n", "\n", "Row: 598 Displacement of [3H]-(+)-pentazocine from human sigma1 receptor transfected in HEK293 cells after 120 mins by liquid scintillation counting analysis\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 25.8, mcs nAts: 11\n", "[#6]1:[#6]:[#6]:[#6]2:[#6](:[#6]:1)-,:[#7,#6]-,:[#6](-[#6,#7])-,:[#6]-,:[#6]-,:2\n", "Row: 599 Displacement of [3H]U-69593 from cloned human kappa opioid receptor\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 31.6, mcs nAts: 27\n", "[#6,#8]-,=[#6](=,-[#8,#6])-[#7]1-[#6]-[#6]-[#6](-[#6]-[#6]-1)(-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1)-[#6]1:[#7]:[#6]:[#6]:[#7]:1-[#6]-[#6]1:,-[#6]:,-[#6]:,-[#6]:,-[#6]:,-[#6,#7]:,-1\n", "Row: 600 Inhibition of human carbonic anhydrase 12 catalytic domain preincubated for 15 mins by stopped flow CO2 hydration assay\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 37.1, mcs nAts: 13\n", "[#7,#6,#16]-,=[#6,#7]-[#6,#7]-[#6]1:[#6]:[#6]:[#6](:[#6]:[#6]:1)-[#16](-[#7])(=[#8])=[#8]\n", "Row: 601 Inhibition of human cytosolic carbonic anhydrase-2 preincubated for 15 mins by stopped flow CO2 hydration assay\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 6.5, mcs nAts: 0\n", "\n", "Row: 602 Inhibition of human full length cloned transmembrane carbonic anhydrase 14 preincubated for 15 mins by CO2 hydration stopped-flow assay\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 37.1, mcs nAts: 13\n", "[#7,#6,#16]-,=[#6,#7]-[#6,#7]-[#6]1:[#6]:[#6]:[#6](:[#6]:[#6]:1)-[#16](-[#7])(=[#8])=[#8]\n", "Row: 603 Displacement of [3H]5-hydroxytryptamine from human cloned 5HT1B receptor expressed in CHOK1 cells by liquid scintillation counting\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 44.6, mcs nAts: 13\n", "[#7,#6,#8]-,=[#16,#6]-[#6,#7,#8]-[#6]1:[#6]:[#6]:[#6]2:[#6](:[#6]:1):[#6](:[#6]:[#7]:2)-[#6]\n", "Row: 604 Inhibition of Bcl-XL (unknown origin) using 5-FAM-Bid-BH3 as substrate preincubated for 30 mins before substrate addition measured after 20 mins by fluorescence polarization technique\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 44.4, mcs nAts: 35\n", "[#6]-[#6]-[#6](-[#6](=[#8])-[#7]-[#16](=[#8])(=[#8])-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1)-[#7]1-[#6](=[#8])-[#6](=[#6]-[#6]2:[#6]:[#6]:[#6](:[#6]:[#6]:2)-[#6]2:[#6]:[#6]:[#6]:[#6]:[#6]:2)-[#16]-[#6]-1=[#16]\n", "Row: 605 Inhibitory activity against bovine pancreatic CEase in presence of pNPB chromogenic substrate by spectrophotometry\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 22.7, mcs nAts: 11\n", "[#6]-[#7,#6]-[#6,#7]1:,-[#7,#6]:,-[#6]2:[#16]:[#6]:[#6]:[#6]:2:,-[#6]:,-[#8,#6,#16]:,-1\n", "Row: 606 Displacement of [125]PYY from human chimeric NPY Y5 receptor expressed in CHOK1 cells\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 28.6, mcs nAts: 26\n", "[#6]-[#6,#16](=[#8])-[#7]1-[#6]-[#6]-[#6](-[#6]-[#6]-1)-[#7](-[#6])-[#6](=[#8])-[#7]-[#6]1-,:[#6]-,:[#6]-,:[#6,#7](-,:[#6]-,:[#6]-,:1)-[#6]1:[#6]:[#6]:[#6]:[#6,#7]:[#6]:1\n", "Row: 607 Displacement of [3H]-N-alpha-methylhistamine from human recombinant histamine H3 receptor expressed in HEK cells after 30 mins by scintillation counting\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 24.5, mcs nAts: 18\n", "[#6,#7,#8,#9,#17]-[#7,#6]1-,:[#6]-,:[#6]-,:[#7,#6](-,:[#6]-,:[#6]-,:1)-[#6]1:[#7]:[#7]:[#6](:[#16]:1)-[#6,#7]1:,-[#6,#7]:,-[#6]:,-[#6,#7]:,-[#6]:,-[#6,#7]:,-1\n", "Row: 608 Displacement of [3H]LSD from human cloned 5HT6 receptor expressed in HEK293 cells\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 23.3, mcs nAts: 8\n", "[#6]-[#6,#7,#8,#16]-[#6]1:[#6]:[#6]:[#6,#7]:[#6]:[#6,#7]:1\n", "Row: 609 Inhibition of human recombinant factor 9a by amidolytic assay\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 26.0, mcs nAts: 13\n", "[#7]=[#6](-[#7])-[#6](:[#6,#16]):[#16,#6]:[#6]1:[#6]:[#6]:[#6]:[#6](:[#6]:1)-[#53,#6,#8]\n", "Row: 610 Inhibition of [3H]DTBZ binding to VMAT2 in rat synaptic vesicle membranes\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 29.5, mcs nAts: 22\n", "[#6]1:[#6]:[#6]:[#6](:[#6]:[#6]:1)-[#6]-[#6]-[#6]1-[#6]-[#6]-[#6]-[#6](-[#7]-1)-[#6]-[#6]-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1\n", "Row: 611 Displacement of europium labeled NDP-alpha-MSH from human MC4R expressed in HEK293 cells\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 46.4, mcs nAts: 15\n", "[#7,#8]-,=[#6](=,-[#8,#7])-[#6](-[#6]-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1)-[#7]-[#6](=,-[#8,#6])-,=[#6,#8]\n", "Row: 612 Displacement of europium labeled NDP-alpha-MSH from human MC3R expressed in HEK293 cells\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 46.4, mcs nAts: 15\n", "[#7,#8]-,=[#6](=,-[#8,#7])-[#6](-[#6]-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1)-[#7]-[#6](=,-[#8,#6])-,=[#6,#8]\n", "Row: 613 Displacement of [3H]DPCPX from human adenosine A1 receptor expressed in CHO cells by liquid scintillation counting\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 24.5, mcs nAts: 12\n", "[#6,#8]-,=[#6](=,-[#8,#6])-[#7]-[#6]1:[#6,#7]:[#6](-[#6]):[#7,#6]:[#6](:[#7]:1)-[#6]\n", "Row: 614 Inhibition of human neutrophil elastase\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 41.0, mcs nAts: 15\n", "[#6,#7]1-,:[#6,#7]-,:[#6,#8]-,:[#6,#7,#8]-,:[#7,#6]-,:1-[#6](=[#8])-[#6](-[#7]-[#6](=,-[#8,#6])-,=[#8,#6])-[#6](-[#6])-[#6]\n", "Row: 615 Binding affinity for muscarinic acetylcholine receptor M3 by measuring displacement of [3H]QNB from guinea pig parotid gland\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 16.3, mcs nAts: 9\n", "[#6,#8]-[#6]1-,=[#6]-[#7]2-[#6]-[#6]-[#6]-1-[#6]-[#6]-2\n", "Row: 616 Inhibition of Methanosarcina thermophila recombinant gamma-CA by CO2 hydration assay\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 6.5, mcs nAts: 0\n", "\n", "Row: 617 Inhibition of human recombinant CA2 by CO2 hydration assay\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 6.5, mcs nAts: 0\n", "\n", "Row: 618 Displacement of [3H]NECA from human recombinant adenosine A3 receptor expressed in CHO cells\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 30.2, mcs nAts: 22\n", "[#6]-[#8]-[#7]-[#6]1:[#7]:[#6](-[#53,#6]):[#7]:[#6]2:[#6]:1:[#7]:[#6]:[#7]:2-[#6]1-[#8]-[#6](-[#6]-,=[#8,#7])-[#6](-[#6]-1-[#8])-[#8]\n", "Row: 619 Displacement of europium labeled NDP-alpha-MSH from human MC1R expressed in HEK293 cells\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 46.4, mcs nAts: 15\n", "[#7,#8]-,=[#6](=,-[#8,#7])-[#6](-[#6]-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1)-[#7]-[#6](=,-[#8,#6])-,=[#6,#8]\n", "Row: 620 Binding affinity to human MCHR1\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 36.7, mcs nAts: 32\n", "[#6,#8,#17]-[#6]1:[#6]:[#6]:[#6](:[#6]:[#6]:1)-[#6]1:[#6]:[#6]2:[#7]:[#6]:[#7](:[#6](:[#6]:2:[#16]:1)=[#8])-[#6]1-[#6]-[#6]-[#7](-[#6]-1)-[#6](=[#8])-[#7](-[#6])-[#6]1-[#6]-[#6]-[#7](-[#6]-1)-[#6]\n", "Row: 621 Inhibition of human recombinant CA12 by CO2 hydration assay\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 33.2, mcs nAts: 9\n", "[#7,#6,#8]-[#16,#6,#7,#8]-[#6]1:,-[#6,#8]:,-[#6,#7]:,-[#6,#16](:,-[#6,#8]:,-[#6]:,-1)-,=[#17,#6,#8,#16]\n", "Row: 622 Inhibition of human carbonic anhydrase 2 by stopped-flow CO2 hydrase assay\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 6.4, mcs nAts: 0\n", "\n", "Row: 623 Displacement of [3H]Epibatidine from human alpha7 nACHR expressed in CHO cell membranes after 2 hrs by liquid scintillation counting analysis\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 13.8, mcs nAts: 4\n", "[#6,#7,#8]-,=[#6](=,-[#8,#6])-[#7,#6]\n", "Row: 624 Inhibition of [125I]o-CRF binding to CHO cells expressing human CRF1 receptor\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 29.6, mcs nAts: 22\n", "[#6]-[#6]-[#7]-[#6]1:[#6]:[#6](-[#6]):[#7]:[#6]2:[#7]:1:[#7]:[#6](:[#6]:2-[#6]1:[#6,#7]:[#7,#6]:[#6](:[#6,#7]:[#6]:1-[#6,#8,#17])-[#6,#7,#8,#17])-[#6]\n", "Row: 625 Binding affinity to human histamine H3 receptor\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 27.8, mcs nAts: 11\n", "[#6,#7]-[#7,#6,#8]-,#[#6]-[#6]-,#[#6,#8]-[#6,#7]1:,-[#6]:,-[#6]:,-[#6,#7,#8,#16]:,-[#6]:,-[#6,#7]:,-1\n", "Row: 626 Displacement of [125ITyr0-Glu1,Nle17]-PS-Svg in human CRF-R1 expressed in COS-M6 cells after 90 mins by gamma counting assay\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 278.2, mcs nAts: 60\n", "[#6,#7]-[#6]-[#6]-[#6]-[#6](-[#7]-[#6](=[#8])-[#6](-[#6]-[#6](-[#6])-[#6])-[#7]-[#6](=[#8])-[#6](-[#6]-[#6]-[#6])-[#7]-[#6](=[#8])-[#6](-[#6]-[#6])-[#7]-[#6](=[#8])-[#6](-[#6]-[#6])-[#7]-[#6](=,-[#8,#6])-,=[#6,#8])-[#6](=[#8])-[#7]-[#6](-[#6]-[#6]-[#6](=[#8])-[#8])-[#6](=[#8])-[#7]-[#6](-[#6])-[#6](=[#8])-[#7]-[#6](-[#6]=,-[#8,#6,#7])-[#6](-,=[#6,#8])-[#6,#7]-[#6]\n", "Row: 627 Inhibition of human F9a using CH3SO2-D-CHG-Gly-Arg-AFC.AcOH as substrate by fluorescence assay\n", " * postgresql://localhost/chembl_23\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Mean nAts 37.9, mcs nAts: 30\n", "[#6]-[#6]1:[#6]:[#6]:[#6]2:[#7,#6](:[#6]:1):[#7,#6]:[#6]1:[#6,#7]:2-[#6]-[#6](-[#6]-[#6]-1)(-[#6])-[#7]-[#6](=[#8])-[#6]1:[#6,#7]:[#6]:[#6](:[#6]:[#6]:1-[#17])-[#7]1:[#6]:[#7]:[#6,#7]:[#7,#6]:1\n", "Row: 628 Inhibition of human carbonic anhydrase-2 by CO2 hydration reaction based colorimetric stopped-flow method\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 6.6, mcs nAts: 0\n", "\n", "Row: 629 Inhibition of human cloned CA1 by CO2 hydration method\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 33.3, mcs nAts: 9\n", "[#6]-[#8,#6,#7,#16]-[#6,#7,#8]-[#6]1:,-[#6,#8]:,-[#6,#7]:,-[#6,#16]:,-[#6,#8]:,-[#6]:,-1\n", "Row: 630 Inhibition of human cloned CA2 by CO2 hydration method\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 33.3, mcs nAts: 9\n", "[#6]-[#8,#6,#7,#16]-[#6,#7,#8]-[#6]1:,-[#6,#8]:,-[#6,#7]:,-[#6,#16]:,-[#6,#8]:,-[#6]:,-1\n", "Row: 631 Displacement of [3H]5-HT from human recombinant 5-HT1B receptor expressed in CHO cells\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 32.5, mcs nAts: 26\n", "[#6]-[#6]1:[#6]:[#6]:[#6]2:[#6](:[#7]:1):[#6]:[#6]:[#6]:[#6]:2-[#7]1-[#6]-[#6]-[#7](-[#6]-[#6]-1)-[#6]-[#6]-[#6]1:[#6]:[#6]:[#6]:[#6](:[#6]:1)-[#7]\n", "Row: 632 Displacement of (+)-[3H]pentazocine from sigma-1 receptor in guinea pig brain membrane homogenate after 90 mins by liquid scintillation counting analysis\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 35.5, mcs nAts: 19\n", "[#6]-[#8]-[#6]1:[#6]:[#6]2:[#6](:[#6]:[#6]:1-[#8]-[#6])-[#6]-[#7](-[#6]-[#6]-2)-[#6]-[#6]-[#6,#7]-[#6]-,=[#7,#6,#8]\n", "Row: 633 Displacement of [3H]CP-55940 from human CB2 receptor\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 22.2, mcs nAts: 16\n", "[#6,#7,#8,#16]-,=[#6](-,=[#6,#8,#16])-[#6,#7]1:,-[#6]:,-[#6]:,-[#6]:,-[#6,#16]:,-[#6]:,-1-,=[#7]=,-[#6]1-,:[#7,#6,#16]-,:[#6]-,:[#6]-,:[#6]-,:[#16,#6,#7]-,:1\n", "Row: 634 Displacement of [3H]-5-CT from human 5-HT7 receptor expressed in HEK293 cells after 1 hr by liquid scintillation counting\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 28.5, mcs nAts: 15\n", "[#8,#6,#7,#16]=,-[#16,#6,#7]-[#7,#6]-[#6,#7]-[#6,#16]-[#7,#6]1-,:[#6]-,:[#6,#7]-,:[#6]:,-[#6](-,:[#6]-,:1):,-[#6,#7]:,-[#6]:,-[#6]:,-[#6,#7]\n", "Row: 635 Displacement of [3H]-(+)pentazocine from guinea pig brain sigma 1-type opioid receptor after 120 mins by scintillation counting analysis\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 24.6, mcs nAts: 13\n", "[#6]1-,:[#6]-,:[#6]-,:[#7,#6](-,:[#6]-,:[#6]-,:1)-[#6]-[#6,#7]1:,-[#6]:,-[#6]:,-[#6]:,-[#6]:,-[#6]:,-1\n", "Row: 636 Displacement of [3H]-N-methyl-scopolamine from human muscarinic M3 receptor after 6 hrs by cell based assay\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 34.1, mcs nAts: 22\n", "[#8]=[#6](-[#7]-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1)-[#8,#7]-[#6]1-[#6]-[#6,#7]-[#7,#6]-[#6]-[#6]-1\n", "Row: 637 Inhibition of human ERG\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 36.1, mcs nAts: 22\n", "[#6]-[#7]1:[#6]:[#6]:[#6](:[#6]:[#6]:1=,-[#8,#6])-[#6]1-[#6]-[#6]-[#7]-[#6]-[#6]-1-[#6](=[#8])-[#7](-[#6]-[#6])-[#6]1-[#6]-[#6]-1\n", "Row: 638 Displacement of [3H]MSX-2 from adenosine A2A receptor in rat brain striatal membrane\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 23.9, mcs nAts: 13\n", "[#6]-[#7]1:[#6](=[#8]):[#6]2:[#6](:[#7](:[#6]:1=[#8])-[#6]):[#7]:[#6]:[#7]:2\n", "Row: 639 Displacement of [3H]CCPA from adenosine A1 receptor in rat brain cortical membrane\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 23.9, mcs nAts: 13\n", "[#6]-[#7]1:[#6](=[#8]):[#6]2:[#6](:[#7](:[#6]:1=[#8])-[#6]):[#7]:[#6]:[#7]:2\n", "Row: 640 Displacement of [3H]5-HT from human recombinant 5-HT1D receptor expressed in CHO cells\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 32.5, mcs nAts: 26\n", "[#6]-[#6]1:[#6]:[#6]:[#6]2:[#6](:[#7]:1):[#6]:[#6]:[#6]:[#6]:2-[#7]1-[#6]-[#6]-[#7](-[#6]-[#6]-1)-[#6]-[#6]-[#6]1:[#6]:[#6]:[#6]:[#6](:[#6]:1)-[#7]\n", "Row: 641 Displacement of [3H]WAY100635 from human recombinant 5-HT1A receptor expressed in CHO cells\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 32.5, mcs nAts: 26\n", "[#6]-[#6]1:[#6]:[#6]:[#6]2:[#6](:[#7]:1):[#6]:[#6]:[#6]:[#6]:2-[#7]1-[#6]-[#6]-[#7](-[#6]-[#6]-1)-[#6]-[#6]-[#6]1:[#6]:[#6]:[#6]:[#6](:[#6]:1)-[#7]\n", "Row: 642 Displacement of [3H]SNAP-7941 from human MCHR1 expressed in HEK cells\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 39.8, mcs nAts: 30\n", "[#6]-[#6]1:[#6]:[#6]:[#6](:[#6]:[#6]:1)-[#6]-[#7]1-[#6]-[#6]-[#6](-[#6]-[#6]-1)-[#7,#6]-[#6]-[#7]-[#6]-[#6]1:[#6]:[#6]:[#6](:[#6]:[#6]:1)-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1\n", "Row: 643 Displacement of [3H]CP55940 from human CB1 receptor expressed in CHO-K1 cells\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 38.3, mcs nAts: 24\n", "[#6]-[#6]1:[#6](-[#6](=,-[#8,#7])-,=[#7,#8]):[#7]:[#7](:[#6]:1-[#6]1:[#6]:[#6]:[#6](:[#6]:[#6]:1)-[#17])-[#6]1:[#6]:[#6]:[#6](:[#6]:[#6]:1-[#17])-[#17]\n", "Row: 644 Inhibitory constant towards Human melanin-concentrating hormone receptor\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 34.9, mcs nAts: 22\n", "[#7]-[#6]-[#6]-[#6](-[#6]-[#7]-[#6](=[#8])-[#7]-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1)-[#6]1:[#6]:[#6]:[#6](:[#6]:[#6]:1)-[#6,#17]\n", "Row: 645 Displacement of [3H]CGP12177 from human beta-1 adrenoceptor\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 25.6, mcs nAts: 16\n", "[#6]-[#7]-[#6]-[#6](-[#8])-[#6]1:[#6]:[#6]:[#6](:[#6]2:[#6]:1:[#16]:[#6](:[#7]:2)-,=[#8])-[#8]\n", "Row: 646 Displacement of [3H]CGP12177 from human beta2 adrenoceptor\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 25.6, mcs nAts: 16\n", "[#6]-[#7]-[#6]-[#6](-[#8])-[#6]1:[#6]:[#6]:[#6](:[#6]2:[#6]:1:[#16]:[#6](:[#7]:2)-,=[#8])-[#8]\n", "Row: 647 Binding affinity to human FKBP12 FK1 domain incubated for 30 mins using fluorescein-conjugated 2-(5-((2-(3-((R)-3-(3,4-dimethoxyphenyl)-1-((S)-1-(3,3-dimethyl-2-oxopentanoyl)piperidine-2-carbonyloxy)propyl)phenoxy)acetamido)methyl)-6-hydroxy-3-oxo-3H-xanthen-9-yl)benzoic acid by competitive fluorescence polarization assay\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 38.1, mcs nAts: 33\n", "[#6]-[#8]-[#6]1:[#6]:[#6](-[#6](-[#6](=[#8])-[#7]2-[#6]-[#6]-[#6]-[#6]-[#6]-2-[#6](=[#8])-[#7]-[#6]-[#6]-,=[#7,#6,#8])-[#6]2-[#6]-[#6]-[#6]-[#6]-[#6]-2):[#6]:[#6](:[#6]:1-[#8]-[#6])-[#8]-[#6]\n", "Row: 648 Inhibition of bovine brain MAOB using kinuramine as substrate preincubated for 30 mins prior to substrate addition measured after 30 mins by fluorometric assay\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 26.6, mcs nAts: 15\n", "[#6]-[#6]1:[#6]:[#6](=[#8]):[#8]:[#6]2:[#6]:1:[#6]:[#6]:[#6](:[#6]:2)-[#8]-[#6]-[#6]\n", "Row: 649 BindingDB_Patents: Florescence Polarization Assay. The activity of the compounds in accordance with the present invention as PDE10 inhibitors may be readily determined without undue experimentation using a fluorescence polarization (FP) methodology well known in the art (Huang, W., et al., J. Biomol Screen, 2002, 7: 215). In particular, the compounds of the Examples had activity in reference assays by exhibiting their ability to inhibit the hydrolysis of the phosphate ester bond of a cyclic nucleotide. Any compound exhibiting a Ki (inhibitory constant) below 1 uM would be considered a PDE10 inhibitor as defined herein.In a typical experiment the PDE10 inhibitory activity of the compounds of the present invention was determined in accordance with the following experimental method. PDE10A2 was amplified from human fetal brain cDNA (Clontech, Mountain View, Calif.) using a forward primer corresponding to nucleotides 56-77 of human PDE10A2 (Accession No. AF127480, Genbank Identifier 4894716), containing a Kozak consensus sequence.\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 35.7, mcs nAts: 20\n", "[#6]1:,-[#6]:,-[#6]:,-[#6](:,-[#6]:,-[#6]:,-1)-[#7]1:[#6](-[#6]-[#6]-[#7,#6]):[#7]:[#6]2:[#6](:[#6]:1=[#8]):[#6]:[#6]:[#6]:[#6,#7]:2\n", "Row: 650 Inhibition of bovine brain MAOA using kinuramine as substrate preincubated for 30 mins prior to substrate addition measured after 30 mins by fluorometric assay\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 26.6, mcs nAts: 15\n", "[#6]-[#6]1:[#6]:[#6](=[#8]):[#8]:[#6]2:[#6]:1:[#6]:[#6]:[#6](:[#6]:2)-[#8]-[#6]-[#6]\n", "Row: 651 Inhibition of human ASBT expressed in MDCK cells assessed as inhibition of [3H]taurocholic acid uptake after 10 mins by liquid scintillation counting\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 46.1, mcs nAts: 43\n", "[#6]-[#6](-[#6]-[#6]-[#6](=[#8])-[#7]-[#6](-[#6]-[#6]-[#6](=[#8])-[#7]-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1)-[#6](=[#8])-[#8])-[#6]1-[#6]-[#6]-[#6]2-[#6]-1(-[#6]-[#6]-[#6]1-[#6]-2-[#6](-[#8])-[#6]-[#6]2-[#6]-1(-[#6]-[#6]-[#6](-[#6]-2)-[#8])-[#6])-[#6]\n", "Row: 652 BindingDB_Patents: Competitive Binding Assay. hNK3 receptor binding experiment were performed using [3H]SR142801 (Catalog No. TRK1035, specific activity: 74.0 Ci/mmol, Amersham, GE Healthcare UK limited, Buckinghamshire, UK) and membrane isolated from HEK293 cells transiently expressing recombinant human NK3 receptor.\n", " * postgresql://localhost/chembl_23\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Mean nAts 39.1, mcs nAts: 33\n", "[#6]-[#7](-[#6](=[#8])-[#8]-[#6]1:[#6]:[#6]:[#6](:[#6]:[#6]:1)-[#9])-[#6]1-[#6]-[#7](-[#6](=[#8])-[#6]2:,-[#6]:,-[#6]:,-[#6,#7](:,-[#6,#7]:,-[#6]:,-2)-[#6,#7])-[#6]-[#6]-1-[#6]1:[#6]:[#6]:[#6](:[#6]:[#6]:1)-[#17]\n", "Row: 653 Inhibition of human NET\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 19.0, mcs nAts: 17\n", "[#6]-[#7]1-[#6]-[#6]2:[#6]:[#6]:[#6]:[#6]:[#6]:2-[#6](-[#6]-1)-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1\n", "Row: 654 Displacement of [3H]histamine from human recombinant histamine H4 receptor\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 29.6, mcs nAts: 21\n", "[#6]1:[#6]:[#6](-[#8]-[#6]-[#6]-[#6]-[#7,#6]):[#6]:[#6]:[#6]:1-[#6]1:[#7]:[#6]2:[#6]:[#6](-[#9,#6]):[#6]:[#6]:[#6]:2:[#7]:1\n", "Row: 655 BindingDB_Patents: Scintillation Proximity Assay. The CCR3 receptor binding assay was performed in a Scintillation Proximity Assay (SPA) design with the radioligand recombinant human 125Iodine-eotaxin-1. Cell membranes of hCCR3 C1 cells were again homogenized by passing through a single use needle (Terumo, 23Gx1'') and diluted in SPA incubation buffer in suitable concentrations (0.5-10 ug protein/well) in 96 well microtiter plates (1450-514, Perkin Elmer). The SPA assay was set up in the SPA incubation buffer with a final volume of 200 ul and final concentration of 25 mM HEPES, 25 mM MgCl2 6H2O, 1 mM CaCl2 2H2O and 0.1% bovine serum albumin. The SPA assay mixture contained 60 ul of the membrane suspension, 80 ul of Wheat Germ Agglutinin coated PVT beads (organic scintillator, GE Healthcare, RPNQ-0001) 0.2 mg/well), 40 ul of recombinant human 125Jodine-eotaxin-1 (Biotrend), diluted in SPA buffer to a final concentration of 30.000 dpm per well.\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 36.3, mcs nAts: 32\n", "[#6,#7,#8]-,=,#[#8,#6]-[#6]1:[#6]:[#6]:[#7,#6]:[#6](:[#6,#7]:1)-[#7]-[#6](=[#8])-[#6]1-[#6]-[#6]-[#6](-[#7]-1-[#6]1-[#6]-[#6]-[#7](-[#6]-[#6]-1)-[#6]-[#6]1:[#6]:[#6]:[#6](:[#6](:[#6]:1)-[#6,#17])-[#17,#9,#35])=[#8]\n", "Row: 656 Binding affinity to menin (unknown origin) after 60 mins by fluorescence polarization assay\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 67.2, mcs nAts: 8\n", "[#6,#7]-[#6]-[#6]1:,-[#6]:,-[#6]:,-[#6]:,-[#6]:,-[#6]:,-1\n", "Row: 657 Displacement of [3H]-PK11195 from peripheral benzodiazepine receptor of rat ovary\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 29.5, mcs nAts: 20\n", "[#7,#8]-,=[#6](=,-[#8,#7])-[#6]-[#6]1:[#6](-[#6]2:[#6]:[#6]:[#6]:[#6]:[#6]:2):[#7]:[#6]2:[#7]:1:[#6]:[#6](:[#6]:[#6]:2)-[#17]\n", "Row: 658 Inhibition of HIV-1 protease.\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 44.7, mcs nAts: 6\n", "[#6]1:,-[#6]:,-[#6]:,-[#6]:,-[#6]:,-[#6,#7]:,-1\n", "Row: 659 Mean binding affinity for human H3 receptor\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 22.0, mcs nAts: 10\n", "[#7,#6]#,-[#6,#8]-[#6,#7]1:,-[#6]:,-[#6]:,-[#6,#7](:,-[#6]:,-[#6]:,-1)-[#8,#6]-,=,#[#6,#7,#8]\n", "Row: 660 Displacement of [3H]ketanserin from human 5-HT2A receptor expressed in HEK293 cell membranes by radioligand competition binding assay\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 32.7, mcs nAts: 17\n", "[#8,#17]-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1-[#7]1-[#6]-[#6]-[#7](-[#6]-[#6]-1)-[#6]-[#6]-[#7,#6]-[#6,#7]\n", "Row: 661 Displacement of [3H]spiperone from human dopamine D2L receptor expressed in CHO cell membranes by radioligand competition binding assay\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 32.7, mcs nAts: 17\n", "[#8,#17]-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1-[#7]1-[#6]-[#6]-[#7](-[#6]-[#6]-1)-[#6]-[#6]-[#7,#6]-[#6,#7]\n", "Row: 662 Inhibition of human carbonic anhydrase 2 preincubated for 15 mins by stopped flow CO2 hydration assay\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 6.2, mcs nAts: 0\n", "\n", "Row: 663 Inhibition of human carbonic anhydrase 1 preincubated for 15 mins by stopped flow CO2 hydration assay\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 6.2, mcs nAts: 0\n", "\n", "Row: 664 Inhibition of human recombinant mTOR expressed in insect cells using 4E-BP1 substrate after 30 mins by fluorescence resonance energy transfer assay\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 31.8, mcs nAts: 26\n", "[#6]-[#7]-[#6](=[#8])-[#7]-[#6]1:[#6]:[#6]:[#6](:[#6]:[#6]:1)-[#6]1:[#7]:[#6]2:[#6](:[#6](:[#7]:1)-[#7]1-[#6]-[#6]-[#8]-[#6]-[#6]-1)-,:[#6,#16]-,:[#8,#6]-,:[#6]-,:2\n", "Row: 665 Displacement of [3H]8-OH-DPAT from 5HT1A receptor in rat hippocampal membrane by radioligand binding assay\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 34.5, mcs nAts: 18\n", "[#8]=[#6]1:[#6]2:[#6]:[#7]:[#6]3:[#6](:[#6]:2:[#7]:[#6]:[#7]:1-[#6]-[#6]-[#7,#6]):[#6]:[#6]:[#6]:[#6]:3\n", "Row: 666 Inhibition of human recombinant CA1\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 15.4, mcs nAts: 5\n", "[#6,#7,#8]-,=[#16,#6](-,=[#7,#8,#9])(=,-[#8,#9])=,-[#8,#6,#7,#9]\n", "Row: 667 Inhibition of human recombinant CA2\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 15.4, mcs nAts: 5\n", "[#6,#7,#8]-,=[#16,#6](-,=[#7,#8,#9])(=,-[#8,#9])=,-[#8,#6,#7,#9]\n", "Row: 668 Inhibition of Helicobacter pylori recombinant CA\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 15.4, mcs nAts: 5\n", "[#6,#7,#8]-,=[#16,#6](-,=[#7,#8,#9])(=,-[#8,#9])=,-[#8,#6,#7,#9]\n", "Row: 669 Displacement of [3H]SMT from human histamine H3 receptor\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 26.0, mcs nAts: 16\n", "[#6]-[#6]-[#8]-[#6]1:[#6]:[#6]:[#6](:[#6]:[#6]:1-[#35])-[#6]-[#6]-[#7]-[#6](=,-[#8,#6])-,=[#6,#8]\n", "Row: 670 Displacement of [3H]mesulergine form human recombinant 5HT2C receptor expressed in mouse Swiss 3T3 cells by scintillation proximity assay\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 23.5, mcs nAts: 14\n", "[#7,#6,#8]-,=[#16,#7](=,-[#8,#16])-[#6]1:[#6]:[#6]:[#6]2:[#6](:[#6]:1)-[#6]-[#6]-[#7]-[#6]-[#6]-2\n", "Row: 671 Displacement of [20-3H]PDBU from recombinant PKCalpha in presence of phosphatidylserine\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 28.1, mcs nAts: 15\n", "[#6,#8]-,=[#6](=,-[#8,#6])-[#8]-[#6]-[#6]1(-[#6]-[#8])-[#6]-[#6](=[#6]-[#6])-[#6](-[#8]-1)=[#8]\n", "Row: 672 Displacement of [3H]LSD from human recombinant 5-HT6 receptor expressed in HEK-293 cells incubated for 60 mins by scintillation counting method\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 35.9, mcs nAts: 16\n", "[#6]1:[#6]:[#7](-[#6,#16]-[#6]2:[#6]:[#6]:[#6]:[#6]:[#6]:2):[#6]2:[#6]:1:[#6]:[#6]:[#6]:[#6]:2\n", "Row: 673 Displacement of [3H]diprenorphine from human kappa opioid receptor expressed in CHO cells after 1 hr by liquid scintillation counting\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 28.7, mcs nAts: 18\n", "[#7]-[#6]-[#6]1:[#6]:[#6]:[#6](:[#6,#7]:[#6,#7]:1)-[#6]1:[#6,#7]:[#6,#7]:[#6,#7]:[#6,#7]:[#6]:1-[#16](=,-[#8,#7])(=[#8])-,=[#7,#8]\n", "Row: 674 Displacement of [3H]diprenorphine from human mu opioid receptor expressed in CHO cells after 1 hr by liquid scintillation counting\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 28.7, mcs nAts: 18\n", "[#7]-[#6]-[#6]1:[#6]:[#6]:[#6](:[#6,#7]:[#6,#7]:1)-[#6]1:[#6,#7]:[#6,#7]:[#6,#7]:[#6,#7]:[#6]:1-[#16](=,-[#8,#7])(=[#8])-,=[#7,#8]\n", "Row: 675 Inhibition of human carbonic anhydrase 1 preincubated for 15 mins by stopped-flow CO2 hydrase assay\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 5.2, mcs nAts: 0\n", "\n", "Row: 676 Displacement of [125I]RTI55 from human NET expressed in HEK cells\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 17.6, mcs nAts: 8\n", "[#7,#6]-[#6]-[#6]1-[#6]-[#6]-[#6](-[#8]-1)-[#6]\n", "Row: 677 Displacement of [125I]RTI55 from human SERT expressed in HEK cells\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 17.6, mcs nAts: 8\n", "[#7,#6]-[#6]-[#6]1-[#6]-[#6]-[#6](-[#8]-1)-[#6]\n", "Row: 678 Displacement of [125I]RTI55 from human DAT expressed in HEK cells\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 17.6, mcs nAts: 8\n", "[#7,#6]-[#6]-[#6]1-[#6]-[#6]-[#6](-[#8]-1)-[#6]\n", "Row: 679 Binding affinity against adenosine A1 receptor from guinea pig forebrain membranes, using N6-[3H]cyclohexyladenosine as radioligand.\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 26.7, mcs nAts: 14\n", "[#6]-[#7](:[#6]=[#8]):[#6](:[#7](:[#6]1:[#6,#7]:[#7,#6](:[#6,#7]:[#7,#6]:1)-[#6])-[#6])=[#8]\n", "Row: 680 Displacement of [3H]PSB-603 from human recombinant adenosine A2B receptor expressed in CHO cells\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 34.1, mcs nAts: 13\n", "[#6]-[#7](:[#6]=[#8]):[#6](:[#7]:[#6]1:[#6,#7]:[#7,#6](:[#6,#7]:[#7,#6]:1)-[#6])=[#8]\n", "Row: 681 Displacement of [3H]DPCPX from human adenosine A1 receptor expressed in HEK293 cells\n", " * postgresql://localhost/chembl_23\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Mean nAts 25.0, mcs nAts: 17\n", "[#7,#6]-[#6]1:[#6,#7]:[#6](-[#7]-[#6](-,=[#6,#8])=,-[#8,#6,#7]):[#7,#6]:[#6](:[#7]:1)-[#7]1:,-[#7,#6]:,-[#6]:,-[#6]:,-[#6]:,-1-[#6]\n", "Row: 682 Inhibition of PARP1 using [3H]NAD+ after 1 hr by scintillation counting\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 28.9, mcs nAts: 20\n", "[#7,#6]-[#6]1:[#6]:[#6](-[#6]-[#6]2:[#7]:[#7]:[#6](:[#6]3:[#6]:2-[#7]-[#6]-[#6]-[#6]-3)=[#8]):[#6]:[#6]:[#6]:1-[#9]\n", "Row: 683 Displacement of [125J]-eotaxin-1 from rat CCR3 transfected in CHO cells\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 33.8, mcs nAts: 28\n", "[#6,#8]-[#6]-[#6]1:[#7]:[#6]2:[#6]:[#6]:[#6]:[#6]:[#6]:2:[#6]:1-[#6]1-[#6]-[#6]-[#7](-[#6]-[#6]-1)-[#6]-[#6]-[#6]-[#16,#6]-[#6]1:[#6]:[#6]:[#6](:[#6]:[#6]:1)-[#9,#6,#8,#17]\n", "Row: 684 Displacement of [125J]-eotaxin-1 from mouse CCR3 transfected in CHO cells\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 33.8, mcs nAts: 28\n", "[#6,#8]-[#6]-[#6]1:[#7]:[#6]2:[#6]:[#6]:[#6]:[#6]:[#6]:2:[#6]:1-[#6]1-[#6]-[#6]-[#7](-[#6]-[#6]-1)-[#6]-[#6]-[#6]-[#16,#6]-[#6]1:[#6]:[#6]:[#6](:[#6]:[#6]:1)-[#9,#6,#8,#17]\n", "Row: 685 Inhibition of human carbonic anhydrase 2 preincubated for 15 mins by stopped-flow CO2 hydrase assay\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 5.2, mcs nAts: 0\n", "\n", "Row: 686 Displacement of [3H]CGS-21680 from human adenosine A2A receptor expressed in CHO cells\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 30.9, mcs nAts: 22\n", "[#6]-[#6]-,#[#8,#6]-[#6]1:[#7]:[#6](-[#7]):[#6]2:[#6](:[#7]:1):[#7](:[#6]:[#7]:2)-[#6]1-[#8]-[#6](-[#6]-[#8,#7])-[#6](-[#6]-1-[#8])-[#8]\n", "Row: 687 Displacement of [125J]-eotaxin-1 from human CCR3 transfected in human K562 cells\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 33.8, mcs nAts: 28\n", "[#6,#8]-[#6]-[#6]1:[#7]:[#6]2:[#6]:[#6]:[#6]:[#6]:[#6]:2:[#6]:1-[#6]1-[#6]-[#6]-[#7](-[#6]-[#6]-1)-[#6]-[#6]-[#6]-[#16,#6]-[#6]1:[#6]:[#6]:[#6](:[#6]:[#6]:1)-[#9,#6,#8,#17]\n", "Row: 688 Displacement of [3H]DAK from human bradykinin B1 receptor expressed in CHOD cells\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 40.4, mcs nAts: 33\n", "[#7,#8]-[#6]-[#6]1:[#6]:[#6]:[#6]2:[#6](:[#6]:1)-[#8]-[#6]-[#6]-[#6]-2-[#7]-[#6](=[#8])-[#6]-[#6](-[#7]-[#16](=[#8])(=[#8])-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1)-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1\n", "Row: 689 Displacement of radioligand from human recombinant TP receptor expressed in HEK293 cells by scintillation proximity assay\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 28.8, mcs nAts: 18\n", "[#6]-[#16,#6,#8]-[#6]1:,-[#6,#7]:,-[#6]:,-[#7,#6]:,-[#6,#7]2:[#6]:,-1:[#6](-[#16]-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1):[#6]:[#7,#6]:2\n", "Row: 690 Displacement of radioligand from human recombinant DP1 receptor expressed in HEK293 cells by scintillation proximity assay\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 28.8, mcs nAts: 18\n", "[#6]-[#16,#6,#8]-[#6]1:,-[#6,#7]:,-[#6]:,-[#7,#6]:,-[#6,#7]2:[#6]:,-1:[#6](-[#16]-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1):[#6]:[#7,#6]:2\n", "Row: 691 Displacement of [125I]human urotensin 2 from human recombinant urotensin 2 receptor expressed in HEK293 cells\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 19.5, mcs nAts: 16\n", "[#6]-[#6]-[#7]-[#6]1:[#7,#6]:[#6]:[#6,#7]:[#6]2:[#6]:1:[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1:[#7]:2\n", "Row: 692 Displacement of [3H]paroxetine from rat cortical 5HTT reuptake site\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 32.0, mcs nAts: 27\n", "[#6]1:[#6]:[#6]:[#6]2:[#6](:[#6]:1):[#7]:[#6]:[#6]:2-[#6]1-[#6]-[#6]-[#6](-[#6]-[#6]-1)-[#7]1-[#6]-[#6]-[#7](-[#6]-[#6]-1)-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1\n", "Row: 693 Displacement of radioligand from human CB1 receptor expressed in CHO cells\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 34.7, mcs nAts: 24\n", "[#6,#8]-,=[#6](=,-[#8,#6])-[#7]-[#6]1(-[#6](=[#8])-[#7]-[#6](-[#6])-[#6]2:[#6]:[#6]:[#6](:[#6]:[#6]:2-[#9])-[#7]2:[#6,#7]:[#6]:[#6]:[#7,#6]:2)-[#6]-[#6]-1\n", "Row: 694 Inhibition of Mycobacterium tuberculosis TMPK expressed in Escherichia coli by spectrophotometric assay\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 28.9, mcs nAts: 18\n", "[#6]-[#6]1:[#6]:[#7](-[#6]2-[#6,#8]-,=[#6]-[#6](-[#8,#6]-2)-[#6]-[#7,#8]=,-[#7,#6,#15]=,-[#7,#8,#16]):[#6](:[#7]:[#6]:1=[#8])=[#8]\n", "Row: 695 Displacement of [3H]nociceptin from human NOP receptor expressed in CHO cells\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 37.1, mcs nAts: 32\n", "[#6]-[#8]-[#6]1:[#6]:[#6]:[#6](:[#6](:[#6]:1)-[#8]-[#6](-[#6]-[#6]-[#7]1-[#6]-[#6]-[#6](-[#6]-[#6]-1)-[#7]1:[#6](=[#8]):[#7]:[#6]2:[#6]:1:[#6]:[#6]:[#6]:[#6]:2)-[#6](-[#6])-[#6])-[#6]\n", "Row: 696 Displacement of [3H]diprenorphine from human MOP receptor expressed in CHOK1 cells\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 37.1, mcs nAts: 32\n", "[#6]-[#8]-[#6]1:[#6]:[#6]:[#6](:[#6](:[#6]:1)-[#8]-[#6](-[#6]-[#6]-[#7]1-[#6]-[#6]-[#6](-[#6]-[#6]-1)-[#7]1:[#6](=[#8]):[#7]:[#6]2:[#6]:1:[#6]:[#6]:[#6]:[#6]:2)-[#6](-[#6])-[#6])-[#6]\n", "Row: 697 Inhibition of human Eg5 basal ATPase activity\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 27.3, mcs nAts: 14\n", "[#16,#6,#7,#8,#17,#35]-[#6](-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1)-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1\n", "Row: 698 Displacement of [3H]des-Arg10-KD from human recombinant B1 receptor expressed in HEK293 cells by liquid scintillation counter\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 34.1, mcs nAts: 19\n", "[#6]1:[#6]:[#6](-[#6,#9,#17]):[#6](:[#6]:[#6]:1)-[#16](=[#8])(=[#8])-[#7](-[#6])-[#6]-[#6]-,=[#8,#6,#7]-[#6]-[#6,#7](=,-[#8,#6,#7])-,=[#7,#6,#8]\n", "Row: 699 Displacement of [125I]IABN from human D3R expressed in HEK293 cell membranes by gamma counting method\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 35.2, mcs nAts: 28\n", "[#8]=[#6](-[#7]-[#6]-[#6]-[#6]-[#6]-[#7]1-[#6]-[#6]-[#7](-[#6]-[#6]-1)-[#6]1:[#6,#7]:[#6]:[#6,#7]:[#6]:[#6,#7]:1)-[#6]1:[#6,#7,#16]:[#7,#6]2:[#6,#7]:[#6]:[#6,#7]:[#6,#7]:[#6,#7]:2:[#7,#6,#16]:1\n", "Row: 700 Displacement of [125I]IABN from human D2LR expressed in HEK293 cell membranes by gamma counting method\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 35.2, mcs nAts: 28\n", "[#8]=[#6](-[#7]-[#6]-[#6]-[#6]-[#6]-[#7]1-[#6]-[#6]-[#7](-[#6]-[#6]-1)-[#6]1:[#6,#7]:[#6]:[#6,#7]:[#6]:[#6,#7]:1)-[#6]1:[#6,#7,#16]:[#7,#6]2:[#6,#7]:[#6]:[#6,#7]:[#6,#7]:[#6,#7]:2:[#7,#6,#16]:1\n", "Row: 701 Displacement of [35S]MK499 from human ERG expressed in HEK293 cells\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 32.9, mcs nAts: 22\n", "[#7]-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1-[#7]-[#6](=[#8])-[#6]1:[#6]:[#6]:[#6](:[#7]:[#6]:1)-[#7]1-[#6]-[#6]-[#6]-[#6]-[#6]-1\n", "Row: 702 Antagonist activity against human TRPV1 expressed in CHO cells assessed as inhibition of capsaicin-induced channel activation by FLIPR assay\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 35.9, mcs nAts: 29\n", "[#6]-[#6](-[#6](=[#8])-[#7]-[#6]-[#6]1:[#6]:[#6]:[#6](:[#7]:[#6]:1-[#7,#6])-[#6](-[#9])(-[#9])-[#9])-[#6]1:[#6]:[#6]:[#6](:[#6](:[#6]:1)-[#9])-[#7]-[#16](-[#6])(=[#8])=[#8]\n", "Row: 703 Inhibition of catalytic domain of human recombinant CA IX\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 15.5, mcs nAts: 5\n", "[#6,#7,#8]-[#16,#6](-,=[#7,#8,#9])(=,-[#8,#9])=,-[#8,#6,#7,#9]\n", "Row: 704 Displacement of fluorescein-labeled MS574 from recombinant human BRD4 BrD2 after 1 hr by fluorescence anisotropy assay\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 28.0, mcs nAts: 21\n", "[#8]=[#16](=[#8])(-[#7]-[#6])-[#6]1:[#6]:[#6]:[#6](:[#6]:[#6]:1)-[#7]=[#7]-[#6]1:[#6,#7]:[#6]:[#6](:[#6](:[#6,#7]:1)-[#8,#6,#17,#35])-[#8,#7]\n", "Row: 705 Inhibition of human recombinant cytosolic isozyme CA II by stopped-flow CO2 hydrase method\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 15.5, mcs nAts: 5\n", "[#6,#7,#8]-[#16,#6](-,=[#7,#8,#9])(=,-[#8,#9])=,-[#8,#6,#7,#9]\n", "Row: 706 Inhibition of human recombinant cytosolic isozyme CA I by stopped-flow CO2 hydrase method\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 15.5, mcs nAts: 5\n", "[#6,#7,#8]-[#16,#6](-,=[#7,#8,#9])(=,-[#8,#9])=,-[#8,#6,#7,#9]\n", "Row: 707 Inhibition of full length human recombinant CA VI\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 15.5, mcs nAts: 5\n", "[#6,#7,#8]-[#16,#6](-,=[#7,#8,#9])(=,-[#8,#9])=,-[#8,#6,#7,#9]\n", "Row: 708 Inhibition of Plasmodium falciparum plasmepsin-2\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 46.4, mcs nAts: 43\n", "[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1-[#8]-[#6]-[#6](=[#8])-[#7]-[#6](-[#6]-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1)-[#6](-[#8])-[#6](=[#8])-[#7]1-[#6]-[#16]-[#6](-[#6]-1-[#6](=[#8])-[#7]-[#6]1-[#6]2:[#6]:[#6]:[#6]:[#6]:[#6]:2-[#6]-[#6]-1-[#8])(-[#6])-[#6]\n", "Row: 709 Inhibition of human carbonic anhydrase-1 at 20 degC preincubated for 15 mins by stopped-flow CO2 hydrase assay\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 6.2, mcs nAts: 0\n", "\n", "Row: 710 Displacement of [3H]CP-55940 from human cloned CB1 receptor by scintillation spectrometry\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 26.6, mcs nAts: 17\n", "[#6,#35]-[#6]1:[#6]:[#6]:[#6](:[#6]:[#6]:1-[#16](=[#8])(=[#8])-[#7]1-[#6]-[#6]-[#8]-[#6]-[#6]-1)-[#6,#7]\n", "Row: 711 Inhibition of human intestinal carboxylesterase\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 21.4, mcs nAts: 16\n", "[#8]=[#6](-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1)-[#6](-,=[#8])-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1\n", "Row: 712 Inhibition of human carboxylesterase 1\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 21.4, mcs nAts: 16\n", "[#8]=[#6](-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1)-[#6](-,=[#8])-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1\n", "Row: 713 Inhibition of human AChE\n", " * postgresql://localhost/chembl_23\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Mean nAts 21.4, mcs nAts: 16\n", "[#8]=[#6](-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1)-[#6](-,=[#8])-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1\n", "Row: 714 Inhibition of human BChE\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 21.4, mcs nAts: 16\n", "[#8]=[#6](-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1)-[#6](-,=[#8])-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1\n", "Row: 715 Inhibition of human beta tryptase\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 42.1, mcs nAts: 27\n", "[#8,#6]-,=[#6](=,-[#8,#6])-[#7]-[#6](-[#6]-[#6]-[#6]-[#6]-[#7])-[#6](=[#8])-[#6]1:[#7]:[#8]:[#6](:[#7]:1)-[#6]-[#6,#7]1:,-[#6]:,-[#6]:,-[#6,#7](:,-[#6]:,-[#6]:,-1)-[#6,#8]-[#7,#6,#8]-[#6]\n", "Row: 716 Displacement of [3H]DPCPX from human cloned adenosine A1 receptor expressed in CHO cells\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 26.6, mcs nAts: 17\n", "[#6]-[#6]1:,-[#6]:,-[#7]2:[#6](:,-[#7,#6]:,=1):[#7]:[#6]1:[#6]:2:[#6](=[#8]):[#7](-[#6]):[#6](:[#7]:1-[#6])=[#8]\n", "Row: 717 Displacement of [3H]ZM241385 from human cloned adenosine A2A receptor expressed in CHO cells\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 26.6, mcs nAts: 17\n", "[#6]-[#6]1:,-[#6]:,-[#7]2:[#6](:,-[#7,#6]:,=1):[#7]:[#6]1:[#6]:2:[#6](=[#8]):[#7](-[#6]):[#6](:[#7]:1-[#6])=[#8]\n", "Row: 718 Displacement of fluorescein-labeled MS574 from recombinant human BRD4 BrD1 after 1 hr by fluorescence anisotropy assay\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 28.2, mcs nAts: 25\n", "[#8]=[#16](=[#8])(-[#7]-[#6]1:[#6]:[#6]:[#6]:[#6]:[#7,#6]:1)-[#6]1:[#6]:[#6]:[#6](:[#6]:[#6]:1)-[#7]=[#7]-[#6]1:[#6,#7]:[#6]:[#6](:[#6]:[#6,#7]:1)-[#8,#7]\n", "Row: 719 Displacement of [3H]MRE3008F20 from human cloned adenosine A3 receptor expressed in CHO cells\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 26.6, mcs nAts: 17\n", "[#6]-[#6]1:,-[#6]:,-[#7]2:[#6](:,-[#7,#6]:,=1):[#7]:[#6]1:[#6]:2:[#6](=[#8]):[#7](-[#6]):[#6](:[#7]:1-[#6])=[#8]\n", "Row: 720 Inhibition of recombinant JAK1 (unknown origin) using Val-Ala-Leu-Val-Asp-Gly-Tyr-Phe-Arg-Leu-Thr-Thr as substrate after 30 mins in presence of ATP\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 23.0, mcs nAts: 18\n", "[#6]1:[#6]:[#6]2:[#6](:[#7]:1):[#7]:[#6]:[#6]1:[#6]:2:[#7](:[#6]:[#7]:1)-[#6]1-[#6]-[#6]-[#7,#6,#8]-[#6,#7,#8]-[#6]-1\n", "Row: 721 Inhibition of [3H]dopamine reuptake at human DAT expressed in HEK293 cells by SPA\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 23.1, mcs nAts: 17\n", "[#16,#6,#8]-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1-[#6]-[#7](-[#6]1-[#6]-[#6]-[#7]-[#6]-1)-[#16,#6](=,-[#8,#6,#7])=,-[#8,#6,#7]\n", "Row: 722 Inhibition of [3H]citalopram uptake at human 5HTT expressed in HEK293 cells by SPA\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 23.1, mcs nAts: 17\n", "[#16,#6,#8]-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1-[#6]-[#7](-[#6]1-[#6]-[#6]-[#7]-[#6]-1)-[#16,#6](=,-[#8,#6,#7])=,-[#8,#6,#7]\n", "Row: 723 Inhibition of [3H]nisoxetine reuptake at human NET expressed in HEK293 cells by SPA\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 23.1, mcs nAts: 17\n", "[#16,#6,#8]-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1-[#6]-[#7](-[#6]1-[#6]-[#6]-[#7]-[#6]-1)-[#16,#6](=,-[#8,#6,#7])=,-[#8,#6,#7]\n", "Row: 724 Displacement of [3H]N-methylspiperone from human recombinant dopamine D2 receptor expressed in CHOK1 cells incubated for 60 mins by scintillation counting method\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 36.6, mcs nAts: 16\n", "[#6]1:[#6]:[#7](-[#6,#16]-[#6]2:[#6]:[#6]:[#6]:[#6]:[#6]:2):[#6]2:[#6]:1:[#6]:[#6]:[#6]:[#6]:2\n", "Row: 725 Inhibition of human cytosolic carbonic anhydrase 2 preincubated for 15 mins by stopped flow CO2 hydration assay\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 6.6, mcs nAts: 0\n", "\n", "Row: 726 Inhibition of C1S\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 27.1, mcs nAts: 14\n", "[#6]-[#16]-[#6]1:[#16]:[#6](-[#6](=[#7])-[#7]):[#6]:[#6]:1-[#16](=,-[#8,#6])(=[#8])-,=[#6,#8]\n", "Row: 727 Displacement of [3H]N-alpha-methylhistamine from guinea pig histamine H3 receptor\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 28.2, mcs nAts: 15\n", "[#6](-[#7,#6]-[#6,#8])-[#7]1-[#6]-[#6]-[#6](-[#6]-[#6]-1)-[#6]-[#6]1:[#6,#7]:[#7,#6]:[#6,#7]:[#7,#6]:1\n", "Row: 728 Displacement of [I125]hU2 from human recombinant urotensin 2 receptor expressed in HEK293 cells\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 32.6, mcs nAts: 10\n", "[#6,#7,#8]-,=[#6,#7]-[#8,#6,#7]-[#6]1:,-[#6]:,-[#6]:,-[#6,#7](:,-[#6]:,-[#6]:,-1)-[#6,#8,#16,#17]\n", "Row: 729 Displacement of human [125I]IL-8 from human CXCR2\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 30.9, mcs nAts: 22\n", "[#6]-[#6]-[#6](-[#7]-[#6]1:[#6](-[#7]-[#6]2:[#6]:[#6]:[#6]:[#6](:[#6]:2-[#8])-[#6](=,-[#8,#7])-,=[#8,#7]):[#6](:[#6]:1=[#8])=[#8])-[#6]\n", "Row: 730 Displacement of GS-red from human glucocorticoid receptor by fluorescent polarization assay\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 29.8, mcs nAts: 24\n", "[#6,#8]-[#6](-[#8,#6])-[#6]1-[#6]-[#6]-[#6]-[#6]2-[#6]-1(-[#6]-[#7,#6]1:[#6]:[#7]:[#6,#7](:[#6]:1-[#6]=2)-[#6]1:[#6]:[#6]:[#6](:[#6]:[#6]:1)-[#9])-[#6]\n", "Row: 731 Inhibition of human wild-type beta-catenin (residues 138-686)/C-terminally fluorescein labeled human wild-type Tcf4 (residues 7-51) interaction after 1.5 hrs by FP competitive inhibition assay\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 24.8, mcs nAts: 6\n", "[#7,#6]1:[#7,#6]:[#6]:[#7,#6]:[#6]-,:[#6]:1\n", "Row: 732 Binding affinity to human muscarinic M3 receptor\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 26.5, mcs nAts: 15\n", "[#6,#8]-[#6](-[#6]#[#6]-[#6]1(-[#8]-[#6])-[#6]-[#7]2-[#6]-[#6]-[#6]-1-[#6]-[#6]-2)-[#6,#8]\n", "Row: 733 Displacement of [125I]AB-MECA from Adenosine A3 receptor expressed in CHO cells\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 35.9, mcs nAts: 34\n", "[#6]-[#6]-[#6]-[#7]1:[#6](=[#8]):[#6]2:[#7]:[#6](-[#6]3:[#6]:[#7]:[#7](:[#6]:3)-[#6]-[#6]3:[#6,#7]:[#6](-[#6]4:[#6]:[#6]:[#6]:[#6]:[#6]:4):[#8,#7]:[#7,#8]:3):[#7]:[#6]:2:[#7](:[#6]:1=[#8])-[#6]-[#6]-[#6]\n", "Row: 734 Displacement of [3H]ZM-241385 from Adenosine A2A receptor expressed in HEK cells\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 35.9, mcs nAts: 34\n", "[#6]-[#6]-[#6]-[#7]1:[#6](=[#8]):[#6]2:[#7]:[#6](-[#6]3:[#6]:[#7]:[#7](:[#6]:3)-[#6]-[#6]3:[#6,#7]:[#6](-[#6]4:[#6]:[#6]:[#6]:[#6]:[#6]:4):[#8,#7]:[#7,#8]:3):[#7]:[#6]:2:[#7](:[#6]:1=[#8])-[#6]-[#6]-[#6]\n", "Row: 735 Displacement of [3H]RX821002 from alpha2-adrenergic receptor in prefrontal cortex of human brain after 30 mins by liquid scintillation spectrometric analysis\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 18.5, mcs nAts: 8\n", "[#6]-,=[#8,#7]-[#6]1:,-[#6]:,-[#6,#8]:,-[#6]:[#6]:,-[#6,#8]:,-1\n", "Row: 736 Binding affinity to human ERG\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 38.7, mcs nAts: 23\n", "[#8]=[#6](-[#6]1-[#6]-[#7]-[#6]-[#6]-[#6]-1(-[#8])-[#6]1:[#6]:[#6]:[#6](:[#6](:[#6]:1)-[#9])-[#9])-[#7](-[#6]-[#6])-[#6]1-[#6]-[#6]-1\n", "Row: 737 Displacement of [3H]testosterone from wild type human androgen receptor\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 27.7, mcs nAts: 12\n", "[#6]1:[#6]:[#6]:[#6]:[#6](:[#6]:1)-[#7,#6]-[#6,#7]1:,-[#6]:,-[#6,#7]:,-[#7,#6]:,-[#6]:,-1\n", "Row: 738 Displacement of [3H]CPX from Adenosine A1 receptor expressed in CHO cells\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 35.9, mcs nAts: 34\n", "[#6]-[#6]-[#6]-[#7]1:[#6](=[#8]):[#6]2:[#7]:[#6](-[#6]3:[#6]:[#7]:[#7](:[#6]:3)-[#6]-[#6]3:[#6,#7]:[#6](-[#6]4:[#6]:[#6]:[#6]:[#6]:[#6]:4):[#8,#7]:[#7,#8]:3):[#7]:[#6]:2:[#7](:[#6]:1=[#8])-[#6]-[#6]-[#6]\n", "Row: 739 Displacement of [3H]ZM-241385 from Adenosine A2B receptor expressed in HEK cells\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 35.9, mcs nAts: 34\n", "[#6]-[#6]-[#6]-[#7]1:[#6](=[#8]):[#6]2:[#7]:[#6](-[#6]3:[#6]:[#7]:[#7](:[#6]:3)-[#6]-[#6]3:[#6,#7]:[#6](-[#6]4:[#6]:[#6]:[#6]:[#6]:[#6]:4):[#8,#7]:[#7,#8]:3):[#7]:[#6]:2:[#7](:[#6]:1=[#8])-[#6]-[#6]-[#6]\n", "Row: 740 Inhibitory activity against human recombinant mitochondrial isozyme CA VB\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 15.5, mcs nAts: 5\n", "[#6,#7,#8]-[#16,#6](-,=[#7,#8,#9])(=,-[#8,#9])=,-[#8,#6,#7,#9]\n", "Row: 741 Inhibitory activity against human recombinant mitochondrial isozyme CA VA\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 15.5, mcs nAts: 5\n", "[#6,#7,#8]-[#16,#6](-,=[#7,#8,#9])(=,-[#8,#9])=,-[#8,#6,#7,#9]\n", "Row: 742 Inhibitory activity against human recombinant cytosolic CA2\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 15.5, mcs nAts: 5\n", "[#6,#7,#8]-[#16,#6](-,=[#7,#8,#9])(=,-[#8,#9])=,-[#8,#6,#7,#9]\n", "Row: 743 Displacement of [3H]SCH23390 from dopamine D1 receptor (unknown origin) expressed in human HEK293 cells by liquid scintillation counter\n", " * postgresql://localhost/chembl_23\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Mean nAts 24.2, mcs nAts: 21\n", "[#6]-[#8]-[#6]1:[#6]:,-[#6]-,:[#6,#7]-[#6]-[#7,#6]-[#6]-,:[#6](:,-[#6]-[#6]-[#6,#7]-,:[#6]:,-[#6]:[#6]:1-[#8]):[#6]:[#6]:[#6]:[#6]\n", "Row: 744 Displacement of [3H]spiperone from dopamine D2 receptor (unknown origin) expressed in human HEK293 cells by liquid scintillation counter\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 24.2, mcs nAts: 21\n", "[#6]1:[#6]:[#6]:[#6](:[#6](:[#6]:1)-[#6]-[#6]-[#6,#7]:,-[#6]:,-[#6]:[#6](:[#6](:[#6])-[#8])-[#8]-[#6])-[#6]-[#7,#6]-[#6,#7]-,:[#6]\n", "Row: 745 Displacement of [3H]8-OH-DPAT from 5-HT1A receptor (unknown origin) expressed in HEK293 cells by liquid scintillation counter\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 24.2, mcs nAts: 21\n", "[#6]-[#8]-[#6]1:[#6]:,-[#6]-,:[#6,#7]-[#6]-[#7,#6]-[#6]-,:[#6](:,-[#6]-[#6]-[#6,#7]-,:[#6]:,-[#6]:[#6]:1-[#8]):[#6]:[#6]:[#6]:[#6]\n", "Row: 746 Displacement of [125I]SS-14 from human SSTR3 expressed in CHO cells after 60 to 90 mins\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 27.0, mcs nAts: 16\n", "[#6]-[#6]-[#7]-[#6]-[#6]1:[#7]:[#6](-[#6]2:[#6]:[#6]:[#6](:[#6]:[#6]:2)-[#6,#9]):[#6]:[#7]:1\n", "Row: 747 Inhibitory activity against Carbonic anhydrase IV isolated from bovine lung\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 25.5, mcs nAts: 13\n", "[#6,#8]-,=[#6,#16](=[#8])-[#7]-,=[#6]1:[#7]:[#7]:[#6](:[#16]:1)-[#16](-[#7])(=[#8])=[#8]\n", "Row: 748 Displacement of [3H]DOI from human recombinant 5HT2A receptor expressed in HEK293 cells by scintillation counting\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 28.1, mcs nAts: 25\n", "[#6]-[#8]-[#6]1:[#6]:[#6]:[#6](:[#6]:[#6]:1-[#6]1:[#6,#7](-[#35,#6,#9,#17]):[#6,#7]:[#7,#6]:[#7,#6]:1-[#6,#35])-[#7]-[#6](=[#8])-[#7]-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1\n", "Row: 749 Inhibitory constant against thrombin\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 31.4, mcs nAts: 25\n", "[#6]1:[#6]:[#6]:[#6]:[#6](:[#6]:1)-[#6,#7]-[#6]1:[#7]:[#6,#7]2:[#6](-[#7]-[#6]-[#6]-[#6]3-,:[#6,#7]-,:[#6]-,:[#6]-,:[#6]-,:[#7,#6]-,:3):[#7,#6]:[#6]:[#6,#7]:[#6]:2:[#8,#7]:1\n", "Row: 750 Displacement of [3H]DOI from human recombinant 5HT2C receptor expressed in HEK293 cells by scintillation counting\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 28.1, mcs nAts: 25\n", "[#6]-[#8]-[#6]1:[#6]:[#6]:[#6](:[#6]:[#6]:1-[#6]1:[#6,#7](-[#35,#6,#9,#17]):[#6,#7]:[#7,#6]:[#7,#6]:1-[#6,#35])-[#7]-[#6](=[#8])-[#7]-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1\n", "Row: 751 Displacement of [3H]neurotensin from human NTS1 receptor expressed in CHO cells\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 58.4, mcs nAts: 30\n", "[#6](-[#7,#6]-[#6](=[#8,#6])-[#6,#7]-[#7,#6]-[#6](=[#8])-[#6,#7]1-[#6]-[#6]-[#6]-[#7,#6]-1-[#6](=[#8])-[#6,#7]-[#7,#6]-[#6,#7]-[#6,#7]-[#6,#7]-[#6]-[#6,#7]-[#7,#6]-,=[#6,#7])-[#6]-[#7,#6]-[#6,#7]-[#6](=,-[#8,#6,#7])-[#8,#6,#7]\n", "Row: 752 Binding affinity to human CB2 receptor\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 30.5, mcs nAts: 22\n", "[#7,#6,#8]-,=[#6,#16]-[#6]1-[#6]-[#6]-[#6](-[#7](-[#6]-1)-[#6]1:[#6]:[#6]:[#6](:[#6]:[#6]:1)-[#17])-[#6]1:[#6]:[#6]:[#6](:[#6]:[#6]:1)-[#17]\n", "Row: 753 Inhibition of human F10a using CH3SO2-D-CHG-Gly-Arg-AFC.AcOH as substrate by fluorescence assay\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 38.0, mcs nAts: 30\n", "[#6]-[#6]1:[#6]:[#6]:[#6]2:[#7,#6](:[#6]:1):[#7,#6]:[#6]1:[#6,#7]:2-[#6]-[#6](-[#6]-[#6]-1)(-[#6])-[#7]-[#6](=[#8])-[#6]1:[#6]:[#6]:[#6](:[#6]:[#6]:1-[#17])-[#7]1:[#6]:[#7]:[#6,#7]:[#7,#6]:1\n", "Row: 754 Displacement of [125I]Tyr-o-CRF from human CRFR1 expressed in human IMR32 cells\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 31.1, mcs nAts: 22\n", "[#7,#8,#9]-,=[#6](=,-[#8,#7,#9])-[#6]1:[#6](-[#6]):[#7]:[#6](:[#7]:1)-[#7](-[#6]-[#6]-[#6])-[#6]1:[#6](-[#6]):[#6]:[#6](:[#6]:[#6]:1-[#6])-[#6]\n", "Row: 755 Binding affinity towards the human MCH-R1 receptor by displacing [125I]Tyr13]-MCH radioligand in HEK293 cells, Data is average of 3 or more independent measurements\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 32.6, mcs nAts: 30\n", "[#6]-[#7]1-[#6]-[#6]-[#6](-[#6]-1)-[#7](-[#6])-[#6](=[#8])-[#7]1-[#6]-[#6]-[#6](-[#6]-1)-[#7](-[#6])-[#6](=[#8])-[#6]1:[#6]:[#6]:[#6](:[#16]:1)-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1\n", "Row: 756 Inhibition of recombinant human furin expressed in CHO cells using pyroGlu- Arg-Thr-Lys-Arg-AMC as the substrate after 30 mins\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 48.8, mcs nAts: 39\n", "[#6,#7]-[#7,#6]-[#6]-[#6]-[#6]-[#6](-[#7]-[#6](=[#8])-[#6]-[#7]-[#6](=[#8])-[#6](-[#6]-[#6])-[#7]-[#6](=[#8])-[#6]-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1)-[#6](=[#8])-[#7]-[#6]-[#6]1:[#6]:[#6]:[#6](:[#6]:[#6]:1)-[#6](=[#7])-[#7]\n", "Row: 757 BindingDB_Patents: Radioligand Binding Assay. The inhibition constant (ki) is determined using a radioligand assay.\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 30.2, mcs nAts: 19\n", "[#6,#8]-,=[#6](=,-[#8,#6])-[#7]1-[#6]-[#6](-[#8]-[#6]2:[#6]:[#6](-[#6]#[#7]):[#6]:[#6]:[#7]:2)-[#6]-[#6]-[#6]-1-[#6]\n", "Row: 758 Displacement of 7-methoxy-[3H]-prazosin from human alpha1D adrenergic receptor expressed in CHO-K1 cell membranes incubated for 60 mins by liquid scintillation counting analysis\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 19.9, mcs nAts: 13\n", "[#6]-[#6]-[#7]1:[#6]:[#6](-[#17,#35]):[#6]:[#6](:[#6]:1=[#7,#8])-[#6](-[#7])=[#8]\n", "Row: 759 Displacement of [125I]cyanopindolol from human adrenergic beta-1 receptor expressed in CHOK1 cells\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 33.8, mcs nAts: 17\n", "[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1-[#8]-[#6]-[#6](-[#8])-[#6]-[#7]1-[#6]-[#6]-[#8,#6,#7]-[#6]-[#6]-1\n", "Row: 760 Displacement of [125I]cyanopindolol from human adrenergic beta2 receptor expressed in CHOK1 cells\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 33.8, mcs nAts: 17\n", "[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1-[#8]-[#6]-[#6](-[#8])-[#6]-[#7]1-[#6]-[#6]-[#8,#6,#7]-[#6]-[#6]-1\n", "Row: 761 Displacement of [125I]cyanopindolol from human adrenergic beta3 receptor expressed in CHOK1 cells\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 33.8, mcs nAts: 17\n", "[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1-[#8]-[#6]-[#6](-[#8])-[#6]-[#7]1-[#6]-[#6]-[#8,#6,#7]-[#6]-[#6]-1\n", "Row: 762 BindingDB_Patents: Inhibition Assay. Fluorometric Assays: All measurements were performed with a BioAssay Reader HTS-7000Plus for microplates (Perkin Elmer) at 30 C. QC activity was evaluated fluorometrically using H-Gln-beta NA. The samples consisted of 0.2 mM fluorogenic substrate, 0.25 U pyroglutamyl aminopeptidase (Unizyme, Horsholm, Denmark) in 0.2 M Tris/HCl, pH 8.0 containing 20 mM EDTA and an appropriately diluted aliquot of QC in a final volume of 250 ul. Excitation/emission wavelengths were 320/410 nm. The assay reactions were initiated by addition of glutaminyl cyclase. QC activity was determined from a standard curve of beta -naphthylamine under assay conditions. One unit is defined as the amount of QC catalyzing the formation of 1 umol pGlu-beta NA from H-Gln-beta NA per minute under the described conditions.In a second fluorometric assay, QC was activity determined using H-Gln-AMC as substrate. Reactions were carried out at 30 C. utilizing the NOVOStar reader for microplates (BMG labtechnology).\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 23.5, mcs nAts: 16\n", "[#6,#7]1:[#6]:[#7](-[#6]-[#6]-[#6]-[#7]2:[#6](=[#16,#8]):[#7,#6]:[#6]:[#6,#7]:[#6]:2=[#8,#16]):[#6]:[#7,#6]:1\n", "Row: 763 Displacement of [3H]methylspiperone from human cloned 5HT2A receptor expressed in HEK293 cells after 90 mins by liquid scintillation counting\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 20.6, mcs nAts: 11\n", "[#6,#7,#8]-,=[#6]-[#7,#6]1:,-[#6]:,-[#6,#7]:,-[#6]2:[#6]:,-1:[#6]:[#6]:[#6]:[#6]:2\n", "Row: 764 Displacement of [3H]mesulergine from human cloned 5HT2C receptor expressed in HEK293 cells after 90 mins by liquid scintillation counting\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 20.6, mcs nAts: 11\n", "[#6,#7,#8]-,=[#6]-[#7,#6]1:,-[#6]:,-[#6,#7]:,-[#6]2:[#6]:,-1:[#6]:[#6]:[#6]:[#6]:2\n", "Row: 765 Displacement of [N-methyl-3H]WIN-35428 from human recombinant DAT expressed in pig LLCPK cells after 2 hrs by liquid scintillation counting\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 18.4, mcs nAts: 13\n", "[#6]1:[#6]:[#6]:[#6](:[#6]:[#6]:1)-[#6]12-[#6]-[#6,#7]-[#7,#6]-[#6]-[#6]-1-[#6]-2\n", "Row: 766 Displacement of [N-methyl-3H]nisoxetine from human recombinant NET expressed in pig LLCPK cells after 2 hrs by liquid scintillation counting\n", " * postgresql://localhost/chembl_23\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Mean nAts 18.4, mcs nAts: 13\n", "[#6]1:[#6]:[#6]:[#6](:[#6]:[#6]:1)-[#6]12-[#6]-[#6,#7]-[#7,#6]-[#6]-[#6]-1-[#6]-2\n", "Row: 767 Displacement of [N-methyl-3H]citalopram from human recombinant SERT expressed in pig LLCPK cells after 2 hrs by liquid scintillation counting\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 18.4, mcs nAts: 13\n", "[#6]1:[#6]:[#6]:[#6](:[#6]:[#6]:1)-[#6]12-[#6]-[#6,#7]-[#7,#6]-[#6]-[#6]-1-[#6]-2\n", "Row: 768 Displacement of [3H]N-methylspiperone from rat dopamine D4 receptor by PDSP assay\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 24.4, mcs nAts: 15\n", "[#6]1:[#6]:[#6,#7]:[#6](:[#6,#7]:[#6]:1)-[#7,#6]1-[#6]-[#6]-[#7](-[#6]-[#6]-1)-[#6]-[#6]-[#6]\n", "Row: 769 Displacement of [3H]CP55,940 from human CB1 receptor expressed in CHO cells after 2 hrs by liquid scintillation counter\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 26.9, mcs nAts: 19\n", "[#6]1:[#6]:[#6]:[#6](:[#6]:[#6]:1)-[#6]-[#6]1:[#6]:[#6]2:[#6](-[#8,#6]):[#6]:[#6]:[#6]:[#6]:2:[#8]:[#6]:1=[#8]\n", "Row: 770 Displacement of [3H]NT from human NTS2 receptor expressed in HEK293 cells\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 58.4, mcs nAts: 30\n", "[#6](-[#7,#6]-[#6](=[#8,#6])-[#6,#7]-[#7,#6]-[#6](=[#8])-[#6,#7]1-[#6]-[#6]-[#6]-[#7,#6]-1-[#6](=[#8])-[#6,#7]-[#7,#6]-[#6,#7]-[#6,#7]-[#6,#7]-[#6]-[#6,#7]-[#7,#6]-,=[#6,#7])-[#6]-[#7,#6]-[#6,#7]-[#6](=,-[#8,#6,#7])-[#8,#6,#7]\n", "Row: 771 BindingDB_Patents: Radioligand Binding Assay. Radioligand dose displacement assays used 0.4-0.8 nM [3H]-U69,593 (NEN; 40 Ci/mmole) with 10-20 µg membrane protein (recombinant kappa opioid receptor expressed in HEK 293 cells; in-house prep) in a final volume of 200 µL binding buffer (5% DMSO, 50 mM Trizma base, pH 7.4). Non-specific binding was determined in the presence of 10 µM unlabeled naloxone or U69,593. All reactions were performed in 96-well polypropylene plates for 1 h at a temperature of about 25° C. Binding reactions were determined by rapid filtration onto 96-well Unifilter GF/C filter plates (Packard) presoaked in 0.5% polyethylenimine (Sigma-Aldrich). Harvesting was performed using a 96-well tissue harvester (Packard) followed by five filtration washes with 200 µL ice-cold binding buffer. Filter plates were subsequently dried at 50° C. for 1-2 hrs. Fifty µL/well scintillation cocktail (MicroScint20, Packard) was added and plates were counted in a Packard Top-Count for 1 min/well.\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 36.1, mcs nAts: 17\n", "[#7,#6]=,-[#6]1:,-[#7]:,-[#6]2:[#6]:[#6]:[#6]:[#6]:[#6]:2:,-[#7]:,-1-[#6]1-[#6]-[#6]-[#7](-[#6]-[#6]-1)-[#6]\n", "Row: 772 Displacement of [3H]CP55,940 from human CB2 receptor expressed in CHO cells after 2 hrs by liquid scintillation counter\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 26.9, mcs nAts: 19\n", "[#6]1:[#6]:[#6]:[#6](:[#6]:[#6]:1)-[#6]-[#6]1:[#6]:[#6]2:[#6](-[#8,#6]):[#6]:[#6]:[#6]:[#6]:2:[#8]:[#6]:1=[#8]\n", "Row: 773 Displacement of [3H]CGS21680 from human recombinant adenosine A2A receptor expressed in CHO cells after 60 mins by gamma counter\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 28.1, mcs nAts: 7\n", "[#8,#6,#7]-,=[#6,#7]1:,-[#6,#7]:,-[#6,#7]:,-[#6,#7]:,-[#6,#7]:,-[#6,#7]:,-1\n", "Row: 774 BindingDB_Patents: Radioligand Binding Assay. The inhibition constant (ki) is determined using a radioligand assay.\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 30.2, mcs nAts: 19\n", "[#6,#8]-,=[#6](=,-[#8,#6])-[#7]1-[#6]-[#6](-[#8]-[#6]2:[#6]:[#6](-[#6]#[#7]):[#6]:[#6]:[#7]:2)-[#6]-[#6]-[#6]-1-[#6]\n", "Row: 775 Displacement of [3H]DPCPX from human recombinant adenosine A1 receptor expressed in CHO cells after 120 mins by scintillation counting\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 35.5, mcs nAts: 25\n", "[#6]-[#6]-[#6]-[#7]1:[#6](=[#8]):[#6]2:[#7]:[#6](-[#6]3:[#6]:[#6](-[#8]-[#6]-[#6]):[#7]:[#8,#7]:3):[#7,#6]:[#6]:2:[#7](:[#6]:1=[#8])-[#6]-[#6]-[#6]\n", "Row: 776 Displacement of [3H][desArg9]Lys-Bradykinin from human bradykinin B1 receptor expressed in CHO cells\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 56.6, mcs nAts: 40\n", "[#6]-[#6]1:[#6]:[#6](-[#6]):[#6]2:[#6](:[#7]:1):[#6](:[#6]:[#6]:[#6]:2)-[#8]-[#6]-[#6]1:[#6](-[#17]):[#6]:[#6]:[#6](:[#6]:1-[#17])-[#16](=[#8])(=[#8])-[#7]-[#6]1(-[#6](=[#8])-[#7]2-[#6]-[#6]-[#7,#6]-[#6]-[#6]-2)-[#6]-[#6]-[#8]-[#6]-[#6]-1\n", "Row: 777 Displacement of [3H]-Bradykinin from human bradykinin B2 receptor expressed in CHO cells membrane after 60 mins by scintillation counting\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 56.6, mcs nAts: 40\n", "[#6]-[#6]1:[#6]:[#6](-[#6]):[#6]2:[#6](:[#7]:1):[#6](:[#6]:[#6]:[#6]:2)-[#8]-[#6]-[#6]1:[#6](-[#17]):[#6]:[#6]:[#6](:[#6]:1-[#17])-[#16](=[#8])(=[#8])-[#7]-[#6]1(-[#6](=[#8])-[#7]2-[#6]-[#6]-[#7,#6]-[#6]-[#6]-2)-[#6]-[#6]-[#8]-[#6]-[#6]-1\n", "Row: 778 Inhibition of human CA1 incubated for 15 mins prior to testing by stopped flow CO2 hydrase assay\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 10.2, mcs nAts: 0\n", "\n", "Row: 779 Displacement of [33P]-2MeS-ADP from human P2Y1 receptor expressed in HEK293 cells after 1 hr by scintillation counting analysis\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 36.1, mcs nAts: 22\n", "[#8]=[#6](-[#7]-[#6]1:[#6]:[#6]:[#6](:[#6]:[#6]:1)-[#8]-[#6](-[#9])(-[#9])-[#9])-[#7]-[#6]1:[#6]:[#6]:[#6]:[#7,#6]:[#6]:1-[#6,#7,#8]\n", "Row: 780 Inhibition of human CA2 incubated for 15 mins prior to testing by stopped flow CO2 hydrase assay\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 10.2, mcs nAts: 0\n", "\n", "Row: 781 Ki value against human carbonic anhydrase XII (hCA XII)\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 15.5, mcs nAts: 5\n", "[#6,#7,#8]-[#16,#6](-,=[#7,#8,#9])(=,-[#8,#9])=,-[#8,#6,#7,#9]\n", "Row: 782 Ki value against human carbonic anhydrase II (hCA II)\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 15.5, mcs nAts: 5\n", "[#6,#7,#8]-[#16,#6](-,=[#7,#8,#9])(=,-[#8,#9])=,-[#8,#6,#7,#9]\n", "Row: 783 Inhibition of human carbonic anhydrase 1 preincubated for 15 mins by stopped-flow CO2 hydration assay\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 4.9, mcs nAts: 0\n", "\n", "Row: 784 Inhibition of human carbonic anhydrase 2 preincubated for 15 mins by stopped-flow CO2 hydration assay\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 4.9, mcs nAts: 0\n", "\n", "Row: 785 In vitro inhibitory activity against bovine cationic trypsin\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 37.9, mcs nAts: 24\n", "[#6]1:[#6]:[#6]:[#6]2:[#6](:[#6]:1):[#7]:[#6](:[#7]:2-[#6]-[#6]1:[#6]:[#6]:[#6]2:[#6](:[#6]:1):[#6]:[#6](:[#6]:[#6]:2)-[#6](=[#7])-[#7])-[#6]\n", "Row: 786 Displacement of [3H]SCH58261 from human adenosine A2A receptor transfected in HEK293 cells\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 36.3, mcs nAts: 21\n", "[#6]-[#7,#6]-[#6](=[#8])-[#6,#7]-[#8,#6]-[#6]1:[#6]:[#6]:[#6]2:[#6](:[#6]:1):[#6](:[#6](:[#6](:[#7]:2)=[#8])-[#16,#6])-[#6]-[#6,#8]-[#6]\n", "Row: 787 Displacement of [3H]ZM241385 from human adenosine A2B receptor transfected in CHO cells after 60 mins by scintillation counting\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 36.3, mcs nAts: 21\n", "[#6]-[#7,#6]-[#6](=[#8])-[#6,#7]-[#8,#6]-[#6]1:[#6]:[#6]:[#6]2:[#6](:[#6]:1):[#6](:[#6](:[#6](:[#7]:2)=[#8])-[#16,#6])-[#6]-[#6,#8]-[#6]\n", "Row: 788 Displacement of [3H]DPCPX from human adenosine A1 receptor expressed in CHO cells\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 26.3, mcs nAts: 19\n", "[#7]-[#6]1:[#7,#6]:[#6](-[#6]2:[#6]:[#6]:[#6]:[#6]:[#6]:2):[#6,#7]:[#6](:[#7,#6]:1)-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1\n", "Row: 789 Inhibition of Trypanosoma cruzi cruzain\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 38.7, mcs nAts: 22\n", "[#6,#8]-,=[#6](-[#6,#7,#8])-[#6,#7]-[#6](-[#7,#6]-[#6])-[#6](=[#8])-[#7]-[#6](-[#6]-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1)-[#6](=[#8])-[#6]-[#16,#8]\n", "Row: 790 Displacement of [3H]DPCPX from human adenosine A1 receptor expressed in CHO-K1 cells after 2 hrs\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 36.3, mcs nAts: 21\n", "[#6]-[#7,#6]-[#6](=[#8])-[#6,#7]-[#8,#6]-[#6]1:[#6]:[#6]:[#6]2:[#6](:[#6]:1):[#6](:[#6](:[#6](:[#7]:2)=[#8])-[#16,#6])-[#6]-[#6,#8]-[#6]\n", "Row: 791 Displacement of [3H]U-69,593 from kappa opioid receptor in guinea pig cerebellum\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 30.9, mcs nAts: 28\n", "[#6]-[#7]1-[#6]-[#6]-[#6]23-[#6](-[#6]-1-[#6]-[#6]1:[#6]:[#6]:[#6](:[#6]:[#6]-2:1)-[#8])(-[#6]-[#6]1:[#6]:[#6]2:[#6]:[#6]:[#6]:[#6]:[#6]:2:[#7]:[#6]:1-[#6]-3)-[#8]\n", "Row: 792 Inhibition of dopamine uptake at VMAT in bovine chromaffin granule ghosts\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 18.9, mcs nAts: 12\n", "[#7,#6]1:,-,=[#6,#7]:,-[#6]:,-,=[#6,#7](:,-[#6,#7]:,-[#6]:,-1)-[#6]1:,-,=[#6]:,-[#6]:,-[#6,#7]:,-[#6]:,-[#6]:,-1\n", "Row: 793 Displacement of [3H]DPDPE from delta opioid receptor in mouse whole brain without cerebellum\n", " * postgresql://localhost/chembl_23\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Mean nAts 30.9, mcs nAts: 28\n", "[#6]-[#7]1-[#6]-[#6]-[#6]23-[#6](-[#6]-1-[#6]-[#6]1:[#6]:[#6]:[#6](:[#6]:[#6]-2:1)-[#8])(-[#6]-[#6]1:[#6]:[#6]2:[#6]:[#6]:[#6]:[#6]:[#6]:2:[#7]:[#6]:1-[#6]-3)-[#8]\n", "Row: 794 Displacement of [3H]-8-OH-DPAT from 5-HT1A receptor in Sprague-Dawley albinus rat cerebral cortex membranes after 15 mins\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 26.5, mcs nAts: 9\n", "[#8]=[#6]1-[#6]-[#7,#16]-[#6](-[#7]-1-[#6]-[#6])=[#8]\n", "Row: 795 Displacement of [3H]DAMGO from mu opioid receptor in mouse whole brain without cerebellum\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 30.9, mcs nAts: 28\n", "[#6]-[#7]1-[#6]-[#6]-[#6]23-[#6](-[#6]-1-[#6]-[#6]1:[#6]:[#6]:[#6](:[#6]:[#6]-2:1)-[#8])(-[#6]-[#6]1:[#6]:[#6]2:[#6]:[#6]:[#6]:[#6]:[#6]:2:[#7]:[#6]:1-[#6]-3)-[#8]\n", "Row: 796 Displacement of [3H]ZM241385 from human recombinant adenosine A2A receptor expressed in CHO cells after 120 mins by scintillation counting\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 35.5, mcs nAts: 25\n", "[#6]-[#6]-[#6]-[#7]1:[#6](=[#8]):[#6]2:[#7]:[#6](-[#6]3:[#6]:[#6](-[#8]-[#6]-[#6]):[#7]:[#8,#7]:3):[#7,#6]:[#6]:2:[#7](:[#6]:1=[#8])-[#6]-[#6]-[#6]\n", "Row: 797 Displacement of [3H]MRE2029-F20 from human recombinant adenosine A2B receptor expressed in HEK293 cells after 120 mins by scintillation counting\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 35.5, mcs nAts: 25\n", "[#6]-[#6]-[#6]-[#7]1:[#6](=[#8]):[#6]2:[#7]:[#6](-[#6]3:[#6]:[#6](-[#8]-[#6]-[#6]):[#7]:[#8,#7]:3):[#7,#6]:[#6]:2:[#7](:[#6]:1=[#8])-[#6]-[#6]-[#6]\n", "Row: 798 Displacement of [3H]MRE3008-F20 from human recombinant adenosine A3 receptor expressed in CHO cells after 120 mins by scintillation counting\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 35.5, mcs nAts: 25\n", "[#6]-[#6]-[#6]-[#7]1:[#6](=[#8]):[#6]2:[#7]:[#6](-[#6]3:[#6]:[#6](-[#8]-[#6]-[#6]):[#7]:[#8,#7]:3):[#7,#6]:[#6]:2:[#7](:[#6]:1=[#8])-[#6]-[#6]-[#6]\n", "Row: 799 Inhibition of bovine brain mitochondria MAOB by fluorometric assay\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 15.4, mcs nAts: 8\n", "[#6]-[#7]-[#6]-[#6]1:[#6,#7]:[#6]:[#6]:[#7,#6]:1\n", "Row: 800 Inhibition of bovine brain mitochondria MAOA by fluorometric assay\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 15.4, mcs nAts: 8\n", "[#6]-[#7]-[#6]-[#6]1:[#6,#7]:[#6]:[#6]:[#7,#6]:1\n", "Row: 801 Binding affinity to human bradykinin B1 receptor\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 50.1, mcs nAts: 40\n", "[#6]-[#6]1:[#6]:[#6](-[#6]):[#6]2:[#6](:[#7]:1):[#6](:[#6]:[#6]:[#6]:2)-[#8]-[#6]-[#6]1:[#6](-[#17]):[#6]:[#6]:[#6](:[#6]:1-[#17])-[#16](=[#8])(=[#8])-[#7]-[#6]-[#6](=[#8])-[#7]1-[#6]-[#6]-[#7](-[#6]-[#6]-1)-[#6](=[#8,#7])-[#6,#7]-[#7,#6]-[#6,#7]\n", "Row: 802 Displacement of [3H]BK from human bradykinin B2 receptor transfected in CHO cells\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 50.1, mcs nAts: 40\n", "[#6]-[#6]1:[#6]:[#6](-[#6]):[#6]2:[#6](:[#7]:1):[#6](:[#6]:[#6]:[#6]:2)-[#8]-[#6]-[#6]1:[#6](-[#17]):[#6]:[#6]:[#6](:[#6]:1-[#17])-[#16](=[#8])(=[#8])-[#7]-[#6]-[#6](=[#8])-[#7]1-[#6]-[#6]-[#7](-[#6]-[#6]-1)-[#6](=[#8,#7])-[#6,#7]-[#7,#6]-[#6,#7]\n", "Row: 803 Inhibition of human recombinant PDE10A assessed as inhibition of [3H]cAMP hydrolysis by scintillation proximity assay\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 25.3, mcs nAts: 18\n", "[#6]-[#8]-[#6]1:[#6]:[#6]2:[#6](:[#6]:[#6]:1-[#8]-[#6])-[#6]1:[#6](-[#6]):[#7]:[#6]:[#7]:1-[#6]-[#6]-2\n", "Row: 804 Displacement of [3H]-(R)alpha-methylhistamine from human histamine H3 receptor expressed in human HEK293T cells\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 28.2, mcs nAts: 15\n", "[#7,#6]1-[#6,#7]-[#6]-[#6](-[#6]-1)-[#7]-[#6](=[#8])-[#6]1:[#6]:[#6]:[#6](:[#6]:[#6]:1)-[#7,#6]\n", "Row: 805 Displacement of [3H]histamine from human H4 receptor expressed in HEK cell membranes\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 21.8, mcs nAts: 7\n", "[#6,#7,#8]-[#7,#6]1-,:[#6,#7]-,:[#6]-,:[#7,#6]-,:[#6]-,:[#6,#7]-,:1\n", "Row: 806 Ki value against human carbonic anhydrase I (hCA I)\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 15.3, mcs nAts: 5\n", "[#6,#7,#8]-[#16,#6](-,=[#7,#8,#9])(=,-[#8,#9])=,-[#8,#6,#7,#9]\n", "Row: 807 Inhibition of full length human recombinant MMP13 using MCA-Arg-Pro-Leu-Gly-Leu-Dpa-Ala-Arg-Glu-Arg-NH2 as substrate preincubated for 60 mins followed by substrate addition by fluorescence assay\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 33.2, mcs nAts: 30\n", "[#8,#6,#9,#17]-[#6]1:[#6]:[#6]:[#6]:[#6](:[#6]:1)-[#6]-[#7]-[#6](=[#8])-[#6]1:[#6]:[#6](-[#6]2:[#7]:[#7]:[#7](:[#7]:2)-[#6]-[#6]2-[#6]-[#6,#8]-[#6,#7]-[#6,#8]-[#8,#6]-2):[#6,#7]:[#6](:[#7]:1)-[#6]\n", "Row: 808 Binding affinity for recombinant human CRF1 receptor\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 27.7, mcs nAts: 25\n", "[#6,#8]-[#6]-[#6]-[#7](-[#6]-[#6])-[#6]1:[#6]:[#6](-[#6]):[#7]:[#6]2:[#7,#6]:1:[#7,#6]:[#6](:[#6,#7]:2-[#6]1:[#7,#6]:[#6]:[#6](:[#6]:[#6]:1-[#17,#6,#7,#8])-[#17,#6,#7,#8,#9,#53])-[#6]\n", "Row: 809 Inhibitory constant against human purified Coagulation factor Xa (fXa)\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 41.2, mcs nAts: 23\n", "[#6,#7,#8]-,=[#7,#6]-[#6]-[#6](-[#6]-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1)-[#6]1:,=[#6]:,-[#7,#8,#16]:,-[#6]2:[#6]:,-1:[#6]:[#6](:[#6]:[#6]:2)-[#6](=[#7])-[#7]\n", "Row: 810 Inhibitory constant against human purified Coagulation factor IXa (fIXa)\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 41.2, mcs nAts: 23\n", "[#6,#7,#8]-,=[#7,#6]-[#6]-[#6](-[#6]-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1)-[#6]1:,=[#6]:,-[#7,#8,#16]:,-[#6]2:[#6]:,-1:[#6]:[#6](:[#6]:[#6]:2)-[#6](=[#7])-[#7]\n", "Row: 811 In vitro displacement of CP-55940 binding to human CB1 receptor expressed in CHO cells\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 30.4, mcs nAts: 24\n", "[#6,#7,#8]-[#7,#8]-[#6](=[#8])-[#6]1:[#7,#6,#16]:[#6,#7](-[#6]2:[#6]:[#6]:[#6](:[#6]:[#6]:2-[#17])-[#17]):[#7,#6](:[#6,#7,#16]:1)-[#6]1:[#6]:[#6]:[#6](:[#6]:[#6,#7]:1)-[#17,#6,#8,#9,#35]\n", "Row: 812 BindingDB_Patents: Radioligand Binding Assay. The relative affinity of the various compounds for the human 5-HT3 receptor was measured in a radioligand binding assay, using a scintillation proximity assay (SPA) format.\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 24.5, mcs nAts: 9\n", "[#6,#7]1:,-[#6]:,-[#6]2:[#6](:[#6]:,-[#7,#6]:,-1):[#7,#6]:[#7,#6]:[#6,#7]:2\n", "Row: 813 Inhibitory effect on bovine Carbonic anhydrase IV\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 21.3, mcs nAts: 5\n", "[#6,#7,#8]-,=[#6,#16](=,-[#8,#6])-[#7,#6,#8]-,=[#6,#8]\n", "Row: 814 Inhibition of Bcl-2 (unknown origin) by fluorescence polarization assay\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 33.5, mcs nAts: 20\n", "[#6]1:[#6]:[#6]:[#6](:[#6]:[#6]:1)-[#6]=[#6]1-[#16]-[#6](=[#16])-[#7](-[#6]-1=[#8])-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1\n", "Row: 815 In vitro inhibitory constant against [3H]spiperone binding to human dopamine D2 receptor expressed in CHO cells\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 29.2, mcs nAts: 20\n", "[#6]1:[#6]:[#6]2:[#6](:[#6](:[#6]:1)-[#7]1-[#6]-[#6]-[#7](-[#6]-[#6]-1)-[#6]-[#6]-[#6]-[#6])-[#8,#6]-[#6]-[#6]-[#8,#7]-2\n", "Row: 816 In vitro inhibitory constant against [3H]paroxetine binding to rat frontal cortex membrane serotonin reuptake site\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 28.9, mcs nAts: 20\n", "[#6]1:[#6]:[#6]2:[#6](:[#6](:[#6]:1)-[#7]1-[#6]-[#6]-[#7](-[#6]-[#6]-1)-[#6]-[#6]-[#6]-[#6])-[#8,#6]-[#6]-[#6]-[#8,#7]-2\n", "Row: 817 Inhibitory activity against Hepatitis C virus NS3 serine protease in continuous spectrophotometric assay\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 47.0, mcs nAts: 22\n", "[#6]-[#6]-[#6]-[#6](-[#7]-[#6](=[#8])-[#6])-[#6](=[#8])-[#6](=[#8])-[#7]-[#6]-[#6](=[#8])-[#7]-[#6](-[#6])-[#6](-,=[#7,#6,#8])=,-[#8,#6]\n", "Row: 818 Binding affinity to human ER-beta ligand binding domain after 2 hrs by competitive fluorometric binding assay\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 43.6, mcs nAts: 31\n", "[#8]=[#16](=[#8])(-[#8]-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1)-[#6]1-[#6]-[#6]2-[#8]-[#6]-1-[#6](-[#6]1:[#6]:[#6]:[#6](:[#6]:[#6]:1)-[#8,#7])=[#6]-2-[#6]1:[#6]:[#6]:[#6](:[#6]:[#6]:1)-[#8]\n", "Row: 819 Ability to inhibit [3H]DA uptake through DAT in rat synaptosomes\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 23.2, mcs nAts: 19\n", "[#6]-[#7]1-[#6]-[#6]-[#6](-[#6](-[#6]-1)-[#6]-[#16]-[#6]-[#6]-,=[#8,#7])-[#6]1:[#6]:[#6]:[#6](:[#6]:[#6]:1)-[#17]\n", "Row: 820 Ability to inhibit [3H]5-HT uptake through SERT in rat synaptosomes\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 23.2, mcs nAts: 19\n", "[#6]-[#7]1-[#6]-[#6]-[#6](-[#6](-[#6]-1)-[#6]-[#16]-[#6]-[#6]-,=[#8,#7])-[#6]1:[#6]:[#6]:[#6](:[#6]:[#6]:1)-[#17]\n", "Row: 821 Ability to inhibit [3H]NE uptake through NET in rat synaptosomes\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 23.2, mcs nAts: 19\n", "[#6]-[#7]1-[#6]-[#6]-[#6](-[#6](-[#6]-1)-[#6]-[#16]-[#6]-[#6]-,=[#8,#7])-[#6]1:[#6]:[#6]:[#6](:[#6]:[#6]:1)-[#17]\n", "Row: 822 Binding affinity to human ER-alpha ligand binding domain after 2 hrs by competitive fluorometric binding assay\n", " * postgresql://localhost/chembl_23\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Mean nAts 43.6, mcs nAts: 31\n", "[#8]=[#16](=[#8])(-[#8]-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1)-[#6]1-[#6]-[#6]2-[#8]-[#6]-1-[#6](-[#6]1:[#6]:[#6]:[#6](:[#6]:[#6]:1)-[#8,#7])=[#6]-2-[#6]1:[#6]:[#6]:[#6](:[#6]:[#6]:1)-[#8]\n", "Row: 823 Displacement of [125I]NDP-MSH from human MC4R expressed in HEK293 cells\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 43.5, mcs nAts: 38\n", "[#6,#8]-,=[#6](=,-[#8,#6])-[#7]-[#6](-[#6]-[#6]1:[#6]:[#6]:[#6](:[#6]:[#6]:1)-[#17])-[#6](=[#8])-[#7]1-[#6]-[#6]-[#7](-[#6]-[#6]-1)-[#6]1(-[#6]-[#7]-[#6](=[#8])-[#6]-[#6]2:[#6]:[#6]:[#6]:[#6]:[#6]:2)-[#6]-[#6]-[#6]-[#6]-[#6]-1\n", "Row: 824 Displacement of [3H]-N-methylspiperone from human dopamine D4 receptor expressed in HEK293 cell membranes after 1 hr by liquid scintillation counting analysis\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 33.4, mcs nAts: 28\n", "[#8,#17]-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1-[#7]1-[#6]-[#6]-[#7](-[#6]-[#6]-1)-[#6]-[#6]-[#6]-[#6]-[#6,#7]1:[#6]:[#7,#6](-[#6]2:[#6]:[#6]:[#6]:[#6]:[#6]:2):[#7]:[#7]:1\n", "Row: 825 Displacement of [3H]-N-methylspiperone from human dopamine D3 receptor expressed in HEK293 cell membranes after 1 hr by liquid scintillation counting analysis\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 33.4, mcs nAts: 28\n", "[#8,#17]-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1-[#7]1-[#6]-[#6]-[#7](-[#6]-[#6]-1)-[#6]-[#6]-[#6]-[#6]-[#6,#7]1:[#6]:[#7,#6](-[#6]2:[#6]:[#6]:[#6]:[#6]:[#6]:2):[#7]:[#7]:1\n", "Row: 826 Binding affinity to human muscarinic M2 receptor\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 26.3, mcs nAts: 15\n", "[#6,#8]-[#6](-[#6]#[#6]-[#6]1(-[#8]-[#6])-[#6]-[#7]2-[#6]-[#6]-[#6]-1-[#6]-[#6]-2)-[#6,#8]\n", "Row: 827 Displacement of [3H]-N-methylspiperone from human dopamine D2 receptor expressed in HEK293 cell membranes after 1 hr by liquid scintillation counting analysis\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 33.4, mcs nAts: 28\n", "[#8,#17]-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1-[#7]1-[#6]-[#6]-[#7](-[#6]-[#6]-1)-[#6]-[#6]-[#6]-[#6]-[#6,#7]1:[#6]:[#7,#6](-[#6]2:[#6]:[#6]:[#6]:[#6]:[#6]:2):[#7]:[#7]:1\n", "Row: 828 Binding affinity against Cysteinyl leukotriene D4 receptor from guinea pig lung was determined using [3H]-LTD4 (0.2 nM)\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 32.2, mcs nAts: 18\n", "[#6]1:[#6]:[#6]:[#6]:[#6](:[#6]:1)-[#8,#6]-,=[#6]-[#6]1:[#6]:[#6]:[#6]2:[#6](:[#7]:1):[#6]:[#6]:[#6]:[#6]:2\n", "Row: 829 Displacement of [125I]I-AB-MECA from human recombinant A3 adenosine receptor expressed in CHO cells after 60 mins by liquid scintillation counting\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 31.9, mcs nAts: 26\n", "[#6]-[#7]-[#6](=[#8])-[#6]12-[#6]-[#6]-1-[#6](-[#7]1:[#6]:[#7]:[#6]3:[#6]:1:[#7]:[#6](:[#7]:[#6]:3-[#7]-[#6])-[#6]#[#6]-[#6])-[#6](-[#6]-2-[#8])-[#8]\n", "Row: 830 Displacement of 2-[125I]iodomelatonin from human recombinant MT1 receptor expressed in NIH3T3 cells\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 21.4, mcs nAts: 16\n", "[#8]-[#6]1:[#6]:[#6]:[#6]2:[#6](:[#6]:1):[#6](:[#6]:[#7]:2)-[#6]-[#6]-[#7]-[#6](-,=[#6,#8])=,-[#8,#6]\n", "Row: 831 Displacement of 2-[125I]iodomelatonin from human recombinant MT2 receptor expressed in NIH3T3 cells\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 21.4, mcs nAts: 16\n", "[#8]-[#6]1:[#6]:[#6]:[#6]2:[#6](:[#6]:1):[#6](:[#6]:[#7]:2)-[#6]-[#6]-[#7]-[#6](-,=[#6,#8])=,-[#8,#6]\n", "Row: 832 Binding affinity to human histamine H3 receptor expressed in HEK293 cells\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 21.7, mcs nAts: 19\n", "[#6]-[#7](-[#6])-[#6]1-[#6]-[#6]2:[#6]:[#6]:[#6]:[#6]:[#6]:2-[#6](-[#6]-1)-[#6]1:,-[#6]:,-[#6]:,-[#6]:,-[#6]:,-[#6]:,-1\n", "Row: 833 Displacement of [3H]Mesulergine from human 5-HT2C-INI receptor expressed in HEK293 cells by scintillation counting analysis\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 21.7, mcs nAts: 19\n", "[#6]-[#7](-[#6])-[#6]1-[#6]-[#6]2:[#6]:[#6]:[#6]:[#6]:[#6]:2-[#6](-[#6]-1)-[#6]1:,-[#6]:,-[#6]:,-[#6]:,-[#6]:,-[#6]:,-1\n", "Row: 834 Displacement of [3H]Mesulergine from human 5-HT2B receptor expressed in HEK293 cells by scintillation counting analysis\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 21.7, mcs nAts: 19\n", "[#6]-[#7](-[#6])-[#6]1-[#6]-[#6]2:[#6]:[#6]:[#6]:[#6]:[#6]:2-[#6](-[#6]-1)-[#6]1-,:[#6]-,:[#6]-,:[#6]-,:[#6]-,:[#6]-,:1\n", "Row: 835 Displacement of [3H]Ketanserin from human 5-HT2A receptor expressed in HEK293 cells by scintillation counting analysis\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 21.7, mcs nAts: 19\n", "[#6]-[#7](-[#6])-[#6]1-[#6]-[#6]2:[#6]:[#6]:[#6]:[#6]:[#6]:2-[#6](-[#6]-1)-[#6]1:,-[#6]:,-[#6]:,-[#6]:,-[#6]:,-[#6]:,-1\n", "Row: 836 Binding affinity to MCHR1 by competitive binding assay\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 37.0, mcs nAts: 18\n", "[#6,#8]-,=[#6](=,-[#8,#6])-[#7](-[#6])-[#6]1-[#6]-[#6]-[#7](-[#6]-1)-[#6](=[#8])-[#7]1-[#6]-[#6]-[#6](-[#6]-1)-[#7]\n", "Row: 837 Inhibition of DLK (unknown origin)\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 29.6, mcs nAts: 19\n", "[#6]1:,-[#7,#6]:,-[#6,#7](-[#7,#6]-[#6]2:[#6,#7]:[#6]:[#6]:[#6]:[#7,#6]:2):,-[#6,#7]:,-[#6](:,-[#7,#6]:,-1)-[#6,#7]1-,:[#6]-,:[#6]-,:[#6,#7,#8]-,:[#7,#6]-,:[#6,#7]-,:1\n", "Row: 838 Displacement of [3H]CP-55,940 from human recombinant CB2 receptor expressed in HEK293 cell membranes\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 31.8, mcs nAts: 20\n", "[#6,#8]-[#6]1:[#6]:[#6]:[#6]:[#6](:[#6]:1)-[#8]-[#6]-[#6]-[#6]-[#6]-[#6]-[#6]-[#6]-[#6]-[#6,#7]-[#7,#6]-[#6]-,=[#6,#7,#8,#9]\n", "Row: 839 Displacement of [3H]CP-55,940 from human recombinant CB1 receptor expressed in HEK293 cell membranes\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 31.7, mcs nAts: 20\n", "[#6,#8]-[#6]1:[#6]:[#6]:[#6]:[#6](:[#6]:1)-[#8]-[#6]-[#6]-[#6]-[#6]-[#6]-[#6]-[#6]-[#6]-[#6,#7]-[#7,#6]-[#6]-,=[#6,#7,#8,#9]\n", "Row: 840 Inhibition of ERK2 by spectrophotometric coupled-enzyme assay\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 28.5, mcs nAts: 20\n", "[#6,#8]-[#7]-[#6](=[#8])-[#6]1:[#6]:[#6](-[#6]2:[#7]:[#7]:[#6]:[#6]:2-[#6]2:[#6]:[#6]:[#6]:[#6]:[#6]:2):[#6]:[#7]:1\n", "Row: 841 Inhibition of JNK3 at 10 nM by spectrophotometric coupled-enzyme assay\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 28.5, mcs nAts: 20\n", "[#6,#8]-[#7]-[#6](=[#8])-[#6]1:[#6]:[#6](-[#6]2:[#7]:[#7]:[#6]:[#6]:2-[#6]2:[#6]:[#6]:[#6]:[#6]:[#6]:2):[#6]:[#7]:1\n", "Row: 842 In vitro binding affinity for histamine H3 receptor was determined in guinea-pig cerebral cortex using [3H](R)-alpha-methylhistamine\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 21.7, mcs nAts: 12\n", "[#6,#7,#16](-[#6,#7,#16]-[#6,#7]1:,-[#6]:,-[#6]:,-[#6]:,-[#6]:,-[#6]:,-1)-,=[#7,#6,#16]-[#6,#7]-[#6,#7]-[#6,#7]\n", "Row: 843 Displacement of [3H]8-OH-DPAT from 5HT1AR (unknown origin) by competition binding assay\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 27.2, mcs nAts: 16\n", "[#7,#6]-[#6]-[#6]-[#6]-[#7]1-[#6]-[#6]-[#7](-[#6]-[#6]-1)-[#6]1:[#6,#7]:[#6]:[#6]:[#6]:[#6,#7]:1\n", "Row: 844 Binding affinity to human cloned adrenergic alpha-1a receptor\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 36.1, mcs nAts: 30\n", "[#6]-[#8]-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1-[#6]1-[#6]-[#6]-[#7](-[#6]-[#6]-1)-[#6]1-[#6]-[#6]-[#6](-[#6]-[#6]-1)-[#7]-[#16](=[#8])(=[#8])-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1\n", "Row: 845 Binding affinity to human cloned adrenergic alpha-1b receptor\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 36.1, mcs nAts: 30\n", "[#6]-[#8]-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1-[#6]1-[#6]-[#6]-[#7](-[#6]-[#6]-1)-[#6]1-[#6]-[#6]-[#6](-[#6]-[#6]-1)-[#7]-[#16](=[#8])(=[#8])-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1\n", "Row: 846 Binding affinity to human cloned adrenergic alpha-1d receptor\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 36.1, mcs nAts: 30\n", "[#6]-[#8]-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1-[#6]1-[#6]-[#6]-[#7](-[#6]-[#6]-1)-[#6]1-[#6]-[#6]-[#6](-[#6]-[#6]-1)-[#7]-[#16](=[#8])(=[#8])-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1\n", "Row: 847 Inhibition of human NE\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 17.7, mcs nAts: 9\n", "[#8,#6,#7]=,-[#6](-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1)-,=[#7,#6,#8]\n", "Row: 848 Displacement of [125I]motilin from human motilin receptor expressed in CHO cells\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 41.7, mcs nAts: 37\n", "[#6]-[#6](-[#6])-[#6]1-[#7]-[#6](=[#8])-[#6](-[#6]-[#6]2:[#6]:[#6]:[#6]:[#6]:[#6]:2)-[#7]-[#6]-[#6]-[#8]-[#6]2:[#6]:[#6]:[#6]:[#6]:[#6]:2-[#6]-,=[#6]-[#6]-[#7]-[#6](-[#6](-[#7]-[#6]-1=[#8])-[#6]-[#7,#6])=[#8]\n", "Row: 849 Inhibition of human DAT expressed in COS1 cells\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 18.8, mcs nAts: 7\n", "[#6]-[#6]1:,=[#6]:,-[#6]:,-[#6]:,-[#6]:,-[#6]:,-1\n", "Row: 850 Binding affinity to human SERT\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 28.2, mcs nAts: 12\n", "[#7,#6]-[#6,#8]-,#[#6]-[#6]-,#[#8,#6]-[#6,#7]1:,-[#6]:,-[#6]:,-[#6,#7](:,-[#6]:,-[#6]:,-1)-[#6,#8,#9]\n", "Row: 851 Displacement of [3H]DPCPX from human adenosine A1 receptor expressed in CHO cells\n", " * postgresql://localhost/chembl_23\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Mean nAts 26.4, mcs nAts: 21\n", "[#8,#7]=,-[#6]1:[#7]:[#6]2:[#6]:[#6]:[#6]:[#6]:[#6]:2:[#7]2:[#7]:1:[#7]:[#6](:[#6]:2=[#8])-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1\n", "Row: 852 Displacement of [3H]NECA from human adenosine A2A receptor expressed in CHO cells\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 26.4, mcs nAts: 21\n", "[#8,#7]=,-[#6]1:[#7]:[#6]2:[#6]:[#6]:[#6]:[#6]:[#6]:2:[#7]2:[#7]:1:[#7]:[#6](:[#6]:2=[#8])-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1\n", "Row: 853 Displacement of [3H]AB-MECA from human adenosine A3 receptor expressed in CHO cells\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 26.4, mcs nAts: 21\n", "[#8,#7]=,-[#6]1:[#7]:[#6]2:[#6]:[#6]:[#6]:[#6]:[#6]:2:[#7]2:[#7]:1:[#7]:[#6](:[#6]:2=[#8])-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1\n", "Row: 854 Displacement of [3H]spiperone from human D2 receptor transfected in HEK cells\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 132.7, mcs nAts: 11\n", "[#6,#8]-,=[#6]-[#7,#6]1-[#6]-[#6]-[#6]-[#6,#7]-1-[#6]-[#7,#6]-[#6]=,-[#8,#6]\n", "Row: 855 Displacement of [3H]-(+)-pentazocine from sigma 1 receptor in Dunkin Hartley guinea pig membrane after 180 mins by liquid scintillation counting analysis\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 27.7, mcs nAts: 15\n", "[#8,#6]=,-[#6,#7]1-[#6]-[#6]-[#6]:,-[#6](-,:[#7,#6]-1):[#6]:[#6](:[#6]:[#6])-[#8]-[#6]-[#6]-[#6,#7]\n", "Row: 856 Displacement of [3H]ezetimibe-glucuronide from NPC1L1 in Sprague-Dawley rat brush border membrane\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 32.2, mcs nAts: 27\n", "[#8]=[#6]1-[#8]-[#6](-[#6]-[#6,#7]-[#6,#7,#8]-[#6]2:[#6]:[#6]:[#6]:[#6]:[#6]:2)-[#6](-[#7]-1-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1)-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1\n", "Row: 857 Displacement of [3H]nociceptin from human NOP receptor expressed in CHO cells\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 38.4, mcs nAts: 34\n", "[#6,#7]-[#6]-[#7]1:[#6](=[#8]):[#7](-[#6]2-[#6]-[#6]-[#7](-[#6]-[#6]-2)-[#6]-[#6]-[#6](-[#8]-[#6]2:[#6]:[#6](-[#8]-[#6]):[#6]:[#6]:[#6]:2-[#6])-[#6](-[#6])-[#6]):[#6]2:[#6]:1:[#6]:[#6]:[#6]:[#6]:2\n", "Row: 858 Displacement of [3H]nisoxetine from human norepinephrine transporter expressed in MDCK-Net6 cells\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 24.3, mcs nAts: 16\n", "[#7]-[#6]-[#6](-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1)-[#6]1(-[#8])-[#6]-[#6]-[#6]-[#6]-[#6]-1\n", "Row: 859 Displacement of [3H]DPCPX from human cloned adenosine A2B receptor expressed in HEK293 cells\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 25.8, mcs nAts: 19\n", "[#6]-[#7]1:[#6](=[#8]):[#6]2:[#7]:[#6](-[#6]3:[#6]:[#6]:[#6]:[#6]:[#6]:3):[#6]:[#6]:2:[#7](:[#6]:1=[#8])-[#6]\n", "Row: 860 Displacement of [3H]DPCPX from human cloned adenosine A1 receptor expressed in CHO cells\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 25.8, mcs nAts: 19\n", "[#6]-[#7]1:[#6](=[#8]):[#6]2:[#7]:[#6](-[#6]3:[#6]:[#6]:[#6]:[#6]:[#6]:3):[#6]:[#6]:2:[#7](:[#6]:1=[#8])-[#6]\n", "Row: 861 Displacement of [3H]-8-OH-DPAT from 5-HT1A receptor in Sprague-Dawley rat cerebral cortex after 15 mins\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 27.5, mcs nAts: 19\n", "[#8]=[#6]1-[#6]2-[#6]-[#6]-[#6]-[#7]-2-[#6](-[#7]-1-[#6]-[#6]-[#6]-[#6]-[#7]-[#6]-[#6]-[#8,#6]-[#6])=[#8]\n", "Row: 862 Inhibition of JAK2 (unknown origin)\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 27.1, mcs nAts: 12\n", "[#6]-[#7]-[#6]1:[#7]:[#6,#7]2:[#6]:[#6]:[#6]:[#6](:[#7,#6]:2:[#7]:1)-[#6]\n", "Row: 863 Displacement of [3H](+)pentazocine from sigma1 receptor in Dunkin Hartley guinea pig brain membrane after 120 mins by liquid scintillation counting analysis\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 23.4, mcs nAts: 15\n", "[#6]1:[#6]:[#6]:[#6](:[#6]:[#6]:1)-[#6,#16]-[#7,#6]1-[#6]-[#6]-[#7,#6](-[#6]-[#6]-1)-[#6,#16]-,=[#6,#8]\n", "Row: 864 Displacement of [125I]hCGRP from human cloned CGRP receptor expressed in HEK93 cells\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 33.9, mcs nAts: 30\n", "[#6]-[#7]1-[#6](=[#8])-[#7]-[#6](-[#6]-12-[#6]-[#6]1:[#6]:[#6]:[#6](:[#6]:[#6]:1-[#6]-2)-[#7]-[#6](=[#8])-[#6]-[#7]1:[#6](=[#8]):[#7]:[#6]2:[#6]:1:[#6]:[#6]:[#6]:[#6]:2)=[#8]\n", "Row: 865 Inhibition of human recombinant 11beta-HSD1 expressed in Escherichia coli using [3H]cortisone by scintillation proximity assay\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 24.6, mcs nAts: 17\n", "[#6]-[#6](-[#7]-[#6]1=[#7]-[#6](=[#8])-[#6](-[#16]-1)(-[#6])-[#6])-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1\n", "Row: 866 Displacement of [3H]ketanserin from 5HT2A receptor in rat cortical membrane\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 31.2, mcs nAts: 15\n", "[#7,#6]-[#6]-[#6]-[#7]1-[#6]-[#6]-[#7](-[#6]-[#6]-1)-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1\n", "Row: 867 Displacement of [3H]rimonabant from human CB1 receptor expressed in HEK293 cells by liquid scintillation counting\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 33.5, mcs nAts: 8\n", "[#6,#7,#8]-,=[#16,#6,#7,#8]-[#6,#7]1:,-[#7,#6]:,-[#7,#6]:,-,=[#6,#7]:,-[#6]:,-[#7,#6]:,-1\n", "Row: 868 Displacement of [3H]rimonabant from human CB2 receptor expressed in HEK293 cells by liquid scintillation counting\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 33.5, mcs nAts: 8\n", "[#6,#7,#8]-,=[#16,#6,#7,#8]-[#6,#7]1:,-[#7,#6]:,-[#7,#6]:,-,=[#6,#7]:,-[#6]:,-[#7,#6]:,-1\n", "Row: 869 Displacement of [3H]8-OH-DPAT from human 5HT1A receptor expressed in CHO cells\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 21.2, mcs nAts: 14\n", "[#6,#8]-,=[#8,#6]-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1-[#6,#7]1-[#6]-[#6]-[#7]-[#6]-[#6]-1\n", "Row: 870 Displacement of [125I]RTI-55 from human NET expressed in HEK293 cells\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 21.2, mcs nAts: 14\n", "[#6,#8]-,=[#8,#6]-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1-[#6,#7]1-[#6]-[#6]-[#7]-[#6]-[#6]-1\n", "Row: 871 Displacement of [125I]RTI-55 from human DAT expressed in HEK293 cells\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 21.2, mcs nAts: 14\n", "[#6,#8]-,=[#8,#6]-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1-[#6,#7]1-[#6]-[#6]-[#7]-[#6]-[#6]-1\n", "Row: 872 Displacement of [125I]RTI-55 from human SERT expressed in HEK293 cells\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 21.2, mcs nAts: 14\n", "[#6,#8]-,=[#8,#6]-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1-[#6,#7]1-[#6]-[#6]-[#7]-[#6]-[#6]-1\n", "Row: 873 Inhibition of HIV1 protease expressed in Escherichia coli by fluorometric assay\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 47.6, mcs nAts: 22\n", "[#6,#8]-,=[#6]-[#6,#7]-[#7,#6](-[#6,#7]-[#6](-,=[#8])-[#6](-[#6]-[#6])-[#7]-[#6](=[#8])-[#8,#6]-[#6,#8])-[#16,#6]-[#6]1:[#6]:[#6]:[#6,#7]:[#6,#7]:[#6,#7]:1\n", "Row: 874 Binding affinity to human DRD3 receptor by GTPgammaS binding assay\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 27.5, mcs nAts: 15\n", "[#7,#6]-[#6]-[#6,#16]-[#7,#6]1-,:[#6,#7]-,:[#6,#7]-,:[#7,#6](-,:[#6,#7]-,:1=,-[#8,#6])-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1\n", "Row: 875 Binding affinity to human DRD2 receptor by GTPgammaS binding assay\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 27.5, mcs nAts: 15\n", "[#7,#6]-[#6]-[#6,#16]-[#7,#6]1-,:[#6,#7]-,:[#6,#7]-,:[#7,#6](-,:[#6,#7]-,:1=,-[#8,#6])-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1\n", "Row: 876 Displacement of [3H]histamine from human histamine H4 receptor expressed in Sf9 cells co-expressing Galphai2 and Gbeta1gamma2\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 22.6, mcs nAts: 13\n", "[#6]-[#7]1-[#6]-[#6]-[#7](-[#6]-[#6]-1)-[#6]1:[#6,#7]:[#6]:[#7]:[#6]:[#7,#6]:1\n", "Row: 877 Inhibition of human DPP4\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 26.1, mcs nAts: 21\n", "[#6,#7]-[#6]1:[#6,#7]:[#6]2:[#7]:[#6](-[#6]):[#6](:[#6](:[#7]:2:[#7,#6]:1)-[#6]1:[#6]:[#6]:[#6](:[#6]:[#6]:1-[#17])-[#17])-[#6]-[#7]\n", "Row: 878 Inhibition of human DPP8\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 26.1, mcs nAts: 21\n", "[#6,#7]-[#6]1:[#6,#7]:[#6]2:[#7]:[#6](-[#6]):[#6](:[#6](:[#7]:2:[#7,#6]:1)-[#6]1:[#6]:[#6]:[#6](:[#6]:[#6]:1-[#17])-[#17])-[#6]-[#7]\n", "Row: 879 Inhibition of human DPP89\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 26.1, mcs nAts: 21\n", "[#6,#7]-[#6]1:[#6,#7]:[#6]2:[#7]:[#6](-[#6]):[#6](:[#6](:[#7]:2:[#7,#6]:1)-[#6]1:[#6]:[#6]:[#6](:[#6]:[#6]:1-[#17])-[#17])-[#6]-[#7]\n", "Row: 880 Displacement of [3H]oxytocin from human oxytocin receptor\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 35.8, mcs nAts: 30\n", "[#6]-[#6]-[#6]-[#6]1-[#6](=[#8])-[#7]-[#6](-[#6](-[#7]-1-[#6](-[#6](=[#8])-[#7])-[#6]1:[#6]:[#6,#7]:[#6]:[#7,#6]:[#6]:1)=[#8])-[#6]1-[#6]-[#6]2:[#6]:[#6]:[#6]:[#6]:[#6]:2-[#6]-1\n", "Row: 881 Inhibition of bovine thrombin using MeSO2-D-Cha-Gly-Arg-pNA as substrate\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 43.2, mcs nAts: 33\n", "[#7]=[#6](-[#7])-[#6]1:[#6]:[#6]:[#6]:[#6](:[#6]:1)-[#6]-[#6](-[#7]-[#16](=[#8])(=[#8])-[#6]1:[#6]:[#6]:[#6]:[#6](:[#6]:1)-[#7,#6])-[#6](=[#8])-[#7]1-[#6]-[#6]-[#6](-[#6]-[#6]-1)-[#7,#6]-[#6]-,=[#7,#6,#8]\n", "Row: 882 Displacement of [125I]NDP-MSH from HEK293 cells expressing human melanocortin-4 receptor\n", " * postgresql://localhost/chembl_23\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Mean nAts 44.4, mcs nAts: 38\n", "[#7,#6]-[#6]-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1-[#7]1-[#6]-[#6]-[#7](-[#6]-[#6]-1)-[#6](=[#8])-[#6](-[#6]-[#6]1:[#6]:[#6]:[#6](:[#6]:[#6]:1)-[#17])-[#7]-[#6](=[#8])-[#6]1-[#6]-[#6]2:[#6]:[#6]:[#6]:[#6]:[#6]:2-[#6]-[#7]-1\n", "Row: 883 Displacement of radioligand [125I]AB-MECA binding at rat A3 receptor expressed in CHO cells\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 36.2, mcs nAts: 25\n", "[#6]-[#6]-[#7]-[#6](=,-[#8])-[#6]1-[#8]-[#6](-[#7]2:[#6]:[#7]:[#6]3:[#6]:2:[#7]:[#6]:[#7]:[#6]:3-[#7]-[#6](=,-[#8,#7])-,=[#6,#7,#8])-[#6](-[#6]-1-[#8])-[#8]\n", "Row: 884 Displacement of [3H]N-methylspiperone from human dopamine D3 receptor by PDSP assay\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 24.5, mcs nAts: 15\n", "[#6]1:[#6]:[#6,#7]:[#6](:[#6,#7]:[#6]:1)-[#7,#6]1-[#6]-[#6]-[#7](-[#6]-[#6]-1)-[#6]-[#6]-[#6]\n", "Row: 885 Displacement of [125I]CGRP from human recombinant CL receptor /RAMP1\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 35.5, mcs nAts: 28\n", "[#6]-[#7]1:[#6]:[#6](-[#6]):[#6]:[#6](:[#6]:1=[#8])-[#7]-[#6](=[#8])-[#7]1-[#6]-[#6]-[#6](-[#6]-[#6]-1)-[#7]1:[#6](=[#8]):[#7]:[#6]2:[#6]:1:[#6]:[#6]:[#6]:[#7]:2\n", "Row: 886 Inhibition of Mycobacterium tuberculosis recombinant TMPK\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 21.9, mcs nAts: 14\n", "[#6]1:[#6]:[#7](-[#6]-[#6]2:[#6]:[#6]:[#6]:[#6]:[#6]:2):[#6](:[#7]:[#6]:1)=[#8]\n", "Row: 887 Displacement of [3H]DAMGO from human recombinant MOP receptor expressed in CHO-K1 cells after 45 mins by scintillation proximity assay\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 30.8, mcs nAts: 24\n", "[#6]-[#7](-[#6])-[#6](=[#8])-[#6]1-[#6]-[#6]2:[#6]:[#6]:[#6]:[#6]:[#6]:2-[#7]-1-[#6](=[#8])-[#6]-[#6]-[#7]1-[#6]-[#6]-,:[#6,#7]:,-[#6]-[#6]-1\n", "Row: 888 Displacement of [3H]-MRE-3008-F20 from human adenosine A3 receptor expressed in CHO cells after 120 mins by liquid scintillation counting\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 28.2, mcs nAts: 19\n", "[#6]-[#7]1:[#6,#7]:[#6](:[#7]:[#6](-[#7]):[#7]2:[#7]:[#6](-[#6]3:[#6]:[#6]:[#6]:[#8]:3):[#7]:[#6]:2):[#6]:[#6,#7]:1\n", "Row: 889 Displacement of [3H]-ZM 241385 from human adenosine A2A receptor expressed in CHO cells after 60 mins by liquid scintillation counting\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 28.2, mcs nAts: 19\n", "[#6]-[#7]1:[#6,#7]:[#6](:[#7]:[#6](-[#7]):[#7]2:[#7]:[#6](-[#6]3:[#6]:[#6]:[#6]:[#8]:3):[#7]:[#6]:2):[#6]:[#6,#7]:1\n", "Row: 890 Inhibition of human factor 10a\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 37.0, mcs nAts: 29\n", "[#6]-[#8]-[#6]1:[#6]:[#6]:[#6](:[#6]:[#6]:1)-[#7]1:[#7]:[#6](-[#6](-[#9])(-[#9])-[#9]):[#6]2:[#6]:1-[#6](=[#8])-[#7](-[#6]1:[#6]:[#6]:[#6](:[#6]:[#6]:1)-[#6])-[#6]-[#6]-2\n", "Row: 891 Displacement of [3H]-DPCPX from human adenosine A1 receptor expressed in CHO cells after 120 mins by liquid scintillation counting\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 28.2, mcs nAts: 19\n", "[#6]-[#7]1:[#6,#7]:[#6](:[#7]:[#6](-[#7]):[#7]2:[#7]:[#6](-[#6]3:[#6]:[#6]:[#6]:[#8]:3):[#7]:[#6]:2):[#6]:[#6,#7]:1\n", "Row: 892 Displacement of [3H]granisetron from 5HT3A receptor expressed in HEK293 cells after 24 hrs by scintillation counting in presence of quipazine\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 20.1, mcs nAts: 11\n", "[#7]-[#6]1:[#6,#7]:[#6,#7]:[#6]2:[#6](:[#6,#7]:1):[#6]:[#6]:[#6]:[#6]:2\n", "Row: 893 BindingDB_Patents: Lanthascreen Binding Assay. his assay was used to determine a compound's potency in inhibiting activity of LRRK2 by determining, Kiapp, IC50, or percent inhibition values. In 384 well proxiplates F black, shallow well plates LRRK2, Eu-anti-GST-antibody, Alexa Fluor Kinase tracer 236 and test compound were incubated together. Binding of the Alexa Fluor tracer to a kinase was detected by addition of a Eu-labeled anti-GST antibody. Binding of the tracer and antibody to a kinase results in a high degree of FRET, whereas displacement of the tracer with a kinase inhibitor results in a loss of FRET. Assay conditions and materials used were as follows:Final Assay Conditions:GST-LRRK2 G2019S 10 nMEu-anti-GST-antibody 2 nMKinase tracer 236 8.5 nMKinase reaction time: 1 hourTemperature: ambientTotal volume: 15 ulDMSO 1%Materials:384 well proxiplates F black shallow well Perkin Elmer cat#6008260Kinase: LRRK2 G2019S Invitrogen cat #PV4882(LOT 567054A).\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 28.1, mcs nAts: 18\n", "[#6]-[#7]-[#6]1:[#7]:[#6](-[#7]-[#6]2:[#6]:[#6]:[#6]:[#6]:[#6]:2-[#17,#8]):[#7]:[#6]:[#6]:1-[#6]-,#[#9,#7]\n", "Row: 894 Displacement of [3H]ZM241385 from human adenosine A2A receptor expressed in CHO cells after 60 mins by scintillation counter\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 35.8, mcs nAts: 30\n", "[#6,#7,#8]-,=[#6,#8]-[#7,#6]1-,:[#6]-,:[#6]-,:[#6](-,:[#6]-,:[#6]-,:1)-[#7]-[#6](=[#8])-[#7]-[#6]1:[#7]:[#6]2:[#7]:[#7](-[#6]):[#6]:[#6]:2:[#6]2:[#7]:1:[#7]:[#6](:[#7]:2)-[#6]1:[#6]:[#6]:[#6]:[#8]:1\n", "Row: 895 Inhibition of matriptase-2 (unknown origin) expressed in HEK293 cells using ln-Ala-Arg-a-Arg-para-nitroanilide as substrate by UV-vis spectrophotometry\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 43.2, mcs nAts: 33\n", "[#7]=[#6](-[#7])-[#6]1:[#6]:[#6]:[#6]:[#6](:[#6]:1)-[#6]-[#6](-[#7]-[#16](=[#8])(=[#8])-[#6]1:[#6]:[#6]:[#6]:[#6](:[#6]:1)-[#7,#6])-[#6](=[#8])-[#7]1-[#6]-[#6]-[#6](-[#6]-[#6]-1)-[#7,#6]-[#6]-,=[#7,#6,#8]\n", "Row: 896 Binding affinity to human 11beta-HSD1 by SPA assay\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 21.2, mcs nAts: 8\n", "[#6,#9]-[#6,#7]-[#6]1-,=[#8,#7]-[#6](-,=[#7,#8])=,-[#7,#6]-[#6,#8]-1\n", "Row: 897 Displacement of [3H]CP-55940 from human CB1R expressed in HEK293 cells\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 32.2, mcs nAts: 11\n", "[#6,#7]1:,-[#6]-,:[#8,#6,#7]-,:[#6,#7](-,=,:[#8,#6,#7]-,:1)-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1\n", "Row: 898 Displacement of [3H]N-alpha-methylhistamine from human H3 receptor expressed in SK-N-MC cells\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 14.7, mcs nAts: 10\n", "[#7,#6]-[#6]-[#6]-[#6]-[#6,#7]-[#6,#7]1:,-[#6,#7]:,-[#7,#6]:,-[#6,#7]:,-[#7,#6]:,-1\n", "Row: 899 Inhibition of [3H]R-PIA binding to Adenosine A1 receptor from rat brain membrane\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 36.1, mcs nAts: 25\n", "[#6]-[#6]-[#7]-[#6](=,-[#8])-[#6]1-[#8]-[#6](-[#7]2:[#6]:[#7]:[#6]3:[#6]:2:[#7]:[#6]:[#7]:[#6]:3-[#7]-[#6](=,-[#8,#7])-,=[#6,#7,#8])-[#6](-[#6]-1-[#8])-[#8]\n", "Row: 900 Displacement of [3H]MRE-3008-F20 from human adenosine A3 receptor expressed in CHO cells after 120 mins by scintillation counter\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 35.8, mcs nAts: 30\n", "[#6,#7,#8]-,=[#6,#8]-[#7,#6]1-,:[#6]-,:[#6]-,:[#6](-,:[#6]-,:[#6]-,:1)-[#7]-[#6](=[#8])-[#7]-[#6]1:[#7]:[#6]2:[#7]:[#7](-[#6]):[#6]:[#6]:2:[#6]2:[#7]:1:[#7]:[#6](:[#7]:2)-[#6]1:[#6]:[#6]:[#6]:[#8]:1\n", "Row: 901 Displacement of [3H]spiperone from dopamine D2 receptor in rat corpus striatum by beta plate scintillation counting\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 27.2, mcs nAts: 23\n", "[#6]-[#7]1:[#6](-[#6]-[#7]2-[#6]-[#6]-[#6](-[#6]-[#6]-2)-[#6]2:[#6]:[#6]:[#6]:[#6]:[#6]:2):[#7]:[#6]2:[#6]:1:[#6,#7]:[#6,#7]:[#6,#7]:[#6,#7]:2\n", "Row: 902 Competitive inhibition of human coagulation factor 11a assessed as reduction in release of p-nitroaniline after 10 to 120 mins by Michaelis-Menten equation analysis\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 36.2, mcs nAts: 24\n", "[#6,#8]-,=[#6](=,-[#8,#6])-[#7]-[#6](-[#6]-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1)-[#6]1:[#6]:[#6](-[#6]2:[#6]:[#6]:[#6]:[#7,#6]:[#6]:2):[#6,#7]:[#6,#7]:[#7,#6]:1\n", "Row: 903 Displacement of [3H]8-OH-DPAT from human cloned 5-HT1A receptor expressed in human HeLa cells\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 32.2, mcs nAts: 20\n", "[#6]-[#8]-[#6]1:[#6]:[#6]:[#6]:[#6](:[#6]:1)-[#6]-[#6]-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1-[#8]-[#6]-[#6]-[#7,#6]\n", "Row: 904 Displacement of [3H]spiroperidol from human cloned dopaminergic D2 receptor expressed in rat C6 cells\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 32.5, mcs nAts: 20\n", "[#6]-[#8]-[#6]1:[#6]:[#6]:[#6]:[#6](:[#6]:1)-[#6]-[#6]-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1-[#8]-[#6]-[#6]-[#7,#6]\n", "Row: 905 Inhibition of human AChE using acetylthiocholine as substrate after 4 hrs by robotic spectrophotometric assay\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 25.2, mcs nAts: 10\n", "[#6,#7](-,=[#6,#7]=,-[#7,#6,#8])-[#7,#6]-[#6,#7]1-,:[#6]-,:[#6,#7]-,:[#7,#6]-,:[#6,#7]-,:[#6,#7]-,:1\n", "Row: 906 Displacement of 125I-IP10 from recombinant human CXCR3 receptor expressed in Ba/F3 cell membrane after 1 to 4 hrs by scintillation counting\n", " * postgresql://localhost/chembl_23\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Mean nAts 38.5, mcs nAts: 29\n", "[#6,#8]-,=[#7,#6]-[#6,#7]-[#6]1:[#6]:[#7,#6]:[#6](:[#6](:[#6]:1)-[#17])-[#7]1-[#6]-[#6]-[#7,#6](-[#6]-[#6]-1)-[#6,#7]1-[#6]-[#6]-[#7](-[#6]-[#6]-1)-[#6]-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1\n", "Row: 907 Inhibition of MAO-B in rat liver homogenate after 60 mins by Lineweaver-Burke plot\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 27.8, mcs nAts: 13\n", "[#6]-[#7]1:[#6](=,-[#16,#7]):[#7]:[#6]2:[#6](:[#6]:1=[#8]):[#6]:[#6]:[#6]:[#6]:2\n", "Row: 908 Inhibition of MAO-A in rat liver homogenate after 60 mins by Lineweaver-Burke plot\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 27.8, mcs nAts: 13\n", "[#6]-[#7]1:[#6](=,-[#16,#7]):[#7]:[#6]2:[#6](:[#6]:1=[#8]):[#6]:[#6]:[#6]:[#6]:2\n", "Row: 909 Inhibition of Mycobacterium tuberculosis MbtA expressed in Escherichia coli assessed as ATP-[32P]Ppi exchange\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 49.2, mcs nAts: 38\n", "[#7]-[#6]1:[#7]:[#6](-[#7]2:[#6]:[#6](-[#6]):[#7]:[#7]:2):[#7]:[#6]2:[#6]:1:[#7]:[#6]:[#7]:2-[#6]1-[#8]-[#6](-[#6]-[#8]-[#16](=[#8])(=[#8])-[#7]-[#6](=[#8])-[#6]2:[#6]:[#6]:[#6]:[#6]:[#6]:2-[#8])-[#6](-[#6]-1-[#8])-[#8]\n", "Row: 910 Displacement of [3H]histamine from human H4 receptor expressed in SK-N-MC cells\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 14.7, mcs nAts: 10\n", "[#7,#6]-[#6]-[#6]-[#6]-[#6,#7]-[#6,#7]1:,-[#6,#7]:,-[#7,#6]:,-[#6,#7]:,-[#7,#6]:,-1\n", "Row: 911 Displacement of [125I]Ang 2 from AT1 receptor in rat liver membranes\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 35.2, mcs nAts: 30\n", "[#6]-[#6]-[#6]-[#6]-[#8]-[#6](=[#8])-[#7]-[#16](=[#8])(=[#8])-[#6]1:[#16]:[#6](-[#6]-[#6](-[#6])-[#6]):[#6]:[#6]:1-[#6]1:[#6]:[#6]:[#6](:[#6]:[#6,#7]:1)-[#6]-[#6,#7](-,=[#7,#6,#8])=,-[#8,#6,#7,#16]\n", "Row: 912 Displacement of [3H]8-OH-DPAT from rat brain hippocampus 5-HT1A receptor by radioligand binding assay\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 39.1, mcs nAts: 38\n", "[#8]=[#6]1:[#6](-[#6]2:[#6]:[#6]:[#6]:[#6]:[#6]:2):[#6]2:[#6]:[#6]:[#6]:[#6]:[#7]:2:[#6](:[#7]:1-[#6]-[#6]-[#6]-[#6]-[#7]1-[#6]-[#6]-,=[#6](-[#6]-[#6]-1)-[#6]1:[#6]:[#7]:[#6]2:[#6]:1:[#6]:[#6](:[#6]:[#6]:2)-[#9,#17,#35])=[#8]\n", "Row: 913 Displacement of [3H]5-HT from 5HT2B receptor expressed in HEK293 cells\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 29.8, mcs nAts: 27\n", "[#6]-[#8]-[#6]1:[#6]:[#6]:[#6](:[#6]:[#6]:1-[#8]-[#6]-[#6]-[#7]1-[#6]-[#6]-[#6,#8]-[#6]-[#6]-1)-[#7]1-[#6]-[#6]2:[#6]:[#6]:[#6]:[#6]:[#6]:2-[#6]-1=,-[#8,#6,#7]\n", "Row: 914 Displacement of [3H]CCPA from adenosine A1 receptor in pig cortical membrane\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 30.9, mcs nAts: 24\n", "[#8]-[#6]-[#6]1-[#8]-[#6](-[#7]2:[#6]:[#7]:[#6]3:[#6]:2:[#7]:[#6]:[#7]:[#6]:3-[#7]-[#6]2-[#6]-[#6]-[#8,#6]-[#6]-2)-[#6](-[#6]-1-[#8])-[#8,#6]\n", "Row: 915 Displacement of [3H]ketanserin from 5HT2A receptor expressed in HEK293 cells\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 29.8, mcs nAts: 27\n", "[#6]-[#8]-[#6]1:[#6]:[#6]:[#6](:[#6]:[#6]:1-[#8]-[#6]-[#6]-[#7]1-[#6]-[#6]-[#6,#8]-[#6]-[#6]-1)-[#7]1-[#6]-[#6]2:[#6]:[#6]:[#6]:[#6]:[#6]:2-[#6]-1=,-[#8,#6,#7]\n", "Row: 916 Displacement of [3H]mesulergine from 5HT2C receptor expressed in HEK293 cells\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 29.8, mcs nAts: 27\n", "[#6]-[#8]-[#6]1:[#6]:[#6]:[#6](:[#6]:[#6]:1-[#8]-[#6]-[#6]-[#7]1-[#6]-[#6]-[#6,#8]-[#6]-[#6]-1)-[#7]1-[#6]-[#6]2:[#6]:[#6]:[#6]:[#6]:[#6]:2-[#6]-1=,-[#8,#6,#7]\n", "Row: 917 Displacement of [3H]ZM241385 from adenosine A2B receptor expressed in HEK cells\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 35.0, mcs nAts: 25\n", "[#8]-[#6]-[#6]1-[#8]-[#6](-[#7]2:[#6]:[#7]:[#6]3:[#6]:2:[#7]:[#6](:[#7]:[#6]:3-[#7]-[#6])-[#7]2:[#6,#7]:[#6]:[#6]:[#7,#6]:2)-[#6](-[#6]-1-[#8])-[#8]\n", "Row: 918 Displacement of [3H]DPCPX from human A3 adenosine receptor expressed in CHO cells after 60 mins by liquid scintillation counting\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 22.4, mcs nAts: 15\n", "[#6,#7,#8]-,=[#6](=,-[#8,#6])-[#7]-[#6]1:[#7]:[#6](-[#6]2:[#6]:[#6]:[#6]:[#6]:[#6]:2):[#7]:[#7]:1\n", "Row: 919 Inhibition of human DPP8\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 29.6, mcs nAts: 23\n", "[#8,#6,#7]-,=[#6](=,-[#8,#7])-[#6]1:[#6]:[#7]2:[#6](-[#6]3:[#6]:[#6]:[#6](:[#6]:[#6]:3-[#17])-[#17]):[#6](-[#6]-[#7]):[#6](:[#7]:[#6]:2:[#7]:1)-[#6]\n", "Row: 920 Binding affinity for dopamine D2 receptor\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 36.4, mcs nAts: 30\n", "[#6]-[#8]-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1-[#6]1-[#6]-[#6]-[#7](-[#6]-[#6]-1)-[#6]1-[#6]-[#6]-[#6](-[#6]-[#6]-1)-[#7]-[#16](=[#8])(=[#8])-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1\n", "Row: 921 Displacement of [3H]Ketanserin from 5-HT2A receptor (unknown origin) expressed in HEK293 cells by liquid scintillation counter\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 24.2, mcs nAts: 21\n", "[#6]-[#8]-[#6]1:[#6]:,-[#6]-,:[#6,#7]-[#6]-[#7,#6]-[#6]-,:[#6](:,-[#6]-[#6]-[#6,#7]-,:[#6]:,-[#6]:[#6]:1-[#8]):[#6]:[#6]:[#6]:[#6]\n", "Row: 922 Displacement of [3H]CCPA from human adenosine A1 receptor expressed in CHO cells by Top Count analysis\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 27.2, mcs nAts: 14\n", "[#6]-[#7]1:[#6]:[#6]2:[#6](-[#6](-[#7,#8])=[#8]):[#7]:[#6](:[#7]:[#6]:2:[#7]:1)-[#7]\n", "Row: 923 In vitro inhibition of bovine trypsin(Trp).\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 29.4, mcs nAts: 11\n", "[#7]=,-[#6](-,=[#7,#8])-[#6]1:[#6]:[#6]:[#6](:[#6]:[#6]:1)-[#6]=[#6]\n", "Row: 924 Displacement of [3H]WIN-35428 from DAT in Sprague-Dawley rat striatum\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 18.5, mcs nAts: 7\n", "[#6]1:,-[#6]:,-[#6,#7]:,-[#6,#7](:,-[#6]:,-[#6,#7]:,-1)-[#6,#17]\n", "Row: 925 Displacement of [3H]oxytocin from human Oxytocin receptor\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 36.2, mcs nAts: 34\n", "[#6]-[#6](-[#6])-[#6]-[#6]1-[#6](=[#8])-[#7]-[#6](-[#6](-[#7]-1-[#6](-[#6](=[#8])-[#7]-[#6](-[#6])-[#6])-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1)=[#8])-[#6]1-[#6]-[#6]2:[#6]:[#6]:[#6]:[#6]:[#6]:2-[#6]-1\n", "Row: 926 Displacement of [3H]NECA from human adenosine A2A receptor expressed in CHO cells by Top Count analysis\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 27.2, mcs nAts: 14\n", "[#6]-[#7]1:[#6]:[#6]2:[#6](-[#6](-[#7,#8])=[#8]):[#7]:[#6](:[#7]:[#6]:2:[#7]:1)-[#7]\n", "Row: 927 Displacement of [3H]SNAP from human MCH1 receptor expressed in HEK cells\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 39.8, mcs nAts: 30\n", "[#6]-[#6]1:[#6]:[#6]:[#6](:[#6]:[#6]:1)-[#6]-[#7]1-[#6]-[#6]-[#6](-[#6]-[#6]-1)-[#7,#6]-[#6]-[#7]-[#6]-[#6]1:[#6]:[#6]:[#6](:[#6]:[#6]:1)-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1\n", "Row: 928 Displacement of [3H]DHT from human AR expressed in MDA-MB-453 cells\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 23.6, mcs nAts: 19\n", "[#8]=[#6]1:[#6]:[#6](-[#6](-[#9])(-[#9])-[#9]):[#6]2:[#6](:[#7]:1):[#6]:[#6]1:[#6](:[#6]:2)-[#7,#6]-[#6]-[#6]-[#8,#7]-1\n", "Row: 929 Displacement of [3H]SCH-58261 from human recombinant adenosine A2A receptor expressed in HEK293 cells\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 31.8, mcs nAts: 25\n", "[#6]-[#7]-[#6]1:[#7]:[#6]:[#6]2:[#6](:[#7]:1):[#7](-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1):[#6](:[#7]:2-[#6]-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1)=[#8]\n", "Row: 930 Inhibition of [3H]D-888 binding to L-type [Ca2+] channel of membranes from rat skeletal muscle\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 39.5, mcs nAts: 24\n", "[#6]=,-[#6]-[#6]-[#7]-[#6]1:[#7]:[#6](-[#7]2-[#6]-[#6]-[#6](-[#6]-[#6]-2)-[#7]-[#6]):[#6,#7]:[#6](:[#7,#6]:1):[#7](:[#6,#7]:[#7,#6])-[#6]-[#6]=,-[#6]\n", "Row: 931 Displacement of [3H](+)-pentazocine from sigma1 receptor guinea pig brain after 180 mins scintillation counting\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 29.2, mcs nAts: 14\n", "[#8]-[#6]1:[#6]:[#6]:[#6]2:[#6](:[#6]:1)-[#6]-[#6]-[#7](-[#6]-[#6]-2-[#8])-[#6]\n", "Row: 932 Displacement of [3H]Diprenorphine from human mu opioid receptor expressed in CHO cells\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 38.5, mcs nAts: 34\n", "[#6,#7]-[#6]-[#7]1:[#6](=[#8]):[#7](-[#6]2-[#6]-[#6]-[#7](-[#6]-[#6]-2)-[#6]-[#6]-[#6](-[#8]-[#6]2:[#6]:[#6](-[#8]-[#6]):[#6]:[#6]:[#6]:2-[#6])-[#6](-[#6])-[#6]):[#6]2:[#6]:1:[#6]:[#6]:[#6]:[#6]:2\n", "Row: 933 Antagonist activity at human adenosine A2B receptor expressed in CHO cells assessed as inhibition of NECA-induced adenylyl cyclase activity\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 27.2, mcs nAts: 14\n", "[#6]-[#7]1:[#6]:[#6]2:[#6](-[#6](-[#7,#8])=[#8]):[#7]:[#6](:[#7]:[#6]:2:[#7]:1)-[#7]\n", "Row: 934 Displacement of [3H]SR141716A from human CB1 receptor expressed in CHO cells\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 26.2, mcs nAts: 13\n", "[#6](-[#6]1:,-[#6,#7]:[#6]:[#6]:,-[#6,#8]:,-[#6]:,-1)-[#6,#7]1:,-[#6]:,-[#6]:,-[#6,#8]:,-[#6]:,-[#6]:,-1\n", "Row: 935 inhibition of Candida albicans recombinant Nce103 after 15 mins by stopped-flow CO2 hydration assay\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 29.8, mcs nAts: 23\n", "[#7]-[#7]-[#6](=,-[#8])-[#6]1:[#7]:[#6]2:[#6]:[#6]:[#6](:[#6]:[#6]:2:[#6]:1-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1)-[#16](-[#7])(=[#8])=[#8]\n", "Row: 936 Displacement of [3H]CP-55940 from human CB2 receptor expressed in COS cells\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 29.7, mcs nAts: 16\n", "[#6](-[#6]-[#6]-[#6]-[#6]-[#6]-[#8,#6]-[#6]1:[#6]:[#6]:[#6]:[#6](:[#6]:1)-[#8,#6])-[#7,#6]-[#6]\n", "Row: 937 BindingDB_Patents: Alphascreen Assays. A PI3K Alphascreen assay (PerkinElmer, Waltham, Mass.) was used to measure the activity of a panel of four phosphoinositide 3-kinases: PI3Ka, PI3Kß, PI3K¿, and PI3Kd. Enzyme reaction buffer was prepared using sterile water (Baxter, Deerfield, Ill.) and 50 mM Tris HCl pH 7, 14 mM MgCl2, 2 mM sodium cholate, and 100 mM NaCl. 2 mM DTT was added fresh the day of the experiment. The Alphascreen buffer was made using sterile water and 10 mM Tris HCl pH 7.5, 150 mM NaCl, 0.10% Tween 20, and 30 mM EDTA. 1 mM DTT was added fresh the day of the experiment. Compound source plates used for this assay were 384-well Greiner clear polypropylene plates containing test compounds at 5 mM and diluted 1:2 over 22 concentrations.\n", " * postgresql://localhost/chembl_23\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Mean nAts 30.4, mcs nAts: 25\n", "[#6](-[#7,#16]-[#6]1:[#7]:[#6]:[#7]:[#6]:[#6]:1)-[#6]1:[#7]:[#6]2:[#6]:[#6]:[#6]:[#6]:[#7,#6]:2:[#6](:[#6]:1-[#6]1:[#6,#7]:[#6]:[#6]:[#6]:[#6,#7]:1)=,-[#8]\n", "Row: 938 Displacement of [3H]N-alpha-methylhistamine from histamine H3 receptor in guinea pig brain\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 23.5, mcs nAts: 17\n", "[#6,#8]-,=[#6,#7,#8,#16]-[#6,#7,#16]-[#6]-[#6]-[#7]1-[#6]-[#6]-[#6](-[#6]-[#6]-1)-[#6]-[#6]1:[#6]:[#7]:[#6]:[#7]:1\n", "Row: 939 Displacement of [3H]DPCPX from human recombinant adenosine A1 receptor expressed in CHOK1 cells\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 31.8, mcs nAts: 25\n", "[#6]-[#7]-[#6]1:[#7]:[#6]:[#6]2:[#6](:[#7]:1):[#7](-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1):[#6](:[#7]:2-[#6]-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1)=[#8]\n", "Row: 940 Displacement of [3H](+)-Pentazocine from sigma 1 receptor in guinea pig brain membranes after 120 mins by scintillation counting analysis\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 28.6, mcs nAts: 8\n", "[#6]1:,-[#6]:,-[#6]:,-[#6]:,-[#6,#8]:,-[#6,#7]:,-1-[#7,#6,#8]-,#[#6,#7]\n", "Row: 941 Displacement of [3H]CPPA from human adenosine A1 receptor expressed in CHO cells\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 30.1, mcs nAts: 22\n", "[#6]-[#6]-,#[#8,#6]-[#6]1:[#7]:[#6](-[#7]):[#6]2:[#6](:[#7]:1):[#7](:[#6]:[#7]:2)-[#6]1-[#8]-[#6](-[#6]-[#8,#7])-[#6](-[#6]-1-[#8])-[#8]\n", "Row: 942 Inhibition of high affinity uptake by the dopamine transporter from rat synaptosomal nerve endings by using [3H]DA as radioligand\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 21.6, mcs nAts: 15\n", "[#7]1-[#6]-[#6]-[#6](-[#6](-[#6]-1)-[#6]-[#8,#16,#53])-[#6]1:[#6]:[#6]:[#6](:[#6]:[#6]:1)-[#17]\n", "Row: 943 Displacement of [3H]N-methyl-scopolamine from human muscarinic M2 receptor expressed in CHO K1 cells\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 31.6, mcs nAts: 14\n", "[#6]-[#7]1-[#6]-[#6]-[#6](-[#6]-[#6]-1)-[#7]1-[#6]-[#6](-[#6])-[#7,#8]-[#6]-1=[#8]\n", "Row: 944 Displacement of [3H]HEMADO from human adenosine A3 receptor expressed in CHO cells by Top Count analysis\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 27.2, mcs nAts: 14\n", "[#6]-[#7]1:[#6]:[#6]2:[#6](-[#6](-[#7,#8])=[#8]):[#7]:[#6](:[#7]:[#6]:2:[#7]:1)-[#7]\n", "Row: 945 Displacement of [125I]-MePhe7-NKB from human NK3 receptor expressed in CHO cells after 90 mins by gamma counting\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 30.5, mcs nAts: 27\n", "[#6]-[#6](-[#7]-[#6](=[#8])-[#6]1:[#6]:[#6](-[#6]2:[#6]:[#6]:[#6]:[#6]:[#6]:2):[#7,#6]:[#6]2:[#6]:1:[#6]:[#6]:[#6]:[#6]:2)-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6,#7]:1\n", "Row: 946 Displacement of [3H](E)-N1-(2-methoxybenzyl)cinnamamidine from human NR2B expressed in Ltk- cells\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 24.9, mcs nAts: 17\n", "[#6,#7,#8]-,#[#8,#6,#7]-[#6,#7]1:,-[#6]:,-[#6]:,-[#6,#7](:,-[#6]:,-[#6]:,-1)-[#6]-[#6,#7,#8]-[#7,#6]-[#6,#7]1:,-[#6,#7]:,-[#6]:,-[#7,#6]:,-[#6]:,-[#6,#7]:,-1\n", "Row: 947 Displacement of [3H]CCPA from adenosine A1 receptor in bovine cortical membrane\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 30.9, mcs nAts: 24\n", "[#8]-[#6]-[#6]1-[#8]-[#6](-[#7]2:[#6]:[#7]:[#6]3:[#6]:2:[#7]:[#6]:[#7]:[#6]:3-[#7]-[#6]2-[#6]-[#6]-[#8,#6]-[#6]-2)-[#6](-[#6]-1-[#8])-[#8,#6]\n", "Row: 948 Inhibition of rat recombinant nNOS expressed in Escherichia coli by hemoglobin capture assay\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 26.2, mcs nAts: 7\n", "[#6]-[#7,#6]-[#6]1-[#6]-[#7,#6]-[#6]-[#6,#7]-1\n", "Row: 949 Inhibition of bovine recombinant eNOS expressed in Escherichia coli by hemoglobin capture assay\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 26.2, mcs nAts: 7\n", "[#6]-[#7,#6]-[#6]1-[#6]-[#7,#6]-[#6]-[#6,#7]-1\n", "Row: 950 Inhibition of mouse recombinant iNOS expressed in Escherichia coli by hemoglobin capture assay\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 26.2, mcs nAts: 7\n", "[#6]-[#7,#6]-[#6]1-[#6]-[#7,#6]-[#6]-[#6,#7]-1\n", "Row: 951 Binding affinity for human factor Xa\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 34.6, mcs nAts: 23\n", "[#6,#7]-,#[#6]-[#7,#6]1:[#6](-[#6](=[#8])-[#7]-[#6]2-[#6]-[#6]-[#7](-[#6]-[#6]-2)-[#6](-[#6])-[#6]):[#6,#7]:[#6]2:[#6]:1:[#6]:[#6]:[#6]:[#6]:2\n", "Row: 952 Inhibition of human recombinant DPP4 assessed as Gly-Pro-pNA cleavage\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 29.6, mcs nAts: 23\n", "[#8,#6,#7]-,=[#6](=,-[#8,#7])-[#6]1:[#6]:[#7]2:[#6](-[#6]3:[#6]:[#6]:[#6](:[#6]:[#6]:3-[#17])-[#17]):[#6](-[#6]-[#7]):[#6](:[#7]:[#6]:2:[#7]:1)-[#6]\n", "Row: 953 Ki value against human carbonic anhydrase II\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 14.9, mcs nAts: 5\n", "[#6,#7,#8]-[#16,#6](-,=[#7,#8,#9])(=,-[#8,#9])=,-[#8,#6,#7,#9]\n", "Row: 954 Inhibition of high affinity uptake by the norepinephrine transporter from rat synaptosomal nerve endings by using [3H]NE as radioligand\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 21.6, mcs nAts: 15\n", "[#7]1-[#6]-[#6]-[#6](-[#6](-[#6]-1)-[#6]-[#8,#16,#53])-[#6]1:[#6]:[#6]:[#6](:[#6]:[#6]:1)-[#17]\n", "Row: 955 Inhibition of human recombinant soluble epoxide hydrolase by FRET-based ACPU displacement assay\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 26.1, mcs nAts: 21\n", "[#6,#8,#9]-,=[#6,#16](=,-[#8,#6,#9])-[#7,#6]1-,:[#6]-,:[#6]-,:[#6](-,:[#6]-,:[#6]-,:1)-[#7,#6]-[#6](=[#8])-[#7,#6]-[#6]1:,-[#6]:,-[#6]:,-[#6,#7](:,-[#6]:,-[#6]:,-1)-[#6,#8,#16]-,=[#9,#6,#8]\n", "Row: 956 Displacement of [3H]5-HT from human 5HT7 receptor transfected in CFO-K1 cells after 30 mins by liquid scintillation spectrometry\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 27.7, mcs nAts: 12\n", "[#7,#6]-[#6]-[#6]-[#6,#7]1:,-[#6]:,-[#7,#6,#8,#16]:,-[#6](:,-[#6]:,-1):[#6]:[#6]:[#6]:[#6]\n", "Row: 957 Displacement of [3H]8-OH-DPAT from human 5-HT1A receptor transfected in CFO-K1 cells after 30 mins by liquid scintillation spectrometry\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 27.6, mcs nAts: 12\n", "[#7,#6]-[#6]-[#6]-[#6,#7]1:,-[#6]:,-[#7,#6,#8,#16]:,-[#6](:,-[#6]:,-1):[#6]:[#6]:[#6]:[#6]\n", "Row: 958 Displacement of [3H]NECA from human cloned adenosine A3 receptor expressed in CHO cells\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 27.8, mcs nAts: 20\n", "[#6]-[#7]1:[#6]:[#6](:[#6]:[#7]:1):[#6]1:[#7]:[#6](:[#7]:[#7]:1:[#6](:[#7])-[#7])-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1\n", "Row: 959 Binding affinity for recombinant human CRF1 receptor\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 27.8, mcs nAts: 18\n", "[#6,#8,#17]-[#6]1:[#6]:[#6](-[#6,#8,#17]):[#6](:[#6](:[#6]:1)-[#6,#8,#17])-[#6,#7]-[#6]1:[#7,#6]:[#6](-[#6,#7]):[#7,#6]:[#6](:[#6,#7]:1)-[#7,#6]\n", "Row: 960 Displacement of [3H]citalopram from rat brain cerebral cortex SERT by liquid scintillation counting analysis\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 39.1, mcs nAts: 38\n", "[#8]=[#6]1:[#6](-[#6]2:[#6]:[#6]:[#6]:[#6]:[#6]:2):[#6]2:[#6]:[#6]:[#6]:[#6]:[#7]:2:[#6](:[#7]:1-[#6]-[#6]-[#6]-[#6]-[#7]1-[#6]-[#6]-,=[#6](-[#6]-[#6]-1)-[#6]1:[#6]:[#7]:[#6]2:[#6]:1:[#6]:[#6](:[#6]:[#6]:2)-[#9,#17,#35])=[#8]\n", "Row: 961 Displacement of [3H]citalopram from Sprague-Dawley rat brain SERT after 60 mins by liquid scintillation counting analysis\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 23.4, mcs nAts: 17\n", "[#7,#8]-,=[#6]-[#6]-[#16]-[#6](-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1)-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1\n", "Row: 962 Binding affinity for 1 uM [3H]diprenorphine against human Opioid receptor kappa expressed in chinese hamster ovary cells (CHO cells)\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 36.0, mcs nAts: 30\n", "[#6]-[#6](=[#8])-[#8]-[#6]1-[#6]-[#6](-[#6](=,-[#8])-,=[#8,#7])-[#6]2(-[#6](-[#6]-1=[#8])-[#6]1(-[#6]-[#6](-[#8]-[#6](-[#6]-1-[#6]-[#6]-2)=[#8])-[#6]1:[#6]:[#6]:[#8]:[#6]:1)-[#6])-[#6]\n", "Row: 963 Displacement of [3H]-naltrindole from human delta opioid receptor expressed in CHO cells after 3 hrs by scintillation counting\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 29.1, mcs nAts: 19\n", "[#6]-[#7]1-[#6]-[#6]-[#6]23-[#6](-[#6]-1-[#6]-[#6]1:[#6]:[#6]:[#6](:[#6]:[#6]-2:1)-[#7,#8])-[#6]-,=[#6]-[#6]-[#6]-3\n", "Row: 964 In vitro displacement of CP-55940 binding to human CB2 receptor expressed in CHO cells\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 30.4, mcs nAts: 24\n", "[#6,#7,#8]-[#7,#8]-[#6](=[#8])-[#6]1:[#7,#16]:[#6,#7](-[#6]2:[#6]:[#6]:[#6](:[#6]:[#6]:2-[#17])-[#17]):[#7,#6](:[#6,#7,#16]:1)-[#6]1:[#6]:[#6]:[#6](:[#6]:[#6,#7]:1)-[#17,#6,#8,#9,#35]\n", "Row: 965 Displacement of [125I]AB-MECA from rat adenosine A3 receptor expressed in CHO cells\n", " * postgresql://localhost/chembl_23\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Mean nAts 36.2, mcs nAts: 25\n", "[#6]-[#6]-[#7]-[#6](=[#8])-[#6]1-[#8]-[#6](-[#7]2:[#6]:[#7]:[#6]3:[#6]:2:[#7]:[#6]:[#7]:[#6]:3-[#7]-[#6](=,-[#8,#7])-,=[#7,#6,#8])-[#6](-[#6]-1-[#8])-[#8]\n", "Row: 966 Binding affinity towards human opioid receptor like 1 was determined by using [3H]nociceptin as radioligand expressed in Chinese hamster ovary (CHO) cells\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 32.0, mcs nAts: 27\n", "[#6]1:[#6]:[#6]:[#6](:[#6](:[#6]:1)-[#8]-[#6]-[#6]-[#6]-[#7]1-[#6]-[#6]-[#6](-[#6]-[#6]-1)-[#7]1:[#6](-,=[#8]):[#7]:[#6]2:[#6]:1:[#6]:[#6]:[#6]:[#6]:2)-[#17,#6,#7,#9]\n", "Row: 967 Inhibition of human coagulation factor 11a at 25 degC\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 37.8, mcs nAts: 24\n", "[#6,#7,#8]-,=[#6](=,-[#8,#6,#7])-[#7]-[#6](-[#6]-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1)-[#6]1:[#7]:[#6](-[#6]2:[#6]:[#6]:[#6]:[#6]:[#6]:2):[#6](:[#7]:1)-[#17]\n", "Row: 968 Displacement of [3H]N/OFQ from human recombinant ORL1 receptor expressed in HEK293 cells after 45 mins by scintillation proximity assay\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 30.8, mcs nAts: 24\n", "[#7,#6]1-,:[#6]-[#6]-[#7](-[#6]-[#6]-,:1)-[#6]-[#6]-[#6](=[#8])-[#7]1-[#6]2:[#6]:[#6]:[#6]:[#6]:[#6]:2-[#6]-[#6]-1-[#6](=[#8])-[#7](-[#6])-[#6]\n", "Row: 969 Inhibitory activity against HCV NS3 protease\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 53.7, mcs nAts: 36\n", "[#6]-[#6]-[#6]-[#6](-[#7]-[#6](=[#8])-[#6]1-[#6]-[#6]2-[#6]-[#7]-1-[#6](=[#8])-[#6](-[#6])-[#7]-[#6](=[#8])-[#6]-[#6]1:[#6]:[#6]:[#6]:[#6](-[#8]-[#6]-[#6]-[#6]-[#8,#7,#16]-2):[#6]:1)-[#6](=[#8])-[#6](=,-[#8,#7])-,=[#8,#7]\n", "Row: 970 Displacement of [3H]DPCPX from human adenosine A1 receptor expressed in CHO cells after 120 mins by scintillation counter\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 35.8, mcs nAts: 30\n", "[#6,#7,#8]-,=[#6,#8]-[#7,#6]1-,:[#6]-,:[#6]-,:[#6](-,:[#6]-,:[#6]-,:1)-[#7]-[#6](=[#8])-[#7]-[#6]1:[#7]:[#6]2:[#7]:[#7](-[#6]):[#6]:[#6]:2:[#6]2:[#7]:1:[#7]:[#6](:[#7]:2)-[#6]1:[#6]:[#6]:[#6]:[#8]:1\n", "Row: 971 Displacement of [3H]diprenorphine from human delta opioid receptor expressed in CHO cells\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 28.1, mcs nAts: 16\n", "[#6]1:[#6,#7]:[#6]:[#6](:[#6,#7]:[#6,#7]:1)-[#6]1=,-[#6]-[#6]-[#8]-[#6]2:[#6]-1:[#6]:[#6]:[#6]:[#6]:2\n", "Row: 972 Displacement of [125I]DOI from human recombinant 5HT2C receptor expressed in HEK293 cells after 1 hr by scintillation counting\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 26.0, mcs nAts: 17\n", "[#6,#7,#8]-,=[#6](=,-[#8,#6,#7])-[#7]1-[#6]-[#6]-[#7](-[#6]-[#6]-1)-[#6]-[#6]-[#6]1:[#6]:[#6,#7]:[#6]:[#6,#7]:[#6]:1\n", "Row: 973 Displacement of fluorescein-CSSRFESLFAGEKESR from human androgen receptor-LBD after 1 hr by fluorescence polarization assay\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 174.3, mcs nAts: 98\n", "[#6]-[#6](-[#6])-[#6]-[#6](-[#7]-[#6](=[#8])-[#6](-[#6]-[#6,#16])-[#7]-[#6](=[#8])-[#6](-[#6]-[#16,#6])-[#7]-[#6](=[#8])-[#6](-[#6,#7])-[#7,#6])-[#6](=[#8])-[#7]-[#6](-[#6]-[#6])-[#6](=[#8])-[#7]-[#6](-[#6]-[#16,#6])-[#6](=[#8])-[#7]-[#6]-[#6](=[#8])-[#7]-[#6](-[#6]-[#6]-[#6,#7])-[#6](=[#8])-[#7]-[#6]-[#6](=[#8])-[#7]-[#6]-[#6](=[#8])-[#7]-[#6]-[#6](=[#8])-[#7]-[#6](-[#6]-[#6])-[#6](=[#8])-[#7]-[#6](-[#6]-[#6,#16])-[#6](=[#8])-[#7]-[#6](-[#6]-[#6]-[#6]-[#8,#6])-[#6](=[#8])-[#7]-[#6](-[#6](=[#8])-[#7]-[#6](-[#6]-[#16,#6])-[#6](=[#8])-[#7]-[#6](-[#6]-[#6,#16])-[#6](=[#8])-[#7,#8])-[#6]\n", "Row: 974 Displacement of [125I]DOI from human recombinant 5HT2A receptor expressed in HEK293 cells after 1 hr by scintillation counting\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 26.0, mcs nAts: 17\n", "[#6,#7,#8]-,=[#6](=,-[#8,#6,#7])-[#7]1-[#6]-[#6]-[#7](-[#6]-[#6]-1)-[#6]-[#6]-[#6]1:[#6]:[#6,#7]:[#6]:[#6,#7]:[#6]:1\n", "Row: 975 Binding affinity for 5-HT4 receptor using [3H]GR-113808\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 54.5, mcs nAts: 28\n", "[#6]-[#8]-[#6]1:[#6]:[#6](-[#7]):[#6](:[#6]:[#6]:1-[#6](=[#8])-[#8]-[#6]-[#6]-[#7]1-[#6]-[#6]-[#6,#7](-[#6]-[#6]-1)-[#7,#6]-[#6,#7]-[#6,#7]-[#6]-[#6,#7,#8]-[#6,#7,#8]-,=[#6,#8])-[#17]\n", "Row: 976 Displacement of [3H]-N-Methyl-Lysergic acid diethylamide from human 5-HT6 receptor expressed in CHO cells after 30 mins by liquid scintillation counting analysis\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 24.6, mcs nAts: 19\n", "[#6]-[#6]-[#7]-[#6](=[#7]-[#16](=[#8])(=[#8])-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1)-[#7]1-[#6,#7]-,=[#6]-[#6]=,-[#7,#6]-1\n", "Row: 977 Inhibition of JAK1 (unknown origin)\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 19.5, mcs nAts: 13\n", "[#6]-[#7,#8]-[#6]1:[#7]:[#6]:[#7]:[#6]2:[#6]:1:[#6]:[#6]:[#7]:[#6]:2=[#8]\n", "Row: 978 Inhibition of JAK2 (unknown origin)\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 19.5, mcs nAts: 13\n", "[#6]-[#7,#8]-[#6]1:[#7]:[#6]:[#7]:[#6]2:[#6]:1:[#6]:[#6]:[#7]:[#6]:2=[#8]\n", "Row: 979 Inhibition of matriptase (unknown origin) using MeSO2-D-Cha-Gly-Arg-pNA as substrate\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 43.2, mcs nAts: 33\n", "[#7]=[#6](-[#7])-[#6]1:[#6]:[#6]:[#6]:[#6](:[#6]:1)-[#6]-[#6](-[#7]-[#16](=[#8])(=[#8])-[#6]1:[#6]:[#6]:[#6]:[#6](:[#6]:1)-[#7,#6])-[#6](=[#8])-[#7]1-[#6]-[#6]-[#6](-[#6]-[#6]-1)-[#7,#6]-[#6]-,=[#7,#6,#8]\n", "Row: 980 Binding affinity to human CB2 receptor\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 36.4, mcs nAts: 20\n", "[#8,#6,#7]=,-[#16](=[#8])(-,=[#7,#6,#8])-[#6]1:[#6]:[#6]:[#6](:[#6]:[#6]:1-[#16](=[#8])(=[#8])-[#6,#7]1:,-[#6]:,-[#6]:,-[#6]:,-[#6]:,-[#6]:,-1)-[#17,#6,#8]\n", "Row: 981 Inhibition of human factor 10a using CH3OCO-D-Cha-Gly-Arg-pNA as substrate\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 43.2, mcs nAts: 33\n", "[#7]=[#6](-[#7])-[#6]1:[#6]:[#6]:[#6]:[#6](:[#6]:1)-[#6]-[#6](-[#7]-[#16](=[#8])(=[#8])-[#6]1:[#6]:[#6]:[#6]:[#6](:[#6]:1)-[#7,#6])-[#6](=[#8])-[#7]1-[#6]-[#6]-[#6](-[#6]-[#6]-1)-[#7,#6]-[#6]-,=[#7,#6,#8]\n", "Row: 982 Inhibition of human factor 10a\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 33.4, mcs nAts: 31\n", "[#8]=[#6,#16](-[#7]-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1-[#6,#16](=,-[#8,#6])-[#7]-[#6]1:[#6,#7]:[#6]:[#6]:[#7,#6]:[#6,#7]:1)-[#6]1:[#6]:[#6]:[#6](:[#6,#7]:[#6]:1)-[#7]1:,-[#6]:,-[#6]:,-[#6]:,-[#6]:,-[#6]:,-1=[#8]\n", "Row: 983 Antagonist activity at human TRPV1 expressed in CHO cells assessed as inhibition of capsaicin-induced activation by FLIPR assay\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 39.5, mcs nAts: 29\n", "[#6]-[#6](-[#6](=[#8])-[#7]-[#6]-[#6]1:[#6]:[#6]:[#6](:[#7]:[#6]:1-[#16,#7])-[#6](-[#9])(-[#9])-[#9])-[#6]1:[#6]:[#6]:[#6](:[#6](:[#6]:1)-[#9])-[#7]-[#16](-[#6])(=[#8])=[#8]\n", "Row: 984 Inhibition of human CA9 by CO2 hydration activity based stopped flow assay\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 18.8, mcs nAts: 8\n", "[#6,#8,#16]-[#6]1:[#7]:[#8]:[#7]:[#6]:1-[#16,#6,#7,#8]=,-[#8,#6,#7]\n", "Row: 985 Displacement of [3H]DAMGO from human mu opioid receptor expressed in CHO cells after 60 mins by scintillation counting\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 27.6, mcs nAts: 22\n", "[#6]-[#7]1-[#6]-[#6]-[#6]23-[#6](-[#6]-1-[#6]-[#6]1:[#6]:[#6]4:[#16,#7]:[#6](:[#7,#8]:[#6]:4:[#6]:[#6]-2:1)-[#7])-[#6]-[#6]-[#6]-[#6]-3\n", "Row: 986 Displacement of [3H]U69593 from human kappa opioid receptor expressed in CHO cells after 60 mins by scintillation counting\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 27.6, mcs nAts: 22\n", "[#6]-[#7]1-[#6]-[#6]-[#6]23-[#6](-[#6]-1-[#6]-[#6]1:[#6]:[#6]4:[#16,#7]:[#6](:[#7,#8]:[#6]:4:[#6]:[#6]-2:1)-[#7])-[#6]-[#6]-[#6]-[#6]-3\n", "Row: 987 Inhibition of human carbonic anhydrase 2 by stopped-flow CO2 hydrase assay\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 19.2, mcs nAts: 12\n", "[#8]=,-[#6]1-,=[#7]-[#16](=[#8])(=[#8])-[#6]2:[#6]-1:[#6]:[#6]:[#6]:[#6]:2\n", "Row: 988 Displacement of [3H]CCPA from human A1 adenosine receptor expressed in CHO cell membranes\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 27.3, mcs nAts: 17\n", "[#6]-[#7,#8]-[#6]1:[#7]:[#6](-[#7]):[#7]2:[#6](:[#7]:1):[#7]:[#6](:[#7]:2)-[#6]1:[#6,#8]:[#6]:[#6]:[#8,#6]:1\n", "Row: 989 Competitive inhibition of human aromatase extracted from placental microsomes by Lineweaver- Burk plots analysis in presence of [1beta-3H]androstenedione\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 26.7, mcs nAts: 20\n", "[#6]-[#6]12-[#6]-[#6]-[#6]3-[#6](-[#6]-1-[#6]-[#6]-[#6]-2-,=[#8])-[#6]-,=[#6]-[#6]1-[#6]-3(-[#6]-,=[#6]-[#6]-[#6]=1)-[#6]\n", "Row: 990 Displacement of [33P]ATP from human recombinant FLT3 domain after 20 mins by scintillation counting\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 25.9, mcs nAts: 19\n", "[#7]-[#6]1:[#7]:[#6](-[#7]-[#6]2:[#6]:[#6]:[#6]:[#6]:[#6]:2):[#7]:[#7]:1-[#6]1:,-[#6]:,-[#6]:,-[#6,#7]:,-[#6]:,-[#7,#6]:,-1\n", "Row: 991 Inhibition of human recombinant Aurora A\n", " * postgresql://localhost/chembl_23\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Mean nAts 40.7, mcs nAts: 31\n", "[#6]1:[#6]:[#6]2:[#6](-[#7]-[#6]3:[#6]:[#6](-[#6]-[#6](=[#8])-[#7]-[#6]4:[#6]:[#6]:[#6]:[#6]:[#6]:4):[#7]:[#7]:3):[#7]:[#6]:[#7]:[#6]:2:[#6]:[#6]:1-[#8]-[#6]-[#6]-[#6]-[#7]\n", "Row: 992 Displacement of [125I]alpha-bungarotoxin from alpha7 nAchR in rat frontal cortices\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 21.1, mcs nAts: 19\n", "[#6,#7]1:[#6]:[#6]:[#6](:[#6]:[#6,#7]:1)-[#6,#7]1:[#6]:[#7,#6](-[#6]2-[#6]-[#7]3-[#6]-[#6]-[#6]-2-[#6]-[#6]-3):[#7]:[#7]:1\n", "Row: 993 Displacement of [3H]RAMHA from human histamine H3 receptor expressed in SK-N-MC cells\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 27.0, mcs nAts: 16\n", "[#7,#6,#8]-[#6]-[#6]1:[#6]:[#6]:[#6](:[#6]:[#6]:1)-[#6]1:[#6]:[#6]:[#6](:[#6]:[#6]:1)-[#6]-[#7,#6]\n", "Row: 994 Displacement of [3H]RAMHA from histamine H3 receptor in Wistar rat brain membrane\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 27.0, mcs nAts: 16\n", "[#7,#6,#8]-[#6]-[#6]1:[#6]:[#6]:[#6](:[#6]:[#6]:1)-[#6]1:[#6]:[#6]:[#6](:[#6]:[#6]:1)-[#6]-[#7,#6]\n", "Row: 995 Inhibition of human carbonic anhydrase 12 preincubated for 15 mins by CO2 hydration stopped-flow assay\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 14.7, mcs nAts: 7\n", "[#7,#6]-[#6]1:[#6]:[#6]:[#6,#7]:[#6]:[#6]:1\n", "Row: 996 Inhibition of human carbonic anhydrase 9 preincubated for 15 mins by CO2 hydration stopped-flow assay\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 14.7, mcs nAts: 7\n", "[#7,#6]-[#6]1:[#6]:[#6]:[#6,#7]:[#6]:[#6]:1\n", "Row: 997 BindingDB_Patents: Binding Assay. Binding assay of certain compounds of this invention to the opioid receptor was determine using radioligand binding assay (screening and dose-displacement).\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 36.4, mcs nAts: 28\n", "[#6]-[#8]-[#6]-[#6]1-[#6]-[#6]23-[#6]-[#6]-[#6]-1(-[#8]-[#6])-[#6]1-[#8]-[#6]4:[#6]5-[#6]-2-1-[#6]-[#6]-[#7](-[#6]-3-[#6]-[#6]:5:[#6]:[#6]:[#6]:4-[#8]-[#6])-[#6]\n", "Row: 998 Inhibition of PIM2 (unknown origin)\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 26.0, mcs nAts: 16\n", "[#8,#6]=,-[#6](-[#7]-[#6]1:[#6]:[#6,#7]:[#6,#7]:[#6,#7]:[#6]:1-[#7]1-[#6]-[#6]-[#6,#7]-[#6]-[#6]-1)-,=[#6,#8]\n", "Row: 999 Inhibition of human recombinant full-length Fyn using Src substrate peptide after 15 mins incubation by MicroBeta liquid scintillation counting analysis\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 29.8, mcs nAts: 18\n", "[#6](-,=[#6]-[#7]1:[#7]:[#6]:[#6]2:[#6]:1:[#7]:[#6]:[#7]:[#6]:2-[#7])-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1\n", "Row: 1000 Inhibition of human DPP9\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 29.6, mcs nAts: 23\n", "[#8,#6,#7]-,=[#6](=,-[#8,#7])-[#6]1:[#6]:[#7]2:[#6](-[#6]3:[#6]:[#6]:[#6](:[#6]:[#6]:3-[#17])-[#17]):[#6](-[#6]-[#7]):[#6](:[#7]:[#6]:2:[#7]:1)-[#6]\n", "Row: 1001 Displacement of [3H]histamine from human histamine H4 receptor expressed in HEK293 cells after 60 mins by liquid scintillation counting\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 20.3, mcs nAts: 9\n", "[#6]-[#6,#7]1:[#6]:[#7,#6](-[#6]-[#6]-[#6]):[#7]:[#7]:1\n", "Row: 1002 BindingDB_Patents: Radioligand Binding Assay. Radioligand binding assays were conducted using freshly thawed membranes expressing human mu-receptors (Perkin Elmer, Shelton, Conn.). Radioligand dose-displacement binding assays for human mu-opioid receptors used 0.2 nM[3H]-diprenorphine (NEN, Boston, Mass.), with 5-20 mg membrane protein/well in a final volume of 500 uL binding buffer (10 mM MgCl2, 1 mM EDTA, 5% DMSO, 50 mM HEPES, pH 7.4). Reactions were carried out in the absence or presence of increasing concentrations of unlabeled naloxone. All reactions were conducted in 96-deep well polypropylene plates for 1-2 hrs at about 25 C. Binding reactions were terminated by rapid filtration onto 96-well Unifilter GF/C filter plates (Packard, Meriden, Conn.) presoaked in 0.5% polyethylenimine using a 96-well tissue harvester (Brandel, Gaithersburg, Md.) followed by performing three filtration washes with 500 uL of ice-cold binding buffer. Filter plates were subsequently dried at 50 C. for 2-3 hrs.\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 36.2, mcs nAts: 17\n", "[#7,#6]=,-[#6]1:,-[#7]:,-[#6]2:[#6]:[#6]:[#6]:[#6]:[#6]:2:,-[#7]:,-1-[#6]1-[#6]-[#6]-[#7](-[#6]-[#6]-1)-[#6]\n", "Row: 1003 Inhibition of human CA12 by CO2 hydration activity based stopped flow assay\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 18.8, mcs nAts: 8\n", "[#6,#8,#16]-[#6]1:[#7]:[#8]:[#7]:[#6]:1-[#16,#6,#7,#8]=,-[#8,#6,#7]\n", "Row: 1004 Displacement of [3H]-(R)-2-(5-chloro-2,4-dihydroxybenzoyl)-N-ethylisoindoline-1-carboxamide from human his(6)-tagged HSP90alpha after 30 mins by scintillation proximity assay\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 29.9, mcs nAts: 15\n", "[#6]-[#8]-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1-[#6]1:[#6]:[#6]:[#7]:[#6](:[#7]:1)-[#7]\n", "Row: 1005 Binding affinity to human CB2 receptor\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 30.5, mcs nAts: 17\n", "[#7,#8]-,=[#6](=,-[#8,#7])-[#6]1:[#6]:[#6]:[#6]2:[#6](:[#6]:1):[#6]1:[#6](:[#7]:2-[#6,#16])-[#6]-[#7](-[#6]-1)-[#6]\n", "Row: 1006 Displacement of [3H]MSX2 from adenosine A2A receptor in rat brain striatal membrane\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 27.7, mcs nAts: 20\n", "[#6]-[#7]1:[#6](=[#8]):[#6]2:[#6](:[#7](:[#6]:1=[#8])-[#6]):[#7]:[#6]1:[#7]:2-[#6]-[#6]-[#6]-[#7]-1-[#6]-[#6]-[#6,#7,#8]\n", "Row: 1007 Inhibition of human ENT1\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 27.9, mcs nAts: 26\n", "[#8]-[#6]-[#6]1-[#8]-[#6](-[#7]2:[#6]:[#7]:[#6]3:[#6]:2:[#7]:[#6]:[#7]:[#6]:3-[#16]-[#6]-[#6]2:[#6]:[#6]:[#6]:[#6]:[#6]:2)-[#6](-[#6]-1-[#8])-[#8]\n", "Row: 1008 Displacement of [3H]DPCPX from adenosine A1 receptor in Wistar rat brain cortex by liquid scintillation counting\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 32.0, mcs nAts: 26\n", "[#8,#6]=,-[#6](-[#7]-[#6]1:[#7]:[#6](-[#6]2:[#6]:[#6]:[#6]:[#6]:[#6]:2):[#7]:[#6]2:[#6]:1:[#7]:[#7]:[#7]:2-[#6]-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1)-,=[#6,#8]\n", "Row: 1009 Binding affinity to human factor 11a assessed as release of p-nitroaniline after 10 to 120 mins by spectrophotometric analysis\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 39.3, mcs nAts: 25\n", "[#7]=[#6](-[#7])-[#6]1:[#6]:[#6]:[#6]2:[#6](:[#6]:1)-[#6](-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1)-[#6]-[#6](-[#7]-2)-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1\n", "Row: 1010 Inhibition of Electrophorus electricus AChE using acetylthiocholine iodide as substrate after 20 mins measured for 1 min interval for 30 mins by Ellman's method\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 42.1, mcs nAts: 34\n", "[#6]-[#6]1(-[#6])-[#6](-[#8])-[#6]-[#6]-[#6]2(-[#6]-1-[#6]-[#6]-[#6]1(-[#6]-2-[#6](=[#8])-[#6]=[#6]2-[#6]-1(-[#6]-[#6]-[#6]1(-[#6]-2-[#6]-[#6](-[#6])(-[#6](=,-[#8,#7])-,=[#8,#7])-[#6]-[#6]-1)-[#6])-[#6])-[#6])-[#6]\n", "Row: 1011 Inhibition of [3H]U-69593 binding to human Opioid receptor kappa 1\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 32.1, mcs nAts: 8\n", "[#6,#7]-[#7,#6]1-,:[#6]-,:[#6]-,:[#6,#7](-,:[#6]-,:[#6]-,:1)-[#7,#6,#8]\n", "Row: 1012 Inhibition of equine serum BChE using butyrylthiocholine iodide as substrate after 20 mins measured for 1 min interval for 30 mins by Ellman's method\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 42.1, mcs nAts: 34\n", "[#6]-[#6]1(-[#6])-[#6](-[#8])-[#6]-[#6]-[#6]2(-[#6]-1-[#6]-[#6]-[#6]1(-[#6]-2-[#6](=[#8])-[#6]=[#6]2-[#6]-1(-[#6]-[#6]-[#6]1(-[#6]-2-[#6]-[#6](-[#6])(-[#6](=,-[#8,#7])-,=[#8,#7])-[#6]-[#6]-1)-[#6])-[#6])-[#6])-[#6]\n", "Row: 1013 BindingDB_Patents: In Vitro Assay. Receptor binding assay: Membranes were prepared from CHO cells expressing S1P1 or S1P3 for use in ligand and 35S-GTPgammaS binding studies. Cells were suspended in 50 mM TRIS, pH 7.4, 2 mM EDTA, 250 mM Sucrose (buffer A) and 1x Complete protease inhibitor cocktail (Roche), and disrupted at 4 C. by nitrogen decompression using a cell disruption bomb (Parr Instrument). Following centrifugation at 1000 RPM for 10 min at 4 C, the supernatant was suspended in buffer A and centrifuged again at 19000 RPM for 60 min at 4 C. The pellet was then suspended in 10 mM HEPES, pH 7.4, 1 mM EDTA, 250 mM Sucrose (Buffer B), and 1x Complete EDTA-free protease inhibitor cocktail and homogenized using a potter. Membranes were flash frozen in liquid nitrogen and stored at -80 C. [33P]sphingosine 1-phosphate (3000 Ci/mmol; American Radiolabeled Chemicals, Inc.) was added to test compounds in DMSO. Membranes and WGA SPA beads (GE Healthcare) were added to give a final volume of 100 ul in 96-well plates.\n", " * postgresql://localhost/chembl_23\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Mean nAts 29.1, mcs nAts: 20\n", "[#6]-[#8]-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1-[#6]1:[#7]:[#8]:[#6](:[#7]:1)-[#6]1:[#6]:[#6,#7]:[#6](:[#6]:[#6]:1)-[#6,#7]\n", "Row: 1014 Displacement of [3H]CCPA from adenosine A1 receptor in rat brain cortical membrane\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 27.7, mcs nAts: 20\n", "[#6]-[#7]1:[#6](=[#8]):[#6]2:[#6](:[#7](:[#6]:1=[#8])-[#6]):[#7]:[#6]1:[#7]:2-[#6]-[#6]-[#6]-[#7]-1-[#6]-[#6]-[#6,#7,#8]\n", "Row: 1015 Displacement of [125I][Phe13,Tyr19]-MCH from rat MCHR1 by scintillation counting analysis\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 31.5, mcs nAts: 24\n", "[#8,#7]-[#6]1:[#6]:[#6]:[#6](:[#6]:[#6,#7]:1)-[#7]1:[#6]:[#7]:[#7,#6]2:[#6](:[#6]:1=[#8]):[#7,#6,#16]:[#6](:[#6,#7]:2)-[#6]1:[#6,#7]:[#6]:[#6](:[#6]:[#6,#7]:1)-[#17]\n", "Row: 1016 Binding affinity to Bcl-XL in 1% human serum by fluorescence polarization assay\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 45.9, mcs nAts: 38\n", "[#8]=[#6](-[#7]-[#16](=[#8])(=[#8])-[#6]1:[#6]:[#6]:[#6](:[#6](:[#6]:1)-[#7](=[#8])-[#8])-[#7]-[#6]-[#6]-[#16,#6]-[#6,#7]1:,-[#6]:,-[#6]:,-[#6,#8]:,-[#6]:,-[#6]:,-1)-[#6]1:[#6]:[#6]:[#6](:[#6]:[#6]:1)-[#6,#7]1:,-[#6]:,-[#6]:,-[#6,#7](:,-[#6]:,-[#6]:,-1)-[#9,#6]\n", "Row: 1017 Binding affinity to PEST and transmembrane regions lacking N-terminal His6/MBP-tagged human MCl1 (172 to 327 residues) expressed in Escherichia coli Rosetta2(2DE3) pLysS cells assesed as inhibition of protein interaction with carboxyfluorescein-labeled 26-mer Noxa peptide by fluorescence polarization assay\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 24.2, mcs nAts: 9\n", "[#8,#6,#9]=,-[#6,#8]-[#6](:[#6]:[#6]:[#6]-,=[#8,#6]):[#6]:[#6]\n", "Row: 1018 Inhibition of [3H]naltrindole binding to human Opioid receptor delta 1\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 32.1, mcs nAts: 8\n", "[#6,#7]-[#7,#6]1-,:[#6]-,:[#6]-,:[#6,#7](-,:[#6]-,:[#6]-,:1)-[#7,#6,#8]\n", "Row: 1019 Inhibition of human carbonic anhydrase 2 preincubated for 15 mins by CO2 hydration stopped-flow assay\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 14.7, mcs nAts: 7\n", "[#7,#6]-[#6]1:[#6]:[#6]:[#6,#7]:[#6]:[#6]:1\n", "Row: 1020 Inhibition of human cloned cytosolic carbonic anhydrase 1 preincubated for 15 mins by stopped flow CO2 hydration assay\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 22.9, mcs nAts: 11\n", "[#7,#8]-,=[#16](=[#8])(=,-[#8,#7])-[#6]1:[#6]:[#6]:[#6](:[#6]:[#6]:1)-[#17,#6,#7,#16]\n", "Row: 1021 Inhibition of human cloned cytosolic carbonic anhydrase 2 preincubated for 15 mins by stopped flow CO2 hydration assay\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 22.9, mcs nAts: 11\n", "[#7,#8]-,=[#16](=[#8])(=,-[#8,#7])-[#6]1:[#6]:[#6]:[#6](:[#6]:[#6]:1)-[#17,#6,#7,#16]\n", "Row: 1022 BindingDB_Patents: ORL-1 Receptor Binding Assay. ORL-1 Receptor Binding Assay Procedures: Membranes from recombinant HEK-293 cells expressing the human opioid receptor-like receptor (ORL-1) (Receptor Biology) were prepared by lysing cells in ice-cold hypotonic buffer (2.5 mM MgCl2, 50 mM HEPES, pH 7.4) (10mL/10 cm dish) followed by homogenization with a tissue grinder/Teflon pestle. Membranes were collected by centrifugation at 30,000×g for 15 min at 4° C. and pellets resuspended in hypotonic buffer to a final concentration 1-3mg/mL. Protein concentrations were determined using the BioRad protein assay reagent with bovine serum albumen as standard. Aliquots of the ORL-1 receptor membranes were stored at -80° C.\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 29.5, mcs nAts: 8\n", "[#7,#6]-[#6,#7]1-,=,:[#6]-,:[#6]-,:[#7,#6](-,:[#6]-,:[#6]-,:1)-[#6,#7]\n", "Row: 1023 Binding affinity to Bcl-XL by fluorescence polarization assay\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 45.9, mcs nAts: 38\n", "[#8]=[#6](-[#7]-[#16](=[#8])(=[#8])-[#6]1:[#6]:[#6]:[#6](:[#6](:[#6]:1)-[#7](=[#8])-[#8])-[#7]-[#6]-[#6]-[#16,#6]-[#6,#7]1:,-[#6]:,-[#6]:,-[#6,#8]:,-[#6]:,-[#6]:,-1)-[#6]1:[#6]:[#6]:[#6](:[#6]:[#6]:1)-[#6,#7]1:,-[#6]:,-[#6]:,-[#6,#7](:,-[#6]:,-[#6]:,-1)-[#9,#6]\n", "Row: 1024 Displacement of [3H]dofetidile from human ERG by whole-cell patch clamp\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 23.3, mcs nAts: 23\n", "[#6]-[#7]1-[#6]-[#6]2-[#6]-[#6]-1-[#6]-[#7]-2-[#6]1:[#6,#7]:[#6,#7]:[#6](:[#7,#6]:[#7]:1)-[#6]1:[#6]:[#6]:[#6]:[#6](:[#6]:1):[#6,#7]:[#6,#7]:[#8,#6,#7,#16]\n", "Row: 1025 Displacement of [3H]DPCPX from human adenosine A1 receptor expressed in HEK293 cells\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 33.2, mcs nAts: 28\n", "[#6]-[#6]1:[#6]:[#6]:[#6,#7](:[#8,#7]:1)-[#6]1:[#7,#6]:[#6](-[#7]-[#6](=[#8])-[#6]-[#8]-[#6]2:[#6,#7]:[#6]:[#6,#7]:[#6]:[#6,#7]:2):[#6,#7]:[#6](:[#7]:1)-[#6]1:[#7,#6]:[#6]:[#6]:[#16,#8]:1\n", "Row: 1026 Displacement of [3H]PK11195 from TSPO in Wistar rat heart incubated for 15 mins\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 27.7, mcs nAts: 14\n", "[#8,#6]=,-[#6](-,=[#6,#8])-[#7](-[#6]-[#6])-[#6]1:[#6]:[#6,#7]:[#6]:[#6,#7]:[#6]:1-[#8,#6,#16]-,=[#6,#8]\n", "Row: 1027 Displacement of [3H]Iloprost from human prostanoid IP receptor expressed in CHO cells after 30 mins by liquid scintillation counting\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 34.5, mcs nAts: 23\n", "[#6]-[#6]-[#8]-[#6]1:[#6]:[#6]:[#6](:[#6](:[#6]:1)-[#17,#6])-[#6](=[#8])-[#7]-[#6]1:[#6]:[#6]:[#6]:[#6](:[#6]:1)-[#6]-[#6](=[#8])-[#8]\n", "Row: 1028 Binding affinity measured for human C-C chemokine receptor type 3 expressed on human K562 cell membrane\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 23.0, mcs nAts: 17\n", "[#17,#6,#8,#9,#35,#53]-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1-[#6]=[#6]1-[#6]-[#6]-[#7]2-,:[#6]-1=,:[#7]-,:[#6]:[#6]-,:[#6]-,:2\n", "Row: 1029 Inhibition of human cloned transmembrane tumor-associated catalytic domain of carbonic anhydrase 9 preincubated for 15 mins by stopped flow CO2 hydration assay\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 22.9, mcs nAts: 11\n", "[#7,#8]-,=[#16](=[#8])(=,-[#8,#7])-[#6]1:[#6]:[#6]:[#6](:[#6]:[#6]:1)-[#17,#6,#7,#16]\n", "Row: 1030 Inhibition of Homo sapiens (human) protoporphyrinogen oxidase\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 23.4, mcs nAts: 19\n", "[#8]=,-[#6]1-[#6]2=,-[#6](-[#6]-[#6]-[#6]-[#6]-2)-[#6]-[#7]-1-[#6]1:[#6]:[#6](-[#8,#7]):[#6](:[#6]:[#6]:1-[#9,#8,#17])-[#35,#17]\n", "Row: 1031 Inhibition of human cloned transmembrane tumor-associated catalytic domain of carbonic anhydrase 12 preincubated for 15 mins by stopped flow CO2 hydration assay\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 22.9, mcs nAts: 11\n", "[#7,#8]-,=[#16](=[#8])(=,-[#8,#7])-[#6]1:[#6]:[#6]:[#6](:[#6]:[#6]:1)-[#17,#6,#7,#16]\n", "Row: 1032 Inhibition of HIV1 protease expressed in Escherichia coli\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 50.3, mcs nAts: 33\n", "[#6]-[#7,#8]-[#6](-[#6,#7]-[#7,#6]-[#7,#6](-[#6,#7]-[#6,#7]-[#6]-[#6](-[#8])(-[#6]-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1)-[#6](=[#8])-[#7]-[#6]1-[#6]2:[#6]:[#6]:[#6]:[#6]:[#6]:2-[#6]-[#6]-1-[#8])-,=[#6,#8])-,=[#6,#8]\n", "Row: 1033 Binding affinity for adenosine A2b receptor by using as [3H]ZM-241385 (14 nM) radioligand in membranes from HEK-A2B cells\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 37.7, mcs nAts: 36\n", "[#6]-[#6]-[#6]-[#7]1:[#6](=[#8]):[#6]2:[#7]:[#6](-[#6]3:[#6]:[#6]:[#6](:[#6]:[#6]:3)-[#8]-[#6]-[#6]3:[#7]:[#6](-[#6]4:[#6]:[#6]:[#6]:[#6]:[#6]:4):[#7,#8]:[#8,#7]:3):[#7]:[#6]:2:[#7](:[#6]:1=[#8])-[#6]-[#6]-[#6]\n", "Row: 1034 Inhibition of human recombinant His-tagged glyoxalase 1 expressed in Escherichia coli BL21 (DE3) preincubated for 20 mins by Dixon plot analysis\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 23.0, mcs nAts: 8\n", "[#6,#8]=,-[#6,#8]-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1\n", "Row: 1035 Binding affinity towards cloned human Gonadotropin-releasing hormone receptor expressed in RBL cells was determined by using [125I]GnRH as radioligand\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 38.7, mcs nAts: 33\n", "[#6,#7,#17]-[#6]1:[#7,#16]:[#6](-[#6]2:[#6](-[#6]):[#7](-[#6]-[#6]3:[#6](-[#9]):[#6]:[#6]:[#6]:[#6]:3-[#9]):[#6](:[#7](:[#6]:2=[#8])-[#6]-[#6](-[#7])-[#6]2:[#6]:[#6]:[#6]:[#6]:[#6]:2)=[#8]):[#6]:[#16,#6]:1\n", "Row: 1036 Inhibition of purified human BACE1 by FRET assay\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 31.1, mcs nAts: 18\n", "[#6]-[#7]1-[#6](=[#7])-[#7]-[#6](-[#6]-1=[#8])(-[#6]-[#6]-[#6]1-[#6]-[#6]-[#6]-[#6]-[#6]-1)-[#6]-[#6]\n", "Row: 1037 Displacement of [125]IABN from human D3 receptor expressed in HEK293 cells\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 31.1, mcs nAts: 29\n", "[#8,#17]-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1-[#7]1-[#6]-[#6]-[#7](-[#6]-[#6]-1)-[#6]-[#6]=,-[#6]-[#6]-[#7]-[#6](=[#8])-[#6]1:[#6,#7]:[#6]2:[#6]:[#6]:[#6]:[#6]:[#6]:2:[#16,#6,#7,#8]:1\n", "Row: 1038 Displacement of [125]IABN from human D4 receptor expressed in HEK293 cells\n", " * postgresql://localhost/chembl_23\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Mean nAts 31.1, mcs nAts: 29\n", "[#8,#17]-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1-[#7]1-[#6]-[#6]-[#7](-[#6]-[#6]-1)-[#6]-[#6]=,-[#6]-[#6]-[#7]-[#6](=[#8])-[#6]1:[#6,#7]:[#6]2:[#6]:[#6]:[#6]:[#6]:[#6]:2:[#16,#6,#7,#8]:1\n", "Row: 1039 Displacement of [125I]-glucagon-cex from human glucagon receptor by cell based assay in presence of 0.2% bovine serum albumin\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 33.9, mcs nAts: 29\n", "[#6]-[#6]-[#6](-[#8,#7]-[#6]1:[#6]:[#6,#7]:[#6](:[#6,#7]:[#6,#7]:1)-[#7]1:[#6]:[#6,#7]:[#6]:[#7,#6]:1)-[#6]1:[#6]:[#6]:[#6](:[#6]:[#6]:1)-[#6](=[#8])-[#7]-[#6]-[#6]-[#6](=[#8])-[#8]\n", "Row: 1040 Displacement of [3H]CCPA from adenosine A1 receptor in rat brain cortical membranes after 90 mins by liquid scintillation counting analysis\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 25.4, mcs nAts: 11\n", "[#8,#6]=,-[#6](-,=[#6,#8])-[#7]-[#6]1:[#7]:[#6]:[#6]:[#6](:[#16]:1)=[#8]\n", "Row: 1041 Inhibition of high affinity uptake by the serotonin transporter (5-HT) from rat synaptosomal nerve endings by using [3H]5-HT as radioligand\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 21.6, mcs nAts: 16\n", "[#6,#8]-[#8,#16]-[#6]-[#6]1-[#6]-[#7]-[#6]-[#6]-[#6]-1-[#6]1:[#6]:[#6]:[#6](:[#6]:[#6]:1)-[#17]\n", "Row: 1042 Displacement of [3H]CCPA from human recombinant adenosine A1 receptor expressed in CHO cells after 90 mins by liquid scintillation counting analysis\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 25.4, mcs nAts: 11\n", "[#8,#6]=,-[#6](-,=[#6,#8])-[#7]-[#6]1:[#7]:[#6]:[#6]:[#6](:[#16]:1)=[#8]\n", "Row: 1043 Inhibition of human carbonic anhydrase 1 preincubated for 15 mins by CO2 hydration stopped-flow assay\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 14.7, mcs nAts: 7\n", "[#7,#6]-[#6]1:[#6]:[#6]:[#6,#7]:[#6]:[#6]:1\n", "Row: 1044 Binding affinity to human EP4 receptor expressed in HEK293 cells\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 43.7, mcs nAts: 35\n", "[#6]-[#6]-[#8]-[#6]1:[#6]2:[#6](:[#6](:[#6]3:[#6]:1:[#6,#7]:[#6]:[#6]:[#6,#7]:3)-[#8]-[#6]-[#6])-[#6](=[#8])-[#7](-[#6]-2)-[#6]1:[#6]:[#6]:[#6](:[#6]:[#6]:1)-[#6]-[#16](=[#8])(=[#8])-[#7]-[#6](=[#8])-[#6]-[#6,#7,#8]\n", "Row: 1045 Binding affinity to human EP4 receptor expressed in HEK293 cells in presence of 10% human serum\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 43.7, mcs nAts: 35\n", "[#6]-[#6]-[#8]-[#6]1:[#6]2:[#6](:[#6](:[#6]3:[#6]:1:[#6,#7]:[#6]:[#6]:[#6,#7]:3)-[#8]-[#6]-[#6])-[#6](=[#8])-[#7](-[#6]-2)-[#6]1:[#6]:[#6]:[#6](:[#6]:[#6]:1)-[#6]-[#16](=[#8])(=[#8])-[#7]-[#6](=[#8])-[#6]-[#6,#7,#8]\n", "Row: 1046 Inhibition of human carbonic anhydrase 9 by stopped-flow CO2 hydrase assay\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 22.1, mcs nAts: 10\n", "[#8,#7]=,-[#6,#16](-,=[#8])-[#6]1:[#6]:[#6]:[#6](:[#6]:[#6]:1)-[#7,#6]\n", "Row: 1047 Displacement of [3H]MSX2 from human recombinant adenosine A2A receptor expressed in CHO cells after 30 mins by liquid scintillation counting analysis\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 25.4, mcs nAts: 11\n", "[#8,#6]=,-[#6](-,=[#6,#8])-[#7]-[#6]1:[#7]:[#6]:[#6]:[#6](:[#16]:1)=[#8]\n", "Row: 1048 Displacement of [3H]PK11195 from TSPO receptor in Wistar rat heart homogenate after 15 mins\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 25.1, mcs nAts: 19\n", "[#7,#8]-,=[#6](=,-[#8,#7])-[#6]1-[#6,#16]-[#6]-,:[#6]-[#6]2:[#6]-1:[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1:[#7]:2-[#6]-[#6]-[#9]\n", "Row: 1049 Displacement of [3H]PSB-603 from human recombinant adenosine A2B receptor expressed in CHO cells after 75 mins by liquid scintillation counting analysis\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 25.4, mcs nAts: 11\n", "[#8,#6]=,-[#6](-,=[#6,#8])-[#7]-[#6]1:[#7]:[#6]:[#6]:[#6](:[#16]:1)=[#8]\n", "Row: 1050 Displacement of [3H]PK11195 from TSPO receptor in rat Sprague-Dawley kidney membranes after 1 hr by liquid scintillation counting\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 27.5, mcs nAts: 16\n", "[#6]-[#7](-[#6](=[#8])-[#6]-[#7]1:[#6](=[#8]):[#8]:[#6]2:[#6]:1:[#6]:[#6]:[#6]:[#6]:2)-[#6]\n", "Row: 1051 Inhibition of recombinant human PDE10A using [3H]cAMP as substrate by scintillation proximity assay\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 24.2, mcs nAts: 17\n", "[#6]-[#6]1:[#6]:[#6](-[#17,#8]):[#6]:[#6]2:[#6]:1:[#7]:[#6]1:[#7]:[#7]:[#6](:[#6]:1:[#6]:2-[#7,#8])-[#6]\n", "Row: 1052 Displacement of [3H]cAMP from human recombinant PDE10A1 by competitive binding assay\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 25.4, mcs nAts: 18\n", "[#8,#17,#35]-[#6]1:[#6]:[#6](-[#6,#8]):[#6]2:[#6](:[#6]:1):[#6](:[#6]1:[#6](:[#7]:[#7]:[#6]:1:[#7]:2)-[#6])-[#6]-[#7]\n", "Row: 1053 Inhibition of human carbonic anhydrase 12 by stopped-flow CO2 hydrase assay\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 22.1, mcs nAts: 10\n", "[#8,#7]=,-[#6,#16](-,=[#8])-[#6]1:[#6]:[#6]:[#6](:[#6]:[#6]:1)-[#7,#6]\n", "Row: 1054 Displacement of [3H]DHT from human androgen receptor in MDA453 cells\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 23.7, mcs nAts: 18\n", "[#6,#7]1:[#6]:[#6](-[#7]2-[#6](=[#8])-[#6]3-[#6]4-[#6,#7]-[#6]-[#6](-[#6,#7]-3-[#6]-2=[#8])-[#8,#6]-4):[#6,#7]:[#6,#7]:[#6]:1\n", "Row: 1055 Binding affinity against H2 receptor of Guinea pig atrium\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 20.7, mcs nAts: 13\n", "[#8]=[#6](-[#7]-[#6,#7])-[#8]-[#6]-[#6]-[#6]-[#6]1:[#6]:[#7]:[#6]:[#7]:1\n", "Row: 1056 Displacement of [3H]AMPA from homomeric recombinant GluA2 receptor (unknown origin)\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 28.6, mcs nAts: 25\n", "[#8]=[#6](-[#8])-[#6]1-[#6]-[#6]2-[#6]-[#6](-[#16,#6,#7,#8]-[#6]3:[#6]:[#6]:[#6]:[#6]:[#6]:3-[#6]3:[#7]:[#7]:[#7]:[#7]:3)-[#6]-[#6]-[#6]-2-[#6]-[#7]-1\n", "Row: 1057 Displacement of [3H]ATPA from human Gluk1 receptor\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 28.6, mcs nAts: 25\n", "[#8]=[#6](-[#8])-[#6]1-[#6]-[#6]2-[#6]-[#6](-[#16,#6,#7,#8]-[#6]3:[#6]:[#6]:[#6]:[#6]:[#6]:3-[#6]3:[#7]:[#7]:[#7]:[#7]:3)-[#6]-[#6]-[#6]-2-[#6]-[#7]-1\n", "Row: 1058 Displacement of [3H]ZM-241385 from human adenosine A2A receptor expressed in HEK293 cells\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 33.2, mcs nAts: 28\n", "[#6]-[#6]1:[#6]:[#6]:[#6,#7](:[#8,#7]:1)-[#6]1:[#7,#6]:[#6](-[#7]-[#6](=[#8])-[#6]-[#8]-[#6]2:[#6,#7]:[#6]:[#6,#7]:[#6]:[#6,#7]:2):[#6,#7]:[#6](:[#7]:1)-[#6]1:[#7,#6]:[#6]:[#6]:[#16,#8]:1\n", "Row: 1059 Displacement of [3H]ZM-241385 from human adenosine A2A receptor expressed in HEK293 cells\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 27.5, mcs nAts: 23\n", "[#6]-[#6](=[#8])-[#7]-[#6]1:[#6]:[#6](-[#6]2:[#6]:[#6]:[#6]:[#6]:[#6]:2):[#7]:[#6](:[#7]:1)-[#7]1:[#7]:[#6](-[#6]):[#6]:[#6]:1-[#6]\n", "Row: 1060 Inhibitory activity against HIV-I protease.\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 31.4, mcs nAts: 16\n", "[#6]-[#6](-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1)-[#6]1:[#6](-,=[#8]):[#6,#8]:[#6]:[#8,#6]:[#6]:1=,-[#8]\n", "Row: 1061 Displacement of [3H]-CP55940 from human CB2 receptor expressed in CHO cells after 1 hr\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 30.0, mcs nAts: 12\n", "[#6,#8]-[#6]-[#6,#7]-[#6]-[#7,#6]1:,-[#6]:,-[#6,#7]:,-[#6](:,-[#6]:,-[#6]:,-1-,=[#6,#8])=,-[#8,#6,#16]\n", "Row: 1062 Displacement of [3H]-SR141716A from human CB1 receptor expressed in CHO cells after 1 hr\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 30.0, mcs nAts: 12\n", "[#6,#8]-[#6]-[#6,#7]-[#6]-[#7,#6]1:,-[#6]:,-[#6,#7]:,-[#6](:,-[#6]:,-[#6]:,-1-,=[#6,#8])=,-[#8,#6,#16]\n", "Row: 1063 Displacement of [125I]ABA from human adenosine A3 receptor expressed in HEK cells\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 32.5, mcs nAts: 25\n", "[#6]-[#6]-[#7]-[#6](=[#8])-[#6]1-[#8]-[#6](-[#7]2:[#6]:[#7]:[#6]3:[#6]:2:[#7]:[#6](:[#7]:[#6]:3-[#7]-[#6]-[#6])-[#53,#6])-[#6](-[#6]-1-[#8])-[#8]\n", "Row: 1064 Displacement of [3H]-Iloprost from human IP receptor expressed in CHO cells after 30 mins by liquid scintillation counting\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 35.7, mcs nAts: 25\n", "[#6]1:[#6]:[#6](-[#8]-[#6]-[#6]):[#6]:[#6]:[#6]:1-[#6](=[#8])-[#7]1:[#6](-[#6]):[#6](-[#6]-[#6](=[#8])-[#8]):[#6]2:[#6]:1:[#6]:[#6]:[#6]:[#6]:2\n", "Row: 1065 Binding affinity to human recombinant P2Y12 receptor expressed on CHO cell membrane\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 34.1, mcs nAts: 20\n", "[#6]-[#6]-[#6]1:[#6]:[#6]2:[#6](-[#7]3-[#6]-[#6]-[#7](-[#6]-[#6]-3)-[#6](=,-[#8,#6])-,=[#6,#8]):[#7]:[#6]:[#7]:[#6]:2:[#16]:1\n", "Row: 1066 Displacement of [3H]PSB-11 from human recombinant adenosine A3 receptor expressed in CHO cells after 60 mins by liquid scintillation counting analysis\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 25.4, mcs nAts: 11\n", "[#8,#6]=,-[#6](-,=[#6,#8])-[#7]-[#6]1:[#7]:[#6]:[#6]:[#6](:[#16]:1)=[#8]\n", "Row: 1067 Displacement of [3H]ZM-241385 from A2A adenosine A2A receptor expressed in HEK cells\n", " * postgresql://localhost/chembl_23\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Mean nAts 35.0, mcs nAts: 27\n", "[#8,#7]-,=[#6]-[#6]1:[#6]:[#7]:[#7](:[#6]:1)-[#6]1:[#7]:[#6](-[#7]-[#6]):[#6]2:[#6](:[#7]:1):[#7](:[#6]:[#7]:2)-[#6]1-[#8]-[#6](-[#6]-[#8])-[#6](-[#6]-1-[#8])-[#8]\n", "Row: 1068 Binding affinity against H1 receptor of Guinea pig ileum\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 20.7, mcs nAts: 13\n", "[#8]=[#6](-[#7]-[#6,#7])-[#8]-[#6]-[#6]-[#6]-[#6]1:[#6]:[#7]:[#6]:[#7]:1\n", "Row: 1069 Displacement of [3H]nisoxetine from norepinephrine transporter in Sprague-Dawley rat frontal cortex after 1 hr by liquid scintillation counting\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 27.4, mcs nAts: 17\n", "[#6]-[#6]-[#8]-[#6](=[#8])-[#6]1(-[#6]2:[#6]:[#6]:[#6]:[#6]:[#6]:2)-[#6]-[#6]-[#7]-[#6]-[#6]-1\n", "Row: 1070 Displacement of [3H]WIN 35428 from dopamine transporter in Sprague-Dawley rat brain after 1 hr by liquid scintillation counting\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 27.4, mcs nAts: 17\n", "[#6]-[#6]-[#8]-[#6](=[#8])-[#6]1(-[#6]2:[#6]:[#6]:[#6]:[#6]:[#6]:2)-[#6]-[#6]-[#7]-[#6]-[#6]-1\n", "Row: 1071 Displacement of [3H]citalopram from serotonin transporter in Sprague-Dawley rat brain after 1 hr by liquid scintillation counting\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 27.4, mcs nAts: 17\n", "[#6]-[#6]-[#8]-[#6](=[#8])-[#6]1(-[#6]2:[#6]:[#6]:[#6]:[#6]:[#6]:2)-[#6]-[#6]-[#7]-[#6]-[#6]-1\n", "Row: 1072 Inhibition of human ERG expressing HEK293 cells by [3H]dofetilide binding assay\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 32.0, mcs nAts: 26\n", "[#8,#6,#7]-[#6]1:[#6]:[#6]:[#6]2:[#6](:[#6]:1)-[#6]1(-[#6]-[#8]-[#6](=[#7]-1)-[#7])-[#6]1:[#6]:[#6](-[#6,#7]3:,-,=[#6]:,-[#7,#6]:,-[#6,#7,#8]:,-[#7,#6,#8]:,-[#6,#7]:,-3):[#6]:[#6]:[#6]:1-[#8]-2\n", "Row: 1073 Inhibition of human carbonic anhydrase 1 by stopped-flow CO2 hydrase assay\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 19.2, mcs nAts: 12\n", "[#8]=,-[#6]1-,=[#7]-[#16](=[#8])(=[#8])-[#6]2:[#6]-1:[#6]:[#6]:[#6]:[#6]:2\n", "Row: 1074 Inhibition of human thrombin using Boc-Gln-Ala-Arg-7-amido-4-methyl coumarin hydrobromide\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 36.3, mcs nAts: 20\n", "[#7]=[#6](-[#7])-[#6]1:[#6]:[#6]:[#6](:[#6]:[#6]:1)-[#8]-[#6]1:[#6]:[#6](-[#8,#6,#7]-[#6,#7,#16]):[#6]:[#6](:[#6]:1)-[#6,#8]=,-[#8,#6]\n", "Row: 1075 Displacement of [125I]ABA from human adenosine A1 receptor expressed in HEK cells\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 32.5, mcs nAts: 25\n", "[#6]-[#6]-[#7]-[#6](=[#8])-[#6]1-[#8]-[#6](-[#7]2:[#6]:[#7]:[#6]3:[#6]:2:[#7]:[#6](:[#7]:[#6]:3-[#7]-[#6]-[#6])-[#53,#6])-[#6](-[#6]-1-[#8])-[#8]\n", "Row: 1076 Inhibition of human carbonic anhydrase 9 by stopped-flow CO2 hydrase assay\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 19.2, mcs nAts: 12\n", "[#8]=,-[#6]1-,=[#7]-[#16](=[#8])(=[#8])-[#6]2:[#6]-1:[#6]:[#6]:[#6]:[#6]:2\n", "Row: 1077 Competition with 20 pM [125I]BH-CCK-8S at Cholecystokinin type A receptor binding sites on guinea pig pancreatic cells\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 53.9, mcs nAts: 32\n", "[#7,#8]-,=[#6](=,-[#8,#7])-[#6]1-[#6]2-[#6]3:[#6]:[#6]:[#6]:[#6]:[#6]:3-[#6](-[#6]-1-[#6](=[#8])-[#7]-[#6]-[#6]1-,:[#6]-,:[#6]-,:[#6]-,:[#6](-,:[#6]-,:1)-,:[#6]-,:[#6]-,:[#6])-[#6]1:[#6]-2:[#6]:[#6]:[#6]:[#6]:1\n", "Row: 1078 Binding affinity against 5-hydroxytryptamine 1C receptor in rat using [3H]mesulergine as radioligand\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 24.9, mcs nAts: 8\n", "[#6,#7]1:,-[#6,#7]:,-[#6]:,-[#6,#7](:,-[#6]:,-[#6]:,-1)-[#6]-,=[#7,#6,#8]\n", "Row: 1079 Binding affinity towards kappa opioid receptor by displacement of [3H]EKC in guinea pig cortical tissue\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 22.9, mcs nAts: 16\n", "[#6]-[#6]1-[#6]-[#7](-[#6])-[#6]-[#6]-[#6]-1(-[#6])-[#6]1:[#6]:[#6]:[#6]:[#6](:[#6]:1)-[#8]\n", "Row: 1080 Displacement of radiolabeled darglitazone from human PPAR gamma by SPA binding assay\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 30.0, mcs nAts: 26\n", "[#6]-[#6]1:[#8]:[#6](-[#6]2:[#6]:[#6]:[#6]:[#6]:[#6]:2):[#7]:[#6]:1-[#6]-[#6]-[#8]-[#6]1:[#6]:[#6]:[#6](:[#6]:[#7]:1)-[#6]-[#6]-[#6](=[#8])-[#8]\n", "Row: 1081 Ki value against human carbonic anhydrase I\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 14.7, mcs nAts: 5\n", "[#6,#7,#8]-[#16,#6](-,=[#7,#8,#9])(=,-[#8,#9])=,-[#8,#6,#7,#9]\n", "Row: 1082 Ki value against human carbonic anhydrase VII\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 15.0, mcs nAts: 6\n", "[#6]1:,-[#6,#7]:,-[#6,#7,#8]:,-[#6,#16]:,-[#6]:,-[#6,#7]:,-1\n", "Row: 1083 Inhibition of human carbonic anhydrase 12 by stopped-flow CO2 hydrase assay\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 19.2, mcs nAts: 12\n", "[#8]=,-[#6]1-,=[#7]-[#16](=[#8])(=[#8])-[#6]2:[#6]-1:[#6]:[#6]:[#6]:[#6]:2\n", "Row: 1084 Binding affinity to human CB1 receptor\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 30.5, mcs nAts: 17\n", "[#7,#8]-,=[#6](=,-[#8,#7])-[#6]1:[#6]:[#6]:[#6]2:[#6](:[#6]:1):[#6]1:[#6](:[#7]:2-[#6,#16])-[#6]-[#7](-[#6]-1)-[#6]\n", "Row: 1085 Binding affinity for the Opioid receptor mu 1\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 26.7, mcs nAts: 13\n", "[#6]-[#7](-[#6](=[#8])-[#6]-[#6,#8])-[#6]1-[#6]-[#6]-[#6]-[#6]-[#6]-1-[#7]\n", "Row: 1086 Displacement of [3H]BMS-599240 from BACE1 (unknown origin) expressed in HEK293 cells at pH 5 after 1.5 hrs by Microbeta liquid scintillation counting analysis\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 32.7, mcs nAts: 8\n", "[#6]1:[#6](-[#17,#6]):[#6]:[#6]:[#6]:[#6]:1-[#17]\n", "Row: 1087 Inhibition of PDE10A (unknown origin)\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 31.5, mcs nAts: 20\n", "[#7,#6]-[#6]-[#6]-[#6]1:[#7]:[#6]2:[#6,#7]:[#6]:[#6]:[#6]:[#6]:2:[#6](:[#7]:1-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1)=[#8]\n", "Row: 1088 Inhibition of rat ecto-5'-nucleotidase expressed in Sf9 cells by capillary electrophoresis method\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 32.9, mcs nAts: 28\n", "[#7]-[#6]1:[#6](-[#16](=[#8])(=[#8])-[#8]):[#6]:[#6](:[#6]2:[#6]:1-[#6](=[#8])-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1-[#6]-2=[#8])-[#7]-[#6]1-,:[#6]-,:[#6]-,:[#6]-,:[#6]-,:[#6]-,:1\n", "Row: 1089 Displacement of [3H]-PGD2 from mouse DP receptor expressed in CHO cells after 20 mins by liquid scintillation counting\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 35.7, mcs nAts: 25\n", "[#6]1:[#6]:[#6](-[#8]-[#6]-[#6]):[#6]:[#6]:[#6]:1-[#6](=[#8])-[#7]1:[#6](-[#6]):[#6](-[#6]-[#6](=[#8])-[#8]):[#6]2:[#6]:1:[#6]:[#6]:[#6]:[#6]:2\n", "Row: 1090 Inhibition of human CA1 by CO2 hydration activity based stopped flow assay\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 18.8, mcs nAts: 8\n", "[#6,#8,#16]-[#6]1:[#7]:[#8]:[#7]:[#6]:1-[#16,#6,#7,#8]=,-[#8,#6,#7]\n", "Row: 1091 Inhibition of human CA2 by CO2 hydration activity based stopped flow assay\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 18.8, mcs nAts: 8\n", "[#6,#8,#16]-[#6]1:[#7]:[#8]:[#7]:[#6]:1-[#16,#6,#7,#8]=,-[#8,#6,#7]\n", "Row: 1092 Displacement of [3H]U69,593 from guinea pig cortex/cerebella kappa opioid receptor after 2 hrs by liquid scintillation counting analysis\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 46.8, mcs nAts: 18\n", "[#7,#6,#8]-[#6,#7]-[#6](-[#6]-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1)-[#7,#6]-[#6](=[#8])-[#6,#7]-[#7,#6]-[#6](=,-[#8,#6,#7])-,=[#6,#8]\n", "Row: 1093 Binding affinity towards human orexin receptor type 1 was determined using [125I]-Orexin A as radio ligand\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 26.6, mcs nAts: 24\n", "[#6]-[#6]1(-[#6])-[#8]-[#6]-[#6](-[#6](-[#8]-1)-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1)-[#7]-,=[#6](=,-[#8,#7,#16])-,=[#7,#6,#8]-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1\n", "Row: 1094 Binding affinity towards human orexin receptor type 2 was determined using [125I]-Orexin A as radio ligand\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 26.6, mcs nAts: 24\n", "[#6]-[#6]1(-[#6])-[#8]-[#6]-[#6](-[#6](-[#8]-1)-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1)-[#7]-,=[#6](=,-[#8,#7,#16])-,=[#7,#6,#8]-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1\n", "Row: 1095 Inhibition of human methionine aminopeptidase 1\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 19.0, mcs nAts: 11\n", "[#8,#16]=[#6]1-[#7]-[#6](=[#8])-[#6](-[#6](-[#7]-1)=[#8])=[#6]-[#6]\n", "Row: 1096 In vitro binding affinity for rat histamine H3 receptor using [3H]N-alpha-methylhistamine\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 26.8, mcs nAts: 19\n", "[#6]-[#6]1-[#6]-[#6]-[#6]-[#7]-1-[#6]-[#6]-[#6]1:[#6]:[#6]2:[#6]:[#6](-[#7,#6]-[#6,#7]):[#6]:[#6]:[#6]:2:[#8]:1\n", "Row: 1097 Displacement of [125I]11-Tyr somatostatin-14 from human SST5R expressed in CHO cells\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 31.1, mcs nAts: 18\n", "[#6]-[#6]-[#7]1-[#6]-[#6]-[#6](-[#6]-[#6]-1)-[#7]-[#6]1:[#7]:[#6]2:[#6]:[#6]:[#6]:[#6]:[#6]:2:[#16,#7,#8]:1\n", "Row: 1098 Inhibition of cathepsin L\n", " * postgresql://localhost/chembl_23\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Mean nAts 36.5, mcs nAts: 20\n", "[#6,#8]-[#6]1:[#6]:[#6]:[#6]:[#6](:[#6]:1)-[#6](=[#8])-[#7]-[#6](-[#6]-[#6]-[#6])-[#6](=[#8])-[#7]-[#6]-[#6]-[#7,#6,#8,#16]\n", "Row: 1099 In vitro binding affinity for human histamine H3 receptor using [3H]N-alpha-methylhistamine\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 26.8, mcs nAts: 19\n", "[#6]-[#6]1-[#6]-[#6]-[#6]-[#7]-1-[#6]-[#6]-[#6]1:[#6]:[#6]2:[#6]:[#6](-[#7,#6]-[#6,#7]):[#6]:[#6]:[#6]:2:[#8]:1\n", "Row: 1100 Inhibition of cathepsin K\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 36.5, mcs nAts: 20\n", "[#6,#8]-[#6]1:[#6]:[#6]:[#6]:[#6](:[#6]:1)-[#6](=[#8])-[#7]-[#6](-[#6]-[#6]-[#6])-[#6](=[#8])-[#7]-[#6]-[#6]-[#7,#6,#8,#16]\n", "Row: 1101 Inhibition of cathepsin S\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 36.5, mcs nAts: 20\n", "[#6,#8]-[#6]1:[#6]:[#6]:[#6]:[#6](:[#6]:1)-[#6](=[#8])-[#7]-[#6](-[#6]-[#6]-[#6])-[#6](=[#8])-[#7]-[#6]-[#6]-[#7,#6,#8,#16]\n", "Row: 1102 Binding affinity to human OX2 receptor\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 30.2, mcs nAts: 18\n", "[#6]-[#7]1-[#6]-[#6]2-[#6]-[#7](-[#6]-[#6]-2-[#6]-1)-[#6](=[#8])-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1-[#6,#7,#8]\n", "Row: 1103 Binding affinity to Bcl2 by fluorescence polarization assay\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 46.2, mcs nAts: 38\n", "[#8]=[#6](-[#7]-[#16](=[#8])(=[#8])-[#6]1:[#6]:[#6]:[#6](:[#6](:[#6]:1)-[#7](=[#8])-[#8])-[#7]-[#6]-[#6]-[#16,#6]-[#6,#7]1:,-[#6]:,-[#6]:,-[#6,#8]:,-[#6]:,-[#6]:,-1)-[#6]1:[#6]:[#6]:[#6](:[#6]:[#6]:1)-[#6,#7]1:,-[#6]:,-[#6]:,-[#6,#7](:,-[#6]:,-[#6]:,-1)-[#9,#6]\n", "Row: 1104 Displacement of [3H]RTX from rat TRPV1 expressed in CHO cells\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 25.1, mcs nAts: 13\n", "[#6]-[#6,#7]-[#7,#6]-,=[#6,#7]-[#6]-[#6]1:[#6]:[#6]:[#6](:[#6](:[#6]:1)-[#8,#6,#9,#17])-[#8,#6]\n", "Row: 1105 Binding affinity to human OX1 receptor\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 30.4, mcs nAts: 18\n", "[#6]-[#7]1-[#6]-[#6]2-[#6]-[#7](-[#6]-[#6]-2-[#6]-1)-[#6](=[#8])-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1-[#7,#6,#8]\n", "Row: 1106 Displacement of [3H]MRE 3008F20 from human adenosine A3 receptor expressed in CHO cells after 120 mins by scintillation spectrometry\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 27.5, mcs nAts: 22\n", "[#6]-[#6]-[#7]1-[#6](=[#8])-[#7]2-[#6]-[#6](-[#6])-[#7]=[#6]-2-[#6]2:[#6]-1:[#7]:[#6](:[#7]:2)-[#6]1:[#6]:[#6](-[#6,#8]):[#7]:[#7,#8]:1\n", "Row: 1107 Inhibition of [3H]PK11195 binding to TSPO in rat kidney mitochondrial membranes\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 30.5, mcs nAts: 19\n", "[#6]-[#6]-[#6]-[#7](-[#6])-[#6](=[#8])-[#6](=[#8])-[#6]1:[#6](-[#6]):[#7]:[#6]2:[#6]:1:[#6]:[#6]:[#6]:[#6]:2\n", "Row: 1108 Displacement of [3H]ZM 241385 from human adenosine A2A receptor expressed in CHO cells after 60 mins by scintillation spectrometry\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 27.5, mcs nAts: 22\n", "[#6]-[#6]-[#7]1-[#6](=[#8])-[#7]2-[#6]-[#6](-[#6])-[#7]=[#6]-2-[#6]2:[#6]-1:[#7]:[#6](:[#7]:2)-[#6]1:[#6]:[#6](-[#6,#8]):[#7]:[#7,#8]:1\n", "Row: 1109 Concentration required to inhibit the binding of 20 pM [125I]BH-CCK-8S radioligand to guinea pig pancreas CCK1 receptor\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 35.7, mcs nAts: 25\n", "[#6]-[#6]1:[#7,#6]:[#6](-[#6](=[#8])-[#7]-[#6]2:[#6]:[#6]:[#6]:[#6](:[#6]:2)-[#6]=,-[#8,#6]):[#6](:[#7]:1)-[#6]-[#6,#8]-[#6]1-[#6]-[#6]-[#6]-[#6]-[#6]-1\n", "Row: 1110 Displacement of [3H]-CCPA from human adenosine A1 receptor expressed in CHO cells after 3 hrs by topcount scintillation counting analysis\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 24.7, mcs nAts: 12\n", "[#6]-[#7]1:[#6]:[#6]2:[#6](-[#17,#6]):[#7]:[#6](:[#7]:[#6]:2:[#7]:1)-[#7]\n", "Row: 1111 Displacement of [3H]-NECA from human adenosine A2A receptor expressed in CHO cells after 3 hrs by topcount scintillation counting analysis\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 24.7, mcs nAts: 12\n", "[#6]-[#7]1:[#6]:[#6]2:[#6](-[#17,#6]):[#7]:[#6](:[#7]:[#6]:2:[#7]:1)-[#7]\n", "Row: 1112 Antagonist activity at human adenosine A2B receptor expressed in CHO cells assessed as inhibition of NECA-induced adenylyl cyclase activity after 20 mins in presence of [alpha-32P]ATP\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 24.7, mcs nAts: 12\n", "[#6]-[#7]1:[#6]:[#6]2:[#6](-[#17,#6]):[#7]:[#6](:[#7]:[#6]:2:[#7]:1)-[#7]\n", "Row: 1113 Displacement of [3H]-HEMADO from human adenosine A3 receptor expressed in CHO cells after 3 hrs by topcount scintillation counting analysis\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 24.7, mcs nAts: 12\n", "[#6]-[#7]1:[#6]:[#6]2:[#6](-[#17,#6]):[#7]:[#6](:[#7]:[#6]:2:[#7]:1)-[#7]\n", "Row: 1114 Displacement of [125I]-CGRP from human recombinant CGRP receptor\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 41.1, mcs nAts: 28\n", "[#6]-[#6]1:[#6,#7]:[#7]:[#6](:[#7]:1)-[#6](-[#7]-[#6](=[#8])-[#7]1-[#6]-[#6]-[#6]-[#6]-[#6]-1)-[#6]-[#6]-[#6](-[#6]1:[#6]:[#6]:[#6]:[#6](:[#6]:1-[#9])-[#9])-[#6]\n", "Row: 1115 Inhibition of recombinant rat FAAH expressed in Escherichia coli assessed as breakdown of [14C]-oleamide by Dixon plot analysis\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 28.0, mcs nAts: 20\n", "[#8]=[#6](-[#6]-[#6]-[#6]-[#6]-[#6]-[#6]-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1)-[#6]1:[#7]:[#6]:[#6](:[#8]:1)-[#6]\n", "Row: 1116 Displacement of [3H]LSD from human 5-HT6 serotonin receptor by scintillation proximity assay\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 26.6, mcs nAts: 20\n", "[#6]-[#7]1:[#6]2:[#6](:[#6]3:[#6]:1:[#6]:[#6]:[#6](:[#6]:3)-[#16](=,-[#8,#6])(=[#8])-,=[#6,#7,#8])-[#6]1-[#6]-[#6]-[#6](-[#6]-2)-[#7]-1\n", "Row: 1117 Displacement of [3H]-CP55,940 from human CB1 receptor expressed in HEK293 cells\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 31.7, mcs nAts: 22\n", "[#6]1-[#6]-[#6]-[#7](-[#6]-[#6]-1)-[#6](=[#8])-[#6]1:[#6]:[#6]:[#6]2:[#6](:[#6]:1):[#6]1:[#6](:[#7]:2)-[#6]-[#6]-[#7](-[#6]-1)-[#6]\n", "Row: 1118 Displacement of [125I]CGPR from human CL receptor expressed in HEK293 cells\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 36.6, mcs nAts: 33\n", "[#8]=[#6]1-[#7]-[#6]-[#6](-[#6]2:[#6]:[#6]:[#6]:[#7,#6]:[#6,#7]:2)-[#6]-[#6]-[#6]-1-[#7]-[#6](=[#8])-[#7]1-[#6]-[#6]-[#6](-[#6]-[#6]-1)-[#7]1:[#6](=,-[#8]):[#7]:[#6]2:[#6]:1:[#6]:[#6]:[#6]:[#7]:2\n", "Row: 1119 Inhibition of C57BL/6 mouse eNOS assessed as conversion of oxyhemoglobin to methemoglobin by UV spectrophotometer analysis\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 19.7, mcs nAts: 15\n", "[#6,#7]1:[#7,#6]:[#6,#7]:[#6,#7]:[#7]:1-[#6]-[#6](=[#8])-[#6]1:[#6]:[#6]:[#6](:[#6]:[#6]:1)-[#35,#7,#16]\n", "Row: 1120 Inhibition of rat recombinant nNOS expressed in baculovirus-infected Sf9 cells assessed as conversion of oxyhemoglobin to methemoglobin by UV spectrophotometer analysis\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 19.7, mcs nAts: 15\n", "[#6,#7]1:[#7,#6]:[#6,#7]:[#6,#7]:[#7]:1-[#6]-[#6](=[#8])-[#6]1:[#6]:[#6]:[#6](:[#6]:[#6]:1)-[#35,#7,#16]\n", "Row: 1121 Displacement of [3H]I-AB-MECA from human recombinant adenosine A3 receptor expressed in CHO cells after 60 mins by gamma counting\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 35.8, mcs nAts: 31\n", "[#6]-[#7]-[#6](=[#8])-[#6]12-[#6]-[#6]-1-[#6](-[#7]1:[#6]:[#7]:[#6]3:[#6]:1:[#7]:[#6](:[#7]:[#6]:3-[#7]-[#6])-[#6]#[#6]-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6,#7]:1)-[#6](-[#6]-2-[#8])-[#8]\n", "Row: 1122 Inhibition of PIM3 (unknown origin)\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 25.9, mcs nAts: 16\n", "[#8,#6]=,-[#6](-[#7]-[#6]1:[#6]:[#6,#7]:[#6,#7]:[#6,#7]:[#6]:1-[#7]1-[#6]-[#6]-[#6,#7]-[#6]-[#6]-1)-,=[#6,#8]\n", "Row: 1123 Inhibition of human thrombin\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 38.6, mcs nAts: 27\n", "[#6]-[#8]-[#6]1:[#6]:[#6]:[#6](:[#6]:[#6]:1)-[#7]1:[#7]:[#6](-[#6,#7,#16]-,=,#[#9,#6,#7,#8]):[#6]2:[#6]:1-[#6](=[#8])-[#7](-[#6]1:[#6]:[#6]:[#6](:[#6]:[#6]:1)-[#7,#6])-[#6]-[#6]-2\n", "Row: 1124 Inhibition of catalytic domain of human cloned carbonic anhydrase9 by CO2 hydration method\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 19.1, mcs nAts: 12\n", "[#6]=[#7]-[#7]-[#6](=[#8])-[#7]-[#6]1:[#7]:[#7]:[#6](:[#16]:1)=[#16]\n", "Row: 1125 Inhibition of human cloned carbonic anhydrase2 by CO2 hydration method\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 19.1, mcs nAts: 12\n", "[#6]=[#7]-[#7]-[#6](=[#8])-[#7]-[#6]1:[#7]:[#7]:[#6](:[#16]:1)=[#16]\n", "Row: 1126 Inhibition of human cloned carbonic anhydrase1 by CO2 hydration method\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 19.1, mcs nAts: 12\n", "[#6]=[#7]-[#7]-[#6](=[#8])-[#7]-[#6]1:[#7]:[#7]:[#6](:[#16]:1)=[#16]\n", "Row: 1127 Binding affinity to rat SERT\n", " * postgresql://localhost/chembl_23\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Mean nAts 28.1, mcs nAts: 21\n", "[#6]-[#7]-[#6]-[#6]1:[#6]:[#6](-[#6]#,-[#6]-[#6]-[#6]-[#7]):[#6]:[#6]:[#6]:1-[#8]-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1\n", "Row: 1128 Displacement of [3H]CP-55,940 from human recombinant CB1 receptor transfected in HEK cells\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 31.9, mcs nAts: 13\n", "[#7,#6]1:[#6]:[#6,#7](-[#6]-[#6,#7]-,=[#7,#6,#8]):[#6]2:[#6]:1:[#6]:[#6]:[#6](:[#6]:2)-[#6,#8,#35]\n", "Row: 1129 Displacement of [3H]CP-55,940 from human recombinant CB2 receptor transfected in HEK cells\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 31.9, mcs nAts: 13\n", "[#7,#6]1:[#6]:[#6,#7](-[#6]-[#6,#7]-,=[#7,#6,#8]):[#6]2:[#6]:1:[#6]:[#6]:[#6](:[#6]:2)-[#6,#8,#35]\n", "Row: 1130 Displacement of [3H]ZM2413853 from human adenosine A2A receptor expressed in human HeLa cells by liquid scintillation counting\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 23.3, mcs nAts: 12\n", "[#6,#8]-,=[#6](=,-[#8,#6])-[#7]-[#6]1:[#6,#7]:[#6](-[#6]):[#7,#6]:[#6](:[#7]:1)-[#6]\n", "Row: 1131 Binding affinity for the Opioid receptor kappa 1\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 26.8, mcs nAts: 13\n", "[#6]-[#7](-[#6](=[#8])-[#6]-[#6,#8])-[#6]1-[#6]-[#6]-[#6]-[#6]-[#6]-1-[#7]\n", "Row: 1132 Inhibition of cathepsin-D (unknown origin)\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 30.9, mcs nAts: 18\n", "[#6]-[#7]1-[#6](=[#7])-[#7]-[#6](-[#6]-1=[#8])(-[#6]-[#6]-[#6]1-[#6]-[#6]-[#6]-[#6]-[#6]-1)-[#6]-[#6]\n", "Row: 1133 Binding affinity to human histamine H3 receptor\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 31.4, mcs nAts: 24\n", "[#7]-[#6]-[#6]-[#6]-[#8]-[#6]1:[#6]:[#6]:[#6]2:[#6](:[#6]:1)-[#6]-[#7](-[#6])-[#6]-[#6]-2-[#6]1:[#6]:[#6]:[#6](:[#6]:[#6]:1)-[#8]-[#6]\n", "Row: 1134 Inhibition of [3H]5-HT uptake at SERT in rat cortical synaptosomes\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 32.5, mcs nAts: 26\n", "[#6]-[#6]1:[#6]:[#6]:[#6]2:[#6](:[#7]:1):[#6]:[#6]:[#6]:[#6]:2-[#7]1-[#6]-[#6]-[#7](-[#6]-[#6]-1)-[#6]-[#6]-[#6]1:[#6]:[#6]:[#6]:[#6](:[#6]:1)-[#7]\n", "Row: 1135 Binding affinity to human SERT\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 31.4, mcs nAts: 24\n", "[#7]-[#6]-[#6]-[#6]-[#8]-[#6]1:[#6]:[#6]:[#6]2:[#6](:[#6]:1)-[#6]-[#7](-[#6])-[#6]-[#6]-2-[#6]1:[#6]:[#6]:[#6](:[#6]:[#6]:1)-[#8]-[#6]\n", "Row: 1136 Displacement of [3H](-)-(S)-emopamil from EBP in guinea pig liver membrane\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 25.0, mcs nAts: 8\n", "[#6,#8]-[#7,#6]1-,=,:[#6]-,:[#6]-,:[#6,#7](-,:[#6]-,:[#6]-,:1)-[#6,#7,#8]\n", "Row: 1137 Inhibitory activity against human tryptase enzyme\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 37.7, mcs nAts: 14\n", "[#6]-[#6,#8]-[#7,#6,#8]-[#6](=,-[#8,#6])-[#7,#6]1-,:[#6]-,:[#6]-,:[#7,#6](-,:[#6]-,:[#6]-,:1)-[#6,#7]-[#7,#6,#8]-,=[#6,#7,#16]\n", "Row: 1138 Binding affinity to rat SERT\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 31.4, mcs nAts: 24\n", "[#7]-[#6]-[#6]-[#6]-[#8]-[#6]1:[#6]:[#6]:[#6]2:[#6](:[#6]:1)-[#6]-[#7](-[#6])-[#6]-[#6]-2-[#6]1:[#6]:[#6]:[#6](:[#6]:[#6]:1)-[#8]-[#6]\n", "Row: 1139 Displacement of [3H]CGS21680 from human A2A adenosine receptor expressed in HEK293 cells after 60 mins by liquid scintillation counting\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 22.6, mcs nAts: 15\n", "[#6,#7,#8]-,=[#6](=,-[#8,#6])-[#7]-[#6]1:[#7]:[#6](-[#6]2:[#6]:[#6]:[#6]:[#6]:[#6]:2):[#7]:[#7]:1\n", "Row: 1140 Inhibition of HCV genotype 1a NS3/4A protease using Ac-DED(Edans)EEAbu-psi[COO]ASK(Dabcyl)-NH2 as substrate by FRET assay\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 55.7, mcs nAts: 8\n", "[#6,#8]-,=[#6,#16](-,=[#6,#8])(-,=[#6,#8])-[#7,#6,#8]-[#6](=,-[#8,#6,#7])-,=[#7,#6,#8]\n", "Row: 1141 Inhibition of human MDR1 expressed in mouse NIH/3T3 cells assessed as inhibition of daunomycin efflux incubated for 30 mins by flow cytometry\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 48.1, mcs nAts: 42\n", "[#6]-[#6](=[#8])-[#8]-[#6]1-[#6]-[#6]-[#6](-[#6]23-[#6]-1(-[#6](-[#6](-[#6](-[#6]-2-,=[#8,#17])-[#6](-[#8]-3)(-[#6])-[#6])-[#8]-[#6](=[#8])-[#6]=,-[#6]-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1)-[#8]-[#6](=[#8])-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1)-[#6])(-[#6])-[#8,#17]\n", "Row: 1142 Displacement of [3H]CP-55,940 from human CB2 receptor expressed in CHO cell membranes after 60 mins by scintillation counting analysis\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 31.6, mcs nAts: 19\n", "[#6]-[#6]-[#6]-[#6]-[#6]-[#7]1:[#6]:[#6](-[#6](=[#8])-[#7]-[#6]):[#6](:[#7]2:[#6]:1:[#7]:[#6]:[#7]:2)=[#8]\n", "Row: 1143 Displacement of [3H]N-alpha-methylhistamine from rhesus monkey histamine H3 receptor expressed in CHO cells\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 26.8, mcs nAts: 21\n", "[#6]-[#6]1-[#6]-[#6]-[#6]-[#7]-1-[#6]1-[#6]-[#6]-[#7](-[#6]-1)-[#6]1:[#6]:[#6]:[#6](:[#6]:[#6]:1)-[#7]-[#6](=,-[#8,#6])-,=[#6,#8]\n", "Row: 1144 Inhibitory potency was measured against bovine trypsin.\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 33.1, mcs nAts: 23\n", "[#6]1:[#6]:[#6](-[#8]-[#6]2:,-[#6]:,-[#6]:,-[#6,#7]:,-[#6]:,-[#6]:,-2):[#7,#6]:[#6](:[#6,#7]:1)-[#8]-[#6]1:[#6]:[#6]:[#6]:[#6](:[#6]:1)-[#6,#7](=,-[#7,#6,#8])-,=[#7,#6,#8]\n", "Row: 1145 Displacement of [3H]CP-55,940 from human CB1 receptor expressed in CHO cell membranes after 90 mins by scintillation counting analysis\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 31.6, mcs nAts: 19\n", "[#6]-[#6]-[#6]-[#6]-[#6]-[#7]1:[#6]:[#6](-[#6](=[#8])-[#7]-[#6]):[#6](:[#7]2:[#6]:1:[#7]:[#6]:[#7]:2)=[#8]\n", "Row: 1146 Displacement of [3H]SCH58261 from human adenosine A2A receptor expressed in HEK293 cells\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 32.5, mcs nAts: 21\n", "[#8,#6,#9]-[#6,#7]1:,-[#6]:,-[#6]:,-[#6,#7](:,-[#6]:,-[#6]:,-1)-[#6]-[#6]-[#8,#6,#7,#16]-[#6]1:[#6]:[#6]2:[#7]:[#6](-[#6]):[#7]:[#7]:2:[#6](:[#7]:1)-[#7]\n", "Row: 1147 Displacement of [3H]N-methyl-scopolamine from human muscarinic M3 receptor expressed in CHOK1 cells\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 35.5, mcs nAts: 19\n", "[#6]-[#7]1-[#6]-[#6](-[#6]2:[#6]:[#6]:[#6]:[#6]:[#6]:2)(-[#6]2:[#6]:[#6]:[#6]:[#6]:[#6]:2)-[#7]-[#6]-1=[#8]\n", "Row: 1148 Competitive inhibition of human dihydrofolate reductase by spectrophotometry\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 33.9, mcs nAts: 30\n", "[#6,#8,#9,#17]-[#6]1:[#6]:[#6]:[#6](:[#6]:[#6]:1)-[#7](-[#6])-[#6]-[#6]1:[#7]:[#6]2:[#6]:[#6](-[#6](-[#9])(-[#9])-[#9]):[#6]:[#6]:[#6]:2:[#7]:[#6]:1-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1\n", "Row: 1149 Displacement of [3H]CCPA from rat brain cortex adenosine A1 receptor\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 36.4, mcs nAts: 29\n", "[#6]-[#6]-[#7]1:[#6](=[#8]):[#7]:[#6]2:[#6](:[#6]:1=[#8]):[#7]:[#6](:[#7]:2)-[#6]1:[#6]:[#6]:[#6](:[#6]:[#6]:1)-[#16](=[#8])(=[#8])-[#7]1-[#6]-[#6]-[#7](-[#6]-[#6]-1)-[#6]\n", "Row: 1150 Displacement of [3H]CCPA from human adenosine A1 receptor expressed in CHO cells\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 36.4, mcs nAts: 29\n", "[#6]-[#6]-[#7]1:[#6](=[#8]):[#7]:[#6]2:[#6](:[#6]:1=[#8]):[#7]:[#6](:[#7]:2)-[#6]1:[#6]:[#6]:[#6](:[#6]:[#6]:1)-[#16](=[#8])(=[#8])-[#7]1-[#6]-[#6]-[#7](-[#6]-[#6]-1)-[#6]\n", "Row: 1151 Displacement of [3H]MSX-2 from rat brain striatum adenosine A2A receptor\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 36.4, mcs nAts: 29\n", "[#6]-[#6]-[#7]1:[#6](=[#8]):[#7]:[#6]2:[#6](:[#6]:1=[#8]):[#7]:[#6](:[#7]:2)-[#6]1:[#6]:[#6]:[#6](:[#6]:[#6]:1)-[#16](=[#8])(=[#8])-[#7]1-[#6]-[#6]-[#7](-[#6]-[#6]-1)-[#6]\n", "Row: 1152 Displacement of [3H]MSX-2 from human recombinant adenosine A2A receptor expressed in CHO cells\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 36.4, mcs nAts: 29\n", "[#6]-[#6]-[#7]1:[#6](=[#8]):[#7]:[#6]2:[#6](:[#6]:1=[#8]):[#7]:[#6](:[#7]:2)-[#6]1:[#6]:[#6]:[#6](:[#6]:[#6]:1)-[#16](=[#8])(=[#8])-[#7]1-[#6]-[#6]-[#7](-[#6]-[#6]-1)-[#6]\n", "Row: 1153 Displacement of [3H]PSB-11 from human recombinant adenosine A3 receptor expressed in CHO cells\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 36.4, mcs nAts: 29\n", "[#6]-[#6]-[#7]1:[#6](=[#8]):[#7]:[#6]2:[#6](:[#6]:1=[#8]):[#7]:[#6](:[#7]:2)-[#6]1:[#6]:[#6]:[#6](:[#6]:[#6]:1)-[#16](=[#8])(=[#8])-[#7]1-[#6]-[#6]-[#7](-[#6]-[#6]-1)-[#6]\n", "Row: 1154 Binding affinity for human cyclin-dependent kinase 4\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 26.2, mcs nAts: 22\n", "[#6]1:[#6]:[#6]:[#6](:[#6]:[#6]:1)-[#7]-[#6]1:[#7]:[#6]:[#6]:[#6](:[#7]:1)-[#6]1:[#6]:[#7]:[#7]2:[#6]:1:[#6]:[#6]:[#6]:[#7]:2\n", "Row: 1155 Displacement of [3H]-8-OH-DPAT from 5HT1A receptor in rat hippocampus homogenates after 15 mins by scintillation counting\n", " * postgresql://localhost/chembl_23\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Mean nAts 36.3, mcs nAts: 17\n", "[#6,#7]-[#6]-[#6]1:[#6]:[#7](-[#6]2:[#6]:[#6]:[#6]:[#6,#7]:[#6,#7]:2):[#6]2:[#6]:1:[#6]:[#6]:[#6]:[#6]:2\n", "Row: 1156 Displacement of [3H]GW2433 from human PPARalpha receptor by scintillation proximity assay\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 39.0, mcs nAts: 29\n", "[#6]-[#6]-[#8]-[#6]1:[#6]:[#6](-[#6]-[#8,#7]-[#6]2:,-[#6]:,-[#6]:,-[#6,#8]:,-[#6]:,-[#6,#7]:,-2):[#6]:[#6]:[#6]:1-[#16]-[#6]1:[#6]:[#6]:[#6](:[#6]:[#6]:1)-[#8]-[#6]-[#6](=[#8])-[#8]\n", "Row: 1157 Displacement of [3H]GW2433 from human PPARdelta receptor by scintillation proximity assay\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 39.0, mcs nAts: 29\n", "[#6]-[#6]-[#8]-[#6]1:[#6]:[#6](-[#6]-[#8,#7]-[#6]2:,-[#6]:,-[#6]:,-[#6,#8]:,-[#6]:,-[#6,#7]:,-2):[#6]:[#6]:[#6]:1-[#16]-[#6]1:[#6]:[#6]:[#6](:[#6]:[#6]:1)-[#8]-[#6]-[#6](=[#8])-[#8]\n", "Row: 1158 Displacement of [3H]rosiglitazone from human PPARgamma receptor by filtration assay\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 39.0, mcs nAts: 29\n", "[#6]-[#6]-[#8]-[#6]1:[#6]:[#6](-[#6]-[#8,#7]-[#6]2:,-[#6]:,-[#6]:,-[#6,#8]:,-[#6]:,-[#6,#7]:,-2):[#6]:[#6]:[#6]:1-[#16]-[#6]1:[#6]:[#6]:[#6](:[#6]:[#6]:1)-[#8]-[#6]-[#6](=[#8])-[#8]\n", "Row: 1159 Binding affinity to N-terminal 6xHis-tagged human Bcl-2 expressed in Escherichia coli BL21 (DE3) after 2 hrs by fluorescence polarization assay\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 63.3, mcs nAts: 46\n", "[#6,#7,#8,#9,#16,#17,#35]-[#6]1:[#6]:[#6]:[#6]:[#6](:[#6]:1)-[#16](=[#8])(=[#8])-[#7]-[#6]1:[#6]:[#6]:[#6](:[#6]:[#6]:1)-[#7]1-[#6]-[#6]-[#7](-[#6]-[#6]-1)-[#6]1:[#6]:[#6]:[#6]:[#6](:[#6]:1)-[#6]1:[#6](-[#6](=[#8])-[#7,#8]):[#6](-[#6]):[#7](:[#6]:1-[#6]1:[#6]:[#6]:[#6](:[#6]:[#6]:1)-[#17])-[#6]\n", "Row: 1160 Displacement of [3H]HEMADO from human A3 adenosine receptor expressed in CHO cell membranes\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 27.3, mcs nAts: 17\n", "[#6]-[#7,#8]-[#6]1:[#7]:[#6](-[#7]):[#7]2:[#6](:[#7]:1):[#7]:[#6](:[#7]:2)-[#6]1:[#6,#8]:[#6]:[#6]:[#8,#6]:1\n", "Row: 1161 Displacement of [3H]NECA from human A2A adenosine receptor expressed in CHO cell membranes\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 27.3, mcs nAts: 17\n", "[#6]-[#7,#8]-[#6]1:[#7]:[#6](-[#7]):[#7]2:[#6](:[#7]:1):[#7]:[#6](:[#7]:2)-[#6]1:[#6,#8]:[#6]:[#6]:[#8,#6]:1\n", "Row: 1162 Inhibition of adrenergic alpha2C receptor (unknown origin) by PDSP assay\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 22.0, mcs nAts: 12\n", "[#7,#8]-[#6]1-[#6]2-[#6]3-[#6]-[#6]4-[#6]-1-[#6]1-[#6]-2-[#6]-[#6]-3-[#6]-1-4\n", "Row: 1163 Displacement of [3H]-CP55940 from human recombinant CB2 receptor expressed in CHO cells membrane by scintillation counting\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 27.6, mcs nAts: 15\n", "[#6,#8]-[#6]-,=[#6]-[#7]1:[#6]:[#6](-[#6](=[#8])-[#7]-[#6,#7]):[#6](:[#6]:[#6]:1-[#6])=[#8]\n", "Row: 1164 Displacement of [3H]-5-CT from cloned human 5HT7B receptor expressed in HEK293 cells after 1 hr by scintillation counting\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 36.3, mcs nAts: 17\n", "[#6,#7]-[#6]-[#6]1:[#6]:[#7](-[#6]2:[#6]:[#6]:[#6]:[#6,#7]:[#6,#7]:2):[#6]2:[#6]:1:[#6]:[#6]:[#6]:[#6]:2\n", "Row: 1165 Binding affinity to displace [3H]CP-55940 from CB1 receptor of rat brain\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 24.8, mcs nAts: 23\n", "[#6]-[#6]-[#6]-[#6]-[#6]-[#7]1:[#6]:[#6](-[#6](=[#8])-[#6]-[#6]2:[#6]:[#6]:[#6]:[#6]:[#6]:2):[#6]2:[#6]:1:[#6]:[#6]:[#6]:[#6]:2\n", "Row: 1166 Displacement of [3H]ZM241385 from human cloned adenosine A2A receptor expressed in human HeLa cells\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 26.2, mcs nAts: 19\n", "[#6]-[#7]1:[#6](=[#8]):[#6]2:[#7]:[#6](-[#6]3:[#6]:[#6]:[#6]:[#6]:[#6]:3):[#6]:[#6]:2:[#7](:[#6]:1=[#8])-[#6]\n", "Row: 1167 Binding affinity to displace [3H]CP-55940 from cloned human CB2 receptor\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 24.8, mcs nAts: 23\n", "[#6]-[#6]-[#6]-[#6]-[#6]-[#7]1:[#6]:[#6](-[#6](=[#8])-[#6]-[#6]2:[#6]:[#6]:[#6]:[#6]:[#6]:2):[#6]2:[#6]:1:[#6]:[#6]:[#6]:[#6]:2\n", "Row: 1168 Displacement of [3H]NECA from human cloned adenosine A3 receptor expressed in human HeLa cells\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 25.4, mcs nAts: 19\n", "[#6]-[#7]1:[#6](=[#8]):[#6]2:[#7]:[#6](-[#6]3:[#6]:[#6]:[#6]:[#6]:[#6]:3):[#6]:[#6]:2:[#7](:[#6]:1=[#8])-[#6]\n", "Row: 1169 Inhibition of N-terminal His-6-tagged human recombinant c-Met (974 to 1390) using Ac-ARDMYDKEYYSVHNK as substrate by spectrophotometric assay\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 27.3, mcs nAts: 12\n", "[#7,#6]-[#6]1:[#6]:[#6,#7]:[#6]2:[#7,#6](:[#7]:1):[#6,#7](:[#7]:[#7]:2)-[#6]-[#6]\n", "Row: 1170 Inhibition of human recombinant GSK3beta using biotin- AAEELDSRAGS(PO3H2)PQL as substrate and [gamma32P]ATP after 20 mins by scintillation proximity assay\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 32.1, mcs nAts: 21\n", "[#6]1:[#7,#6]:[#6]:[#6](:[#7,#6]:[#6]:1-[#6](=[#8])-[#7]-[#6]1:[#6]:[#6,#7]:[#6]:[#7,#6]:[#6]:1)-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1\n", "Row: 1171 BindingDB_Patents: Radioligand Binding Assay. Radioligand dose-displacement assays used 0.2 nM [3H]-Naltrindole (NEN; 33.0 Ci/mmole) with 10-20 µg membrane protein (recombinant delta opioid receptor expressed in CHO-K1 cells; Perkin Elmer) in a final volume of 500 µL binding buffer (5 mM MgCl2, 5% DMSO, 50 mM Trizma base, pH 7.4). Non-specific binding was determined in the presence of 25 µM unlabeled naloxone. All reactions were performed in 96-deep well polypropylene plates for 1 h at a temperature of about 25° C. Binding reactions were determined by rapid filtration onto 96-well Unifilter GF/C filter plates (Packard) presoaked in 0.5% polyethylenimine (Sigma-Aldrich). Harvesting was performed using a 96-well tissue harvester (Packard) followed by five filtration washes with 500 µL ice-cold binding buffer. Filter plates were subsequently dried at 50° C. for 1-2 hrs. Fifty µL/well scintillation cocktail (MicroScint20, Packard) was added and plates were counted in a Packard Top-Count for 1 min/well.\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 36.4, mcs nAts: 20\n", "[#6,#7]-,=[#6]1:,-[#7]:,-[#6]2:[#6]:[#6]:[#6]:[#6]:[#6]:2:,-[#7]:,-1-[#6]1-[#6]-[#6]2-[#6]-[#6]-[#6]-[#6](-[#6]-1)-[#7]-2-[#6]\n", "Row: 1172 Inhibitory activity against human carbonic anhydrase II\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 23.1, mcs nAts: 9\n", "[#7,#6,#8,#16,#17]-,=[#6,#7,#16]1:,-[#6,#7]:,-[#6]:,-[#6,#7](:,-[#6]:,-[#6]:,-1)-[#16,#6,#7]-[#7,#6]\n", "Row: 1173 Binding affinity to peripheral benzodiazepine receptors using [3H]-PK11195 radioligand in rat kidney mitochondrial membrane\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 27.9, mcs nAts: 20\n", "[#7,#8]-,=[#6](=,-[#8,#7])-[#6](=[#8])-[#6]1:[#6](-[#6]2:[#6]:[#6]:[#6]:[#6]:[#6]:2):[#7]:[#6]2:[#6]:1:[#6]:[#6]:[#6]:[#6]:2\n", "Row: 1174 Displacement of [3H]DHT from AR in human MDA-MB-453 cells\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 32.9, mcs nAts: 28\n", "[#6]-[#6]12-[#6]-[#7](-[#8,#6,#16])-[#6]-[#6](-[#8]-1)(-[#6])-[#6]1-[#6]-2-[#6](-[#7](-[#6]-1=[#8])-[#6]1:[#6]:[#6]:[#6](:[#6](:[#6]:1)-[#6](-[#9])(-[#9])-[#9])-[#6]#[#7])=[#8]\n", "Row: 1175 Inhibition of [3H]nociceptin binding to human Opioid receptor like 1\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 31.9, mcs nAts: 8\n", "[#6,#7]-[#7,#6]1-[#6]-[#6]-[#6,#7](-[#6]-[#6]-1)-[#7,#6]\n", "Row: 1176 Displacement of [3H]RTX from rat TRPV1 receptor expressed in CHO cells\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 36.7, mcs nAts: 22\n", "[#6]-[#6,#7]-[#6](=[#8,#16])-[#7]-[#6]-[#6](-[#6]-[#8]-[#6](=[#8])-[#6](-[#6])(-[#6])-[#6])-[#6]-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1\n", "Row: 1177 Inhibitory constant against catalytic domain of human carbonic anhydrase IX\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 14.8, mcs nAts: 5\n", "[#6,#7,#8]-,=[#16,#6](-,=[#7,#8,#9])(=,-[#8,#9])=,-[#8,#6,#7,#9]\n", "Row: 1178 Inhibitory constant against catalytic domain of human carbonic anhydrase XII\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 14.8, mcs nAts: 5\n", "[#6,#7,#8]-,=[#16,#6](-,=[#7,#8,#9])(=,-[#8,#9])=,-[#8,#6,#7,#9]\n", "Row: 1179 Displacement of [3H]PIPAT from human recombinant D2L receptor expressed in HEK293 cells\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 25.3, mcs nAts: 24\n", "[#6]-[#8]-[#7]=[#6](-[#6]-[#6]-[#7]1-[#6]-[#6]-[#7,#6](-[#6]-[#6]-1)-[#6]1:[#6]:[#6]:[#6]:[#6]:[#7]:1)-[#6]1:[#6]:[#6]:[#6]:[#6,#7]:[#6]:1\n", "Row: 1180 Displacement of [3H]A-369508 from human recombinant D4.4 receptor expressed in HEK293 cell membrane\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 25.3, mcs nAts: 24\n", "[#6]-[#8]-[#7]=[#6](-[#6]-[#6]-[#7]1-[#6]-[#6]-[#7,#6](-[#6]-[#6]-1)-[#6]1:[#6]:[#6]:[#6]:[#6]:[#7]:1)-[#6]1:[#6]:[#6]:[#6]:[#6,#7]:[#6]:1\n", "Row: 1181 Displacement of [3H]-4-(2,4-dichloro-3-methylphenoxy)-l'-[4-(methylsulfonyl)benzoyl]-l,4'-bipiperidine from human recombinant CCR3 expressed in CHOK1 cells after 2 hrs by scintillation counting\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 35.5, mcs nAts: 22\n", "[#8,#6]=,-[#6](-[#7]-[#6]-[#6](-[#8])-[#6]-[#7]1-[#6]-[#6]-[#6](-[#6]-[#6]-1)-[#8]-[#6]1:[#6]:[#6]:[#6](:[#6]:[#6]:1)-[#17,#6])-,=[#6,#8]\n", "Row: 1182 Displacement of [125I]-IABN from human dopamine D2L receptor expressed in HEK293 cells after 60 mins by gamma counting\n", " * postgresql://localhost/chembl_23\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Mean nAts 32.9, mcs nAts: 20\n", "[#8,#6]=,-[#6]-[#7]-[#6]-[#6]-,=[#6]-[#6]-[#7]1-[#6]-[#6]-[#7](-[#6]-[#6]-1)-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1-[#17,#8]\n", "Row: 1183 Inhibition of thrombin (unknown origin) using S-2238 as substrate incubated for 15 mins prior to substrate addition measured every 10 secs by spectrophotometric analysis\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 37.3, mcs nAts: 22\n", "[#8,#6]=,-[#6]-[#7]-[#6]-[#6]1-[#6]-[#7](-[#6]2:[#6]:[#6]:[#6](:[#6]:[#6]:2)-[#7]2-[#6]-[#6]-[#8,#6]-[#6]-[#6]-2)-[#6](-[#8]-1)=[#8]\n", "Row: 1184 Inhibitory activity against catalytic domain of human carbonic anhydrase XII\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 23.1, mcs nAts: 9\n", "[#7,#6,#8,#16,#17]-,=[#6,#7,#16]1:,-[#6,#7]:,-[#6]:,-[#6,#7](:,-[#6]:,-[#6]:,-1)-[#16,#6,#7]-[#7,#6]\n", "Row: 1185 Displacement of [125I]-IABN from human dopamine D3 receptor expressed in HEK293 cells after 60 mins by gamma counting\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 32.9, mcs nAts: 20\n", "[#8,#6]=,-[#6]-[#7]-[#6]-[#6]-,=[#6]-[#6]-[#7]1-[#6]-[#6]-[#7](-[#6]-[#6]-1)-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1-[#17,#8]\n", "Row: 1186 Inhibition of bovine plasma factor 10a using CH3OCO-D-CHA-Gly-Arg-pNA.AcoH substrate\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 36.5, mcs nAts: 20\n", "[#7]=[#6](-[#7])-[#6]1:[#6]:[#6]:[#6](:[#6]:[#6]:1)-[#8]-[#6]1:[#6]:[#6](-[#8,#6,#7]-[#6,#7,#16]):[#6]:[#6](:[#6]:1)-[#6,#8]=,-[#8,#6]\n", "Row: 1187 Displacement of [3H]-pyrilamine from human recombinant H1 histamine receptor expressed in CHOK1 cells after 1 hr\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 35.5, mcs nAts: 22\n", "[#8,#6]=,-[#6](-[#7]-[#6]-[#6](-[#8])-[#6]-[#7]1-[#6]-[#6]-[#6](-[#6]-[#6]-1)-[#8]-[#6]1:[#6]:[#6]:[#6](:[#6]:[#6]:1)-[#17,#6])-,=[#6,#8]\n", "Row: 1188 Inhibition of human golgi alpha mannosidase 2\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 18.6, mcs nAts: 10\n", "[#8,#6,#7]-[#6,#7]-[#6]-[#6]1-[#7]-[#6]-[#6](-[#6]-1-[#8])-[#8]\n", "Row: 1189 Inhibition of human ER alpha mannosidase 1\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 18.6, mcs nAts: 10\n", "[#8,#6,#7]-[#6,#7]-[#6]-[#6]1-[#7]-[#6]-[#6](-[#6]-1-[#8])-[#8]\n", "Row: 1190 Ability to displace [125I]-MCH()0.5 nM from human MCH1R(2.5 uM) expressed in CHO cells\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 35.2, mcs nAts: 29\n", "[#8]=[#6](-[#7]-[#6]-[#6]1(-[#6]2:[#6]:[#6]:[#6](:[#6]:[#6]:2)-[#6]2:[#6]:[#6]:[#6]:[#7,#6]:[#6]:2)-[#6]-[#6]-[#7]-[#6]-[#6]-1)-[#7,#6]-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1\n", "Row: 1191 Binding affinity to Rattus norvegicus (rat) alpha1D adrenoreceptor by radioligand displacement assay\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 20.6, mcs nAts: 10\n", "[#6,#7,#8]-,=[#6,#16](-,=[#7,#8])-[#6,#7]-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1\n", "Row: 1192 Binding affinity to alpha1A adrenoreceptor in Rattus norvegicus (rat) submaxillary gland by radioligand displacement assay\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 20.6, mcs nAts: 10\n", "[#6,#7,#8]-,=[#6,#16](-,=[#7,#8])-[#6,#7]-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1\n", "Row: 1193 Displacement of [3H]vesamicol from VAChT in Torpedo californica cholinergic synaptic vesicles\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 26.4, mcs nAts: 16\n", "[#8,#6]=,-[#6](-,=[#6,#7,#8])-[#6]1-[#6]-[#6]-[#7](-[#6]-[#6]-1)-[#6]1-[#6]-[#6]-,:[#6]-[#6]-[#6]-1-[#8]\n", "Row: 1194 Inhibition of chymotrypsin like activity of yeast 20S proteasome\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 55.8, mcs nAts: 36\n", "[#6]-[#6,#7]-[#6]-[#6]-[#6,#7]-[#6]-[#6]-[#6,#7]-[#6]-[#6](=[#8])-[#7]-[#6](-[#6]-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1)-[#6](=[#8])-[#7]-[#6](-[#6]-[#6]=,-[#8,#6])-[#6](=[#8])-[#7]-[#6](-[#6]-,=[#8,#6])-[#6](-,=[#6,#8])-[#8]\n", "Row: 1195 Displacement of [3H]NECA from human cloned adenosine A2a receptor expressed in CHO cells\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 28.1, mcs nAts: 20\n", "[#6]-[#7]1:[#6]:[#6]2:[#6](:[#7]:1):[#7]:[#6](:[#7]1:[#6]:2:[#7]:[#6](:[#7]:1)-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1)-[#7]\n", "Row: 1196 Displacement of [3H]CCPA from human cloned adenosine A1 receptor expressed in CHO cells\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 28.1, mcs nAts: 20\n", "[#6]-[#7]1:[#6]:[#6]2:[#6](:[#7]:1):[#7]:[#6](:[#7]1:[#6]:2:[#7]:[#6](:[#7]:1)-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1)-[#7]\n", "Row: 1197 Displacement of [3H]MSX2 from adenosine A2A receptor in rat brain striatal membranes after 30 mins by liquid scintillation counting analysis\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 25.3, mcs nAts: 11\n", "[#8,#6]=,-[#6](-,=[#6,#8])-[#7]-[#6]1:[#7]:[#6]:[#6]:[#6](:[#16]:1)=[#8]\n", "Row: 1198 Displacement of [3H]DPCPX from human adenosine A1 receptor expressed in CHO cells after 120 mins by scintillation spectrometry\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 27.5, mcs nAts: 22\n", "[#6]-[#6]-[#7]1-[#6](=[#8])-[#7]2-[#6]-[#6](-[#6])-[#7]=[#6]-2-[#6]2:[#6]-1:[#7]:[#6](:[#7]:2)-[#6]1:[#6]:[#6](-[#6,#8]):[#7]:[#7,#8]:1\n", "Row: 1199 In vitro ability to inhibit des-Gly[125I-Tyr, DLeu, NMeLeu,Pro-NEt]-GnRH radioligand binding to the cloned human GnRH receptor stably expressed in HEK293 cells\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 36.1, mcs nAts: 28\n", "[#6]-[#8]-[#6]1:[#6]:[#6]:[#6]:[#6](:[#6]:1)-[#7]1:[#6](=[#8]):[#7](-[#6]-[#6]2:[#6]:[#6]:[#6]:[#6,#7]:[#6]:2-[#9,#6,#8,#17,#35]):[#6](:[#7](:[#6]:1=[#8])-[#6]-[#6]-[#6,#7])=[#8]\n", "Row: 1200 Inhibitory constant against human carbonic anhydrase XIV in CO2 hydrase assay\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 14.8, mcs nAts: 5\n", "[#6,#7,#8]-,=[#16,#6](-,=[#7,#8,#9])(=,-[#8,#9])=,-[#8,#6,#7,#9]\n", "Row: 1201 Displacement of [3H]DAMGO from rat cortex mu opioid receptor after 30 mins by liquid scintillation counting analysis\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 46.8, mcs nAts: 18\n", "[#7,#6,#8]-[#6,#7]-[#6](-[#6]-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1)-[#7,#6]-[#6](=[#8])-[#6,#7]-[#7,#6]-[#6](=,-[#8,#6,#7])-,=[#6,#8]\n", "Row: 1202 Displacement of [3H]DPDPE from rat cortex delta opioid receptor after 2.5 hrs by liquid scintillation counting analysis\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 46.8, mcs nAts: 18\n", "[#7,#6,#8]-[#6,#7]-[#6](-[#6]-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1)-[#7,#6]-[#6](=[#8])-[#6,#7]-[#7,#6]-[#6](=,-[#8,#6,#7])-,=[#6,#8]\n", "Row: 1203 Displacement of [3H]LSD from human 5-HT6 receptor expressed in human HeLa cells after 2 hrs\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 26.5, mcs nAts: 19\n", "[#8]=[#16](=[#8])(-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1)-[#6]1:[#6]:[#7](-[#6]):[#6]2:[#6]:1:[#6]:[#6]:[#6]:[#6]:2\n", "Row: 1204 Displacement of [3H]U69593 form human kappa opioid receptor expressed in CHO cells\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 26.1, mcs nAts: 8\n", "[#7,#6]-[#6,#8]-[#6,#7]1-,:[#6]-,:[#6]-,:[#6]-,:[#6]-,:[#6]-,:1\n", "Row: 1205 Binding affinity to human ERG\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 20.5, mcs nAts: 16\n", "[#6]-[#7]-[#6]-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1-[#8]-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1\n", "Row: 1206 Binding affinity to human factor 7a assessed as release of p-nitroaniline after 10 to 120 mins by spectrophotometric analysis\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 39.5, mcs nAts: 25\n", "[#7]=[#6](-[#7])-[#6]1:[#6]:[#6]:[#6]2:[#6](:[#6]:1)-[#6](-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1)-[#6]-[#6](-[#7]-2)-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1\n", "Row: 1207 Binding affinity to human factor 10a assessed as release of p-nitroaniline after 10 to 120 mins by spectrophotometric analysis\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 39.5, mcs nAts: 25\n", "[#7]=[#6](-[#7])-[#6]1:[#6]:[#6]:[#6]2:[#6](:[#6]:1)-[#6](-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1)-[#6]-[#6](-[#7]-2)-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1\n", "Row: 1208 Binding affinity to human 5HT5A receptor\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 17.0, mcs nAts: 12\n", "[#6]-[#6]1-[#7]-[#6](-[#7])=[#7]-[#6]2:[#6]-1:[#6]:[#6]:[#6]:[#6]:2\n", "Row: 1209 Displacement of [3H]-8-OH-OPAT from human recombinant 5HT1A receptor expressed in CHO cells after 60 mins by liquid scintillation counting analysis\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 27.9, mcs nAts: 15\n", "[#7]-[#6]-[#6]-[#7]1-[#6]-[#6]=,-[#6,#7](-[#6]-[#6]-1)-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1\n", "Row: 1210 Displacement of [3H]dihydroalprenolol from beta2 receptor (unknown origin) by liquid scintillation counting and cell based assay\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 31.9, mcs nAts: 22\n", "[#8,#6]-[#6,#7]-[#6]1:[#6]:[#6](-[#6](-[#8])-[#6]-[#7]-[#6]-[#6]-[#6]2:[#6]:[#6]:[#6](:[#6]:[#6]:2)-[#35,#7,#8]):[#6]:[#6]:[#6]:1-[#8]\n", "Row: 1211 Displacement of [3H]dihydroalprenolol from beta1 receptor (unknown origin) by liquid scintillation counting and cell based assay\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 31.9, mcs nAts: 22\n", "[#8,#6]-[#6,#7]-[#6]1:[#6]:[#6](-[#6](-[#8])-[#6]-[#7]-[#6]-[#6]-[#6]2:[#6]:[#6]:[#6](:[#6]:[#6]:2)-[#35,#7,#8]):[#6]:[#6]:[#6]:1-[#8]\n", "Row: 1212 Inhibition of human recombinant ALK L1196M mutant kinase domain (amino acids 1093 to 1141) expressed in baculovirus system using 5'FAM-KKSRGDYMTMQIG-CONH2 as substrate incubated for 15 mins prior to ATP addition measured after 1 hr by microfluidic mobility shift assay\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 29.3, mcs nAts: 7\n", "[#8,#6,#7]-[#6]1:[#6,#7]:[#6,#7]:[#6]:[#6,#7]:[#6,#7]:1\n", "Row: 1213 Inhibition of Mycobacterium tuberculosis recombinant MbtA expressed in Escherichia coli by ATP/PPi exchange assay\n", " * postgresql://localhost/chembl_23\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Mean nAts 32.2, mcs nAts: 26\n", "[#6,#8]-,=[#6](=,-[#8,#6,#7])-[#7]-[#16](=[#8])(=[#8])-[#8]-[#6]-[#6]1-[#8]-[#6](-[#7]2:[#6]:[#7]:[#6]3:[#6]:2:[#7]:[#6]:[#7]:[#6]:3-[#7])-[#6](-[#6]-1-[#8])-[#8]\n", "Row: 1214 Displacement of [3H]N-methylspiperone from human dopamine D2 receptor by PDSP assay\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 24.4, mcs nAts: 15\n", "[#6]1:[#6]:[#6,#7]:[#6](:[#6,#7]:[#6]:1)-[#7,#6]1-[#6]-[#6]-[#7](-[#6]-[#6]-1)-[#6]-[#6]-[#6]\n", "Row: 1215 Displacement of [3H]PSB11 from human adenosine A3 receptor expressed in CHO cells\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 28.1, mcs nAts: 20\n", "[#6]-[#7]1:[#6](=[#8]):[#6]2:[#6](:[#7](:[#6]:1=[#8])-[#6]):[#7]:[#6]1:[#7]:2-[#6]-[#6]-[#6]-[#7]-1-[#6]-[#6]-[#6,#7,#8]\n", "Row: 1216 Inhibition of Lactobacillus casei thymidylate synthase using N5,N10-methylene tetrahydrofolate by chromogenic assay\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 22.5, mcs nAts: 13\n", "[#6]-[#7]1-[#6](=[#8])-[#6]2:[#6]:[#6]:[#6]:[#6](:[#6]:2-[#6]-1=[#8])-[#6]\n", "Row: 1217 Inhibition of human carbonic anhydrase 1 by stopped-flow CO2 hydrase assay\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 21.9, mcs nAts: 10\n", "[#8,#7]=,-[#6,#16](-,=[#8])-[#6]1:[#6]:[#6]:[#6](:[#6]:[#6]:1)-[#7,#6]\n", "Row: 1218 Inhibition of human carbonic anhydrase 2 by stopped-flow CO2 hydrase assay\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 21.9, mcs nAts: 10\n", "[#8,#7]=,-[#6,#16](-,=[#8])-[#6]1:[#6]:[#6]:[#6](:[#6]:[#6]:1)-[#7,#6]\n", "Row: 1219 Displacement of [3H]EYF from human NPFF2 receptor expressed in CHO cells after 1 hr by liquid scintillation counting analysis\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 35.3, mcs nAts: 13\n", "[#6,#7]1(-[#7,#6]-[#6,#7]2:,-[#6]:,-[#6]:,-[#6,#7]:,-[#6]:,-[#6]:,-2)-,:[#6]-,:[#6]-,:[#7,#6]-,:[#6]-,:[#6]-,:1\n", "Row: 1220 Binding affinity to human KISS1R expressed in CHO cell membranes\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 89.8, mcs nAts: 73\n", "[#6]-[#7]-[#6](=[#7])-[#7]-[#6]-[#6]-[#6]-[#6](-[#7]-[#6](=[#8])-[#6](-[#6]-[#6](-[#6])-[#6])-[#7]-[#6](=[#8])-[#7,#6]-[#7]-[#6](=[#8])-[#6](-[#6]-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1)-[#7]-[#6](=[#8])-[#6](-[#6]-[#8])-[#7]-[#6](=[#8])-[#6](-[#6]-[#6](-[#7])=[#8])-[#7]-[#6](=[#8])-[#6](-[#6]-[#8,#6])-[#7]-[#6](=[#8])-[#6](-[#7,#6])-[#6,#7]-[#6])-[#6](=[#8])-[#7]-[#6](-[#6]-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1)-[#6](-[#7])=[#8]\n", "Row: 1221 Binding affinity to rat KISS1R\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 89.8, mcs nAts: 73\n", "[#6]-[#7]-[#6](=[#7])-[#7]-[#6]-[#6]-[#6]-[#6](-[#7]-[#6](=[#8])-[#6](-[#6]-[#6](-[#6])-[#6])-[#7]-[#6](=[#8])-[#7,#6]-[#7]-[#6](=[#8])-[#6](-[#6]-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1)-[#7]-[#6](=[#8])-[#6](-[#6]-[#8])-[#7]-[#6](=[#8])-[#6](-[#6]-[#6](-[#7])=[#8])-[#7]-[#6](=[#8])-[#6](-[#6]-[#8,#6])-[#7]-[#6](=[#8])-[#6](-[#7,#6])-[#6,#7]-[#6])-[#6](=[#8])-[#7]-[#6](-[#6]-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1)-[#6](-[#7])=[#8]\n", "Row: 1222 Displacement of [125I]sauvagine from human CRF1 receptor expressed in IMR32 cells\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 27.1, mcs nAts: 10\n", "[#6,#8]-[#6]-[#6,#7]-[#7,#6,#8]-[#6]1:[#6,#7]:[#7,#6]:[#6,#7]:[#7,#6]:[#6,#7]:1\n", "Row: 1223 Displacement of [3H]DPCPX from human adenosine A1 receptor expressed in CHO cells\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 25.0, mcs nAts: 22\n", "[#6,#8]-,=[#6](=,-[#8,#6])-[#7]-[#6]1:[#7,#6]:[#6](-[#6]2:[#6]:[#6]:[#6]:[#6]:[#6]:2):[#6,#7]:[#6](:[#7]:1)-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1\n", "Row: 1224 Displacement of [125I]RTI-55 from human NET expressing HEK293 cells\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 18.9, mcs nAts: 15\n", "[#6,#8]-[#6]-[#6](-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1)-[#6]1-[#6]-[#6]-[#6]-[#6]-[#7]-1\n", "Row: 1225 Displacement of [125I]RTI-55 from human SERT expressing HEK293 cells\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 18.9, mcs nAts: 15\n", "[#6,#8]-[#6]-[#6](-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1)-[#6]1-[#6]-[#6]-[#6]-[#6]-[#7]-1\n", "Row: 1226 Displacement of [125I]RTI-55 from human DAT expressing HEK293 cells\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 18.9, mcs nAts: 15\n", "[#6,#8]-[#6]-[#6](-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1)-[#6]1-[#6]-[#6]-[#6]-[#6]-[#7]-1\n", "Row: 1227 Inhibition of human recombinant PDE3B transfected in Sf9 cells by SPA\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 29.0, mcs nAts: 26\n", "[#6]-[#8]-[#6]1:[#6]:[#6]2:[#7]:[#6]:[#7]:[#6](:[#6]:2:[#6]:[#6]:1-[#8]-[#6])-[#7]1-[#6]-[#6]-[#6](-[#6]-1)-[#8]-[#6]1:[#6,#7]:[#6,#7]:[#7,#6]:[#6,#7]:[#6,#7]:1\n", "Row: 1228 Inhibition of human recombinant PDE3A transfected in Sf9 cells by SPA\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 29.0, mcs nAts: 26\n", "[#6]-[#8]-[#6]1:[#6]:[#6]2:[#7]:[#6]:[#7]:[#6](:[#6]:2:[#6]:[#6]:1-[#8]-[#6])-[#7]1-[#6]-[#6]-[#6](-[#6]-1)-[#8]-[#6]1:[#6,#7]:[#6,#7]:[#7,#6]:[#6,#7]:[#6,#7]:1\n", "Row: 1229 Displacement of [3H](R)-alpha-methylhistamine from rat recombinant histamine H3 receptor expressed in CHO cells by liquid scintillation counting\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 30.1, mcs nAts: 20\n", "[#6]-[#7]1-[#6]-[#6]-[#6,#7](-[#6]-[#6]-1)-[#8,#6,#7]-[#6](:[#6]:[#6]:[#6]1:[#7,#6]:[#6](-[#6](=,-[#8,#7])-,=[#7,#8]):[#6,#7]:[#6,#7]:1):[#6]\n", "Row: 1230 Inhibition of muscarinic M4 receptor (unknown origin) by PDSP assay\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 22.0, mcs nAts: 12\n", "[#7,#8]-[#6]1-[#6]2-[#6]3-[#6]-[#6]4-[#6]-1-[#6]1-[#6]-2-[#6]-[#6]-3-[#6]-1-4\n", "Row: 1231 Displacement of [3H]-CP55,940 from human CB2 receptor expressed in CHO membranes after 1 hr by liquid scintillation counting\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 27.7, mcs nAts: 15\n", "[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1-[#6]1:[#6]:[#6](-[#6](=[#8])-[#7]-[#6,#7]):[#7]:[#8]:1\n", "Row: 1232 Inhibition of human recombinant carbonic anhydrase 1 preincubated for 10 mins by CO2 hydration stopped-flow assay\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 21.7, mcs nAts: 11\n", "[#6]-[#7,#6]-[#6](=[#8])-[#6,#7]-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1\n", "Row: 1233 Inhibition of human recombinant carbonic anhydrase 2 preincubated for 10 mins by CO2 hydration stopped-flow assay\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 21.7, mcs nAts: 11\n", "[#6]-[#7,#6]-[#6](=[#8])-[#6,#7]-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1\n", "Row: 1234 Inhibition of human recombinant carbonic anhydrase 9 preincubated for 10 mins by CO2 hydration stopped-flow assay\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 21.7, mcs nAts: 11\n", "[#6]-[#7,#6]-[#6](=[#8])-[#6,#7]-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1\n", "Row: 1235 Inhibition of human recombinant carbonic anhydrase 12 preincubated for 10 mins by CO2 hydration stopped-flow assay\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 21.7, mcs nAts: 11\n", "[#6]-[#7,#6]-[#6](=[#8])-[#6,#7]-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1\n", "Row: 1236 Inhibition of human recombinant src kinase using KVEKIGEGTYGVVYK as substrate by filter binding assay in presence of [gamma-32P]ATP\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 31.3, mcs nAts: 26\n", "[#6]-[#16]-[#6]1:[#7]:[#6](-[#7]-[#6]2:[#6]:[#6]:[#6]:[#6]:[#6]:2):[#6]2:[#6](:[#7]:1):[#7](:[#7]:[#6]:2)-[#6]-[#6]-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1\n", "Row: 1237 Inhibition of human recombinant Abl kinase using [gamma-32P]ATP as substrate by filter binding assay\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 31.3, mcs nAts: 26\n", "[#6]-[#16]-[#6]1:[#7]:[#6](-[#7]-[#6]2:[#6]:[#6]:[#6]:[#6]:[#6]:2):[#6]2:[#6](:[#7]:1):[#7](:[#7]:[#6]:2)-[#6]-[#6]-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1\n", "Row: 1238 Displacement of [3H]8-OH-DPAT from 5HT1A receptor in rat hippocampal membranes\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 34.1, mcs nAts: 20\n", "[#6,#8]-,=[#6]1-,=[#6]-[#6]2(-[#6,#8])-[#6]-[#6](-[#6]-1-[#6]1-[#6](=[#8])-[#7](-[#6](-[#6]-2-1)=[#8])-[#6,#8]-[#6]-[#6]-[#7,#6])=,-[#8,#6]\n", "Row: 1239 Competitive inhibition of XIAP-BIR2 domain (unknown origin) by fluorescence polarization assay\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 31.7, mcs nAts: 13\n", "[#6,#8]-,=[#6](-[#6,#7])-[#6](-[#7]-[#6](=[#8])-[#6](-[#6,#7])-[#7,#6])-[#6](=,-[#8,#6])-[#7,#6]\n", "Row: 1240 Competitive inhibition of XIAP-BIR3 domain (unknown origin) by fluorescence polarization assay\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 31.7, mcs nAts: 13\n", "[#6,#8]-,=[#6](-[#6,#7])-[#6](-[#7]-[#6](=[#8])-[#6](-[#6,#7])-[#7,#6])-[#6](=,-[#8,#6])-[#7,#6]\n", "Row: 1241 Inhibition of human carbonic anhydrase 1 preincubated for 15 mins to 6 hrs by CO2 hydration stopped-flow assay\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 21.7, mcs nAts: 11\n", "[#6]-[#7,#6]-[#6](=[#8])-[#6,#7]-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1\n", "Row: 1242 Inhibition of human carbonic anhydrase 2 preincubated for 15 mins to 6 hrs by CO2 hydration stopped-flow assay\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 21.7, mcs nAts: 11\n", "[#6]-[#7,#6]-[#6](=[#8])-[#6,#7]-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1\n", "Row: 1243 Displacement of [3H]-5-HT from human 5-HT1A receptor expressed in CHOK1 cells after 30 mins by liquid scintillation counting analysis\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 28.1, mcs nAts: 11\n", "[#6]-[#6]-[#6]-[#7,#6]-[#6,#7](-[#6]-[#6])-[#6]-[#6]:,-[#6,#7]-[#8,#6]\n", "Row: 1244 Inhibition of F10a (unknown origin) using S-2222 as substrate incubated for 15 mins prior to substrate addition measured every 10 secs by spectrophotometric analysis\n", " * postgresql://localhost/chembl_23\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Mean nAts 37.3, mcs nAts: 22\n", "[#8,#6]=,-[#6]-[#7]-[#6]-[#6]1-[#6]-[#7](-[#6]2:[#6]:[#6]:[#6](:[#6]:[#6]:2)-[#7]2-[#6]-[#6]-[#8,#6]-[#6]-[#6]-2)-[#6](-[#8]-1)=[#8]\n", "Row: 1245 Displacement of [3H]N-alpha-methylhistamine from human histamine H3 receptor expressed in CHO cells\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 17.1, mcs nAts: 7\n", "[#6]-[#6]-[#6]1:,-[#6,#7]:,-[#7,#6,#8]:,-[#6,#7]:,=[#7,#6]:,-1\n", "Row: 1246 Displacement of [3H]DAMGO form human mu opioid receptor expressed in CHO cells\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 26.1, mcs nAts: 8\n", "[#7,#6]-[#6,#8]-[#6,#7]1-,:[#6]-,:[#6]-,:[#6]-,:[#6]-,:[#6]-,:1\n", "Row: 1247 Displacement of [3H]Naltrindole form human delta opioid receptor expressed in CHO cells\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 26.1, mcs nAts: 8\n", "[#7,#6]-[#6,#8]-[#6,#7]1-,:[#6]-,:[#6]-,:[#6]-,:[#6]-,:[#6]-,:1\n", "Row: 1248 Inhibition of human DHFR using dihydrofolate as substrate preincubated for 10 mins followed by substrate addition by spectrophotometric analysis in presence of NADPH\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 28.6, mcs nAts: 13\n", "[#7,#6]-[#6]1:,-[#6]:,=[#6]:,-[#6]2:[#6](:,-[#6,#8]:,-1):[#7,#6]:[#6](:[#7,#6]:[#6]:2-[#7,#6])-[#7,#8]\n", "Row: 1249 Inhibition of human carboxylesterase 1\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 18.8, mcs nAts: 6\n", "[#8,#6]=,-[#6](-[#6](=[#8])-[#6])-,=[#6,#8]\n", "Row: 1250 Displacement of [125I]ZM241385 from human adenosine A2A receptor in HEK cells\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 32.5, mcs nAts: 25\n", "[#6]-[#6]-[#7]-[#6](=[#8])-[#6]1-[#8]-[#6](-[#7]2:[#6]:[#7]:[#6]3:[#6]:2:[#7]:[#6](:[#7]:[#6]:3-[#7]-[#6]-[#6])-[#53,#6])-[#6](-[#6]-1-[#8])-[#8]\n", "Row: 1251 Displacement of [3H]PGE2 from mouse EP4 receptor expressed in CHO cells after 60 mins by scintillation counting\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 35.3, mcs nAts: 22\n", "[#6,#7,#8]-[#6]1:[#6]:[#6]:[#6]:[#6](:[#6]:1)-[#6]-[#6](-[#8])-[#6]=[#6]-[#6]1-[#6]-[#6]-[#6](-[#7]-1-[#6]-[#6]-[#16]-[#6])=[#8]\n", "Row: 1252 Displacement of [3H]PGE2 from mouse EP3 receptor expressed in CHO cells after 60 mins by scintillation counting\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 35.3, mcs nAts: 22\n", "[#6,#7,#8]-[#6]1:[#6]:[#6]:[#6]:[#6](:[#6]:1)-[#6]-[#6](-[#8])-[#6]=[#6]-[#6]1-[#6]-[#6]-[#6](-[#7]-1-[#6]-[#6]-[#16]-[#6])=[#8]\n", "Row: 1253 Inhibition of [3H]DA uptake at VMAT2 in rat striata vesicles homogenate after 8 mins by liquid scintillation counting\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 25.7, mcs nAts: 16\n", "[#6]1:[#6]:[#6]:[#6](:[#6]:[#6]:1)-[#6]-[#6]-[#6,#7]1-[#6]-[#6]-[#7,#6](-[#6]-[#6]-1)-[#6]-[#6]\n", "Row: 1254 Inhibition of recombinant human transmembrane, tumor-associated form of carbonic anhydrase-12 preincubated for 15 mins by stopped flow CO2 hydration assay\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 21.3, mcs nAts: 8\n", "[#7,#6]-,=[#16,#6,#7,#8]-[#6]1:,-[#6]:,-[#6,#7]:,-[#6,#16]:,-[#6]:[#6]:,-1\n", "Row: 1255 Inhibition of human recombinant PAK1 kinase domain using coumarin/fluorescein-labeled FRET peptide as substrate assessed as substrate phosphorylation at Ser/Thr19 preincubated for 10 mins followed by ATP addition measured after 60 mins by Z'-LYTE assay\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 25.3, mcs nAts: 14\n", "[#7]-[#6]1:[#6,#7]:[#6](-[#7]-[#6]2:[#6]:[#6](-[#6]):[#7]:[#7]:2):[#6]:[#6]:[#7,#6]:1\n", "Row: 1256 Inhibition of Clostridium botulinum BoNT/A light chain (1 to 429 amino acid) using Abz-Thr-dArg-Ile-Asp-Glu-Ala-Asn-Gln-Arg-Ala-Thr-Lys-Nle-Lys(Dnp)-NH2 as substrate after 10 mins by FRET assay\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 21.7, mcs nAts: 6\n", "[#6,#7]1:,-[#7,#6,#16]:,-[#6,#7]:,-[#6]:,-[#6,#7]:,-[#7,#6]:,-1\n", "Row: 1257 Inhibitory activity against human Caspase 1\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 36.9, mcs nAts: 16\n", "[#6]-[#7,#6]-[#6,#7]-[#6]1:[#6]:[#6]:[#6](:[#6]:[#6]:1)-[#7,#8]-[#6]1:[#6,#7]:[#7,#6]:[#6]:[#6,#7]:[#7,#6]:1\n", "Row: 1258 Displacement of [3H]PGE2 from mouse EP2 receptor expressed in CHO cells after 60 mins by scintillation counting\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 35.3, mcs nAts: 22\n", "[#6,#7,#8]-[#6]1:[#6]:[#6]:[#6]:[#6](:[#6]:1)-[#6]-[#6](-[#8])-[#6]=[#6]-[#6]1-[#6]-[#6]-[#6](-[#7]-1-[#6]-[#6]-[#16]-[#6])=[#8]\n", "Row: 1259 Displacement of [3H]PGE2 from mouse EP1 receptor expressed in CHO cells after 20 mins by scintillation counting\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 35.3, mcs nAts: 22\n", "[#6,#7,#8]-[#6]1:[#6]:[#6]:[#6]:[#6](:[#6]:1)-[#6]-[#6](-[#8])-[#6]=[#6]-[#6]1-[#6]-[#6]-[#6](-[#7]-1-[#6]-[#6]-[#16]-[#6])=[#8]\n", "Row: 1260 Inhibition of thrombin (unknown origin) by chromogenic substrate assay\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 32.0, mcs nAts: 25\n", "[#6]-[#7]-[#6]1:[#6,#7]:[#7,#6]:[#6]2:[#7](:[#6]:1=[#8])-[#6](-[#6](=[#8])-[#7]-[#6]-[#6]1:[#6]:[#6]:[#6](:[#6]:[#6]:1)-[#6](=[#7])-[#7])-[#6]-[#6]-2\n", "Row: 1261 Inhibition of factor-10a (unknown origin) by chromogenic substrate assay\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 32.0, mcs nAts: 25\n", "[#6]-[#7]-[#6]1:[#6,#7]:[#7,#6]:[#6]2:[#7](:[#6]:1=[#8])-[#6](-[#6](=[#8])-[#7]-[#6]-[#6]1:[#6]:[#6]:[#6](:[#6]:[#6]:1)-[#6](=[#7])-[#7])-[#6]-[#6]-2\n", "Row: 1262 Displacement of [3H](+/-)-emopamil from delta8-delta7 sterol isomerase (SI) site in guinea pig liver membranes\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 23.7, mcs nAts: 15\n", "[#8]-[#6]1:[#6]:[#6]:[#6]:[#6](:[#6]:1)-,:[#6]-,:[#6]-,:[#6]-,:[#6,#7]-[#6]-[#6]-,=[#6]-[#7,#6]\n", "Row: 1263 Displacement of [125I]AB-MECA from human adenosine A3 receptor expressed in CHO cells\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 20.8, mcs nAts: 15\n", "[#6]-[#6]1:[#7]:[#6]2:[#6](-,=[#8,#7]):[#7]:[#6]3:[#6](:[#7]:2:[#7]:1):[#6]:[#6]:[#6]:[#6]:3\n", "Row: 1264 Inhibition of human recombinant full length MMP13 assessed as type 3 collagen cleavage activity after 18 hrs\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 33.4, mcs nAts: 30\n", "[#8,#6]=,-[#6,#8]-[#6]1:,-[#6]:,-[#6]:,-[#6](:,-[#6]:,-[#6]:,-1)-[#6]-[#7]1:[#7]:[#7]:[#6](:[#7]:1)-[#6]1:[#6]:[#6]:[#7,#6]:[#6](:[#6]:1)-[#6](=[#8])-[#7]-[#6]-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1\n", "Row: 1265 Displacement of [3H]paroxetine from 5-HT transporter in rat frontal cortical synaptosomes\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 28.4, mcs nAts: 26\n", "[#6]1=[#6](-[#6]2:[#6]:[#7]:[#6]3:[#6]:2:[#6]:[#6]:[#6]:[#6]:3)-[#6]-[#6]-[#7](-[#6]-1)-[#6]-[#6]-[#6]1:[#6]:[#8]:[#6]2:[#6]:1:[#6]:[#6]:[#6]:[#6]:2\n", "Row: 1266 Displacement of [125I][Phe13,Tyr19]-MCH from human MCHR1 expressed in HEK293 cells by scintillation counting analysis\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 31.5, mcs nAts: 24\n", "[#8,#7]-[#6]1:[#6]:[#6]:[#6](:[#6]:[#6,#7]:1)-[#7]1:[#6]:[#7]:[#7]2:[#6](:[#6]:1=[#8]):[#7,#6]:[#6](:[#6,#7]:2)-[#6]1:[#6,#7]:[#6]:[#6](:[#6]:[#6,#7]:1)-[#17]\n", "Row: 1267 In vitro binding affinity was determined as displacement of [3H]N-R-methylhistamine from C6 cell membranes expressing human histamine H3 receptor\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 25.9, mcs nAts: 8\n", "[#16,#6,#7,#8]=,-,#[#6,#8]-[#7,#6]1-,:[#6]-,:[#6]-,:[#6,#7]-,:[#6]-,:[#6]-,:1\n", "Row: 1268 In vitro binding affinity was determined as displacement of [3H]N-R-methylhistamine from C6 cell membranes expressing rat histamine H3 receptor\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 25.9, mcs nAts: 8\n", "[#16,#6,#7,#8]=,-,#[#6,#8]-[#7,#6]1-,:[#6]-,:[#6]-,:[#6,#7]-,:[#6]-,:[#6]-,:1\n", "Row: 1269 Displacement of [3H]CP-55940 from human recombinant cannabinoid CB1 receptor expressed in CHO cells after 3 hrs by liquid scintillation counting\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 30.0, mcs nAts: 22\n", "[#7,#8,#16]-,=[#6](=,-[#8,#6,#7])-[#7]1-[#6]-[#6]-[#7](-[#6]-[#6]-1)-[#6](-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1)-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1\n", "Row: 1270 Displacement of [3H]CP-55940 from human recombinant cannabinoid CB2 receptor expressed in CHO cells after 3 hrs by liquid scintillation counting\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 30.0, mcs nAts: 22\n", "[#7,#8,#16]-,=[#6](=,-[#8,#6,#7])-[#7]1-[#6]-[#6]-[#7](-[#6]-[#6]-1)-[#6](-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1)-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1\n", "Row: 1271 Inhibition of recombinant human alanyl aminopeptidase M1 using Ala-AMC as substrate preincubated for 30 to 60 mins followed by substrate addition measured for 15 mins by spectrofluorimetric analysis\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 16.2, mcs nAts: 8\n", "[#7]-[#6]-[#6](-[#7])-[#15](=[#8])(-[#8])-[#8,#6]\n", "Row: 1272 Inhibition of [3H]methyl-AdoMet binding to human phenylethanolamine N-methyl-transferase expressed in Escherichia coli BL21\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 21.4, mcs nAts: 16\n", "[#7,#8]-,=[#16](=[#8])(=,-[#8,#7])-[#6]1:[#6]:[#6]:[#6]2:[#6](:[#6]:1)-[#6]-[#7]-[#6](-[#6]-2)-[#6]-[#9]\n", "Row: 1273 In vitro binding affinity was determined as displacement of [3H]N-R-methylhistamine from C6 cell membranes expressing human histamine H3 receptor\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 25.9, mcs nAts: 8\n", "[#16,#6,#7,#8]=,-,#[#6,#8]-[#7,#6]1-,:[#6]-,:[#6]-,:[#6,#7]-,:[#6]-,:[#6]-,:1\n", "Row: 1274 In vitro binding affinity was determined as displacement of [3H]N-R-methylhistamine from C6 cell membranes expressing rat histamine H3 receptor\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 25.9, mcs nAts: 8\n", "[#16,#6,#7,#8]=,-,#[#6,#8]-[#7,#6]1-,:[#6]-,:[#6]-,:[#6,#7]-,:[#6]-,:[#6]-,:1\n", "Row: 1275 BindingDB_Patents: Binding Assay. Methods for performing in vitro dopamine receptor binding studies are described in Huang et al. J. Med. Chem. 44:1815-1826 (2001) and Luedtke et al. Synapse 38:438-439 (2000). These papers describe radioactively labeled dopamine receptor selective ligands binding with picomolar affinity and nonselectivity to D2 and D3 dopamine receptors expressed in Sf9 and HEK 293 cells. 125I-IABN binds with 7- to 10-fold lower affinity to human D4.4 dopamine receptors expressed in HEK 293 cells. Dissociation constants (Kd) calculated from kinetic experiments were found to be in agreement with equilibrium Kd values obtained from saturation binding studies. Saturation plots of the binding of 125I-IABN with rat caudate membrane preparations were monophasic and exhibited low nonspecific binding.\n", " * postgresql://localhost/chembl_23\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Mean nAts 33.3, mcs nAts: 21\n", "[#8,#6]=,-[#6](-[#7]-[#6]-[#6]-,=[#6]-[#6]-[#7]1-[#6]-[#6]-[#7](-[#6]-[#6]-1)-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1-[#17,#8])-,=[#6,#8]\n", "Row: 1276 Inhibition of [3H]cAMP binding to recombinant human Phosphodiesterase 4D5 (PDE4D5) in baculovirus expression system\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 36.1, mcs nAts: 15\n", "[#6]-[#8]-[#6]1:[#6]:[#6]:[#6](:[#6]:[#6]:1-[#8]-[#6]1-[#6]-[#6]-[#6]-[#6]-1)-[#6]\n", "Row: 1277 Inhibition of [3H]cAMP binding to recombinant human Phosphodiesterase 4D3 (PDE4D3) in baculovirus expression system\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 36.1, mcs nAts: 15\n", "[#6]-[#8]-[#6]1:[#6]:[#6]:[#6](:[#6]:[#6]:1-[#8]-[#6]1-[#6]-[#6]-[#6]-[#6]-1)-[#6]\n", "Row: 1278 Inhibition of [3H]cAMP binding to recombinant human Phosphodiesterase 4DE (PDE4DE) in baculovirus expression system\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 36.1, mcs nAts: 15\n", "[#6]-[#8]-[#6]1:[#6]:[#6]:[#6](:[#6]:[#6]:1-[#8]-[#6]1-[#6]-[#6]-[#6]-[#6]-1)-[#6]\n", "Row: 1279 Displacement of [3H]dexamethasone from human recombinant glucocorticoid receptor expressed in baculovirus after 18 hrs by scintillation counting analysis\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 29.0, mcs nAts: 22\n", "[#8]=[#6]1:[#7]:[#6](=[#8]):[#6](:[#6](:[#7]:1)-[#6,#7]1-[#6]-[#6]-[#6](-[#6]-[#6]-1)-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1)-[#6]-[#6]\n", "Row: 1280 Inhibitory constant was determined against 5-hydroxytryptamine 1A receptor using 1.2 nM [3H]8-OH-DPAT\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 25.0, mcs nAts: 15\n", "[#6]-[#6]-[#7,#6]1-[#6]-[#6]-[#6,#7](-[#6]-[#6]-1)-[#6]-[#6]1:,-[#6]:,-[#6,#8]:,-[#6]:[#6]:,-[#6,#8]:,-1\n", "Row: 1281 Inhibition of human cloned carbonic anhydrase 1 preincubated for 15 mins by stopped flow CO2 hydration assay\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 17.6, mcs nAts: 8\n", "[#7,#6]-,#[#7,#6,#8,#16]-[#6]1:[#6]:[#6,#7]:[#7,#6]:[#6,#7]:[#6]:1\n", "Row: 1282 Inhibition of human cloned carbonic anhydrase 2 preincubated for 15 mins by stopped flow CO2 hydration assay\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 17.6, mcs nAts: 8\n", "[#7,#6]-,#[#7,#6,#8,#16]-[#6]1:[#6]:[#6,#7]:[#7,#6]:[#6,#7]:[#6]:1\n", "Row: 1283 Inhibition of human cloned carbonic anhydrase 9 catalytic domain preincubated for 15 mins by stopped flow CO2 hydration assay\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 17.6, mcs nAts: 8\n", "[#7,#6]-,#[#7,#6,#8,#16]-[#6]1:[#6]:[#6,#7]:[#7,#6]:[#6,#7]:[#6]:1\n", "Row: 1284 Inhibition of human cloned carbonic anhydrase 12 catalytic domain preincubated for 15 mins by stopped flow CO2 hydration assay\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 17.6, mcs nAts: 8\n", "[#6,#7]-,#[#8,#6,#7,#16]-[#6]1:[#6]:[#6,#7]:[#7,#6]:[#6,#7]:[#6]:1\n", "Row: 1285 Affinity against adenosine A1 receptor in the brain membranes by the displacement of [3H]CPX.\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 15.6, mcs nAts: 11\n", "[#8,#6]=,-[#6,#7]1:[#7,#6]:[#6,#7](=,-[#8,#6]):[#6]2:[#6](:[#7,#6]:1):[#7]:[#6]:[#7]:2\n", "Row: 1286 Displacement of [125I]ABN from human dopamine D2 long receptor expressed in HEK293 cells after 60 mins by gamma counting\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 30.7, mcs nAts: 16\n", "[#6]1-[#6]-[#6]-[#7](-[#6]-[#6]-1)-[#6]-[#6]1:[#6]:[#7,#6,#8,#16]:[#6](:[#6,#8,#16]:1):[#6,#7]:[#6]:[#6]:[#6]\n", "Row: 1287 Displacement of [125I]ABN from human dopamine D3 receptor expressed in HEK293 cells after 60 mins by gamma counting\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 30.7, mcs nAts: 16\n", "[#6]1-[#6]-[#6]-[#7](-[#6]-[#6]-1)-[#6]-[#6]1:[#6]:[#7,#6,#8,#16]:[#6](:[#6,#8,#16]:1):[#6,#7]:[#6]:[#6]:[#6]\n", "Row: 1288 Displacement of [125I]ABN from human dopamine D4 receptor expressed in HEK293 cells after 60 mins by gamma counting\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 30.7, mcs nAts: 16\n", "[#6]1-[#6]-[#6]-[#7](-[#6]-[#6]-1)-[#6]-[#6]1:[#6]:[#7,#6,#8,#16]:[#6](:[#6,#8,#16]:1):[#6,#7]:[#6]:[#6]:[#6]\n", "Row: 1289 Displacement of [3H](+)-pentazocine from sigma 1 receptor in guinea pig brain homogenates after 1 hr by liquid scintillation counting\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 30.7, mcs nAts: 16\n", "[#6]1-[#6]-[#6]-[#7](-[#6]-[#6]-1)-[#6]-[#6]1:[#6]:[#7,#6,#8,#16]:[#6](:[#6,#8,#16]:1):[#6,#7]:[#6]:[#6]:[#6]\n", "Row: 1290 Displacement of [125I]BE-2254 from human adrenergic Alpha-1D receptor expressed in HEK293 cells\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 32.0, mcs nAts: 15\n", "[#7,#6]-[#6]-[#6]-[#7,#6]1-,:[#6]-,:[#6]-,:[#7,#6](-,:[#6]-,:[#6]-,:1)-[#6,#7]1:,-[#6]:,-[#6]:,-[#6,#7]:,-[#6]:,-[#6]:,-1\n", "Row: 1291 Binding affinity towards human melanocortin 4 receptor expressed in HEK 293 cells using [125I]NDP-MSH\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 45.3, mcs nAts: 29\n", "[#6,#7]-[#6]-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1-[#7]1-[#6]-[#6]-[#7](-[#6]-[#6]-1)-[#6](=[#8])-[#6](-[#6]-[#6]1:[#6]:[#6]:[#6](:[#6]:[#6]:1)-[#17])-[#7]-[#6](=[#8])-[#6]\n", "Row: 1292 Inhibitory activity against human carbonic anhydrase I\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 23.1, mcs nAts: 8\n", "[#6,#7,#16]1:,-[#6]:,-[#6]:,-[#6,#7](:,-[#6]:,-[#6]:,-1)-[#16,#6,#7,#8]-[#7,#6]\n", "Row: 1293 BindingDB_Patents: Binding Assay. PIM-1, -2, and -3 enzymes were generated as fusion proteins expressed in bacteria and purified by IMAC column chromatography (Sun, X., Chiu, J. F., and He, Q. Y. (2005) Expert Rev. Proteomics, 2:649-657). A fluorescent-labeled Pim-specific peptide substrate, was custom synthesized by American Peptide Company (Sunnyvale, Calif.). Reaction Buffer contained 10 mM HEPES, pH 7.2, 10 mM MgCl2, 0.01% Tween 20, 2 mM DTT. Termination Buffer contained 190 mM HEPES, pH 7.2, 0.015% Brij-35, 0.2% Coating Reagent 3 (Caliper Life Sciences, Hopkinton, Mass.), 20 mM EDTA. Separation Buffer contained 100 mM HEPES, pH 7.2, 0.015% Brij-35, 0.1% Coating Reagent 3, 1:200 Coating Reagent 8 (Caliper Life Sciences, Hopkinton, Mass.), 10 mM EDTA and 5% DMSO.\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 29.4, mcs nAts: 10\n", "[#6]-[#7]1:[#6]:[#6](-[#7]-[#6](=,-[#8,#6])-,=[#6,#8]):[#6]:[#7]:1\n", "Row: 1294 BindingDB_Patents: Binding Assay. PIM-1, -2, and -3 enzymes were generated as fusion proteins expressed in bacteria and purified by IMAC column chromatography (Sun, X., Chiu, J. F., and He, Q. Y. (2005) Expert Rev. Proteomics, 2:649-657). A fluorescent-labeled Pim-specific peptide substrate, was custom synthesized by American Peptide Company (Sunnyvale, Calif.). Reaction Buffer contained 10 mM HEPES, pH 7.2, 10 mM MgCl2, 0.01% Tween 20, 2 mM DTT. Termination Buffer contained 190 mM HEPES, pH 7.2, 0.015% Brij-35, 0.2% Coating Reagent 3 (Caliper Life Sciences, Hopkinton, Mass.), 20 mM EDTA. Separation Buffer contained 100 mM HEPES, pH 7.2, 0.015% Brij-35, 0.1% Coating Reagent 3, 1:200 Coating Reagent 8 (Caliper Life Sciences, Hopkinton, Mass.), 10 mM EDTA and 5% DMSO.\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 29.4, mcs nAts: 10\n", "[#6]-[#7]1:[#6]:[#6](-[#7]-[#6](=,-[#8,#6])-,=[#6,#8]):[#6]:[#7]:1\n", "Row: 1295 Binding affinity for alpha-2A adrenergic receptor\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 33.9, mcs nAts: 22\n", "[#6]-[#6]-[#7]1-[#6]-[#6]-[#7](-[#6]-[#6]-1)-[#6]-[#6]1-[#8]-[#7]=[#6]2-[#6]-1-[#6]-,=[#8,#6,#7]-[#6]1:[#6]-2:[#6]:[#6]:[#6]:[#6]:1\n", "Row: 1296 Displacement of [3H]-RAMH from human histamine H3 receptor\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 27.4, mcs nAts: 11\n", "[#6]-[#8,#6]-[#6,#7]1:,-[#6]:,-[#6]:,-[#6,#7]2:[#6](:,-[#6]:,-1):[#6]:[#6]:[#7,#6]:2\n", "Row: 1297 Displacement of [125I]AB-MECA at human A3A receptor expressed in CHO cell membrane after 60 mins by scintillation counting method\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 25.9, mcs nAts: 12\n", "[#6]-[#6]1:[#7]:[#6]2:[#7,#6]:[#7](-[#6]):[#7]:[#6]:2:[#6](:[#7]:1)=,-[#8,#7]\n", "Row: 1298 Inhibition of human recombinant carbonic anhydrase 1 preincubated for 15 mins by stopped flow CO2 hydration assay\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 19.4, mcs nAts: 6\n", "[#6]1=,:[#6]-,:[#6]-,=,:[#7,#6]-,:[#16,#6]-,:[#8,#6]-,:1\n", "Row: 1299 Inhibition of human recombinant carbonic anhydrase 2 preincubated for 15 mins by stopped flow CO2 hydration assay\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 19.4, mcs nAts: 6\n", "[#6]1=,:[#6]-,:[#6]-,=,:[#7,#6]-,:[#16,#6]-,:[#8,#6]-,:1\n", "Row: 1300 Inhibition of human recombinant carbonic anhydrase 9 preincubated for 15 mins by stopped flow CO2 hydration assay\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 19.4, mcs nAts: 6\n", "[#6]1=,:[#6]-,:[#6]-,=,:[#7,#6]-,:[#16,#6]-,:[#8,#6]-,:1\n", "Row: 1301 Inhibition of human recombinant carbonic anhydrase 12 preincubated for 15 mins by stopped flow CO2 hydration assay\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 19.4, mcs nAts: 6\n", "[#6]1=,:[#6]-,:[#6]-,=,:[#7,#6]-,:[#16,#6]-,:[#8,#6]-,:1\n", "Row: 1302 Inhibition of Bacillus anthracis lethal factor assessed as proteolysis using MCA-KKVYPYPME-Dap(Dnp)-NH2 peptide substrate by FRET assay\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 28.4, mcs nAts: 13\n", "[#6]1:,-[#6]:,-[#6,#7](-[#7,#6,#16]-[#6,#7]-[#6,#7]-[#6,#7]-[#6]-[#6,#7,#8]):,-[#6]:,-[#6]:,-[#6,#7]:,-1-[#9,#6,#8]\n", "Row: 1303 Displacement of [3H]LSD from 5-HT7 receptor (unknown origin) expressed in CHO-K1 cells by liquid scintillation counting method\n", " * postgresql://localhost/chembl_23\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Mean nAts 29.6, mcs nAts: 20\n", "[#8]=[#6](-[#6]-[#6]-[#6]-[#6]-[#7,#6])-[#7]1:[#6]2:[#6]:[#6]:[#6]:[#6]:[#6]:2:[#6]2:[#6]:1:[#6]:[#6]:[#6]:[#6]:2\n", "Row: 1304 In vitro binding affinity by measuring the inhibition of bovine trypsin\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 38.3, mcs nAts: 19\n", "[#6]-[#6,#7]-[#7,#6]-[#6]-[#6]-[#7]-[#16](=[#8])(=[#8])-[#6]1:[#6]:[#6]:[#6]2:[#6](:[#6]:1):[#6]:[#6]:[#6]:[#6]:2\n", "Row: 1305 Inhibitory activity against scytalone dehydratase enzyme obtained from Magnaporthe grisea\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 21.2, mcs nAts: 15\n", "[#6,#7]-,#[#6]-[#6]-[#6](=[#8])-[#7]-[#6]-[#6]-[#6,#8]-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1\n", "Row: 1306 Displacement of [3H]Nalpha-methylhistamine from human histamine H3 receptor expressed in human SK-N-MC cells\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 13.6, mcs nAts: 7\n", "[#6,#7,#8]-[#6]-[#6]1:,-[#6,#7]:,-[#7,#6]:,-[#6,#7]:,-[#7,#6,#8]:,-1\n", "Row: 1307 Inhibition of human recombinant carbonic anhydrase 2 preincubated for 15 mins by stopped-flow CO2 hydrase assay\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 22.6, mcs nAts: 15\n", "[#7]-[#16](=[#8])(=[#8])-[#6]1:[#6]:[#6]:[#6](:[#6]:[#6]:1)-[#7]-[#6](=[#8])-[#7]-[#6]\n", "Row: 1308 Inhibition of Mycobacterium tuberculosis recombinant beta-carbonic anhydrase Rv1284 preincubated for 15 mins by stopped-flow CO2 hydrase assay\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 22.6, mcs nAts: 15\n", "[#7]-[#16](=[#8])(=[#8])-[#6]1:[#6]:[#6]:[#6](:[#6]:[#6]:1)-[#7]-[#6](=[#8])-[#7]-[#6]\n", "Row: 1309 Inhibition of Mycobacterium tuberculosis recombinant beta-carbonic anhydrase Rv3273 preincubated for 15 mins by stopped-flow CO2 hydrase assay\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 22.6, mcs nAts: 15\n", "[#7]-[#16](=[#8])(=[#8])-[#6]1:[#6]:[#6]:[#6](:[#6]:[#6]:1)-[#7]-[#6](=[#8])-[#7]-[#6]\n", "Row: 1310 Displacement of [3H]U69593 from kappa opioid receptor in guinea pig cerebellum\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 35.2, mcs nAts: 25\n", "[#6]-[#7]1-[#6]-[#6]-[#6]23-[#6]4(-[#6]-1-[#6]-[#6]1:[#6]:[#6]:[#6](:[#6]:[#6]-2:1)-[#8])-[#6]-[#6]-[#6](-[#8]-4)(-[#6]-3)-[#6]-[#7]-[#6](=,-[#8,#6])-,=[#6,#8]\n", "Row: 1311 Displacement of [3H]DAMGO from mu opioid receptor in guinea pig forebrain\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 35.2, mcs nAts: 25\n", "[#6]-[#7]1-[#6]-[#6]-[#6]23-[#6]4(-[#6]-1-[#6]-[#6]1:[#6]:[#6]:[#6](:[#6]:[#6]-2:1)-[#8])-[#6]-[#6]-[#6](-[#8]-4)(-[#6]-3)-[#6]-[#7]-[#6](=,-[#8,#6])-,=[#6,#8]\n", "Row: 1312 Binding affinity for HIV-1 protease\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 53.9, mcs nAts: 46\n", "[#8]=[#6](-[#7]-[#8,#6,#7])-[#6]1:[#6]:[#6]:[#6]:[#6](:[#6]:1)-[#6]-[#7]1-[#6](=[#8])-[#7](-[#6]-[#6]2:[#6]:[#6]:[#6]:[#6](:[#6]:2)-[#6](=[#8])-[#7]-[#8,#6,#7])-[#6](-[#6]-[#6]2:[#6]:[#6]:[#6]:[#6]:[#6]:2)-[#6](-[#6](-[#6]-1-[#6]-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1)-[#8])-[#8]\n", "Row: 1313 Displacement of [3H]spiperone from dopamine D2 receptor in rat striatum tissue after 20 mins by scintillation counting\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 26.6, mcs nAts: 19\n", "[#8]=[#6](-[#7]-[#6]1-[#6]-[#6]2-[#6]-[#6]-[#6](-[#6]-1)-[#7]-2-[#6]-[#6])-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1\n", "Row: 1314 Displacement of [3H]Naltrindole from human delta opioid receptor expressed in CHO cells after 3 hrs by scintillation counting\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 27.8, mcs nAts: 22\n", "[#6]-[#7]1-[#6]-[#6]-[#6]23-[#6](-[#6]-1-[#6]-[#6]1:[#6]:[#6]4:[#16]:[#6](:[#7]:[#6]:4:[#6]:[#6]-2:1)-[#7])-[#6]-[#6]-[#6]-[#6]-3\n", "Row: 1315 Displacement of [3H]ketanserin from 5HT2A in rat brain cerebral cortex after 20 mins by scintillation counting\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 26.4, mcs nAts: 19\n", "[#8]=[#6](-[#7]-[#6]1-[#6]-[#6]2-[#6]-[#6]-[#6](-[#6]-1)-[#7]-2-[#6]-[#6])-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1\n", "Row: 1316 Displacement of [3H]8OH-DPAT from 5HT1A in rat brain cerebral cortex after 15 mins by scintillation counting\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 26.2, mcs nAts: 19\n", "[#8]=[#6](-[#7]-[#6]1-[#6]-[#6]2-[#6]-[#6]-[#6](-[#6]-1)-[#7]-2-[#6]-[#6])-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1\n", "Row: 1317 Displacement of [3H]-8-OH-DPAT from 5HT1A in CRL:CD(SD)BR-COBS rat brain hippocampus after 30 mins by liquid scintillation spectrometry\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 36.3, mcs nAts: 27\n", "[#6]-[#6]1:[#6,#7]:[#6,#7]:[#6](:[#7,#6]:1):[#6](:[#7](:[#6](:[#7])=[#8])-[#6]-[#6]-[#7]1-[#6]-[#6]-[#7](-[#6]-[#6]-1)-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1-[#17,#8])=[#8]\n", "Row: 1318 Binding affinity towards Opioid receptor mu 1 in guinea pig brain membranes using [3H]DAMGO as radioligand\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 23.9, mcs nAts: 18\n", "[#6]-[#7]1-[#6]-[#6]-[#6]23-[#6](-[#6]-1-[#6]-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]-2:1)-[#6]-[#6]-[#6]-[#6]-3\n", "Row: 1319 Displacement of [3H]RTX from human TRPV1 expressed in HEK293 cells\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 32.3, mcs nAts: 15\n", "[#6]-[#7]-[#6](=[#8])-[#7]-[#6]1:[#6]:[#6]:[#6]:[#6]2:[#6]:1:[#6]:[#6]:[#7,#6]:[#6]:2\n", "Row: 1320 Binding affinity to human CB1 receptor\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 30.1, mcs nAts: 24\n", "[#6,#7]-[#7]-[#6](=[#8])-[#6]1:[#6]:[#7]:[#6](:[#6](:[#7]:1)-[#6]1:[#6]:[#6]:[#6](:[#6]:[#6]:1)-[#6,#17])-[#6]1:[#6]:[#6]:[#6](:[#6]:[#6]:1)-[#6,#17]\n", "Row: 1321 Inhibition of Staphylococcus aureus DHFR using dihydrofolate as substrate preincubated for 10 mins followed by substrate addition by spectrophotometric analysis in presence of NADPH\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 28.6, mcs nAts: 13\n", "[#7,#6]-[#6]1:,-[#6]:,=[#6]:,-[#6]2:[#6](:,-[#6,#8]:,-1):[#7,#6]:[#6](:[#7,#6]:[#6]:2-[#7,#6])-[#7,#8]\n", "Row: 1322 Inhibition of human recombinant NET expressed in HEK cells\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 16.4, mcs nAts: 7\n", "[#17,#6,#9]-[#6,#7]1:,-[#6]:,-[#6]:,-[#6]:,-[#6,#7]:,-[#6]:,-1\n", "Row: 1323 Displacement of [3H]-vasopressin from human vasopressin 1a receptor expressed in HEK293 cell membranes after 1 hr by scintillation proximity assay\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 29.1, mcs nAts: 9\n", "[#6]1:,-[#6]:,-[#6,#7]:,-[#6]:,-[#6]:,-[#6,#7]:,-1-[#6](=,-[#8,#6])-,=[#7,#6,#8]\n", "Row: 1324 Binding affinity to the leukotriene receptor (LTD4) from guinea pig lung parenchymal membranes assayed using [3H]LTD4 as radioligand\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 41.8, mcs nAts: 34\n", "[#6]-[#8]-[#6]1:[#6]:[#6](-[#6](=[#8])-[#7]-[#16](=[#8])(=[#8])-[#6]2:[#6]:[#6]:[#6]:[#6]:[#6]:2-[#6]):[#6]:[#6]:[#6]:1-[#6]-[#6,#7]1:[#6]:[#7,#6](-[#6]):[#6]2:[#6]:1:[#6]:[#6](:[#6]:[#6]:2)-[#6,#7]-,=[#7,#6,#8]\n", "Row: 1325 Inhibition of human recombinant DAT expressed in HEK cells\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 16.4, mcs nAts: 7\n", "[#17,#6,#9]-[#6,#7]1:,-[#6]:,-[#6]:,-[#6]:,-[#6,#7]:,-[#6]:,-1\n", "Row: 1326 Inhibition of human recombinant SERT expressed in HEK cells\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 16.4, mcs nAts: 7\n", "[#17,#6,#9]-[#6,#7]1:,-[#6]:,-[#6]:,-[#6]:,-[#6,#7]:,-[#6]:,-1\n", "Row: 1327 Displacement of [3H]raclopride from human D2 dopamine receptor expressed in CHO cell membranes\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 21.5, mcs nAts: 10\n", "[#6]1-,:[#6]-,:[#6]-,:[#6]2:[#6](-,:[#6]-,:1):[#16,#7]:[#6](:[#7,#8,#16]:2)-,=[#7,#8]\n", "Row: 1328 Inhibition of [3H]citalopram uptake at human 5HTT expressed in HEK293 cells\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 23.2, mcs nAts: 21\n", "[#6]1:[#6]:[#6]:[#6]:[#6](:[#6]:1-[#17,#6,#8,#9])-[#8]-[#6](-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1)-[#6]1-[#6]-[#7]-[#6]-[#6]-[#8]-1\n", "Row: 1329 Binding inhibition of hepatitis C virus NS3.4A protease 2 using p-nitroaniline assay (pNA)\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 53.4, mcs nAts: 44\n", "[#6]-[#6]-[#6](-[#7]-[#6](=[#8])-[#6]1-[#6]-[#6](-[#8]-[#6]-[#6,#7]2:,-[#6]:,-[#6]:,-[#6]:[#6]:,-[#6]:,-2)-[#6]-[#7]-1-[#6](=[#8])-[#6](-[#7]-[#6](=[#8])-[#6](-[#7]-[#6](=[#8])-[#6]1:[#6]:[#7]:[#6]:[#6]:[#7]:1)-[#6](-[#6])-[#6])-[#6](-[#6])-[#6])-[#6](=,-[#8,#6])-,=[#8,#6]\n", "Row: 1330 Inhibition of MBP-fused human recombinant FAAH with truncated N-terminal transmembrane domain expressed in Escherichia coli T7 using D-AMC substrate measured over 40 mins by fluorescence based assay\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 32.1, mcs nAts: 26\n", "[#8]=[#6](-[#7,#8]-[#6])-[#7]1-[#6]-[#6]-[#6,#7](-[#6]-[#6]-1)-[#6]1:[#7]:[#6](-[#6]2=[#7]-[#8]-[#6](-[#6]-2)-[#6]2:[#6]:[#6]:[#6]:[#6]:[#6]:2):[#6]:[#16]:1\n", "Row: 1331 Displacement of [3H]CGS21680 from human adenosine A2A receptor\n", " * postgresql://localhost/chembl_23\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Mean nAts 23.8, mcs nAts: 15\n", "[#7]-[#6]1:[#7]:[#6](-[#6,#7]-[#7,#6]-,=[#6,#8]):[#6]:[#6](:[#7]:1)-[#6]1:[#6]:[#6]:[#6]:[#8]:1\n", "Row: 1332 Displacement of [3H]DPCPX from human adenosine A2B receptor expressed in HEK293 cells after 60 mins by filtration binding assay\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 22.8, mcs nAts: 15\n", "[#6]-[#7]-[#6]1:[#6,#7]:[#6]:[#6](:[#6](:[#7]:1)-[#17,#6,#7])-[#6]1:[#6]:[#6]:[#7]:[#6]:[#6,#7]:1\n", "Row: 1333 Inhibition of 5 nM [3H]DTBZ binding to Vesicular Monoamine Transporter (VAMT2) of rat vesicle membranes \n", " * postgresql://localhost/chembl_23\n", "Mean nAts 24.9, mcs nAts: 9\n", "[#6]-[#6]=,-[#6]-[#6]1:,-[#6]:,-[#6]:,-[#6]:,-[#6]:,-[#6,#7]:,-1\n", "Row: 1334 Antagonist activity at human TRPV1 expressed in CHO cells assessed as inhibition of capsaicin-induced activity by FLIPR assay\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 35.1, mcs nAts: 26\n", "[#8,#6,#7,#16]-[#6]1:[#7,#6]:[#6](-[#6]):[#6,#7]:[#6,#7]:[#6]:1-[#6]-[#7]-[#6](=[#8])-[#6](-[#6])-[#6]1:[#6]:[#6]:[#6](:[#6](:[#6]:1)-[#9])-[#7]-[#16](-[#6])(=[#8])=[#8]\n", "Row: 1335 Inhibition of 3 nM [3H]-MLA binding to Nicotinic acetylcholine receptor alpha7 of rat brain membranes\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 24.9, mcs nAts: 9\n", "[#6]-[#6]=,-[#6]-[#6]1:,-[#6]:,-[#6]:,-[#6]:,-[#6]:,-[#6,#7]:,-1\n", "Row: 1336 Binding affinity to human CXCR2 receptor transfected in CHO cell\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 35.7, mcs nAts: 26\n", "[#6]1:[#6]:[#6](-[#7]-[#6](-[#6]-[#6](-[#6])-[#6])-[#6](=[#8])-[#7]-[#6]-[#6]-[#6]-[#8]-[#6]-[#6]):[#7]:[#6](:[#7]:1)-[#7]1:[#6]:[#7,#6]:[#6,#7]:[#7,#6]:1\n", "Row: 1337 Binding affinity towards human opioid receptor mu 1 was determined by using [3H]diprenorphine as radioligand expressed in Chinese hamster ovary (CHO) cells\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 32.4, mcs nAts: 27\n", "[#6]1:[#6]:[#6]:[#6](:[#6](:[#6]:1)-[#8]-[#6]-[#6]-[#6]-[#7]1-[#6]-[#6]-[#6](-[#6]-[#6]-1)-[#7]1:[#6](-,=[#8]):[#7]:[#6]2:[#6]:1:[#6]:[#6]:[#6]:[#6]:2)-[#17,#6,#7,#9]\n", "Row: 1338 Displacement of [3H]DAMGO from rat mu opioid receptor expressed in mouse HN9.10 cell membranes\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 72.5, mcs nAts: 14\n", "[#8,#6,#7]=,-[#6,#7,#8]-[#7,#6]-[#6,#7]-[#6,#7]-[#6](=,-[#8,#6,#7])-[#7,#6]-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1\n", "Row: 1339 Displacement of [3H]Histamine from human histamine H4 receptor expressed in Sf9 cells co-expressing Galphai/o and Gbeta1gamma\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 22.7, mcs nAts: 11\n", "[#7]-[#6]1:[#7]:[#6](-[#7]):[#6]2:[#6](:[#7]:1):[#7]:[#6]:[#6]:2\n", "Row: 1340 Binding affinity to mouse GAT1 expressed in HEK293 cells membranes using LC-ESI-MS/MS analysis by [2H10]NO711 binding inhibition assay\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 27.4, mcs nAts: 26\n", "[#8]=[#6](-[#8])-[#6]1-[#6]-[#6]-[#6]-[#7](-[#6]-1)-[#6]-[#6]-[#7,#6]-[#7,#6]=[#6]-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1\n", "Row: 1341 Displacement of [125I]Tyr14-nociceptin from human NOP receptor expressed in HEK293 cells\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 32.8, mcs nAts: 15\n", "[#6,#7]-[#6](-,=[#6,#8])-[#6]1-[#6]-[#6]-[#6,#7](-[#6]-[#6]-1)-[#7,#6]1-[#6]-[#6]-[#6]-[#6]-[#6]-1\n", "Row: 1342 BindingDB_Patents: Enzyme Assay. Inhibition constant of the compound against Thrombin\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 35.4, mcs nAts: 31\n", "[#7]=[#6](-[#7])-[#6]1:[#6]:[#6]:[#6](:[#6]:[#6]:1)-[#6]-[#7]-[#6](=[#8])-[#6]-[#7]-[#6](=[#8])-[#6](-[#6]-[#8])-[#7]-[#16](=[#8])(=[#8])-[#6]-[#6]1:[#6]:[#6]:[#6,#7]:[#6]:[#6]:1\n", "Row: 1343 BindingDB_Patents: Enzyme Assay. Inhibition constant of the compound against Trypsin\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 35.4, mcs nAts: 31\n", "[#7]=[#6](-[#7])-[#6]1:[#6]:[#6]:[#6](:[#6]:[#6]:1)-[#6]-[#7]-[#6](=[#8])-[#6]-[#7]-[#6](=[#8])-[#6](-[#6]-[#8])-[#7]-[#16](=[#8])(=[#8])-[#6]-[#6]1:[#6]:[#6]:[#6,#7]:[#6]:[#6]:1\n", "Row: 1344 Binding affinity against dopamine receptor D2 on rat striatum using [3H]spiperone as radioligand.\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 28.2, mcs nAts: 19\n", "[#6]1-,=[#6]-[#6]-[#8]-[#6]2:[#6]-1:[#6]:[#6](:[#6]:[#6]:2-[#8]-[#6]-[#6]-[#7]-[#6]-[#6]-[#6]-[#6])-[#9]\n", "Row: 1345 BindingDB_Patents: Enzyme Assay. Inhibition constant of the compound against Plasminogen activator urokinase\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 35.4, mcs nAts: 31\n", "[#7]=[#6](-[#7])-[#6]1:[#6]:[#6]:[#6](:[#6]:[#6]:1)-[#6]-[#7]-[#6](=[#8])-[#6]-[#7]-[#6](=[#8])-[#6](-[#6]-[#8])-[#7]-[#16](=[#8])(=[#8])-[#6]-[#6]1:[#6]:[#6]:[#6,#7]:[#6]:[#6]:1\n", "Row: 1346 BindingDB_Patents: Enzyme Assay. Inhibition constant of the compound against Plasmin\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 35.4, mcs nAts: 31\n", "[#7]=[#6](-[#7])-[#6]1:[#6]:[#6]:[#6](:[#6]:[#6]:1)-[#6]-[#7]-[#6](=[#8])-[#6]-[#7]-[#6](=[#8])-[#6](-[#6]-[#8])-[#7]-[#16](=[#8])(=[#8])-[#6]-[#6]1:[#6]:[#6]:[#7,#6]:[#6]:[#6]:1\n", "Row: 1347 Displacement of [125I]Tyr14-nociceptin from ORL1 receptor expressed in HEK293 cells\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 27.8, mcs nAts: 16\n", "[#6]-[#7,#6]1-,=[#6]-[#6]-,=[#6,#7](-[#6]-[#6]-1)-[#6]1:,-[#6]:,-[#7,#6]:[#6]2:[#6]:,-1:[#6]:[#6]:[#6]:[#7,#6]:2\n", "Row: 1348 Inhibition of human recombinant SPHK1 expressed in baculovirus-infected Sf9 cells\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 29.6, mcs nAts: 4\n", "[#6,#7]-,=[#6]-[#6]-[#6,#7]\n", "Row: 1349 Displacement of human TARC from recombinant CCR4 receptor expressed in CHO cells co-expressing Galpha16 by FLIPR assay\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 37.4, mcs nAts: 29\n", "[#8]=[#6](-[#7]-[#6]1-[#6]-[#6]-[#7](-[#6]-[#6]-1)-[#6,#16]-,=[#6,#8])-[#6]1-[#6]-[#6]-[#6]-[#7]-1-[#16](=[#8])(=[#8])-[#6]1:[#6]:[#6]:[#6]2:[#6](:[#6]:1):[#6]:[#6]:[#6]:[#6]:2\n", "Row: 1350 Displacement of [3H]diprenorphine from cloned human mu opioid receptor expressed in CHO cells\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 27.3, mcs nAts: 16\n", "[#6]1:[#6]:[#6](-[#8]-[#6]2:[#6]:[#6]:[#6](:[#6]:[#7]:2)-[#6](-[#7])=[#8]):[#6]:[#6]:[#6]:1\n", "Row: 1351 Displacement of [3H]DAMGO from mu opioid receptor expressed in HEK293 cells\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 27.8, mcs nAts: 16\n", "[#6]-[#7,#6]1-,=[#6]-[#6]-,=[#6,#7](-[#6]-[#6]-1)-[#6]1:,-[#6]:,-[#7,#6]:[#6]2:[#6]:,-1:[#6]:[#6]:[#6]:[#7,#6]:2\n", "Row: 1352 Inhibition of [3H]cAMP binding to recombinant human Phosphodiesterase 4BL (PDE4BL) in baculovirus expression system\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 36.1, mcs nAts: 15\n", "[#6]-[#8]-[#6]1:[#6]:[#6]:[#6](:[#6]:[#6]:1-[#8]-[#6]1-[#6]-[#6]-[#6]-[#6]-1)-[#6]\n", "Row: 1353 Displacement of [3H]U-69593 from kappa opioid receptor expressed in HEK293 cells\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 27.8, mcs nAts: 16\n", "[#6]-[#7,#6]1-,=[#6]-[#6]-,=[#6,#7](-[#6]-[#6]-1)-[#6]1:,-[#6]:,-[#7,#6]:[#6]2:[#6]:,-1:[#6]:[#6]:[#6]:[#7,#6]:2\n", "Row: 1354 Inhibition of [3H]cAMP binding to recombinant human Phosphodiesterase 4AL (PDE4AL) in baculovirus expression system\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 36.1, mcs nAts: 15\n", "[#6]-[#8]-[#6]1:[#6]:[#6]:[#6](:[#6]:[#6]:1-[#8]-[#6]1-[#6]-[#6]-[#6]-[#6]-1)-[#6]\n", "Row: 1355 Displacement of [3H]DDPDE from delta opioid receptor expressed in HEK293 cells\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 27.8, mcs nAts: 16\n", "[#6]-[#7,#6]1-,=[#6]-[#6]-,=[#6,#7](-[#6]-[#6]-1)-[#6]1:,-[#6]:,-[#7,#6]:[#6]2:[#6]:,-1:[#6]:[#6]:[#6]:[#7,#6]:2\n", "Row: 1356 Displacement of [beta-33P]-2MeS-ADP from human P2Y1 receptor expressed in HEK293 cells after 1 hr by scintillation counting analysis\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 29.7, mcs nAts: 23\n", "[#6]-[#6](-[#6])(-[#6])-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1-[#8]-[#6]1:[#7]:[#6]:[#6]:[#6]:[#6]:1-[#7]-[#6]1:,=[#7,#6]:,-[#7,#6,#8,#16]:,-[#6,#7,#8]:,-[#16,#6,#7,#8]:,-1\n", "Row: 1357 Displacement of [3H](+)-pentazocine from rat brain sigma1 receptor\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 22.6, mcs nAts: 15\n", "[#8]-[#6]12-[#6]3-[#6]4-[#6]-[#6]5-[#6]-3-[#6](-[#7]-1-[#6]-[#6])-[#6]1-[#6]-2-[#6]-4-[#6]-1-5\n", "Row: 1358 Binding affinity towards human gonadotropin-releasing hormone receptor (GNRHR) using GnRH peptide as radioligand\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 37.5, mcs nAts: 33\n", "[#7]-[#6](-[#6]-[#7]1:[#6](=[#8]):[#6](-[#6]2:[#6]:[#6]:[#6]:[#6]:[#6]:2-[#17,#6,#9]):[#6]:[#7](:[#6]:1=[#8])-[#6]-[#6]1:[#6](-[#9,#16]):[#6]:[#6]:[#6]:[#6]:1-[#9,#6,#16,#17])-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1\n", "Row: 1359 Binding affinity to human MCH1R\n", " * postgresql://localhost/chembl_23\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Mean nAts 33.3, mcs nAts: 26\n", "[#6]-[#7](-[#6])-[#6]1-[#6]-[#6]-[#7](-[#6]-1)-[#6]1:[#6]:[#6]:[#6](:[#6]:[#7]:1)-[#6]1:[#6]:[#8,#7]:[#6]2:[#6](:[#6]:1=[#8]):[#6]:[#6]:[#6](:[#6]:2)-[#6,#8]\n", "Row: 1360 Inhibition of [3H]-CGS- 21680 binding to human Adenosine A2A receptor expressed in CHO cells\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 30.8, mcs nAts: 21\n", "[#8,#7]-[#6]-[#6]1-[#8,#6]-[#6](-[#7]2:[#6]:[#7]:[#6]3:[#6]:2:[#7]:[#6]:[#7]:[#6]:3-[#7]-[#6]-[#6])-[#6](-[#6]-1-[#8])-[#8]\n", "Row: 1361 Displacement of [125I]alpha-bungarotoxin from alpha7 nicotinic acetylcholine receptor in rat brain cortex membrane homogenates\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 22.0, mcs nAts: 16\n", "[#6]-[#6]-[#7]1-[#6]-[#6]2-[#6]-[#6](-[#6]-1)-[#6]1:[#6]:[#6]:[#6]:[#6](:[#7]:1-[#6]-2)=[#8]\n", "Row: 1362 Displacement of (+/-)-[3H]epibatidine from alpha4beta2 nicotinic acetylcholine receptor in rat brain cortex membrane homogenates\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 22.0, mcs nAts: 16\n", "[#6]-[#6]-[#7]1-[#6]-[#6]2-[#6]-[#6](-[#6]-1)-[#6]1:[#6]:[#6]:[#6]:[#6](:[#7]:1-[#6]-2)=[#8]\n", "Row: 1363 Inhibition of PTP1B\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 23.4, mcs nAts: 14\n", "[#8]=[#6](-[#8])-[#6]-[#8]-[#6]1:[#6](-[#35,#6]):[#6]:[#16]:[#6]:1-[#6](=[#8])-[#8]\n", "Row: 1364 Displacement of [3H]diprenorphine from cloned human kappa opioid receptor expressed in CHO cells\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 27.3, mcs nAts: 16\n", "[#6]1:[#6]:[#6](-[#8]-[#6]2:[#6]:[#6]:[#6](:[#6]:[#7]:2)-[#6](-[#7])=[#8]):[#6]:[#6]:[#6]:1\n", "Row: 1365 Displacement of (+)-[3H]pentazocine from sigma 1 receptor in guinea pig brain membrane homogenates after 90 mins by liquid scintillation counting\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 29.4, mcs nAts: 14\n", "[#8]-[#6]1-[#6]-[#6,#7]-[#6,#7]-[#6]-[#6]-1-[#7]1-[#6]-[#6]-[#6](-[#6]-[#6]-1)-[#6]\n", "Row: 1366 Displacement of [3H]CP55,940 from human recombinant CB2 receptor expressed in HEK293 cell membranes after 90 mins\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 25.8, mcs nAts: 11\n", "[#6]-[#7]-[#6](=[#8])-[#6]1:[#6]:[#6]:[#6]:[#7]:[#6]:1=,-[#8]\n", "Row: 1367 Inhibition of human CA2 pre-incubated for 15 mins by stopped-flow CO2 hydration method\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 12.9, mcs nAts: 4\n", "[#6,#7,#8,#16]-,=[#7,#6](-,=[#6,#8,#16])-[#6,#7,#16]\n", "Row: 1368 Inhibition of human CA1 pre-incubated for 15 mins by stopped-flow CO2 hydration method\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 12.9, mcs nAts: 4\n", "[#6,#7,#8,#16]-,=[#7,#6](-,=[#6,#8,#16])-[#6,#7,#16]\n", "Row: 1369 Displacement of [3H]CP55940 from human CB2 receptor expressed in CHO cells after 1 hr by liquid scintillation spectrophotometry\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 26.5, mcs nAts: 24\n", "[#6]-[#6]-[#6]-[#7]1:[#6]:[#6](-[#6](=[#8])-[#6]2:[#6]:[#6]:[#6]:[#6]3:[#6]:2:[#6]:[#6]:[#6]:[#6]:3):[#6]2:[#6]:1:[#6]:[#6]:[#6]:[#6]:2\n", "Row: 1370 Displacement of [3H]CP55940 from human CB1 receptor expressed in HEK293 cells after 1 hr by liquid scintillation spectrophotometry\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 26.5, mcs nAts: 24\n", "[#6]-[#6]-[#6]-[#7]1:[#6]:[#6](-[#6](=[#8])-[#6]2:[#6]:[#6]:[#6]:[#6]3:[#6]:2:[#6]:[#6]:[#6]:[#6]:3):[#6]2:[#6]:1:[#6]:[#6]:[#6]:[#6]:2\n", "Row: 1371 Displacement of [3H]bremazocine from cloned human delta opioid receptor expressed in CHO cells\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 27.3, mcs nAts: 16\n", "[#6]1:[#6]:[#6](-[#8]-[#6]2:[#6]:[#6]:[#6](:[#6]:[#7]:2)-[#6](-[#7])=[#8]):[#6]:[#6]:[#6]:1\n", "Row: 1372 Displacement of [125I]CXCL10 from CXCR3 expressed in HEK293 cells\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 29.0, mcs nAts: 17\n", "[#6]1-,:[#6]-,:[#6]-,:[#6]=,-,:[#6](-,=,:[#6]-,:1)-[#6]-[#7](-[#6])(-[#6])-[#6]-[#6]1:,=[#6]:,-[#6]:,-[#6]:,-[#6]:,-[#6]:,-1\n", "Row: 1373 Displacement of [3H]CP55,940 from human recombinant CB1 receptor expressed in HEK293 cell membranes after 90 mins\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 25.8, mcs nAts: 11\n", "[#6]-[#7]-[#6](=[#8])-[#6]1:[#6]:[#6]:[#6]:[#7]:[#6]:1=,-[#8]\n", "Row: 1374 Displacement of [3H]spiperone from dopamine D2 receptor in Sprague-Dawley rat striatum homogenate after 30 mins by liquid scintillation counting\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 33.5, mcs nAts: 16\n", "[#8]=[#6]1:[#8]:[#6]2:[#6]:[#6](-[#8]-[#6]-[#6]-[#6]-[#6,#7]):[#6]:[#6]:[#6]:2:[#6]:[#6]:1\n", "Row: 1375 Inhibition of human ICE\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 30.6, mcs nAts: 18\n", "[#6]-[#6](-[#6])-[#6](-[#6]-[#6](=,-[#8,#7])-,=[#7,#8])-[#6](=[#8])-[#7]-[#6](-[#6]=[#8])-[#6]-[#6](=[#8])-[#8]\n", "Row: 1376 Displacement of [3H]DPCPX from human adenosine A1 receptor expressed in CHO cells by liquid scintillation counting\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 25.1, mcs nAts: 16\n", "[#6,#16]-[#6]1:[#16]:[#6](-[#7]-[#6](=,-[#8,#6])-,=[#6,#8]):[#7]:[#6]:1-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1\n", "Row: 1377 Displacement of [3H]ZM241385 from human adenosine A2A receptor expressed in buculovirus system by liquid scintillation counting\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 25.2, mcs nAts: 16\n", "[#6,#8]-,=[#6](=,-[#8,#6])-[#7]-[#6]1:[#7]:[#6](-[#6]2:[#6]:[#6]:[#6]:[#6]:[#6]:2):[#6](:[#16]:1)-[#6]\n", "Row: 1378 Displacement of [3H]CP-55940 from human recombinant CB1 receptor expressed in CHO cells\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 28.3, mcs nAts: 13\n", "[#6]-[#6]-[#6]-[#6]-[#6,#7]1=,-[#7]-,=[#7,#6](-[#6](=[#8])-[#7,#6])-[#6]-[#6]-1-[#6]\n", "Row: 1379 Displacement of [3H]CP-55940 from human recombinant CB2 receptor expressed in CHO cells\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 28.3, mcs nAts: 13\n", "[#6]-[#6]-[#6]-[#6]-[#6,#7]1=,-[#7]-,=[#7,#6](-[#6](=[#8])-[#7,#6])-[#6]-[#6]-1-[#6]\n", "Row: 1380 In vitro inhibition of [3H]RTX binding to rat TRPV1 expressed in CHO cells\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 27.9, mcs nAts: 16\n", "[#6,#7,#8]-[#6,#7,#8]-,=[#6,#7]-,=[#7,#6,#8]-[#6,#7]-[#6]1:[#6]:[#6]:[#6](:[#6]:[#6]:1)-[#7]-[#16](-[#6])(=[#8])=[#8]\n", "Row: 1381 Displacement of [3H]citalopram from human recombinant SERT expressed in LLCPK cells after 2 hrs by liquid scintillation counting\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 35.3, mcs nAts: 29\n", "[#6]-[#6]1:[#6]:[#6]:[#6]2:[#6](:[#7]:1):[#6]:[#6]:[#6]:[#6]:2-[#7]1-[#6]-[#6]-[#7](-[#6]-[#6]-1)-[#6]-[#6]-[#6]1:[#6]:[#6]:[#6]:[#6]2:[#6]:1-[#8]-[#6]-[#6]-,:[#7]-2\n", "Row: 1382 Displacement of [3H]-dofetilide from human ERG by scintillation proximity assay\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 35.3, mcs nAts: 29\n", "[#6]-[#6]1:[#6]:[#6]:[#6]2:[#6](:[#7]:1):[#6]:[#6]:[#6]:[#6]:2-[#7]1-[#6]-[#6]-[#7](-[#6]-[#6]-1)-[#6]-[#6]-[#6]1:[#6]:[#6]:[#6]:[#6]2:[#6]:1-[#8]-[#6]-[#6]-,:[#7]-2\n", "Row: 1383 Inhibition of mouse recombinant SPHK2 expressed in baculovirus-infected Sf9 cells\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 29.6, mcs nAts: 4\n", "[#6,#7]-,=[#6]-[#6]-[#6,#7]\n", "Row: 1384 Inhibition of muscarinic M2 receptor (unknown origin) by PDSP assay\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 21.5, mcs nAts: 12\n", "[#7,#8]-[#6]1-[#6]2-[#6]3-[#6]-[#6]4-[#6]-1-[#6]1-[#6]-2-[#6]-[#6]-3-[#6]-1-4\n", "Row: 1385 Displacement of [125I]NDP-MSH from human MC4R expressed in HEK293 cells\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 34.8, mcs nAts: 29\n", "[#6]-[#6](-[#6]-[#6]1:[#6]:[#6]:[#6](:[#6]:[#6]:1)-[#17])-[#6](=[#8])-[#7]1-[#6]-[#6]-[#7](-[#6]-[#6]-1)-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1-[#6](-[#7])-[#6](-[#6])-[#6]\n", "Row: 1386 Displacement of [3H]CP-55940 from CB1 receptor in rat brain\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 29.8, mcs nAts: 28\n", "[#6]-[#6]-[#6]-[#6]-[#6]-[#7]1:[#6]:[#6](-[#6](=[#8])-[#6]2:[#6]:[#6]:[#6]:[#6]3:[#6]:2:[#6]:[#6]:[#6]:[#6]:3):[#6]:[#6]:1-[#6]1:[#6]:[#6]:[#6]:[#7,#6]:[#6]:1\n", "Row: 1387 Displacement of [125I]NDP-MSH from human MC4 receptor expressed in HEK293 cells\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 42.7, mcs nAts: 31\n", "[#6]1:[#6]:[#6]:[#6](:[#6](:[#6]:1)-[#6](-[#7,#6])-[#6,#7](-[#6])-[#6])-[#7]1-[#6]-[#6]-[#7](-[#6]-[#6]-1)-[#6](=[#8])-[#6]1-[#6]-[#7](-[#6])-[#6]-[#6]-1-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1\n", "Row: 1388 Displacement of [3H]CP-55940 from human cloned CB2 receptor\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 29.8, mcs nAts: 28\n", "[#6]-[#6]-[#6]-[#6]-[#6]-[#7]1:[#6]:[#6](-[#6](=[#8])-[#6]2:[#6]:[#6]:[#6]:[#6]3:[#6]:2:[#6]:[#6]:[#6]:[#6]:3):[#6]:[#6]:1-[#6]1:[#6]:[#6]:[#6]:[#7,#6]:[#6]:1\n", "Row: 1389 Displacement of [3H]Ketanserin from 5HT2A receptor in Sprague-Dawley rat brain cortex homogenate after 30 mins by liquid scintillation counting\n", " * postgresql://localhost/chembl_23\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Mean nAts 33.5, mcs nAts: 16\n", "[#8]=[#6]1:[#8]:[#6]2:[#6]:[#6](-[#8]-[#6]-[#6]-[#6]-[#6,#7]):[#6]:[#6]:[#6]:2:[#6]:[#6]:1\n", "Row: 1390 Inhibition constant against human carbonic anhydrase IX\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 35.5, mcs nAts: 8\n", "[#7,#6]-,=[#16,#6,#7,#8]-[#6]1:[#6,#7]:[#6,#8]:[#6]:[#6]:[#6,#7]:1\n", "Row: 1391 Inhibition constant against human carbonic anhydrase II\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 35.5, mcs nAts: 8\n", "[#7,#6]-,=[#16,#6,#7,#8]-[#6]1:[#6,#7]:[#6,#8]:[#6]:[#6]:[#6,#7]:1\n", "Row: 1392 Displacement of [3H](R)-alpha-methylhistamine from human recombinant histamine H3 receptor expressed in CHO cells by liquid scintillation counting\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 30.1, mcs nAts: 20\n", "[#6]-[#7]1-[#6]-[#6]-[#6,#7](-[#6]-[#6]-1)-[#8,#6,#7]-[#6](:[#6]:[#6]:[#6]1:[#7,#6]:[#6](-[#6](=,-[#8,#7])-,=[#7,#8]):[#6,#7]:[#6,#7]:1):[#6]\n", "Row: 1393 Inhibition constant against human carbonic anhydrase I\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 35.5, mcs nAts: 8\n", "[#7,#6]-,=[#16,#6,#7,#8]-[#6]1:[#6,#7]:[#6,#8]:[#6]:[#6]:[#6,#7]:1\n", "Row: 1394 Displacement of [3H]spiperone from human dopamine D3 receptor expressed in HEK293 cell membranes by liquid scintillation counting based competition binding assay\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 23.4, mcs nAts: 18\n", "[#6]-[#7]1-[#6]-[#6]-[#6]2:[#6]:[#6]:[#6]:[#6]:[#6]:2-[#6](-[#6]-1)-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1\n", "Row: 1395 Displacement of [3H]spiperone from human dopamine D2 receptor expressed in HEK293 cell membranes by liquid scintillation counting based competition binding assay\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 23.4, mcs nAts: 18\n", "[#6]-[#7]1-[#6]-[#6]-[#6]2:[#6]:[#6]:[#6]:[#6]:[#6]:2-[#6](-[#6]-1)-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1\n", "Row: 1396 Displacement of [3H]SCH23390 from human dopamine D1 receptor expressed in HEK293 cell membranes by liquid scintillation counting based competition binding assay\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 23.4, mcs nAts: 18\n", "[#6]-[#7]1-[#6]-[#6]-[#6]2:[#6]:[#6]:[#6]:[#6]:[#6]:2-[#6](-[#6]-1)-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1\n", "Row: 1397 Inhibitory activity against HIV-1 protease\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 41.5, mcs nAts: 31\n", "[#7,#6,#8]-[#6]-[#6]-[#6]-[#6]-[#7]1-[#6](=[#8])-[#7](-[#6]-[#6])-[#6](-[#6]-[#6]2:[#6]:[#6]:[#6]:[#6]:[#6]:2)-[#6](-[#6](-[#6]-1-[#6]-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1)-[#8])-[#8]\n", "Row: 1398 Inhibition of chymotrypsin-like activity of human 20S proteasome beta 5 subunit assessed as Suc-Leu-Leu-Val-Tyr-AMC substrate hydrolysis after 10 mins by fluorometric analysis\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 23.2, mcs nAts: 12\n", "[#8]=[#6](-[#6]-[#7]1:,-[#6]:,=[#6]:,-[#6]:,-[#6]:,-[#6]:,-1=[#8])-[#7]-[#6]\n", "Row: 1399 Displacement of [125I]-7-OH-PIPAT from rat brain dopamine D3 receptor after 45 mins by microplate scintillation counting analysis\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 33.5, mcs nAts: 24\n", "[#6]-[#6]1:[#7]:[#7]:[#6](:[#7]:1-[#6])-[#16]-[#6]-[#6]-[#6]-[#7]1-[#6]-[#6]-[#8]-[#6](-[#6]-1)-[#6]1:[#6]:[#6]:[#6](:[#6]:[#6]:1)-[#9,#6,#35]\n", "Row: 1400 Agonist activity at human dopamine D3 receptor expressed in CHO cells after 90 mins by [35S]-GTPgamma S assay\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 33.5, mcs nAts: 24\n", "[#6]-[#6]1:[#7]:[#7]:[#6](:[#7]:1-[#6])-[#16]-[#6]-[#6]-[#6]-[#7]1-[#6]-[#6]-[#8]-[#6](-[#6]-1)-[#6]1:[#6]:[#6]:[#6](:[#6]:[#6]:1)-[#9,#6,#35]\n", "Row: 1401 Inhibition of human MAOB expressed in baculovirus-infected BTI insect cells assessed as H2O2 production by resorufin dye based fluorimetric method\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 24.9, mcs nAts: 8\n", "[#6,#8]-[#6]1:[#6]:[#6]:[#6](:[#6]:[#6]:1)-[#6,#17]\n", "Row: 1402 Inhibition of human MAOA expressed in baculovirus-infected BTI insect cells assessed as H2O2 production by resorufin dye based fluorimetric method\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 24.9, mcs nAts: 8\n", "[#6,#8]-[#6]1:[#6]:[#6]:[#6](:[#6]:[#6]:1)-[#6,#17]\n", "Row: 1403 Displacement of [3H]-(+)-pentazocine from sigma-1 receptor in guinea pig brain membranes after 150 mins by liquid scintillation counting method\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 30.1, mcs nAts: 15\n", "[#6]1:[#6]:[#6]:[#6](:[#6]:[#6]:1)-[#6]-[#7,#6]1-[#6]-[#6]-[#7](-[#6]-[#6]-1)-[#6]-[#6]\n", "Row: 1404 Displacement of [3H]8-OH-DPAT from human 5-HT1A expressed in human HeLa cells after 30 mins\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 30.1, mcs nAts: 15\n", "[#6]1:[#6]:[#6]:[#6](:[#6]:[#6]:1)-[#6]-[#6,#7]1-[#6]-[#6]-[#7](-[#6]-[#6]-1)-[#6]-[#6]\n", "Row: 1405 Inhibition of human plasma kallikrein using H-D-Pro-Phe-Arg-pNA as substrate\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 39.1, mcs nAts: 30\n", "[#7]-[#6]-[#6]1-[#6]-[#6]-[#6](-[#6]-[#6]-1)-[#6](=[#8])-[#7]-[#6](-[#6]-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1)-[#6]1:[#7,#6]:[#6,#7]:[#6,#7](:[#8,#6,#7]:1)-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1\n", "Row: 1406 In vitro binding affinity to vesamicol receptor using [3H]vesamicol.\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 26.5, mcs nAts: 13\n", "[#8]-[#6]1-[#6]-[#6]-,:[#6,#7]-[#6]-[#6]-1-[#7]1-[#6]-[#6]-[#6]-[#6]-[#6]-1\n", "Row: 1407 Inhibition of human coagulation factor 11a using p-nitroaniline as substrate assessed as substrate hydrolysis by spectrophotometrically\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 39.1, mcs nAts: 30\n", "[#7]-[#6]-[#6]1-[#6]-[#6]-[#6](-[#6]-[#6]-1)-[#6](=[#8])-[#7]-[#6](-[#6]-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1)-[#6]1:[#6,#7]:[#7,#6]:[#6,#7](:[#7,#6,#8]:1)-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1\n", "Row: 1408 Displacement of [3H]nisoxetine from NET in Sprague-Dawley rat cortical tissue\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 18.8, mcs nAts: 7\n", "[#6]1:,-[#6]:,-[#6,#7]:,-[#6,#7](:,-[#6]:,-[#6,#7]:,-1)-[#6,#17]\n", "Row: 1409 Displacement of [125I]PYY from human recombinant neuropeptide Y5 receptor expressed in mouse LMtk- cells\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 27.9, mcs nAts: 20\n", "[#9,#8]-[#6]1:[#6]:[#6]:[#6](:[#6]:[#6,#7]:1)-[#6]1(-[#6]2:[#6]:[#6]:[#6](:[#6,#7]:[#6]:2)-,=[#9,#8])-[#6]-[#7]-[#6](=[#7]-1)-[#6]\n", "Row: 1410 Displacement of [3H](+)-pentazocine from sigma 1 receptor in guinea pig brain membrane without cerebellum\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 25.0, mcs nAts: 8\n", "[#6,#8]-[#7,#6]1-,=,:[#6]-,:[#6]-,:[#6,#7](-,:[#6]-,:[#6]-,:1)-[#6,#7,#8]\n", "Row: 1411 Inhibitory activity against thymidine monophosphate kinase (TMPK) in Mycobacterium tuberculosis\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 19.9, mcs nAts: 16\n", "[#6,#9]-[#6]1:[#6]:[#7](-[#6]2-[#8,#6]-[#6](-[#6,#7,#8,#9])-[#6](-[#6,#8]-2)-[#7,#6,#8]):[#6](:[#7]:[#6]:1=[#8])=[#8]\n", "Row: 1412 Inhibition of human N-terminal GST-tagged EGFR catalytic domain (669 to 1210 residues) expressed in baculovirus expression system using Fl-EEPLYWSFPAKKK-CONH2 peptide substrate preincubated for 30 mins followed by substrate addition measured after 30 mins by Caliper Mobility Shift Assay\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 30.6, mcs nAts: 17\n", "[#6]1:[#6]:[#6]:[#6](:[#6,#7]:[#6,#7]:1)-[#7]-[#6](=[#8])-[#6]1:[#6](-[#7]):[#6]:[#6]:[#7]:[#6]:1=[#8]\n", "Row: 1413 Displacement of [3H]U69593 from human kappa opioid receptor expressed in CHO cells\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 35.9, mcs nAts: 28\n", "[#8,#6]=,-[#6](-,=[#6,#8])-[#7]-[#6]1-[#6]-[#6]-[#6]2(-[#6]34-[#6]-1-[#8]-[#6]1:[#6]-3:[#6](-[#6]-[#6]-2-[#7](-[#6]-[#6]-4)-[#6]-[#6]2-[#6]-[#6]-2):[#6]:[#6]:[#6]:1-[#8])-[#8]\n", "Row: 1414 Binding affinity to N-terminal 6xHis-tagged human cloned XIAP BIR3 domain expressed in Escherichia coli BL21 (DE3) by fluorescence polarization-based competitive binding assay\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 32.2, mcs nAts: 9\n", "[#6]-[#6,#7]-[#7,#6]-[#6,#7]1-,:[#6]-,:[#6]-,:[#6,#8]-,:[#7,#6]-,:[#6]-,:1\n", "Row: 1415 Displacement of [3H]CP55940 from human CB2 receptor expressed in CHO cell membranes after 2 hrs\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 29.9, mcs nAts: 17\n", "[#6]1:[#6]:[#6]:[#6]:[#6](:[#6]:1)-[#6]1:[#6]:[#6]:[#6](:[#6](:[#6]:1)-[#6]-[#6,#7]=,-[#6])-[#8]-[#6]\n", "Row: 1416 Displacement of [3H]CP55940 from human CB1 receptor expressed in CHO cell membranes after 2 hrs\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 29.9, mcs nAts: 17\n", "[#6]1:[#6]:[#6]:[#6]:[#6](:[#6]:1)-[#6]1:[#6]:[#6]:[#6](:[#6](:[#6]:1)-[#6]-[#6,#7]=,-[#6])-[#8]-[#6]\n", "Row: 1417 Displacement of [3H]nemonapride from human cloned dopamine D4.2 receptor\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 27.5, mcs nAts: 26\n", "[#8]=[#6](-[#7]-[#6]1-[#6]-[#6]-[#7](-[#6]-[#6]-1)-[#6]-[#6]1:[#6]:[#6]:[#6]:[#7,#6]:[#6,#7]:1)-[#6]1:[#6]:[#6]:[#6]:[#6](:[#6]:1):[#6]:[#6]:[#6]:[#6]\n", "Row: 1418 Inhibition of [3H]Nalpha-methylhistamine binding to H3 receptor in guinea-pig brain membranes\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 21.4, mcs nAts: 11\n", "[#16,#6,#7,#8]-,=[#7,#6,#16]-[#6,#7]-[#6]-[#6]-[#6]-[#6]1:[#6]:[#7]:[#6]:[#7]:1\n", "Row: 1419 Displacement of [3H]DPDPE from human delta opioid receptor expressed in CHO cells\n", " * postgresql://localhost/chembl_23\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Mean nAts 35.9, mcs nAts: 28\n", "[#8,#6]=,-[#6](-,=[#6,#8])-[#7]-[#6]1-[#6]-[#6]-[#6]2(-[#6]34-[#6]-1-[#8]-[#6]1:[#6]-3:[#6](-[#6]-[#6]-2-[#7](-[#6]-[#6]-4)-[#6]-[#6]2-[#6]-[#6]-2):[#6]:[#6]:[#6]:1-[#8])-[#8]\n", "Row: 1420 Displacement of [3H]LSD from human recombinant 5HT6 receptor expressed in HEK293 cells\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 27.5, mcs nAts: 20\n", "[#7,#6]-[#6]1:[#6]:[#6]:[#6]:[#6]2:[#6]:1-[#8]-[#6]-[#6]-[#7]-2-[#16](=[#8])(=[#8])-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1\n", "Row: 1421 Displacement of [3H]DAMGO from human mu opioid receptor expressed in CHO cells\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 35.9, mcs nAts: 28\n", "[#8,#6]=,-[#6](-,=[#6,#8])-[#7]-[#6]1-[#6]-[#6]-[#6]2(-[#6]34-[#6]-1-[#8]-[#6]1:[#6]-3:[#6](-[#6]-[#6]-2-[#7](-[#6]-[#6]-4)-[#6]-[#6]2-[#6]-[#6]-2):[#6]:[#6]:[#6]:1-[#8])-[#8]\n", "Row: 1422 Inhibition of human liver MAOA expressed in yeast\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 31.6, mcs nAts: 27\n", "[#8]=[#6]1-[#8]-[#6](-[#6]-[#7]2:[#6]:[#6]:[#7]:[#7]:2)-[#6]-[#7]-1-[#6]1:[#6]:[#6]:[#6](:[#6](:[#6]:1)-[#9])-[#6]1:[#6]:[#6]:[#6](:[#7]:[#6]:1)-[#6]-,=[#8,#6]\n", "Row: 1423 Binding affinity to human bradykinin B1 receptor\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 31.7, mcs nAts: 28\n", "[#6,#7,#8]-,=[#6](=,-[#8,#7])-[#7]-[#6]1:[#6]:[#6]:[#6](:[#6]:[#6]:1)-[#16](=[#8])(=[#8])-[#7]-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1-[#6](=[#8])-[#6]1:[#6]:[#6]:[#6,#7]:[#6,#7]:[#6,#7]:1\n", "Row: 1424 Displacement of [3H]8-OH-DPAT from 5HT1A receptor in Sprague-Dawley rat brain cortex homogenate after 30 mins by liquid scintillation counting\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 33.5, mcs nAts: 16\n", "[#8]=[#6]1:[#8]:[#6]2:[#6]:[#6](-[#8]-[#6]-[#6]-[#6]-[#6,#7]):[#6]:[#6]:[#6]:2:[#6]:[#6]:1\n", "Row: 1425 Antagonist activity at human CRTH2 receptor expressed in CHO-1 cells assessed as inhibition of PGD2-induced Ca2+ flux preincubated for 30 mins followed by PGD2 challenge measured after 60 mins by chemiluminescence assay\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 38.8, mcs nAts: 32\n", "[#6]-[#6]1(-[#6])-[#6]-[#6](-[#6]2:[#6]:[#6]:[#6]3:[#6](:[#6]:2):[#7]:[#6](:[#7](:[#6]:3=[#8])-[#6]2:[#6]:[#6]:[#6](:[#6]:[#6]:2)-[#9])-[#6]-[#6]-[#6]-[#6]-[#6](=[#8])-[#8])=[#7]-[#8]-1\n", "Row: 1426 Inhibition of human ERG\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 36.9, mcs nAts: 19\n", "[#8]=[#6](-[#6]1-[#6]-[#7,#6]-[#6]-[#6,#7]-[#6]-1)-[#7](-[#6]-[#6]1:[#6,#7]:[#6]:[#6,#7]:[#6]:[#6]:1)-[#6]1-[#6]-[#6]-1\n", "Row: 1427 Binding affinity to human CB2 receptor\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 24.9, mcs nAts: 17\n", "[#6]-[#16]-[#6](=[#16])-[#7]1-[#6]-[#6]-[#6]-[#16]-[#6]-1=[#7]-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1\n", "Row: 1428 Binding affinity to human adenosine A2A receptor\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 20.9, mcs nAts: 11\n", "[#7,#6,#8]-,=[#7,#6,#8]-[#6]1:[#7,#6]:[#6](-[#6](=,-[#8,#9])-[#6,#9]):[#6,#7]:[#6]:[#7,#6]:1\n", "Row: 1429 Binding affinity to human adenosine A1 receptor\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 20.9, mcs nAts: 11\n", "[#7,#6,#8]-,=[#7,#6,#8]-[#6]1:[#7,#6]:[#6](-[#6](=,-[#8,#9])-[#6,#9]):[#6,#7]:[#6]:[#7,#6]:1\n", "Row: 1430 Binding affinity against Hepatitis C virus NS3 protease\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 61.7, mcs nAts: 55\n", "[#6]-[#6]-[#6](-[#7]-[#6](=[#8])-[#6]1-[#6]-[#6]-[#6]-[#7]-1-[#6](=[#8])-[#6](-[#7]-[#6](=[#8])-[#6](-[#7]-[#6](=[#8])-[#6](-[#6]-[#6]-[#6](=[#8])-[#8])-[#7]-[#6](=[#8])-[#6](-[#7])-[#6]-[#6](=[#8])-[#8])-[#6](-[#6])-[#6])-[#6](-[#6])-[#6])-[#5]1-[#8]-[#6]2-[#6]-[#6]3-[#6]-[#6](-[#6]-2(-[#8]-1)-[#6])-[#6]-3(-[#6])-[#6]\n", "Row: 1431 Displacement of [125I]triptorelin from human GnRHR expressed in CHO cells\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 107.7, mcs nAts: 49\n", "[#6]-[#6]-[#7]-[#6](=[#8])-[#7]-[#6]1:[#6]:[#6]:[#6](:[#6]:[#6]:1)-[#6]1:[#7]:[#6]2:[#7](-[#6]-[#6]3:[#6](-[#9]):[#6]:[#6]:[#6]:[#6]:3-[#9]):[#6]:[#6](:[#6](:[#7]:2:[#6]:1-[#6]-[#7](-[#6]-[#6](=,-[#8,#7])-,=[#7,#8])-[#6]-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1)=[#8])-[#6](=[#8])-[#8]-[#6]-[#6]\n", "Row: 1432 Inhibition of [3H]dopamine reuptake at human DAT expressed in HEK293 cells\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 23.2, mcs nAts: 21\n", "[#6]1:[#6]:[#6]:[#6]:[#6](:[#6]:1-[#17,#6,#8,#9])-[#8]-[#6](-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1)-[#6]1-[#6]-[#7]-[#6]-[#6]-[#8]-1\n", "Row: 1433 Inhibition of human cytosolic carbonic anhydrase 1 preincubated for 15 min by CO2 hydration assay\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 23.0, mcs nAts: 15\n", "[#7]-[#16](=[#8])(=[#8])-[#6]1:[#6]:[#6]:[#6](:[#6]:[#6]:1)-[#7]-[#6](=[#8])-[#7]-[#6]\n", "Row: 1434 Inhibition of human cytosolic carbonic anhydrase 2 preincubated for 15 min by CO2 hydration assay\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 23.0, mcs nAts: 15\n", "[#7]-[#16](=[#8])(=[#8])-[#6]1:[#6]:[#6]:[#6](:[#6]:[#6]:1)-[#7]-[#6](=[#8])-[#7]-[#6]\n", "Row: 1435 Inhibition of tumor-associated human carbonic anhydrase 9 preincubated for 15 min by CO2 hydration assay\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 23.0, mcs nAts: 15\n", "[#7]-[#16](=[#8])(=[#8])-[#6]1:[#6]:[#6]:[#6](:[#6]:[#6]:1)-[#7]-[#6](=[#8])-[#7]-[#6]\n", "Row: 1436 Inhibition of tumor-associated human carbonic anhydrase 12 preincubated for 15 min by CO2 hydration assay\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 23.0, mcs nAts: 15\n", "[#7]-[#16](=[#8])(=[#8])-[#6]1:[#6]:[#6]:[#6](:[#6]:[#6]:1)-[#7]-[#6](=[#8])-[#7]-[#6]\n", "Row: 1437 Inhibition of human carbonic anhydrase 1 after 15 mins by CO2 hydrase assay at pH 7.5\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 8.5, mcs nAts: 0\n", "\n", "Row: 1438 Inhibition of human carbonic anhydrase 2 after 15 mins by CO2 hydrase assay at pH 7.5\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 8.5, mcs nAts: 0\n", "\n", "Row: 1439 Binding affinity towards 5-hydroxytryptamine 1C receptor from frontal cortical regions of male Sprague-Dawley rat homogenates, using [3H]mesulergine as radioligand\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 14.8, mcs nAts: 9\n", "[#6,#7]-[#6,#8]-[#6,#8]-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1\n", "Row: 1440 Inhibitory activity against human DPP4\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 26.4, mcs nAts: 18\n", "[#7,#6]-[#6]-[#16]-[#6](-[#6])(-[#6])-[#6](-[#7])-[#6](=[#8])-[#7]1-[#6]-[#6](-[#9])-[#6]-[#6]-1-[#6]#[#7]\n", "Row: 1441 Displacement of [3H]CP-55940 from human CB2 receptor\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 29.1, mcs nAts: 13\n", "[#6,#7,#8]-,=[#6](-,=[#6,#7,#8])-[#6]1:[#6]:[#6,#7]:[#6]:[#6](:[#6]:1)-,:[#8,#6]-,:[#6]-,:[#6]-,:[#6]\n", "Row: 1442 Inhibitory activity against human PNMT\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 15.5, mcs nAts: 11\n", "[#53,#6,#7,#16,#17]-[#6]1:,-[#6,#7]:,-[#6]:,-[#6]2:[#6](:,-[#6]:,-1)-,:[#6]-,:[#7,#6]-,:[#6]-,:[#6]-,:2\n", "Row: 1443 Inhibition of human DPP4 using gly-pro-para-nitroanilide as substrate\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 25.8, mcs nAts: 18\n", "[#7]#[#6]-[#6]1-[#6]-[#6]2-[#6]-[#6]-2-[#7]-1-[#6](=[#8])-[#6](-[#7])-[#6]1:,-[#6]:,-[#6]:,-[#6,#7]:,-[#6]:,-[#6]:,-1\n", "Row: 1444 Displacement of [3H](+)-pentazocine from sigma 1 receptor in guinea pig brain membranes\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 23.7, mcs nAts: 16\n", "[#6]-[#8]-[#6]1:[#6]:[#6]:[#6]2:[#6](:[#6]:1)-,:[#6]-,:[#6]-,:[#6]-,:[#6]-,:2-[#6]-[#6]-[#6]-[#7,#6]\n", "Row: 1445 Inhibitory constant against human methionine aminopeptidase 2\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 12.5, mcs nAts: 11\n", "[#6,#7]1:[#6]:[#6,#7]:[#6](:[#6,#7]:[#6,#7]:1)-[#6]1:[#6]:[#7]:[#7]:[#7]:1\n", "Row: 1446 Displacement of [125I]AB-MECA from human recombinant adenosine A3 receptor expressed in CHO cells after 60 mins by liquid scintillation counting\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 38.1, mcs nAts: 26\n", "[#8]-[#6]1-[#6](-[#8])-[#6]2-[#6]-[#6]-2-[#6]-1-[#7]1:[#6]:[#7]:[#6]2:[#6]:1:[#7]:[#6]:[#7]:[#6]:2-[#7]-[#6]-[#6]1:[#6]:[#6]:[#6]:[#6](:[#6]:1)-[#53,#17,#35]\n", "Row: 1447 Displacement of [3H]Arg8-vasopressin from human vasopressin V1a receptor expressed in CHO-K1 cells by Packard Topcount scintillation counter\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 39.9, mcs nAts: 23\n", "[#8]=[#16](=[#8])(-[#6]1:[#6]:[#6]:[#6](:[#6]:[#6]:1)-[#17,#8])-[#7]1-[#6]2:[#6]:[#6]:[#6]:[#6]:[#6]:2-[#6]-[#6]-[#6]-1-[#6]-[#6,#7,#8,#16]-,=[#7,#6,#8,#16]\n", "Row: 1448 Displacement of [3H]Arg8-vasopressin from rat vasopressin V1b receptor expressed in CHO-K1 cells by Packard Topcount scintillation counter\n", " * postgresql://localhost/chembl_23\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Mean nAts 39.9, mcs nAts: 23\n", "[#8]=[#16](=[#8])(-[#6]1:[#6]:[#6]:[#6](:[#6]:[#6]:1)-[#17,#8])-[#7]1-[#6]2:[#6]:[#6]:[#6]:[#6]:[#6]:2-[#6]-[#6]-[#6]-1-[#6]-[#6,#7,#8,#16]-,=[#7,#6,#8,#16]\n", "Row: 1449 Inhibition of Drosophila melanogaster recombinant carbonic anhydrase-1 expressed in Escherichia coli BL21 (DE3) preincubated for 15 mins by CO2 hydration stopped-flow assay\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 13.1, mcs nAts: 4\n", "[#6,#7,#8,#16]-,=[#7,#6](-,=[#6,#8,#16])-[#6,#7,#16]\n", "Row: 1450 Inhibition of human CA12 pre-incubated for 15 mins by stopped-flow CO2 hydration method\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 12.9, mcs nAts: 4\n", "[#6,#7,#8,#16]-,=[#7,#6](-,=[#6,#8,#16])-[#6,#7,#16]\n", "Row: 1451 Displacement of [3H]Arg8-vasopressin from human vasopressin V1b receptor expressed in CHO-K1 cells by Packard Topcount scintillation counter\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 39.9, mcs nAts: 23\n", "[#8]=[#16](=[#8])(-[#6]1:[#6]:[#6]:[#6](:[#6]:[#6]:1)-[#17,#8])-[#7]1-[#6]2:[#6]:[#6]:[#6]:[#6]:[#6]:2-[#6]-[#6]-[#6]-1-[#6]-[#6,#7,#8,#16]-,=[#7,#6,#8,#16]\n", "Row: 1452 Displacement of [3H]LSD from human cloned 5HT6 receptor expressed in HeLa cells\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 23.8, mcs nAts: 16\n", "[#7]-[#6]-[#6]-[#7]1:[#6]:[#6](-[#16](=[#8])(=[#8])-[#6]):[#6]2:[#6]:1:[#7,#6]:[#6]:[#6]:[#6]:2\n", "Row: 1453 Inhibition of Drosophila melanogaster recombinant carbonic anhydrase-2 expressed in Escherichia coli BL21 (DE3) preincubated for 15 mins by CO2 hydration stopped-flow assay\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 13.1, mcs nAts: 4\n", "[#6,#7,#8,#16]-,=[#7,#6](-,=[#6,#8,#16])-[#6,#7,#16]\n", "Row: 1454 Displacement of dofetilide from human ERG\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 31.2, mcs nAts: 25\n", "[#6]1:[#6]:[#7](-[#6]-[#6]2:[#6]:[#6]:[#6]:[#6]:[#6]:2):[#6]2:[#6]:1:[#6](:[#7]:[#6]:[#7]:2)-[#8]-[#6]1-[#6]-[#6]-[#7](-[#6]-[#6]-1)-[#6]-[#6]\n", "Row: 1455 Inhibition of human carbonic anhydrase 1 preincubated for 6 hrs by CO2 hydration stopped-flow assay\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 22.3, mcs nAts: 12\n", "[#6,#8](:,-[#6](-,=[#8]):,-[#6]:,-[#6]):[#6]1:[#8,#6]:[#6](:[#6]:[#6]:[#6]:1)=,-[#8]\n", "Row: 1456 Inhibition of human carbonic anhydrase 2 preincubated for 6 hrs by CO2 hydration stopped-flow assay\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 22.3, mcs nAts: 12\n", "[#6,#8](:,-[#6](-,=[#8]):,-[#6]:,-[#6]):[#6]1:[#8,#6]:[#6](:[#6]:[#6]:[#6]:1)=,-[#8]\n", "Row: 1457 Inhibition of human carbonic anhydrase 7 preincubated for 6 hrs by CO2 hydration stopped-flow assay\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 22.3, mcs nAts: 12\n", "[#8,#6]-,=[#6]1:[#6,#8]:[#6](:,-[#8,#6]:,-[#6](=,-[#8,#6]):,-[#6]:,-,=[#6]):[#6,#8]:[#6]:[#6]:1\n", "Row: 1458 Displacement of [3H]DPCPX from human adenosine A2B receptor expressed in HEK293 cells\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 27.5, mcs nAts: 21\n", "[#6]-[#6]-[#7]1:[#6](=[#8]):[#6]2:[#7]:[#6](-[#6]-[#6]):[#7]:[#6]:2:[#7](:[#6]:1=[#8])-[#6]-[#6]1:[#6]:[#6]:[#6]:[#8]:1\n", "Row: 1459 Inhibition of human carbonic anhydrase 9 preincubated for 6 hrs by CO2 hydration stopped-flow assay\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 22.3, mcs nAts: 12\n", "[#8,#6]-,=[#6]1:[#6,#8]:[#6](:,-[#8,#6]:,-[#6](=,-[#8,#6]):,-[#6]:,-,=[#6]):[#6,#8]:[#6]:[#6]:1\n", "Row: 1460 Inhibition of human carbonic anhydrase 12 preincubated for 6 hrs by CO2 hydration stopped-flow assay\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 22.3, mcs nAts: 12\n", "[#6,#8](:,-[#6](-,=[#8]):,-[#6]:,-[#6]):[#6]1:[#8,#6]:[#6](:[#6]:[#6]:[#6]:1)=,-[#8]\n", "Row: 1461 Inhibition of human carbonic anhydrase 13 preincubated for 6 hrs by CO2 hydration stopped-flow assay\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 22.3, mcs nAts: 12\n", "[#6,#8]1:[#6]:[#6]:[#6](:[#6,#8]:[#6]:1-,=[#8]):,-[#8,#6]:,-[#6](:,-[#6]:,-,=[#6])=,-[#8,#6]\n", "Row: 1462 Inhibition of human CA9 pre-incubated for 15 mins by stopped-flow CO2 hydration method\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 12.9, mcs nAts: 4\n", "[#6,#7,#8,#16]-,=[#7,#6](-,=[#6,#8,#16])-[#6,#7,#16]\n", "Row: 1463 Displacement of [3H]DTBZ from VMAT2 in rat whole brain vesicles homogenate after 30 mins by liquid scintillation counting\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 25.8, mcs nAts: 16\n", "[#6]1:[#6]:[#6]:[#6](:[#6]:[#6]:1)-[#6]-[#6]-[#7,#6]1-[#6]-[#6]-[#6,#7](-[#6]-[#6]-1)-[#6]-[#6]\n", "Row: 1464 In vitro intrinsic binding affinity at platelet activating factor receptor using rabbit platelet membranes\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 34.3, mcs nAts: 17\n", "[#6,#7,#8]-[#7,#6]-[#6]-[#6,#8]-[#7,#6](-,:[#6]-,:[#6]-[#6,#8]-[#6](-[#8,#6]-,=[#6]:,-[#6]:,-[#6,#7]-[#6,#8])(-[#6])-[#6])-,:[#6]\n", "Row: 1465 Displacement of [3H]NECA from human recombinant adenosine A2A receptor expressed in Sf21 cells co-expressing GalphaS2, beta4, gamma2\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 41.2, mcs nAts: 22\n", "[#6,#8]-[#6]-[#6]#,-[#6,#7]-[#6]1:[#7]:[#6](-[#7]):[#6]2:[#6](:[#7]:1):[#7](:[#6]:[#7]:2)-[#6]1-[#6,#8]-[#6](-[#7,#6])-[#6](-[#6]-1-[#8])-[#8]\n", "Row: 1466 Inhibition of monoamine reuptake at norepinephrine transporter\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 24.0, mcs nAts: 22\n", "[#6,#7]-[#7,#6]-[#6]-[#6]-[#6]-[#6]1-[#6]-[#6]2:[#6]:[#6]:[#6]:[#6]:[#6]:2-[#7](-[#6]-1=[#8])-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1\n", "Row: 1467 Inhibition of [3H]nisoxetine reuptake at human NET expressed in HEK293 cells\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 23.2, mcs nAts: 21\n", "[#6]1:[#6]:[#6]:[#6]:[#6](:[#6]:1-[#17,#6,#8,#9])-[#8]-[#6](-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1)-[#6]1-[#6]-[#7]-[#6]-[#6]-[#8]-1\n", "Row: 1468 Displacement of [3H]dofetilide from human ERG\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 30.6, mcs nAts: 17\n", "[#8,#6]-[#6,#8]-[#6]-[#6]-[#6]-[#7]1-[#6]-[#6]-[#7](-[#6]-[#6]-1)-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1\n", "Row: 1469 Displacement of [3H]-8-OH-DPAT from human 5HT1A receptor expressed in HeLa cells\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 30.6, mcs nAts: 17\n", "[#6]1:[#6](-[#7]2-[#6]-[#6]-[#7](-[#6]-[#6]-2)-[#6]-[#6]-[#6]-[#8,#6]-[#6,#8]):[#6]:[#6]:[#6]:[#6]:1\n", "Row: 1470 Competitive binding affinity to Mcl-1 (unknown origin) using 5-FAM-Bid-BH3 peptide preincubated for 30 mins before 5-FAM-Bid-BH3 peptide addition and measured 20 mins after 5-FAM-Bid-BH3 peptide addition by fluorescence polarization assay\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 44.3, mcs nAts: 27\n", "[#6]-[#6](-[#6])(-[#6])-[#8]-[#6](=[#8])-[#7]1-[#6]-[#6](-[#8]-[#6]2:[#6]:[#6]:[#6](:[#6]:[#6]:2)-[#35,#6])-[#6]-[#6]-1-[#6](=[#8])-[#7]-[#6]-[#6](=,-[#8,#6,#7])-,=[#8,#6,#7]\n", "Row: 1471 Inhibition of PDE10A (unknown origin) by IMAP assay\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 27.2, mcs nAts: 15\n", "[#6]-[#6,#7]1:[#7]:[#6]:[#6](:[#16,#6]:1)-[#6]-[#7]-[#6]1:[#6,#7]:[#6](-[#17,#6,#7,#8]):[#7]:[#6]:[#7,#6]:1\n", "Row: 1472 Displacement of [3H]LSD from human 5HT6 receptor expressed in HEK293 cells\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 28.0, mcs nAts: 25\n", "[#8]=[#16](=[#8])(-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1)-[#7]1:[#6]:[#6]:[#6]2:[#6]:1:[#6]:[#6]:[#6](:[#6]:2)-[#6]-[#7]1-[#6]-[#6]-[#7]-[#6]-[#6]-1\n", "Row: 1473 Displacement of [3H]CP-55940 from CB2 receptor in DBA/J2 mouse spleen\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 29.0, mcs nAts: 17\n", "[#8]=[#6](-[#7]-[#6])-[#6]1:,-[#6]:,-[#7](-[#6]-[#6]):,-[#6]2:[#6](:,-[#6]:,-1=,-[#8]):[#6]:[#6]:[#6]:[#6,#7]:2\n", "Row: 1474 Inhibition of human DPP4 expressed in Caco-2 cells\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 20.6, mcs nAts: 11\n", "[#7,#6]-[#6]-[#6](=[#8])-[#7]1-[#6]-[#6]-[#6]-[#6]-1-[#6]#[#7]\n", "Row: 1475 Inhibition of dopamine D5 receptor (unknown origin) by PDSP assay\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 22.3, mcs nAts: 12\n", "[#7,#8]-[#6]1-[#6]2-[#6]3-[#6]-[#6]4-[#6]-1-[#6]1-[#6]-2-[#6]-[#6]-3-[#6]-1-4\n", "Row: 1476 Binding activity against human MCH-R1\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 38.6, mcs nAts: 15\n", "[#6]-[#7](-[#6]-[#7,#6])-[#6]1:[#7]:[#6]2:[#6]:[#6](-[#17,#9]):[#6](:[#6]:[#6]:2:[#7]:1)-[#17,#6,#9]\n", "Row: 1477 Inhibition of human carbonic anhydrase 2 using 4-nitrophenylacetate as substrate after 3 mins using spectrophotometry by Lineweaver-Burk plot analysis\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 16.8, mcs nAts: 6\n", "[#6]1:,-[#6]:,-[#6]:,-[#6]:,-[#6]:,-[#6]:,-1\n", "Row: 1478 Binding affinity to human OX1R by radioligand displacement binding assay\n", " * postgresql://localhost/chembl_23\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Mean nAts 29.9, mcs nAts: 21\n", "[#6]-[#8]-[#6]-[#6]1(-[#6]2:[#6]:[#6]:[#6]:[#6]:[#6]:2)-[#6]-[#6]-1-[#6](=[#8])-[#7]-[#6]1:[#6,#7]:[#6]:[#7,#6]:[#6,#7]:[#6,#7]:1\n", "Row: 1479 Binding affinity to human OX2R by radioligand displacement binding assay\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 29.9, mcs nAts: 21\n", "[#6]-[#8]-[#6]-[#6]1(-[#6]2:[#6]:[#6]:[#6]:[#6]:[#6]:2)-[#6]-[#6]-1-[#6](=[#8])-[#7]-[#6]1:[#6,#7]:[#6]:[#7,#6]:[#6,#7]:[#6,#7]:1\n", "Row: 1480 Binding affinity against cloned human 5-hydroxytryptamine 1D receptor\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 35.0, mcs nAts: 20\n", "[#6]-[#8]-[#6]1:[#6]:[#6]2:[#6](:[#6]:[#6]:1-[#7]1-[#6]-[#6]-[#7]-[#6]-[#6]-1)-[#7](-[#6](=[#8])-[#7,#6,#8])-[#6]-[#6]-2\n", "Row: 1481 Inhibition constant against human carbonic anhydrase XII\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 36.2, mcs nAts: 11\n", "[#7,#8,#9]-,=[#16,#6](=,-[#8,#9])(=,-[#8,#7,#9])-[#6]1:[#6]:[#6]:[#6](:[#6]:[#6]:1)-[#17,#6,#7,#16]\n", "Row: 1482 Displacement of [3H]-N-methyl scopolamine from human cloned muscarinic M3 receptor\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 49.4, mcs nAts: 20\n", "[#6]1:[#6]:[#6](-[#6](-[#8])-[#6]-[#7]-[#6]-[#6]-[#6]-[#6]-[#6]-[#6]-[#6]-[#6]-[#6,#7]):[#6]:[#6]:[#6]:1-[#8]\n", "Row: 1483 Displacement of NO711 from mouse GAT1 expressed in HEK293 cells by LC-MS/MS analysis\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 33.3, mcs nAts: 15\n", "[#7,#6]-[#6]-[#6,#7]-[#6](-[#7,#6])-[#6](=[#8])-[#7]-[#6]-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1\n", "Row: 1484 Inhibition of human carbonic anhydrase 4 using 4-nitrophenylacetate as substrate after 3 mins using spectrophotometry by Lineweaver-Burk plot analysis\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 16.8, mcs nAts: 6\n", "[#6]1:,-[#6]:,-[#6]:,-[#6]:,-[#6]:,-[#6]:,-1\n", "Row: 1485 Displacement of [3H]DPCPX from human adenosine A1 receptor expressed in CHO cell membranes after 1 hr by beta scintillation counting analysis\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 31.6, mcs nAts: 28\n", "[#7]#[#6]-[#6]1:[#6](-[#7]):[#7]:[#6](:[#7]:[#6]:1-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1)-[#16]-[#6]-[#6]1:[#6]:[#16,#8]:[#6](:[#7]:1)-[#6,#7]1:,-[#6]:,-[#6]:,-[#6,#8]:,-[#6]:,-[#6]:,-1\n", "Row: 1486 Binding affinity against cloned human 5-hydroxytryptamine 1B receptor\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 35.0, mcs nAts: 20\n", "[#6]-[#8]-[#6]1:[#6]:[#6]2:[#6](:[#6]:[#6]:1-[#7]1-[#6]-[#6]-[#7]-[#6]-[#6]-1)-[#7](-[#6](=[#8])-[#7,#6,#8])-[#6]-[#6]-2\n", "Row: 1487 Binding affinity to human CB1 receptor\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 25.0, mcs nAts: 17\n", "[#6]-[#16]-[#6](=[#16])-[#7]1-[#6]-[#6]-[#6]-[#16]-[#6]-1=[#7]-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1\n", "Row: 1488 Inhibition of human recombinant FPPS expressed in Escherichia coli BL21 after 10 mins\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 16.1, mcs nAts: 10\n", "[#6,#7]-[#6,#7]-[#6](-[#15,#6](-,=[#8,#6])-,=[#8])-[#15](=,-[#8,#6])(-,=[#8])-[#8]\n", "Row: 1489 Inhibition of PTP1B (unknown origin)-mediated pNPP hydrolysis to 4-nitrophenol after 60 mins by spectrophotometric analysis\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 37.6, mcs nAts: 26\n", "[#7,#8]-,=[#16](=[#8])(=,-[#8,#7])-[#6](-[#6]-[#6]1:[#6]:[#6]:[#6](:[#6]:[#6]:1)-[#7,#8]-[#6]-[#6](=[#8])-[#8])-[#6]1:[#7]:[#6]2:[#6]:[#6]:[#6]:[#6]:[#6]:2:[#8,#7]:1\n", "Row: 1490 Binding affinity against thrombin in human plasma\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 32.3, mcs nAts: 19\n", "[#6,#7]1:[#6]:[#6]:[#6]:[#6]:[#6]:1-[#6]-[#7]-[#6](=,-[#8])-[#6]-[#6,#7]1:[#6]:[#6]:[#6,#7]:[#6](:[#7,#6]:1-,=[#8])-[#7]\n", "Row: 1491 Binding affinity to MC4R by membrane filtration assay\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 33.8, mcs nAts: 23\n", "[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1-[#6]-[#6,#8]-[#6]1:[#6](-[#9,#17]):[#6]:[#6]:[#6]:[#6]:1-[#6](=[#8])-[#7]=,-[#6](-,=[#7])-,=[#7]-[#6]-[#6]\n", "Row: 1492 Displacement of [3H]U69,593 from human recombinant opioid kappa receptor expressed in CHO cell membranes after 2 hrs by liquid scintillation counting method\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 32.4, mcs nAts: 15\n", "[#6,#8]-[#7,#6]1-,:[#6]-,:[#6]-,:[#6](-,:[#6]-,:[#6]-,:1)-[#6,#8]:,-[#6]:,-[#6](:,-[#6]:,-[#6]:,-[#6,#7]-[#6])-[#8,#6]\n", "Row: 1493 Inhibition of MOCAc-Pro-Leu-Gly-Leu-A2p (Dnp)-Ala-Arg-NH2 binding to human matrix metalloprotease-9 (MMP-9)\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 28.9, mcs nAts: 15\n", "[#6]-[#8]-[#15](=,-[#8,#6])(-,=[#6,#8])-[#7]1-[#6]-[#6]:,-[#6,#7]-[#6]-[#6]-1-[#6](=[#8])-[#7]-[#8]\n", "Row: 1494 Displacement of [3H]histamine displacement from human histamine H4 receptor expressed in SK-NM-C cells after 60 mins\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 25.1, mcs nAts: 12\n", "[#7,#6]-[#6]1:[#7]:[#6]:[#6,#7]:[#6](:[#7,#6]:1)-[#7]-[#6]-[#6]-[#7]-[#6]\n", "Row: 1495 Displacement of 2-[125I]-Iodomelatonin from human MT1 receptor transfected in CHO cell membranes after 120 mins\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 20.9, mcs nAts: 15\n", "[#6,#7,#8]-,=[#6](=,-[#8,#6,#16])-[#7]-[#6]-[#6]1-,:[#6]-,:[#6]-,:[#6]2:[#6](-,:[#7]-,:1):[#6]:[#6]:[#6]:[#6]:2\n", "Row: 1496 Displacement of [125I]AB-MECA from human adenosine A3 receptor expressed in CHO cells\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 31.3, mcs nAts: 22\n", "[#6]-[#7]-[#6](=[#8])-[#6]1-[#16,#8]-[#6](-[#7]2:[#6]:[#7]:[#6]3:[#6]:2:[#7]:[#6]:[#7]:[#6]:3-[#7]-[#6])-[#6](-[#6]-1-[#8])-[#8]\n", "Row: 1497 Competitive binding affinity to Bcl-2 (unknown origin) preincubated for 30 mins followed by 5-FAM-Bid-BH3 peptide addition measured after 20 mins by fluorescence polarization assay\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 39.1, mcs nAts: 25\n", "[#8,#7]=,-[#6](-,=[#8,#7])-[#6](-[#6]-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1)-[#7]1-[#6](=[#8,#16])-[#7,#16]-[#6](-[#6]-1=[#8])-,=[#6]-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1\n", "Row: 1498 Inhibition of PIM1 (unknown origin)\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 25.5, mcs nAts: 16\n", "[#8,#6]=,-[#6](-[#7]-[#6]1:[#6]:[#6,#7]:[#6,#7]:[#6,#7]:[#6]:1-[#7]1-[#6]-[#6]-[#6,#7]-[#6]-[#6]-1)-,=[#6,#8]\n", "Row: 1499 Inhibition of human carbonic anhydrase 6 using 4-nitrophenylacetate as substrate after 3 mins using spectrophotometry by Lineweaver-Burk plot analysis\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 16.8, mcs nAts: 6\n", "[#6]1:,-[#6]:,-[#6]:,-[#6]:,-[#6]:,-[#6]:,-1\n", "Row: 1500 Displacement of [3H]spiperone from dopaminergic D2 receptor in rat striatum homogenates after 60 mins by liquid scintillation counting\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 34.0, mcs nAts: 20\n", "[#7,#6]-[#6,#8]-[#6]-[#6]-[#8,#6]-[#6,#7]1:,-[#6]:,-[#6]:,-[#6,#7](:,-[#6]:,-[#6]:,-1)-[#6]1:[#7]:[#6,#8,#16]:[#6](:[#8,#6,#7,#16]:1):[#6]:[#6]:[#6]:[#6]\n", "Row: 1501 Displacement of [3H]CP-55940 from human cloned CB2 receptor\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 22.1, mcs nAts: 17\n", "[#6]-[#6](-[#6])(-[#6])-[#6]1:[#6]:[#6]:[#6](:[#6]:[#6]:1)-[#6]1-[#6]-[#6]-[#6]-[#6](-[#6]-1)-[#8]\n", "Row: 1502 Inhibition of human recombinant alpha-carbonic anhydrase 1 after 15 mins by stopped flow CO2 hydration assay\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 17.6, mcs nAts: 7\n", "[#8,#6,#7,#16]-[#6]1:,-[#6,#8]:,-[#6]:,-[#6]:,-[#6]:,-[#6]:,-1\n", "Row: 1503 Displacement of [3H]8-OH-DPAT from 5-HT1A receptor in rat cerebral cortex homogenates after 60 mins by liquid scintillation counting\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 34.0, mcs nAts: 20\n", "[#7,#6]-[#6,#8]-[#6]-[#6]-[#8,#6]-[#6,#7]1:,-[#6]:,-[#6]:,-[#6,#7](:,-[#6]:,-[#6]:,-1)-[#6]1:[#7]:[#6,#8,#16]:[#6](:[#8,#6,#7,#16]:1):[#6]:[#6]:[#6]:[#6]\n", "Row: 1504 Displacement of [3H]CGS21680 from human adenosine A1 receptor\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 23.7, mcs nAts: 15\n", "[#7]-[#6]1:[#7]:[#6](-[#6,#7]-[#7,#6]-,=[#6,#8]):[#6]:[#6](:[#7]:1)-[#6]1:[#6]:[#6]:[#6]:[#8]:1\n", "Row: 1505 Inhibition of PKC delta (unknown origin) using ERMRPRKRQGSVRRRV as substrate after 15 mins by spectrophotometry in presence of ATP\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 26.3, mcs nAts: 21\n", "[#6]1:[#6]:[#6](-[#6]2:[#7]:[#7]:[#6]3:[#6]:2:[#6]:[#6]:[#6]:[#7]:3):[#7]:[#6](:[#6]:1)-[#7]1-[#6]-[#6]-[#7]-[#6]-[#6]-1\n", "Row: 1506 Binding affinity to Bacillus subtilis DNA polymerase3C\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 43.2, mcs nAts: 22\n", "[#6]-[#7]1:[#6]:[#6](-[#6](=[#8])-[#8]):[#6](:[#6]2:[#6]:1:[#6,#7]:[#6](:[#6](:[#6]:2)-[#9])-[#7]1-[#6]-[#6]-[#7,#6,#8]-[#6]-[#6]-1)=[#8]\n", "Row: 1507 Displacement of [3H]ketanserine from 5-HT2A receptor in rat cerebral cortex homogenates after 60 mins by liquid scintillation counting\n", " * postgresql://localhost/chembl_23\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Mean nAts 34.0, mcs nAts: 20\n", "[#7,#6]-[#6,#8]-[#6]-[#6]-[#8,#6]-[#6,#7]1:,-[#6]:,-[#6]:,-[#6,#7](:,-[#6]:,-[#6]:,-1)-[#6]1:[#7]:[#6,#8,#16]:[#6](:[#8,#6,#7,#16]:1):[#6]:[#6]:[#6]:[#6]\n", "Row: 1508 Displacement of [3H]DADLE from human recombinant opioid delta receptor expressed in CHO cell membranes after 2 hrs by liquid scintillation counting method\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 32.4, mcs nAts: 15\n", "[#6,#8]-[#7,#6]1-,:[#6]-,:[#6]-,:[#6](-,:[#6]-,:[#6]-,:1)-[#6,#8]:,-[#6]:,-[#6](:,-[#6]:,-[#6]:,-[#6,#7]-[#6])-[#8,#6]\n", "Row: 1509 Inhibition of human recombinant FPPS expressed in Escherichia coli BL21\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 16.1, mcs nAts: 10\n", "[#6,#7]-[#6,#7]-[#6](-[#15,#6](-,=[#8,#6])-,=[#8])-[#15](=,-[#8,#6])(-,=[#8])-[#8]\n", "Row: 1510 Displacement of [3H]-(+)-pentazocine from sigma 1 receptor in guinea pig brain membranes incubated for 120 mins by scintillation counting method in the presence of pentazocine\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 21.2, mcs nAts: 12\n", "[#6]1-,:[#6]-,:[#8,#6]-,:[#6,#8]-,:[#6](-,:[#8,#6]-,:1)-[#6]1:,-[#6]:,-[#6,#8]:,-[#6]:,-[#6]:,-[#6,#8]:,-1\n", "Row: 1511 Displacement of [3H]-LSD from 5HT7 receptor (unknown origin) expressed in CHOK1 cells\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 27.0, mcs nAts: 25\n", "[#6]1:[#6]:[#6]:[#6](:[#6]:[#6]:1)-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1-[#6]-[#7]1-[#6]-[#6]-[#7](-[#6]-[#6]-1)-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1\n", "Row: 1512 Displacement of [3H]CP-55940 from CB1 receptor in Sprague-Dawley rat brain membrane\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 22.1, mcs nAts: 17\n", "[#6]-[#6](-[#6])(-[#6])-[#6]1:[#6]:[#6]:[#6](:[#6]:[#6]:1)-[#6]1-[#6]-[#6]-[#6]-[#6](-[#6]-1)-[#8]\n", "Row: 1513 Inhibition of [125I]-NDP MSH binding to human Melanocortin 4 receptor\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 21.9, mcs nAts: 13\n", "[#6,#8]-,=[#6,#16]-[#7]-[#6]-[#6](-,=[#6,#8])-[#7]1-[#6]-[#6]-[#7](-[#6]-[#6]-1)-[#6]\n", "Row: 1514 Displacement of FITC-Bak-BH3 peptide from Mcl-1 (unknown origin) incubated for 1.5 hrs by FPA competition assay\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 25.4, mcs nAts: 12\n", "[#8]=[#6](-[#8])-[#6]1:[#6,#7]:[#6]2:[#6]:[#6]:[#6]:[#6]:[#6]:2:[#7,#6]:1\n", "Row: 1515 Displacement of [3H]GR-113808 from 5HT4 receptor in guinea pig striatum membrane\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 22.9, mcs nAts: 15\n", "[#6]-[#6]-[#8]-[#6]1:[#7]:[#6]2:[#6,#16]:[#6]:[#16,#6]:[#6]:2:[#7]2:[#6]:1:[#6]:[#6]:[#6]:2\n", "Row: 1516 Displacement of [125I]AB-MECA from human A3 adenosine receptor expressed in CHO cells after 60 mins by scintillation counting analysis\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 27.3, mcs nAts: 18\n", "[#6]-[#7,#6]-[#6]1:[#7]:[#6](-,=[#6,#8]):[#7,#6]:[#6](:[#6,#7]:1):[#6]:[#7](-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1):[#7]\n", "Row: 1517 Displacement of [3H]8-OH-DPAT from human 5HT1A receptor in HEK293 cells\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 30.9, mcs nAts: 14\n", "[#6]1:[#6]:[#6]:[#6,#7]:[#6](:[#6,#7]:1)-[#7]1-[#6]-[#6]-[#7](-[#6]-[#6]-1)-[#6]-[#6]\n", "Row: 1518 Binding affinity to rat SERT\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 27.8, mcs nAts: 19\n", "[#6]-[#6]-[#8]-[#6]1:[#6]:[#6]2:[#6](:[#6]:[#7]:1)-[#6](-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1)-[#6]-[#7]-[#6]-2\n", "Row: 1519 Displacement of [3H]DPDPE from human delta opioid receptor expressed in mouse HN9.10 cell membranes\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 73.3, mcs nAts: 14\n", "[#8,#6,#7]=,-[#6,#7,#8]-[#7,#6]-[#6,#7]-[#6,#7]-[#6](=,-[#8,#6,#7])-[#7,#6]-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1\n", "Row: 1520 Binding affinity to human FKBP51 by competitive fluorescence polarization assay\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 37.0, mcs nAts: 9\n", "[#8,#6]=,-[#6]1-,:[#7,#6]-,:[#6]-,:[#6]-,:[#7,#6](-,:[#6]-,:1)-[#16,#6,#8]=,-[#8,#6]\n", "Row: 1521 Displacement of [3H]U-69,593 from kappa opioid receptor in guinea pig cerebellum\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 40.1, mcs nAts: 29\n", "[#6](-[#7,#6]-,=[#6,#8])-[#6]1-[#7,#8]-[#6]23-[#6]-[#6]-[#6]-1(-[#8])-[#6]1-[#8]-[#6]4:[#6]5-[#6]-2-1-[#6]-[#6]-[#7](-[#6]-3-[#6]-[#6]:5:[#6]:[#6]:[#6]:4-[#8])-[#6]-[#6]1-[#6]-[#6]-1\n", "Row: 1522 Displacement of [3H]dofetilide from human ERG expressed in CHO cells by patch clamp method\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 38.9, mcs nAts: 25\n", "[#6]-[#6]1-[#6]-[#7](-[#6](=[#8])-[#6]2-[#6]-[#7]-[#6]-[#6]-2-[#6]2:[#6]:[#6]:[#6](:[#6]:[#6]:2-[#9])-[#9])-[#6]-[#6](-[#6]-1(-[#8,#6])-[#6,#8])-[#6]\n", "Row: 1523 Displacement of [3H] melanocortin-2 from human recombinant MC4 receptor expressed in CHO cells by scintillation counting\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 38.9, mcs nAts: 25\n", "[#6]-[#6]1-[#6]-[#7](-[#6](=[#8])-[#6]2-[#6]-[#7]-[#6]-[#6]-2-[#6]2:[#6]:[#6]:[#6](:[#6]:[#6]:2-[#9])-[#9])-[#6]-[#6](-[#6]-1(-[#8,#6])-[#6,#8])-[#6]\n", "Row: 1524 Binding affinity against 5-hydroxytryptamine 4 receptor in guinea pig striatum using [3H]GR-113808 as radioligand\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 26.8, mcs nAts: 16\n", "[#6,#7]-[#6]-[#7]-[#6](=[#8])-[#7]1:[#6](=[#8]):[#7](-[#6]):[#6]2:[#6]:1:[#6]:[#6]:[#6]:[#6]:2\n", "Row: 1525 Inhibition of DPP9 (unknown origin)\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 27.3, mcs nAts: 22\n", "[#6]-[#6]1:[#7]:[#6]2:[#6](:[#6](:[#6]:1-[#6]-[#7])-[#6]1:[#6]:[#6]:[#6](:[#6]:[#6]:1-[#17])-[#17])-[#6](=[#8])-[#7](-[#6]-2)-[#6]\n", "Row: 1526 Displacement of [3H]Dofetilide from human ERG\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 22.5, mcs nAts: 16\n", "[#6]-[#7]-[#6]-[#6]-[#6]1:[#16]:[#6]2:[#6]:[#6]:[#6]:[#6]:[#6]:2:[#6]:1-[#6](-[#6])-[#6,#7]\n", "Row: 1527 Displacement of [3H]DPDPE from delta opioid receptor in mouse whole brain devoid of cerebellum\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 40.1, mcs nAts: 29\n", "[#6](-[#7,#6]-,=[#6,#8])-[#6]1-[#7,#8]-[#6]23-[#6]-[#6]-[#6]-1(-[#8])-[#6]1-[#8]-[#6]4:[#6]5-[#6]-2-1-[#6]-[#6]-[#7](-[#6]-3-[#6]-[#6]:5:[#6]:[#6]:[#6]:4-[#8])-[#6]-[#6]1-[#6]-[#6]-1\n", "Row: 1528 Displacement of [3H]DAMGO from mu opioid receptor in mouse whole brain devoid of cerebellum\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 40.1, mcs nAts: 29\n", "[#6](-[#7,#6]-,=[#6,#8])-[#6]1-[#7,#8]-[#6]23-[#6]-[#6]-[#6]-1(-[#8])-[#6]1-[#8]-[#6]4:[#6]5-[#6]-2-1-[#6]-[#6]-[#7](-[#6]-3-[#6]-[#6]:5:[#6]:[#6]:[#6]:4-[#8])-[#6]-[#6]1-[#6]-[#6]-1\n", "Row: 1529 Displacement of [125I]AB-MECA from human cloned adenosine A3 receptor expressed in CHO cells\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 26.9, mcs nAts: 21\n", "[#8,#7]=,-[#6]1:[#7]:[#6]2:[#7,#6]:[#6]:[#6]:[#6]:[#6]:2:[#7]2:[#6]:1:[#7]:[#7](:[#6]:2=[#8])-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1\n", "Row: 1530 Displacement of [3H]diprenorphine from human cloned delta opioid receptor\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 35.8, mcs nAts: 25\n", "[#6]-[#6]1-[#6]-[#7](-[#6]-[#6]-[#6](=[#8])-[#7]-[#6](-[#6])-[#6](=[#8])-[#8])-[#6]-[#6]-[#6]-1(-[#6])-[#6]1:[#6]:[#6]:[#6]:[#6](:[#6]:1)-[#8]\n", "Row: 1531 Displacement of [3H]SCH23390 from human dopamine D1 receptor by PDSP assay\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 24.5, mcs nAts: 15\n", "[#6]1:[#6]:[#6,#7]:[#6](:[#6,#7]:[#6]:1)-[#7,#6]1-[#6]-[#6]-[#7](-[#6]-[#6]-1)-[#6]-[#6]-[#6]\n", "Row: 1532 Displacement of dofetilide from human ERG\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 22.7, mcs nAts: 16\n", "[#6]-[#7](-[#6])-[#6]-[#6]-[#6]1=[#6](-[#6]-[#6])-[#6]2:[#6]:[#6]:[#6]:[#6]:[#6]:2-[#6]-1\n", "Row: 1533 Inhibition of Akt1 in presence of 10 uM ATP\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 29.0, mcs nAts: 17\n", "[#6]1:[#6]:[#6]:[#6](:[#6]:[#6]:1)-[#6]1:[#6]:[#7]:[#6]:[#6](:[#6]:1)-[#8,#7,#16]-[#6]-[#6](-[#7,#6])-[#6,#7]\n", "Row: 1534 Inhibition of human DPP4 assessed as Gly-Pro-pNA cleavage preincubated for 40 mins followed by substrate addition\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 27.3, mcs nAts: 22\n", "[#6]-[#6]1:[#7]:[#6]2:[#6](:[#6](:[#6]:1-[#6]-[#7])-[#6]1:[#6]:[#6]:[#6](:[#6]:[#6]:1-[#17])-[#17])-[#6](=[#8])-[#7](-[#6]-2)-[#6]\n", "Row: 1535 Displacement of [125I]ABN from human dopamine D3 receptor expressed in HEK293 cells after 60 mins by gamma counting analysis\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 31.1, mcs nAts: 9\n", "[#6]-[#8]-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1-[#7,#6,#8]\n", "Row: 1536 Displacement of [3H]CCK8 from rat pancreas CCK1 receptor at by liquid scintillation counting\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 39.0, mcs nAts: 28\n", "[#6,#7]-[#6]-[#6]-[#7]1-[#6](=[#8])-[#6](-[#7]-[#6](=[#8])-[#7]-[#6]2:[#6]:[#6]:[#6]:[#6]:[#6]:2)-[#6](=[#8])-[#7](-[#6]2:[#6]-1:[#6]:[#6]:[#6]:[#6]:2)-[#6]-[#6]\n", "Row: 1537 Displacement of [125I]ABN from human dopamine D2L receptor expressed in HEK293 cells after 60 mins by gamma counting analysis\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 31.1, mcs nAts: 9\n", "[#6]-[#8]-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1-[#7,#6,#8]\n", "Row: 1538 Inhibition of DPP8 (unknown origin)\n", " * postgresql://localhost/chembl_23\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Mean nAts 27.3, mcs nAts: 22\n", "[#6]-[#6]1:[#7]:[#6]2:[#6](:[#6](:[#6]:1-[#6]-[#7])-[#6]1:[#6]:[#6]:[#6](:[#6]:[#6]:1-[#17])-[#17])-[#6](=[#8])-[#7](-[#6]-2)-[#6]\n", "Row: 1539 Inhibition of Nicotiana tabacum (tobacco) recombinant PPO assessed as protoporphyrinogen IX formation at room temperature by fluorimetric assay\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 25.3, mcs nAts: 22\n", "[#6]-[#16]-[#6]1:[#7]:[#6]2:[#6]:[#6](-[#7]3:[#7]:[#6](-[#6]):[#7](:[#6]:3=[#8])-[#6](-[#9])-[#9]):[#6](:[#6]:[#6]:2:[#16]:1)-[#17,#9,#35]\n", "Row: 1540 Displacement of [3H]DPCPX from human adenosine A1 receptor expressed in CHO cells\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 28.6, mcs nAts: 11\n", "[#6]-[#7,#6]1:[#6,#7]:[#6]2:[#6](-,=[#7,#8]):[#7]:[#6]:[#7]:[#6]:2:[#7]:1\n", "Row: 1541 Displacement of [3H]NECA from human adenosine A2A receptor expressed in CHO cells\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 28.6, mcs nAts: 11\n", "[#6]-[#7,#6]1:[#6,#7]:[#6]2:[#6](-,=[#7,#8]):[#7]:[#6]:[#7]:[#6]:2:[#7]:1\n", "Row: 1542 Displacement of [125I]AB-MECA from human adenosine A3 receptor expressed in CHO cells\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 28.6, mcs nAts: 11\n", "[#6]-[#7,#6]1:[#6,#7]:[#6]2:[#6](-,=[#7,#8]):[#7]:[#6]:[#7]:[#6]:2:[#7]:1\n", "Row: 1543 Displacement of [3H]8-OH-DPAT from human recombinant 5-HT1A receptor expressed in HeLa cells after 30 mins by liquid scintillation counting\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 31.5, mcs nAts: 25\n", "[#6]-[#8]-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1-[#7]1-[#6]-[#6]-[#7](-[#6]-[#6]-1)-[#6]-[#6]1-[#6]-[#8]-[#6]2(-[#8]-1)-[#6]-[#6]-[#6,#7,#8,#16]-[#6]-[#6]-2\n", "Row: 1544 Displacement of [3H]prazosin from human recombinant alpha1D adrenoceptor expressed in CHO cells after 30 mins by liquid scintillation counting\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 31.5, mcs nAts: 25\n", "[#6]-[#8]-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1-[#7]1-[#6]-[#6]-[#7](-[#6]-[#6]-1)-[#6]-[#6]1-[#6]-[#8]-[#6]2(-[#8]-1)-[#6]-[#6]-[#6,#7,#8,#16]-[#6]-[#6]-2\n", "Row: 1545 Displacement of [125I]hCGRP from human CGRP receptor expressed in HEK293 cells coexpressing RAMP1\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 37.2, mcs nAts: 11\n", "[#6]-[#7]1:,-[#6](=[#8]):,-[#7,#6]:,-[#6]2:[#6]:,-1:[#6]:[#6]:[#6]:[#6,#7]:2\n", "Row: 1546 Displacement of [125I] PIC from I1 imidazoline receptor in rat PC12 cells after 45 mins by gamma counting\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 16.2, mcs nAts: 7\n", "[#6,#7,#8,#17]-[#6]1:[#6,#7]:[#6]:[#6,#7]:[#6]:[#6]:1\n", "Row: 1547 Displacement of [3H]prazosin from human recombinant alpha1B adrenoceptor expressed in CHO cells after 30 mins by liquid scintillation counting\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 31.5, mcs nAts: 25\n", "[#6]-[#8]-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1-[#7]1-[#6]-[#6]-[#7](-[#6]-[#6]-1)-[#6]-[#6]1-[#6]-[#8]-[#6]2(-[#8]-1)-[#6]-[#6]-[#6,#7,#8,#16]-[#6]-[#6]-2\n", "Row: 1548 Inhibition of human B tryptase\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 39.9, mcs nAts: 35\n", "[#8,#6,#7]-,=[#6](=,-[#8,#6,#7])-[#7]-[#6](-[#6]-[#6]-[#6]-[#6]-[#7])-[#6](=[#8])-[#6]1:[#7]:[#8]:[#6](:[#7]:1)-[#6]-[#6]1:[#6]:[#6]:[#6](:[#6]:[#6]:1)-[#8]-[#6]-[#6]-[#6]1:[#6]:[#6]:[#6](:[#6](:[#6]:1)-[#17])-[#17]\n", "Row: 1549 Displacement of N-[3H]alpha-methylhistamine from human histamine H3 receptor expressed in SK-N-MC cells\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 27.8, mcs nAts: 19\n", "[#6]-[#6]-[#8]-[#6]1:[#6]:[#6]2:[#6](:[#6]:[#7]:1)-[#6](-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1)-[#6]-[#7]-[#6]-2\n", "Row: 1550 Inhibition of human recombinant carboxypeptidase B expressed in Pichia pastoris system\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 26.0, mcs nAts: 8\n", "[#6,#7,#8]-,=[#6,#8,#16]-[#6,#7]1:,-[#6,#7]:,-[#6]:,-[#6,#7]:,-[#6,#7]:,-[#6,#7]:,-1\n", "Row: 1551 Binding affinity against bovine trypsin\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 40.8, mcs nAts: 22\n", "[#16,#6,#15]-[#7]-[#6](-[#6]-[#6]1-,:[#6]-,:[#6]-,:[#6]-,:[#6]-,:[#6]-,:1)-[#6](=[#8])-[#7]1-[#6]-[#6]-[#6]-[#6]-1-[#6](=[#8])-[#7]-[#6]-[#6]\n", "Row: 1552 Inhibitory activity against recombinant seprase\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 26.4, mcs nAts: 18\n", "[#7,#6]-[#6]-[#16]-[#6](-[#6])(-[#6])-[#6](-[#7])-[#6](=[#8])-[#7]1-[#6]-[#6](-[#9])-[#6]-[#6]-1-[#6]#[#7]\n", "Row: 1553 Displacement of [3H]diprenorphine from human cloned mu opioid receptor\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 35.8, mcs nAts: 25\n", "[#6]-[#6]1-[#6]-[#7](-[#6]-[#6]-[#6](=[#8])-[#7]-[#6](-[#6])-[#6](=[#8])-[#8])-[#6]-[#6]-[#6]-1(-[#6])-[#6]1:[#6]:[#6]:[#6]:[#6](:[#6]:1)-[#8]\n", "Row: 1554 Inhibition of human recombinant TACE\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 35.7, mcs nAts: 30\n", "[#6,#7]-[#6]1:[#6]:[#6](-[#6]-[#8]-[#6]2:[#6]:[#6]:[#6](:[#6]:[#6]:2)-[#6]-[#6]2(-[#6](-,=[#7,#8])=,-[#8,#7])-[#6]-[#6]-2-[#6](=[#8])-[#7]-[#8]):[#6]2:[#6](:[#7]:1):[#6]:[#6]:[#6]:[#6]:2\n", "Row: 1555 Inhibitory activity against recombinant DPP2\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 26.4, mcs nAts: 18\n", "[#7,#6]-[#6]-[#16]-[#6](-[#6])(-[#6])-[#6](-[#7])-[#6](=[#8])-[#7]1-[#6]-[#6](-[#9])-[#6]-[#6]-1-[#6]#[#7]\n", "Row: 1556 Displacement of [3H]DPCPX form adenosine A1 receptor in rat cortex membrane\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 27.8, mcs nAts: 21\n", "[#6]-[#6]-[#7]1:[#6](=[#8]):[#6]2:[#7]:[#6](-[#6]-[#6]):[#7]:[#6]:2:[#7](:[#6]:1=[#8])-[#6]-[#6]1:[#6]:[#6]:[#6]:[#8]:1\n", "Row: 1557 Displacement of [125I]3,5,3'-triiodo-L-thyronine His-tagged human recombinant TRbeta1 by scintillation proximity assay\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 24.7, mcs nAts: 20\n", "[#8,#6,#7,#15]=,-[#15,#6]-[#6,#7,#8,#16]-[#6]1:[#6]:[#6](-[#53,#6,#8,#17,#35]):[#6](:[#6](:[#6]:1)-[#53,#6,#8,#17,#35])-[#8,#6]-[#6]1:[#6]:[#6]:[#6](:[#6](:[#6]:1)-[#53,#6])-[#8]\n", "Row: 1558 Displacement of [125I]3,5,3'-triiodo-L-thyronine from His-tagged human recombinant TRalpha1 by scintillation proximity assay\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 24.7, mcs nAts: 20\n", "[#8,#6,#7,#15]=,-[#15,#6]-[#6,#7,#8,#16]-[#6]1:[#6]:[#6](-[#53,#6,#8,#17,#35]):[#6](:[#6](:[#6]:1)-[#53,#6,#8,#17,#35])-[#8,#6]-[#6]1:[#6]:[#6]:[#6](:[#6](:[#6]:1)-[#53,#6])-[#8]\n", "Row: 1559 Displacement of [3H]CP-55,940 from recombinant human CB1 receptor transfected in HEK cells\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 28.7, mcs nAts: 19\n", "[#6,#7]-[#7]-[#6](=[#8])-[#6]1:[#7]:[#7](-[#6]2:[#6]:[#6]:[#6](:[#6]:[#6]:2-[#17,#9])-[#17,#9]):[#6](:[#6]:1-[#6])-[#7,#6]\n", "Row: 1560 BindingDB_Patents: Binding Assay. Binding assay of opioid receptor.\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 36.3, mcs nAts: 29\n", "[#6]-[#7]-[#6](=[#8])-[#6]1-[#6]-[#6]2(-[#8])-[#6]3-[#6]-[#6]4:[#6]5-[#6]-2(-[#6](-[#6]-,=1=,-[#8,#7])-[#8]-[#6]:5:[#6](:[#6]:[#6]:4)-[#8])-[#6]-[#6]-[#7]-3-[#6]-[#6]1-[#6]-[#6]-1\n", "Row: 1561 Displacement of [3H]AVP from human V1A receptor expressed in CHO cells\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 30.9, mcs nAts: 24\n", "[#6]-[#7]-[#6](=[#8])-[#6](-[#6]-[#6]1:[#6]:[#6]:[#6](:[#6]:[#6]:1)-[#17,#8,#9])-[#7]-[#6](=[#8])-[#6]-[#6]1:[#6]:[#6]:[#6](:[#6]:[#6]:1)-[#17,#9]\n", "Row: 1562 Displacement of [3H]progesterone from human Progesterone receptor A\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 27.0, mcs nAts: 25\n", "[#6]=[#6]-[#6]-[#6]1-[#8]-[#6]2:[#6]:[#6]:[#6]:[#6](:[#6]:2-[#6]2:[#6]-1:[#6]1:[#6](:[#6]:[#6]:2)-[#7]-[#6](-[#6]=[#6]-1-[#6])(-[#6])-[#6])-[#17,#6,#7,#8,#16]\n", "Row: 1563 Displacement of [3H]CP-55,940 from recombinant human CB2 receptor transfected in HEK cells\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 28.7, mcs nAts: 19\n", "[#6,#7]-[#7]-[#6](=[#8])-[#6]1:[#7]:[#7](-[#6]2:[#6]:[#6]:[#6](:[#6]:[#6]:2-[#17,#9])-[#17,#9]):[#6](:[#6]:1-[#6])-[#7,#6]\n", "Row: 1564 Inhibition of human recombinant cytosolic carbonic anhydrase 1 preincubated for 15 mins by CO2 hydration method\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 25.1, mcs nAts: 11\n", "[#7,#8]-,=[#16](=[#8])(=,-[#8,#7])-[#6]1:[#6]:[#6]:[#6](:[#6]:[#6]:1)-[#17,#6,#7]\n", "Row: 1565 Binding affinity to recombinant human c-Src using KVEKIGEGTYGVVYK as substrate\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 27.8, mcs nAts: 20\n", "[#17]-[#6](-[#6]-[#7]1:[#7]:[#6]:[#6]2:[#6]:1:[#7]:[#6]:[#7]:[#6]:2-[#7]-[#6])-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1\n", "Row: 1566 Displacement of [125I]angiotensin 2 from AT2 receptor in pig uterus membrane after 1.5 hrs by gamma counting\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 34.1, mcs nAts: 28\n", "[#6]-[#6]-[#6]-[#6]-[#8]-[#6](=[#8])-[#7]-[#16](=[#8])(=[#8])-[#6]1:[#16]:[#6](-[#6]-[#6](-[#6])-[#6]):[#6]:[#6]:1-[#6]1:[#6]:[#6]:[#6](:[#6]:[#6]:1)-[#6]-,=[#7,#6,#8]\n", "Row: 1567 Displacement of [3H]-CP55940 from human CB2 receptor transfected in HEK-293EBNA cells after 90 mins by luminescence counting analysis\n", " * postgresql://localhost/chembl_23\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Mean nAts 29.2, mcs nAts: 14\n", "[#6,#7]-[#6]-[#8,#6]-[#6,#7]1:[#7]:[#7,#6](-[#6,#8]-[#6]):[#6]2:[#6]:1:[#6]:[#6]:[#6]:[#6]:2\n", "Row: 1568 Displacement of [3H]Spiperone from human dopamine D2L receptor expressed in CHO cells\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 31.3, mcs nAts: 28\n", "[#8]=[#6]1-,:[#6]-,:[#6]-,:[#6]2:[#6](-,:[#7]-,:1):[#7,#6]:[#6](:[#6,#7]:[#6]:2)-[#8,#6]-[#6]-[#6]-[#6]-[#6]-[#7]1-[#6]-[#6]-[#7](-[#6]-[#6]-1)-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1\n", "Row: 1569 Binding affinity to human 5HT2A receptor\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 31.3, mcs nAts: 28\n", "[#8]=[#6]1-,:[#6]-,:[#6]-,:[#6]2:[#6](-,:[#7]-,:1):[#7,#6]:[#6](:[#6,#7]:[#6]:2)-[#8,#6]-[#6]-[#6]-[#6]-[#6]-[#7]1-[#6]-[#6]-[#7](-[#6]-[#6]-1)-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1\n", "Row: 1570 Displacement of [3H]-8-OH-DPAT from human 5HT1A receptor expressed in HeLa cells\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 31.3, mcs nAts: 28\n", "[#8]=[#6]1-,:[#6]-,:[#6]-,:[#6]2:[#6](-,:[#7]-,:1):[#7,#6]:[#6](:[#6,#7]:[#6]:2)-[#8,#6]-[#6]-[#6]-[#6]-[#6]-[#7]1-[#6]-[#6]-[#7](-[#6]-[#6]-1)-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1\n", "Row: 1571 Binding affinity to human CXCR3 receptor expressed in CHO membrane by ITAC-stimulated GTP gammaS assay\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 30.4, mcs nAts: 17\n", "[#6]-[#6]1(-[#6])-[#6]2-[#6]-[#6]=[#6](-[#6]-1-[#6]-2)-[#6]-[#7]1-[#6]-[#6]-[#6](-[#6]-[#6]-1)-[#7]\n", "Row: 1572 Binding affinity to recombinant wild type human Abl using abitide as substrate\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 27.8, mcs nAts: 20\n", "[#17]-[#6](-[#6]-[#7]1:[#7]:[#6]:[#6]2:[#6]:1:[#7]:[#6]:[#7]:[#6]:2-[#7]-[#6])-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1\n", "Row: 1573 Inhibition of [125I]-NDP MSH binding towards human melanocortin 4 receptor\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 43.1, mcs nAts: 36\n", "[#8]=[#6](-[#7]-[#6](-[#6]-[#6]1:[#6]:[#6]:[#6](:[#6]:[#6]:1)-[#17])-[#6](=[#8])-[#7]1-[#6]-[#6]-[#7](-[#6]-[#6]-1)-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1)-[#6]1-[#6]-[#6]2:[#6]:[#6]:[#6]:[#6]:[#6]:2-[#6]-[#7]-1\n", "Row: 1574 Displacement of [3H]paroxetine from 5-HT transporter in Sprague-Dawley rat cortical membranes\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 30.3, mcs nAts: 17\n", "[#6,#7]-[#8,#6]-[#6]1:[#6]:[#6]:[#6]:[#6]2:[#6]:1-[#6]-[#6](-[#7](-[#6])-[#6]-[#6]-[#6])-[#6]-[#8]-2\n", "Row: 1575 Displacement of [3H]ZM-241385 from human adenosine A2A receptor expressed in HEK293 cells\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 25.7, mcs nAts: 19\n", "[#7]-[#6]1:[#7,#6]:[#6](-[#6]2:[#6]:[#6]:[#6]:[#6]:[#6]:2):[#6,#7]:[#6](:[#7,#6]:1)-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1\n", "Row: 1576 Displacement of [3H]-8-OH-DPAT from human 5HT1A receptor expressed in CHO cells\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 30.7, mcs nAts: 17\n", "[#6,#7]-[#8,#6]-[#6]1:[#6]:[#6]:[#6]:[#6]2:[#6]:1-[#6]-[#6](-[#7](-[#6])-[#6]-[#6]-[#6])-[#6]-[#8]-2\n", "Row: 1577 Inhibition of full-length recombinant PKC theta (unknown origin) using ERMRPRKRQGSVRRRV as substrate after 60 mins by scintillation counting analysis in presence of [gamma-33P]ATP\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 26.3, mcs nAts: 21\n", "[#6]1:[#6]:[#6](-[#6]2:[#7]:[#7]:[#6]3:[#6]:2:[#6]:[#6]:[#6]:[#7]:3):[#7]:[#6](:[#6]:1)-[#7]1-[#6]-[#6]-[#7]-[#6]-[#6]-1\n", "Row: 1578 Displacement of [3H]-PGE2 from mouse EP2 receptor expressed in CHO cells after 60 mins by liquid scintillation counter\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 28.4, mcs nAts: 26\n", "[#8]=[#6](-[#8])-[#6]-[#6]-[#6]-[#16,#6]-[#6]-[#6]-[#7,#6]1-[#6](=[#8,#16])-[#8,#6,#16]-[#6]-[#6]-1-[#6]=[#6]-[#6](-[#8])-[#6]-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1\n", "Row: 1579 Binding affinity to MCHR1\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 38.6, mcs nAts: 34\n", "[#6]-[#7]1-[#6]-[#6]-[#7](-[#6]-[#6]-1)-[#6]-[#6]-[#6]-[#7](-[#6](=[#8])-[#7]-[#6]1:[#6]:[#6]:[#6](:[#6](:[#6]:1)-[#17,#6])-[#9])-[#6]1-[#6]-[#6]-[#6]2(-[#6]-1-[#6]-2)-[#6]1:[#6]:[#6]:[#6]:[#6,#7]:[#6]:1\n", "Row: 1580 Displacement of [3H]-8-OH-DPAT from human 5-HT7 receptor expressed in CHOK1 cells after 30 mins by liquid scintillation counting analysis\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 28.0, mcs nAts: 11\n", "[#6]-[#6]-[#6]-[#7,#6]-[#6,#7](-[#6]-[#6])-[#6]-[#6]:,-[#6,#7]-[#8,#6]\n", "Row: 1581 Displacement of [3H]-PGE2 from mouse EP1 receptor expressed in CHO cells after 20 mins by liquid scintillation counter\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 28.4, mcs nAts: 26\n", "[#8]=[#6](-[#8])-[#6]-[#6]-[#6]-[#16,#6]-[#6]-[#6]-[#7,#6]1-[#6](=[#8,#16])-[#8,#6,#16]-[#6]-[#6]-1-[#6]=[#6]-[#6](-[#8])-[#6]-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1\n", "Row: 1582 Displacement of [3H]-PGE2 from mouse EP3 receptor expressed in CHO cells after 60 mins by liquid scintillation counter\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 28.4, mcs nAts: 26\n", "[#8]=[#6](-[#8])-[#6]-[#6]-[#6]-[#16,#6]-[#6]-[#6]-[#7,#6]1-[#6](=[#8,#16])-[#8,#6,#16]-[#6]-[#6]-1-[#6]=[#6]-[#6](-[#8])-[#6]-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1\n", "Row: 1583 Inhibition of monoamine reuptake at dopamine transporter\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 24.0, mcs nAts: 22\n", "[#6,#7]-[#7,#6]-[#6]-[#6]-[#6]-[#6]1-[#6]-[#6]2:[#6]:[#6]:[#6]:[#6]:[#6]:2-[#7](-[#6]-1=[#8])-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1\n", "Row: 1584 Binding affinity to human PNMT expressed in Escherichia coli by radiochemical assay\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 18.3, mcs nAts: 14\n", "[#7,#6,#8]-,=[#16](=[#8])(=,-[#8,#6,#7])-[#6]1:[#6]:[#6]:[#6]2:[#6](:[#6]:1)-[#6]-[#7]-[#6]-[#6]-2\n", "Row: 1585 Displacement of (-)-[3H]vesamicol from human VAChT expressed in rat PC12 A123.7 cells after 20 hrs\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 29.4, mcs nAts: 15\n", "[#8,#7]-[#6]1-[#6]-[#6]-[#7](-[#6]-[#6]-1-[#7,#8])-[#6]-[#6]1:[#6]:[#6]:[#6]:[#6,#7]:[#6]:1\n", "Row: 1586 Displacement of [3H]ZM241685 from human adenosine A2A receptor expressed in HEK293 cells\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 27.3, mcs nAts: 23\n", "[#6,#8]-,=[#6](=,-[#8,#6])-[#7]-[#6]1:[#6]:[#6](-[#6]2:[#6]:[#6,#7]:[#7,#6]:[#6,#7]:[#6,#7]:2):[#7]:[#6](:[#7]:1)-[#7]1:[#7]:[#6](-[#6]):[#6]:[#6]:1-[#6]\n", "Row: 1587 Inhibition of bovine carbonic anhydrase 3 using 4-nitrophenylacetate as substrate after 3 mins using spectrophotometry by Lineweaver-Burk plot analysis\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 16.8, mcs nAts: 6\n", "[#6]1:,-[#6]:,-[#6]:,-[#6]:,-[#6]:,-[#6]:,-1\n", "Row: 1588 Displacement of [3H]-PGE2 from mouse EP4 receptor expressed in CHO cells after 60 mins by liquid scintillation counter\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 28.4, mcs nAts: 26\n", "[#8]=[#6](-[#8])-[#6]-[#6]-[#6]-[#16,#6]-[#6]-[#6]-[#7,#6]1-[#6](=[#8,#16])-[#8,#6,#16]-[#6]-[#6]-1-[#6]=[#6]-[#6](-[#8])-[#6]-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1\n", "Row: 1589 Binding affinity towards human MCH-R1 evaluated by its ability to displace radioligand [125I]Tyr13]-MCH\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 30.1, mcs nAts: 18\n", "[#6]-[#7](-[#6])-[#6]1-[#6]-[#6]-[#7](-[#6]-1)-[#6]1:[#6]:[#6]:[#6](:[#6]:[#6]:1)-[#7]-[#6](=,-[#8,#6,#7])-,=[#6,#7,#8]\n", "Row: 1590 Binding affinity towards Adenosine A2A receptor of rat brain tissues using [3H]ZM-241385 as radioligand\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 26.2, mcs nAts: 19\n", "[#7]-[#6]1:[#7]:[#6](-[#6]#[#6]-[#6]-[#8,#6,#7]):[#6]:[#7]2:[#6]:1:[#7]:[#6](:[#7]:2)-[#6]1:[#6]:[#6]:[#6]:[#8]:1\n", "Row: 1591 Inhibition of human coagulation factor 11a after 10 to 120 mins\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 32.6, mcs nAts: 20\n", "[#7]-[#6]-[#6]1-[#6]-[#6]-[#6](-[#6]-[#6]-1)-[#6](=[#8])-[#7]-[#6](-[#6]-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1)-[#6]\n", "Row: 1592 Displacement of [3H]DPCPX from human adenosine A1 receptor expressed in HEK293 cells\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 27.3, mcs nAts: 23\n", "[#6,#8]-,=[#6](=,-[#8,#6])-[#7]-[#6]1:[#6]:[#6](-[#6]2:[#6]:[#6,#7]:[#6,#7]:[#6,#7]:[#6,#7]:2):[#7]:[#6](:[#7]:1)-[#7]1:[#7]:[#6](-[#6]):[#6]:[#6]:1-[#6]\n", "Row: 1593 Binding affinity to human SERT\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 27.8, mcs nAts: 19\n", "[#6]-[#6]-[#8]-[#6]1:[#6]:[#6]2:[#6](:[#6]:[#7]:1)-[#6](-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1)-[#6]-[#7]-[#6]-2\n", "Row: 1594 Inhibition of Mycobacterium tuberculosis recombinant Rv3273 beta-carbonic anhydrase after 15 mins by stopped flow CO2 hydration assay\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 17.6, mcs nAts: 7\n", "[#8,#6,#7,#16]-[#6]1:,-[#6,#8]:,-[#6]:,-[#6]:,-[#6]:,-[#6]:,-1\n", "Row: 1595 Displacement of [3H]-M-MPEP from rat mGLUR5\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 32.4, mcs nAts: 27\n", "[#8]=[#6](-[#7]-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1)-[#8]-[#7]=[#6](-[#6]1-[#6]-[#6]-[#6]-[#6]-[#6]-1)-[#6](-[#6]-[#7,#6])-[#6]1-[#6]-[#6]-[#6]-[#6]-[#6]-1\n", "Row: 1596 Displacement of radiolabeled iodo-MCH from human MCHR1 expressed in HEK293 cells\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 32.7, mcs nAts: 10\n", "[#6]1:[#6]:[#6](-[#7,#8]-[#6]=,-[#8,#6]):[#6]:[#6]:[#6]:1-[#8,#7]\n", "Row: 1597 Inhibition of human serum BchE by Ellman's assay\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 23.5, mcs nAts: 18\n", "[#6]-[#8]-[#6](=[#8])-[#7]1-[#6]2:[#6]:[#6]:[#6]:[#6]:[#6]:2-[#16]-[#6]2:[#6]-1:[#6]:[#6]:[#6]:[#6]:2\n", "Row: 1598 Inhibition of Mycobacterium tuberculosis recombinant Rv1284 beta-carbonic anhydrase after 15 mins by stopped flow CO2 hydration assay\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 17.6, mcs nAts: 7\n", "[#8,#6,#7,#16]-[#6]1:,-[#6,#8]:,-[#6]:,-[#6]:,-[#6]:,-[#6]:,-1\n", "Row: 1599 Binding affinity to human CRTH2 receptor expressed in HEK293-EBNA cells by radioligand competition binding assay\n", " * postgresql://localhost/chembl_23\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Mean nAts 30.4, mcs nAts: 22\n", "[#6]-[#7](-[#6,#16](=,-[#8,#6])-,=[#6,#8])-[#6]1-[#6]-[#6]-[#6]2:[#7](-[#6]-1):[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1:[#6]:2-[#6]-[#6](=[#8])-[#8]\n", "Row: 1600 Inhibition of cathepsin S\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 35.3, mcs nAts: 15\n", "[#6,#7]-[#6,#7]-[#6](-[#7,#6])-[#6,#7]-[#7,#6]-[#6]-[#6,#7]-[#7,#6]-[#6,#7]1:,-[#6]:,-[#6]:,-[#6,#8]:,-[#6]:,-[#6]:,-1\n", "Row: 1601 Inhibition of cathepsin K\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 35.3, mcs nAts: 15\n", "[#6,#7]-[#6,#7]-[#6](-[#7,#6])-[#6,#7]-[#7,#6]-[#6]-[#6,#7]-[#7,#6]-[#6,#7]1:,-[#6]:,-[#6]:,-[#6,#8]:,-[#6]:,-[#6]:,-1\n", "Row: 1602 BindingDB_Patents: In Vitro Assay. The effectiveness of compounds of the present invention as inhibitors of the coagulation factors XIa, VIIa, IXa, Xa, XIIa, plasma kallikrein or thrombin, can be determined using a relevant purified serine protease, respectively, and an appropriate synthetic substrate. The rate of hydrolysis of the chromogenic or fluorogenic substrate by the relevant serine protease was measured both in the absence and presence of compounds of the present invention. Hydrolysis of the substrate resulted in the release of pNA (para nitroaniline), which was monitored spectrophotometrically by measuring the increase in absorbance at 405 nm, or the release of AMC (amino methylcoumarin), which was monitored spectrofluorometrically by measuring the increase in emission at 460 nm with excitation at 380 nm. A decrease in the rate of absorbance or fluorescence change in the presence of inhibitor is indicative of enzyme inhibition. Such methods are known to one skilled in the art.\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 48.0, mcs nAts: 27\n", "[#6,#7]-[#6]1:[#6]:[#6]:[#6](:[#6]:[#6]:1-[#6]=[#6]-[#6](=[#8])-[#7]1-[#6]-[#6]-[#6]2:[#6](-[#6]-1-[#6](=[#8])-[#7]-[#6]):[#6]:[#6]:[#6]:[#6]:2-[#8,#6,#7])-[#17]\n", "Row: 1603 Inhibition of human recombinant alpha-carbonic anhydrase 2 after 15 mins by stopped flow CO2 hydration assay\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 17.6, mcs nAts: 7\n", "[#8,#6,#7,#16]-[#6]1:,-[#6,#8]:,-[#6]:,-[#6]:,-[#6]:,-[#6]:,-1\n", "Row: 1604 BindingDB_Patents: Binding Assay. In order to evaluate the relative affinity of the various compounds at the NE, DA and 5HT transporters, HEK293E cell lines were developed to express each of the three human transporters. cDNAs containing the complete coding regions of each transporter were amplified by PCR from human brain libraries. The cDNAs contained in pCRII vectors were sequenced to verify their identity and then subcloned into an Epstein-Barr virus based expression plasmid (Shen et al., Gene 156:235-239 (1995), which is hereby incorporated by reference in its entirety). This plasmid containing the coding sequence for one of the human transporters was transfected into HEK93E cells. Successful transfection was verified by the ability of known reuptake blockers to inhibit the uptake of tritiated NE, DA or 5HT.For binding, cells were homogenized, centrifuged, and then resuspended in incubation buffer (5 mM Tris, 120 mM NaCl, 5 mM KCl, pH 7.4). Then, the appropriate radioligand was added.\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 21.4, mcs nAts: 12\n", "[#6]-[#7]1-[#6]-[#6]2:[#6]:[#6]:[#6]:[#6]:[#6]:2-[#6](-[#6]-1)-[#6]\n", "Row: 1605 Inhibition of human recombinant cytosolic carbonic anhydrase 2 preincubated for 15 mins by CO2 hydration method\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 25.1, mcs nAts: 11\n", "[#7,#8]-,=[#16](=[#8])(=,-[#8,#7])-[#6]1:[#6]:[#6]:[#6](:[#6]:[#6]:1)-[#17,#6,#7]\n", "Row: 1606 Inhibition of human carbonic anhydrase 14 by stopped-flow CO2 hydration assay\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 38.7, mcs nAts: 10\n", "[#6]1:[#6]:[#6]:[#6]:[#6](:[#6]:1)-[#16](-[#7])(=[#8])=[#8]\n", "Row: 1607 Inhibition of human recombinant mTOR by FRET assay\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 33.7, mcs nAts: 24\n", "[#6]-[#6]-[#7,#8]-[#6](=[#8])-[#7,#8]-[#6]1:[#6]:[#6]:[#6](:[#6]:[#6]:1)-[#6]1:[#7]:[#6]:[#6]:[#6](:[#7]:1)-[#7]1-[#6]-[#6]-[#8]-[#6]-[#6]-1\n", "Row: 1608 Inhibition of cathepsin L\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 35.3, mcs nAts: 15\n", "[#6,#7]-[#6,#7]-[#6](-[#7,#6])-[#6,#7]-[#7,#6]-[#6]-[#6,#7]-[#7,#6]-[#6,#7]1:,-[#6]:,-[#6]:,-[#6,#8]:,-[#6]:,-[#6]:,-1\n", "Row: 1609 Inhibition constant for displacement of [3H]LTD4 on guinea pig lung parenchymal membranes\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 43.1, mcs nAts: 36\n", "[#6]-[#6]-[#7]-[#6](=[#8])-[#6]1:[#6]:[#6]:[#6]2:[#6](:[#6]:1):[#6,#7](-[#6]-[#6]1:[#6]:[#6]:[#6](:[#6]:[#6]:1-[#8]-[#6])-[#6](=[#8])-[#7]-[#16](=[#8])(=[#8])-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1-[#6,#17,#35]):[#6]:[#7,#6]:2\n", "Row: 1610 Binding affinity to human PSD95 domain PDZ1 expressed in Escherichia coli BL21-DE3 by fluorescence polarization assay\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 42.5, mcs nAts: 28\n", "[#6,#8]-,=[#6](-[#6,#7,#8])-[#6](-[#7]-[#6](=[#8])-[#6](-[#6])-[#7]-[#6](=[#8])-[#6](-[#7]-[#6](=[#8])-[#6](-[#7,#6])-[#6,#7]-[#6]-[#6](=,-[#8,#6,#7])-,=[#8,#6,#7])-[#6]-[#8,#6])-[#6](=,-[#8,#6])-[#8,#6,#7]\n", "Row: 1611 Inhibition of human recombinant carbonic anhydrase 9 preincubated for 15 mins by CO2 hydration method\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 25.1, mcs nAts: 11\n", "[#7,#8]-,=[#16](=[#8])(=,-[#8,#7])-[#6]1:[#6]:[#6]:[#6](:[#6]:[#6]:1)-[#17,#6,#7]\n", "Row: 1612 Displacement of europium-labeled NDP-alpha-MSH from human MC4R expressed in HEK293 cells\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 43.1, mcs nAts: 37\n", "[#6]-[#6]-[#6]1-[#6](=[#8])-[#7](-[#6](-[#6]-[#6]2:[#6]:[#6]:[#6]3:[#6](:[#6]:2):[#6]:[#6]:[#6]:[#6]:3)-[#6](=[#8])-[#7]-[#6])-[#6]-[#6]-[#7]-1-[#6](=[#8])-[#6](-[#7])-[#6]-[#6]1:[#6]:[#6]:[#6](:[#6]:[#6]:1)-[#9]\n", "Row: 1613 Displacement of europium-labeled NDP-alpha-MSH from human MC3R expressed in HEK293 cells\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 43.1, mcs nAts: 37\n", "[#6]-[#6]-[#6]1-[#6](=[#8])-[#7](-[#6](-[#6]-[#6]2:[#6]:[#6]:[#6]3:[#6](:[#6]:2):[#6]:[#6]:[#6]:[#6]:3)-[#6](=[#8])-[#7]-[#6])-[#6]-[#6]-[#7]-1-[#6](=[#8])-[#6](-[#7])-[#6]-[#6]1:[#6]:[#6]:[#6](:[#6]:[#6]:1)-[#9]\n", "Row: 1614 Displacement of europium-labeled NDP-alpha-MSH from human MC1R expressed in HEK293 cells\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 43.1, mcs nAts: 37\n", "[#6]-[#6]-[#6]1-[#6](=[#8])-[#7](-[#6](-[#6]-[#6]2:[#6]:[#6]:[#6]3:[#6](:[#6]:2):[#6]:[#6]:[#6]:[#6]:3)-[#6](=[#8])-[#7]-[#6])-[#6]-[#6]-[#7]-1-[#6](=[#8])-[#6](-[#7])-[#6]-[#6]1:[#6]:[#6]:[#6](:[#6]:[#6]:1)-[#9]\n", "Row: 1615 BindingDB_Patents: Binding Assay. In order to evaluate the relative affinity of the various compounds at the NE, DA and 5HT transporters, HEK293E cell lines were developed to express each of the three human transporters. cDNAs containing the complete coding regions of each transporter were amplified by PCR from human brain libraries. The cDNAs contained in pCRII vectors were sequenced to verify their identity and then subcloned into an Epstein-Barr virus based expression plasmid (Shen et al., Gene 156:235-239 (1995), which is hereby incorporated by reference in its entirety). This plasmid containing the coding sequence for one of the human transporters was transfected into HEK93E cells. Successful transfection was verified by the ability of known reuptake blockers to inhibit the uptake of tritiated NE, DA or 5HT.For binding, cells were homogenized, centrifuged, and then resuspended in incubation buffer (5 mM Tris, 120 mM NaCl, 5 mM KCl, pH 7.4). Then, the appropriate radioligand was added.\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 21.4, mcs nAts: 12\n", "[#6]-[#7]1-[#6]-[#6]2:[#6]:[#6]:[#6]:[#6]:[#6]:2-[#6](-[#6]-1)-[#6]\n", "Row: 1616 Inhibition of human recombinant carbonic anhydrase 12 preincubated for 15 mins by CO2 hydration method\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 25.1, mcs nAts: 11\n", "[#7,#8]-,=[#16](=[#8])(=,-[#8,#7])-[#6]1:[#6]:[#6]:[#6](:[#6]:[#6]:1)-[#17,#6,#7]\n", "Row: 1617 Inhibition of human recombinant carbonic anhydrase 14 preincubated for 15 mins by CO2 hydration method\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 25.1, mcs nAts: 11\n", "[#7,#8]-,=[#16](=[#8])(=,-[#8,#7])-[#6]1:[#6]:[#6]:[#6](:[#6]:[#6]:1)-[#17,#6,#7]\n", "Row: 1618 BindingDB_Patents: Binding Assay. In order to evaluate the relative affinity of the various compounds at the NE, DA and 5HT transporters, HEK293E cell lines were developed to express each of the three human transporters. cDNAs containing the complete coding regions of each transporter were amplified by PCR from human brain libraries. The cDNAs contained in pCRII vectors were sequenced to verify their identity and then subcloned into an Epstein-Barr virus based expression plasmid (Shen et al., Gene 156:235-239 (1995), which is hereby incorporated by reference in its entirety). This plasmid containing the coding sequence for one of the human transporters was transfected into HEK93E cells. Successful transfection was verified by the ability of known reuptake blockers to inhibit the uptake of tritiated NE, DA or 5HT.For binding, cells were homogenized, centrifuged, and then resuspended in incubation buffer (5 mM Tris, 120 mM NaCl, 5 mM KCl, pH 7.4). Then, the appropriate radioligand was added.\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 21.4, mcs nAts: 12\n", "[#6]-[#7]1-[#6]-[#6]2:[#6]:[#6]:[#6]:[#6]:[#6]:2-[#6](-[#6]-1)-[#6]\n", "Row: 1619 Displacement of [3H]PK11195 from peripheral benzodiazepine receptor in Sprague-Dawley rat cerebral cortex membrane by liquid scintillation counting\n", " * postgresql://localhost/chembl_23\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Mean nAts 30.2, mcs nAts: 17\n", "[#6]-[#7](-[#6])-[#6](=[#8])-[#6]-[#6]1:[#6](-[#6]):[#7]:[#6]2:[#7]:1:[#6]:[#6]:[#6]:[#6]:2-[#17,#7]\n", "Row: 1620 Inhibition of human carbonic anhydrase 12 by stopped-flow CO2 hydration assay\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 38.7, mcs nAts: 10\n", "[#6]1:[#6]:[#6]:[#6]:[#6](:[#6]:1)-[#16](-[#7])(=[#8])=[#8]\n", "Row: 1621 Displacement of [125I]AB-MECA from human adenosine A3 receptor expressed in CHO cells\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 19.1, mcs nAts: 9\n", "[#6,#7]1:[#6]2:,-[#7,#16]:,-[#7,#6]:,-[#7,#6]:,-[#6,#7]-,:2:[#7,#6]:[#6,#7]:,-[#7,#6]:1\n", "Row: 1622 Displacement of [3H]NECA from human adenosine A2A receptor expressed in CHO cells\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 19.1, mcs nAts: 9\n", "[#6,#7]1:[#6]2:,-[#7,#16]:,-[#7,#6]:,-[#7,#6]:,-[#6,#7]-,:2:[#7,#6]:[#6,#7]:,-[#7,#6]:1\n", "Row: 1623 Displacement of [3H]DPCPX from human adenosine A1 receptor expressed in CHO cells\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 19.1, mcs nAts: 9\n", "[#6,#7]1:[#6]2:,-[#7,#16]:,-[#7,#6]:,-[#7,#6]:,-[#6,#7]-,:2:[#7,#6]:[#6,#7]:,-[#7,#6]:1\n", "Row: 1624 Inhibition of human carbonic anhydrase 9 by stopped-flow CO2 hydration assay\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 38.7, mcs nAts: 10\n", "[#6]1:[#6]:[#6]:[#6]:[#6](:[#6]:1)-[#16](-[#7])(=[#8])=[#8]\n", "Row: 1625 Inhibition constant for human immunodeficiency virus type 1 protease\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 40.6, mcs nAts: 9\n", "[#6,#7,#8]-[#7,#6]-,=[#16,#6,#8]-[#6]1:,-[#6]:,-[#6,#7]:,-[#6]:,-[#6]:,-[#6,#7]:,-1\n", "Row: 1626 Displacement of [125I]AB-MECA from human adenosine A3 receptor expressed in CHO cells\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 20.6, mcs nAts: 7\n", "[#6,#7]1:[#7,#6]:[#6,#7]-,:[#6,#7]:[#6,#7](:[#7,#6]:1)-[#8,#6,#7,#16,#17]\n", "Row: 1627 Displacement of [3H]CP-55940 from CB1 receptor in DBA/J2 mouse brain\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 29.0, mcs nAts: 17\n", "[#8]=[#6](-[#7]-[#6])-[#6]1:,-[#6]:,-[#7](-[#6]-[#6]):,-[#6]2:[#6](:,-[#6]:,-1=,-[#8]):[#6]:[#6]:[#6]:[#6,#7]:2\n", "Row: 1628 Inhibition of human carbonic anhydrase 1 by stopped-flow CO2 hydration assay\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 38.7, mcs nAts: 10\n", "[#6]1:[#6]:[#6]:[#6]:[#6](:[#6]:1)-[#16](-[#7])(=[#8])=[#8]\n", "Row: 1629 Inhibition of human carbonic anhydrase 2 by stopped-flow CO2 hydration assay\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 38.7, mcs nAts: 10\n", "[#6]1:[#6]:[#6]:[#6]:[#6](:[#6]:1)-[#16](-[#7])(=[#8])=[#8]\n", "Row: 1630 Inhibition of human carbonic anhydrase 1 using 4-nitrophenylacetate as substrate after 3 mins using spectrophotometry by Lineweaver-Burk plot analysis\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 16.8, mcs nAts: 6\n", "[#6]1:,-[#6]:,-[#6]:,-[#6]:,-[#6]:,-[#6]:,-1\n", "Row: 1631 Displacement of [3H]spiperone from human D2L receptor expressed in FlpIn CHO cell membrane after 3 hrs by liquid scintillation counting analysis\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 28.6, mcs nAts: 13\n", "[#6]1(-[#6,#7]2:,-[#6]:,-[#6]:,-[#6,#7](:,-[#6]:,-[#6]:,-2)-[#17,#6])-,:[#6]-,:[#6]-,:[#7,#6]-,:[#6]-,:[#6]-,:1\n", "Row: 1632 Displacement of [3H]DPCPX from human Adenosine A2B receptor expressed in HEK293 cells after 30 mins\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 21.4, mcs nAts: 17\n", "[#6]-[#6]-[#8]-[#6](=[#8])-[#6]1=[#6](-[#6])-[#7]-[#6]-,:[#7,#6]-[#6]-1-[#6]1:[#6]:[#6]:[#16,#6,#8]:[#6,#8,#16]:1\n", "Row: 1633 Inhibition of Candida albicans recombinant Nce103 beta-carbonic anhydrase after 15 mins by stopped flow CO2 hydration assay\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 17.6, mcs nAts: 7\n", "[#8,#6,#7,#16]-[#6]1:,-[#6,#8]:,-[#6]:,-[#6]:,-[#6]:,-[#6]:,-1\n", "Row: 1634 Displacement of 3-[4-({2',6'-dimethyl-6-[(4-[3H])-phenylmethoxy]biphenyl-3-yl}methoxy)phenyl] propanoic acid from rat GPR40 receptor expressed in CHO cells after 90 mins by scintillation counting in presence of 0.2% BSA\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 31.9, mcs nAts: 21\n", "[#6]-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1-[#6]1:[#6]:[#6]:[#6]:[#6](:[#6]:1)-[#6]-[#8,#7]-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6,#7]:1\n", "Row: 1635 Binding affinity towards human 5-hydroxytryptamine 7 receptor\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 25.2, mcs nAts: 7\n", "[#6,#8,#16,#17,#35]-,=[#6,#7]1:,-[#6]:,-[#6]:,-[#6,#7]:,-[#6,#7]:,-[#6,#7]:,-1\n", "Row: 1636 Compound was evaluated for inhibitory activity against Chymotrypsinogen\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 45.3, mcs nAts: 35\n", "[#6]-[#7]-[#6](=[#8])-[#6](-[#9])(-[#9])-[#6](=[#8])-[#6](-[#6]-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1)-[#7]-[#6](=[#8])-[#6]1-[#6]-[#6]-[#6]-[#7]-1-[#6](=[#8])-[#6](-[#7]-[#6,#16](=,-[#8,#6])-,=[#8,#6])-[#6](-[#6])-[#6]\n", "Row: 1637 Inhibitory activity against alpha chymotrypsin from bovine pancreas.\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 40.2, mcs nAts: 33\n", "[#7]-[#6]1:[#6]:[#7]:[#6](:[#7](:[#6]:1=[#8])-[#6]-[#6](=[#8])-[#7]-[#6](-[#6]-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1)-[#6](=[#8])-[#6]1:,=[#7,#8]:,-[#6]:,-[#6]:,-[#16,#7,#8]:,-1)-[#6]1:[#6]:[#6]:[#6,#7]:[#6,#7]:[#6]:1\n", "Row: 1638 Tested for inhibition of [3H]-pCCK-8 specific binding to cholecystokinin type A receptor in guinea pig pancreatic membranes\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 39.3, mcs nAts: 19\n", "[#6,#8]-,=[#6](-[#7,#6]-[#6](=[#8])-[#8,#7]-[#6]1-,:[#6]-,:[#6]-,:[#6](-,:[#6]-,:[#6]-,:1)-,:[#6]-,:[#6]-,:[#6])-[#6,#7](=,-[#8,#6])-[#7,#6]-[#6]\n", "Row: 1639 Binding affinity against Cysteinyl leukotriene D4 receptor from guinea pig lung was determined using [3H]LTD4 (0.2 nM)\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 26.7, mcs nAts: 13\n", "[#6]-[#8,#6,#16]-[#6,#8]-[#6]1:[#6,#7]:[#6]:[#6]2:[#6](:[#7,#6]:1):[#6,#8]:[#6]:[#6]:[#6]:2\n", "Row: 1640 Binding affinity at Opioid receptor kappa 1 by displacement of [3H]U-69593 in guinea pig brain membranes\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 30.7, mcs nAts: 11\n", "[#6,#7]-[#7,#6]1-[#6]-[#6]-[#6]2(-[#6]-[#6]-1)-[#6]:,-[#6]-[#8,#6]-[#6,#8]-2\n", "Row: 1641 Inhibition of HIV protease, measured by assaying the cleavage of a fluorescent peptide substrate using HPLC\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 46.5, mcs nAts: 39\n", "[#7,#6]-[#6]1:[#6]:[#6]:[#6]:[#6](:[#6]:1)-[#6]-[#7]1-[#6](=[#8])-[#7](-[#6]-[#6]2:[#6]:[#6]:[#6]:[#6,#7]:[#6]:2)-[#6](-[#6]-[#6]2:[#6]:[#6]:[#6]:[#6]:[#6]:2)-[#6](-[#6](-[#6]-1-[#6]-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1)-[#8])-[#8]\n", "Row: 1642 Inhibition of recombinant HIV-1 protease measured by fluorometric assay\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 44.9, mcs nAts: 30\n", "[#6]-[#7]1-[#6](-[#6]-[#8]-[#6]2:[#6]:[#6]:[#6]:[#6]:[#6]:2)-[#6](-[#8])-[#6](-[#8])-[#6](-[#7](-[#16]-1(=[#8])=[#8])-[#6]-[#6])-[#6]-[#8]-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1\n", "Row: 1643 Potency against human cytomegalovirus protease in HCMV pNA assay\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 37.0, mcs nAts: 21\n", "[#6]-[#6]1-[#6](=[#8])-[#7](-[#6])-[#6]2-[#6]-1-[#7](-[#6]-[#6]-2)-[#6](=[#8])-[#6]1-[#6]-[#6]-[#6]-[#7]-1-[#6,#16](=,-[#8,#6,#7])-,=[#7,#6,#8]\n", "Row: 1644 Inhibitory activity against human Carbonic anhydrase I\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 23.0, mcs nAts: 8\n", "[#7,#6]-,=[#16,#6,#7,#8]-[#6]1:,-[#6]:,-[#6]:,-[#6,#16]:,-[#6]:[#6]:,-1\n", "Row: 1645 Inhibitory activity against human Carbonic anhydrase II\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 23.0, mcs nAts: 8\n", "[#7,#6]-,=[#16,#6,#7,#8]-[#6]1:,-[#6]:,-[#6]:,-[#6,#16]:,-[#6]:[#6]:,-1\n", "Row: 1646 Inhibitory constant against human Opioid receptor kappa using [3H]diprenorphine as radio ligand\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 31.0, mcs nAts: 24\n", "[#6]-[#7](-[#6](=[#8])-[#6]-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1)-[#6](-[#6]-[#7]1-[#6]-[#6]-[#6]-[#6]-1)-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1\n", "Row: 1647 Displacement of [125I]-AB MECA from recombinant human adenosine A3 receptor expressed in HEK cells\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 32.5, mcs nAts: 20\n", "[#7]-[#6]1:[#7]:[#6](-[#6,#7,#17]):[#7]:[#6]2:[#6]:1:[#7]:[#6]:[#7]:2-[#6]1-[#8]-[#6](-[#6]-[#8,#7])-[#6](-[#6]-1-[#8])-[#8]\n", "Row: 1648 Inhibitory constant against DNA polymerases IIIC produced by Bacillus subtilis; (a)\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 25.9, mcs nAts: 12\n", "[#6]-[#7]-[#6]1:[#7]:[#6](-[#8]):[#6]2:,-[#6](:[#7]:1):[#7]:[#6]:[#7]:2\n", "Row: 1649 Binding affinity for adenosine A1 receptor by using as [3H]CPX (0.5 nM) radioligand in membranes from Chinese hamster ovary cells\n", " * postgresql://localhost/chembl_23\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Mean nAts 37.9, mcs nAts: 36\n", "[#6]-[#6]-[#6]-[#7]1:[#6](=[#8]):[#6]2:[#7]:[#6](-[#6]3:[#6]:[#6]:[#6](:[#6]:[#6]:3)-[#8]-[#6]-[#6]3:[#7]:[#6](-[#6]4:[#6]:[#6]:[#6]:[#6]:[#6]:4):[#7,#8]:[#8,#7]:3):[#7]:[#6]:2:[#7](:[#6]:1=[#8])-[#6]-[#6]-[#6]\n", "Row: 1650 Inhibition of monoamine reuptake at serotonin transporter\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 23.8, mcs nAts: 22\n", "[#6,#7]-[#7,#6]-[#6]-[#6]-[#6]-[#6]1-[#6]-[#6]2:[#6]:[#6]:[#6]:[#6]:[#6]:2-[#7](-[#6]-1=[#8])-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1\n", "Row: 1651 Inhibition of human DPP4\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 23.0, mcs nAts: 16\n", "[#7]-[#6](-[#6]-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1)-[#6](=[#8])-[#7]1-[#6]-[#6,#8]-[#16,#6]-[#6]-1\n", "Row: 1652 Displacement of [3H]DPDPE from cloned human delta opioid receptor\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 32.4, mcs nAts: 25\n", "[#6,#16]-[#7]1-[#6]-[#6]-[#6](-[#6]-[#6]-1)(-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1)-[#6]1:[#7]:[#6]:[#6]:[#7]:1-[#6]-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6,#7]:1\n", "Row: 1653 Displacement of [3H]DAMGO from cloned human mu opioid receptor\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 32.4, mcs nAts: 25\n", "[#6,#16]-[#7]1-[#6]-[#6]-[#6](-[#6]-[#6]-1)(-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1)-[#6]1:[#7]:[#6]:[#6]:[#7]:1-[#6]-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6,#7]:1\n", "Row: 1654 Displacement of [3H]U-69593 from cloned human kappa opioid receptor\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 32.4, mcs nAts: 25\n", "[#6,#16]-[#7]1-[#6]-[#6]-[#6](-[#6]-[#6]-1)(-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1)-[#6]1:[#7]:[#6]:[#6]:[#7]:1-[#6]-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6,#7]:1\n", "Row: 1655 Displacement of [3H]spiroperidol from cloned human dopamine receptor D3 expressed in CHO cells\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 33.5, mcs nAts: 15\n", "[#6]-[#7]1-[#6]-[#6]-[#7](-[#6]-[#6]-1)-[#6]-[#6]-[#6]-[#6]-[#7]-[#6](=,-[#8,#6])-,=[#6,#8]\n", "Row: 1656 Displacement of [3H]spiroperidol from cloned human dopamine receptor D2(long) expressed in rat C6 glioma cells\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 33.5, mcs nAts: 15\n", "[#6]-[#7]1-[#6]-[#6]-[#7](-[#6]-[#6]-1)-[#6]-[#6]-[#6]-[#6]-[#7]-[#6](=,-[#8,#6])-,=[#6,#8]\n", "Row: 1657 Displacement of [3H]MPEP from recombinant human mGlu5 receptor\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 24.0, mcs nAts: 16\n", "[#6]1:[#6]:[#6](-[#6]-[#8]-[#6]2:[#6,#7]:[#6](-[#6,#7,#17]):[#6,#7]:[#6](:[#7,#6]:2)-[#17,#6,#7]):[#6]:[#6]:[#7,#6]:1\n", "Row: 1658 Inhibition of Cathepsin S\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 35.3, mcs nAts: 24\n", "[#8]=[#6](-[#7]-[#6]-[#6]-[#7,#6,#8])-[#6](-[#6]-[#6]1-[#6]-[#6]-[#6]-[#6]-[#6]-1)-[#7]-[#6]1:[#7]:[#6]2:[#6]:[#6]:[#6]:[#6]:[#6]:2:[#8]:1\n", "Row: 1659 Inhibition of Cathepsin K\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 35.3, mcs nAts: 24\n", "[#8]=[#6](-[#7]-[#6]-[#6]-[#7,#6,#8])-[#6](-[#6]-[#6]1-[#6]-[#6]-[#6]-[#6]-[#6]-1)-[#7]-[#6]1:[#7]:[#6]2:[#6]:[#6]:[#6]:[#6]:[#6]:2:[#8]:1\n", "Row: 1660 Inhibition of Cathepsin L\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 35.3, mcs nAts: 24\n", "[#8]=[#6](-[#7]-[#6]-[#6]-[#7,#6,#8])-[#6](-[#6]-[#6]1-[#6]-[#6]-[#6]-[#6]-[#6]-1)-[#7]-[#6]1:[#7]:[#6]2:[#6]:[#6]:[#6]:[#6]:[#6]:2:[#8]:1\n", "Row: 1661 Displacement of [3H]SCH 23990 from dopamine receptor D1 in porcine striatal membrane\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 25.7, mcs nAts: 22\n", "[#6]1:[#6]:[#6]:[#6](:[#6]:[#6]:1)-[#7]1-[#6]-[#6]-[#7](-[#6]-[#6]-1)-[#6]-[#6]1:[#6,#7]:[#7,#6]2:[#6,#7]:[#6]:[#6,#7]:[#7,#6]:[#6,#7]:2:[#7,#6]:1\n", "Row: 1662 Displacement of [3H]spiperone from human dopamine receptor D2(long) in CHO cell membrane\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 25.7, mcs nAts: 22\n", "[#6]1:[#6]:[#6]:[#6](:[#6]:[#6]:1)-[#7]1-[#6]-[#6]-[#7](-[#6]-[#6]-1)-[#6]-[#6]1:[#6,#7]:[#7,#6]2:[#6,#7]:[#6]:[#6,#7]:[#7,#6]:[#6,#7]:2:[#7,#6]:1\n", "Row: 1663 Displacement of [3H]spiperone from human dopamine receptor D2(short) in CHO cell membrane\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 25.7, mcs nAts: 22\n", "[#6]1:[#6]:[#6]:[#6](:[#6]:[#6]:1)-[#7]1-[#6]-[#6]-[#7](-[#6]-[#6]-1)-[#6]-[#6]1:[#6,#7]:[#7,#6]2:[#6,#7]:[#6]:[#6,#7]:[#7,#6]:[#6,#7]:2:[#7,#6]:1\n", "Row: 1664 Displacement of [3H]spiperone from human dopamine receptor D3 in CHO cell membrane\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 25.7, mcs nAts: 22\n", "[#6]1:[#6]:[#6]:[#6](:[#6]:[#6]:1)-[#7]1-[#6]-[#6]-[#7](-[#6]-[#6]-1)-[#6]-[#6]1:[#6,#7]:[#7,#6]2:[#6,#7]:[#6]:[#6,#7]:[#7,#6]:[#6,#7]:2:[#7,#6]:1\n", "Row: 1665 Displacement of [3H]spiperone from human dopamine receptor D4.4 in CHO cell membrane\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 25.7, mcs nAts: 22\n", "[#6]1:[#6]:[#6]:[#6](:[#6]:[#6]:1)-[#7]1-[#6]-[#6]-[#7](-[#6]-[#6]-1)-[#6]-[#6]1:[#6,#7]:[#7,#6]2:[#6,#7]:[#6]:[#6,#7]:[#7,#6]:[#6,#7]:2:[#7,#6]:1\n", "Row: 1666 Displacement of [3H]ketanserin from 5HT2 receptor in porcine cortical membrane\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 25.7, mcs nAts: 22\n", "[#6]1:[#6]:[#6]:[#6](:[#6]:[#6]:1)-[#7]1-[#6]-[#6]-[#7](-[#6]-[#6]-1)-[#6]-[#6]1:[#6,#7]:[#7,#6]2:[#6,#7]:[#6]:[#6,#7]:[#7,#6]:[#6,#7]:2:[#7,#6]:1\n", "Row: 1667 Binding affinity to human f10a\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 38.8, mcs nAts: 15\n", "[#6]-[#8]-[#6]1:[#6]:[#6]:[#6](:[#6]:[#6]:1)-[#7]1:[#7]:[#6](-[#6]#,-,=[#7,#8,#9]):[#6]:[#6]:1\n", "Row: 1668 Inhibition of CDK1/Cyclin B\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 29.2, mcs nAts: 23\n", "[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1-[#6](=[#8])-[#6]1:[#6]:[#7]:[#6](:[#7]:[#6]:1-[#7])-[#7]-[#6]1-,:[#6]-,:[#6]-,:[#7,#6](-,:[#6]-,:[#6]-,:1)-[#6,#7,#16]\n", "Row: 1669 Inhibition of CDK2/Cyclin E\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 29.2, mcs nAts: 23\n", "[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1-[#6](=[#8])-[#6]1:[#6]:[#7]:[#6](:[#7]:[#6]:1-[#7])-[#7]-[#6]1-,:[#6]-,:[#6]-,:[#7,#6](-,:[#6]-,:[#6]-,:1)-[#6,#7,#16]\n", "Row: 1670 Displacement of [3H]diprenorphine binding from human kappa opioid receptor expressed in CHO cells\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 36.3, mcs nAts: 29\n", "[#6]-[#6](=[#8])-[#8]-[#6]1-[#6]-[#6](-[#6]-,=[#8])-[#6]2(-[#6](-[#6]-1=[#8])-[#6]1(-[#6]-[#6](-[#8]-[#6](-[#6]-1-[#6]-[#6]-2)=[#8])-[#6]1:[#6]:[#6]:[#8]:[#6]:1)-[#6])-[#6]\n", "Row: 1671 Displacement of [3H]CGP-12177 from beta-1 adrenergic receptor in Sprague-Dawley rat cortical membrane\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 21.7, mcs nAts: 16\n", "[#6]-[#6]-[#6](-[#6])-[#7]-[#6]-[#6](-[#8])-[#6]1:[#6]:[#6](-[#8]):[#6]:[#6](:[#6]:1)-[#8]\n", "Row: 1672 Displacement of [3H]CGP12177 from human beta-2 adrenergic receptor expressed in HEK293 cells\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 21.7, mcs nAts: 16\n", "[#6]-[#6]-[#6](-[#6])-[#7]-[#6]-[#6](-[#8])-[#6]1:[#6]:[#6](-[#8]):[#6]:[#6](:[#6]:1)-[#8]\n", "Row: 1673 Binding affinity to human AR\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 21.9, mcs nAts: 19\n", "[#7]#[#6]-[#6]1:[#6]:[#6]:[#6](:[#6]:[#6]:1)-[#7]1-[#6](=[#8])-[#6]2-[#6](-[#8])-[#6]-[#6]-[#7]-2-[#6]-1=[#8]\n", "Row: 1674 Displacement of 1-[N-methyl- 3H]scopolamine from human muscarinic M1 receptor expressed in Sf9 cells\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 24.9, mcs nAts: 16\n", "[#7]-[#6]1(-[#6]-[#7,#6]-[#6]-[#6])-[#6]-[#8]-[#6]2:[#6]:[#6]:[#6]:[#6]:[#6]:2-[#8]-[#6]-1\n", "Row: 1675 Displacement of 1-[N-methyl- 3H]scopolamine from human muscarinic M2 receptor expressed in Sf9 cells\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 24.9, mcs nAts: 16\n", "[#7]-[#6]1(-[#6]-[#7,#6]-[#6]-[#6])-[#6]-[#8]-[#6]2:[#6]:[#6]:[#6]:[#6]:[#6]:2-[#8]-[#6]-1\n", "Row: 1676 Displacement of [3H]spiroperidol from human recombinant Dopamine D2 long receptor\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 32.2, mcs nAts: 30\n", "[#8]=[#6](-[#6]-[#6]-[#6]-[#6]-[#6]-[#7]1-[#6]-[#6]-[#7](-[#6]-[#6]-1)-[#6]1:[#6]:[#6]:[#6]:[#6]:[#7,#6]:1)-[#7]-[#6]1-[#6]-[#6]-[#6]-[#6]2:[#6]-1:[#6]:[#6]:[#6]:[#6]:2\n", "Row: 1677 Displacement of [3H]methyllycaconitine from human alpha-7 in tsA201 cells coexpressed with 5HT3A receptor\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 50.4, mcs nAts: 18\n", "[#6,#7](:,-[#6]1:,-[#7,#6]-[#6]-[#6]:,-[#7,#6](-[#6]-1):,-[#6,#7](:,-[#6]:,-[#6]):,-[#6]:,-[#6]):,-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1\n", "Row: 1678 Displacement of [3H]methyllycaconitine from alpha7 nAChR in tsA201 cells co-expressed with Ric3\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 50.4, mcs nAts: 18\n", "[#6,#7](:,-[#6]1:,-[#7,#6]-[#6]-[#6]:,-[#7,#6](-[#6]-1):,-[#6,#7](:,-[#6]:,-[#6]):,-[#6]:,-[#6]):,-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1\n", "Row: 1679 Displacement of [3H]GR65630 from human 5HT3A receptor in HEK293 cells\n", " * postgresql://localhost/chembl_23\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Mean nAts 50.1, mcs nAts: 18\n", "[#6,#7](:,-[#6]1:,-[#7,#6]-[#6]-[#6]:,-[#7,#6](-[#6]-1):,-[#6,#7](:,-[#6]:,-[#6]):,-[#6]:,-[#6]):,-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1\n", "Row: 1680 Displacement of [125I]-[Nle,8,18 Tyr34]-hPTH(1-34) from human recombinant PTH1R expressed in HEK293 cells\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 38.3, mcs nAts: 27\n", "[#6]1:[#6]:[#6]:[#6]2:[#6](:[#6]:1)-[#7](-[#6]1:[#6]:[#6]:[#6](:[#6]:[#6]:1)-[#7,#6]-,=[#6,#8])-[#6](=[#8])-[#7](-[#7]=[#6]-2-[#6]1-,:[#6]-,:[#6]-,:[#6,#8]-,:[#6]-,:[#6]-,:1)-[#6]\n", "Row: 1681 Displacement of [125I]-Tyr5, DLeu6, NMeLeu7, Pro-N-Et-GnRH from cloned rat GnRHR\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 42.2, mcs nAts: 26\n", "[#6,#8]-,=[#6](=,-[#8,#6])-[#7]1-[#6]-[#6]-[#6]2:[#6](-[#6]-1):[#6](:[#6](:[#7]:2)-[#6]1:[#6]:[#6](-[#6]):[#6]:[#6](:[#6]:1)-[#6])-[#6](-[#6])-[#6]-[#7]-[#6]-[#6]\n", "Row: 1682 Inhibition of wild type HIV1 3B reverse transcriptase\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 22.8, mcs nAts: 17\n", "[#7,#8,#16]-,=[#6]1:[#7,#6]:[#6](-[#6]-[#6]2:[#6](-[#9]):[#6]:[#6]:[#6]:[#6]:2-[#9]):[#6,#7]:[#6](:[#7]:1)=,-[#8,#7]\n", "Row: 1683 Inhibition of human 11-beta-HSD1 by SPA\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 18.3, mcs nAts: 14\n", "[#6,#8]-,=[#6]1-[#16,#7]-,=[#6](-[#7]-[#6]2:[#6]:[#6]:[#6,#7]:[#6]:[#6,#7]:2)=,-[#7,#16]-[#6]-1=,-[#8,#6]\n", "Row: 1684 Inhibition of human recombinant Src\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 28.7, mcs nAts: 22\n", "[#6]-[#16]-[#6]1:[#7]:[#6](-[#7]-[#6]):[#6]2:[#6](:[#7]:1):[#7](:[#7,#6]:[#6]:2)-[#6]-[#6](-[#17])-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1\n", "Row: 1685 Inhibition of Escherichia coli beta-lactamase\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 18.7, mcs nAts: 12\n", "[#8]-[#5](-[#8])-[#6]1:[#6,#16]:[#6]2:[#6]:[#6]:[#6]:[#6]:[#6]:2:[#16,#6]:1\n", "Row: 1686 Inhibition of human recombinant thymidine phosphorylase expressed in V79 cells\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 14.8, mcs nAts: 10\n", "[#6,#17]-[#6]1:[#6](-[#17,#6,#7,#9,#35]):[#7]:[#6](:[#7]:[#6]:1=[#8])=[#8]\n", "Row: 1687 Inhibition of human placental thymidine phosphorylase\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 14.8, mcs nAts: 10\n", "[#6,#17]-[#6]1:[#6](-[#17,#6,#7,#9,#35]):[#7]:[#6](:[#7]:[#6]:1=[#8])=[#8]\n", "Row: 1688 Inhibition of human factor 10a\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 37.8, mcs nAts: 15\n", "[#7]-[#6]1-,:[#6]-,:[#6]-,=,:[#7,#6](-,:[#6]-,:[#6]-,:1)-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1-[#16,#6]=,-[#8,#6,#7]\n", "Row: 1689 Inhibition of human 11-beta-HSD1 by SPA\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 26.8, mcs nAts: 24\n", "[#8]=[#6](-[#6]1-,:[#6,#7]-,:[#6]-,:[#6]-,:[#6]-,:[#6]-,:1)-[#7]1-[#6]-[#6]-[#6](-[#6]-[#6]-1)-[#7]1:,-[#6](=[#8]):,-[#7,#6,#8,#16]:,-[#6]2:[#6]:,-1:[#6]:[#6]:[#6]:[#6]:2\n", "Row: 1690 Inhibition of human F10a by fluorescence assay\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 34.9, mcs nAts: 18\n", "[#6,#7]-[#6]1:[#6]:[#6]:[#6](:[#7,#6]:[#6]:1)-[#7]1-[#6]-[#6]-[#6](-[#6]-1=[#8])-[#7]-[#16](=[#8])(=[#8])-[#6]\n", "Row: 1691 Inhibition of Mycobacterium tuberculosis H37RV InhA\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 23.1, mcs nAts: 20\n", "[#6]-[#6]-[#6]-[#6]-[#6]-[#6]-[#6]1:[#6]:[#6]:[#6](:[#6](:[#6]:1)-[#8])-[#8]-[#6]1:[#6,#7]:[#6,#7]:[#6,#7]:[#6,#7]:[#6,#7]:1\n", "Row: 1692 Binding affinity to human cloned muscarinic M2 receptor expressed in CHO cells\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 13.3, mcs nAts: 3\n", "[#6,#7]-[#7,#6,#8]-,=[#6,#7,#8]\n", "Row: 1693 Inhibition of human BACE1\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 39.5, mcs nAts: 32\n", "[#6,#8]-,=[#7,#6]1-[#6]-[#6](-[#6](=[#8])-[#7]-[#6](-[#6]-[#6]2:[#6]:[#6]:[#6]:[#6]:[#6]:2)-[#6](-[#8])-[#6]-[#7]-[#6]-[#6]2:[#6]:[#6]:[#6]:[#6](:[#6]:2)-[#7,#6](-[#6,#9])-[#6,#9])-[#7,#6]-[#6,#7]-1=,-[#8,#6]\n", "Row: 1694 Displacement of rhodamine-green labeled (2-(6-amino-3-imino-3H-xanthen-9-yl)-5-{[({4-[4-(4-Cl-3-hydroxyphenyl)-5-(4-pyridinyl)-1H-imidazol-2yl]phenyl}methyl)amino]carbonyl}benzoic acid from human p38alpha by fluorescence polarization\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 33.1, mcs nAts: 18\n", "[#6]-[#6]1:[#6]:[#6]:[#6](:[#6]:[#6]:1-[#6]1:[#6]:[#6]:[#6](:[#6]:[#6]:1)-[#6](=[#8])-[#7]-[#6])-[#6,#7]\n", "Row: 1695 Binding affinity to purified Toxoplasma gondii adenosine kinase\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 27.5, mcs nAts: 26\n", "[#8]-[#6]-[#6]1-[#8]-[#6](-[#7]2:[#6]:[#6,#7]:[#6]3:[#6]:2:[#7]:[#6]:[#7]:[#6]:3-[#16]-[#6]-[#6]2:[#6]:[#6]:[#6]:[#6]:[#6]:2)-[#6](-[#6]-1-[#8])-[#8]\n", "Row: 1696 Displacement of [3H](+)-pentazocine from opioid sigma1 receptor in guinea pig brain homogenate\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 23.1, mcs nAts: 9\n", "[#6,#8]-,=[#6,#8]-[#7,#6]1-,:[#6]-,:[#6]-,:[#7,#6](-,:[#6]-,:[#6]-,:1)-[#6,#9]\n", "Row: 1697 Displacement of [3H]DPCPX from human adenosine A1 receptor expressed in CHO cell membrane\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 21.7, mcs nAts: 10\n", "[#7,#6]#,-[#6]-[#6,#7]1:[#6](-,=[#6,#8]):[#6]:[#6]:[#7]:[#6]:1-,=[#7,#8]\n", "Row: 1698 Binding affinity to human histamine H3 receptor\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 25.0, mcs nAts: 15\n", "[#6]-[#16,#6,#7,#8]-[#6]1:[#7]:[#6]:[#6](:[#7]:1-[#6])-[#6]-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1\n", "Row: 1699 Binding affinity to human PSD95 domain PDZ2 expressed in Escherichia coli BL21-DE3 by fluorescence polarization assay\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 42.5, mcs nAts: 28\n", "[#6,#8]-,=[#6](-[#6,#7,#8])-[#6](-[#7]-[#6](=[#8])-[#6](-[#6])-[#7]-[#6](=[#8])-[#6](-[#7]-[#6](=[#8])-[#6](-[#7,#6])-[#6,#7]-[#6]-[#6](=,-[#8,#6,#7])-,=[#8,#6,#7])-[#6]-[#8,#6])-[#6](=,-[#8,#6])-[#8,#6,#7]\n", "Row: 1700 Displacement of [3H]CP-55940 from human CB2 receptor\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 29.4, mcs nAts: 16\n", "[#6]-[#6]-[#7]1:[#6](=[#8]):[#7](-[#6](=[#8])-[#7]-[#6]):[#6]2:[#6]:1:[#6]:[#6]:[#6]:[#6]:2\n", "Row: 1701 Binding affinity to human 11beta HSD1 expressed in Escherichia coli by scintillation proximity assay\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 18.4, mcs nAts: 8\n", "[#6]-[#6,#7]-[#6]1-,=[#16,#7]-[#6](-,=[#7,#8])=,-[#7,#6]-[#6,#16]-1\n", "Row: 1702 Displacement of [3H]spiperone from human dopamine D3 receptor\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 28.6, mcs nAts: 16\n", "[#7,#6]-[#6]-[#6]-[#6]-[#7]1-[#6]-[#6]-[#7](-[#6]-[#6]-1)-[#6]1:[#6,#7]:[#6]:[#6]:[#6]:[#7,#6]:1\n", "Row: 1703 Displacement of [125I]PYY from human recombinant neuropeptide Y1 receptor expressed in CHO (NFAT-bla) cells by scintillation counting\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 39.5, mcs nAts: 32\n", "[#6]1:[#6]:[#6]:[#6](:[#6]:[#6]:1)-[#6](-[#6])-[#7]-[#6]1-[#6]-[#6]-[#6](-[#6](-[#6]-1)(-[#6])-[#6])-[#6](=[#8])-[#6,#7]1-[#6]-[#6]-[#6](-[#6]-[#6]-1)(-[#7,#6])-[#6,#7]1:,-[#6]:,-[#6]:,-[#6]:,-[#6,#7,#8]:,-[#6]:,-1\n", "Row: 1704 Inhibition of corn earworm recombinant carboxypeptidase B expressed in Pichia pastoris system\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 26.4, mcs nAts: 8\n", "[#6,#7,#8]-,=[#6,#8,#16]-[#6,#7]1:,-[#6,#7]:,-[#6]:,-[#6,#7]:,-[#6,#7]:,-[#6,#7]:,-1\n", "Row: 1705 Inhibition of bovine carboxypeptidase A1\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 26.4, mcs nAts: 8\n", "[#6,#7,#8]-,=[#6,#8,#16]-[#6,#7]1:,-[#6,#7]:,-[#6]:,-[#6,#7]:,-[#6,#7]:,-[#6,#7]:,-1\n", "Row: 1706 Displacement of human [125I]IL-8 from human CXCR1\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 31.5, mcs nAts: 22\n", "[#6]-[#6]-[#6](-[#7]-[#6]1:[#6](-[#7]-[#6]2:[#6]:[#6]:[#6]:[#6](:[#6]:2-[#8])-[#6](=[#8])-[#7]):[#6](:[#6]:1=[#8])=[#8])-[#6]\n", "Row: 1707 Displacement of [3H]5HT from human 5HT transporter expressed in HEK293 cells by scintillation counting\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 20.5, mcs nAts: 15\n", "[#6]-[#7](-[#6](=[#8])-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1)-[#6]1-[#6]-[#6]-[#7]-[#6]-1\n", "Row: 1708 Displacement of [3H]noradrenaline from human NET receptor expressed in HEK293 cells by scintillation counting\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 20.5, mcs nAts: 15\n", "[#6]-[#7](-[#6](=[#8])-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1)-[#6]1-[#6]-[#6]-[#7]-[#6]-1\n", "Row: 1709 Displacement of [3H]dopamine from human DAT receptor expressed in HEK293 cells by scintillation counting\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 20.5, mcs nAts: 15\n", "[#6]-[#7](-[#6](=[#8])-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1)-[#6]1-[#6]-[#6]-[#7]-[#6]-1\n", "Row: 1710 Binding affinity to human prostaglandin D2 receptor by cell based radioligand displacement assay\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 29.8, mcs nAts: 24\n", "[#8]=[#6](-[#8])-[#6]-[#7]1:[#6]:[#6](-[#6]2-[#7]-[#16](=[#8])(=[#8])-[#6]3:[#6]-2:[#6]:[#6]:[#6]:[#6]:3):[#6]2:[#6]:1:[#6]:[#6]:[#6]:[#6]:2\n", "Row: 1711 Inhibition of mashroom tyrosinase\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 14.3, mcs nAts: 2\n", "[#8,#6,#7,#16]=,-[#6,#7]\n", "Row: 1712 Displacement of radio labeled 11 Tyr SST14 from human SST5 receptor expressed in CHO cells\n", " * postgresql://localhost/chembl_23\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Mean nAts 32.5, mcs nAts: 12\n", "[#6]-[#6]-[#8]-[#6]1:[#6]:[#6](-[#6]-[#7]):[#6]:[#6]:[#6]:1-[#17,#6,#7,#9]\n", "Row: 1713 Displacement of [3H] dofetilide from human ERG channel expressed in HEK293 cells\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 27.3, mcs nAts: 21\n", "[#6]-[#6]-[#6]-[#6]1:[#6]:[#6](-[#6]2:[#6]:[#6]:[#6]:[#6](:[#6]:2)-[#6](-[#9])(-[#9])-[#9]):[#7]:[#6](:[#7]:1)-[#6]#[#7]\n", "Row: 1714 Displacement of [125I]iodoproxyfan from human recombinant histamine H3 receptor expressed in human SK-N-MC cells after 1 hr by fluid scintillation counting\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 27.1, mcs nAts: 13\n", "[#6]1:,-[#6]:,-[#6,#7]:,-[#6]:,-[#6]:,-[#6,#7]:,-1-[#6,#8]-[#7,#6]1-,:[#6]-,:[#6]-,:[#6,#7,#8]-,:[#6]-,:[#6]-,:1\n", "Row: 1715 Displacement of [3H]DPCPX from human adenosine A1 receptor expressed in CHO-A1 cells after 60 mins\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 32.4, mcs nAts: 23\n", "[#6,#17]-[#6]1:[#7]:[#7](-[#6]-[#6]2:[#6]:[#6]:[#6]:[#6]:[#6]:2):[#6](:[#6]2:[#6]:1:[#6]1:[#6]:[#6](:[#7]:[#7]:1:[#6]:[#7]:2)-[#6])=[#8,#16]\n", "Row: 1716 Displacement of [3H]nisoxetine from human NET by scintillation proximity assay\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 21.0, mcs nAts: 15\n", "[#6]1:[#6]:[#6]:[#6](:[#6]:[#6]:1)-[#8]-[#6]1:[#6,#7]:[#6]:[#6]:[#6]:[#6]:1-[#8]-[#6]\n", "Row: 1717 Displacement of [3H]WIN-35,428 from human DAT by scintillation proximity assay\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 21.0, mcs nAts: 15\n", "[#6]1:[#6]:[#6]:[#6](:[#6]:[#6]:1)-[#8]-[#6]1:[#6,#7]:[#6]:[#6]:[#6]:[#6]:1-[#8]-[#6]\n", "Row: 1718 Displacement of [3H]citalopram from human SERT by scintillation proximity assay\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 21.0, mcs nAts: 15\n", "[#6]1:[#6]:[#6]:[#6](:[#6]:[#6]:1)-[#8]-[#6]1:[#6,#7]:[#6]:[#6]:[#6]:[#6]:1-[#8]-[#6]\n", "Row: 1719 Displacement of [3H]8-OH-DPAT from human cloned 5HT1A receptor by liquid scintillation spectrophotometry\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 21.0, mcs nAts: 15\n", "[#6]1:[#6]:[#6]:[#6](:[#6]:[#6]:1)-[#8]-[#6]1:[#6,#7]:[#6]:[#6]:[#6]:[#6]:1-[#8]-[#6]\n", "Row: 1720 Inhibition of Enterobacter cloacae P99 beta-lactamase AmpC P99 using nitrocefin as substrate after 30 mins by spectrophotometric analysis\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 19.2, mcs nAts: 17\n", "[#8]-[#5]1-[#8]-[#6]-[#6]2:[#6]-1:[#6]:[#6](:[#6]:[#6]:2)-[#8,#6,#7,#16]-[#6]1:[#6,#7]:[#6]:[#6]:[#6,#7]:[#6,#7]:1\n", "Row: 1721 Displacement of [125I]PPY from human recombinant NPYY5 receptor expressed in mouse LMtk- cells\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 28.8, mcs nAts: 26\n", "[#6]-[#6]1-[#7]-[#6](-[#6]2:[#6]:[#6,#7]:[#6,#7]:[#6,#7]:[#7,#6]:2)=[#7]-[#6]-1(-[#6]1:[#6]:[#6]:[#6](:[#6]:[#6]:1)-[#9])-[#6]1:[#6]:[#6]:[#6](:[#7]:[#6]:1)-[#9]\n", "Row: 1722 Inhibition of Staphylococcus aureus DHFR assessed as oxidation of NADPH using dihydrofolate as substrate pre-incubated for 10 mins before substrate addition by spectrophotometry\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 22.8, mcs nAts: 18\n", "[#7]-[#6]1:[#7]:[#6](-[#7]):[#6]2:[#6](:[#7]:1):[#6]:[#6](:[#6]:[#6]:2)-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1\n", "Row: 1723 Inhibition of human DHFR assessed as oxidation of NADPH using dihydrofolate as substrate pre-incubated for 10 mins before substrate addition by spectrophotometry\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 22.8, mcs nAts: 18\n", "[#7]-[#6]1:[#7]:[#6](-[#7]):[#6]2:[#6](:[#7]:1):[#6]:[#6](:[#6]:[#6]:2)-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1\n", "Row: 1724 Displacement of [125I]PYY from human NPY5 receptor expressed in thymidine kinase deficient mouse LM cells after 120 mins by scintillation counting\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 29.9, mcs nAts: 17\n", "[#6]-[#6,#7]-[#16](=[#8])(=[#8])-[#7]-[#6]-[#6]1-[#6]-[#6]-[#6](-[#6]-[#6]-1)-[#7]-[#6]-[#6]-[#7]\n", "Row: 1725 Displacement of [3H]-NAMH from human histamine H3 receptor expressed in CHO cells\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 28.8, mcs nAts: 18\n", "[#7]-[#6]-[#6]-[#6]-[#8]-[#6]1:[#6]:[#6]:[#6](:[#6]:[#6]:1)-[#6]1:,=[#6,#7]:,-[#6,#7]:,-[#6](:,-[#7,#6]:,-[#7,#6]:,-1)=[#8]\n", "Row: 1726 Displacement of [3H]-NAMH from rat histamine H3 receptor expressed in CHO cells\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 28.8, mcs nAts: 18\n", "[#7]-[#6]-[#6]-[#6]-[#8]-[#6]1:[#6]:[#6]:[#6](:[#6]:[#6]:1)-[#6]1:,=[#6,#7]:,-[#6,#7]:,-[#6](:,-[#7,#6]:,-[#7,#6]:,-1)=[#8]\n", "Row: 1727 Displacement of [3H]-(+)-pentazocine from sigma1 receptor in guinea pig brain membrane after 150 mins by liquid scintillation counting\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 21.3, mcs nAts: 11\n", "[#6]-[#6](=,-[#6]-[#6]-[#7])-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1\n", "Row: 1728 Displacement of [3H]CP55940 from human CB1 receptor expressed in human HEK293 cells\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 30.6, mcs nAts: 13\n", "[#6]-[#8,#6]-,=[#6]-,=[#6]-[#6]-,=[#6]-[#6]-[#6]-[#8,#6]-[#6](-[#6,#8]-[#8,#6])-,=[#6,#8]\n", "Row: 1729 Displacement of [3H]CP55940 from human CB2 receptor expressed in human HEK293 cells\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 30.6, mcs nAts: 13\n", "[#6]-[#8,#6]-,=[#6]-,=[#6]-[#6]-,=[#6]-[#6]-[#6]-[#8,#6]-[#6](-[#6,#8]-[#8,#6])-,=[#6,#8]\n", "Row: 1730 Displacement of [3H]epibatidine from Lymnaea stagnalis acetylcholine binding protein expressed using baculoviral system after 1.5 hrs by scintillation counting\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 25.5, mcs nAts: 10\n", "[#6]-[#8]-[#6]1-[#6]-[#6]2-[#6]-[#6]-[#6](-[#6]-1)-[#7]-2\n", "Row: 1731 Displacement of [3H]epibatidine from Aplysia californica acetylcholine binding protein expressed using baculoviral system after 1.5 hrs by scintillation counting\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 25.5, mcs nAts: 10\n", "[#6]-[#8]-[#6]1-[#6]-[#6]2-[#6]-[#6]-[#6](-[#6]-1)-[#7]-2\n", "Row: 1732 Inhibition of rabbit muscle glycogen phosphorylase b assessed as inorganic phosphate release at pH 6.8\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 21.6, mcs nAts: 11\n", "[#6,#8,#15]-[#7,#6]-[#6]1-[#8]-[#6]-[#6](-[#6](-[#6]-1-[#8])-[#8])-[#8]\n", "Row: 1733 Displacement of [125I]-Ghrelin from human GHSR membranes overexpressing GSH-R1a by scintillation counting\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 32.2, mcs nAts: 29\n", "[#6]-[#6]1:[#7]:[#6]2:[#6,#7]:[#6,#7]:[#6](:[#6,#7]:[#6]:2:[#6](:[#7]:1-[#6]-[#6]1-[#6]-[#6]-[#6]-[#7](-[#6]-1)-[#6](-[#6])-[#6])=[#8])-[#8]-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1\n", "Row: 1734 Displacement of 3-[4-({2',6'-dimethyl-6-[(4-[3H])-phenylmethoxy]biphenyl-3-yl}methoxy)phenyl] propanoic acid from human GPR40 receptor expressed in CHO cells after 90 mins by scintillation counting in presence of 0.2% BSA\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 31.9, mcs nAts: 21\n", "[#6]-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1-[#6]1:[#6]:[#6]:[#6]:[#6](:[#6]:1)-[#6]-[#8,#7]-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6,#7]:1\n", "Row: 1735 Displacement of [125I]CGRP from CGRP receptor in human SK-N-MC cell membrane after 2 hrs\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 43.4, mcs nAts: 27\n", "[#6]-[#6]-[#6](-[#7]-[#6](=[#8])-[#7]1-[#6]-[#6]-[#6](-[#6]-[#6]-1)-[#7])-[#6](=[#8])-[#7]1-[#6]-[#6]-[#6](-[#6]-[#6]-1)-[#7]1-[#6]-[#6]-[#6]-[#6]-[#6]-1\n", "Row: 1736 Displacement of [125I]-BNtxA from mouse cloned MOR-1 expressed in CHO cell membrane after 90 mins\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 33.7, mcs nAts: 27\n", "[#6]=[#6]-[#6]-[#7]1-[#6]-[#6]-[#6]23-[#6]4(-[#6]-1-[#6]-[#6]1:[#6]-2:[#6](:[#6](:[#6]:[#6]:1)-[#8])-[#8]-[#6]-3-[#6](-[#6]-[#6]-4)-[#7]-[#6](-,=[#6,#8])=,-[#8,#6])-[#8]\n", "Row: 1737 Displacement of [125I]-BNtxA from mouse cloned KOR-1 expressed in CHO cell membrane after 90 mins\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 33.7, mcs nAts: 27\n", "[#6]=[#6]-[#6]-[#7]1-[#6]-[#6]-[#6]23-[#6]4(-[#6]-1-[#6]-[#6]1:[#6]-2:[#6](:[#6](:[#6]:[#6]:1)-[#8])-[#8]-[#6]-3-[#6](-[#6]-[#6]-4)-[#7]-[#6](-,=[#6,#8])=,-[#8,#6])-[#8]\n", "Row: 1738 Displacement of [125I]-BNtxA from mouse cloned DOR-1 expressed in CHO cell membrane after 90 mins\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 33.7, mcs nAts: 27\n", "[#6]=[#6]-[#6]-[#7]1-[#6]-[#6]-[#6]23-[#6]4(-[#6]-1-[#6]-[#6]1:[#6]-2:[#6](:[#6](:[#6]:[#6]:1)-[#8])-[#8]-[#6]-3-[#6](-[#6]-[#6]-4)-[#7]-[#6](-,=[#6,#8])=,-[#8,#6])-[#8]\n", "Row: 1739 Displacement of [3H]GR113808 from 5HT4R in guinea pig striatal membranes\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 26.6, mcs nAts: 25\n", "[#6]-[#6]-[#6]-[#7]1-[#6]-[#6]-[#6](-[#6]-[#6]-1)-[#6]-[#8]-[#6]1:[#7]:[#6]2:[#6]:[#6]:[#6]:[#6]:[#6]:2:[#6]2:[#6]:1:[#6]:[#6]:[#6,#7]:[#6,#7]:2\n", "Row: 1740 Antagonist activity at CB1 receptor (unknown origin)\n", " * postgresql://localhost/chembl_23\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Mean nAts 29.5, mcs nAts: 15\n", "[#6,#7]1:[#6](-[#6](=[#8])-[#7]-[#7,#6]):[#7,#6]:[#7,#6]:[#6,#7]:1-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1\n", "Row: 1741 Displacement of [3H]-citalopram from SERT in rat cerebral cortex after 1 hr by liquid scintillation counting analysis\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 33.7, mcs nAts: 19\n", "[#8]=[#6]1-[#6]-[#6](-[#6]2:[#6]:[#7]:[#6]3:[#6]:2:[#6]:[#6]:[#6]:[#6]:3)-[#6](-[#7]-1-[#6]-[#6]-[#7,#6])=[#8]\n", "Row: 1742 Displacement of [3H]-8-OH-DPAT from 5HT1A receptor in rat hippocampal membranes after 20 mins\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 33.7, mcs nAts: 19\n", "[#8]=[#6]1-[#6]-[#6](-[#6]2:[#6]:[#7]:[#6]3:[#6]:2:[#6]:[#6]:[#6]:[#6]:3)-[#6](-[#7]-1-[#6]-[#6]-[#7,#6])=[#8]\n", "Row: 1743 Displacement of (-)-[3H]vesamicol from human VAChT expressed in rat PC12 cell membrane after 20 hrs\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 26.5, mcs nAts: 20\n", "[#8,#6]=,-[#6](-,=[#6,#8])-[#6]1-[#6]-[#6]-[#7](-[#6]-[#6]-1)-[#6]1-[#6]-[#6]2:[#6]:[#6]:[#6]:[#6]:[#6]:2-[#6]-[#6]-1-[#8]\n", "Row: 1744 Binding affinity to GluA2 receptor (unknown origin)\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 24.7, mcs nAts: 20\n", "[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1-[#8,#6,#7,#16]-[#6]1-[#6]-[#6]-[#6]2-[#6](-[#6]-1)-[#6]-[#6](-[#7]-[#6]-2)-[#6](=[#8])-[#8]\n", "Row: 1745 Binding affinity to GluK1 receptor (unknown origin)\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 24.7, mcs nAts: 20\n", "[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1-[#8,#6,#7,#16]-[#6]1-[#6]-[#6]-[#6]2-[#6](-[#6]-1)-[#6]-[#6](-[#7]-[#6]-2)-[#6](=[#8])-[#8]\n", "Row: 1746 Displacement of [3H]-CP-55940 from rat CB2 receptor expressed in CHO cells after 90 mins\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 31.0, mcs nAts: 24\n", "[#6]-[#7]1-[#6]-[#6]-[#7](-[#6]-[#6]-1)-[#6]1:[#7]:[#6](-[#6]):[#7]:[#6]2:[#6]:1:[#7]:[#6](:[#7]:2-[#6])-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1\n", "Row: 1747 Displacement of [3H]-CP-55940 from human CB2 receptor expressed in CHO cells after 90 mins\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 31.0, mcs nAts: 24\n", "[#6]-[#7]1-[#6]-[#6]-[#7](-[#6]-[#6]-1)-[#6]1:[#7]:[#6](-[#6]):[#7]:[#6]2:[#6]:1:[#7]:[#6](:[#7]:2-[#6])-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1\n", "Row: 1748 Displacement of [3H]-R-alpha-ethylhistamine from histamine H3 receptor in rat cerebral cortical tissue membranes after 45 mins by liquid scintillation spectrometry\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 27.4, mcs nAts: 23\n", "[#6,#7]-[#6,#7]1:,-[#6]:,-[#6,#7]:,-[#6](:,-[#6,#7]:,-[#7,#6]:,-1)-[#8]-[#6]1:[#6]:[#6]:[#6]2:[#6](:[#6]:1)-[#6]-[#6]-[#7](-[#6]-[#6]-2)-[#6]1-[#6]-[#6]-[#6]-1\n", "Row: 1749 Displacement of [3H]-CP55940 from human CB1 receptor transfected in HEK-293EBNA cells after 90 mins by luminescence counting analysis\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 29.1, mcs nAts: 19\n", "[#6]1:,-[#6]:,-[#6]:,-[#6,#7](:,-[#6]:,-[#6]:,-1)-[#6]-[#8,#6]-[#6,#7]1:[#7]:[#7,#6](-[#6,#8]-[#6]):[#6]2:[#6]:1:[#6]:[#6]:[#6]:[#6]:2\n", "Row: 1750 Inhibition of rabbit muscle glycogen phosphorylase b\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 22.3, mcs nAts: 12\n", "[#6,#8]-[#7,#6]-[#6]1-[#8]-[#6](-[#6,#7])-[#6](-[#6](-[#6]-1-[#8])-[#8])-[#8]\n", "Row: 1751 Displacement of [3H]LSD from human recombinant 5-HT6 receptor expressed in CHO-K1 cell membrane after 3 hrs by liquid scintillation counting analysis\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 24.2, mcs nAts: 12\n", "[#8]=[#6]1-[#6,#8]-[#16,#6]-[#6]-[#7]-1-[#6]1:[#6]:[#6,#7]:[#6]:[#6]:[#6,#7]:1\n", "Row: 1752 Binding affinity to human CB1 receptor expressed in CHO cells by radioligand displacement based scintillation counting analysis\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 37.7, mcs nAts: 24\n", "[#6]-[#7]1:[#7]:[#6]2:[#6](-[#6]3:[#6]:[#6]:[#7,#6]:[#6]:[#6]:3):[#6](-[#6]3:[#6]:[#6,#7]:[#6,#7]:[#6,#7]:[#6]:3):[#6](:[#7]:[#7]:2:[#6]:1=[#8])=,-[#8,#6]\n", "Row: 1753 Inhibition of wild type human recombinant ALK kinase domain (amino acids 1093 to 1141) expressed in baculovirus system using 5'FAM-KKSRGDYMTMQIG-CONH2 as substrate incubated for 15 mins prior to ATP addition measured after 1 hr by microfluidic mobility shift assay\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 29.0, mcs nAts: 7\n", "[#8,#6,#7]-[#6]1:[#6,#7]:[#6,#7]:[#6]:[#6,#7]:[#6,#7]:1\n", "Row: 1754 Displacement of (+)-pentazocine from sigma1 receptor in guinea pig brain cortex membrane by scintillation counting analysis\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 24.2, mcs nAts: 14\n", "[#6]-[#6]:,-[#6]:[#6](:,-[#6]:,-[#6]:,-[#6,#7]-[#8,#6]-[#6])-,:[#6]=,-,:[#6]-,:[#6](-,:[#8,#6])-[#6,#8]\n", "Row: 1755 Displacement of [125I]-Orexin A from human OX2R expressed in CHO cells after 30 mins by topcount analysis\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 30.7, mcs nAts: 15\n", "[#6,#8](-[#6,#7]-[#8,#6]-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1)-[#6]1:,-[#6,#7]:,-[#6]:,-[#6]:,-[#6]:,-[#6]:,-1\n", "Row: 1756 Displacement of [3H]prazosin from human recombinant alpha1A adrenoceptor expressed in CHO cells after 30 mins by liquid scintillation counting\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 31.5, mcs nAts: 25\n", "[#6]-[#8]-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1-[#7]1-[#6]-[#6]-[#7](-[#6]-[#6]-1)-[#6]-[#6]1-[#6]-[#8]-[#6]2(-[#8]-1)-[#6]-[#6]-[#6,#7,#8,#16]-[#6]-[#6]-2\n", "Row: 1757 Displacement of [3H](+)-pentazocine from human sigma 1 receptor in human Jurkat cell membranes incubated for 2 hrs by liquid scintillation counting\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 26.9, mcs nAts: 10\n", "[#6,#8,#16]1:,-[#6]-,:[#6]-,:[#7,#6](-,:[#6]-,:[#6]-,:1)-[#6]-[#6,#7]-[#6]-[#7,#6]\n", "Row: 1758 Displacement of 2-[125I]iodomelatonin from human MT1 receptor stably transfected in HEK293 cells after 120 mins by scintillation counting\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 19.2, mcs nAts: 13\n", "[#6]1:,-[#6]:,-[#6]:,-[#6]2:,-[#6](:,-[#6,#7]:,-1)-[#6]1-,:[#7,#6]-,:[#6]-,:[#6]-,:[#6]-,:[#6]-,:1-[#6]-2\n", "Row: 1759 Displacement of 2-[125I]iodomelatonin from human MT2 receptor stably transfected in HEK293 cells after 120 mins by scintillation counting\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 19.2, mcs nAts: 13\n", "[#6]1:,-[#6]:,-[#6]:,-[#6]2:,-[#6](:,-[#6,#7]:,-1)-[#6]1-,:[#7,#6]-,:[#6]-,:[#6]-,:[#6]-,:[#6]-,:1-[#6]-2\n", "Row: 1760 Inhibition of Hsp90 (unknown origin) by FP displacement assay\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 28.1, mcs nAts: 24\n", "[#7]-[#6]1:[#7]:[#6]2:[#6]3:[#6]:[#6]:[#6]:[#6]:[#6]:3:[#7]:[#6](:[#7]:2:[#7]:1)-[#6]-[#6]1:[#6]:[#6]:[#6]2:[#6](:[#6]:1)-[#8]-[#6]-[#8]-2\n", "Row: 1761 Displacement of [3H]U-69593 from kappa opioid receptor in guinea pig brain membranes after 2 hrs by scintillation counting analysis\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 30.2, mcs nAts: 12\n", "[#7,#8]-,=[#6](=,-[#8,#7])-[#6]-[#6]1:[#6]:[#6]:[#6](:[#6](:[#6]:1)-[#17])-[#17]\n", "Row: 1762 Displacement of radioligand from human KISS1R transfected in CHO cells\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 90.5, mcs nAts: 45\n", "[#6]-[#7]-[#6](=[#7])-[#7]-[#6]-[#6]-[#6]-[#6](-[#7]-[#6](=[#8])-[#6](-[#6]-[#6](-[#6])-[#6])-[#7]-[#6](=[#8])-[#7]-[#7]-[#6](=[#8])-[#6](-[#6]-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1)-[#7]-[#6](=,-[#8,#6])-,=[#6,#8])-[#6](=[#8])-[#7]-[#6](-[#6]-[#6])-[#6](-[#7])=[#8]\n", "Row: 1763 Displacement of radioligand from rat KISS1R transfected in CHO cells\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 90.5, mcs nAts: 45\n", "[#6]-[#7]-[#6](=[#7])-[#7]-[#6]-[#6]-[#6]-[#6](-[#7]-[#6](=[#8])-[#6](-[#6]-[#6](-[#6])-[#6])-[#7]-[#6](=[#8])-[#7]-[#7]-[#6](=[#8])-[#6](-[#6]-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1)-[#7]-[#6](=,-[#8,#6])-,=[#6,#8])-[#6](=[#8])-[#7]-[#6](-[#6]-[#6])-[#6](-[#7])=[#8]\n", "Row: 1764 Displacement of [3H]spiperone from human D2long receptor stably expressed in CHO cell membranes by competitive binding assay\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 58.7, mcs nAts: 29\n", "[#6,#8]-,=[#6](=,-[#8,#6])-[#8]-[#6]1(-[#6]2:[#6]:[#6]:[#6](:[#6]:[#6]:2)-[#17])-[#6]-[#6]-[#7](-[#6]-[#6]-1)-[#6]-[#6]-[#6]-[#6](=[#8])-[#6]1:[#6]:[#6]:[#6](:[#6]:[#6]:1)-[#9]\n", "Row: 1765 Displacement of [3H]spiperone from human D2short receptor stably expressed in CHO cell membranes by competitive binding assay\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 58.7, mcs nAts: 29\n", "[#6,#8]-,=[#6](=,-[#8,#6])-[#8]-[#6]1(-[#6]2:[#6]:[#6]:[#6](:[#6]:[#6]:2)-[#17])-[#6]-[#6]-[#7](-[#6]-[#6]-1)-[#6]-[#6]-[#6]-[#6](=[#8])-[#6]1:[#6]:[#6]:[#6](:[#6]:[#6]:1)-[#9]\n", "Row: 1766 Displacement of [3H]spiperone from human D3 receptor stably expressed in CHO cell membranes by competitive binding assay\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 58.7, mcs nAts: 29\n", "[#6,#8]-,=[#6](=,-[#8,#6])-[#8]-[#6]1(-[#6]2:[#6]:[#6]:[#6](:[#6]:[#6]:2)-[#17])-[#6]-[#6]-[#7](-[#6]-[#6]-1)-[#6]-[#6]-[#6]-[#6](=[#8])-[#6]1:[#6]:[#6]:[#6](:[#6]:[#6]:1)-[#9]\n", "Row: 1767 Displacement of [3H]spiperone from human D4.4 receptor stably expressed in CHO cell membranes by competitive binding assay\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 58.7, mcs nAts: 29\n", "[#6,#8]-,=[#6](=,-[#8,#6])-[#8]-[#6]1(-[#6]2:[#6]:[#6]:[#6](:[#6]:[#6]:2)-[#17])-[#6]-[#6]-[#7](-[#6]-[#6]-1)-[#6]-[#6]-[#6]-[#6](=[#8])-[#6]1:[#6]:[#6]:[#6](:[#6]:[#6]:1)-[#9]\n", "Row: 1768 Displacement of [3H]SCH23390 from porcine striatal membranes D1 receptor by competitive binding assay\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 58.7, mcs nAts: 29\n", "[#6,#8]-,=[#6](=,-[#8,#6])-[#8]-[#6]1(-[#6]2:[#6]:[#6]:[#6](:[#6]:[#6]:2)-[#17])-[#6]-[#6]-[#7](-[#6]-[#6]-1)-[#6]-[#6]-[#6]-[#6](=[#8])-[#6]1:[#6]:[#6]:[#6](:[#6]:[#6]:1)-[#9]\n", "Row: 1769 Inhibition of human factor 7a using H-D-Ile-Pro-Arg-pNA substrate\n", " * postgresql://localhost/chembl_23\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Mean nAts 35.7, mcs nAts: 21\n", "[#6]-[#6]-[#8]-[#6]1:[#6]:[#6](-[#6](-[#7]-[#6]2:[#6]:[#6]:[#6](:[#6]:[#6]:2)-[#6](=[#7])-[#7])-[#6]):[#6]:[#6]:[#6]:1\n", "Row: 1770 Displacement of [3H]DAMGO from human recombinant opioid mu receptor expressed in CHO cell membranes after 2 hrs by liquid scintillation counting method\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 32.3, mcs nAts: 15\n", "[#6,#8]-[#7,#6]1-,:[#6]-,:[#6]-,:[#6](-,:[#6]-,:[#6]-,:1)-[#6,#8]:,-[#6]:,-[#6](:,-[#6]:,-[#6]:,-[#6,#7]-[#6])-[#8,#6]\n", "Row: 1771 Displacement of [3H]NMS from human muscarinic M3 receptor expressing CHO-K1 cells incubated for 60 mins or 6 hrs by liquid scintillation counting\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 49.8, mcs nAts: 27\n", "[#8]=[#6](-[#7]-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1)-[#8]-[#6]1-[#6]-[#6]-[#7](-[#6]-[#6]-1)-[#6]-[#6]-[#6,#7]-[#6,#7]-,=[#6,#8]\n", "Row: 1772 Displacement of human recombinant CB1 receptor expressed in HEK293 cell membranes incubated for 90 mins by Cheng-Prusoff equation based analysis\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 22.2, mcs nAts: 13\n", "[#7,#6]-[#6,#7]-[#6]-[#6]-,=[#6]-[#6]-,=[#8,#6,#16]-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1\n", "Row: 1773 Displacement of human recombinant CB2 receptor expressed in HEK293 cell membranes incubated for 90 mins by Cheng-Prusoff equation based analysis\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 22.2, mcs nAts: 13\n", "[#7,#6]-[#6,#7]-[#6]-[#6]-,=[#6]-[#6]-,=[#8,#6,#16]-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1\n", "Row: 1774 Inhibition of human carbonic anhydrase-1 incubated for 15 mins by stopped-flow CO2 hydration assay\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 27.8, mcs nAts: 23\n", "[#6]-[#6]-[#6]-[#7](-[#6]-[#6]-[#6])-[#16](=[#8])(=[#8])-[#6]1:[#6]:[#6]:[#6](:[#6]:[#6]:1)-[#6](=[#8])-[#7]-[#6]-[#6](-,=[#7,#8])=,-[#8]\n", "Row: 1775 Inhibition of human carbonic anhydrase-2 incubated for 15 mins by stopped-flow CO2 hydration assay\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 27.8, mcs nAts: 23\n", "[#6]-[#6]-[#6]-[#7](-[#6]-[#6]-[#6])-[#16](=[#8])(=[#8])-[#6]1:[#6]:[#6]:[#6](:[#6]:[#6]:1)-[#6](=[#8])-[#7]-[#6]-[#6](-,=[#7,#8])=,-[#8]\n", "Row: 1776 Inhibition of human carbonic anhydrase-9 incubated for 15 mins by stopped-flow CO2 hydration assay\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 27.8, mcs nAts: 23\n", "[#6]-[#6]-[#6]-[#7](-[#6]-[#6]-[#6])-[#16](=[#8])(=[#8])-[#6]1:[#6]:[#6]:[#6](:[#6]:[#6]:1)-[#6](=[#8])-[#7]-[#6]-[#6](-,=[#7,#8])=,-[#8]\n", "Row: 1777 Inhibition of human carbonic anhydrase-12 incubated for 15 mins by stopped-flow CO2 hydration assay\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 27.8, mcs nAts: 23\n", "[#6]-[#6]-[#6]-[#7](-[#6]-[#6]-[#6])-[#16](=[#8])(=[#8])-[#6]1:[#6]:[#6]:[#6](:[#6]:[#6]:1)-[#6](=[#8])-[#7]-[#6]-[#6](-,=[#7,#8])=,-[#8]\n", "Row: 1778 Displacement of [125I]-Tyr0-sauvagine from human CRF1 receptor expressed in HEK293T cells after 2 hrs by scintillation counting\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 48.0, mcs nAts: 11\n", "[#6]-[#6]:[#6]:[#6](-[#7](-[#6])-[#6]):[#6,#7]-,:[#7,#6]-,:[#6,#7]=,-[#8,#6]\n", "Row: 1779 BindingDB_Patents: Radioligand Binding Assay. The relative affinity of the various compounds for the human 5-HT3 receptor was measured in a radioligand binding assay, using a scintillation proximity assay (SPA) format. Test compounds were dissolved to 10 mM in 100% DMSO, then serially diluted at 10x assay concentrations in 100% DMSO in 96-well polypropylene plates and further diluted to 4x assay concentrations with the assay buffer. Samples were incubated in 50 mM Tris-HCl, pH 7.5, 3 mM MgCl2, 1 mM EDTA and 10% DMSO with 10 nM [9-methyl-3H]BRL-43694 (Perkin Elmer), 3 ug of human 5-HT3 receptor membranes (Perkin Elmer) and 0.5 mg/mL SPA beads (WGA PVT, Amersham Biosciences) in a final volume of 0.2 mL. Binding reactions were set up in wells of PicoPlates-96 (Perkin Elmer) by adding consecutively 50 uL of each competing compound or buffer, SPA beads, the radioligand and 5-HT3 receptor membranes. After an overnight incubation at room temperature on a Nutator mixer, plates were centrifuged for 15 min at 1,500 rpm.\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 23.5, mcs nAts: 9\n", "[#7,#6]1:,-[#6,#7,#16]:,-[#6,#7]:,-[#6]2:[#6]:,-1:[#6]:,-[#6]:,-[#6,#7]:,-[#6]:,-2\n", "Row: 1780 BindingDB_Patents: Binding Assay. Binding assay of opioid receptor.\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 36.8, mcs nAts: 29\n", "[#6,#16]-[#7]-[#6](=[#8])-[#6]1-[#6]-[#6]2(-[#8])-[#6]3-[#6]-[#6]4:[#6]5-[#6]-2(-[#6](-[#6]-,=1=,-[#8,#7])-[#8]-[#6]:5:[#6](:[#6]:[#6]:4)-[#8])-[#6]-[#6]-[#7]-3-[#6]-[#6]1-[#6]-[#6]-1\n", "Row: 1781 Displacement of [3H]spiperone from dopamine D2 receptor in rat striatum\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 32.3, mcs nAts: 18\n", "[#6]-[#6]-[#7]1-[#6]-[#6]-[#6](-[#6]-[#6]-1)-[#6]1:[#7]:[#8]:[#6]2:[#6]:1:[#6]:[#6]:[#6](:[#6]:2)-[#9]\n", "Row: 1782 Displacement of [3H]8-OH-DPAT from 5HT1A receptor in rat brain cortex\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 32.3, mcs nAts: 18\n", "[#6]-[#6]-[#7]1-[#6]-[#6]-[#6](-[#6]-[#6]-1)-[#6]1:[#7]:[#8]:[#6]2:[#6]:1:[#6]:[#6]:[#6](:[#6]:2)-[#9]\n", "Row: 1783 Displacement of [3H]ketanserin from 5HT2A receptor in rat brain cortex\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 32.3, mcs nAts: 18\n", "[#6]-[#6]-[#7]1-[#6]-[#6]-[#6](-[#6]-[#6]-1)-[#6]1:[#7]:[#8]:[#6]2:[#6]:1:[#6]:[#6]:[#6](:[#6]:2)-[#9]\n", "Row: 1784 Inhibition of human carbonic anhydrase 1 by Stopped-Flow CO2 Hydrase assay\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 15.2, mcs nAts: 11\n", "[#8,#16]=,-[#6]1:[#6]:[#6]:[#6]2:[#6](:[#8,#6,#16]:1):[#6,#8]:[#6]:[#6]:[#6,#8]:2\n", "Row: 1785 Inhibition of human carbonic anhydrase 2 by Stopped-Flow CO2 Hydrase assay\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 15.2, mcs nAts: 11\n", "[#8,#16]=,-[#6]1:[#6]:[#6]:[#6]2:[#6](:[#8,#6,#16]:1):[#6,#8]:[#6]:[#6]:[#6,#8]:2\n", "Row: 1786 Inhibition of human carbonic anhydrase 9 catalytic domain by Stopped-Flow CO2 Hydrase assay\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 15.2, mcs nAts: 11\n", "[#8,#16]=,-[#6]1:[#6]:[#6]:[#6]2:[#6](:[#8,#6,#16]:1):[#6,#8]:[#6]:[#6]:[#6,#8]:2\n", "Row: 1787 Inhibition of human carbonic anhydrase 12 catalytic domain by Stopped-Flow CO2 Hydrase assay\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 15.2, mcs nAts: 11\n", "[#8,#16]=,-[#6]1:[#6]:[#6]:[#6]2:[#6](:[#8,#6,#16]:1):[#6,#8]:[#6]:[#6]:[#6,#8]:2\n", "Row: 1788 Binding affinity to rat A2A adenosine receptor\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 30.6, mcs nAts: 26\n", "[#7]-[#6](:[#7]:[#6](-[#6](=[#8])-[#7]-[#6]-[#6]1:[#6]:[#6]:[#6]:[#6]2:[#6]:1:[#7]:[#6]:[#6]:[#6]:2):[#6]1:[#6]:[#6]:[#6]:[#6](:[#6]:1)-[#9,#6,#8,#16,#17,#35,#53]):[#7]\n", "Row: 1789 Inhibition of human recombinant N-terminal 6-His-tagged PAK1 kinase domain (249 to 545 residues) expressed in Escherichia coli BL21(DE3) assessed as phosphorylation of coumarin labeled FRET peptide substrate at Ser/Thr19 preincubated for 10 mins followed by ATP addition measured after 60 mins by Z'-LYTE assay\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 33.4, mcs nAts: 23\n", "[#6]-[#7]-[#6]1:[#7]:[#6]:[#6]2:[#6](:[#7]:1):[#7](:[#6](:[#6](:[#6]:2)-[#6]1:[#6]:[#6]:[#6](:[#6]:[#6]:1-[#17,#6])-[#7,#6])=[#8])-[#6]-[#6]\n", "Row: 1790 Displacement of [3H]spiperone from human recombinant dopamine D2 receptor\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 32.9, mcs nAts: 18\n", "[#6,#8]-,=[#6](=,-[#8,#6])-[#7]-[#6]1:[#6]:[#6]:[#6]:[#6](:[#6]:1)-[#6]1-[#6]-[#6]-[#7](-[#6]-[#6]-1)-[#6]-[#6]\n", "Row: 1791 BindingDB_Patents: Competition Binding Assay. Competition binding assay using hNK3 receptor.\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 35.3, mcs nAts: 30\n", "[#6]-[#6]1(-[#6]-[#8]-[#6]2:[#6]:[#6]:[#6](:[#6]:[#7]:2)-[#17])-[#6]-[#7](-[#6](=[#8])-[#6,#7]2-,:[#6]-,:[#6]-,:[#8,#6,#7]-,:[#6,#7]-,:[#6]-,:2)-[#6]-[#6]-1-[#6]1:[#6]:[#6]:[#6](:[#6]:[#6]:1)-[#17]\n", "Row: 1792 Displacement of [3H]prazosin from rat adrenergic alpha1A receptor expressed in fibroblast cells\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 33.0, mcs nAts: 26\n", "[#6]1-[#6]-[#6,#7]-[#6]2:[#6]-1:[#6]:[#6](:[#6]:[#6]:2)-[#6]-[#6]-[#7]1-[#6]-[#6]-[#7](-[#6]-[#6]-1)-[#6]1:[#7]:[#16]:[#6]2:[#6]:1:[#6]:[#6]:[#6]:[#6]:2\n", "Row: 1793 Displacement of N-methyl [3H]-scopolamine from recombinant human muscarinic acetylcholine receptor M2 expressed in CHO cells after 2 hrs by liquid scintillation counting\n", " * postgresql://localhost/chembl_23\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Mean nAts 34.8, mcs nAts: 21\n", "[#6]-[#8,#6]-[#6]1:[#6]:[#6]:[#6](:[#6,#7]:[#6]:1)-[#6]-[#6](=[#8])-[#7]1-[#6]-[#6]-[#6]2(-[#6]-[#6]-1)-[#6]-[#7](-[#6]-2)-[#6]\n", "Row: 1794 Displacement of [3H]spiperone from dopamine D2 receptor in Sprague-Dawley albinus rat striatal membranes after 15 mins\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 27.6, mcs nAts: 16\n", "[#6,#7]-[#6]-,=,#[#6]-[#6,#7]-[#7,#6]-[#6]-[#6]1-,:[#6]-,:[#6]-,:[#6]:[#6](-,:[#8,#6,#7]-,:1):[#6]:[#6]:[#6]:[#6]\n", "Row: 1795 Binding affinity to I1 imidazoline binding site in Rattus norvegicus (rat) PC12 cells\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 15.4, mcs nAts: 7\n", "[#6]1:,-[#6,#7]:,=[#6]:,-[#6](:,=[#6]:,-[#6]:,-1)-[#8,#6,#7,#17]\n", "Row: 1796 Displacement of [3H]LSD from rat cloned 5HT7 receptor expressed in HEK293 cells\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 31.2, mcs nAts: 21\n", "[#8,#6,#16]-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1-[#7]1-[#6]-[#6]-[#7](-[#6]-[#6]-1)-[#6]-[#6]-[#6]-[#6]-[#6]-[#6](=,-[#8,#7])-,=[#7,#8]\n", "Row: 1797 Displacement of [3H]8-OH-DPAT from human cloned 5HT1A receptor expressed in HEK293 cells\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 31.4, mcs nAts: 21\n", "[#8,#6,#16]-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1-[#7]1-[#6]-[#6]-[#7](-[#6]-[#6]-1)-[#6]-[#6]-[#6]-[#6]-[#6]-[#6](=,-[#8,#7])-,=[#7,#8]\n", "Row: 1798 Displacement of [3H]T-226296 from rat recombinant MCH1 receptor\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 32.9, mcs nAts: 18\n", "[#6,#8]-,=[#6](=,-[#8,#6])-[#7]-[#6]1:[#6]:[#6]:[#6]:[#6](:[#6]:1)-[#6]1-[#6]-[#6]-[#7](-[#6]-[#6]-1)-[#6]-[#6]\n", "Row: 1799 Inhibition of HIV-1 protease by fluorometric assay\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 45.1, mcs nAts: 31\n", "[#6]-[#6]-[#7]1-[#6](-[#6]-[#8]-[#6]2:[#6]:[#6]:[#6]:[#6]:[#6]:2)-[#6](-[#8])-[#6](-[#8])-[#6](-[#7](-[#16]-1(=[#8])=[#8])-[#6]-[#6])-[#6]-[#8]-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1\n", "Row: 1800 Displacement of [3H]spiroperidol from human cloned dopamine D2L receptor expressed in rat C6 cells\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 31.7, mcs nAts: 21\n", "[#8,#6,#16]-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1-[#7]1-[#6]-[#6]-[#7](-[#6]-[#6]-1)-[#6]-[#6]-[#6]-[#6]-[#6]-[#6](=,-[#8,#7])-,=[#7,#8]\n", "Row: 1801 BindingDB_Patents: Radioligand Dose-Displacement Binding Assay. Radioligand dose displacement assays used 0.4 nM [3H]-U69,593 (GE Healthcare, Piscataway, N.J.; 40 Ci/mmole) with 15 µg membrane protein (recombinant ¿ opioid receptor expressed in HEK 293 cells; in-house prep) in a final volume of 200 µl binding buffer (5% DMSO, 50 mM Trizma base, pH 7.4). Non-specific binding was determined in the presence of 10 µM unlabeled naloxone or U69,593. All reactions were performed in 96-well polypropylene plates for 1 hour at a temperature of about 25° C. Binding reactions were terminated by rapid filtration onto 96-well Unifilter GF/C filter plates (Perkin Elmer, Shelton, Conn.) presoaked in 0.5% polyethylenimine (Sigma). Harvesting was performed using a 96-well tissue harvester (Perkin Elmer, Shelton, Conn.) followed by five filtration washes with 200 µl ice-cold binding buffer. Filter plates were subsequently dried at 50° C. for 1-2 hours.\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 34.3, mcs nAts: 27\n", "[#6]-[#7]1-[#6]-[#6]-[#6]23-[#6](-[#6]-1-[#6]-[#6]1:[#6]:[#6]:[#6](:[#6]:[#6]-2:1)-[#8])-[#6]-[#6]1:[#6]:[#6](:[#6](:[#7]:[#6]:1-[#6]-3)=[#8])-[#6](-,=[#7,#8])=,-[#8,#7]\n", "Row: 1802 Inhibitory concentration against human immunodeficiency virus -1 protease\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 65.1, mcs nAts: 44\n", "[#6]-[#6](-[#7]-[#6](=[#8])-[#6]-[#6,#7]-[#6]-[#6]-[#6]-[#6]-[#6]-[#6]-[#6]-[#6]-[#6]-[#6]-[#6]-[#6]-[#6]-[#7,#6]-[#6]-[#6](=[#8])-[#7]-[#6](-[#6](=,-[#8,#6,#7])-,=[#8,#6,#7])-[#6])-[#6](=[#8])-[#7]-[#6](-[#6]-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1)-[#6](-,=[#7,#8])=,-[#8,#7]\n", "Row: 1803 Binding affinity to human GnRHR\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 40.1, mcs nAts: 32\n", "[#7]-[#6](-[#6]-[#7]1:[#6](=[#8]):[#6](-[#6]2:[#6]:[#6]:[#6]:[#6]:[#6]:2):[#6]:[#7](:[#6]:1=[#8])-[#6]-[#6]1:[#6](-[#9,#16]):[#6]:[#6]:[#6]:[#6]:1-[#9,#6,#16])-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1\n", "Row: 1804 Inhibition of wild type HIV1 reverse transcriptase by SPA assay\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 30.0, mcs nAts: 24\n", "[#7]#[#6]-[#6]1:[#6]:[#6](-[#17]):[#6]:[#6](:[#6]:1)-[#8]-[#6]1:[#6]:[#6](-[#8]-[#6]-[#6]2:[#6,#7,#8]:[#6,#7]:[#7,#6,#8]:[#7,#6,#8]:2):[#6]:[#6]:[#6]:1-[#17]\n", "Row: 1805 Inhibition of rat FAAH\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 22.4, mcs nAts: 20\n", "[#8]=[#6](-[#6]-[#6]-[#6]-[#6]-[#6]-[#6]-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1)-[#6]1:[#7,#8]:[#6](-[#35,#6,#8,#16,#17,#53]):[#6]:[#8,#7]:1\n", "Row: 1806 Binding affinity to human prostasin\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 52.4, mcs nAts: 21\n", "[#6,#8]-,=[#6](=,-[#8,#6])-[#7]-[#6](-[#6]-[#6]-[#6]-[#6]-[#7])-[#6](=[#8])-[#6]1:[#7]:[#6]2:[#6]:[#6]:[#6]:[#6]:[#6]:2:[#8]:1\n", "Row: 1807 Displacement of [3H]N-methylscopolamine from human muscarinic M1 receptor expressed in CHO Flp-In cells after 90 mins by scintillation counting\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 22.5, mcs nAts: 16\n", "[#6]-[#7]-[#6]-[#6]-[#6]1:[#16]:[#6]2:[#6]:[#6]:[#6]:[#6]:[#6]:2:[#6]:1-[#6](-[#6])-[#6,#7]\n", "Row: 1808 Displacement of [3H]pyrilamine from human histamine H1 receptor expressed in CHO Flp-In cells after 90 mins by scintillation counting\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 22.5, mcs nAts: 16\n", "[#6]-[#7]-[#6]-[#6]-[#6]1:[#16]:[#6]2:[#6]:[#6]:[#6]:[#6]:[#6]:2:[#6]:1-[#6](-[#6])-[#6,#7]\n", "Row: 1809 Displacement of [3H]NECA from human recombinant adenosine A3 receptor expressed in CHO cells after 3 hrs\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 33.8, mcs nAts: 21\n", "[#6]-[#7]1:[#6]:[#6]2:[#6](:[#7]:1):[#7]:[#6](:[#7]1:[#6]:2:[#7]:[#6](:[#7]:1)-[#6]1:[#6]:[#6]:[#6](:[#6]:[#6]:1)-[#6,#8,#9,#17,#35])-[#7]\n", "Row: 1810 Displacement of [125I]AB-MECA from human adenosine A3 receptor expressed in CHO cells by scintillation counting\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 29.3, mcs nAts: 20\n", "[#8,#7]=,-[#6]1:[#7]:[#6]2:[#6]:[#6]:[#6]:[#6]:[#6]:2:[#6]2:[#6]:1:[#7]:[#7](:[#6]:2)-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1\n", "Row: 1811 BindingDB_Patents: Binding Assay. Evaluation of the affinity of compounds for the human MCH-1 receptor was accomplished using 4-(3,4,5-tritritiumbenzyloxy)-1-(1-(2-(pyrrolidin-1-yl)ethyl)-1H-indazol-5-yl)pyridin-2(1H)-one and membranes prepared from stable CHO-K1 cells expressing the human MCH-1 receptor obtained from Euroscreen (Batch 1138). Cell membrane homogenates (8.92 µg protein) were incubated for 60 min at 25° C. with 1.4 µM of the [3H]-labeled compound in the absence or presence of the test compound in 50 mM Tris-HCl buffer, pH 7.4. Nonspecific binding was determined in the presence of 50 µM 1-(5-(4-cyanophenyl)bicyclo[3.1.0]hexan-2-yl)-3-(4-fluoro-3-(trifluoromethyl)phenyl)-1-(3-(4-methylpiperazin-1-yl)propyl)urea. Following incubation, the samples were filtered rapidly under vacuum through Skatron 11731 filters, pre-soaked in 0.5% polyethylenimine, and washed with ice-cold 50 mM Tris-HCl buffer, pH 7.4, (wash setting 9,9,0) using a Skatron cell harvester.\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 30.7, mcs nAts: 21\n", "[#8]=[#6]1:,-[#6]:,-[#6,#7](-[#8,#6]):,-[#6]:,-[#6]:,-[#7]:,-1-[#6]1:[#6]:[#6]:[#6,#7]2:[#6](:[#6,#7]:1):[#7]:[#6]1:[#7,#6]:2-[#6]-[#6,#7]-[#7,#6]-[#6]-1\n", "Row: 1812 Displacement of [3H]-5-CT from 5HT7 receptor in Sprague-Dawley albinus rat hyphalamic membranes after 120 mins\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 27.6, mcs nAts: 16\n", "[#6,#7]-[#6]-,=,#[#6]-[#6,#7]-[#7,#6]-[#6]-[#6]1-,:[#6]-,:[#6]-,:[#6]:[#6](-,:[#8,#6,#7]-,:1):[#6]:[#6]:[#6]:[#6]\n", "Row: 1813 Displacement of of [125I]-IABN from human D2 long receptor expressed in HEK293 cell membranes after 60 mins by filtration binding assay\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 31.2, mcs nAts: 18\n", "[#6]-[#8]-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1-[#7]1-[#6]-[#6]-[#7](-[#6]-[#6]-1)-[#6]-[#6]-[#6]-[#6]\n", "Row: 1814 Displacement of of [125I]-IABN from human D3 receptor expressed in HEK293 cell membranes after 60 mins by filtration binding assay\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 31.2, mcs nAts: 18\n", "[#6]-[#8]-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1-[#7]1-[#6]-[#6]-[#7](-[#6]-[#6]-1)-[#6]-[#6]-[#6]-[#6]\n", "Row: 1815 Displacement of [3H]GR113808 from 5HT4 receptor in Sprague-Dawley albinus rat striatal membranes after 30 mins by scintillation counting\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 27.6, mcs nAts: 16\n", "[#6,#7]-[#6]-,=,#[#6]-[#6,#7]-[#7,#6]-[#6]-[#6]1-,:[#6]-,:[#6]-,:[#6]:[#6](-,:[#8,#6,#7]-,:1):[#6]:[#6]:[#6]:[#6]\n", "Row: 1816 Displacement of [3H]-LY278584 from 5HT3 receptor in Sprague-Dawley albinus rat cerebral cortex membranes after 30 mins\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 27.6, mcs nAts: 16\n", "[#6,#7]-[#6]-,=,#[#6]-[#6,#7]-[#7,#6]-[#6]-[#6]1-,:[#6]-,:[#6]-,:[#6]:[#6](-,:[#8,#6,#7]-,:1):[#6]:[#6]:[#6]:[#6]\n", "Row: 1817 Inhibitory constant against DNA polymerases IIIE from Bacillus subtilis; (a)\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 26.0, mcs nAts: 12\n", "[#6]-[#7]-[#6]1:[#7]:[#6](-[#8]):[#6]2:,-[#6](:[#7]:1):[#7]:[#6]:[#7]:2\n", "Row: 1818 Displacement of [3H]N-alpha-methylhistamine from cloned rhesus monkey histamine H3 receptor transfected in CHO cells after 1 hr by scintillation counting analysis\n", " * postgresql://localhost/chembl_23\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Mean nAts 29.3, mcs nAts: 11\n", "[#7,#6,#8]-[#6]1:[#6]:[#6]:[#6](:[#6]:[#6]:1)-[#7]-[#6](=,-[#8,#7,#16])-,=[#7,#8]\n", "Row: 1819 Inhibitory activity against human carbonic anhydrase IX expressed in Escherichia coli BL21\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 19.4, mcs nAts: 8\n", "[#6,#7,#16]1:,-[#6,#7]:,-[#6,#7]:,-[#6](:,-[#6,#7]:[#6]:,-1)-[#16,#6,#7,#8]-,=[#7,#6,#8]\n", "Row: 1820 Inhibition of full-length ITK (unknown origin) using biotin-EQEDEPEGIYGVLF-NH2 as substrate by plate reader analysis\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 28.8, mcs nAts: 24\n", "[#8]=[#6](-[#7]-[#6]1:[#6,#7]:[#6,#7]:[#7,#6](:[#7,#6,#8,#16]:1)-[#6]-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1)-[#6]1:[#7]:[#7]:[#6]2:[#6]:1:[#6]:[#6]:[#6]:[#6]:2\n", "Row: 1821 Inhibitory activity against human carbonic anhydrase II expressed in Escherichia coli BL21\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 19.4, mcs nAts: 8\n", "[#6,#7,#16]1:,-[#6,#7]:,-[#6,#7]:,-[#6](:,-[#6,#7]:[#6]:,-1)-[#16,#6,#7,#8]-,=[#7,#6,#8]\n", "Row: 1822 Inhibition of human melanin concentrating hormone receptor 1\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 36.4, mcs nAts: 25\n", "[#6]-[#7](-[#6](=[#8])-[#7]-[#6]1:[#6]:[#6]:[#6]:[#6](:[#6]:1)-[#17,#6,#8,#9])-[#6]1:[#6]:[#6]:[#6](:[#6]:[#6]:1)-[#6]1:[#6]:[#6]:[#6]:[#6](:[#6]:1)-[#6,#8,#17]\n", "Row: 1823 BindingDB_Patents: Binding Assay. Binding assay using NET, DAT and SERT enzyme.\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 16.6, mcs nAts: 14\n", "[#9,#6,#7,#17]-[#6]1:[#6]:[#6]:[#6](:[#6]:[#6]:1-[#17,#6,#9])-[#6]12-[#6]-[#7]-[#6]-[#6]-1-[#6]-2\n", "Row: 1824 Inhibition of human DPP4\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 27.5, mcs nAts: 16\n", "[#7]-[#6]1-[#6]-[#7](-[#6])-[#6](-[#6]-[#6]-1-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1-[#17,#9])=[#8]\n", "Row: 1825 Displacement of [3H]ketanserin from 5HT2A receptor in Sprague-Dawley albinus rat frontal cortex membranes after 15 mins\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 27.6, mcs nAts: 16\n", "[#6,#7]-[#6]-,=,#[#6]-[#6,#7]-[#7,#6]-[#6]-[#6]1-,:[#6]-,:[#6]-,:[#6]:[#6](-,:[#8,#6,#7]-,:1):[#6]:[#6]:[#6]:[#6]\n", "Row: 1826 Displacement of [3H]dofetilide from human ERG expressed in HEK293 cells\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 19.7, mcs nAts: 13\n", "[#6]1:[#6]:[#6]:[#6]2:[#6](:[#6]:1):[#6]:[#6]:[#6](:[#6]:2)-[#6,#8,#16]-[#8,#6,#7]-[#6,#7]\n", "Row: 1827 Binding affinity against 5-Hydroxy tryptamine 7 receptor\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 24.9, mcs nAts: 19\n", "[#6]-[#6](-[#7]-[#6]1:[#6,#7]:[#6,#7]:[#6,#7]:[#6](:[#6,#7]:1)-[#7]-[#6]-[#6]-[#6,#8])-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1\n", "Row: 1828 Binding affinity for human prostanoid EP4 receptor\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 44.5, mcs nAts: 18\n", "[#6]1:[#6]:[#6]:[#6]:[#6](:[#6]:1)-[#6]=,-[#6]-,=[#6]-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1-[#6,#8]=,-[#6]-,=[#6,#8]\n", "Row: 1829 Displacement of [3H]-(+)-pentazocine from sigma1 receptor in guinea pig brain membrane after 180 mins by liquid scintillation counter\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 26.7, mcs nAts: 17\n", "[#7,#6]-[#6]-[#6]-[#6]-[#8]-[#6]1:[#7]:[#6](-[#6]2:[#6]:[#6]:[#6]:[#6]:[#6]:2):[#7]:[#6]:[#6]:1\n", "Row: 1830 Displacement of [3H]5CT from human cloned 5HT7B receptor expressed in HEK293 cells\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 18.9, mcs nAts: 8\n", "[#6]-[#16,#6,#7,#8]-[#6]1:,-[#6,#7]:,-[#6,#7,#8]:,-[#6]:,-[#6,#8]:,-[#7,#6]:,-1\n", "Row: 1831 Displacement of [3H]N-alpha-methylhistamine from human histamine H3 receptor expressed in SK-N-MC cells\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 23.3, mcs nAts: 11\n", "[#6](#,-[#6]-[#6,#7]1:,-[#6]:,-[#6]:,-[#6,#7]:,-[#6]:,-[#6]:,-1)-[#6]-,#[#6]-[#7,#6]\n", "Row: 1832 Displacement of [3H]RTX from rat TRPV1 receptor expressed in CHO cells after 60 mins by scintillation counting\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 29.9, mcs nAts: 16\n", "[#6]-[#6](-[#6])(-[#6])-[#6]1:[#6]:[#6]:[#6](:[#6]:[#6]:1)-[#6]-[#7]-[#6](=[#16,#8])-[#7,#6]-[#6]\n", "Row: 1833 Displacement of [3H]spiperone from human D2S receptor expressed in CHO cells\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 25.2, mcs nAts: 9\n", "[#7,#6]-[#6]-[#6,#7,#8]-[#6,#7]1:,-[#6]:,-[#6]:,-[#6]:,-[#6]:,-[#6]:,-1\n", "Row: 1834 Displacement of [3H]CGP12177 from human beta2 receptor expressed in CHO cells\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 25.2, mcs nAts: 9\n", "[#7,#6]-[#6]-[#6,#7,#8]-[#6,#7]1:,-[#6]:,-[#6]:,-[#6]:,-[#6]:,-[#6]:,-1\n", "Row: 1835 Inhibition of Bacillus subtilis Protoporphyrinogen oxidase by capillary electrophoresis\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 30.0, mcs nAts: 19\n", "[#7,#8]-,=[#6](:,-[#6]):,-[#6,#7](:,-[#6]:[#6]:[#6]-[#7]1-[#6](=[#8])-[#6]2=,:[#6](-[#6]-1=[#8])-,:[#6]-,:[#6]-,:[#6]-,:[#6]-,:2)-[#17,#6]\n", "Row: 1836 Inhibition of mouse PI3Kalpha\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 30.8, mcs nAts: 23\n", "[#6]-[#6]1:[#7]:[#6](-[#7]):[#7]:[#6]2:[#6]:1:[#6]:[#6](-[#6]):[#6](:[#7]:2-[#6]1-[#6]-[#6]-[#6](-[#6]-[#6]-1)-[#8]-[#6]-[#8,#6])=[#8]\n", "Row: 1837 Inhibition of human factor Xa by fluorescence assay\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 30.2, mcs nAts: 21\n", "[#6]-[#6](-[#6](=[#8])-[#7]1-[#6]-[#6]-[#8]-[#6]-[#6]-1)-[#7]1-[#6]-[#6]-[#6](-[#6]-1=[#8])-[#7]-[#16](=,-[#8,#6])(=[#8])-,=[#6,#8]\n", "Row: 1838 Displacement of [3H](+)-pentazocine from guinea pig brain sigma 1 receptor\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 27.0, mcs nAts: 11\n", "[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1-[#7,#6]-[#6](=[#7,#8])-[#7,#8]-[#6]\n", "Row: 1839 Displacement of [3H](+/-)-emopamil from EBP in Dunkin guinea pig liver membrane by radioreceptor binding assay\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 23.9, mcs nAts: 9\n", "[#6,#8]-,=[#6,#8]-[#7,#6](-,:[#6]-,:[#6]-[#7,#6]-[#6,#7,#8])-,:[#6]-,:[#6]\n", "Row: 1840 Displacement of [3H]OH-DPAP from human 5HT1A receptor expressed in CHO cells\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 32.1, mcs nAts: 15\n", "[#6]1:[#6]:[#6]:[#6]2:[#6](:[#6]:1)-[#6]-[#6](-[#7]-[#6]-[#6]-[#6]-[#6])-[#6]-[#8]-2\n", "Row: 1841 Displacement of [3H]-N-methylspiperone from human dopamine D2 receptor (unknown origin) expressed in HEK293 cells after 1 hr by liquid scintillation counting\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 32.3, mcs nAts: 20\n", "[#8,#6]=,-[#6](-[#7]-[#6]-[#6]-[#6]-[#6]-[#7]1-[#6]-[#6]-[#7](-[#6]-[#6]-1)-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1)-,=[#6,#8]\n", "Row: 1842 Displacement of [125I]-[D-Ala2]deltorphin 2 from human cloned delta opioid receptor\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 34.3, mcs nAts: 30\n", "[#6]-,=[#6]-[#6]-[#7]1-[#6]-[#6]-[#6,#7](-[#6]-[#6]-1)-[#7,#6](-[#6]1:[#6]:[#6]:[#6](:[#6]:[#6]:1)-[#6](=[#8])-[#7](-[#6]-[#6])-[#6]-[#6])-[#6]1:[#6]:[#6]:[#6]:[#6](:[#6]:1)-[#8]\n", "Row: 1843 Displacement of [125I]FK33824 from human cloned mu opioid receptor\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 34.3, mcs nAts: 30\n", "[#6]-,=[#6]-[#6]-[#7]1-[#6]-[#6]-[#6,#7](-[#6]-[#6]-1)-[#7,#6](-[#6]1:[#6]:[#6]:[#6](:[#6]:[#6]:1)-[#6](=[#8])-[#7](-[#6]-[#6])-[#6]-[#6])-[#6]1:[#6]:[#6]:[#6]:[#6](:[#6]:1)-[#8]\n", "Row: 1844 Displacement of [125I]D-pro10-dynorphin from human cloned kappa opioid receptor\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 34.3, mcs nAts: 30\n", "[#6]-,=[#6]-[#6]-[#7]1-[#6]-[#6]-[#6,#7](-[#6]-[#6]-1)-[#7,#6](-[#6]1:[#6]:[#6]:[#6](:[#6]:[#6]:1)-[#6](=[#8])-[#7](-[#6]-[#6])-[#6]-[#6])-[#6]1:[#6]:[#6]:[#6]:[#6](:[#6]:1)-[#8]\n", "Row: 1845 Displacement of [3H]ZM241385 from human adenosine A2A receptor expressed in HeLa cells by microplate beta scintillation counting\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 27.4, mcs nAts: 21\n", "[#6]-[#6]-[#7]1:[#6](=[#8]):[#6]2:[#7]:[#6](-[#6]-[#6]):[#7]:[#6]:2:[#7](:[#6]:1=[#8])-[#6]-[#6]1:[#6]:[#6]:[#6]:[#8]:1\n", "Row: 1846 Binding affinity for human prostanoid EP3 receptor\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 44.5, mcs nAts: 18\n", "[#6]1:[#6]:[#6]:[#6]:[#6](:[#6]:1)-[#6]=,-[#6]-,=[#6]-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1-[#6,#8]=,-[#6]-,=[#6,#8]\n", "Row: 1847 Binding affinity for human prostanoid EP2 receptor\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 44.5, mcs nAts: 18\n", "[#6]1:[#6]:[#6]:[#6]:[#6](:[#6]:1)-[#6]=,-[#6]-,=[#6]-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1-[#6,#8]=,-[#6]-,=[#6,#8]\n", "Row: 1848 Binding affinity for human prostanoid EP1 receptor\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 44.5, mcs nAts: 18\n", "[#6]1:[#6]:[#6]:[#6]:[#6](:[#6]:1)-[#6]=,-[#6]-,=[#6]-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1-[#6,#8]=,-[#6]-,=[#6,#8]\n", "Row: 1849 Displacement of [3H]-N-methylspiperone from human dopamine D3 receptor (unknown origin) expressed in HEK293 cells after 1 hr by liquid scintillation counting\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 32.3, mcs nAts: 20\n", "[#8,#6]=,-[#6](-[#7]-[#6]-[#6]-[#6]-[#6]-[#7]1-[#6]-[#6]-[#7](-[#6]-[#6]-1)-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1)-,=[#6,#8]\n", "Row: 1850 Displacement of [3H](+)-pentazocine from sigma-1 receptor in guinea pig brain\n", " * postgresql://localhost/chembl_23\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Mean nAts 22.0, mcs nAts: 13\n", "[#8,#7]-[#6]1-[#6]2-[#6]3-[#6]-[#6]4-[#6]-2-[#6](-[#6]2-[#6]-1-[#6]-3-[#6]-2-4)-[#7,#8]\n", "Row: 1851 Inhibition of human coagulation factor 11a assessed as substrate hydrolysis to p-nitroaniline incubated for 10 to 120 mins by spectrophotometry analysis\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 39.7, mcs nAts: 32\n", "[#6]1:[#6]:[#6]:[#6](:[#6]:[#6]:1)-[#7,#6]-[#6,#7]-[#6](-[#6]-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1)-[#7,#6]-[#6,#7]-[#6]=,-[#6]-[#6]1:[#6]:[#6](-[#17]):[#6]:[#6]:[#6]:1-[#7]1:[#6]:[#7]:[#7]:[#7]:1\n", "Row: 1852 Inhibition of human plasma kallikrein\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 39.7, mcs nAts: 32\n", "[#6]1:[#6]:[#6]:[#6](:[#6]:[#6]:1)-[#7,#6]-[#6,#7]-[#6](-[#6]-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1)-[#7,#6]-[#6,#7]-[#6]=,-[#6]-[#6]1:[#6]:[#6](-[#17]):[#6]:[#6]:[#6]:1-[#7]1:[#6]:[#7]:[#7]:[#7]:1\n", "Row: 1853 Displacement of N-[3H]methylhistamine from histamine H3 receptor in rat cortex\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 27.6, mcs nAts: 18\n", "[#6]-[#7]1-[#6]-[#6]2-[#6]-[#6]=[#6](-[#6]-2-[#6]-1)-[#6]1:[#6]:[#6]:[#6](:[#6]:[#6]:1)-[#6]-[#6]-[#7]\n", "Row: 1854 Binding affinity against HIV protease\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 40.6, mcs nAts: 10\n", "[#6]1-,:[#7,#6]-,:[#6](-[#6,#7]-,=,#[#6,#7,#8])-,:[#6]-,:[#6](-,:[#7,#6]-,:1)-[#6]-[#6,#7]\n", "Row: 1855 Displacement of [3H]histamine from human recombinant histamine H4 receptor expressed in CHO cells coexpressing Ga15 by radioligand filtration binding assay\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 20.6, mcs nAts: 12\n", "[#7,#8]-,=[#6](=,-[#8,#7])-[#6]1:[#6,#7]:[#7,#6]2:[#6]:[#6]:[#7,#6]:[#6,#7]:[#6]:2:[#7]:1\n", "Row: 1856 Ability to displace [3H]PAF from its Platelet Activating Factor (PAF) receptor in rabbit platelet membrane in vitro.\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 43.4, mcs nAts: 27\n", "[#6]-[#6]-[#6]-[#6]-[#6]-[#6]-[#6]-[#6]-[#6]-[#6]-[#6]-[#6]-[#6]-[#6]-[#6]-[#6]-[#8,#6,#7]-[#6]-[#6,#7,#8]-[#6]-[#8,#6]-[#6]-[#6,#8]-[#6]-[#6,#7,#8]-[#6,#15]-,=[#6,#8]\n", "Row: 1857 Displacement of [3H]U69593 from human kappa opioid receptor expressed in CHO cells\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 43.1, mcs nAts: 20\n", "[#6]-[#6]-[#7]1-[#6]-[#6]-[#6]23-[#6](-[#6]-1-[#6]-[#6]1:[#6]:[#6]:[#6](:[#6]:[#6]-2:1)-[#8,#7])-[#6]-[#6]-[#6]-[#6]-3\n", "Row: 1858 Binding affinity against HIV-1 protease.\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 37.2, mcs nAts: 23\n", "[#6]1:[#6,#8]:[#6](-,=[#8]):[#6](:[#6](:[#8,#6]:1)=,-[#8])-[#6](-[#6]1:[#6]:[#6]:[#6]:[#6](:[#6]:1)-[#7]-[#16](=,-[#8,#6])(=[#8])-,=[#6,#8])-[#6]1-[#6]-[#6]-1\n", "Row: 1859 Inhibition constant against pro-cathepsin D (50 ng/mL) of human liver upon incubation at pH 4.5 for 10 min using DABCYL-Glu-Arg-Nle-Phe-Le u-Ser-Phe-Pro-EDANS as substrate\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 42.3, mcs nAts: 19\n", "[#6]-,=[#7,#6]-[#7,#6]-[#6,#8]-[#6](-[#8,#6])-[#6](-[#8])-[#6](-[#8])-[#6](-[#8]-[#6]-[#6]=[#6])-[#6](=[#8])-[#7]-[#7,#6]\n", "Row: 1860 Inhibition constant against plasmepsin-1 of Plasmodium falciparum, 10 min using 3 uM of DABCYL-Glu-Arg-Nle-Phe-Le u-Ser-Phe-Pro-EDANS as substrate\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 42.3, mcs nAts: 19\n", "[#6]-,=[#7,#6]-[#7,#6]-[#6,#8]-[#6](-[#8,#6])-[#6](-[#8])-[#6](-[#8])-[#6](-[#8]-[#6]-[#6]=[#6])-[#6](=[#8])-[#7]-[#7,#6]\n", "Row: 1861 Inhibition constant against plasmepsin-2 of Plasmodium falciparum 10 min using 3 uM of DABCYL-Glu-Arg-Nle-Phe-Le u-Ser-Phe-Pro-EDANS as substrate\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 42.3, mcs nAts: 19\n", "[#6]-,=[#7,#6]-[#7,#6]-[#6,#8]-[#6](-[#8,#6])-[#6](-[#8])-[#6](-[#8])-[#6](-[#8]-[#6]-[#6]=[#6])-[#6](=[#8])-[#7]-[#7,#6]\n", "Row: 1862 Binding affinity for human PPAR gamma construct expressed in bacteria with 3[H] rosiglitazone\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 26.0, mcs nAts: 22\n", "[#6]-[#6]-[#6]-[#6]-[#6]-[#8]-[#6]1:[#6,#7]:[#6]:[#6]:[#6]:[#6]:1-[#6](-[#8])-[#6]-[#6]#,-,=[#6]-[#6]-[#6]-[#6]-[#6]=,-[#8,#6]\n", "Row: 1863 Displacement of [3H]DPDPE from human cloned delta opioid receptor\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 36.1, mcs nAts: 21\n", "[#6]-[#7]1-[#6]-[#6]-[#6]23-[#6]4-[#6]-1-[#6]-[#6]1:[#6]-2:[#6](:[#6](:[#6]:[#6]:1)-[#8])-[#8]-[#6]-3-[#6](-[#6]=,-[#6]-4)-,=[#8]\n", "Row: 1864 Inhibition of human carbonic anhydrase 2 using saturated CO2 as substrate incubated for 10 mins prior to testing by stopped-flow CO2 hydrase assay\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 35.2, mcs nAts: 12\n", "[#6]-[#6]1:[#6]:[#6]2:[#6]:[#6]:[#6]:[#6]:[#6]:2:[#8]:[#6]:1=[#8]\n", "Row: 1865 Displacement of [3H]DAMGO from human mu opioid receptor expressed in CHO cells\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 43.1, mcs nAts: 20\n", "[#6]-[#6]-[#7]1-[#6]-[#6]-[#6]23-[#6](-[#6]-1-[#6]-[#6]1:[#6]:[#6]:[#6](:[#6]:[#6]-2:1)-[#8,#7])-[#6]-[#6]-[#6]-[#6]-3\n", "Row: 1866 Binding affinity for 5-hydroxytryptamine 2A receptor expressed in 3T3 cells\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 31.9, mcs nAts: 28\n", "[#6]-[#6]1-[#6]-[#6]-[#7]-[#6]2:[#6]-1:[#6]:[#6]:[#6]:[#6]:2-[#6]-[#6]-[#7]1-[#6]-[#6]-[#7](-[#6]-[#6]-1)-[#6]1:[#7]:[#16,#8]:[#6]2:[#6]:1:[#6]:[#6]:[#6]:[#6]:2\n", "Row: 1867 Affinity for 5HT1A receptor\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 34.6, mcs nAts: 18\n", "[#6]-[#8]-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1-[#7]1-[#6]-[#6]-[#7](-[#6]-[#6]-1)-[#6]-[#6]-[#6]-[#7,#6]\n", "Row: 1868 Displacement of [3H]-5-HT from human 5-hydroxytryptamine 1D receptor beta\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 20.0, mcs nAts: 14\n", "[#6,#16]-[#8,#6]-[#6]1:[#6]:[#6]:[#6]2:[#6](:[#6]:1):[#6](:[#6]:[#7]:2)-[#6]-[#6]-[#7,#6]\n", "Row: 1869 Ability to inhibit adenosine uptake by the P2 transporter in Trypanosoma brucei\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 43.1, mcs nAts: 21\n", "[#7]-[#6]1:[#7]:[#6](-[#7]):[#7]:[#6](:[#7]:1)-[#7,#6]-[#6,#7]-[#6]-[#6]-[#7,#6]-[#6,#7]-[#6]-[#6,#7]-[#6]-[#6,#7]-[#6]-[#6,#7]-[#6]\n", "Row: 1870 Inhibition of human recombinant carbonic anhydrase 1 preincubated for 15 mins by stopped flow CO2 hydration method\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 19.8, mcs nAts: 7\n", "[#6,#16]-[#6]1:[#7,#6,#16]:[#6,#7]:[#6](:[#8,#6,#16]:1)-[#6]\n", "Row: 1871 Inhibition of human recombinant carbonic anhydrase 2 preincubated for 15 mins by stopped flow CO2 hydration method\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 19.8, mcs nAts: 7\n", "[#6,#16]-[#6]1:[#7,#6,#16]:[#6,#7]:[#6](:[#8,#6,#16]:1)-[#6]\n", "Row: 1872 Inhibition of human recombinant carbonic anhydrase 9 preincubated for 15 mins by stopped flow CO2 hydration method\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 19.8, mcs nAts: 7\n", "[#6,#16]-[#6]1:[#7,#6,#16]:[#6,#7]:[#6](:[#8,#6,#16]:1)-[#6]\n", "Row: 1873 Binding affinity to human F10a\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 41.3, mcs nAts: 16\n", "[#6]-[#6]1:[#7]:[#7](-[#6]2:[#6]:[#6]:[#6]3:[#6](:[#6]:2):[#6](:[#7]:[#8]:3)-[#7]):[#6]:[#6]:1\n", "Row: 1874 Displacement of B-Alexa-Fluor647 from CDK2 (unknown origin) by fluorescence polarization assay\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 36.8, mcs nAts: 26\n", "[#8]=[#6](-[#7]-[#6]-[#6]-[#6]1:[#6]:[#6]:[#6](:[#6]:[#6]:1)-[#8,#9])-[#6]1:[#6]:[#6](-[#6](=,-[#8,#7])-,=[#8,#7]):[#6]2:[#6](:[#7]:1):[#6]:[#6]:[#6](:[#6]:2)-[#6,#7]\n", "Row: 1875 Binding affinity to EP4 receptor\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 33.3, mcs nAts: 13\n", "[#8,#7]=,-[#6](-,=[#8,#7])-[#6]=,-[#6]-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1-[#6]-,=[#6]\n", "Row: 1876 Displacement of [125]Ang2 from AT1 receptor in rat liver membrane\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 34.2, mcs nAts: 12\n", "[#6]-[#6]-[#6]-[#6]-[#8]-[#6](=[#8])-[#7]-[#16](=[#8])(=[#8])-[#6]\n", "Row: 1877 Displacement of [3H]NPVF from human NPFF1 receptor expressed in CHO cells after 1 hr by liquid scintillation counting analysis\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 34.3, mcs nAts: 15\n", "[#7,#6]=,-[#6,#7]-[#7,#6,#8]-[#6,#7]-[#6,#7]-[#7,#6]-[#6,#7]-[#6,#7]-[#7,#6]-[#6]1:,-[#6]:,-[#6]:,-[#6,#7]:,-[#6]:,-[#6]:,-1\n", "Row: 1878 Binding affinity to EP3 receptor\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 33.3, mcs nAts: 13\n", "[#8,#7]=,-[#6](-,=[#8,#7])-[#6]=,-[#6]-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1-[#6]-,=[#6]\n", "Row: 1879 Binding affinity to EP2 receptor\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 33.3, mcs nAts: 13\n", "[#8,#7]=,-[#6](-,=[#8,#7])-[#6]=,-[#6]-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1-[#6]-,=[#6]\n", "Row: 1880 Binding affinity to EP1 receptor\n", " * postgresql://localhost/chembl_23\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Mean nAts 33.3, mcs nAts: 13\n", "[#8,#7]=,-[#6](-,=[#8,#7])-[#6]=,-[#6]-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1-[#6]-,=[#6]\n", "Row: 1881 Displacement of [125I]AB-MECA from human adenosine A3 receptor expressed in CHO cells\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 29.2, mcs nAts: 15\n", "[#8,#7]=,-[#6]1:[#7]:[#6]2:[#6]:[#6]:[#6]:[#6]:[#6]:2:[#6]2:[#6]:1:[#7]:[#7](:[#6]:2)-[#6]\n", "Row: 1882 Inhibition of rat DNPH1 assessed as 2-deoxyribose 5-phosphate production by spectrophotometrically\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 31.2, mcs nAts: 23\n", "[#7,#6,#8]-[#6]1:[#7]:[#6]:[#7]:[#6]2:[#6]:1:[#7]:[#6]:[#7]:2-[#6]1-[#8]-[#6](-[#6]-[#8]-[#15](=[#8])(-[#8])-[#8])-[#6](-[#6]-1-[#8])-[#8]\n", "Row: 1883 Inhibition of human DNPH1 assessed as 2-deoxyribose 5-phosphate production by spectrophotometrically\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 31.2, mcs nAts: 23\n", "[#7,#6,#8]-[#6]1:[#7]:[#6]:[#7]:[#6]2:[#6]:1:[#7]:[#6]:[#7]:2-[#6]1-[#8]-[#6](-[#6]-[#8]-[#15](=[#8])(-[#8])-[#8])-[#6](-[#6]-1-[#8])-[#8]\n", "Row: 1884 Inhibition of STAT5B SH2 domain (unknown origin)-5-FAM-GpYLVLDKW interaction compound treated for 15 mins by fluorescent polarization assay\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 38.2, mcs nAts: 30\n", "[#6,#9]-[#6]1:[#6]:[#6](-[#6,#9]):[#6](:[#6](:[#6]:1)-[#6,#9])-[#16](=[#8])(=[#8])-[#7](-[#6])-[#6]-[#6](=[#8])-[#7](-[#6]-[#6])-[#6]1:[#6]:[#6]:[#6](:[#6](:[#6]:1)-[#8])-[#6](=[#8])-[#8]\n", "Row: 1885 Inhibition of human carbonic anhydrase 1 by stopped flow CO2 hydrase assay method\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 27.2, mcs nAts: 26\n", "[#7,#8]#,=[#6]-[#6]1:[#6]:[#7](-[#6]2:[#7]:[#6]3:[#6]:[#6]:[#6](:[#6]:[#6]:3:[#16]:2)-[#16](-[#7])(=[#8])=[#8]):[#7]:[#6]:1-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1\n", "Row: 1886 Inhibition of human carbonic anhydrase 2 by stopped flow CO2 hydrase assay method\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 27.2, mcs nAts: 26\n", "[#7,#8]#,=[#6]-[#6]1:[#6]:[#7](-[#6]2:[#7]:[#6]3:[#6]:[#6]:[#6](:[#6]:[#6]:3:[#16]:2)-[#16](-[#7])(=[#8])=[#8]):[#7]:[#6]:1-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1\n", "Row: 1887 Displacement of [3H]des-Arg10 Leu9 kallidin from human bradykinin B1 receptor expressed in CHO cells\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 33.0, mcs nAts: 26\n", "[#6]-[#6]1:[#6](-[#9,#17]):[#6]:[#6]:[#6]:[#6]:1-[#6]1:[#6]:[#6]:[#6](:[#6](:[#6]:1)-[#9])-[#6]-[#7]-[#6](=[#8])-[#6]1(-[#7]-[#6](-,=[#6,#8])=,-[#8,#6])-[#6]-[#6]-1\n", "Row: 1888 Inhibition of human carbonic anhydrase 9 by stopped flow CO2 hydrase assay method\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 27.2, mcs nAts: 26\n", "[#7,#8]#,=[#6]-[#6]1:[#6]:[#7](-[#6]2:[#7]:[#6]3:[#6]:[#6]:[#6](:[#6]:[#6]:3:[#16]:2)-[#16](-[#7])(=[#8])=[#8]):[#7]:[#6]:1-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1\n", "Row: 1889 Displacement of [125]Ang2 from AT2 receptor in pig uterus membrane\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 34.2, mcs nAts: 12\n", "[#6]-[#6]-[#6]-[#6]-[#8]-[#6](=[#8])-[#7]-[#16](=[#8])(=[#8])-[#6]\n", "Row: 1890 Displacement of [3H]8-OH-DPAT from 5HT1A receptor in CRL:CD(SD)BR-COBS rat hippocampus\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 27.2, mcs nAts: 16\n", "[#6]1:[#6]:[#7,#6]:[#6](:[#7,#6]:[#6]:1)-[#7]1-[#6]-[#6]-[#7](-[#6]-[#6]-1)-[#6]-[#6]-[#6,#16]-[#16,#6]\n", "Row: 1891 Inhibition of human recombinant carbonic anhydrase 12 preincubated for 15 mins by stopped flow CO2 hydration method\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 19.8, mcs nAts: 7\n", "[#6,#16]-[#6]1:[#7,#6,#16]:[#6,#7]:[#6](:[#8,#6,#16]:1)-[#6]\n", "Row: 1892 Binding affinity against Dopamine receptor D2 expressed in CHO cells\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 31.9, mcs nAts: 28\n", "[#6]-[#6]1-[#6]-[#6]-[#7]-[#6]2:[#6]-1:[#6]:[#6]:[#6]:[#6]:2-[#6]-[#6]-[#7]1-[#6]-[#6]-[#7](-[#6]-[#6]-1)-[#6]1:[#7]:[#16,#8]:[#6]2:[#6]:1:[#6]:[#6]:[#6]:[#6]:2\n", "Row: 1893 Inhibition of human carbonic anhydrase 12 by stopped flow CO2 hydrase assay method\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 27.2, mcs nAts: 26\n", "[#7,#8]#,=[#6]-[#6]1:[#6]:[#7](-[#6]2:[#7]:[#6]3:[#6]:[#6]:[#6](:[#6]:[#6]:3:[#16]:2)-[#16](-[#7])(=[#8])=[#8]):[#7]:[#6]:1-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1\n", "Row: 1894 Displacement of [3H]dexamethasone from human recombinant GR\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 28.6, mcs nAts: 22\n", "[#7]1:[#6](=[#8]):[#7]:[#6](:[#6](:[#6]:1=[#8])-[#6]-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1)-[#7]1-[#6]-[#6]-[#6,#7](-[#6]-[#6]-1)-[#8,#6]\n", "Row: 1895 Displacement of [3H]L-364718 from human recombinant CCK1 receptor expressed in CHOK1 cells\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 41.8, mcs nAts: 32\n", "[#6]1:[#6]:[#6]:[#6]:[#6](:[#6]:1)-[#7]-[#6](=[#8])-[#7,#6]-[#6,#7]1-[#7]=[#6](-[#6]2:,-[#6]:,-[#6]:,-[#6]:,-[#6]:,-[#7,#6]:,-2)-[#6]2:[#6]:[#6]:[#6]:[#6]:[#6]:2-[#7](-[#6]-1=[#8])-[#6]-[#6](=,-[#8,#6])-,=[#6,#8]\n", "Row: 1896 Displacement of [3H]U-69593 from human cloned kappa opioid receptor\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 36.1, mcs nAts: 21\n", "[#6]-[#7]1-[#6]-[#6]-[#6]23-[#6]4-[#6]-1-[#6]-[#6]1:[#6]-2:[#6](:[#6](:[#6]:[#6]:1)-[#8])-[#8]-[#6]-3-[#6](-[#6]=,-[#6]-4)-,=[#8]\n", "Row: 1897 Displacement of [3H]DAMGO from human cloned mu opioid receptor\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 36.1, mcs nAts: 21\n", "[#6]-[#7]1-[#6]-[#6]-[#6]23-[#6]4-[#6]-1-[#6]-[#6]1:[#6]-2:[#6](:[#6](:[#6]:[#6]:1)-[#8])-[#8]-[#6]-3-[#6](-[#6]=,-[#6]-4)-,=[#8]\n", "Row: 1898 Inhibition of human carbonic anhydrase 1 using saturated CO2 as substrate incubated for 10 mins prior to testing by stopped-flow CO2 hydrase assay\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 35.2, mcs nAts: 12\n", "[#6]-[#6]1:[#6]:[#6]2:[#6]:[#6]:[#6]:[#6]:[#6]:2:[#8]:[#6]:1=[#8]\n", "Row: 1899 Displacement of [3H]DPDPE from delta opioid receptor in rat brain\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 33.7, mcs nAts: 28\n", "[#7]-[#6](-[#6]-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1)-[#6](=[#8])-[#7]1-[#6]-[#6]-,:[#6]-[#6]-[#6]-1-[#6]1:[#7]:[#6](-[#6]2:[#6]:[#6]:[#6]:[#6]:[#6]:2):[#6]:[#7]:1\n", "Row: 1900 Displacement of [3H]DAMGO from mu opioid receptor in rat brain\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 33.7, mcs nAts: 28\n", "[#7]-[#6](-[#6]-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1)-[#6](=[#8])-[#7]1-[#6]-[#6]-,:[#6]-[#6]-[#6]-1-[#6]1:[#7]:[#6](-[#6]2:[#6]:[#6]:[#6]:[#6]:[#6]:2):[#6]:[#7]:1\n", "Row: 1901 Inhibition of human carbonic anhydrase 12 incubated for 15 mins prior to testing by CO2 hydration-based stopped flow assay\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 20.1, mcs nAts: 11\n", "[#7]-[#16](=[#8])(=[#8])-[#6]1:[#6]:[#6]:[#6](:[#6]:[#6]:1)-[#6]\n", "Row: 1902 Displacement of [3H](1-(2-(methylsulfonamido)ethyl)piperidin-4-yl)methyl 1-methyl-1H-indole-3-carboxylate from human 5HT4R expressed in HEK293 cells\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 31.4, mcs nAts: 12\n", "[#6]-[#6,#7,#8]-[#6,#7]-[#7,#6]1-,:[#6]-,:[#6]-,:[#6,#7](-,:[#6]-,:[#6]-,:1)-[#6]-[#8,#6,#7]-[#6,#7]\n", "Row: 1903 Displacement of [3H]DPCPX from human adenosine A2B receptor expressed in HEK293 cells after 30 mins by Scatchard plot analysis\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 18.8, mcs nAts: 18\n", "[#6]-[#6]-[#8]-[#6](=[#8])-[#6]1:,-[#6](-[#6]2:[#6]:[#6]:[#6,#8,#16]:[#8,#6,#16]:2):,-[#7]:,-[#6](:,-,=[#7]:,-[#6]:,=1-[#6])=,-[#8,#16]\n", "Row: 1904 Displacement of [3H]LSD from human 5-hydroxytryptamine 6 receptor expressed in HeLa cells\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 25.8, mcs nAts: 24\n", "[#8]=[#16](=[#8])(-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6,#7]:1)-[#6,#7]1:[#6]:[#7,#6,#8,#16]:[#6]2:[#6]:1:[#6,#7]:[#6]:[#7,#6]:[#6]:2-[#7]1-[#6]-[#6]-[#7]-[#6]-[#6]-1\n", "Row: 1905 Binding affinity against HIV-1 protease\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 44.3, mcs nAts: 29\n", "[#6]-[#6]-[#7]-[#6](=[#8])-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1-[#16,#6]-[#6]-[#6]-[#6,#16]-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1-[#6](=[#8])-[#7](-[#6]-[#6]-[#8,#6])-[#6]-[#6]\n", "Row: 1906 Inhibition of human recombinant furin by fluorescence plate reader analysis\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 26.2, mcs nAts: 12\n", "[#7]=[#6](-[#7])-[#7]-[#7]=,-[#6]-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1\n", "Row: 1907 Inhibition of human carbonic anhydrase 9 incubated for 15 mins prior to testing by CO2 hydration-based stopped flow assay\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 20.1, mcs nAts: 11\n", "[#7]-[#16](=[#8])(=[#8])-[#6]1:[#6]:[#6]:[#6](:[#6]:[#6]:1)-[#6]\n", "Row: 1908 Inhibition of human recombinant NPP1 expressed in insect SF9 cells using ATP as substrate preincubated with substrate followed by protein addition and subsequent incubation for 30 mins by capillary electrophoresis\n", " * postgresql://localhost/chembl_23\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Mean nAts 23.0, mcs nAts: 15\n", "[#6]-[#6]=[#6]1:[#16]:[#6]2:[#7]:[#6]3:[#6](:[#7]:2:[#6]:1=[#8]):[#6]:[#6]:[#6]:[#6]:3\n", "Row: 1909 Inhibitory activity against human Carbonic anhydrase XII (hCA XII)\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 18.7, mcs nAts: 8\n", "[#6]1:[#6]:[#6]:[#6](:[#6]:[#6]:1)-[#16,#6,#7,#8]-,=[#7,#6,#8,#16]\n", "Row: 1910 Inhibition of human carbonic anhydrase 2 incubated for 15 mins prior to testing by CO2 hydration-based stopped flow assay\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 20.1, mcs nAts: 11\n", "[#7]-[#16](=[#8])(=[#8])-[#6]1:[#6]:[#6]:[#6](:[#6]:[#6]:1)-[#6]\n", "Row: 1911 Displacement of [3H]8-OH-DPAT from rat 5HT1A receptor\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 21.6, mcs nAts: 18\n", "[#6]1:[#6]:[#6]:[#6]:[#6]2:[#6]:1-,:[#6]1:[#6]:[#6]:[#6]:[#6]3:[#6]:1-[#6](-[#6]-2)-[#7](-[#6])-[#6]-[#6]-3\n", "Row: 1912 Antagonist activity at human OX2R by radioligand displacement assay\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 31.6, mcs nAts: 22\n", "[#6]1:[#6]:[#6]:[#6](:[#6](:[#6]:1)-[#6](=[#8])-[#7]1-[#6]-[#6]-[#6]-[#6](-[#6]-1)-[#8]-[#6]1:[#6,#7]:[#6]:[#6,#7]:[#6]:[#6,#7]:1)-[#7,#6]\n", "Row: 1913 Displacement of [3H]DAMGO from mu opioid receptor (unknown origin) expressed in HEK293T cells after 1.5 hrs by radioligand binding assay\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 37.6, mcs nAts: 31\n", "[#6]-[#8]-[#6](=[#8])-[#6]1-[#6]-[#6](-[#8]-[#6](-,=[#6,#8])=,-[#8,#6])-[#6](-[#6]2-[#6]-1(-[#6])-[#6]-[#6]-[#6]1-[#6]-2(-[#6]-[#6](-[#8]-[#6]-1=[#8])-[#6]1:[#6]:[#6]:[#8]:[#6]:1)-[#6])=[#8]\n", "Row: 1914 Displacement of [3H]DADLE from delta opioid receptor (unknown origin) expressed in HEK293T cells after 1.5 hrs by radioligand binding assay\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 37.6, mcs nAts: 31\n", "[#6]-[#8]-[#6](=[#8])-[#6]1-[#6]-[#6](-[#8]-[#6](-,=[#6,#8])=,-[#8,#6])-[#6](-[#6]2-[#6]-1(-[#6])-[#6]-[#6]-[#6]1-[#6]-2(-[#6]-[#6](-[#8]-[#6]-1=[#8])-[#6]1:[#6]:[#6]:[#8]:[#6]:1)-[#6])=[#8]\n", "Row: 1915 Inhibitory activity against human Carbonic anhydrase IX (hCA IX)\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 18.7, mcs nAts: 8\n", "[#6]1:[#6]:[#6]:[#6](:[#6]:[#6]:1)-[#16,#6,#7,#8]-,=[#7,#6,#8,#16]\n", "Row: 1916 Inhibition of neutral endopeptidase (NEP) isolated from rabbit kidney\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 30.5, mcs nAts: 21\n", "[#6,#16]-[#6]-[#6](-[#6])-[#6](=[#8])-[#7]-[#6](-[#6]-[#6]1:[#6]:[#7]:[#6]2:[#6]:1:[#6]:[#6]:[#6]:[#6]:2)-[#6](=[#8])-[#8]\n", "Row: 1917 Competitive inhibition of recombinant human DOT1L using adenosine/deazaadenosine as substrate and SAM cofactor\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 32.8, mcs nAts: 21\n", "[#6]-[#6]-[#16,#7]-[#6]-[#6]1-,=[#8,#6]-[#6](-[#7]2:[#6]:[#7,#6]:[#6]3:[#6]:2:[#7]:[#6]:[#7]:[#6]:3-[#7])-[#6](-[#6]-1-[#8])-[#8]\n", "Row: 1918 Displacement of [3H]U69593 from kappa opioid receptor (unknown origin) expressed in HEK293T cells after 1.5 hrs by radioligand binding assay\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 37.6, mcs nAts: 31\n", "[#6]-[#8]-[#6](=[#8])-[#6]1-[#6]-[#6](-[#8]-[#6](-,=[#6,#8])=,-[#8,#6])-[#6](-[#6]2-[#6]-1(-[#6])-[#6]-[#6]-[#6]1-[#6]-2(-[#6]-[#6](-[#8]-[#6]-1=[#8])-[#6]1:[#6]:[#6]:[#8]:[#6]:1)-[#6])=[#8]\n", "Row: 1919 Inhibition of human carbonic anhydrase 1 incubated for 15 mins prior to testing by CO2 hydration-based stopped flow assay\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 20.1, mcs nAts: 11\n", "[#7]-[#16](=[#8])(=[#8])-[#6]1:[#6]:[#6]:[#6](:[#6]:[#6]:1)-[#6]\n", "Row: 1920 Inhibitory activity against human Carbonic anhydrase II (hCA II)\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 18.7, mcs nAts: 8\n", "[#6]1:[#6]:[#6]:[#6](:[#6]:[#6]:1)-[#16,#6,#7,#8]-,=[#7,#6,#8,#16]\n", "Row: 1921 Inhibitory activity against human Carbonic anhydrase I (hCA I)\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 18.7, mcs nAts: 8\n", "[#6]1:[#6]:[#6]:[#6](:[#6]:[#6]:1)-[#16,#6,#7,#8]-,=[#7,#6,#8,#16]\n", "Row: 1922 Binding affinity towards human factor IXa\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 39.4, mcs nAts: 17\n", "[#7]=[#6](-[#7])-[#6]1:[#6]:[#6]:[#6]2:[#6](:[#6]:1):[#6,#7](:[#6]:[#7,#6]:2)-[#6]-[#6](=,-[#8,#6])-[#7,#6]-,=[#6,#8]\n", "Row: 1923 Reversible inhibition of human recombinant cathepsin B assessed as formation of fluorescent degradation product AMC using Z-Arg-Arg-AMC as substrate by Michaelis-Menten method\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 23.2, mcs nAts: 18\n", "[#6]-[#6]-[#16]-[#6]1:[#7]:[#6](-[#16]-[#6]-[#6]2:,-[#6]:,-[#6]:,-[#6]:,-[#6]:,-[#6]:,-2):[#7]:[#6](:[#7]:1)=[#8]\n", "Row: 1924 Inhibitory activity against bovine trypsin expressed as dissociation constant\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 34.1, mcs nAts: 12\n", "[#7,#8]-,=[#6](=,-[#8,#7])-[#6](-[#7])-[#6]-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1\n", "Row: 1925 Binding affinity towards human factor Xa\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 39.4, mcs nAts: 17\n", "[#7]=[#6](-[#7])-[#6]1:[#6]:[#6]:[#6]2:[#6](:[#6]:1):[#6,#7](:[#6]:[#7,#6]:2)-[#6]-[#6](=,-[#8,#6])-[#7,#6]-,=[#6,#8]\n", "Row: 1926 Inhibition of human carbonic anhydrase 9 using saturated CO2 as substrate incubated for 10 mins prior to testing by stopped-flow CO2 hydrase assay\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 35.2, mcs nAts: 12\n", "[#6]-[#6]1:[#6]:[#6]2:[#6]:[#6]:[#6]:[#6]:[#6]:2:[#8]:[#6]:1=[#8]\n", "Row: 1927 Inhibition of human cathepsin K\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 34.2, mcs nAts: 18\n", "[#6]-[#6]-[#6]-[#6](-[#7]-[#6](=[#8])-[#8,#6]-[#6,#7]-[#6])-[#6](=[#8])-[#6]1:[#7]:[#7]:[#6](:[#8]:1)-[#6,#8]\n", "Row: 1928 Inhibition of human cathepsin B\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 34.2, mcs nAts: 18\n", "[#6]-[#6]-[#6]-[#6](-[#7]-[#6](=[#8])-[#8,#6]-[#6,#7]-[#6])-[#6](=[#8])-[#6]1:[#7]:[#7]:[#6](:[#8]:1)-[#6,#8]\n", "Row: 1929 Binding affinity carried out with [3H]cyclohexyladenosine in guinea pig forebrain membranes against adenosine A1 receptor\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 25.1, mcs nAts: 17\n", "[#6]-[#7]1:[#6](=[#8]):[#6]2:[#7]:[#6](-[#6](-[#6])-[#7,#6,#8]):[#7]:[#6]:2:[#7](:[#6]:1=[#8])-[#6]-[#6]\n", "Row: 1930 Inhibition of human cathepsin L\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 34.2, mcs nAts: 18\n", "[#6]-[#6]-[#6]-[#6](-[#7]-[#6](=[#8])-[#8,#6]-[#6,#7]-[#6])-[#6](=[#8])-[#6]1:[#7]:[#7]:[#6](:[#8]:1)-[#6,#8]\n", "Row: 1931 Displacement of [3H]FFRF-NH2 from human flag-tagged NPFF1 receptor expressed in CHO cells by scintillation counting\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 35.0, mcs nAts: 26\n", "[#7]=[#6](-[#7])-[#7]-[#6]-[#6]-[#6]-[#6](-[#7]-[#6](=,-[#8,#6])-,=[#6,#8])-[#6](=[#8])-[#7]-[#6](-[#6]-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1)-[#6](-[#7])=[#8]\n", "Row: 1932 Displacement of [3H]CP-55940 from human CB1 receptor expressed in HEK293 cells\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 32.8, mcs nAts: 18\n", "[#6]-,=[#6]-[#6]-[#7]1:[#6]:[#6](-[#6](=[#8])-[#7]-[#6]):[#6](:[#6]2:[#6]:1:[#6]:[#6]:[#6]:[#6]:2)=[#8]\n", "Row: 1933 Inhibition of human carbonic anhydrase 12 using saturated CO2 as substrate incubated for 10 mins prior to testing by stopped-flow CO2 hydrase assay\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 35.2, mcs nAts: 12\n", "[#6]-[#6]1:[#6]:[#6]2:[#6]:[#6]:[#6]:[#6]:[#6]:2:[#8]:[#6]:1=[#8]\n", "Row: 1934 Displacement of [3H]8OHDPAT from human 5HT1A receptor\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 33.1, mcs nAts: 26\n", "[#6]1-[#6]-[#6,#7]-[#6]2:[#6]-1:[#6]:[#6](:[#6]:[#6]:2)-[#6]-[#6]-[#7]1-[#6]-[#6]-[#7](-[#6]-[#6]-1)-[#6]1:[#7]:[#16]:[#6]2:[#6]:1:[#6]:[#6]:[#6]:[#6]:2\n", "Row: 1935 Displacement of [3H]CP-55940 from human CB2 receptor expressed in HEK293 cells\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 32.8, mcs nAts: 18\n", "[#6]-,=[#6]-[#6]-[#7]1:[#6]:[#6](-[#6](=[#8])-[#7]-[#6]):[#6](:[#6]2:[#6]:1:[#6]:[#6]:[#6]:[#6]:2)=[#8]\n", "Row: 1936 Displacement of [125I]MCH from human Melanin-concentrating hormone 1 (MCH1) receptor modified for optimal expression in HEK293 cells\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 40.0, mcs nAts: 17\n", "[#7,#6](-[#6,#7]-,=[#6,#8])-[#6,#7]1-[#6]-[#6]-[#7,#6](-[#6]-1)-[#6,#7](=,-[#8,#6])-[#7,#6](-,=[#6,#8])-[#6,#7]1-,:[#6]-,:[#6]-,:[#7,#6]-,:[#6,#16]-,:1\n", "Row: 1937 Displacement of [3H]N-alpha-methylhistamine from human histamine H3 receptor expressed in HEK293 cells after 60 mins by liquid scintillation counting\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 20.2, mcs nAts: 9\n", "[#6]-[#6,#7]1:[#6]:[#7,#6](-[#6]-[#6]-[#6]):[#7]:[#7]:1\n", "Row: 1938 Displacement of [125I]IABN from human dopamine D2L receptor expressed in HEK293 cells\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 27.0, mcs nAts: 25\n", "[#8]-[#6]1(-[#6]2:[#6]:[#6]:[#6]:[#6]:[#6]:2)-[#6]-[#6]2-[#6]-[#6]-[#6](-[#6]-1)-[#7]-2-[#6]-[#6]1:[#6,#7]:[#7,#8,#16]:[#6]2:[#6]:1:[#6]:[#6]:[#6]:[#6]:2\n", "Row: 1939 Displacement of [125I]IABN from human dopamine D3 receptor expressed in HEK293 cells\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 27.0, mcs nAts: 25\n", "[#8]-[#6]1(-[#6]2:[#6]:[#6]:[#6]:[#6]:[#6]:2)-[#6]-[#6]2-[#6]-[#6]-[#6](-[#6]-1)-[#7]-2-[#6]-[#6]1:[#6,#7]:[#7,#8,#16]:[#6]2:[#6]:1:[#6]:[#6]:[#6]:[#6]:2\n", "Row: 1940 BindingDB_Patents: AlphaScreen Assay. The PI3K AlphaScreen assay (PerkinElmer, Waltham, Mass.) measures the activity of a panel of four phosphoinositide 3-kinases: PI3Ka, PI3Kß, PI3K¿, and PI3Kd. Each of these enzymes phosphorylates the 3'-hydroxyl group on phosphatidylinositiol (4,5)-bisphosphate (PIP2) to produce phosphatidylinositol (3,4,5)-trisphosphate (PIP3). This phosphorylation activity is measured using a GST-tagged PIP3 binding protein (Echelon Biosciences, Salt Lake City, Utah), an anti-GST-tagged Acceptor bead, and streptavidin-Donor bead. The interaction of biotinylated-PIP3 analog (IP4) and the PIP3 binding protein brings both Acceptor and Donor beads together producing, upon excitation of the Donor beads at 680 nm, a singlet oxygen species leading to the luminescent AlphaScreen signal. When PIP3 is produced via phosphorylation of PIP2 by a PI3K, PIP3 competes with biotinylated-PIP3 analog (IP4) for binding to the PIP3 binding protein.\n", " * postgresql://localhost/chembl_23\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Mean nAts 28.0, mcs nAts: 18\n", "[#6,#16]-[#8,#7]-[#6]1:[#6]:[#6](-[#6]2:[#6]:[#7]:[#6]3:[#7]:2:[#6,#7]:[#6,#7]:[#6]:[#6,#7]:3):[#6]:[#7]:[#6]:1-[#8,#17]\n", "Row: 1941 Binding affinity for adenosine A2a receptor by using as [3H]ZM-241385 (2 nM) radioligand in membranes from HEK-A2A cells\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 37.9, mcs nAts: 36\n", "[#6]-[#6]-[#6]-[#7]1:[#6](=[#8]):[#6]2:[#7]:[#6](-[#6]3:[#6]:[#6]:[#6](:[#6]:[#6]:3)-[#8]-[#6]-[#6]3:[#7]:[#6](-[#6]4:[#6]:[#6]:[#6]:[#6]:[#6]:4):[#7,#8]:[#8,#7]:3):[#7]:[#6]:2:[#7](:[#6]:1=[#8])-[#6]-[#6]-[#6]\n", "Row: 1942 Inhibition of human cathepsin S\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 34.2, mcs nAts: 18\n", "[#6]-[#6]-[#6]-[#6](-[#7]-[#6](=[#8])-[#8,#6]-[#6,#7]-[#6])-[#6](=[#8])-[#6]1:[#7]:[#7]:[#6](:[#8]:1)-[#6,#8]\n", "Row: 1943 Inhibition of human DPP4\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 24.4, mcs nAts: 15\n", "[#6,#16]-[#7]1-[#6]-[#6](-[#7])-[#6](-[#6]-1)-[#6]1:[#6]:[#6]:[#6](:[#6]:[#6]:1-[#17,#9])-[#17,#9]\n", "Row: 1944 Binding affinity against adenosine A1 receptor in rat cortex by using [3H]- PIA as a radioligand\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 18.0, mcs nAts: 11\n", "[#6]-[#7]1:[#6]:[#7]:[#6]2:[#6]:1:[#7]:[#6]:[#7]:[#6]:2-[#7]\n", "Row: 1945 Binding affinity against Adenosine A2a receptor from rat brain tissue was determined using [3H]ZM-241385 as radioligand\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 29.8, mcs nAts: 24\n", "[#7]-[#6]1:[#6,#7]:[#6](-[#7]-[#6]-[#6]2-[#6]-[#6]-[#6]-[#7]-2-[#6]-[#6]):[#7,#6]:[#6]2:[#7]:1:[#7]:[#6](:[#7]:2)-[#6]1:[#6]:[#6]:[#6]:[#8]:1\n", "Row: 1946 Displacement of [3H]DPAT from human 5HT1A receptor\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 22.5, mcs nAts: 15\n", "[#6,#7]-[#7,#6]-[#6]-[#6]-[#6]-[#8]-[#6]1:[#6]:[#6]:[#6]:[#6]2:[#6]:1:[#6]:[#6]:[#7]:2\n", "Row: 1947 Binding affinity to cloned human dopamine D3 receptor\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 34.0, mcs nAts: 25\n", "[#7,#6]-[#6]-[#6]-[#6]-[#6]-[#7]1-[#6]-[#6]-[#7](-[#6]-[#6]-1)-[#6]1:[#6,#7]:[#6](-[#6](-[#9,#6])(-[#9,#6])-[#9,#6]):[#7]:[#6](:[#7,#6]:1)-[#6](-[#6,#9])(-[#6,#9])-[#6,#9]\n", "Row: 1948 Displacement of [3H]dofetilide from human ERG by fliter binding assay\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 28.8, mcs nAts: 16\n", "[#8]=[#6](-[#8])-[#6](:[#6]:[#7]):[#6](:[#6]1:[#6]:[#6](:[#6](:[#6]:[#6]:1)-[#7])-[#9,#8])=[#8]\n", "Row: 1949 Inhibition constant against bovine trypsin\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 22.0, mcs nAts: 13\n", "[#6,#8]-[#7,#6]1:[#6,#7]:[#6,#7]:[#6](:[#6,#7]:1):[#6]:[#6](-[#6,#7](=[#7,#8])-[#7,#8]):[#6]:[#6]\n", "Row: 1950 Binding affinity to cloned human dopamine D2 receptor\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 34.0, mcs nAts: 25\n", "[#7,#6]-[#6]-[#6]-[#6]-[#6]-[#7]1-[#6]-[#6]-[#7](-[#6]-[#6]-1)-[#6]1:[#6,#7]:[#6](-[#6](-[#9,#6])(-[#9,#6])-[#9,#6]):[#7]:[#6](:[#7,#6]:1)-[#6](-[#6,#9])(-[#6,#9])-[#6,#9]\n", "Row: 1951 Displacement of [125I]apelin-13[Glp65,Nle75,Tyr77] from YFP epitope-tagged human APJ receptor expressed in HEK293 cell membranes incubated for 1 hr by Cheng-Prusoff equation analysis\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 101.8, mcs nAts: 56\n", "[#6]-[#6,#16]-[#6]-[#6]-[#6](-[#7]-[#6](=[#8])-[#6]1-[#6]-[#6]-[#6]-[#7]-1-[#6](=[#8])-[#6]-[#7]-[#6](=[#8])-[#6](-[#6]-[#6]-[#6]-[#6]-[#7])-[#7]-[#6](=[#8])-[#6](-[#6]-[#6]1:[#6]:[#7]:[#6]:[#7]:1)-[#7]-[#6](=[#8])-[#6](-[#7,#6])-[#6,#7]-[#8,#6])-[#6](=[#8])-[#7]1-[#6]-[#6]-[#6]-[#6]-1-[#6](=[#8])-[#7]-[#6]-[#6](=[#8])-[#8]\n", "Row: 1952 Binding affinity to MMP1\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 37.2, mcs nAts: 33\n", "[#6]-[#6]1:[#6]:[#6](-[#6]-[#8]-[#6]2:[#6]:[#6]:[#6](:[#6]:[#6]:2)-[#6](=[#8])-[#7]-[#6]2(-[#6]-[#6](=[#8])-[#7]-[#8])-[#6]-[#6]-[#6,#7,#8]-[#6]-[#6]-2):[#6]2:[#6](:[#7]:1):[#6]:[#6]:[#6]:[#6]:2\n", "Row: 1953 Binding affinity to MMP2\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 37.2, mcs nAts: 33\n", "[#6]-[#6]1:[#6]:[#6](-[#6]-[#8]-[#6]2:[#6]:[#6]:[#6](:[#6]:[#6]:2)-[#6](=[#8])-[#7]-[#6]2(-[#6]-[#6](=[#8])-[#7]-[#8])-[#6]-[#6]-[#6,#7,#8]-[#6]-[#6]-2):[#6]2:[#6](:[#7]:1):[#6]:[#6]:[#6]:[#6]:2\n", "Row: 1954 Binding affinity to MMP9\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 37.2, mcs nAts: 33\n", "[#6]-[#6]1:[#6]:[#6](-[#6]-[#8]-[#6]2:[#6]:[#6]:[#6](:[#6]:[#6]:2)-[#6](=[#8])-[#7]-[#6]2(-[#6]-[#6](=[#8])-[#7]-[#8])-[#6]-[#6]-[#6,#7,#8]-[#6]-[#6]-2):[#6]2:[#6](:[#7]:1):[#6]:[#6]:[#6]:[#6]:2\n", "Row: 1955 Binding affinity to MMP13\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 37.2, mcs nAts: 33\n", "[#6]-[#6]1:[#6]:[#6](-[#6]-[#8]-[#6]2:[#6]:[#6]:[#6](:[#6]:[#6]:2)-[#6](=[#8])-[#7]-[#6]2(-[#6]-[#6](=[#8])-[#7]-[#8])-[#6]-[#6]-[#6,#7,#8]-[#6]-[#6]-2):[#6]2:[#6](:[#7]:1):[#6]:[#6]:[#6]:[#6]:2\n", "Row: 1956 Inhibition of pig kidney alanyl aminopeptidase M1 using Ala-AMC as substrate preincubated for 30 to 60 mins followed by substrate addition measured for 15 mins by spectrofluorimetric analysis\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 17.1, mcs nAts: 8\n", "[#7,#6]-[#6]-[#6](-[#7])-[#15](=[#8])(-[#8])-[#8,#6]\n", "Row: 1957 Displacement of [3H]RX821002 from human adrenergic alpha2A receptor expressed in CHO cells\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 20.7, mcs nAts: 15\n", "[#6]-[#6](-[#8,#7,#16]-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1-[#6])-[#6]1=[#7]-[#6]-[#6]-[#7,#6,#8,#16]-1\n", "Row: 1958 Displacement of [3H]RX821002 from human adrenergic alpha-2B receptor expressed in CHO cells\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 20.7, mcs nAts: 15\n", "[#6]-[#6](-[#8,#7,#16]-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1-[#6])-[#6]1=[#7]-[#6]-[#6]-[#7,#6,#8,#16]-1\n", "Row: 1959 Displacement of [3H]RX821002 from human adrenergic Alpha-2C receptor expressed in CHO cells\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 20.7, mcs nAts: 15\n", "[#6]-[#6](-[#8,#7,#16]-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1-[#6])-[#6]1=[#7]-[#6]-[#6]-[#7,#6,#8,#16]-1\n", "Row: 1960 Antagonist activity at human TRPV1 expressed in CHO cells assessed as inhibition of capsaicin-induced (45)Ca2+ uptake after 5 mins by liquid scintillation counting analysis\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 43.5, mcs nAts: 36\n", "[#6]-[#6](-[#6](=[#8])-[#7]-[#6]-[#6]1:[#6]:[#6]:[#6](:[#7]:[#6]:1-[#7]-[#16,#6]-[#6]1:,-[#6]:,-[#6]:,-[#6]:,-[#6]:,-[#6]:,-1)-[#6](-[#9])(-[#9])-[#9])-[#6]1:[#6]:[#6]:[#6](:[#6](:[#6]:1)-[#9])-[#7]-[#16](-[#6])(=[#8])=[#8]\n", "Row: 1961 Displacement of [3H]RTX from human TRPV1 expressed in CHO cells after 60 mins by scintillation counting analysis\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 43.5, mcs nAts: 36\n", "[#6]-[#6](-[#6](=[#8])-[#7]-[#6]-[#6]1:[#6]:[#6]:[#6](:[#7]:[#6]:1-[#7]-[#16,#6]-[#6]1:,-[#6]:,-[#6]:,-[#6]:,-[#6]:,-[#6]:,-1)-[#6](-[#9])(-[#9])-[#9])-[#6]1:[#6]:[#6]:[#6](:[#6](:[#6]:1)-[#9])-[#7]-[#16](-[#6])(=[#8])=[#8]\n", "Row: 1962 Displacement of [125I]iodo-(+/-)-cyanopindolol from human adrenergic beta2 receptor expressed in CHO cells after 3 hrs by radio-ligand binding assay\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 26.6, mcs nAts: 12\n", "[#6]-[#7]-[#6]-[#6](-[#8])-[#6]1:[#6]:[#6]:[#6](:[#6]:[#6]:1)-[#8]\n", "Row: 1963 Displacement of [125I]iodo-(+/-)-cyanopindolol from human adrenergic beta1 receptor expressed in CHO cells after 3 hrs by radio-ligand binding assay\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 26.6, mcs nAts: 12\n", "[#6]-[#7]-[#6]-[#6](-[#8])-[#6]1:[#6]:[#6]:[#6](:[#6]:[#6]:1)-[#8]\n", "Row: 1964 Inhibition of Cathepsin S\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 35.7, mcs nAts: 19\n", "[#6]-[#6](-[#6]-[#7])-[#7]-[#6](=[#8])-[#8]-[#6](-[#6]-[#6]1-,:[#6]-,:[#6]-,:[#6]-,:[#6]-,:[#6]-,:1)-[#6](=,-[#8,#7])-,=[#7,#8]\n", "Row: 1965 Inhibition of human CA1 after 15 mins by stopped-flow CO2 hydrase assay\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 23.6, mcs nAts: 13\n", "[#7]-[#16](=[#8])(=[#8])-[#6]1:[#6]:[#7](-[#6]-[#6]):[#6]:[#6]:[#6]:1=[#8]\n", "Row: 1966 Inhibition of recombinant rat FAAH preincubated for 3 hrs\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 21.1, mcs nAts: 8\n", "[#8,#7]=,-[#6](-,=[#7,#6,#8])-[#7]1:[#6,#7]:[#6]:[#6]:[#7,#6]:1\n", "Row: 1967 Inhibition of human CA2 after 15 mins by stopped-flow CO2 hydrase assay\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 23.6, mcs nAts: 13\n", "[#7]-[#16](=[#8])(=[#8])-[#6]1:[#6]:[#7](-[#6]-[#6]):[#6]:[#6]:[#6]:1=[#8]\n", "Row: 1968 Inhibition of human CA9 after 15 mins by stopped-flow CO2 hydrase assay\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 23.6, mcs nAts: 13\n", "[#7]-[#16](=[#8])(=[#8])-[#6]1:[#6]:[#7](-[#6]-[#6]):[#6]:[#6]:[#6]:1=[#8]\n", "Row: 1969 Inhibition of human CA12 after 15 mins by stopped-flow CO2 hydrase assay\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 23.6, mcs nAts: 13\n", "[#7]-[#16](=[#8])(=[#8])-[#6]1:[#6]:[#7](-[#6]-[#6]):[#6]:[#6]:[#6]:1=[#8]\n", "Row: 1970 Binding affinity to glucocorticoid receptor (unknown origin) by fluorescence polarization assay\n", " * postgresql://localhost/chembl_23\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Mean nAts 37.9, mcs nAts: 30\n", "[#6,#7,#8]-,=[#6](-,=[#8,#7])-[#6]1:[#6]:[#6]:[#6](:[#6]:[#7,#6]:1)-[#6]1:[#6]:[#6]:[#6]2:[#6](:[#7]:1)-[#8]-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1-[#6]-2-[#6](-[#6])(-[#6])-[#6](=[#8])-[#7]-[#6]\n", "Row: 1971 Binding affinity to progesterone receptor (unknown origin) by fluorescence polarization assay\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 37.9, mcs nAts: 30\n", "[#6,#7,#8]-,=[#6](-,=[#8,#7])-[#6]1:[#6]:[#6]:[#6](:[#6]:[#7,#6]:1)-[#6]1:[#6]:[#6]:[#6]2:[#6](:[#7]:1)-[#8]-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1-[#6]-2-[#6](-[#6])(-[#6])-[#6](=[#8])-[#7]-[#6]\n", "Row: 1972 Inhibition of human recombinant carbonic anhydrase 1 by stopped flow CO2 hydration method\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 16.8, mcs nAts: 10\n", "[#6,#8]-,=[#6]1=,-[#6]-,=[#6](=,-[#8,#6])-,=[#7,#8]-[#16](-[#8,#7]-,=1)(=[#8])=[#8]\n", "Row: 1973 Inhibition of human recombinant carbonic anhydrase 2 by stopped flow CO2 hydration method\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 16.8, mcs nAts: 10\n", "[#6,#8]-,=[#6]1=,-[#6]-,=[#6](=,-[#8,#6])-,=[#7,#8]-[#16](-[#8,#7]-,=1)(=[#8])=[#8]\n", "Row: 1974 Inhibition of human recombinant carbonic anhydrase 9 by stopped flow CO2 hydration method\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 16.8, mcs nAts: 10\n", "[#6,#8]-,=[#6]1=,-[#6]-,=[#6](=,-[#8,#6])-,=[#7,#8]-[#16](-[#8,#7]-,=1)(=[#8])=[#8]\n", "Row: 1975 Inhibition of human recombinant carbonic anhydrase 12 by stopped flow CO2 hydration method\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 16.8, mcs nAts: 10\n", "[#6,#8]-,=[#6]1=,-[#6]-,=[#6](=,-[#8,#6])-,=[#7,#8]-[#16](-[#8,#7]-,=1)(=[#8])=[#8]\n", "Row: 1976 Competitive inhibition of goat liver cathepsin B using BANA substrate by Lineweaver-Burk plot analysis\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 22.8, mcs nAts: 7\n", "[#6]1:[#6]:[#6]:[#6](:[#6]:[#6]:1)-[#6]\n", "Row: 1977 Competitive inhibition of goat liver cathepsin H using Leu-betaNA substrate by Lineweaver-Burk plot analysis\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 22.8, mcs nAts: 7\n", "[#6]1:[#6]:[#6]:[#6](:[#6]:[#6]:1)-[#6]\n", "Row: 1978 Inhibition of Cathepsin K\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 35.7, mcs nAts: 19\n", "[#6]-[#6](-[#6]-[#7])-[#7]-[#6](=[#8])-[#8]-[#6](-[#6]-[#6]1-,:[#6]-,:[#6]-,:[#6]-,:[#6]-,:[#6]-,:1)-[#6](=,-[#8,#7])-,=[#7,#8]\n", "Row: 1979 Inhibition of Cathepsin L\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 35.7, mcs nAts: 19\n", "[#6]-[#6](-[#6]-[#7])-[#7]-[#6](=[#8])-[#8]-[#6](-[#6]-[#6]1-,:[#6]-,:[#6]-,:[#6]-,:[#6]-,:[#6]-,:1)-[#6](=,-[#8,#7])-,=[#7,#8]\n", "Row: 1980 Inhibition of human cloned CA1 by CO2 hydration assay\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 23.0, mcs nAts: 8\n", "[#7,#6,#8]-[#16,#6,#8]-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1\n", "Row: 1981 Inhibition of human cloned CA2 by CO2 hydration assay\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 23.0, mcs nAts: 8\n", "[#7,#6,#8]-[#16,#6,#8]-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1\n", "Row: 1982 Inhibition of human cloned CA9 catalytic domain by CO2 hydration assay\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 23.0, mcs nAts: 8\n", "[#7,#6,#8]-[#16,#6,#8]-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1\n", "Row: 1983 Inhibition of human cloned CA12 catalytic domain by CO2 hydration assay\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 23.0, mcs nAts: 8\n", "[#7,#6,#8]-[#16,#6,#8]-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1\n", "Row: 1984 Inhibition of human carbonic anhydrase 7 preincubated with compound for 15 mins by carbon dioxide hydration assay\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 19.0, mcs nAts: 10\n", "[#6,#7]-[#6,#7,#16]-[#6,#7,#8]-[#7,#6]-[#6]1:,-[#6,#8]:,-[#6]:,-[#6]:,-[#6]:,-[#6]:,-1\n", "Row: 1985 Displacement of [3H]dopamine from human DAT expressed in HEK293 cells by scintillation proximity assay\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 23.9, mcs nAts: 21\n", "[#8,#9]-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1-[#6]-[#6](-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1)-[#7]1-[#6]-[#6]-[#7]-[#6]-[#6]-1\n", "Row: 1986 Displacement of [3H]nisoxetine from human NET expressed in HEK293 cells by scintillation proximity assay\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 23.9, mcs nAts: 21\n", "[#8,#9]-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1-[#6]-[#6](-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1)-[#7]1-[#6]-[#6]-[#7]-[#6]-[#6]-1\n", "Row: 1987 Displacement of [3H]citalopram from human SERT expressed in HEK293 cells by scintillation proximity assay\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 23.9, mcs nAts: 21\n", "[#8,#9]-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1-[#6]-[#6](-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1)-[#7]1-[#6]-[#6]-[#7]-[#6]-[#6]-1\n", "Row: 1988 Displacement of [3H]FFRF-NH2 from human flag-tagged NPFF2 receptor expressed in CHO cells by scintillation counting\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 34.8, mcs nAts: 26\n", "[#7]=[#6](-[#7])-[#7]-[#6]-[#6]-[#6]-[#6](-[#7]-[#6](=,-[#8,#6])-,=[#6,#8])-[#6](=[#8])-[#7]-[#6](-[#6]-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1)-[#6](-[#7])=[#8]\n", "Row: 1989 Displacement of [3H]-LSD from cloned human 5HT6 receptor expressed in HEK293 cells\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 28.2, mcs nAts: 25\n", "[#8]=[#16](=[#8])(-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1)-[#7]1:[#6]:[#6]:[#6]2:[#6]:1:[#6]:[#6]:[#6]:[#6]:2-[#6]-[#7]1-[#6]-[#6]-[#7]-[#6]-[#6]-1\n", "Row: 1990 Affinity against HIV protease\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 49.0, mcs nAts: 9\n", "[#6,#7,#8]-,=[#7,#6]-[#16,#6,#7]-[#6]1:,-[#6]:,-[#6,#7]:,-[#6]:,-[#6]:,-[#6,#7]:,-1\n", "Row: 1991 Binding affinity towards Lysophosphatidic acid 1 (LPA1) receptor\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 44.3, mcs nAts: 42\n", "[#6]-[#6]-[#6]-[#6]-[#6]-[#6]-[#6]-[#6]-[#6]=[#6]-[#6]-[#6]-[#6]-[#6]-[#6]-[#6]-[#6]-[#6](=[#8])-[#7]-[#6](-[#6]-[#8,#6]-[#15](=[#8])(-[#8])-[#8])-[#6]-[#6]1:[#6]:[#6]:[#6](:[#6]:[#6]:1)-[#8]-[#6]-[#6]1:[#6,#7]:[#6]:[#6,#7]:[#6,#7]:[#7,#6]:1\n", "Row: 1992 Inhibition of wild type Arabidopsis thaliana acetohydroxyacid synthase\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 29.8, mcs nAts: 24\n", "[#6]-[#7]1:[#7]:[#6](-[#6]):[#6]2:[#6](:[#6]:1=[#8]):[#6](:[#6]:[#6]:[#6]:2)-[#8]-[#6]1:[#7]:[#6](-[#8]-[#6]):[#6]:[#6](:[#7]:1)-[#8]-[#6]\n", "Row: 1993 Inhibition of wild type Arabidopsis thaliana acetolactate synthase by colorimetry\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 24.2, mcs nAts: 20\n", "[#6,#8]-[#6]1:[#6,#7]:[#6]:[#7]2:[#6](:[#7,#6]:1):[#7]:[#6](:[#7]:2)-[#16](=[#8])(=[#8])-[#7]-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1\n", "Row: 1994 Inhibition of human carbonic anhydrase 2 preincubated with compound for 15 mins by carbon dioxide hydration assay\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 19.0, mcs nAts: 10\n", "[#6,#7]-[#6,#7,#16]-[#6,#7,#8]-[#7,#6]-[#6]1:,-[#6,#8]:,-[#6]:,-[#6]:,-[#6]:,-[#6]:,-1\n", "Row: 1995 Binding affinity to aryl hydrocarbon receptor (unknown origin)\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 19.8, mcs nAts: 16\n", "[#6]1:[#6]:[#6]:[#6](:[#6]:[#6]:1)-[#6]=[#6]-[#6]1:[#6]:[#6](-[#9,#6,#8,#17]):[#6]:[#6](:[#6]:1)-[#9,#6,#8,#17]\n", "Row: 1996 Inhibitory activity against ErmAM methylase\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 24.3, mcs nAts: 9\n", "[#7,#6,#8,#16]-[#6]1:[#7,#6]:[#6](-[#7]):[#7,#6]:[#6](:[#7]:1)-[#7,#6]\n", "Row: 1997 Inhibition of human carbonic anhydrase 1 preincubated with compound for 15 mins by carbon dioxide hydration assay\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 19.0, mcs nAts: 10\n", "[#6,#7]-[#6,#7,#16]-[#6,#7,#8]-[#7,#6]-[#6]1:,-[#6,#8]:,-[#6]:,-[#6]:,-[#6]:,-[#6]:,-1\n", "Row: 1998 Displacement of [3H]CP-55940 from human cannabinoid CB2 receptor expressed in CHO cells\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 33.1, mcs nAts: 31\n", "[#6]-[#7]-[#6](=[#7]-[#16](=[#8])(=[#8])-[#7,#6]1-,:[#6]-,:[#6]-,:[#6]-,:[#6]-,:[#6]-,:1)-[#7,#6]1-[#6]-[#6](-[#6]2:[#6]:[#6]:[#6]:[#6]:[#6]:2)-[#6,#7](=,-[#7]-,=1)-[#6]1:[#6]:[#6]:[#6](:[#6]:[#6]:1)-[#17]\n", "Row: 1999 Binding affinity to human cytoplasmic ThrRS by coupled spectrophotometry\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 27.7, mcs nAts: 19\n", "[#6]-[#6](=,-[#8])-[#7,#6]-[#16,#6]-[#6,#7]=,-[#6,#7,#16]-[#6,#7](:,-[#6]:,-[#6]:[#6]:[#6]-[#6]1:[#6,#7]:[#6]:[#7,#6]:[#6]:[#7,#6]:1):,-[#6]\n", "Row: 2000 Binding affinity to Yersinia pestis ThrRS by coupled spectrophotometry\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 27.7, mcs nAts: 19\n", "[#6]-[#6](=,-[#8])-[#7,#6]-[#16,#6]-[#6,#7]=,-[#6,#7,#16]-[#6,#7](:,-[#6]:,-[#6]:[#6]:[#6]-[#6]1:[#6,#7]:[#6]:[#7,#6]:[#6]:[#7,#6]:1):,-[#6]\n", "Row: 2001 Displacement of [125I]-CXCL12 from human CXCR7 expressed in HEK293 cells after 3 hrs\n", " * postgresql://localhost/chembl_23\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Mean nAts 33.1, mcs nAts: 22\n", "[#6]1:[#6]:[#6](-[#6](=[#8])-[#7](-[#6]-[#6]-[#6])-[#6]-[#6](-[#6])=[#6]-[#6]2:[#6]:[#6]:[#6]:[#6]:[#6]:2):[#6]:[#6]:[#6]:1\n", "Row: 2002 Displacement of [3H]CP-55940 from human cannabinoid CB1 receptor expressed in CHO cells\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 33.1, mcs nAts: 31\n", "[#6]-[#7]-[#6](=[#7]-[#16](=[#8])(=[#8])-[#7,#6]1-,:[#6]-,:[#6]-,:[#6]-,:[#6]-,:[#6]-,:1)-[#6,#7]1=,-[#7]-,=[#7,#6](-[#6]2:[#6]:[#6]:[#6](:[#6]:[#6]:2)-[#17])-[#6](-[#6]-1)-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1\n", "Row: 2003 Binding affinity towards human factor Xa\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 37.3, mcs nAts: 33\n", "[#6]-[#6]1:[#6]:[#6](-[#6](=[#8])-[#7]-[#6]2:[#6]:[#6]:[#6](:[#6]:[#6]:2)-[#7]2:,-[#6]:,-[#7,#6]:,=[#6]3:,-[#6]:,-2:,-[#6,#7]:,=[#6,#7]:,-[#6,#7]:,=[#6,#7]:,-3):[#7](:[#7]:1)-[#6]1:[#6]:[#6]:[#6]:[#6](:[#6]:1)-[#6](=[#7])-[#7]\n", "Row: 2004 Binding affinity towards human factor IXa\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 37.3, mcs nAts: 33\n", "[#6]-[#6]1:[#6]:[#6](-[#6](=[#8])-[#7]-[#6]2:[#6]:[#6]:[#6](:[#6]:[#6]:2)-[#7]2:,-[#6]:,-[#7,#6]:,=[#6]3:,-[#6]:,-2:,-[#6,#7]:,=[#6,#7]:,-[#6,#7]:,=[#6,#7]:,-3):[#7](:[#7]:1)-[#6]1:[#6]:[#6]:[#6]:[#6](:[#6]:1)-[#6](=[#7])-[#7]\n", "Row: 2005 Inhibition of human factor 10a by fluorescence assay\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 31.9, mcs nAts: 19\n", "[#6,#7]-[#6]1:[#6]:[#6]:[#6](:[#6](:[#6]:1)-[#9])-[#7]1-[#6]-[#6]-[#6](-[#6]-1=[#8])-[#7]-[#16](=[#8])(=[#8])-[#6]\n", "Row: 2006 Displacement of [125I]peptide YY from human NPY5 receptor\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 28.4, mcs nAts: 19\n", "[#6]-[#6](-[#6])-[#16](=[#8])(=[#8])-[#7]-[#6]-[#6]1-[#6]-[#6]-[#6](-[#6]-[#6]-1)-[#7]-[#6](=[#8])-[#6]-[#6,#7]\n", "Row: 2007 Displacement of [3H]SYM2081 from rat recombinant iGluR5-1b expressed in baculovirus-infected insect Sf9 cells\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 22.3, mcs nAts: 13\n", "[#7]-[#6](-[#6]-[#6,#7]1:[#6]:[#6]:[#6]:[#6,#7](:[#6]:1)-[#6])-[#6](=[#8])-[#8]\n", "Row: 2008 Displacement of [3H]SCH23390 from human D1 receptor expressed in Ltk cell\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 19.5, mcs nAts: 14\n", "[#6,#7,#16]-[#7,#6]1-,=[#6,#7]-[#6]-[#6]:,-[#6](-,:[#6]-[#6,#7]-1):[#6]:[#6](:[#6](:[#6])-[#8,#17])-[#17,#8]\n", "Row: 2009 Competitive binding to RAP1 (unknown origin) incubated for 1 hr by fluorescence polarization-based binding assay\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 124.7, mcs nAts: 47\n", "[#6]-[#6,#7]-[#6](-,=[#6,#8])-[#6](-[#7,#6]-[#6]=,-[#8,#6])-[#6,#7]-[#7,#6]-[#6]-[#6,#7]-[#7,#6]-[#6](-[#6]-[#6])-[#6,#7]-[#7,#6]-[#6](-[#6]-[#6]-[#6,#16]-[#6])-[#6,#7]-[#7,#6]-[#6](-[#6,#7]-[#7,#6]-[#6]-[#6,#7]-[#7,#6]-[#6](-[#6]-[#6])-[#6,#7]-[#7,#6]-[#6](-[#6])-[#6,#7]-[#7,#6]-[#6](-[#6,#7])-[#6](=,-[#8,#6])-[#7,#8])-[#6]-[#8,#6]\n", "Row: 2010 In vitro binding affinity for rat TRPV1 expressed in CHO cells using [3H]-RTX\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 27.8, mcs nAts: 17\n", "[#6]-[#6]-[#7]=,-[#6](-,=[#16])-,=[#7]-[#6]-[#6]1:[#6]:[#6]:[#6](:[#6]:[#6]:1)-[#6](-[#6])(-[#6])-[#6]\n", "Row: 2011 Inhibition of GRK5 (unknown origin) after 90 to 120 mins by Kinase-Glo assay\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 24.5, mcs nAts: 20\n", "[#8]=[#6](-[#6]-[#7]-[#6]1:[#6]:[#6]:[#6]:[#6](:[#6]:1)-[#9,#6,#8,#16,#17])-[#7]-[#7]=[#6]-[#6]1:[#6]:[#6]:[#7]:[#6]:[#6]:1\n", "Row: 2012 Inhibition of human carbonic anhydrase 9 preincubated for 10 mins by CO2 hydration stopped-flow assay\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 25.5, mcs nAts: 13\n", "[#6]1:[#6]:[#6]:[#6]:[#6](:[#6]:1)-[#7,#6]1:[#7,#6]:[#6,#7](-[#6]):[#6,#7]:[#6,#7]:1-[#6]\n", "Row: 2013 Inhibition of human carbonic anhydrase 2 preincubated for 10 mins by CO2 hydration stopped-flow assay\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 25.5, mcs nAts: 13\n", "[#6]1:[#6]:[#6]:[#6]:[#6](:[#6]:1)-[#7,#6]1:[#7,#6]:[#6,#7](-[#6]):[#6,#7]:[#6,#7]:1-[#6]\n", "Row: 2014 Inhibition of human carbonic anhydrase 1 preincubated for 10 mins by CO2 hydration stopped-flow assay\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 25.5, mcs nAts: 13\n", "[#6]1:[#6]:[#6]:[#6]:[#6](:[#6]:1)-[#7,#6]1:[#7,#6]:[#6,#7](-[#6]):[#6,#7]:[#6,#7]:1-[#6]\n", "Row: 2015 Inhibition of GRK3 (unknown origin) after 90 to 120 mins by Kinase-Glo assay\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 24.5, mcs nAts: 20\n", "[#8]=[#6](-[#6]-[#7]-[#6]1:[#6]:[#6]:[#6]:[#6](:[#6]:1)-[#9,#6,#8,#16,#17])-[#7]-[#7]=[#6]-[#6]1:[#6]:[#6]:[#7]:[#6]:[#6]:1\n", "Row: 2016 Inhibition of human leukocyte elastase after 20 mins\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 21.9, mcs nAts: 14\n", "[#6]-[#6]1(-[#6])-[#6](=[#8])-[#7](-[#6]-1=[#8])-[#6]1:[#6]:[#6]:[#6]:[#6,#7]:[#6]:1\n", "Row: 2017 Inhibition of serotonin reuptake at human SERT expressed in HEK293 cells coexpressing macrophage scavenger receptor\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 16.6, mcs nAts: 14\n", "[#7,#6,#16]-[#6,#7,#16]-[#6]-[#6]-[#6](:[#6]:[#7]):[#6]1:[#6]:[#6]:[#6]:[#6](:[#6]:1)-[#9,#6]\n", "Row: 2018 BindingDB_Patents: Radioligand Binding Assay. Radioligand binding assay described in Bergman et. al. Bioorg. Med. Chem. Lett. 2008, 18, 1425-1430.\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 30.1, mcs nAts: 24\n", "[#8,#6,#7,#9]-[#6]1:[#6]:[#6]:[#6]:[#6,#7]:[#6]:1-[#6](=[#8])-[#7]1-[#6]-[#6](-[#6]-[#8]-[#6]2:[#6]:[#6]:[#6,#7]:[#6,#7]:[#7,#6]:2)-[#6]-[#6]-[#6]-1-[#6]\n", "Row: 2019 BindingDB_Patents: Inhibition Assay. The activity of the isolated JAK1, JAK2 or TYK2 kinase domain was measured by monitoring phosphorylation of a peptide derived from JAK3 (Val-Ala-Leu-Val-Asp-Gly-Tyr-Phe-Arg-Leu-Thr-Thr) fluorescently labeled on the N-terminus with 5-carboxyfluorescein using the Caliper LabChip technology (Caliper Life Sciences, Hopkinton, Mass.). To determine the inhibition constants (Ki) of Examples 1-508, compounds were diluted serially in DMSO and added to 50 uL kinase reactions containing 1.5 nM JAK1, 0.2 nM purified JAK2 or 1 nM purified TYK2 enzyme, 100 mM Hepes pH7.2, 0.015% Brij-35, 1.5 uM peptide substrate, 25 uM ATP, 10 mM MgCl2, 4 mM DTT at a final DMSO concentration of 2%. Reactions were incubated at 22° C. in 384-well polypropylene microtiter plates for 30 minutes and then stopped by addition of 25 uL of an EDTA containing solution (100 mM Hepes pH 7.2, 0.015% Brij-35, 150 mM EDTA), resulting in a final EDTA concentration of 50 mM.\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 29.4, mcs nAts: 23\n", "[#8]=[#6](-[#7]-[#6]1:[#6,#16]:[#6,#7]:[#7]:[#7,#6]:1-[#6,#7]1:,-[#6]:,-[#6,#7]:,-[#6,#7]:,-[#6]:,-[#6]:,-1)-[#6]1:[#6]:[#7]:[#7]2:[#6]:1:[#7]:[#6]:[#6]:[#6]:2\n", "Row: 2020 BindingDB_Patents: Inhibition Assay. The activity of the isolated JAK1, JAK2 or TYK2 kinase domain was measured by monitoring phosphorylation of a peptide derived from JAK3 (Val-Ala-Leu-Val-Asp-Gly-Tyr-Phe-Arg-Leu-Thr-Thr) fluorescently labeled on the N-terminus with 5-carboxyfluorescein using the Caliper LabChip technology (Caliper Life Sciences, Hopkinton, Mass.). To determine the inhibition constants (Ki) of Examples 1-508, compounds were diluted serially in DMSO and added to 50 uL kinase reactions containing 1.5 nM JAK1, 0.2 nM purified JAK2 or 1 nM purified TYK2 enzyme, 100 mM Hepes pH7.2, 0.015% Brij-35, 1.5 uM peptide substrate, 25 uM ATP, 10 mM MgCl2, 4 mM DTT at a final DMSO concentration of 2%. Reactions were incubated at 22° C. in 384-well polypropylene microtiter plates for 30 minutes and then stopped by addition of 25 uL of an EDTA containing solution (100 mM Hepes pH 7.2, 0.015% Brij-35, 150 mM EDTA), resulting in a final EDTA concentration of 50 mM.\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 29.4, mcs nAts: 23\n", "[#8]=[#6](-[#7]-[#6]1:[#6,#16]:[#6,#7]:[#7]:[#7,#6]:1-[#6,#7]1:,-[#6]:,-[#6,#7]:,-[#6,#7]:,-[#6]:,-[#6]:,-1)-[#6]1:[#6]:[#7]:[#7]2:[#6]:1:[#7]:[#6]:[#6]:[#6]:2\n", "Row: 2021 Displacement of [3H](+)-pentazocine ((+)-[2S-(2R,6R,11R)]-1,2,3,4,5,6-hexahydro-6,11-dimethyl- 3-(3-methyl-2-butenyl)-2,6-methano-3-benzazocine- 8-ol) from sigma 1 receptor in Dunkin guinea pig brain membrane by radioreceptor binding assay\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 23.6, mcs nAts: 9\n", "[#6,#8]-,=[#6,#8]-[#7,#6](-,:[#6]-,:[#6]-[#7,#6]-[#6,#7,#8])-,:[#6]-,:[#6]\n", "Row: 2022 Displacement of N-[3H]methylhistamine from histamine H3 receptor in rat cortex membrane\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 28.8, mcs nAts: 20\n", "[#6]-[#6]1-[#6]-[#6]-[#6]-[#7]-1-[#6]-[#6]-[#6]1:[#6]:[#6]:[#6](:[#6]:[#6]:1)-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1\n", "Row: 2023 Displacement of [3H]histamine from human histamine H4 receptor expressed in human SK-N-MC cells by liquid scintillation counting\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 21.5, mcs nAts: 12\n", "[#7]=,-[#6](-,=[#7])-[#16,#7]-[#6]-[#6]-[#6]-[#6]1:[#6]:[#7]:[#6]:[#7]:1\n", "Row: 2024 Displacement of [3H]N-alpha-methylhistamine from human histamine H3 receptor expressed in human SK-N-MC cells by liquid scintillation counting\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 21.5, mcs nAts: 12\n", "[#7]=,-[#6](-,=[#7])-[#16,#7]-[#6]-[#6]-[#6]-[#6]1:[#6]:[#7]:[#6]:[#7]:1\n", "Row: 2025 Inhibition of maize PAO at pH 6.5 by spectrophotometry-based Dixon plot method\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 20.2, mcs nAts: 9\n", "[#7,#6]=,-[#6](-,=[#7,#6])-,=[#7,#6]-[#6]-[#6,#7]-[#6]-[#6,#7]-[#7,#6]\n", "Row: 2026 Displacement of [3H](+)-pentazocine from sigma 1 receptor in guinea pig brain membrane by scintillation analysis\n", " * postgresql://localhost/chembl_23\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Mean nAts 28.8, mcs nAts: 10\n", "[#6]=,-[#6]-[#6]-[#7]1-[#6]-[#6]-[#6,#7](-[#6]-[#6]-1)-[#6,#8]\n", "Row: 2027 BindingDB_Patents: Enzyme Inhibition Assay. Determination of the enzymatic activity of the catalytic domain of human Cathepsin S. This protein is obtained as an inactive enzyme from R and D Systems, Wiesbaden, Germany (catalog No. 1183-CY).\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 29.9, mcs nAts: 17\n", "[#6,#9]-[#6](-[#9,#6])-[#6]-[#6](-[#7]-[#6,#16](=[#8])-,=[#7,#6,#8])-[#6](=[#8])-[#7]-[#6]1(-[#6]#[#7])-[#6]-[#6]-1\n", "Row: 2028 Inhibitory activity against human carbonic anhydrase I expressed in Escherichia coli BL21\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 19.2, mcs nAts: 8\n", "[#6,#7,#16]1:,-[#6]:,-[#6,#7]:,-[#6](:,-[#6,#7]:[#6]:,-1)-[#16,#6,#7,#8]-,=[#7,#6,#8]\n", "Row: 2029 Binding affinity to human recombinant CB2 receptor expressed in african green monkey COS cells by radioligand binding assay\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 31.0, mcs nAts: 20\n", "[#6]-[#6]-[#6,#7]-[#6]-[#6]-[#6]-[#6]-[#6]-[#6]-[#6]-[#6]-[#8]-[#6]1:[#6]:[#6](-[#8]):[#6]:[#6](:[#6]:1)-[#8,#6]\n", "Row: 2030 Binding affinity to human recombinant CB1 receptor expressed in african green monkey COS cells by radioligand binding assay\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 31.0, mcs nAts: 20\n", "[#6]-[#6]-[#6,#7]-[#6]-[#6]-[#6]-[#6]-[#6]-[#6]-[#6]-[#6]-[#8]-[#6]1:[#6]:[#6](-[#8]):[#6]:[#6](:[#6]:1)-[#8,#6]\n", "Row: 2031 Displacement of [3H]spiperone from rat cloned dopamine D3 receptor expressed in HEK293 cells after 1 hr\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 33.5, mcs nAts: 19\n", "[#6]-[#6]-[#6]-[#7](-[#6]-[#6]-[#7]1-[#6]-[#6]-[#7](-[#6]-[#6]-1)-[#6])-[#6]1-[#6]-[#6]-[#6]:[#6]-[#6]-1\n", "Row: 2032 Displacement of [3H]spiperone from rat cloned dopamine D2L receptor expressed in HEK293 cells after 1 hr\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 33.5, mcs nAts: 19\n", "[#6]-[#6]-[#6]-[#7](-[#6]-[#6]-[#7]1-[#6]-[#6]-[#7](-[#6]-[#6]-1)-[#6])-[#6]1-[#6]-[#6]-[#6]:[#6]-[#6]-1\n", "Row: 2033 Displacement of [3H]CGS-21680 from recombinant human adenosine A2a receptor expressed in HEK cells\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 32.5, mcs nAts: 20\n", "[#7]-[#6]1:[#7]:[#6](-[#6,#7,#17]):[#7]:[#6]2:[#6]:1:[#7]:[#6]:[#7]:2-[#6]1-[#8]-[#6](-[#6]-[#8,#7])-[#6](-[#6]-1-[#8])-[#8]\n", "Row: 2034 Binding affinity towards Adenosine A1 receptor of rat cerebral cortex using [3H]-DPCPX as radioligand\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 25.8, mcs nAts: 19\n", "[#7]-[#6]1:[#7]:[#6](-[#6]#[#6]-[#6]-[#8,#6,#7]):[#6]:[#7]2:[#6]:1:[#7]:[#6](:[#7]:2)-[#6]1:[#6]:[#6]:[#6]:[#8]:1\n", "Row: 2035 BindingDB_Patents: Inhibition Assay. The activity of the isolated JAK1, JAK2 or TYK2 kinase domain was measured by monitoring phosphorylation of a peptide derived from JAK3 (Val-Ala-Leu-Val-Asp-Gly-Tyr-Phe-Arg-Leu-Thr-Thr) fluorescently labeled on the N-terminus with 5-carboxyfluorescein using the Caliper LabChip technology (Caliper Life Sciences, Hopkinton, Mass.). To determine the inhibition constants (Ki) of Examples 1-508, compounds were diluted serially in DMSO and added to 50 uL kinase reactions containing 1.5 nM JAK1, 0.2 nM purified JAK2 or 1 nM purified TYK2 enzyme, 100 mM Hepes pH7.2, 0.015% Brij-35, 1.5 uM peptide substrate, 25 uM ATP, 10 mM MgCl2, 4 mM DTT at a final DMSO concentration of 2%. Reactions were incubated at 22° C. in 384-well polypropylene microtiter plates for 30 minutes and then stopped by addition of 25 uL of an EDTA containing solution (100 mM Hepes pH 7.2, 0.015% Brij-35, 150 mM EDTA), resulting in a final EDTA concentration of 50 mM.\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 29.4, mcs nAts: 23\n", "[#8]=[#6](-[#7]-[#6]1:[#6,#16]:[#6,#7]:[#7]:[#7,#6]:1-[#6,#7]1:,-[#6]:,-[#6,#7]:,-[#6,#7]:,-[#6]:,-[#6]:,-1)-[#6]1:[#6]:[#7]:[#7]2:[#6]:1:[#7]:[#6]:[#6]:[#6]:2\n", "Row: 2036 Displacement of [3H]DADLE from human recombinant delta opioid receptor expressed in CHO cell membranes after 2 hrs by liquid scintillation counting analysis\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 25.8, mcs nAts: 15\n", "[#6]-[#7](-[#6]-[#6]-[#6](-[#6]1:[#6]:[#6](-[#8]):[#6]:[#6]:[#6]:1)-[#6]-[#8])-[#6]\n", "Row: 2037 Displacement of [3H]DAMGO from human recombinant mu opioid receptor expressed in CHO cell membranes after 2 hrs by liquid scintillation counting analysis\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 25.8, mcs nAts: 15\n", "[#6]-[#7](-[#6]-[#6]-[#6](-[#6]1:[#6]:[#6](-[#8]):[#6]:[#6]:[#6]:1)-[#6]-[#8])-[#6]\n", "Row: 2038 Displacement of [3H]haTRAP from PAR1 in human platelets\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 36.5, mcs nAts: 34\n", "[#6,#7,#8]-,=[#6,#16](=,-[#8,#6])-[#7]-[#6]1-[#6]-[#6]-[#6]2-[#6](-[#6]-1)-[#6]-[#6]1-[#6](=[#8])-[#8]-[#6](-[#6]-1-[#6]-2-[#6]=[#6]-[#6]1:[#6]:[#6]:[#6](:[#6]:[#7]:1)-[#6]1:[#6]:[#6]:[#6]:[#6](:[#6]:1)-[#9,#6,#8,#17])-[#6]\n", "Row: 2039 Displacement of [3H]spiperone from human D2 short receptor expressed in CHO cells\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 57.9, mcs nAts: 20\n", "[#6,#8]-,=[#6,#7]-[#7,#6]-[#6]-[#6]-[#6]-[#7]1-[#6]-[#6]-[#7](-[#6]-[#6]-1)-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1-[#8]-[#6]\n", "Row: 2040 Displacement of [3H]dofetilide from HEK cells expressing hERG voltage dependent IKr potassium channel Kv11.1\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 24.1, mcs nAts: 16\n", "[#6]-[#6]1:[#7]:[#6]2:[#6]:[#6]:[#6]:[#6]:[#6]:2:[#6]:1-[#6]1-[#6,#7]-[#7,#6]-[#6,#7]-[#6,#7]-[#6]-1\n", "Row: 2041 Displacement of [3H]spiperone from human D2 long receptor expressed in CHO cells\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 57.9, mcs nAts: 20\n", "[#6,#8]-,=[#6,#7]-[#7,#6]-[#6]-[#6]-[#6]-[#7]1-[#6]-[#6]-[#7](-[#6]-[#6]-1)-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1-[#8]-[#6]\n", "Row: 2042 BindingDB_Patents: In Vitro Assay. The effectiveness of compounds of the present invention as inhibitors of the coagulation Factors XIa, VIIa, IXa, Xa, XIIa, plasma kallikrein or thrombin, can be determined using a relevant purified serine protease, respectively, and an appropriate synthetic substrate. The rate of hydrolysis of the chromogenic or fluorogenic substrate by the relevant serine protease was measured both in the absence and presence of compounds of the present invention. Assays were conducted at room temperature or at 37° C. Hydrolysis of the substrate resulted in the release of pNA (para nitroaniline), which was monitored spectrophotometrically by measuring the increase in absorbance at 405 nm, or the release of AMC (amino methylcoumarin), which was monitored spectrofluorometrically by measuring the increase in emission at 460 nm with excitation at 380 nm. A decrease in the rate of absorbance or fluorescence change in the presence of inhibitor is indicative of enzyme inhibition.\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 41.5, mcs nAts: 15\n", "[#6]-[#7]1-[#6]-[#6]-[#6,#7](-[#8,#6,#7]-[#6]-1=[#8])-[#6]1:[#6,#7]:[#6]:[#6]:[#6](:[#6]:1)-[#17]\n", "Row: 2043 Displacement of [3H]CHA binding to Adenosine A1 receptor expressed in CHO cells\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 38.2, mcs nAts: 23\n", "[#6]-[#7]-[#6](=[#8])-[#6]1-[#8]-[#6](-[#7]2:[#6]:[#7]:[#6]3:[#6]:2:[#7]:[#6]:[#7]:[#6]:3-[#7]-[#6]-,=[#6,#7,#8])-[#6](-[#6]-1-[#8])-[#8]\n", "Row: 2044 Displacement of (+)- [3H]pentazocine from sigma 1 receptor expressed in guinea pig brain membrane homogenates by scintillation counting analysis\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 26.6, mcs nAts: 20\n", "[#8,#6]=,-[#6](-,=[#6,#8])-[#6]1-[#6]-[#6]-[#7](-[#6]-[#6]-1)-[#6]1-[#6]-[#6]2:[#6]:[#6]:[#6]:[#6]:[#6]:2-[#6]-[#6]-1-[#8]\n", "Row: 2045 Competitive inhibition of Spiroplasma sp. MQ1 SssI methyltransferase using pUC18 as substrate measured for 10 mins by Dixon plot analysis\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 17.9, mcs nAts: 10\n", "[#8]=,-[#6]1-,:[#7,#6]=,:[#6](-[#7,#6]-[#6,#8,#16]-[#6])-,:[#7,#6]-,:[#6]-,:[#7,#6]-,:1\n", "Row: 2046 BindingDB_Patents: Binding Assay. Binding assay using NET, DAT and SERT enzyme.\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 16.3, mcs nAts: 14\n", "[#6]-[#7]1-[#6]-[#6]2-[#6]-[#6]-2(-[#6]-1)-[#6]1:[#6]:[#6]:[#6](:[#6]:[#6]:1)-[#9,#6,#17]\n", "Row: 2047 Inhibition of human MAO-B expressed in BTI insect cells using p-tyramine as substrate after 60 mins\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 24.2, mcs nAts: 20\n", "[#7]-,=[#6](=,-[#8,#7,#16])-[#7]1-[#7]=[#6](-[#6]2:[#6]:[#6]:[#6]:[#6]:[#6]:2)-[#6]-[#6]-1-[#6]1:[#6]:[#6]:[#7,#6]:[#6]:[#6]:1\n", "Row: 2048 BindingDB_Patents: Binding Assay. Transfected HEK 293(ebna) cells are maintained in culture, harvested and membranes are prepared by differential centrifugation, following lysis of the cells in the presence of protease inhibitors, for use in receptor binding assays. Prostanoid receptor binding assays (for DPI, DP2 (CRTH2), EPl, EP2, EP3-III, EP4, FP, IP, and TP) are performed in 10 mM MES/KOH (pH 6.0) (EPs, FP and TP) or 10 mM HEPES/KOH (pH 7.4) (DPs and IP), containing 1 mM EDTA, 2.5-30 mM divalent cation and the appropriate radioligand. Synthetic compounds are added in dimethylsulfoxide which is kept constant at 1 % (v/v) in all incubations. The reaction is initiated by addition of membrane protein. Non-specific binding is determined in the presence of 10 uM of the corresponding non-radioactive prostanoid . Incubations are conducted for 60-90 min at room temperature or 30 0C and terminated by rapid filtration. Specific binding is calculated by subtracting non specific binding from total binding.\n", " * postgresql://localhost/chembl_23\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Mean nAts 31.2, mcs nAts: 23\n", "[#6](-[#7]-[#6](=[#8])-[#6]1:[#6,#16]:[#16,#6]:[#6]:[#6]:1-[#6]-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1)-[#6]1:[#6]:[#6]:[#6](:[#6]:[#6]:1)-[#6]\n", "Row: 2049 Displacement of [3H]CGS-21680 binding to Adenosine A2 receptor expressed in CHO cells\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 38.2, mcs nAts: 23\n", "[#6]-[#7]-[#6](=[#8])-[#6]1-[#8]-[#6](-[#7]2:[#6]:[#7]:[#6]3:[#6]:2:[#7]:[#6]:[#7]:[#6]:3-[#7]-[#6]-,=[#6,#7,#8])-[#6](-[#6]-1-[#8])-[#8]\n", "Row: 2050 BindingDB_Patents: Radioligand Dose-Displacement Binding Assay. Membranes from recombinant HEK-293 cells expressing the human kippa opioid receptor (cloned in house) were prepared by lysing cells in ice cold hypotonic buffer (2.5 mM MgCl2, 50 mM HEPES, pH 7.4) (10 mL/10 cm dish) followed by homogenization with a tissue grinder/Teflon pestle. Membranes were collected by centrifugation at 30,000xg for 15 min at 4 C. and pellets were resuspended in hypotonic buffer to a final concentration of 1-3 mg/mL. Protein concentrations were determined using the BioRad protein assay reagent with bovine serum albumen as standard. Aliquots of kippa receptor membranes were stored at -80 C.Radioligand dose displacement assays used 0.4 nM [3H]-U69,593 (GE Healthcare, Piscataway, N.J.; 40 Ci/mmole) with 15 ug membrane protein (recombinant K opioid receptor expressed in HEK 293 cells; in-house prep) in a final volume of 200 ul binding buffer (5% DMSO, 50 mM Trizma base, pH 7.4).\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 38.7, mcs nAts: 32\n", "[#6]-[#8]-[#6]12-[#6]-[#6]-[#6]3(-[#6]-[#6]-1-[#6]-[#8]-[#6]-[#6])-[#6]14-[#6]-2-[#8]-[#6]2:[#6]-1:[#6](-[#6]-[#6]-3-[#7](-[#6]-[#6]-4)(-[#6])-[#6]-[#6]1-[#6]-[#6]-1):[#6]:[#6]:[#6]:2-[#8]\n", "Row: 2051 Inhibition of [125I]- AB-MECA binding to human adenosine A3 receptor expressed in CHO cells\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 25.8, mcs nAts: 18\n", "[#6]1:,-[#6]:,-[#6]:,-[#6,#7](:,-[#6]:,-[#6]:,-1)-[#7,#8,#16]-[#6]1:[#7]:[#6]2:[#7]:[#6]:[#7]:[#6]-,:2:[#6](:[#7]:1)-[#7]-[#6]\n", "Row: 2052 Displacement of [3H](+)-pentazocine from sigma 1 receptor in rat liver membranes\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 23.9, mcs nAts: 13\n", "[#8]=[#6]1:[#16]:[#6]2:[#6]:[#6]:[#6]:[#6]:[#6]:2:[#7]:1-[#6]-[#6]-[#7,#6]\n", "Row: 2053 Displacement of [125I]AB-MECA binding to Adenosine A3 receptor expressed in CHO cells\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 38.2, mcs nAts: 23\n", "[#6]-[#7]-[#6](=[#8])-[#6]1-[#8]-[#6](-[#7]2:[#6]:[#7]:[#6]3:[#6]:2:[#7]:[#6]:[#7]:[#6]:3-[#7]-[#6]-,=[#6,#7,#8])-[#6](-[#6]-1-[#8])-[#8]\n", "Row: 2054 BindingDB_Patents: Enzyme Inhibition Assay. Determination of the enzymatic activity of the catalytic domain of human Cathepsin B. This protein is obtained as an inactive enzyme from Sigma, Wiesbaden, Germany (catalog No. C8571).\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 29.9, mcs nAts: 17\n", "[#6,#9]-[#6](-[#9,#6])-[#6]-[#6](-[#7]-[#6,#16](=[#8])-,=[#7,#6,#8])-[#6](=[#8])-[#7]-[#6]1(-[#6]#[#7])-[#6]-[#6]-1\n", "Row: 2055 BindingDB_Patents: Radioligand Binding Assay. Radioligand binding assay described in Bergman et. al. Bioorg. Med. Chem. Lett. 2008, 18, 1425-1430.\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 30.1, mcs nAts: 24\n", "[#8,#6,#7,#9]-[#6]1:[#6]:[#6]:[#6]:[#6,#7]:[#6]:1-[#6](=[#8])-[#7]1-[#6]-[#6](-[#6]-[#8]-[#6]2:[#6]:[#6]:[#6,#7]:[#6,#7]:[#7,#6]:2)-[#6]-[#6]-[#6]-1-[#6]\n", "Row: 2056 Binding affinity towards human immunodeficiency virus type 1 protease determined using continuum electrostatics solvation\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 44.0, mcs nAts: 28\n", "[#6,#7,#8]-,=[#6](-,=[#6,#7,#8])-[#6](-[#7]-[#6](=[#8])-[#6]-[#6,#7]-[#6](-,=[#8])-[#6](-[#6]-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1)-[#7,#6]-[#6](=,-[#8])-[#8,#6]-[#6,#7]-[#6])-[#6](-[#7,#6])=,-[#8,#6]\n", "Row: 2057 Binding affinity for aryl hydrocarbon receptor (AhR) of rabbit liver cytosol incubated with 0.2 nM [3H]-TCDD; Antagonist\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 19.6, mcs nAts: 16\n", "[#6]1:[#6]:[#6]:[#6](:[#6]:[#6]:1)-[#6]=[#6]-[#6]1:[#6]:[#6](-[#17,#6,#8,#9]):[#6]:[#6](:[#6]:1)-[#17,#6,#8,#9]\n", "Row: 2058 Inhibition of thrombin (unknown origin)\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 40.1, mcs nAts: 37\n", "[#6]-[#6]-[#8]-[#6]1:[#6]:[#6](-[#6](-[#7]-[#6]2:[#6]:[#6]:[#6]3:[#6](:[#6]:2):[#6]:[#6]:[#7]:[#6]:3)-[#6](=[#8])-[#7]-[#16](=[#8])(=[#8])-[#6]2:[#6]:[#6]:[#6]:[#6]:[#6]:2):[#6]:[#6]:[#6]:1-[#8]-[#6](-[#6])-[#6]\n", "Row: 2059 Inhibition of factor 10a (unknown origin)\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 40.1, mcs nAts: 37\n", "[#6]-[#6]-[#8]-[#6]1:[#6]:[#6](-[#6](-[#7]-[#6]2:[#6]:[#6]:[#6]3:[#6](:[#6]:2):[#6]:[#6]:[#7]:[#6]:3)-[#6](=[#8])-[#7]-[#16](=[#8])(=[#8])-[#6]2:[#6]:[#6]:[#6]:[#6]:[#6]:2):[#6]:[#6]:[#6]:1-[#8]-[#6](-[#6])-[#6]\n", "Row: 2060 Binding affinity for corticotropin-releasing factor-1 expressed in leukocyte tyrosine kinase cells\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 28.6, mcs nAts: 22\n", "[#6]1:[#6]:[#6]:[#6](:[#6,#7]:[#6,#7]:1)-[#7]1:[#6](=[#8]):[#7]2:[#6]3:[#6]:1:[#7]:[#6](:[#6]:[#6]:3-[#7](-[#6]-[#6]-2)-[#6]-[#6])-[#6]\n", "Row: 2061 Inhibition of C-terminal His6-tagged human Eg5 basal ATPase activity\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 27.5, mcs nAts: 21\n", "[#6]-[#6](-[#16]-[#6]-[#6](-[#7])-[#6](=[#8])-[#8])(-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1)-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1\n", "Row: 2062 Inhibition of adrenergic alpha2B receptor (unknown origin) by PDSP assay\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 21.5, mcs nAts: 12\n", "[#7,#8]-[#6]1-[#6]2-[#6]3-[#6]-[#6]4-[#6]-1-[#6]1-[#6]-2-[#6]-[#6]-3-[#6]-1-4\n", "Row: 2063 Inhibition of recombinant human carbonic anhydrase 2 preincubated for 15 mins by stopped-flow CO2 hydration assay\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 14.9, mcs nAts: 10\n", "[#6]1:[#6]:[#6]:[#6]:[#6](:[#6]:1)-[#16,#6](-,=[#7,#8,#9])(=,-[#8,#9])=,-[#8,#7,#9]\n", "Row: 2064 Inhibitory constant for human cloned 5-HT4 receptor\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 35.2, mcs nAts: 32\n", "[#8]=[#6](-[#7]-[#6]-[#6]1-[#6]-[#6]-[#7](-[#6]-[#6]-1)-[#6]-[#6]-[#6]-[#16](=[#8])(=[#8])-[#7]1-[#6]-[#6]-[#6,#7,#8]-[#6]-[#6]-1)-[#6]1:[#6]:[#6]:[#6]:[#6]2:[#6]:1-[#8]-[#6]-[#6]-[#8]-2\n", "Row: 2065 Displacement of [3H]NAMH from human full length histamine H3 receptor expressed in rat C6 cells\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 31.3, mcs nAts: 26\n", "[#6,#8]-,=[#6]1-[#6]2-[#6]-[#6]-[#6]3-[#6]-2(-[#6]-[#6]-[#6]2-[#6]-3-[#6]-[#6]=[#6]3-[#6]-2(-[#6]-[#6]-[#6](-[#6]-3)-[#7](-[#6,#16])-[#6,#16])-[#6])-[#6]-[#7]-1-[#6]\n", "Row: 2066 Binding affinity towards Lysophosphatidic acid 3 (LPA3) receptor\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 44.3, mcs nAts: 42\n", "[#6]-[#6]-[#6]-[#6]-[#6]-[#6]-[#6]-[#6]-[#6]=[#6]-[#6]-[#6]-[#6]-[#6]-[#6]-[#6]-[#6]-[#6](=[#8])-[#7]-[#6](-[#6]-[#8,#6]-[#15](=[#8])(-[#8])-[#8])-[#6]-[#6]1:[#6]:[#6]:[#6](:[#6]:[#6]:1)-[#8]-[#6]-[#6]1:[#6,#7]:[#6]:[#6,#7]:[#6,#7]:[#7,#6]:1\n", "Row: 2067 Inhibition of Mycobacterium tuberculosis recombinant MbtA expressed in Escherichia coli by ATP-PPi exchange assay\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 40.5, mcs nAts: 32\n", "[#7,#8]-,=[#6]1:[#7,#6]:[#6]:[#7,#6]:[#6]2:[#6]:1:[#7,#6]:[#6]:[#7]:2-[#6]1-[#8,#6]-[#6](-[#6]-[#8]-[#16](=[#8])(=[#8])-[#7]-[#6](=[#8])-[#6]2:[#6]:[#6]:[#6]:[#6]:[#6]:2-[#8])-[#6](-[#6]-1-[#8])-[#8]\n", "Row: 2068 Displacement of [3H]PGD2 from mouse prostanoid DP receptor expressed in CHO cells after 60 mins by liquid scintillation counting\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 33.8, mcs nAts: 32\n", "[#6]-[#7]1-[#6]-[#6](-[#6]-[#8]-[#6]2:[#6]:[#6]:[#6](:[#6]:[#6]:2)-[#6,#16](=[#8])-[#7]-[#6]2:[#6]:[#6]:[#6]:[#6](:[#6]:2)-[#6]-[#6](=[#8])-[#8])-[#8]-[#6]2:[#6]-1:[#6]:[#6]:[#6]:[#6]:2\n", "Row: 2069 Displacement of [3H]-spiperone from human dopamine D2L receptor expressed in CHO cell membranes after 3 hrs by liquid scintillation counting analysis\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 26.8, mcs nAts: 12\n", "[#6,#7,#8]-[#7,#6,#8]-[#6,#7]-[#7,#6]-[#6]1-,:[#6]-,:[#6]-,:[#6](-,:[#6]-,:[#6]-,:1)-[#6]-[#6,#7]\n", "Row: 2070 Displacement of [3H]DAMGO from human recombinant mu opioid receptor expressed in CHO cells after 2 hrs by liquid scintillation counting\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 34.6, mcs nAts: 27\n", "[#6]-[#6]1-[#6]-[#6]2(-[#6])-[#6]3-[#6](=[#8])-[#6](-[#8]-[#6](-[#6])=[#8])-[#6]-[#6](-[#6]-3(-[#6])-[#6]-[#6]-[#6]-2-[#6](-[#8]-1)=[#8])-[#6](=[#8])-[#8]-[#6]\n", "Row: 2071 Displacement of [3H]-CP55940 from human CB2 receptor transfected in HEK293EBNA cell membranes after 90 mins by liquid scintillation counting analysis\n", " * postgresql://localhost/chembl_23\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Mean nAts 33.0, mcs nAts: 15\n", "[#6]-[#6]1:[#6]:[#6]:[#6](:[#6]:[#6]:1)-[#6]-[#7]1:[#6,#7]:[#6](-[#6]=,-[#8,#7]):[#6]:[#6]:1\n", "Row: 2072 Displacement of [3H]PGE2 from human prostanoid EP4 receptor expressed in HEK293-EBNA cells after 60 mins by scintillation counting\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 33.2, mcs nAts: 30\n", "[#6]-[#6](-[#7]-[#6](=[#8])-[#6]1:[#6]:[#6]:[#6]:[#6]2:[#6]:1-,:[#7](-[#6]-[#6]1:[#6]:[#6]:[#6]:[#7,#6]:[#6]:1)-,:[#6]-,:[#6]-,:2)-[#6]1:[#6]:[#6]:[#6](:[#6]:[#6]:1)-[#6](=[#8])-[#8]\n", "Row: 2073 Inhibitory constant against human Coagulation factor Xa\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 32.0, mcs nAts: 25\n", "[#6]1:[#6]:[#6]:[#6]:[#6](:[#6]:1)-[#6]-[#6]1:[#7]:[#6]2:[#6](-[#7]-[#6]-[#6]-[#6]3-,:[#6,#7]-,:[#6]-,:[#6]-,:[#6]-,:[#7,#6]-,:3):[#7,#6]:[#6]:[#6]:[#6]:2:[#8]:1\n", "Row: 2074 Inhibition of [3H]CGS-21680 binding to adenosine A2a receptor of human striatal membrane\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 21.7, mcs nAts: 14\n", "[#6,#7]-[#6]1:[#6]:[#6]:[#6]2:[#6](:[#7]:1):[#7]:[#6]:[#6](:[#6]:2-[#8,#7,#16,#17])-[#6]-,=[#6,#7,#8]\n", "Row: 2075 Inhibition of [3H]CHA binding to adenosine A1 receptor of human brain cortical membrane\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 21.7, mcs nAts: 14\n", "[#6,#7]-[#6]1:[#6]:[#6]:[#6]2:[#6](:[#7]:1):[#7]:[#6]:[#6](:[#6]:2-[#8,#7,#16,#17])-[#6]-,=[#6,#7,#8]\n", "Row: 2076 Displacement of [3H]CP-55940 from human cloned CB2 receptor\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 27.3, mcs nAts: 15\n", "[#6]-[#7]-[#6](=[#8])-[#6]1:[#6]:[#6]:[#6](:[#6](:[#6]:1)-[#16](=,-[#8,#7])(=[#8])-,=[#7,#8])-[#35,#6]\n", "Row: 2077 Inhibition of human HGPRT using Prib-PP as substrate by spectrophotometric assay in presence of guanine\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 24.1, mcs nAts: 22\n", "[#7,#6,#8,#15]#,-,=[#6]-[#6]-[#7](-[#6]-[#6]-[#7]1:[#6]:[#7]:[#6]2:[#6]:1:[#7]:[#6]:[#7]:[#6]:2=[#8])-[#6]-[#6]-[#15](=[#8])(-[#8])-[#8]\n", "Row: 2078 Displacement of [3H]CP-55940 from human cloned CB1 receptor\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 27.3, mcs nAts: 15\n", "[#6]-[#7]-[#6](=[#8])-[#6]1:[#6]:[#6]:[#6](:[#6](:[#6]:1)-[#16](=,-[#8,#7])(=[#8])-,=[#7,#8])-[#35,#6]\n", "Row: 2079 Binding affinity to human recombinant TP receptor by radioligand competition binding assay\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 29.7, mcs nAts: 17\n", "[#7]1:[#6]:[#6](-[#16,#6]-[#6]2:[#6]:[#6]:[#6]:[#6]:[#6]:2):[#6]2:[#6]:1:[#6]:[#6](:[#6]:[#6]:2)-[#9]\n", "Row: 2080 Displacement of [3H]spiroperidol from rat cloned dopamine D3 receptor expressed in HEK293 cells\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 32.0, mcs nAts: 13\n", "[#6]-[#6]-[#6]-[#7](-[#6]-[#6]-[#6,#7])-[#6]1-[#6]-[#6]-[#6]:[#6]-[#6]-1\n", "Row: 2081 Displacement of [3H]-ZM241385 from human adenosine A2A receptor expressed in CHO cell membranes after 60 mins by scintillation counting method\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 23.3, mcs nAts: 12\n", "[#6]-[#6]1:[#7]:[#6](-[#7]):[#6]2:[#6](:[#7]:1):[#6]:[#7](:[#7]:2)-[#6]\n", "Row: 2082 Displacement of [3H]MPEP from human cloned mGluR5 receptor expressed in CHO-T-Rex cells after 60 mins by liquid scintillation spectrometry\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 24.7, mcs nAts: 8\n", "[#6,#7,#8]#,-,=[#6,#7]-,=[#6,#7]1:,-[#6]:,-[#6,#7]:,-[#6,#7]:,-[#7,#6]:,-[#6,#7]:,-1\n", "Row: 2083 Displacement of [3H]spiroperidol from rat cloned dopamine D2L receptor expressed in HEK293 cells\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 32.0, mcs nAts: 13\n", "[#6]-[#6]-[#6]-[#7](-[#6]-[#6]-[#6,#7])-[#6]1-[#6]-[#6]-[#6]:[#6]-[#6]-1\n", "Row: 2084 Displacement of [3H]DADLE from human recombinant delta opioid receptor expressed in CHO cells after 2 hrs by liquid scintillation counting\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 34.6, mcs nAts: 27\n", "[#6]-[#6]1-[#6]-[#6]2(-[#6])-[#6]3-[#6](=[#8])-[#6](-[#8]-[#6](-[#6])=[#8])-[#6]-[#6](-[#6]-3(-[#6])-[#6]-[#6]-[#6]-2-[#6](-[#8]-1)=[#8])-[#6](=[#8])-[#8]-[#6]\n", "Row: 2085 Displacement of [3H]spiperone from human D3 receptor expressed in CHO cells\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 57.9, mcs nAts: 20\n", "[#6,#8]-,=[#6,#7]-[#7,#6]-[#6]-[#6]-[#6]-[#7]1-[#6]-[#6]-[#7](-[#6]-[#6]-1)-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1-[#8]-[#6]\n", "Row: 2086 Displacement of [3H]U69593 from human recombinant kappa opioid receptor expressed in CHO cells after 2 hrs by liquid scintillation counting\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 34.6, mcs nAts: 27\n", "[#6]-[#6]1-[#6]-[#6]2(-[#6])-[#6]3-[#6](=[#8])-[#6](-[#8]-[#6](-[#6])=[#8])-[#6]-[#6](-[#6]-3(-[#6])-[#6]-[#6]-[#6]-2-[#6](-[#8]-1)=[#8])-[#6](=[#8])-[#8]-[#6]\n", "Row: 2087 The binding affinity measured using baculovirus-expressed hPR-A in sf21 cells.\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 28.8, mcs nAts: 16\n", "[#6,#7]1-,:[#6](-,:[#6]-,:[#6]-,:[#6]2=,:[#6]-[#6](=,-[#8,#6])-[#6,#8]-[#6]-,:[#6]-2)-,:[#6,#7]-[#6]-,=[#6]-,=[#6]-1-[#6]\n", "Row: 2088 Displacement of [3H]spiperone from human D4.4 receptor expressed in CHO cells\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 57.9, mcs nAts: 20\n", "[#6,#8]-,=[#6,#7]-[#7,#6]-[#6]-[#6]-[#6]-[#7]1-[#6]-[#6]-[#7](-[#6]-[#6]-1)-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1-[#8]-[#6]\n", "Row: 2089 Displacement of [3H]SCH23390 from pig D1 receptor in striatal membrane\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 57.9, mcs nAts: 20\n", "[#6,#8]-,=[#6,#7]-[#7,#6]-[#6]-[#6]-[#6]-[#7]1-[#6]-[#6]-[#7](-[#6]-[#6]-1)-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1-[#8]-[#6]\n", "Row: 2090 Inhibition of human recombinant Abl\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 24.6, mcs nAts: 22\n", "[#8]=[#6](-[#7]-[#6]1:[#7]:[#7]:[#6](:[#16]:1)-[#6,#16]-[#6]-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1)-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1\n", "Row: 2091 Inhibition of recombinant human c-Src\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 24.6, mcs nAts: 22\n", "[#8]=[#6](-[#7]-[#6]1:[#7]:[#7]:[#6](:[#16]:1)-[#6,#16]-[#6]-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1)-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1\n", "Row: 2092 Displacement of [3H]prazosin from pig adrenergic alpha1 receptor in cerebral cortex homogenate\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 57.9, mcs nAts: 20\n", "[#6,#8]-,=[#6,#7]-[#7,#6]-[#6]-[#6]-[#6]-[#7]1-[#6]-[#6]-[#7](-[#6]-[#6]-1)-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1-[#8]-[#6]\n", "Row: 2093 Inhibition of human MAO-A expressed in BTI insect cells using p-tyramine as substrate after 60 mins\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 24.2, mcs nAts: 20\n", "[#7]-,=[#6](=,-[#8,#7,#16])-[#7]1-[#7]=[#6](-[#6]2:[#6]:[#6]:[#6]:[#6]:[#6]:2)-[#6]-[#6]-1-[#6]1:[#6]:[#6]:[#7,#6]:[#6]:[#6]:1\n", "Row: 2094 Displacement of [125I]BE-2254 from human adrenergic Alpha-1B receptor expressed in HEK293 cells\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 32.0, mcs nAts: 16\n", "[#7,#6]-[#6]-[#6]-[#7]1-[#6]-[#6]-[#7](-[#6]-[#6]-1)-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1-[#17,#8]\n", "Row: 2095 Inhibition of human recombinant carbonic anhydrase 12 expressed in Escherichia coli preincubated for 15 mins by stopped flow CO2 hydration method\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 17.2, mcs nAts: 14\n", "[#6]1:[#6]:[#6]:[#6](:[#6]:[#6]:1)-[#6]1:[#6]:[#6](-[#6](=[#8])-[#8]):[#7]:[#7]:1\n", "Row: 2096 Inhibition of human recombinant carbonic anhydrase 9 expressed in Escherichia coli preincubated for 15 mins by stopped flow CO2 hydration method\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 17.2, mcs nAts: 14\n", "[#6]1:[#6]:[#6]:[#6](:[#6]:[#6]:1)-[#6]1:[#6]:[#6](-[#6](=[#8])-[#8]):[#7]:[#7]:1\n", "Row: 2097 Displacement of [3H]dofetilide from human ERG channel expressed in HEK293 cells\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 33.0, mcs nAts: 26\n", "[#6]1-[#6]-[#6,#7]-[#6]2:[#6]-1:[#6]:[#6](:[#6]:[#6]:2)-[#6]-[#6]-[#7]1-[#6]-[#6]-[#7](-[#6]-[#6]-1)-[#6]1:[#7]:[#16]:[#6]2:[#6]:1:[#6]:[#6]:[#6]:[#6]:2\n", "Row: 2098 Displacement of [3H]ketanserin from human 5HT2A receptor expressed in Swiss 3T3 cells\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 33.0, mcs nAts: 26\n", "[#6]1-[#6]-[#6,#7]-[#6]2:[#6]-1:[#6]:[#6](:[#6]:[#6]:2)-[#6]-[#6]-[#7]1-[#6]-[#6]-[#7](-[#6]-[#6]-1)-[#6]1:[#7]:[#16]:[#6]2:[#6]:1:[#6]:[#6]:[#6]:[#6]:2\n", "Row: 2099 Inhibition of human recombinant carbonic anhydrase 2 expressed in Escherichia coli preincubated for 15 mins by stopped flow CO2 hydration method\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 17.2, mcs nAts: 14\n", "[#6]1:[#6]:[#6]:[#6](:[#6]:[#6]:1)-[#6]1:[#6]:[#6](-[#6](=[#8])-[#8]):[#7]:[#7]:1\n", "Row: 2100 Inhibition of recombinant human carbonic anhydrase 1 preincubated for 15 mins by stopped-flow CO2 hydration assay\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 14.9, mcs nAts: 10\n", "[#6]1:[#6]:[#6]:[#6]:[#6](:[#6]:1)-[#16,#6](-,=[#7,#8,#9])(=,-[#8,#9])=,-[#8,#7,#9]\n", "Row: 2101 Inhibition of human PNMT by radiochemical assay\n", " * postgresql://localhost/chembl_23\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Mean nAts 11.8, mcs nAts: 2\n", "[#7,#6,#8,#9,#35]-,=,#[#6,#7]\n", "Row: 2102 Displacement of [125I]BE-2254 from human adrenergic alpha1A receptor expressed in HEK293 cells\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 32.0, mcs nAts: 16\n", "[#7,#6]-[#6]-[#6]-[#7]1-[#6]-[#6]-[#7](-[#6]-[#6]-1)-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1-[#17,#8]\n", "Row: 2103 Inhibition of recombinant human carbonic anhydrase 2 expressed in Escherichia coli preincubated for 15 mins by stopped-flow CO2 hydration assay\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 22.5, mcs nAts: 17\n", "[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1-[#7]=[#6]1-[#6](=[#8])-[#7]-[#6]2:[#6]-1:[#6]:[#6]:[#6]:[#6]:2\n", "Row: 2104 Inhibition of human recombinant carbonic anhydrase 1 expressed in Escherichia coli preincubated for 15 mins by stopped flow CO2 hydration method\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 17.2, mcs nAts: 14\n", "[#8]=[#6](-[#8])-[#6]1:[#6]:[#6](-[#6]2:[#6]:[#6]:[#6]:[#6]:[#6]:2):[#7]:[#7]:1\n", "Row: 2105 Inhibition of human carbonic anhydrase 14 preincubated with compound for 15 mins by carbon dioxide hydration assay\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 19.0, mcs nAts: 10\n", "[#6,#7]-[#6,#7,#16]-[#6,#7,#8]-[#7,#6]-[#6]1:,-[#6,#8]:,-[#6]:,-[#6]:,-[#6]:,-[#6]:,-1\n", "Row: 2106 Displacement of [3H]-(+)-pentazocine from sigma-1 receptor in guinea pig brain homogenates\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 20.4, mcs nAts: 15\n", "[#7]-[#6]-[#6]-[#6]1-[#6]-[#6]-[#8]-[#6](-[#8]-1)-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1\n", "Row: 2107 Inhibition of recombinant human carbonic anhydrase 1 expressed in Escherichia coli preincubated for 15 mins by stopped-flow CO2 hydration assay\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 22.5, mcs nAts: 17\n", "[#6]1:[#6]:[#6]:[#6](:[#6]:[#6]:1)-[#7]=[#6]1-[#6](=[#8])-[#7]-[#6]2:[#6]-1:[#6]:[#6]:[#6]:[#6]:2\n", "Row: 2108 Binding affinity at human histamine H3 receptor\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 30.2, mcs nAts: 19\n", "[#6]-[#7](-[#6])-[#6]-[#6]-[#6](-[#8]-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1)-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1\n", "Row: 2109 Binding affinity at human SERT\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 30.3, mcs nAts: 19\n", "[#6]-[#7](-[#6])-[#6]-[#6]-[#6](-[#8]-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1)-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1\n", "Row: 2110 Binding affinity at rat SERT\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 30.3, mcs nAts: 19\n", "[#6]-[#7](-[#6])-[#6]-[#6]-[#6](-[#8]-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1)-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1\n", "Row: 2111 Inhibitory activity against human IDO\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 16.8, mcs nAts: 6\n", "[#6]1:,-[#6]:,-[#6]:,-[#6]:,-[#6]:,-[#6]:,-1\n", "Row: 2112 Binding affinity to thrombin\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 31.5, mcs nAts: 11\n", "[#6,#7,#8]-,=[#7,#6]-[#6,#16](=,-[#8,#7])-[#6]-[#7,#6]1:[#6]:[#6]:[#7,#6]:[#6]:[#6]:1\n", "Row: 2113 Displacement of [3H]naltrindole from human delta opioid receptor expressed in CHO cells\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 42.7, mcs nAts: 20\n", "[#6]-[#6]-[#7]1-[#6]-[#6]-[#6]23-[#6](-[#6]-1-[#6]-[#6]1:[#6]:[#6]:[#6](:[#6]:[#6]-2:1)-[#8,#7])-[#6]-[#6]-[#6]-[#6]-3\n", "Row: 2114 Displacement of [125I]Tyr-o-CRF from CRF1 receptor in rat frontal cortex homogenates\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 31.4, mcs nAts: 26\n", "[#6]-[#6]1:[#6]:[#6](-[#6]):[#6](:[#6](:[#6]:1)-[#6])-[#7]-[#6]1:[#7]:[#6](-[#6]):[#6]:[#6]:[#6]:1-[#16](=[#8])(=[#8])-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1\n", "Row: 2115 Displacement of [3H]mesulergine from 5-HT2C receptor in Sprague-Dawley rat choroid plexus membranes after 30 mins by liquid scintillation spectrophotometric analysis\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 31.0, mcs nAts: 18\n", "[#6]-[#7]-[#6]-[#6]-[#6](-[#8]-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1)-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1\n", "Row: 2116 Displacement of [3H]nisoxetine from NET in rat frontal cortex by scintillation counting\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 28.1, mcs nAts: 22\n", "[#6]-[#7](-[#6])-[#6]-[#6]-[#6]-[#6]1(-[#6]2:[#6]:[#6]:[#6](:[#6]:[#6]:2)-[#9])-[#8]-[#6]-[#6]2:[#6]-1:[#6]:[#6]:[#6]:[#6]:2\n", "Row: 2117 Displacement of [3H]citalopram from SERT in rat brain stem by scintillation counting\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 28.1, mcs nAts: 22\n", "[#6]-[#7](-[#6])-[#6]-[#6]-[#6]-[#6]1(-[#6]2:[#6]:[#6]:[#6](:[#6]:[#6]:2)-[#9])-[#8]-[#6]-[#6]2:[#6]-1:[#6]:[#6]:[#6]:[#6]:2\n", "Row: 2118 Displacement of [3H]diprenorphine from human cloned mu opioid receptor\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 25.7, mcs nAts: 17\n", "[#6]-[#6]1-[#6]-[#6](-[#6])(-[#6]2:[#6]:[#6]:[#6]:[#6](:[#6]:2)-[#8])-[#6](-[#6]-[#7]-1-[#6])-[#6]\n", "Row: 2119 Displacement of [3H]diprenorphine from human cloned kappa opioid receptor\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 25.7, mcs nAts: 17\n", "[#6]-[#6]1-[#6]-[#6](-[#6])(-[#6]2:[#6]:[#6]:[#6]:[#6](:[#6]:2)-[#8])-[#6](-[#6]-[#7]-1-[#6])-[#6]\n", "Row: 2120 Displacement of [3H]diprenorphine from human cloned delta opioid receptor\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 25.7, mcs nAts: 17\n", "[#6]-[#6]1-[#6]-[#6](-[#6])(-[#6]2:[#6]:[#6]:[#6]:[#6](:[#6]:2)-[#8])-[#6](-[#6]-[#7]-1-[#6])-[#6]\n", "Row: 2121 Displacement of [3H]N-alpha-methylhistamine from human cloned histamine H3 receptor expressed in C6 cells\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 25.9, mcs nAts: 21\n", "[#7,#6]-[#6]-[#6]-[#6]1:[#6]:[#6]:[#6]2:[#6](:[#6]:1):[#6]:[#6]:[#6](:[#6]:2)-[#6]1:[#6]:[#6]:[#6](:[#6]:[#6]:1)-[#6]#[#7]\n", "Row: 2122 Compound was tested for binding affinity against HIV-1 Protease\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 48.1, mcs nAts: 38\n", "[#8]=[#6]1-[#7](-[#6]-[#6]2:[#6]:[#6]:[#6]:[#6]:[#6]:2)-[#6](-[#6]-[#6]2:[#6]:[#6]:[#6]:[#6]:[#6]:2)-[#6](-[#8])-[#6](-[#6](-[#7]-1-[#6]-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1)-[#6]-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1)-[#8]\n", "Row: 2123 Binding affinity at human histamine H3 receptor\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 29.8, mcs nAts: 27\n", "[#6]-[#7]1-[#6]-[#6]2:[#6]:[#6](-[#8]-[#6]-[#6]-[#6]-[#7]3-[#6]-[#6]-[#6,#8]-[#6]-[#6]-3):[#6]:[#6]:[#6]:2-[#6](-[#6]-1)-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1\n", "Row: 2124 Binding affinity at human SERT\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 29.8, mcs nAts: 27\n", "[#6]-[#7]1-[#6]-[#6]2:[#6]:[#6](-[#8]-[#6]-[#6]-[#6]-[#7]3-[#6]-[#6]-[#6,#8]-[#6]-[#6]-3):[#6]:[#6]:[#6]:2-[#6](-[#6]-1)-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1\n", "Row: 2125 Binding affinity at rat SERT\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 29.8, mcs nAts: 27\n", "[#6]-[#7]1-[#6]-[#6]2:[#6]:[#6](-[#8]-[#6]-[#6]-[#6]-[#7]3-[#6]-[#6]-[#6,#8]-[#6]-[#6]-3):[#6]:[#6]:[#6]:2-[#6](-[#6]-1)-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1\n", "Row: 2126 Displacement of [125I]NT at rat NTS2 overexpressed in CHOK1 cells after 30 mins by gamma counting\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 41.9, mcs nAts: 12\n", "[#6,#7]1:,-[#6,#7]:,-[#6,#7](-[#6](=[#8])-[#7,#6]-[#6,#7]-[#6](=[#8])-[#8,#6]):,-[#7,#6]:,-[#7,#6]:,-1\n", "Row: 2127 Displacement of [3H]QNB from human muscarinic M5 receptor expressed in CHO cells\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 22.0, mcs nAts: 10\n", "[#6,#8]1:,-[#6,#7,#8]:,-,=[#6,#7](-[#8,#6]-[#6]-,#[#6]#,-[#6]-[#6,#7,#8]):,-[#7,#6,#8]:,-[#8,#6]:,-1\n", "Row: 2128 Displacement of [3H]QNB from human muscarinic M2 receptor expressed in CHO cells\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 22.6, mcs nAts: 10\n", "[#6,#8]1:,-[#6,#7,#8]:,-,=[#6,#7](-[#8,#6]-[#6]-,#[#6]#,-[#6]-[#6,#7,#8]):,-[#7,#6,#8]:,-[#8,#6]:,-1\n", "Row: 2129 Inhibition of human carbonic anhydrase 12-mediated CO2 hydration preincubated for 10 mins by stopped-flow assay\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 25.3, mcs nAts: 24\n", "[#7,#8]-,=[#6](=,-[#8,#7])-[#6]1:[#6]:[#7](-[#6]2:[#6]:[#6]:[#6](:[#6]:[#6]:2)-[#16](-[#7])(=[#8])=[#8]):[#7]:[#6]:1-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1\n", "Row: 2130 Inhibition of human HGPRT using xanthine/PRPP assessed as xanthine/guanine conversion to xanthosine-5'-monophosphate/guanosine-5'-monophosphate by spectrophotometry in presence of PRPP\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 20.8, mcs nAts: 17\n", "[#8]=[#6]1:[#7]:[#6]:[#7]:[#6]2:[#6]:1:[#7]:[#6,#7]:[#6]:2-[#6]-[#7,#6]-[#6,#7]-[#6]-[#8,#6]-[#15,#6,#8]=,-[#8,#6,#15]\n", "Row: 2131 Inhibitory activity against ErmC methylase\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 24.2, mcs nAts: 10\n", "[#6]-[#16,#7]-[#6]1:[#7,#6]:[#6](-[#7,#6,#8]):[#7]:[#6](:[#7,#6]:1)-[#7,#6]\n", "Row: 2132 Inhibition of human carbonic anhydrase 9-mediated CO2 hydration preincubated for 10 mins by stopped-flow assay\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 25.3, mcs nAts: 24\n", "[#7,#8]-,=[#6](=,-[#8,#7])-[#6]1:[#6]:[#7](-[#6]2:[#6]:[#6]:[#6](:[#6]:[#6]:2)-[#16](-[#7])(=[#8])=[#8]):[#7]:[#6]:1-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1\n", "Row: 2133 Inhibition of human carbonic anhydrase 2-mediated CO2 hydration preincubated for 10 mins by stopped-flow assay\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 25.3, mcs nAts: 24\n", "[#7,#8]-,=[#6](=,-[#8,#7])-[#6]1:[#6]:[#7](-[#6]2:[#6]:[#6]:[#6](:[#6]:[#6]:2)-[#16](-[#7])(=[#8])=[#8]):[#7]:[#6]:1-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1\n", "Row: 2134 BindingDB_Patents: Enzyme Inhibition Assay. Determination of the enzymatic activity of the catalytic domain of human Cathepsin K. This protein is obtained as an inactive enzyme from Sanofi-Aventis, Frankfurt, Germany.\n", " * postgresql://localhost/chembl_23\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Mean nAts 30.0, mcs nAts: 17\n", "[#6,#9]-[#6](-[#9,#6])-[#6]-[#6](-[#7]-[#6,#16](=[#8])-,=[#7,#6,#8])-[#6](=[#8])-[#7]-[#6]1(-[#6]#[#7])-[#6]-[#6]-1\n", "Row: 2135 Displacement of [3H]Citalopram from human SERT by liquid scintillation counting\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 26.8, mcs nAts: 13\n", "[#6]1:[#6]:[#6]:[#6]2:[#6](:[#6]:1)-,:[#6,#7]-,:[#7,#6](-,:[#6,#16]-,:2)-[#6]-[#6]-[#6]-[#6,#7]\n", "Row: 2136 Displacement of [3H]dofetolide from human ERG channel expressed in HEK293 cells by liquid scintillation counting\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 25.0, mcs nAts: 18\n", "[#6]-[#6]-[#7]1:[#6](-[#6]2-[#6]-[#6]-[#6]-[#7](-[#6]-2)-[#6]):[#7]:[#6]2:[#6]:1:[#6]:[#6]:[#6]:[#6]:2\n", "Row: 2137 Displacement of [3H]8-OH-DPAT from human 5HT1A receptor by liquid scintillation counting\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 26.8, mcs nAts: 13\n", "[#6]1:[#6]:[#6]:[#6]2:[#6](:[#6]:1)-,:[#6,#7]-,:[#7,#6](-,:[#6,#16]-,:2)-[#6]-[#6]-[#6]-[#6,#7]\n", "Row: 2138 Inhibition of human carbonic anhydrase 1-mediated CO2 hydration preincubated for 10 mins by stopped-flow assay\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 25.3, mcs nAts: 24\n", "[#7,#8]-,=[#6](=,-[#8,#7])-[#6]1:[#6]:[#7](-[#6]2:[#6]:[#6]:[#6](:[#6]:[#6]:2)-[#16](-[#7])(=[#8])=[#8]):[#7]:[#6]:1-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1\n", "Row: 2139 Displacement of [3H]PGE2 from mouse EP1 receptor expressed in CHO cells after 20 mins by liquid scintillation counting\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 36.1, mcs nAts: 29\n", "[#6]-[#6]1:[#6]:[#6](-[#6]):[#6]:[#6](:[#6]:1)-[#6](-[#6]-[#6](-[#6])-[#6])-[#7]-[#6](=[#8])-[#6]1:[#6]:[#6](-[#8,#6,#7]-[#6,#8]):[#6]:[#6]:[#6]:1-[#6]-[#6]-[#6](=[#8])-[#8]\n", "Row: 2140 Inhibition of peripheral nerve sodium channel NaV1.7\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 30.4, mcs nAts: 24\n", "[#8]=,-[#6](-[#7,#6]-[#6]-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1)-[#6]1-[#6]-[#6]-[#6]-[#6]-1-[#6,#8]-[#6,#7,#8]-[#6,#16]-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1\n", "Row: 2141 Inhibition of Dihydrofolate reductase enzyme from Candida albicans\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 20.7, mcs nAts: 15\n", "[#7]-[#6]1:[#7]:[#6](-[#7]):[#6]2:[#6](:[#7]:1):[#6]:[#6]:[#6]1:[#6]:2:[#6]:[#6]:[#7]:1\n", "Row: 2142 Displacement of [3H]PGE2 from mouse EP2 receptor expressed in CHO cells after 60 mins by liquid scintillation counting\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 36.1, mcs nAts: 29\n", "[#6]-[#6]1:[#6]:[#6](-[#6]):[#6]:[#6](:[#6]:1)-[#6](-[#6]-[#6](-[#6])-[#6])-[#7]-[#6](=[#8])-[#6]1:[#6]:[#6](-[#8,#6,#7]-[#6,#8]):[#6]:[#6]:[#6]:1-[#6]-[#6]-[#6](=[#8])-[#8]\n", "Row: 2143 Displacement of [3H]PGE2 from mouse EP3alpha receptor expressed in CHO cells after 60 mins by liquid scintillation counting\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 36.1, mcs nAts: 29\n", "[#6]-[#6]1:[#6]:[#6](-[#6]):[#6]:[#6](:[#6]:1)-[#6](-[#6]-[#6](-[#6])-[#6])-[#7]-[#6](=[#8])-[#6]1:[#6]:[#6](-[#8,#6,#7]-[#6,#8]):[#6]:[#6]:[#6]:1-[#6]-[#6]-[#6](=[#8])-[#8]\n", "Row: 2144 Binding affinity to glucocorticoid receptor-LBD (unknown origin) by fluorescence polarization assay\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 32.7, mcs nAts: 24\n", "[#6]-[#6](-[#6])(-[#6](=[#8])-[#7]-[#6]1:[#7]:[#6,#7]:[#6]:[#16]:1)-[#6](-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1)-[#6]1:[#6]:[#6]:[#6,#7]:[#7,#6]:[#6]:1\n", "Row: 2145 Displacement of [125I]-IABN from human D3 receptor transfected in human HEK 293 cells by gamma-counting\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 38.5, mcs nAts: 27\n", "[#6]-[#8]-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1-[#7]1-[#6]-[#6]-[#7](-[#6]-[#6]-1)-[#6]-[#6]-,=[#6]-[#6]-[#7]-[#6](=[#8])-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1\n", "Row: 2146 Inhibition of human coagulation factor 10a using N-benzoyl-Ile-Glu-(OH, OMe)-Gly-Arg-pNA as substrate by spectrophotometric analysis\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 41.0, mcs nAts: 30\n", "[#7]-[#6]-[#6]1-[#6]-[#6]-[#6](-[#6]-[#6]-1)-[#6](=[#8])-[#7]-[#6](-[#6]-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1)-[#6]1:[#7]:[#6](-[#6]2:[#6]:[#6]:[#6]:[#6]:[#6]:2):[#6]:[#7]:1\n", "Row: 2147 Displacement of [125I]IABN from human dopamine D4 receptor expressed in HEK293 cells\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 34.1, mcs nAts: 26\n", "[#8,#17]-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1-[#7]1-[#6]-[#6]-[#7](-[#6]-[#6]-1)-[#6]-[#6]=,-[#6]-[#6]-[#7]-[#6](=[#8])-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1\n", "Row: 2148 Inhibition of human coagulation factor 7a using H-(D)-Ile-Pro-Arg-pNA as substrate by spectrophotometric analysis\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 41.0, mcs nAts: 30\n", "[#7]-[#6]-[#6]1-[#6]-[#6]-[#6](-[#6]-[#6]-1)-[#6](=[#8])-[#7]-[#6](-[#6]-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1)-[#6]1:[#7]:[#6](-[#6]2:[#6]:[#6]:[#6]:[#6]:[#6]:2):[#6]:[#7]:1\n", "Row: 2149 Displacement of [3H]PGE2 from mouse EP4 receptor expressed in CHO cells after 60 mins by liquid scintillation counting\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 36.1, mcs nAts: 29\n", "[#6]-[#6]1:[#6]:[#6](-[#6]):[#6]:[#6](:[#6]:1)-[#6](-[#6]-[#6](-[#6])-[#6])-[#7]-[#6](=[#8])-[#6]1:[#6]:[#6](-[#8,#6,#7]-[#6,#8]):[#6]:[#6]:[#6]:1-[#6]-[#6]-[#6](=[#8])-[#8]\n", "Row: 2150 Displacement of [3H]-4-(2,4-dichloro-3-methylphenoxy)-l'-[4- (methylsulfonyl)benzoyl]-l,4'-bipiperidine from human recombinant CCR3 expressed in CHOK1 cells after 2 hrs by scintillation counting analysis\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 31.0, mcs nAts: 20\n", "[#6,#7,#8,#16]-[#8,#6,#7,#16]-[#6]-[#6]-[#6,#7]-[#7,#6]1-[#6]-[#6]-[#6,#7](-[#6]-[#6]-1)-[#8,#6]-[#6]1:[#6]:[#6]:[#6](:[#6](:[#6]:1)-[#17])-[#17]\n", "Row: 2151 Displacement of [125I]-IABN from human D2 receptor transfected in human HEK 293 cells by gamma-counting\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 38.5, mcs nAts: 27\n", "[#6]-[#8]-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1-[#7]1-[#6]-[#6]-[#7](-[#6]-[#6]-1)-[#6]-[#6]-,=[#6]-[#6]-[#7]-[#6](=[#8])-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1\n", "Row: 2152 Displacement of [3H]N-methylspiperone from rat dopamine D4 receptor by liquid scintillation counting\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 26.8, mcs nAts: 13\n", "[#6]1:[#6]:[#6]:[#6]2:[#6](:[#6]:1)-,:[#6,#7]-,:[#7,#6](-,:[#6,#16]-,:2)-[#6]-[#6]-[#6]-[#6,#7]\n", "Row: 2153 Inhibition of Plasmodium falciparum recombinant falcipain-2 using ZFR-AMC as substrate after 30 mins by fluorometric assay\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 50.9, mcs nAts: 25\n", "[#6]-[#6](-,=[#6,#8])-[#6,#7]-[#6](-[#7,#6]-[#6](=,-[#8,#6])-[#6,#7])-[#6](=[#8])-[#7]-[#6](-[#6]-[#6](-[#6])-[#6])-[#6](=[#8])-[#7]-[#6](-[#6])-[#6](=,-[#8,#7])-,=[#7,#8]\n", "Row: 2154 Displacement of [3H]ketanserin from human 5HT2A receptor expressed in CHO cells\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 25.1, mcs nAts: 22\n", "[#8]-,=[#16](-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1)-[#6]1:,-[#6]:,-[#6]:,-[#6,#7](:,-[#7,#6]:,-[#6,#7]:,-1)-[#6]=,-[#6]-[#6]1:[#6]:[#6]:[#6,#7]:[#6]:[#6]:1\n", "Row: 2155 Inhibition of histamine H2 receptor (unknown origin) by PDSP assay\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 21.8, mcs nAts: 12\n", "[#7,#8]-[#6]1-[#6]2-[#6]3-[#6]-[#6]4-[#6]-1-[#6]1-[#6]-2-[#6]-[#6]-3-[#6]-1-4\n", "Row: 2156 Antagonist activity against human orexin 2 receptor after 1 hr by Ca2+ sensitive Fluo4-AM fluorescent dye-based FLIPR assay\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 33.1, mcs nAts: 18\n", "[#6]-[#7]-[#6](=[#8])-[#6]-[#8,#7]-[#6]1:[#6]:[#6](-[#6]):[#6]2:[#6](:[#7]:1):[#7](:[#7]:[#6]:2-[#6])-[#6]\n", "Row: 2157 Inhibitory activity against protease plasmepsin-2 (Plm II) of Plasmodium falciparum\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 48.7, mcs nAts: 17\n", "[#6,#7]=,-[#6,#7]-[#6,#7]-[#8,#6]-[#6](-[#6,#8]-,=[#7,#6,#8])-[#6,#7]-[#6](-,=[#8])-[#6](-[#8,#7]-[#6]-,=[#6,#8])-[#6](=,-[#8,#6])-[#7,#6]\n", "Row: 2158 Inhibition of human plasma BuChE activity\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 25.2, mcs nAts: 17\n", "[#8,#6]=,-[#6](-,=[#6,#8])-[#7]1-[#6]2:[#6]:[#6]:[#6]:[#6]:[#6]:2-[#16]-[#6]2:[#6]-1:[#6]:[#6]:[#6]:[#6]:2\n", "Row: 2159 Antagonist activity against human orexin 1 receptor after 1 hr by Ca2+ sensitive Fluo4-AM fluorescent dye-based FLIPR assay\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 33.1, mcs nAts: 18\n", "[#6]-[#7]-[#6](=[#8])-[#6]-[#8,#7]-[#6]1:[#6]:[#6](-[#6]):[#6]2:[#6](:[#7]:1):[#7](:[#7]:[#6]:2-[#6])-[#6]\n", "Row: 2160 Inhibition of DPP4\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 17.5, mcs nAts: 9\n", "[#6,#7,#8]-,=[#6](-[#6])-[#6,#7](-,=[#7,#6,#8])-[#6,#7]-[#7,#6]-[#6]-,=,#[#6,#7]\n", "Row: 2161 Antagonist activity at human OX2 receptor expressed in HEK cells assessed as inhibition of orexin A-induced Ca2+ accumulation after 1 hr by Fluo-4-AM staining-based FLIPR assay\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 30.7, mcs nAts: 19\n", "[#8,#6]=,-[#6,#7]1-[#7,#6](-,=[#6,#8])-[#6]-[#6]-[#6]-[#6]-12-[#6]-[#6]-[#7](-[#6]-[#6]-2)-[#6]1:[#7,#6]:[#6,#7]:[#6]:[#6]:[#7]:1\n", "Row: 2162 Displacement of [3H]N-methylspiperone from human dopamine D2 receptor by liquid scintillation counting\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 26.8, mcs nAts: 13\n", "[#6]1:[#6]:[#6]:[#6]2:[#6](:[#6]:1)-,:[#6,#7]-,:[#7,#6](-,:[#6,#16]-,:2)-[#6]-[#6]-[#6]-[#6,#7]\n", "Row: 2163 Displacement of [3H]DPCPX from human adenosine A2B receptor expressed in HEK293 cells after 60 mins by filtration binding assay\n", " * postgresql://localhost/chembl_23\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Mean nAts 24.2, mcs nAts: 17\n", "[#6,#8]-,=[#6](=,-[#8,#6])-[#7]-[#6]1:[#6]:[#7]:[#6](:[#6](:[#7]:1)-[#6])-[#6]1:[#6]:[#6]:[#7]:[#6]:[#6,#7]:1\n", "Row: 2164 Inhibition of human carbonic anhydrase 4 esterase activity using 4-nitrophenylacetate as substrate\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 16.8, mcs nAts: 7\n", "[#6,#8,#16]-,=[#6]1-,:[#6]-,:[#6]-,:[#6]-,:[#6]-,:[#6]-,:1\n", "Row: 2165 Displacement of [3H]-CP55940 from human CB1 receptor after 1 hr by scintillation counting analysis\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 28.2, mcs nAts: 16\n", "[#6]-[#6]-[#7](:[#6]):[#6]:[#6]:[#6]:[#6]:[#6]:[#6]:[#6]1:,-[#7,#6]:[#7,#6](:[#6,#7]:[#6,#7]-,:1)-,=[#6,#8]\n", "Row: 2166 Displacement of [3H]MPEP from mGluR5 in rat brain\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 16.5, mcs nAts: 16\n", "[#7,#6]#,-[#6,#8]-[#6]1:[#6]:[#6]:[#6]:[#6](:[#6]:1)-[#6]#[#6]-[#6]1:[#6]:[#16]:[#6](:[#7]:1)-[#7,#6,#9,#17,#35,#53]\n", "Row: 2167 Displacement of [125I]-DOI from recombinant human 5HT2C receptor\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 27.5, mcs nAts: 19\n", "[#6,#8]-,=[#6](=,-[#8,#6])-[#7]1-[#6]-[#6]-[#7](-[#6]-[#6]-1)-[#6]-[#6]-[#6]1:[#6]:[#6]:[#6](:[#6]:[#6]:1-[#9])-[#9]\n", "Row: 2168 Inhibitory activity against HIV-1 protease\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 37.6, mcs nAts: 33\n", "[#6,#7,#8]-,=[#6]-[#6]1:[#6]:[#7]:[#6](:[#16,#7]:1)-[#6](-[#6]-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1)-[#6]-[#6](-[#8])-[#6](-[#6]-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1)-[#7]-[#6](=[#8])-[#8,#6]-[#6](-[#6])-[#6,#8]\n", "Row: 2169 Inhibitory concentration against HIV-1 protease\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 48.7, mcs nAts: 26\n", "[#6,#7]-[#7,#6]-[#6]-[#6](-[#8,#7]-[#6]-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6,#7]:1)-[#6](-,=[#8])-[#6,#7]-[#6](-[#8,#6]-[#6]-[#6,#7]1:,-[#6]:,-[#6]:,-[#6]:,-[#6]:,-[#6]:,-1)-[#6]-,=[#7,#6,#8]\n", "Row: 2170 Displacement of [3H]-ZM241385 from human adenosine A2A receptor expressed in high five cells after 30 mins by scintillation counting\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 23.5, mcs nAts: 17\n", "[#6,#8]-,=[#6,#7]-[#7,#6]-[#6]1:[#6]:[#6]:[#6](:[#6]:[#6]:1)-[#6](=[#8])-[#7]-[#6]1:[#7]:[#6]:[#6]:[#16]:1\n", "Row: 2171 Inhibition of human carbonic anhydrase 6 esterase activity using 4-nitrophenylacetate as substrate\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 16.8, mcs nAts: 7\n", "[#6,#8,#16]-,=[#6]1-,:[#6]-,:[#6]-,:[#6]-,:[#6]-,:[#6]-,:1\n", "Row: 2172 Inhibition of human recombinant CA4 expressed in Escherichia coli preincubated for 15 mins by stopped-flow CO2 hydration assay\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 44.3, mcs nAts: 19\n", "[#7]-[#6]1:[#6]:[#6]:[#6](:[#6]:[#6]:1)-[#6](=[#8])-[#7]-[#6]1:[#7]:[#7]:[#6](:[#16]:1)-[#16](-[#7])(=[#8])=[#8]\n", "Row: 2173 Displacement of [125I]IABN from human dopamine D2 receptor expressed in HEK293 cells\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 34.1, mcs nAts: 26\n", "[#8,#17]-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1-[#7]1-[#6]-[#6]-[#7](-[#6]-[#6]-1)-[#6]-[#6]=,-[#6]-[#6]-[#7]-[#6](=[#8])-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1\n", "Row: 2174 Displacement of [3H]R-PIA from human A1 adenosine receptor expressed in CHO cells after 60 min by Perkin Elmer Liquid Scintillation Analyzer\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 26.6, mcs nAts: 18\n", "[#6]-[#7]-[#6]1:[#7]:[#6]:[#7]:[#6]2:[#6]:1:[#7]:[#6]:[#7]:2-[#6]1-[#6](-[#8])-[#6](-[#8])-[#6]-[#6,#8]-1\n", "Row: 2175 Inhibition of human recombinant CA1 by CO2 hydration based stopped flow assay\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 38.1, mcs nAts: 28\n", "[#7]-[#16](=[#8])(=[#8])-[#6]1:[#6]:[#6]:[#6](:[#6]:[#6]:1)-[#7]1:[#6]:[#6](-[#6]-[#16]-[#6]2-[#8]-[#6](-[#6]-[#8])-[#6](-[#6](-[#6]-2-[#8])-[#8])-[#8]):[#7]:[#7]:1\n", "Row: 2176 Inhibitory concentration for rat Monoamine oxidase A\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 20.0, mcs nAts: 10\n", "[#7,#6,#8]-,=[#6,#7](-,=[#6,#8])-[#6,#7]-[#6,#7]1:,-[#6]:,-[#6]:,-[#6,#7]:,-[#6]:,-[#6]:,-1\n", "Row: 2177 Displacement of [3H]ZM241385 from human adenosine A2A receptor expressed in HEK293 cell membrane\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 21.5, mcs nAts: 11\n", "[#7]#[#6]-[#6]1:[#6](-[#6]):[#6]:[#6](:[#7]:[#6]:1-[#7])-[#6]\n", "Row: 2178 Displacement of [125I]PYY from human recombinant neuropeptide Y5 receptor expressed in thymidine kinase deficient human LM cells\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 28.3, mcs nAts: 23\n", "[#8]=,-[#6]1-[#6]-[#6]-[#6]-[#6](=,-[#6]-,=1-[#6]1-[#6]2=,:[#6](-,:[#6]-,:[#6]-,:[#6]-,:[#6]-,:2=,-[#8])-[#8]-[#6]2:,=[#6]-1:,-[#6]:,-[#6]:,-[#6]:,-[#6]:,-2)-,=[#8]\n", "Row: 2179 Displacement of [3H]-M-MPEP from mGluR5 in rat cerebrocortical membranes\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 24.6, mcs nAts: 13\n", "[#6]-[#6]1:[#7]:[#6,#7](-[#6]2:[#6]:[#6]:[#6]:[#6](:[#6]:2)-[#6,#8,#9,#17]):[#7]:[#8,#7]:1\n", "Row: 2180 Inhibition of human recombinant MAOB expressed in insect cells by fluorescence assay\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 16.9, mcs nAts: 7\n", "[#7,#6,#8]-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1\n", "Row: 2181 Inhibitory constant against human Carbonic anhydrase IX\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 24.8, mcs nAts: 8\n", "[#6,#7]1:,-[#6]:,-[#6]:,-[#6,#7](:,-[#6]:,-[#6]:,-1)-[#16,#6,#7,#8]-,=[#7,#6,#8,#16]\n", "Row: 2182 Inhibitory constant against human Carbonic anhydrase II\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 24.8, mcs nAts: 8\n", "[#6,#7]1:,-[#6]:,-[#6]:,-[#6,#7](:,-[#6]:,-[#6]:,-1)-[#16,#6,#7,#8]-,=[#7,#6,#8,#16]\n", "Row: 2183 Inhibitory constant against human Carbonic anhydrase I\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 24.8, mcs nAts: 8\n", "[#6,#7]1:,-[#6]:,-[#6]:,-[#6,#7](:,-[#6]:,-[#6]:,-1)-[#16,#6,#7,#8]-,=[#7,#6,#8,#16]\n", "Row: 2184 Inhibition of human recombinant carbonic anhydrase 1 by stopped-flow CO2 hydrase assay\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 23.6, mcs nAts: 5\n", "[#6,#7,#8]-,=[#6,#16](=,-[#8,#6])-[#7,#6]-,=[#6]\n", "Row: 2185 Inhibition of human factor 10a\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 39.4, mcs nAts: 21\n", "[#7,#9]-[#6](=,-[#8,#9])-[#6]1:[#6]:[#6](-[#6](=,-[#8,#7])-,=[#7,#8]):[#7](:[#7]:1)-[#6]1:[#6]:[#6]:[#6]2:[#6](:[#6]:1):[#6](:[#7]:[#8]:2)-[#7]\n", "Row: 2186 Reversible mixed-type inhibition of electric eel acetylcholinesterase using acetylcholine bromide as substrate assessed as free enzyme-inhibitor complex by Lineweaver-Burk plot analysis\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 23.1, mcs nAts: 7\n", "[#6,#8]-[#7,#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1\n", "Row: 2187 Inhibition of human plasmin using pyroGlu-Phe-Lys-pNA.HCl\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 36.5, mcs nAts: 19\n", "[#7]=,-[#6]-[#6]1:[#6]:[#6]:[#6](:[#6]:[#6]:1)-[#8]-[#6]1:[#6]:[#6](-[#8,#6,#7]-[#6,#7]):[#6]:[#6](:[#6]:1)-[#6,#8]-,=[#7,#6,#8]\n", "Row: 2188 Inhibition of human recombinant carbonic anhydrase 2 by stopped-flow CO2 hydrase assay\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 23.6, mcs nAts: 5\n", "[#6,#7,#8]-,=[#6,#16](=,-[#8,#6])-[#7,#6]-,=[#6]\n", "Row: 2189 Inhibition of human recombinant carbonic anhydrase 9 by stopped-flow CO2 hydrase assay\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 23.6, mcs nAts: 5\n", "[#6,#7,#8]-,=[#6,#16](=,-[#8,#6])-[#7,#6]-,=[#6]\n", "Row: 2190 Inhibition of human recombinant CA1 expressed in Escherichia coli preincubated for 15 mins by stopped-flow CO2 hydration assay\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 44.3, mcs nAts: 19\n", "[#7]-[#6]1:[#6]:[#6]:[#6](:[#6]:[#6]:1)-[#6](=[#8])-[#7]-[#6]1:[#7]:[#7]:[#6](:[#16]:1)-[#16](-[#7])(=[#8])=[#8]\n", "Row: 2191 Displacement of [3H]racemic CP-101606 from rat NR2B receptor in P2 membrane\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 25.6, mcs nAts: 14\n", "[#8,#6]=,-[#6](-[#7]-[#6]-[#6]1-[#6]-[#6]-[#6](-[#6]-[#6]-1)-[#6]-[#8,#6]-[#6,#8])-,=[#6,#8]\n", "Row: 2192 Inhibition of 20 pM [125I]BH-CCK-8S binding to mouse cortical membrane Cholecystokinin 2 receptor\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 54.7, mcs nAts: 13\n", "[#6]-[#7]-[#6]-[#6](-[#8])-[#6](-[#8])-[#6](-[#8])-[#6](-[#8])-[#6]-[#8]\n", "Row: 2193 In vitro inhibition of aspartic protease plasmepsin (Plm) II of Plasmodium falciparum\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 41.8, mcs nAts: 19\n", "[#6,#7,#8]-,=[#6,#7]-[#6,#7]-[#7,#6]-[#6](=,-[#8])-[#6,#7]-[#6,#7]-[#6](-[#6]-[#8,#6,#7]-[#6,#7]-[#6]1:,-[#6]:,-[#6]:,-[#6]:,-[#6]:,-[#6,#7]:,-1)-,=[#7,#8]\n", "Row: 2194 Inhibitory activity was evaluated against HIV protease\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 45.6, mcs nAts: 38\n", "[#8]=[#6]1-[#7](-[#6]-[#6]2:[#6]:[#6]:[#6]:[#6]:[#6]:2)-[#6](-[#6]-[#6]2:[#6]:[#6]:[#6]:[#6]:[#6]:2)-[#6](-[#8])-[#6](-[#6](-[#7]-1-[#6]-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1)-[#6]-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1)-[#8]\n", "Row: 2195 Inhibition of [3H]NMS binding to human cloned M3 receptor expressed in CHO cells\n", " * postgresql://localhost/chembl_23\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Mean nAts 49.2, mcs nAts: 38\n", "[#6]-[#7]-[#6](=[#8])-[#6]1-[#6]-[#6]-[#6]-[#7]-1-[#6](=[#8])-[#6]1-[#6]-[#6]-[#6]-[#7]-1-[#6](=[#8])-[#6]-[#6](-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1)(-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1)-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1\n", "Row: 2196 Displacement of [3H]-DPCPX from human adenosine A1 receptor expressed in CHO cell membranes after 120 mins by scintillation counting method\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 23.2, mcs nAts: 12\n", "[#6]-[#6]1:[#7]:[#6](-[#7]):[#6]2:[#6](:[#7]:1):[#6]:[#7](:[#7]:2)-[#6]\n", "Row: 2197 Inhibition of 20 pM [125I]BH-CCK-8S binding to guinea pig pancreas membrane Cholecystokinin 1 receptor\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 54.7, mcs nAts: 13\n", "[#6]-[#7]-[#6]-[#6](-[#8])-[#6](-[#8])-[#6](-[#8])-[#6](-[#8])-[#6]-[#8]\n", "Row: 2198 Displacement of [125I]AB-MECA from human Adenosine A3 receptor expressed in CHO cells\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 31.0, mcs nAts: 21\n", "[#6]-[#7]-[#6]1:[#7]:[#6](-[#7,#6]):[#7]:[#6]2:[#6]:1:[#7]:[#6]:[#7]:2-[#6]1-[#8]-[#6](-[#6]-,=[#8,#7])-[#6](-[#6]-1-[#8])-[#8]\n", "Row: 2199 Ability to displace [3H]ditolylguanidine in the presence of 100 nM (+)-pentazocine from Sigma opioid receptor type 2 of rat liver\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 24.5, mcs nAts: 8\n", "[#6,#7]1:,-[#6]:,-[#6]:,-[#6,#7](:,-[#6,#8]:,-[#6]:,-1)-[#7,#6,#8]-,#[#6,#7,#8]\n", "Row: 2200 Displacement of [3H] labelled Substance P from cloned human NK1 receptor expressed in CHO cells\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 45.4, mcs nAts: 37\n", "[#6,#7,#8]-[#8,#6,#7]-,=[#7,#6]=,-[#6,#7]-[#6]-[#7]1-[#6]-[#6]-[#7](-[#6](-[#6]-1)-[#6]-[#6]1:[#6]:[#7]:[#6]2:[#6]:1:[#6]:[#6]:[#6]:[#6]:2)-[#6](=[#8])-[#6]1:[#6]:[#6](-[#6](-[#9])(-[#9])-[#9]):[#6]:[#6](:[#6]:1)-[#6](-[#9])(-[#9])-[#9]\n", "Row: 2201 Inhibition of recombinant human carbonic anhydrase 12 preincubated for 15 mins by stopped-flow CO2 hydrase Assay\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 22.0, mcs nAts: 16\n", "[#7]-[#16](=[#8])(=[#8])-[#6]1:[#6]:[#6]:[#6](:[#6]:[#6]:1)-[#7]1:[#6]:[#6](-[#6]):[#7]:[#7]:1\n", "Row: 2202 Inhibition of recombinant human carbonic anhydrase 9 preincubated for 15 mins by stopped-flow CO2 hydrase Assay\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 22.0, mcs nAts: 16\n", "[#7]-[#16](=[#8])(=[#8])-[#6]1:[#6]:[#6]:[#6](:[#6]:[#6]:1)-[#7]1:[#6]:[#6](-[#6]):[#7]:[#7]:1\n", "Row: 2203 Inhibition of recombinant human carbonic anhydrase 2 preincubated for 15 mins by stopped-flow CO2 hydrase Assay\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 22.0, mcs nAts: 16\n", "[#7]-[#16](=[#8])(=[#8])-[#6]1:[#6]:[#6]:[#6](:[#6]:[#6]:1)-[#7]1:[#6]:[#6](-[#6]):[#7]:[#7]:1\n", "Row: 2204 Inhibition of recombinant human carbonic anhydrase 1 preincubated for 15 mins by stopped-flow CO2 hydrase Assay\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 22.0, mcs nAts: 16\n", "[#6]-[#6]1:[#6]:[#7](-[#6]2:[#6]:[#6]:[#6](:[#6]:[#6]:2)-[#16](-[#7])(=[#8])=[#8]):[#7]:[#7]:1\n", "Row: 2205 Inhibition of Stenotrophomonas maltophilia L1 metallo beta lactamase\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 31.0, mcs nAts: 22\n", "[#6,#8]-,=[#6](=,-[#8,#6])-[#7]-[#6](-[#6]-[#6]-[#16])-[#6](=[#8])-[#7]-[#6](-[#6]-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1)-[#6](=,-[#8,#7])-,=[#8]\n", "Row: 2206 Inhibition of PI3K-gamma (unknown origin) using [33P]ATP as substrate after 15 mins by liquid scintillation counting analysis\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 24.6, mcs nAts: 19\n", "[#6,#7,#8]-,=[#6](=,-[#8,#7])-[#7]-[#6]1:[#7]:[#6]2:[#6]:[#6]:[#6](:[#6]:[#6]:2:[#16]:1)-[#6]1:[#6]:[#6,#7]:[#6]:[#7,#6]:[#6]:1\n", "Row: 2207 Displacement of [3H]-LSD from cloned human 5HT6 receptor expressed in HeLa cells\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 26.4, mcs nAts: 23\n", "[#8]=[#16](=[#8])(-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1)-[#7]1:[#6]2:[#6](:[#6]3:[#6]:1:[#6]:[#6]:[#6]:[#6]:3)-[#6]-[#6]-[#7]-[#6]-[#6]-2\n", "Row: 2208 Displacement of [125I]Iodoproxyfan from recombinant human histamine H3 receptor expressed in HEK293 cells after 60 mins\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 27.9, mcs nAts: 23\n", "[#8,#7]=,-[#6]1-[#6]-[#6]-[#6](-[#6]-[#6]-1)-[#6]1:[#6]:[#6]:[#6](:[#6]:[#6]:1)-[#8]-[#6]-[#6]-[#6]-[#7]1-[#6]-[#6]-[#6]-[#6]-[#6]-1\n", "Row: 2209 Displacement of [125I][Phe13, Tyr19]MCH from human recombinant MCHR1 expressed in CHO cells\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 34.4, mcs nAts: 9\n", "[#7,#6]-,=[#6,#7,#8]-[#6,#7]1:,-[#6]:,-[#6]:,-[#6,#7](:,-[#6]:,-[#6]:,-1)-[#6,#7,#8]\n", "Row: 2210 Binding affinity to hERG stably transfected in HEK293 cells\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 33.1, mcs nAts: 26\n", "[#8]-,=[#6]1:[#6,#7]:[#6](-[#7]-[#6]2-[#6]-[#6]-[#7](-[#6]-[#6]-2)-[#6]-[#6]2:[#6]:[#6]:[#6]:[#6]:[#6]:2):[#6]2:[#6](:[#7]:1):[#6]:[#6]:[#6](:[#6]:2)-[#17,#8]\n", "Row: 2211 Displacement of radioligand from human adenosine A3 receptor expressed in CHO cells\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 33.9, mcs nAts: 24\n", "[#6]-[#7]-[#6](=[#8])-[#6]12-[#6]-[#6]-1-[#6](-[#7]1:[#6]:[#7]:[#6]3:[#6]:1:[#7]:[#6](:[#7]:[#6]:3-[#7]-[#6,#8])-[#17,#6,#16,#53])-[#6](-[#6]-2-[#8])-[#8]\n", "Row: 2212 Displacement of radioligand from human adenosine A1 receptor expressed in CHO cells\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 33.9, mcs nAts: 24\n", "[#6]-[#7]-[#6](=[#8])-[#6]12-[#6]-[#6]-1-[#6](-[#7]1:[#6]:[#7]:[#6]3:[#6]:1:[#7]:[#6](:[#7]:[#6]:3-[#7]-[#6,#8])-[#17,#6,#16,#53])-[#6](-[#6]-2-[#8])-[#8]\n", "Row: 2213 Displacement of [125I]N6-(-amino-3-iodobenzyl)adenosine-5'-N-methyl-uronamide from mouse recombinant adenosine A3 receptor expressed in HEK293 cells\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 33.9, mcs nAts: 24\n", "[#6]-[#7]-[#6](=[#8])-[#6]12-[#6]-[#6]-1-[#6](-[#7]1:[#6]:[#7]:[#6]3:[#6]:1:[#7]:[#6](:[#7]:[#6]:3-[#7]-[#6,#8])-[#17,#6,#16,#53])-[#6](-[#6]-2-[#8])-[#8]\n", "Row: 2214 Displacement of [125I]N6-(4-amino-3-iodobenzyl)adenosine-5'-N-methyl-uronamide from mouse recombinant adenosine A1 receptor expressed in HEK293 cells\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 33.9, mcs nAts: 24\n", "[#6]-[#7]-[#6](=[#8])-[#6]12-[#6]-[#6]-1-[#6](-[#7]1:[#6]:[#7]:[#6]3:[#6]:1:[#7]:[#6](:[#7]:[#6]:3-[#7]-[#6,#8])-[#17,#6,#16,#53])-[#6](-[#6]-2-[#8])-[#8]\n", "Row: 2215 Binding affinity to human thrombin\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 32.0, mcs nAts: 17\n", "[#6]-[#6]-[#7]-[#6](=[#8])-[#6]-[#6,#7]1:[#6](-[#17,#6]):[#6]:[#6,#7]:[#6](:[#6]:1-,=[#9,#8])-[#7]-[#6,#16]-[#6]\n", "Row: 2216 Displacement of [125I]IOXY from human recombinant kappa opioid receptor expressed in CHO cells\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 36.0, mcs nAts: 31\n", "[#6]-[#8]-[#6](=[#8])-[#6]1-[#6]-[#6](-[#8,#7,#16]-[#6,#16](-,=[#6,#8])=,-[#8,#6])-[#6](-[#6]2-[#6]-1(-[#6])-[#6]-[#6]-[#6]1-[#6]-2(-[#6]-[#6](-[#8]-[#6]-1=[#8])-[#6]1:[#6]:[#6]:[#8]:[#6]:1)-[#6])=[#8]\n", "Row: 2217 Displacement of [125I]IOXY from human recombinant delta opioid receptor expressed in CHO cells\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 36.0, mcs nAts: 31\n", "[#6]-[#8]-[#6](=[#8])-[#6]1-[#6]-[#6](-[#8,#7,#16]-[#6,#16](-,=[#6,#8])=,-[#8,#6])-[#6](-[#6]2-[#6]-1(-[#6])-[#6]-[#6]-[#6]1-[#6]-2(-[#6]-[#6](-[#8]-[#6]-1=[#8])-[#6]1:[#6]:[#6]:[#8]:[#6]:1)-[#6])=[#8]\n", "Row: 2218 Displacement of [125I]IOXY from human recombinant mu opioid receptor expressed in CHO cells\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 36.0, mcs nAts: 31\n", "[#6]-[#8]-[#6](=[#8])-[#6]1-[#6]-[#6](-[#8,#7,#16]-[#6,#16](-,=[#6,#8])=,-[#8,#6])-[#6](-[#6]2-[#6]-1(-[#6])-[#6]-[#6]-[#6]1-[#6]-2(-[#6]-[#6](-[#8]-[#6]-1=[#8])-[#6]1:[#6]:[#6]:[#8]:[#6]:1)-[#6])=[#8]\n", "Row: 2219 Inhibitory activity against DNA-dependent protein kinase receptor\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 26.4, mcs nAts: 12\n", "[#8]=,-[#6]1:[#6]:[#6](-,=[#7]):[#8,#7]:[#6]2:[#6,#7]:1:[#6]:[#6]:[#6]:[#6]:2\n", "Row: 2220 Displacement of [3H] LSD from human 5HT6 receptor expressed in HEK293 cells\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 22.8, mcs nAts: 11\n", "[#6,#8]-,=[#6,#16]-[#7,#6]1:[#6]:[#6,#7]:[#6]2:[#6]:1:[#6]:[#6]:[#6]:[#6]:2\n", "Row: 2221 Binding affinity to human factor Xa\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 39.8, mcs nAts: 34\n", "[#7,#6]-[#6,#16]-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1-[#6]1:[#6]:[#6]:[#6](:[#6]:[#6]:1)-[#7]1-[#6]-[#6]-[#6]2:[#6](-[#6]-1=[#8]):[#7](:[#7]:[#6]:2-[#6](-[#9])(-[#9])-[#9])-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1\n", "Row: 2222 Inhibition of human recombinant CA2 expressed in Escherichia coli preincubated for 15 mins by stopped-flow CO2 hydration assay\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 44.3, mcs nAts: 19\n", "[#7]-[#6]1:[#6]:[#6]:[#6](:[#6]:[#6]:1)-[#6](=[#8])-[#7]-[#6]1:[#7]:[#7]:[#6](:[#16]:1)-[#16](-[#7])(=[#8])=[#8]\n", "Row: 2223 Inhibition of F10a\n", " * postgresql://localhost/chembl_23\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Mean nAts 32.0, mcs nAts: 30\n", "[#8]=[#6](-[#6]-[#7]1-[#6]-[#6]-[#6](-[#6]-1=[#8])-[#7]-[#16](=[#8])(=[#8])-[#6]1:[#6]:[#6]:[#6]2:[#6](:[#6]:1):[#6]:[#6]:[#6](:[#6]:2)-[#17])-[#7]1-[#6]-[#6]-[#6,#7,#8]-[#6]-[#6]-1\n", "Row: 2224 Inhibition of human 11beta-HSD1 expressed in Escherichia coli by SPA\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 25.9, mcs nAts: 12\n", "[#7]-[#6]1:[#6](-[#17]):[#6]:[#6](:[#6]:[#6]:1-[#17])-[#6](=,-[#8,#7])-,=[#7,#8]\n", "Row: 2225 Displacement of [125I]IABN from human dopamine D3 receptor expressed in HEK293 cells\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 34.1, mcs nAts: 26\n", "[#8,#17]-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1-[#7]1-[#6]-[#6]-[#7](-[#6]-[#6]-1)-[#6]-[#6]=,-[#6]-[#6]-[#7]-[#6](=[#8])-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1\n", "Row: 2226 Displacement of [3H]dofetilide from human ERG expressed in HEK293 cells\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 21.0, mcs nAts: 10\n", "[#6,#8,#16]-,=[#7,#6,#16](-[#6,#7]-[#6]1:,-[#6]:,-[#6]:,-[#6,#7]:,-[#6]:,-[#6]:,-1)-,=[#6,#8,#16]\n", "Row: 2227 Inhibition of rat 11beta-HSD1\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 26.4, mcs nAts: 12\n", "[#7]-[#6]1:[#6](-[#17]):[#6]:[#6](:[#6]:[#6]:1-[#17])-[#6](=,-[#8,#7])-,=[#7,#8]\n", "Row: 2228 Displacement of [125I]N6-(4-amino-3-iodobenzyl)adenosine-5'-N-methyl-uronamide from human adenosine A3 receptor stably expressed in CHO cell membrane by radioligand binding assay\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 33.2, mcs nAts: 24\n", "[#6]-[#7]-[#6]1:[#7]:[#6](-[#53,#7]):[#7]:[#6]2:[#6]:1:[#7]:[#6]:[#7]:2-[#6]1-[#6](-[#8])-[#6](-[#8])-[#6]2(-[#6]-1-[#6]-2)-[#6](=[#8])-[#7]-[#6]\n", "Row: 2229 Displacement of [3H]EMPA from human orexin receptor-2 expressed in HEK293 cells after 90 mins by scintillation counting\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 32.7, mcs nAts: 28\n", "[#6,#7]1:[#6,#7]:[#6]:[#6](:[#6,#7]:[#6]:1-[#8,#7]-[#6])-[#7]1-[#6](=[#8])-[#7](-[#6]-[#6]2:[#6]:[#6]:[#6]:[#6]:[#6]:2)-[#6]2:[#6](-[#16]-1(=[#8])=[#8]):[#6]:[#6]:[#6]:[#6,#7]:2\n", "Row: 2230 Compound was tested for its inhibitory potency against human immunodeficiency virus -1 (HIV-1 protease)\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 42.3, mcs nAts: 24\n", "[#8]=[#6](-[#7]-[#6](-[#6]-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1)-[#6](-[#8])-[#6]-[#7])-[#8]-[#6]1-[#6]-[#8]-[#6]2-[#6]-1-[#6]-[#6]-[#8]-2\n", "Row: 2231 Binding affinity to human recombinant P2Y12 receptor expressed in CHO cell membrane in presence of HSA and human AGP\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 36.7, mcs nAts: 21\n", "[#6]-[#6]-[#6]1:[#6]:[#6]2:[#6](-[#7]3-[#6]-[#6]-[#7](-[#6]-[#6]-3)-[#6](-,=[#6,#8])=,-[#8,#6]):[#7]:[#6](:[#7]:[#6]:2:[#16]:1)-[#7]\n", "Row: 2232 Inhibition constant against HIV-1 protease\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 40.1, mcs nAts: 28\n", "[#6]1:[#6]:[#6]:[#6](:[#6]:[#6]:1)-[#16](=[#8])(=[#8])-[#7](-[#6]-[#6](-[#8])-[#6](-[#6]-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1)-[#7]-[#6](=[#8])-[#8,#6]-[#6,#7])-[#8,#6]-[#6]\n", "Row: 2233 Inhibitory activity against cytosolic human carbonic anhydrase I\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 19.4, mcs nAts: 5\n", "[#6,#7,#8]-[#16,#6](-,=[#7,#6,#8])(=,-[#8,#6])=,-[#8,#6]\n", "Row: 2234 Displacement of [3H]-M-MPEP from human mGlu5 receptor expressed in HEK293 cells after 90 mins by scintillation spectroscopy analysis\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 21.0, mcs nAts: 15\n", "[#7,#6]#,-[#6,#8]-[#6]1:[#6]:[#6]:[#6]:[#6](:[#6]:1)-[#6]1:[#6]:[#6](-[#7,#6]):[#7,#6]:[#6]:[#7,#6]:1\n", "Row: 2235 Displacement of [3H]-CP55940 from CB2 receptor (unknown origin) expressed in CHO cell membranes after 90 mins by liquid scintillation counting analysis\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 26.7, mcs nAts: 24\n", "[#8]=[#6](-[#6]1:[#6]:[#6](-[#8]):[#6](:[#6](:[#6]:1)-[#8])-[#6]1:[#6]:[#6](-[#17]):[#6]:[#6](:[#6]:1)-[#17])-[#6]1-,:[#6]-,:[#6]-,:[#6]-,:[#6]-,:[#6]-,:1\n", "Row: 2236 Displacement of [3H]-CP55940 from CB1 receptor (unknown origin) expressed in CHO cell membranes after 90 mins by liquid scintillation counting analysis\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 26.7, mcs nAts: 24\n", "[#8]=[#6](-[#6]1:[#6]:[#6](-[#8]):[#6](:[#6](:[#6]:1)-[#8])-[#6]1:[#6]:[#6](-[#17]):[#6]:[#6](:[#6]:1)-[#17])-[#6]1-,:[#6]-,:[#6]-,:[#6]-,:[#6]-,:[#6]-,:1\n", "Row: 2237 Inhibition of GST-tagged full length ITK (unknown origin) using BLK peptide as substrate after 35 mins\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 28.2, mcs nAts: 24\n", "[#6]1-,:[#6]-,:[#6]-,:[#6]2:[#6](-,:[#6]-,:1):[#7]:[#7]:[#6]:2-[#6](=[#8])-[#7]-[#6]1:[#6]:[#7]:[#7](:[#6]:1)-[#6]-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1\n", "Row: 2238 Displacement of [3H]ketanserin from human 5HT2AR expressed in CHOK1 cells\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 31.9, mcs nAts: 12\n", "[#6]-[#6,#7,#8]-[#6,#7]-[#7,#6]1-,:[#6]-,:[#6]-,:[#6,#7](-,:[#6]-,:[#6]-,:1)-[#6]-[#8,#6]-[#6,#7]\n", "Row: 2239 Inhibition of human carbonic anhydrase 12 preincubated for 15 mins by CO2 hydration stopped-flow assay\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 24.7, mcs nAts: 16\n", "[#7,#6]#,-[#6]-,=[#6]-[#6](=[#8])-[#7]-[#6]1:[#6]:[#6]:[#6](:[#6]:[#6]:1)-[#16](-[#7])(=[#8])=[#8]\n", "Row: 2240 Inhibition of human carbonic anhydrase 9 preincubated for 15 mins by CO2 hydration stopped-flow assay\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 24.7, mcs nAts: 16\n", "[#7,#6]#,-[#6]-,=[#6]-[#6](=[#8])-[#7]-[#6]1:[#6]:[#6]:[#6](:[#6]:[#6]:1)-[#16](-[#7])(=[#8])=[#8]\n", "Row: 2241 Inhibition of human carbonic anhydrase 2 preincubated for 15 mins by CO2 hydration stopped-flow assay\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 24.7, mcs nAts: 16\n", "[#7,#6]#,-[#6]-,=[#6]-[#6](=[#8])-[#7]-[#6]1:[#6]:[#6]:[#6](:[#6]:[#6]:1)-[#16](-[#7])(=[#8])=[#8]\n", "Row: 2242 Inhibition of human carbonic anhydrase 1 preincubated for 15 mins by CO2 hydration stopped-flow assay\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 24.7, mcs nAts: 16\n", "[#7,#6]#,-[#6]-,=[#6]-[#6](=[#8])-[#7]-[#6]1:[#6]:[#6]:[#6](:[#6]:[#6]:1)-[#16](-[#7])(=[#8])=[#8]\n", "Row: 2243 Inhibitory activity against cytosolic human carbonic anhydrase II\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 19.4, mcs nAts: 5\n", "[#8,#6,#7]-[#16,#6](-,=[#7,#6,#8])(=,-[#8,#6])=,-[#8,#6]\n", "Row: 2244 Inhibition of human recombinant full length CA7-mediated CO2 hydration preincubated for 15 mins by stopped-flow assay\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 23.0, mcs nAts: 8\n", "[#7,#6,#8]-[#16,#6,#8]-[#6]1:,-[#6,#8]:,-[#6]:,-[#6]:,-[#6]:,-[#6]:,-1\n", "Row: 2245 Inhibition of human recombinant full length CA2-mediated CO2 hydration preincubated for 15 mins by stopped-flow assay\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 23.0, mcs nAts: 8\n", "[#7,#6,#8]-[#16,#6,#8]-[#6]1:,-[#6,#8]:,-[#6]:,-[#6]:,-[#6]:,-[#6]:,-1\n", "Row: 2246 Displacement of [3H]AVP from vasopressin V2 receptor in rat kidney membranes\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 72.4, mcs nAts: 43\n", "[#6,#7]-[#6]-[#6]-[#6]1-[#7]-[#6](=[#8])-[#6](-[#6]-[#6]2:,-[#6]:,-[#6]:,-[#6]:,-[#6]:,-[#6]:,-2)-[#7]-[#6](=[#8])-[#6](-[#6]-[#6]2:[#6]:[#6]:[#6]:[#6,#7]:[#6]:2)-[#7]-[#6](=[#8])-[#6]-[#6,#7]-[#16,#6]-[#16,#6]-[#6]-[#6,#16]-[#7,#16]-[#6]-[#6](-[#7]-[#6]-1=[#8])-[#6]-[#6,#7]\n", "Row: 2247 BindingDB_Patents: Competition Binding Assay. The rat H3 receptor was cloned and expressed in cells, and competition binding assays carried out, according to methods previously described (see Esbenshade, et al. Journal of Pharmacology and Experimental Therapeutics 2005, 313, 165-175; Esbenshade et al., Biochemical Pharmacology 2004, 68, 933-945; and Krueger, et al. Journal of Pharmacology and Experimental Therapeutics 2005, 314, 271-281). Membranes were prepared from C6 or HEK293 cells, expressing the rat histamine H3 receptor, by homogenization on ice in TE buffer (50 mM Tris-HCl buffer, pH 7.4, containing 5 mM EDTA), 1 mM benzamidine, 2 ug/ml aprotinin, 1 ug/ml leupeptin, and 1 ug/ml pepstatin. The homogenate was centrifuged at 40,000 g for 20 minutes at 4 C. This step was repeated, and the resulting pellet was resuspended in TE buffer. Aliquots were frozen at -70 C. until needed. On the day of assay, membranes were thawed and diluted with TE buffer.\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 15.5, mcs nAts: 8\n", "[#7]-[#6]1:[#6,#7]:[#6]:[#7,#6]:[#6](:[#7]:1)-[#7]\n", "Row: 2248 Inhibition of human recombinant full length CA1-mediated CO2 hydration preincubated for 15 mins by stopped-flow assay\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 23.0, mcs nAts: 8\n", "[#7,#6,#8]-[#16,#6,#8]-[#6]1:,-[#6,#8]:,-[#6]:,-[#6]:,-[#6]:,-[#6]:,-1\n", "Row: 2249 Inhibition of human carbonic anhydrase 14 preincubated for 15 mins by CO2 hydration stopped-flow assay\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 16.4, mcs nAts: 6\n", "[#6]-[#7,#8]-[#16,#6](=,-[#8,#6,#7])(=,-[#8,#6])-,=[#7,#6,#8]\n", "Row: 2250 Inhibition of human carbonic anhydrase 12 preincubated for 15 mins by CO2 hydration stopped-flow assay\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 16.4, mcs nAts: 6\n", "[#6]-[#7,#8]-[#16,#6](=,-[#8,#6,#7])(=,-[#8,#6])-,=[#7,#6,#8]\n", "Row: 2251 Inhibition of human carbonic anhydrase 7 preincubated for 15 mins by CO2 hydration stopped-flow assay\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 16.4, mcs nAts: 6\n", "[#6]-[#7,#8]-[#16,#6](=,-[#8,#6,#7])(=,-[#8,#6])-,=[#7,#6,#8]\n", "Row: 2252 Inhibition of human carbonic anhydrase 2 preincubated for 15 mins by CO2 hydration stopped-flow assay\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 16.4, mcs nAts: 6\n", "[#6]-[#7,#8]-[#16,#6](=,-[#8,#6,#7])(=,-[#8,#6])-,=[#7,#6,#8]\n", "Row: 2253 Inhibition of human carbonic anhydrase 1 preincubated for 15 mins by CO2 hydration stopped-flow assay\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 16.4, mcs nAts: 6\n", "[#6]-[#7,#8]-[#16,#6](=,-[#8,#6,#7])(=,-[#8,#6])-,=[#7,#6,#8]\n", "Row: 2254 Displacement of [125I]methyl 3-(4-iodophenyl)-8-methyl-8-aza-bicyclo[3.2.1]octane-2-carboxylate from human recombinant DAT expressed in african green monkey COS1 cells by liquid scintillation counting\n", " * postgresql://localhost/chembl_23\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Mean nAts 45.5, mcs nAts: 20\n", "[#6]-[#8,#7]-[#6](=[#8])-[#6]1-[#6](-[#6]2:[#6]:[#6]:[#6](:[#6]:[#6]:2)-[#17,#6,#53])-[#6]-[#6]2-[#7](-[#6]-1-[#6]-[#6]-2)-[#6]\n", "Row: 2255 Displacement of [3H]AVP from vasopressin V1a receptor in rat liver membrane\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 72.4, mcs nAts: 43\n", "[#6,#7]-[#6]-[#6]-[#6]1-[#7]-[#6](=[#8])-[#6](-[#6]-[#6]2:,-[#6]:,-[#6]:,-[#6]:,-[#6]:,-[#6]:,-2)-[#7]-[#6](=[#8])-[#6](-[#6]-[#6]2:[#6]:[#6]:[#6]:[#6,#7]:[#6]:2)-[#7]-[#6](=[#8])-[#6]-[#6,#7]-[#16,#6]-[#16,#6]-[#6]-[#6,#16]-[#7,#16]-[#6]-[#6](-[#7]-[#6]-1=[#8])-[#6]-[#6,#7]\n", "Row: 2256 Displacement of [3H]U-69593 from KOP receptor in guinea pig cortical tissue\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 36.1, mcs nAts: 32\n", "[#6]-[#8]-[#6]1:[#6]:[#6]:[#6](:[#6](:[#6]:1)-[#8]-[#6](-[#6]-[#6]-[#7]1-[#6]-[#6]-[#6](-[#6]-[#6]-1)-[#7]1:[#6](=[#8]):[#7]:[#6]2:[#6]:1:[#6]:[#6]:[#6]:[#6]:2)-[#6](-[#6])-[#6])-[#6]\n", "Row: 2257 Displacement of [3H]naltrindole from human DOP receptor expressed in deltaC6 cells\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 36.1, mcs nAts: 32\n", "[#6]-[#8]-[#6]1:[#6]:[#6]:[#6](:[#6](:[#6]:1)-[#8]-[#6](-[#6]-[#6]-[#7]1-[#6]-[#6]-[#6](-[#6]-[#6]-1)-[#7]1:[#6](=[#8]):[#7]:[#6]2:[#6]:1:[#6]:[#6]:[#6]:[#6]:2)-[#6](-[#6])-[#6])-[#6]\n", "Row: 2258 Displacement of [125I]methyl 3-(4-iodophenyl)-8-methyl-8-aza-bicyclo[3.2.1]octane-2-carboxylate from human recombinant SERT expressed in african green monkey COS1 cells by liquid scintillation counting\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 45.5, mcs nAts: 20\n", "[#6]-[#8,#7]-[#6](=[#8])-[#6]1-[#6]2-[#6]-[#6]-[#6](-[#7]-2-[#6])-[#6]-[#6]-1-[#6]1:[#6]:[#6]:[#6](:[#6]:[#6]:1)-[#53,#6,#17]\n", "Row: 2259 Displacement of [125I]methyl 3-(4-iodophenyl)-8-methyl-8-aza-bicyclo[3.2.1]octane-2-carboxylate from human recombinant NET expressed in african green monkey COS1 cells by liquid scintillation counting\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 45.5, mcs nAts: 20\n", "[#6]-[#8,#7]-[#6](=[#8])-[#6]1-[#6]2-[#6]-[#6]-[#6](-[#7]-2-[#6])-[#6]-[#6]-1-[#6]1:[#6]:[#6]:[#6](:[#6]:[#6]:1)-[#53,#6,#17]\n", "Row: 2260 Inhibition of human recombinant carbonic anhydrase 1 preincubated for 15 mins by stopped-flow CO2 hydrase assay\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 20.1, mcs nAts: 18\n", "[#7]-[#16](=[#8])(=[#8])-[#6]1:[#6]:[#6]:[#6](:[#6]:[#6]:1)-[#7]=,-[#6]-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1\n", "Row: 2261 Inhibition of mTOR (unknown origin)\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 30.9, mcs nAts: 23\n", "[#6]-[#6]1:[#7]:[#6](-[#7]):[#7]:[#6]2:[#6]:1:[#6]:[#6](-[#6]):[#6](:[#7]:2-[#6]1-[#6]-[#6]-[#6](-[#6]-[#6]-1)-[#8]-[#6]-[#8,#6])=[#8]\n", "Row: 2262 Inhibition of human recombinant carbonic anhydrase 2 preincubated for 15 mins by stopped-flow CO2 hydrase assay\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 20.1, mcs nAts: 18\n", "[#7]-[#16](=[#8])(=[#8])-[#6]1:[#6]:[#6]:[#6](:[#6]:[#6]:1)-[#7]=,-[#6]-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1\n", "Row: 2263 Displacement of [3H]-CP55940 from human CB2 receptor after 1 hr by scintillation counting analysis\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 28.2, mcs nAts: 16\n", "[#6]-[#6]-[#7](:[#6]):[#6]:[#6]:[#6]:[#6]:[#6]:[#6]:[#6]1:,-[#7,#6]:[#7,#6](:[#6,#7]:[#6,#7]-,:1)-,=[#6,#8]\n", "Row: 2264 Displacement of [3H]histamine from human histamine H4 receptor expressed in HEK cells\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 20.2, mcs nAts: 12\n", "[#7]-[#6]1:[#7]:[#6](-[#7]):[#7]:[#6]2:[#6]:1:[#7,#6]:[#6]:[#6]:[#6]:2\n", "Row: 2265 Displacement of [125I]-Orexin A from human OX1R expressed in CHO cells after 30 mins by topcount analysis\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 30.3, mcs nAts: 20\n", "[#8]=[#6](-[#7,#6])-[#6]1-[#6]-[#6]-1(-[#6]-[#8]-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1)-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1\n", "Row: 2266 Displacement of [3H]CP-55940 from human CB2 receptor\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 25.9, mcs nAts: 17\n", "[#6]1:[#6]:[#6](-[#7]-[#6](=[#8])-[#6](-[#6])(-[#6])-[#6,#8]):[#6]:[#6](:[#6]:1)-[#16](=[#8])(=[#8])-[#7]\n", "Row: 2267 Displacement of [3H]-8-OH-DPAT from 5HT1A receptor in Wistar rat hippocampus homogenate\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 25.5, mcs nAts: 18\n", "[#6]1:[#7]:[#6,#7]:[#7,#6]:[#6]:1-[#6]-[#7]1-[#6]-[#6]-[#7](-[#6]-[#6]-1)-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1\n", "Row: 2268 Displacement of [3H]ketanserin from 5HT2A receptor in Wistar rat cortex homogenate\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 25.5, mcs nAts: 18\n", "[#6]1:[#7]:[#6,#7]:[#7,#6]:[#6]:1-[#6]-[#7]1-[#6]-[#6]-[#7](-[#6]-[#6]-1)-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1\n", "Row: 2269 Inhibition of human recombinant CA9 by CO2 hydration based stopped flow assay\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 38.1, mcs nAts: 28\n", "[#7]-[#16](=[#8])(=[#8])-[#6]1:[#6]:[#6]:[#6](:[#6]:[#6]:1)-[#7]1:[#6]:[#6](-[#6]-[#16]-[#6]2-[#8]-[#6](-[#6]-[#8])-[#6](-[#6](-[#6]-2-[#8])-[#8])-[#8]):[#7]:[#7]:1\n", "Row: 2270 Inhibition of human recombinant CA9 catalytic domain-mediated CO2 hydration preincubated for 15 mins by stopped-flow assay\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 23.0, mcs nAts: 8\n", "[#7,#6,#8]-[#16,#6,#8]-[#6]1:,-[#6,#8]:,-[#6]:,-[#6]:,-[#6]:,-[#6]:,-1\n", "Row: 2271 Inhibition of human recombinant full length CA14-mediated CO2 hydration preincubated for 15 mins by stopped-flow assay\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 23.0, mcs nAts: 8\n", "[#7,#6,#8]-[#16,#6,#8]-[#6]1:,-[#6,#8]:,-[#6]:,-[#6]:,-[#6]:,-[#6]:,-1\n", "Row: 2272 Inhibition of human recombinant CA12 by CO2 hydration based stopped flow assay\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 38.1, mcs nAts: 28\n", "[#7]-[#16](=[#8])(=[#8])-[#6]1:[#6]:[#6]:[#6](:[#6]:[#6]:1)-[#7]1:[#6]:[#6](-[#6]-[#16]-[#6]2-[#8]-[#6](-[#6]-[#8])-[#6](-[#6](-[#6]-2-[#8])-[#8])-[#8]):[#7]:[#7]:1\n", "Row: 2273 Inhibition of human recombinant carbonic anhydrase 9 preincubated for 15 mins by stopped-flow CO2 hydrase assay\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 20.1, mcs nAts: 18\n", "[#7]-[#16](=[#8])(=[#8])-[#6]1:[#6]:[#6]:[#6](:[#6]:[#6]:1)-[#7]=,-[#6]-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1\n", "Row: 2274 Displacement of 3-[4-({2',6'-dimethyl-6-[(4-[3H])-phenylmethoxy]biphenyl-3-yl}methoxy)phenyl]propanoic acid from human GPR40 expressed in CHO cells after 90 mins by liquid scintillation counting in the presence of 0.2% BSA\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 37.8, mcs nAts: 31\n", "[#6]-[#8]-[#6]1:[#6]:[#6](-[#6]):[#6](:[#6](:[#6]:1)-[#6])-[#6]1:[#6]:[#6]:[#6]:[#6](:[#6]:1)-[#6]-[#8]-[#6]1:[#6]:[#6]:[#6]2:[#6](:[#6]:1)-[#8]-[#6]-[#6]-2-[#6]-[#6](=[#8])-[#8]\n", "Row: 2275 Displacement of [125I]-Apelin-13[Glp65, Nle75, Tyr77] from YFP epitope-tagged human APJ expressed in HEK-293 cells after 1 hr by gamma counting method\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 123.2, mcs nAts: 44\n", "[#6,#7]-[#16,#6]-[#6]-[#6]-[#6](-[#7]-[#6](=[#8])-[#6])-[#6](=[#8])-[#7]1-[#6]-[#6]-[#6]-[#6]-1-[#6](=[#8])-[#7]-[#6](-[#6])-[#6](=[#8])-[#7]-[#6](-[#6])-[#6](=[#8])-[#7]-[#6](-[#6])-[#6](=[#8])-[#7]-[#6](-[#6])-[#6](=[#8])-[#7]-[#6](-[#6])-[#6](-,=[#6,#7,#8])-,=[#6,#7,#8]\n", "Row: 2276 Displacement of [3H]diprenorphine from human mu opioid receptor expressed in CHO cells by Topcount microplate scintillation counting\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 30.3, mcs nAts: 29\n", "[#17]-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1-[#6](-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1-[#17])-[#7]1-[#6]2-[#6]-[#6]-[#6]-1-[#6]-[#6](-[#6]-2)-[#6]1:,-[#6,#7]:,-[#6]:,-[#6,#7]:,-[#6,#7]:,-[#7,#6]:,-1\n", "Row: 2277 Binding affinity to human P2Y1 receptor\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 36.3, mcs nAts: 28\n", "[#6,#7,#8]-[#6]1:[#6]:[#6]:[#6](:[#6]:[#6]:1)-[#7]-[#6](=[#8])-[#7]-[#6]1:[#6]:[#6]:[#6]:[#7]:[#6]:1-[#8]-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1-[#6,#14](-[#6])(-[#6])-[#6]\n", "Row: 2278 Displacement of [125I]-Tyr14-N/OFQ from human NOP receptor expressed in CHO cells by Topcount microplate scintillation counting\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 30.3, mcs nAts: 29\n", "[#17]-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1-[#6](-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1-[#17])-[#7]1-[#6]2-[#6]-[#6]-[#6]-1-[#6]-[#6](-[#6]-2)-[#6]1:,-[#6,#7]:,-[#6]:,-[#6,#7]:,-[#6,#7]:,-[#7,#6]:,-1\n", "Row: 2279 Displacement of 3-[4-({2',6'-dimethyl-6-[(4-[3H])-phenylmethoxy]biphenyl-3-yl}methoxy)phenyl]propanoic acid from rat GPR40 expressed in CHO cells after 90 mins by liquid scintillation counting in the presence of 0.2%BSA\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 37.8, mcs nAts: 31\n", "[#6]-[#8]-[#6]1:[#6]:[#6](-[#6]):[#6](:[#6](:[#6]:1)-[#6])-[#6]1:[#6]:[#6]:[#6]:[#6](:[#6]:1)-[#6]-[#8]-[#6]1:[#6]:[#6]:[#6]2:[#6](:[#6]:1)-[#8]-[#6]-[#6]-2-[#6]-[#6](=[#8])-[#8]\n", "Row: 2280 Binding affinity to human cloned muscarinic M1 receptor expressed in CHO cells\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 13.3, mcs nAts: 3\n", "[#6,#7]-[#7,#6,#8]-,=[#6,#7,#8]\n", "Row: 2281 Binding affinity towards kappa-opioid receptor by displacement of [3H]EKC at 100 nM from guinea pig cortical tissue\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 23.6, mcs nAts: 17\n", "[#6]-[#6]1-[#6]-[#7](-[#6]-[#6])-[#6]-[#6]-[#6]-1(-[#6])-[#6]1:[#6]:[#6]:[#6]:[#6](:[#6]:1)-[#8]\n", "Row: 2282 Inhibition of human recombinant carbonic anhydrase 12 preincubated for 15 mins by stopped-flow CO2 hydrase assay\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 20.1, mcs nAts: 18\n", "[#7]-[#16](=[#8])(=[#8])-[#6]1:[#6]:[#6]:[#6](:[#6]:[#6]:1)-[#7]=,-[#6]-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1\n", "Row: 2283 Binding affinity to human factor 10a\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 41.1, mcs nAts: 37\n", "[#7]-[#6]-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1-[#6]1:[#6]:[#6]:[#6](:[#6](:[#6]:1)-[#9])-[#7]-[#6](=[#8])-[#6]1:[#6]:[#6](-[#6](-[#9])(-[#9])-[#9]):[#7]:[#7]:1-[#6]1:[#6]:[#6]:[#6]2:[#6](:[#6]:1):[#6](:[#7]:[#8]:2)-[#7]\n", "Row: 2284 Binding affinity for cloned human 5-hydroxytryptamine 1A receptor\n", " * postgresql://localhost/chembl_23\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Mean nAts 30.9, mcs nAts: 16\n", "[#6,#7,#8]-,=[#7,#6]-[#16,#6]-[#6,#8]-[#6]1:[#6]:[#6]:[#6]2:[#6](:[#6]:1):[#6](:[#6]:[#7]:2)-[#6]-[#6]-[#7]\n", "Row: 2285 Inhibitory concentration against the human Cathepsin D\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 44.5, mcs nAts: 21\n", "[#8]=[#6](-[#6]-[#6](-[#8])-[#6](-[#6]-[#8]-[#6]-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1)-[#7]-[#6](=[#8])-[#6])-[#7]-[#6]\n", "Row: 2286 Inhibition of human 5HT7 receptor expressed in HEK293 cells by competitive binding assay\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 29.5, mcs nAts: 15\n", "[#7,#6]-[#6]-[#6]-[#7]1-[#6]-[#6]-[#7](-[#6]-[#6]-1)-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1\n", "Row: 2287 Inhibition of rat hippocampus 5HT1A receptor by competitive binding assay\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 29.5, mcs nAts: 15\n", "[#7,#6]-[#6]-[#6]-[#7]1-[#6]-[#6]-[#7](-[#6]-[#6]-1)-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1\n", "Row: 2288 Displacement of [3H]Cl-977 from kappa opioid receptor in guinea pig brain membranes after 2 hrs by scintillation counting analysis\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 30.7, mcs nAts: 26\n", "[#8]=[#6](-[#6]-[#6]1:[#6]:[#6]:[#6](:[#6](:[#6]:1)-[#17])-[#17])-[#7]1-[#6]-[#6]-[#7]-[#6]2-[#6]-1-[#6](-[#6]-[#6]-[#6]-2)-[#7]1-[#6]-[#6]-[#6]-[#6]-1\n", "Row: 2289 Displacement of [3H]DPCPX from human adenosine A1 receptor expressed in CHO cells\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 24.3, mcs nAts: 20\n", "[#8,#7]=,-[#6]1:[#7]:[#6]2:[#6]:[#6]:[#6]:[#6]:[#6]:2:[#6]2:[#6]:1:[#7]:[#7](:[#6]:2)-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1\n", "Row: 2290 Inhibitory concentration for human Monoamine oxidase B\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 20.0, mcs nAts: 10\n", "[#7,#6,#8]-,=[#6,#7](-,=[#6,#8])-[#6,#7]-[#6,#7]1:,-[#6]:,-[#6]:,-[#6,#7]:,-[#6]:,-[#6]:,-1\n", "Row: 2291 Displacement of [3H]-spiperone from human dopamine D2S receptor expressed in HEK293 cell membranes\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 30.3, mcs nAts: 20\n", "[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1-[#7]1-[#6]-[#6]-[#7](-[#6]-[#6]-1)-[#6]-[#6]-[#6]-[#6]-[#7]-[#6](=[#8])-[#6,#7]\n", "Row: 2292 Inhibition of human recombinant PDE10A assessed as hydrolysis of cAMP to AMP using [3H]cAMP substrate by scintillation proximity assay\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 25.0, mcs nAts: 19\n", "[#6]-[#6]1:[#6]:[#6](-[#17,#8]):[#6]:[#6]2:[#6]:1:[#7]:[#6]1:[#7]:[#7]:[#6](:[#6]:1:[#6]:2-[#6](-,=[#8,#6,#9])-[#6,#8])-[#6]\n", "Row: 2293 Displacement of [125I]2-iodomelatonin from human recombinant MT2 receptor expressed in HEK293 cells after 2 hrs by gamma counting\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 17.3, mcs nAts: 8\n", "[#6]-,=[#8,#6]-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1\n", "Row: 2294 Displacement of [3H]OH-DPAT from rat cortex 5HT1A receptor\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 26.3, mcs nAts: 10\n", "[#6,#7]-[#6]-[#6,#7]-[#7,#6,#8]-[#6,#7]1-,:[#6]-,:[#6,#7]-,:[#6]:,-[#6]-,:[#6,#8]-,:1\n", "Row: 2295 Binding affinity to human androgen receptor expressed in monkey COS7 cells by whole cell binding assay\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 24.5, mcs nAts: 20\n", "[#6]-[#6]1:[#6]:[#6](=[#8]):[#7]:[#6]2:[#6]:1:[#6]1:,-[#6,#8]:,-[#8,#6]:,-[#6]3:[#6](:,-[#6]:1:[#6]:[#6]:2):[#6]:[#6]:[#6]:[#6]:3\n", "Row: 2296 Inhibitory concentration against the plasmepsin-2 of Plasmodium falciparum\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 44.5, mcs nAts: 21\n", "[#8]=[#6](-[#6]-[#6](-[#8])-[#6](-[#6]-[#8]-[#6]-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1)-[#7]-[#6](=[#8])-[#6])-[#7]-[#6]\n", "Row: 2297 Displacement of [125I]2-iodomelatonin from human recombinant MT1 receptor expressed in HEK293 cells after 2 hrs by gamma counting\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 17.3, mcs nAts: 8\n", "[#6]-,=[#8,#6]-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1\n", "Row: 2298 Inhibition of human carbonic anhydrase 9 by stopped flow CO2 hydration assay\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 36.3, mcs nAts: 25\n", "[#6]-[#6]1:[#6](-[#6](=[#8])-[#7]):[#6]:[#6](:[#7]:1-[#6]1:[#6]:[#6]:[#6](:[#6]:[#6]:1)-[#16](-[#7])(=[#8])=[#8])-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1\n", "Row: 2299 Inhibition of human carbonic anhydrase 2 by stopped flow CO2 hydration assay\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 36.3, mcs nAts: 25\n", "[#6]-[#6]1:[#6](-[#6](=[#8])-[#7]):[#6]:[#6](:[#7]:1-[#6]1:[#6]:[#6]:[#6](:[#6]:[#6]:1)-[#16](-[#7])(=[#8])=[#8])-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1\n", "Row: 2300 Inhibition of human recombinant CA2 by CO2 hydration based stopped flow assay\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 38.1, mcs nAts: 28\n", "[#7]-[#16](=[#8])(=[#8])-[#6]1:[#6]:[#6]:[#6](:[#6]:[#6]:1)-[#7]1:[#6]:[#6](-[#6]-[#16]-[#6]2-[#8]-[#6](-[#6]-[#8])-[#6](-[#6](-[#6]-2-[#8])-[#8])-[#8]):[#7]:[#7]:1\n", "Row: 2301 Displacement of [3H]vasopressin from human V1a receptor expressed in CHO cells\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 38.3, mcs nAts: 34\n", "[#6]-[#6]-[#7]-[#6](=[#8])-[#6]=[#6]1-[#6]2:[#6]:[#6]:[#6]:[#6]:[#6]:2-[#7](-[#6](=[#8])-[#6]2:[#6]:[#6]:[#6](:[#6]:[#6]:2-[#17])-[#7]2:[#6]:[#6]:[#6](:[#7]:2)-[#6])-[#6]-[#6]-[#6]-1(-[#9])-[#9]\n", "Row: 2302 Displacement of [3H]vasopressin from human V2 receptor expressed in CHO cells\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 38.3, mcs nAts: 34\n", "[#6]-[#6]-[#7]-[#6](=[#8])-[#6]=[#6]1-[#6]2:[#6]:[#6]:[#6]:[#6]:[#6]:2-[#7](-[#6](=[#8])-[#6]2:[#6]:[#6]:[#6](:[#6]:[#6]:2-[#17])-[#7]2:[#6]:[#6]:[#6](:[#7]:2)-[#6])-[#6]-[#6]-[#6]-1(-[#9])-[#9]\n", "Row: 2303 Inhibition of human carbonic anhydrase 1 by stopped flow CO2 hydration assay\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 36.3, mcs nAts: 25\n", "[#6]-[#6]1:[#6](-[#6](=[#8])-[#7]):[#6]:[#6](:[#7]:1-[#6]1:[#6]:[#6]:[#6](:[#6]:[#6]:1)-[#16](-[#7])(=[#8])=[#8])-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1\n", "Row: 2304 Inhibition of human recombinant membrane bound CA7 expressed in Escherichia coli preincubated for 15 mins by stopped-flow CO2 hydration assay\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 44.3, mcs nAts: 19\n", "[#7]-[#6]1:[#6]:[#6]:[#6](:[#6]:[#6]:1)-[#6](=[#8])-[#7]-[#6]1:[#7]:[#7]:[#6](:[#16]:1)-[#16](-[#7])(=[#8])=[#8]\n", "Row: 2305 BindingDB_Patents: Inhibition Assay. The activity of the isolated JAK3 kinase domain was measured by monitoring phosphorylation of a peptide derived from JAK3 (Leu-Pro-Leu-Asp-Lys-Asp-Tyr-Tyr-Val-Val-Arg) fluorescently labeled on the N-terminus with 5-carboxyfluorescein using the Caliper LabChip technology (Caliper Life Sciences, Hopkinton, Mass.). To determine the inhibition constants (Ki) of Examples 1-508, compounds were diluted serially in DMSO and added to 50 uL kinase reactions containing 5 nM purified JAK3 enzyme, 100 mM Hepes pH7.2, 0.015% Brij-35, 1.5 uM peptide substrate, 5 uM ATP, 10 mM MgCl2, 4 mM DTT at a final DMSO concentration of 2%. Reactions were incubated at 22° C. in 384-well polypropylene microtiter plates for 30 minutes and then stopped by addition of 25 uL of an EDTA containing solution (100 mM Hepes pH 7.2, 0.015% Brij-35, 150 mM EDTA), resulting in a final EDTA concentration of 50 mM.\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 29.6, mcs nAts: 24\n", "[#8]=[#6](-[#7]-[#6]1:[#6,#16]:[#6,#7]:[#7]:[#7,#6]:1-[#6,#7]1:,-[#6]:,-[#6]:,-[#6,#7]:,-[#6,#7]:,-[#6]:,-1-,=[#17,#6,#8,#35])-[#6]1:[#6]:[#7]:[#7]2:[#6]:1:[#7]:[#6]:[#6]:[#6]:2\n", "Row: 2306 Inhibition of human CA9 catalytic domain by CO2 hydration method\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 28.7, mcs nAts: 8\n", "[#6,#7,#8]#,-[#6,#7,#8,#16]-[#6]1:,-[#6,#8]:,-[#6,#7,#8]:,-[#6,#16]:,-[#6,#8]:,-[#6]:,-1\n", "Row: 2307 Displacement of [3H]-spiperone from human dopamine D3 receptor expressed in CHO cell membranes\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 30.3, mcs nAts: 20\n", "[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1-[#7]1-[#6]-[#6]-[#7](-[#6]-[#6]-1)-[#6]-[#6]-[#6]-[#6]-[#7]-[#6](=[#8])-[#6,#7]\n", "Row: 2308 Displacement of [3H]LSD from human 5HT7 receptor by liquid scintillation counting\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 26.8, mcs nAts: 13\n", "[#6]1:[#6]:[#6]:[#6]2:[#6](:[#6]:1)-,:[#6,#7]-,:[#7,#6](-,:[#6,#16]-,:2)-[#6]-[#6]-[#6]-[#6,#7]\n", "Row: 2309 BindingDB_Patents: SPA Assay. The Glucagon SPA assay is used to determine the ability of test compounds to block the binding of glucagon-cex to the glucagon receptor. Test compounds are re-suspended and serially diluted in 100% DMSO. 1 ul of test compound at the desired concentrations is spotted into the appropriate wells of 96 well low binding white clear bottom plate (Corning). 1 ul of DMSO is spotted into total binding wells. 1 ul of a known glucagon antagonist at a concentration of 20 uM is added to non specific binding wells. 0.3-0.75 ug of membrane from chem-1 cells stably transfected with the human glucagon receptor (Millipore), 125 pM of [125I]Glucagon-Cex (Perkin Elmer) and 175 ug of WGA PVT SPA beads (Perkin Elmer) are added to all wells of the assay plate. All assay ingredients with the exception of test compounds are re-suspended in the following buffer; 50 mM Hepes pH 7.4; 5 mM MgCl2; 1 mM CaCl; 5% glycerol and 0.2% BSA.\n", " * postgresql://localhost/chembl_23\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Mean nAts 31.7, mcs nAts: 27\n", "[#6]-[#6](-[#7]-[#6]1:[#7,#6]:[#6]2:[#6]:[#6]:[#6]:[#6]:[#6]:2:[#6,#7]:[#6,#7]:1)-[#6]1:[#6]:[#6]:[#6](:[#6]:[#6]:1)-[#6](=[#8])-[#7]-[#6]-[#6]-[#6](=[#8])-[#8]\n", "Row: 2310 BindingDB_Patents: Competition Binding Assay. The rat H3 receptor was cloned and expressed in cells, and competition binding assays carried out, according to methods previously described (see Esbenshade, et al. Journal of Pharmacology and Experimental Therapeutics 2005, 313, 165-175; Esbenshade et al., Biochemical Pharmacology 2004, 68, 933-945; and Krueger, et al. Journal of Pharmacology and Experimental Therapeutics 2005, 314, 271-281). Membranes were prepared from C6 or HEK293 cells, expressing the rat histamine H3 receptor, by homogenization on ice in TE buffer (50 mM Tris-HCl buffer, pH 7.4, containing 5 mM EDTA), 1 mM benzamidine, 2 ug/ml aprotinin, 1 ug/ml leupeptin, and 1 ug/ml pepstatin. The homogenate was centrifuged at 40,000 g for 20 minutes at 4 C. This step was repeated, and the resulting pellet was resuspended in TE buffer. Aliquots were frozen at -70 C. until needed. On the day of assay, membranes were thawed and diluted with TE buffer.\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 15.5, mcs nAts: 8\n", "[#7]-[#6]1:[#6,#7]:[#6]:[#7,#6]:[#6](:[#7]:1)-[#7]\n", "Row: 2311 Displacement of [3H]U69,593 from human recombinant kappa opioid receptor expressed in CHO cell membranes after 2 hrs by liquid scintillation counting analysis\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 25.3, mcs nAts: 16\n", "[#6]-[#7]1-[#6]-[#6]-[#6]2(-[#6](-[#6]-1)-[#8]-[#6]1:[#6]-2:[#6]:[#6](-[#8]):[#6]:[#6]:1)-[#6]\n", "Row: 2312 Inhibition of human cloned CA2 by CO2 hydration method\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 28.7, mcs nAts: 8\n", "[#6,#7,#8]#,-[#6,#7,#8,#16]-[#6]1:,-[#6,#8]:,-[#6,#7,#8]:,-[#6,#16]:,-[#6,#8]:,-[#6]:,-1\n", "Row: 2313 Inhibition of human cloned CA1 by CO2 hydration method\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 28.7, mcs nAts: 8\n", "[#6,#7,#8]#,-[#6,#7,#8,#16]-[#6]1:,-[#6,#8]:,-[#6,#7,#8]:,-[#6,#16]:,-[#6,#8]:,-[#6]:,-1\n", "Row: 2314 Displacement of [3H]-prazosin from human ADRA1A receptor\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 30.3, mcs nAts: 20\n", "[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1-[#7]1-[#6]-[#6]-[#7](-[#6]-[#6]-1)-[#6]-[#6]-[#6]-[#6]-[#7]-[#6](=[#8])-[#6,#7]\n", "Row: 2315 Displacement of [125I]-T3 from human TRalpha expressed in insect cells after 16 to 48 hrs by gamma-counting\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 32.1, mcs nAts: 22\n", "[#6,#8]-,=[#6]-[#6]1:[#6]:[#6](-[#8]-[#6]2:[#6](-[#6,#35]):[#6]:[#6](:[#6]:[#6]:2)-[#7,#6]-[#6](=,-[#8,#7])-[#6]-,=[#6,#8]):[#6]:[#6]:[#6]:1-[#8]\n", "Row: 2316 Displacement of [125I]-T3 from human TRbeta expressed in insect cells after 16 to 48 hrs by gamma-counting\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 32.1, mcs nAts: 22\n", "[#6,#8]-,=[#6]-[#6]1:[#6]:[#6](-[#8]-[#6]2:[#6](-[#6,#35]):[#6]:[#6](:[#6]:[#6]:2)-[#7,#6]-[#6](=,-[#8,#7])-[#6]-,=[#6,#8]):[#6]:[#6]:[#6]:1-[#8]\n", "Row: 2317 Displacement of [3H]-UR-MK114 from Y1R in human SK-N-MC cells\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 75.8, mcs nAts: 40\n", "[#6,#7]-[#6,#8]-[#6,#8]-[#6,#7]-[#6]-[#7]=,-[#6](-,=[#7,#8])-[#7]-[#6]-[#6]-[#6]-[#6](-[#7]-[#6](=[#8])-[#6](-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1)-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1)-[#6](=[#8])-[#7]-[#6]-[#6]1:[#6]:[#6]:[#6](:[#6]:[#6]:1)-[#8,#6]\n", "Row: 2318 Inhibition of JAK2 (unknown origin)\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 22.5, mcs nAts: 13\n", "[#6]1:[#6]:[#6]2:[#6](:[#7]:1):[#7]:[#6]:[#6]1:[#6]:2:[#7](:[#7,#6]:[#7]:1)-[#6]\n", "Row: 2319 Inhibition of JAK1 (unknown origin)\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 22.5, mcs nAts: 13\n", "[#6]1:[#6]:[#6]2:[#6](:[#7]:1):[#7]:[#6]:[#6]1:[#6]:2:[#7](:[#7,#6]:[#7]:1)-[#6]\n", "Row: 2320 Binding affinity to human 5HT2C receptor by radioligand displacement assay\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 26.8, mcs nAts: 13\n", "[#6]1:[#6]:[#6]:[#6]2:[#6](:[#6]:1)-,:[#6,#7]-,:[#7,#6](-,:[#6,#16]-,:2)-[#6]-[#6]-[#6]-[#6,#7]\n", "Row: 2321 Displacement of [3H]raclopride from human D2L receptor expressed in CHO cells after 60 mins by scintillation proximity assay\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 29.0, mcs nAts: 16\n", "[#7,#6]-[#6]1-[#6]-[#6]-[#7](-[#6]-[#6]-1)-[#6]-[#6]-[#8,#6]-[#6,#7]1:,-[#6]:,-[#6]:,-[#6,#8]:,-[#6]:[#6]:,-1\n", "Row: 2322 Displacement of [3H]histamine from human histamine H4 receptor expressed in CHO cells after 90 mins by scintillation counting technique\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 21.6, mcs nAts: 8\n", "[#6,#7,#8]-,=,#[#7,#6,#8]-[#6,#7]1:,-[#6]:,-[#6]:,-[#7,#6]:,-[#6,#7]:,-[#7,#6]:,-1\n", "Row: 2323 Displacement of [3H]dofetilide from hERG expressed in HEK cells\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 25.1, mcs nAts: 22\n", "[#8]-,=[#16](-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1)-[#6]1:,-[#6]:,-[#6]:,-[#6,#7](:,-[#7,#6]:,-[#6,#7]:,-1)-[#6]=,-[#6]-[#6]1:[#6]:[#6]:[#6,#7]:[#6]:[#6]:1\n", "Row: 2324 Displacement of [3H]Ketanserin from human 5HT2A receptor by liquid scintillation counting\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 26.8, mcs nAts: 13\n", "[#6]1:[#6]:[#6]:[#6]2:[#6](:[#6]:1)-,:[#6,#7]-,:[#7,#6](-,:[#6,#16]-,:2)-[#6]-[#6]-[#6]-[#6,#7]\n", "Row: 2325 Displacement of [125I]-DOI from recombinant human 5HT2A receptor\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 27.5, mcs nAts: 19\n", "[#6,#8]-,=[#6](=,-[#8,#6])-[#7]1-[#6]-[#6]-[#7](-[#6]-[#6]-1)-[#6]-[#6]-[#6]1:[#6]:[#6]:[#6](:[#6]:[#6]:1-[#9])-[#9]\n", "Row: 2326 Displacement of [3H]SNAP 7941 from rat MCHR1 expressed in HEK293 cells\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 38.2, mcs nAts: 25\n", "[#6]1:[#6]:[#6]:[#6](:[#6]:[#6]:1-[#6]1-[#6]-[#6]-[#7](-[#6]-[#6]-1)-[#6]-[#6]-[#6]-[#7,#6]-[#6,#7]-[#6,#7]-,=[#6,#7,#8])-[#7]-[#6](=[#8])-[#6](-[#6])-[#6]\n", "Row: 2327 Binding affinity to human oxytocin receptor\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 36.4, mcs nAts: 29\n", "[#6,#8]1:[#7,#6,#8]:[#6](-[#6](-[#6](=[#8])-[#7])-[#7]2-[#6](=[#8])-[#6](-[#6]3-[#6]-[#6]4:[#6]:[#6]:[#6]:[#6]:[#6]:4-[#6]-3)-[#7]-[#6](-[#6]-2-[#6]-[#6]-[#6])=[#8]):[#6,#7,#8,#16]:[#16,#6,#8]:1\n", "Row: 2328 Displacement of [33P]2-MeS-ADP from human cloned P2Y1 receptor expressed in HEK293 cells by SPA analysis\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 41.0, mcs nAts: 29\n", "[#6]-[#6](-[#6])(-[#6])-[#6]-[#7]1-[#6]-[#6]-[#6]2(-[#6]-[#6]-1)-[#6]-[#7](-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1-[#7]-[#6])-[#6]1:[#6]-2:[#6](:[#6]:[#6]:[#6]:1-[#8])-[#17,#6,#9]\n", "Row: 2329 Inhibitory activity against membrane bound tumor associated human carbonic anhydrase IX\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 19.4, mcs nAts: 5\n", "[#8,#6,#7]-[#16,#6](-,=[#7,#6,#8])(=,-[#8,#6])=,-[#8,#6]\n", "Row: 2330 Binding affinity to human NK3 receptor expressed in CHO cells\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 30.3, mcs nAts: 28\n", "[#6,#7,#8,#9]-[#6]-[#6](-[#7]-[#6](=[#8])-[#6]1:[#6]:[#6](-[#6]2:[#6]:[#6]:[#6]:[#6]:[#6]:2):[#7]:[#6]2:[#6]:1:[#6]:[#6]:[#6]:[#6]:2)-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1\n", "Row: 2331 Displacement of FITC-AHx-GQVGRQLAIIGDDINR-NH2 from Bcl-xL (unknown origin) after 1 hr by fluorescence polarization anisotropy assay\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 21.8, mcs nAts: 7\n", "[#8,#6]=,-[#6,#16]-[#6]1:[#6,#7,#8,#16]:[#6,#7,#16]:[#6,#7]:[#16,#6,#7,#8]:1\n", "Row: 2332 Displacement of [3H]SR141716A form human CB1 receptor expressed in HEK293 cells after 60 mins by beta counting\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 30.3, mcs nAts: 25\n", "[#7,#8]-,=[#6]1-[#6,#7]-[#6]-[#6]-[#8]-[#6]2:[#6]-1:[#7]:[#7](:[#6]:2-[#6]1:[#6]:[#6]:[#6](:[#6]:[#6]:1)-[#17])-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1-[#17]\n", "Row: 2333 Displacement of [3H]CP-55940 from human CB2 receptor expressed in CHO-K1 cells after 60 mins by beta counting\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 30.3, mcs nAts: 25\n", "[#7,#8]-,=[#6]1-[#6,#7]-[#6]-[#6]-[#8]-[#6]2:[#6]-1:[#7]:[#7](:[#6]:2-[#6]1:[#6]:[#6]:[#6](:[#6]:[#6]:1)-[#17])-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1-[#17]\n", "Row: 2334 Displacement of [3H]PGE2 from mouse EP3 receptor expressed in CHO cells after 60 mins by scintillation counter\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 39.5, mcs nAts: 22\n", "[#8,#7]=,-[#6,#16](-,=[#8,#7])-[#6,#7]-[#6]-[#6]1:[#6]:[#6]:[#6](:[#6]:[#6]:1-[#8]-[#6,#7]-[#6]-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1)-[#6]-[#7,#8]\n", "Row: 2335 Displacement of [3H]spiperone from human dopamine D2 receptor expressed in CHO cells\n", " * postgresql://localhost/chembl_23\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Mean nAts 25.1, mcs nAts: 22\n", "[#8]-,=[#16](-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1)-[#6]1:,-[#6]:,-[#6]:,-[#6,#7](:,-[#7,#6]:,-[#6,#7]:,-1)-[#6]=,-[#6]-[#6]1:[#6]:[#6]:[#6,#7]:[#6]:[#6]:1\n", "Row: 2336 Inhibition of HIV-1 protease in vitro.\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 50.6, mcs nAts: 24\n", "[#6]-[#6](-[#6])-[#6](-[#6](=[#8])-[#7]-[#6])-[#6](-[#8])-[#6](-[#8])-[#6](-[#6]-[#6]1-[#6]-[#6]-[#6]-[#6]-[#6]-1)-[#7]-[#6](=,-[#8,#6])-,=[#6,#8]\n", "Row: 2337 Displacement of [125I]-His9-ghrelin from human GHS-R1a transfected in pig LLC PK-1 cell membranes after 60 mins by gamma counting method\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 45.2, mcs nAts: 33\n", "[#6]-[#8]-[#6]1:[#6]:[#6]:[#6](:[#6]:[#6]:1)-[#6]-[#7]1:[#6](-[#6](-[#7,#6])-[#6,#7]-[#6]):[#7]:[#7]:[#6]:1-[#6](-[#6]-[#6]1:[#6]:[#7]:[#6]2:[#6]:1:[#6]:[#6]:[#6]:[#6]:2)-[#7]-[#6](=[#8])-[#6]\n", "Row: 2338 Displacement of [3H]YM-09151-2 from rat striatum D2 receptor\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 26.3, mcs nAts: 10\n", "[#6,#7]-[#6]-[#6,#7]-[#7,#6,#8]-[#6,#7]1-,:[#6]-,:[#6,#7]-,:[#6]:,-[#6]-,:[#6,#8]-,:1\n", "Row: 2339 Displacement of [3H]mesurgeline from human 5HT2C receptor expressed in CHO cells\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 25.1, mcs nAts: 22\n", "[#8]-,=[#16](-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1)-[#6]1:,-[#6]:,-[#6]:,-[#6,#7](:,-[#7,#6]:,-[#6,#7]:,-1)-[#6]=,-[#6]-[#6]1:[#6]:[#6]:[#6,#7]:[#6]:[#6]:1\n", "Row: 2340 Displacement of [3H]WIN-35428 from DAT in rat caudate-putamen by scintillation counting\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 28.3, mcs nAts: 22\n", "[#6]-[#7](-[#6])-[#6]-[#6]-[#6]-[#6]1(-[#6]2:[#6]:[#6]:[#6](:[#6]:[#6]:2)-[#9])-[#8]-[#6]-[#6]2:[#6]-1:[#6]:[#6]:[#6]:[#6]:2\n", "Row: 2341 Binding affinity to human D4 receptor transfected in human HEK293 cells by gamma-counting\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 38.5, mcs nAts: 27\n", "[#6]-[#8]-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1-[#7]1-[#6]-[#6]-[#7](-[#6]-[#6]-1)-[#6]-[#6]-,=[#6]-[#6]-[#7]-[#6](=[#8])-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1\n", "Row: 2342 Displacement of [3H]N-methyl-scopolamine from human muscarinic M2 receptor expressed in CHOK1 cells\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 32.8, mcs nAts: 25\n", "[#6]-[#7]1(-[#6])-[#6]-[#6]-[#6](-[#6]-1)-[#7]1-[#6]-[#6](-[#6]2:[#6]:[#6]:[#6]:[#6]:[#6]:2)(-[#6]2:[#6]:[#6]:[#6]:[#6]:[#6]:2)-[#7]-[#6]-1=[#8]\n", "Row: 2343 Displacement of [125I]AB-MECA from human adenosine A3 receptor expressed in CHO cells\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 32.3, mcs nAts: 24\n", "[#6,#8]-,=[#6](=,-[#8,#6])-[#7]-[#6]1:[#7]:[#6]2:[#6]:[#6]:[#6]:[#6]:[#6]:2:[#7]2:[#6]:1:[#7]:[#7](:[#6]:2=[#8])-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1\n", "Row: 2344 Inhibition of specific binding of [3H]BK to bradykinin B2 receptors of guinea pig ileum (GPI)\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 38.9, mcs nAts: 27\n", "[#6]-[#6]=,-[#6,#7,#8]-[#6](=[#8])-[#7]-[#6]-[#6](=[#8])-[#7](-[#6])-[#6]1:[#6]:[#6]:[#6](:[#6](:[#6]:1-[#17,#6,#8,#16])-[#6]-[#8]-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1)-[#17,#6,#8,#16]\n", "Row: 2345 Displacement of [3H]histamine from human histamine H4 receptor transfected in SK-N-MC cells\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 23.7, mcs nAts: 21\n", "[#6]1:[#6]:[#6]:[#6]2:[#6](:[#6]:1)-[#7,#6]=[#6](-[#7]1-[#6]-[#6]-[#8,#6,#7]-[#6]-[#6]-1)-[#6]1:[#6](-[#7,#6,#8,#16]-2):[#6]:[#6]:[#6]:[#6]:1\n", "Row: 2346 Displacement of [3H]-PGE2 from mouse EP3 receptor expressed in CHO cells after 60 mins by scintillation counting\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 28.8, mcs nAts: 15\n", "[#6]-[#6]-[#6](-[#8])-[#6]=[#6]-[#6]1-[#6]-[#6]-[#6](-[#7,#6]-1-[#6]-[#6]-,=[#6,#16])=[#8]\n", "Row: 2347 Displacement of [125I]AB-MECA from human recombinant adenosine receptor-3 expressed in CHO cell membrane after 60 mins by gamma-counting\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 25.5, mcs nAts: 20\n", "[#6]-[#7]-[#6]1:[#7]:[#6](-[#17]):[#7]:[#6]2:[#6]:1:[#7]:[#6]:[#7]:2-[#6]1-[#6](-[#8])-[#6](-[#8])-[#6]2-[#6]-1-[#6]-2\n", "Row: 2348 Displacement of [3H]5-CT from human 5HT7 receptor expressed in HEK293 cells after 1 hr by liquid scintillation counting\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 28.6, mcs nAts: 14\n", "[#8]-,=[#6](-[#6]-[#6]-[#7])-[#6]1:[#6]:[#16]:[#6]2:[#6]:1:[#6]:[#6]:[#6]:[#6]:2\n", "Row: 2349 Displacement of [3H]AVP from human vasopressin V1b receptor expressed in CHO cells by scintillation counting\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 44.4, mcs nAts: 36\n", "[#6]-[#8]-[#6]1:[#6]:[#6]:[#6](:[#6]:[#6]:1)-[#16](=[#8])(=[#8])-[#7]1-[#6](=[#8])-[#6](-[#6]2:[#6,#7]:[#6,#7]:[#6]:[#7,#6]:[#6]:2-[#8]-[#6])(-[#7]2-[#6]-[#6]-[#6]-[#6]-2-[#6])-[#6]2:[#6]-1:[#6]:[#6]:[#6](:[#6]:2)-[#17]\n", "Row: 2350 Inhibition of SERT in rat cerebral cortex assessed as [3H]serotonin accumulation\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 28.4, mcs nAts: 15\n", "[#6]1:[#6]:[#6]:[#6](:[#6]:[#6]:1)-[#6](-[#6,#8])-[#6]1-,:[#6,#8]-,:[#6]-,:[#6](-,:[#6]-,:[#8,#6]-,:1)-[#7,#9]\n", "Row: 2351 Inhibition of DAT in rat striatum assessed as [3H]dopamine accumulation\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 28.4, mcs nAts: 15\n", "[#6]1:[#6]:[#6]:[#6](:[#6]:[#6]:1)-[#6](-[#6,#8])-[#6]1-,:[#6,#8]-,:[#6]-,:[#6](-,:[#6]-,:[#8,#6]-,:1)-[#7,#9]\n", "Row: 2352 Displacement of I125-somatostatin-14 from human SST2 expressed in CHO cells after 3 hrs by scintillation counting\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 34.8, mcs nAts: 24\n", "[#6]-[#6]1:[#6]:[#6](-[#6]):[#6]:[#6](:[#6]:1)-[#6]1:,-[#6]:,-[#7]:,-[#6]2:[#6](:,-[#6]:,=1-[#8]-[#6]-[#6]-[#6]):[#6]:[#6](:[#6](:[#6]:2)-[#17])-[#6]\n", "Row: 2353 Displacement of [3H]MPEP from mGluR5 in Sprague-Dawley rat brain membrane after 60 mins by liquid scintillation counting\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 18.1, mcs nAts: 17\n", "[#6,#8,#9]-[#6]1:[#6]:[#6,#7]:[#6]:[#6](:[#7,#6]:1)-[#6]#[#6]-[#6]1:[#6]:[#6,#7]:[#6]:[#6](:[#6,#7]:1)-[#6,#8]#,-[#7,#6,#8]\n", "Row: 2354 Displacement of [3H]-dexamethasone from human full length GR expressed in insect Sf21 cells\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 34.5, mcs nAts: 29\n", "[#6]-[#6]12-[#6]-[#6]3:[#6]:[#7]:[#7](:[#6]:3-[#6]=[#6]-1-[#6]-[#6]-[#6]-2(-[#8])-[#6]-[#6]-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1)-[#6]1:[#6]:[#6]:[#6](:[#6]:[#6]:1)-[#9]\n", "Row: 2355 Inhibition of human recombinant MAOA expressed in insect cells by fluorescence assay\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 16.8, mcs nAts: 7\n", "[#7,#6,#8]-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1\n", "Row: 2356 Displacement of [3H]-MPEP from rat mGluR5 expressed in HEK293 cells\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 29.5, mcs nAts: 28\n", "[#8]=[#6](-[#6]1:[#6]:[#6]:[#6]:[#6](:[#6]:1)-[#6]#[#6]-[#6]1:[#6]:[#6]:[#6]:[#6]:[#7,#6]:1)-[#7]1-[#6]-[#6]-[#7](-[#6]-[#6]-1)-[#6]1:[#6]:[#6,#7]:[#6,#7]:[#6]:[#7]:1\n", "Row: 2357 Inhibition of human recombinant CA9 catalytic domain by stopped-flow CO2 hydration method\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 18.0, mcs nAts: 15\n", "[#6,#8]-,=[#6](=,-[#8,#6])-[#6]1:[#6](-[#8]):[#6]:[#6]:[#6](:[#6]:1):[#6]:[#6]:[#6](=[#8]):[#8]\n", "Row: 2358 Inhibition of full length human CA2 cytosolic isoform by stopped-flow CO2 hydration method\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 18.0, mcs nAts: 15\n", "[#6,#8]-,=[#6](=,-[#8,#6])-[#6]1:[#6]:[#6](:[#6]:[#6]:[#6](=[#8]):[#8]):[#6]:[#6]:[#6]:1-[#8]\n", "Row: 2359 Inhibition of full length human CA1 cytosolic isoform by stopped-flow CO2 hydration method\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 18.0, mcs nAts: 15\n", "[#6,#8]-,=[#6](=,-[#8,#6])-[#6]1:[#6]:[#6](:[#6]:[#6]:[#6](=[#8]):[#8]):[#6]:[#6]:[#6]:1-[#8]\n", "Row: 2360 Displacement of [3H]LSD from human 5HT6 receptor in HEK293 cell membrane incubated for 1 hr by scintillation counting method\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 31.8, mcs nAts: 21\n", "[#6,#8]-,=[#16](=[#8])(=,-[#8,#6])-[#7]1:[#6]:[#6]:[#6]2:[#6]:1:[#7]:[#6](:[#6]:[#6]:2-[#6])-[#7]1-[#6]-[#6]-[#7](-[#6]-[#6]-1)-[#6]\n", "Row: 2361 Displacement of [3H]NMSP from human dopamine D2S receptor expressed in CHO cell membrane incubated for 1 hr by scintillation counting method\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 31.8, mcs nAts: 21\n", "[#6,#8]-,=[#16](=[#8])(=,-[#8,#6])-[#7]1:[#6]:[#6]:[#6]2:[#6]:1:[#7]:[#6](:[#6]:[#6]:2-[#6])-[#7]1-[#6]-[#6]-[#7](-[#6]-[#6]-1)-[#6]\n", "Row: 2362 Displacement of [125I]I-AB-MECA from human A3 adenosine receptor expressed in CHO cells after 60 min Packard Cobra 2 gamma-counter\n", " * postgresql://localhost/chembl_23\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Mean nAts 27.0, mcs nAts: 20\n", "[#6]-[#6]-[#7]-[#6]1:[#7]:[#6]:[#7]:[#6]2:[#6]:1:[#7]:[#6]:[#7]:2-[#6]1-[#6](-[#8])-[#6](-[#8])-[#6]2-[#6]-1-[#6]-2\n", "Row: 2363 Displacement of [3H]-MLA from human alpha7 nAChR expressed in human SH-SY5Y cells\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 19.5, mcs nAts: 8\n", "[#6,#8]-,=[#6,#7]-[#6]1:,-[#6]:,-[#6]:,-[#6]:,-[#7,#6]:,-[#6]:,-1\n", "Row: 2364 Displacement of [3H]epibatidine from Lymnaea stagnalis His6-AChBP expressed in Bac-to-Bac baculovirus expression system\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 19.5, mcs nAts: 8\n", "[#6,#8]-,=[#6,#7]-[#6]1:,-[#6]:,-[#6]:,-[#6]:,-[#7,#6]:,-[#6]:,-1\n", "Row: 2365 Inhibition of human N-terminal polyHis-tagged PI3K p110alpha expressed in baculovirus infected Hi5 cells using Phosphatidylinositol-4,5-bisphosphate as substrate after 20 mins by AlphaScreen assay\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 30.7, mcs nAts: 27\n", "[#6]-[#6]1:[#7]:[#6](-[#7]):[#7]:[#6](:[#7]:1)-[#6]1:[#6]:[#6]:[#6]:[#7]:[#6]:1-[#7]-[#6]1:[#6]:[#7]:[#6](:[#6](:[#6]:1)-[#7]-[#16](-,=[#6,#7,#8])(=[#8])=,-[#8,#6,#7])-[#17,#6,#8]\n", "Row: 2366 Inhibition of human full length carbonic anhydrase 14 catalytic domain preincubated for 15 mins by stopped flow CO2 hydration assay\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 17.6, mcs nAts: 8\n", "[#6,#7]-,#[#16,#6,#7,#8]-[#6]1:[#6]:[#6,#7]:[#7,#6]:[#6,#7]:[#6]:1\n", "Row: 2367 Displacement of [3H]U69,593 from human kappa opioid receptor expressed in CHO cells after 60 mins by scintillation counting\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 36.7, mcs nAts: 30\n", "[#6]-[#6]1-[#6]2-[#6]-[#6]3:[#6](-[#6]-1(-[#6])-[#6]-[#6]-[#7]-2-[#6]-[#6]1-[#6]-[#6]-1):[#6]:[#6](:[#6]:[#6]:3)-[#6](=[#8])-[#7]-[#6]-[#6]-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1\n", "Row: 2368 Displacement of [3H]Naltrindole from human delta opioid receptor expressed in CHO cells after 3 hrs by scintillation counting\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 36.7, mcs nAts: 30\n", "[#6]-[#6]1-[#6]2-[#6]-[#6]3:[#6](-[#6]-1(-[#6])-[#6]-[#6]-[#7]-2-[#6]-[#6]1-[#6]-[#6]-1):[#6]:[#6](:[#6]:[#6]:3)-[#6](=[#8])-[#7]-[#6]-[#6]-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1\n", "Row: 2369 Displacement of [3H]DAMGO from human mu opioid receptor expressed in CHO cells after 60 mins by scintillation counting\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 36.7, mcs nAts: 30\n", "[#6]-[#6]1-[#6]2-[#6]-[#6]3:[#6](-[#6]-1(-[#6])-[#6]-[#6]-[#7]-2-[#6]-[#6]1-[#6]-[#6]-1):[#6]:[#6](:[#6]:[#6]:3)-[#6](=[#8])-[#7]-[#6]-[#6]-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1\n", "Row: 2370 Displacement of [3H]-pyrilamine from human histamine H1 receptor expressed in recombinant CHOK1 cells after 1 hr\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 30.9, mcs nAts: 20\n", "[#6,#7,#8,#16]-[#8,#6,#7,#16]-[#6]-[#6]-[#6,#7]-[#7,#6]1-[#6]-[#6]-[#6,#7](-[#6]-[#6]-1)-[#8,#6]-[#6]1:[#6]:[#6]:[#6](:[#6](:[#6]:1)-[#17])-[#17]\n", "Row: 2371 Displacement of [125I]ABA from human recombinant adenosine A3 receptor by rapid filtration technique\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 38.0, mcs nAts: 20\n", "[#6]-[#7]-[#6]1-,:[#7]-,:[#6]=,:[#7]-,:[#6]2:[#6]-,:1:[#7]:[#6]:[#7]:2-[#6]1-[#8]-[#6](-[#6]-[#8,#7])-[#6](-[#6]-1-[#8])-[#8]\n", "Row: 2372 Displacement of [125I]ABA from human recombinant adenosine A1 receptor by rapid filtration technique\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 38.0, mcs nAts: 20\n", "[#6]-[#7]-[#6]1-,:[#7]-,:[#6]=,:[#7]-,:[#6]2:[#6]-,:1:[#7]:[#6]:[#7]:2-[#6]1-[#8]-[#6](-[#6]-[#8,#7])-[#6](-[#6]-1-[#8])-[#8]\n", "Row: 2373 Binding affinity to Toxoplasma gondii adenosine kinase after 20 mins by radioactivity method\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 28.0, mcs nAts: 26\n", "[#8]-[#6]-[#6]1-[#6,#8]-[#6](-[#7]2:[#6]:[#7]:[#6]3:[#6]:2:[#7]:[#6]:[#7]:[#6]:3-[#16]-[#6]-[#6]2:[#6]:[#6]:[#6]:[#6]:[#6]:2)-[#6](-[#6]-1-[#8])-[#8]\n", "Row: 2374 Displacement of FITC-AHx-GQVGRQLAIIGDDINR-NH2 from Bcl2 (unknown origin) after 1 hr by fluorescence polarization anisotropy assay\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 22.3, mcs nAts: 7\n", "[#6,#8,#17]-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1\n", "Row: 2375 Displacement of [3H]melatonin from human melatonin MT2 receptor expressed in CHO cells after 60 mins by scintillation counting\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 21.8, mcs nAts: 15\n", "[#6]-[#8]-[#6]1:[#6]:[#6]:[#6]:[#6](:[#6]:1)-[#6]-[#6]-[#6]-[#7]-[#6](-,=[#6,#8])=,-[#8,#6]\n", "Row: 2376 Displacement of [3H]iodoproxyfan from human histamine H3 receptor expressed in CHO-K1 cells\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 18.3, mcs nAts: 14\n", "[#6]-[#6]-[#7]-[#6](=[#8,#7])-[#8,#16]-[#6]-[#6]-[#6]-[#6]1:[#6]:[#7]:[#6]:[#7]:1\n", "Row: 2377 Displacement of [3H]ZM241385 from human adenosine A2A receptor expressed in human HeLa cells after 1 hr by scintillation proximity assay\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 23.0, mcs nAts: 14\n", "[#8]=[#6](-[#7]-[#6]1:[#6]:[#6]:[#6](:[#6](:[#7]:1)-[#6,#7])-[#35,#6])-[#6]1-[#6]-[#6]-1\n", "Row: 2378 Inhibition of human recombinant wild type CA2 by stopped-flow CO2 hydration method\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 5.0, mcs nAts: 0\n", "\n", "Row: 2379 Inhibition of human recombinant wild type CA1 by stopped-flow CO2 hydration method\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 5.0, mcs nAts: 0\n", "\n", "Row: 2380 Displacement of [3H]SP1-7 from NK1 receptor in Sprague-Dawley rat spinal cord membrane\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 28.9, mcs nAts: 14\n", "[#6,#7]-[#6](-,=[#7,#6,#8])-[#6,#7]-[#7,#6]-[#6](-[#6]-[#6]1:,-[#6]:,-[#6]:,-[#6]:,-[#6]:,-[#6]:,-1)-,=[#6,#7,#8]\n", "Row: 2381 Inhibition of [3H]5HT uptake at SERT in rat brain hippocampal synaptosomes by liquid scintillation spectrophotometry\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 32.9, mcs nAts: 25\n", "[#6]-[#7]1-[#6](-[#6]-[#6](=,-[#8])-[#6]2:[#6]:[#6]:[#6]:[#6]:[#6]:2)-[#6]-[#6]-[#6]-[#6]-1-[#6]-[#6](-,=[#8])-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1\n", "Row: 2382 Inhibition of [3H]DA uptake at DAT in rat brain striatal synaptosomes by liquid scintillation spectrophotometry\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 33.4, mcs nAts: 25\n", "[#6]-[#7]1-[#6](-[#6]-[#6](=,-[#8])-[#6]2:[#6]:[#6]:[#6]:[#6]:[#6]:2)-[#6]-[#6]-[#6]-[#6]-1-[#6]-[#6](-,=[#8])-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1\n", "Row: 2383 Inhibition of glutamate carboxypeptidase 2 in human LNCaP cells by fluorescence based NAALADase assay\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 24.9, mcs nAts: 17\n", "[#6]-[#6](-[#7]-[#6](=[#8])-[#7]-[#6](-[#6]-[#6](-[#6])-[#6])-[#6](=,-[#8])-,=[#8])-[#6](=[#8])-[#8]\n", "Row: 2384 Displacement of [3H](+)-pentazocine from sigma 1 receptor in guinea pig brain after 180 mins by scintillation counting\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 24.1, mcs nAts: 15\n", "[#6]-[#6]-[#7](-[#6]-[#6]-[#6]1-,:[#8,#6]-,:[#6]-,:[#6]-,:[#6]:[#6]-,:1:,-[#6]:,-[#6])-[#6]-[#6]\n", "Row: 2385 Inhibition of Mycobacterium tuberculosis recombinant carbonic anhydrase Rv3273 by stopped flow CO2 hydration assay\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 20.0, mcs nAts: 8\n", "[#6,#7,#8]-,=[#7,#6,#16]-[#6]1:,-[#6]:,-[#6,#7]:,-[#6,#16]:,-[#6]:[#6]:,-1\n", "Row: 2386 Inhibition of Mycobacterium tuberculosis recombinant carbonic anhydrase Rv1284 by stopped flow CO2 hydration assay\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 20.0, mcs nAts: 8\n", "[#6,#7,#8]-,=[#7,#6,#16]-[#6]1:,-[#6]:,-[#6,#7]:,-[#6,#16]:,-[#6]:[#6]:,-1\n", "Row: 2387 Displacement of [125I]-iodoproxyfan from histamine H3 receptor in mouse brain cortex after 1 hr by gamma counting analysis\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 22.4, mcs nAts: 17\n", "[#6]-[#6]1:[#6]:[#6]:[#6](:[#6]:[#6]:1)-[#8]-[#6]-[#6]-[#6]-[#7]1-[#6]-[#6]-[#6]-[#6]-[#6]-1\n", "Row: 2388 Displacement of [125I]-iodoproxyfan from human recombinant histamine H3 receptor expressed in HEK293 cells after 1 hr by gamma counting analysis\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 22.4, mcs nAts: 17\n", "[#6]-[#6]1:[#6]:[#6]:[#6](:[#6]:[#6]:1)-[#8]-[#6]-[#6]-[#6]-[#7]1-[#6]-[#6]-[#6]-[#6]-[#6]-1\n", "Row: 2389 Displacement of [3H]pyrilamine from human histamine H1 receptor expressed in CHO Flp-In cells by liquid scintillation assay\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 29.8, mcs nAts: 24\n", "[#7]-[#6]1-[#6]-[#6]-[#7](-[#6]-[#6]-1)-[#6]1:[#7]:[#6]2:[#6]:[#6]:[#6]:[#6]:[#6]:2:[#7]:1-[#6]-[#6]1:[#6]:[#6]:[#6](:[#6]:[#6]:1)-[#9,#6,#8]\n", "Row: 2390 Inhibition of human recombinant Abl\n", " * postgresql://localhost/chembl_23\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Mean nAts 29.2, mcs nAts: 22\n", "[#6]-[#16]-[#6]1:[#7]:[#6](-[#7]-[#6]):[#6]2:[#6](:[#7]:1):[#7](:[#7]:[#6]:2)-[#6]-[#6](-[#17])-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1\n", "Row: 2391 Inhibition of human recombinant Src\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 29.2, mcs nAts: 22\n", "[#6]-[#16]-[#6]1:[#7]:[#6](-[#7]-[#6]):[#6]2:[#6](:[#7]:1):[#7](:[#7]:[#6]:2)-[#6]-[#6](-[#17])-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1\n", "Row: 2392 Inhibition of rabbit muscle glycogen phosphorylase b\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 22.8, mcs nAts: 12\n", "[#6,#8]-[#7,#6]-[#6]1-[#8]-[#6](-[#6])-[#6](-[#6](-[#6]-1-[#8])-[#8])-[#8]\n", "Row: 2393 Displacement of [33P]2-Mes-ADP from human recombinant P2Y1 receptor expressed in human U20S cells\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 30.2, mcs nAts: 22\n", "[#6]-[#6]-[#6]1-[#6]-[#6](-[#7]-[#6]2:[#6]:[#6]:[#6]:[#6]:[#6]:2)-[#6]2:[#6](-[#7]-1-[#6](=[#8])-[#6,#7]):[#6]:[#6]:[#6]:[#6]:2\n", "Row: 2394 Inhibition of [3H]5HT uptake at SERT in rat cortical synaptosomes\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 31.9, mcs nAts: 27\n", "[#6]-[#6]1:[#6]:[#6]:[#6]2:[#6](:[#7]:1):[#6]:[#6]:[#6]:[#6]:2-[#8]-[#6]-[#6]-[#7]1-[#6]-[#6]-[#7,#6](-[#6]-[#6]-1)-[#6]-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1\n", "Row: 2395 Displacement of [3H]5HT from human recombinant 5HT1D receptor\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 31.9, mcs nAts: 27\n", "[#6]-[#6]1:[#6]:[#6]:[#6]2:[#6](:[#7]:1):[#6]:[#6]:[#6]:[#6]:2-[#8]-[#6]-[#6]-[#7]1-[#6]-[#6]-[#7,#6](-[#6]-[#6]-1)-[#6]-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1\n", "Row: 2396 Displacement of [3H]5HT from human recombinant 5HT1B receptor\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 31.9, mcs nAts: 27\n", "[#6]-[#6]1:[#6]:[#6]:[#6]2:[#6](:[#7]:1):[#6]:[#6]:[#6]:[#6]:2-[#8]-[#6]-[#6]-[#7]1-[#6]-[#6]-[#7,#6](-[#6]-[#6]-1)-[#6]-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1\n", "Row: 2397 Displacement of [3H]WAY100635 from human recombinant 5HT1A receptor\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 30.5, mcs nAts: 16\n", "[#6]1:[#6](-[#8,#7]-[#6]-[#6]-[#7]2-[#6]-[#6]-[#7,#6](-[#6]-[#6]-2)-[#6]):[#6,#7]:[#6]:[#6]:[#6]:1\n", "Row: 2398 Inhibition of human carbonic anhydrase 7 by CO2 hydration assay\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 20.5, mcs nAts: 13\n", "[#7,#8]-,=[#16](=[#8])(=,-[#8])-[#6]1:[#6]:[#6]:[#6]2:[#6](:[#6]:1)-[#6]-[#6]-[#6]-2\n", "Row: 2399 Inhibition of human carbonic anhydrase 14 by CO2 hydration assay\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 20.5, mcs nAts: 13\n", "[#7,#8]-,=[#16](=[#8])(=,-[#8])-[#6]1:[#6]:[#6]:[#6]2:[#6](:[#6]:1)-[#6]-[#6]-[#6]-2\n", "Row: 2400 Inhibition of human carbonic anhydrase 12 by CO2 hydration assay\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 20.5, mcs nAts: 13\n", "[#7,#8]-,=[#16](=[#8])(=,-[#8])-[#6]1:[#6]:[#6]:[#6]2:[#6](:[#6]:1)-[#6]-[#6]-[#6]-2\n", "Row: 2401 Inhibition of MAOA in rat brain mitochondria\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 18.0, mcs nAts: 10\n", "[#6]1:[#6]:[#6]:[#6](:[#6]:[#6]:1)-[#6]-[#6](-[#6,#7])-[#7,#6]\n", "Row: 2402 Displacement of [3H]LSD from human cloned 5HT6 receptor expressed in human HeLa cells\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 28.8, mcs nAts: 24\n", "[#8]=[#16](=[#8])(-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1)-[#6]1:[#6]:[#6]:[#6]:[#6]2:[#6]:1:[#7,#8]:[#6](:[#8,#7]:2)-[#7]1-[#6]-[#6]-[#7]-[#6]-[#6]-1\n", "Row: 2403 Displacement of [3H]8-OH-DPAT from human 5HT1A receptor\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 27.5, mcs nAts: 21\n", "[#6]1:[#6]:[#6](-[#6]2-[#6]-[#6]-[#6]-[#7](-[#6]-2)-[#6]-[#6]-[#6]2:,-[#6]:,-[#16,#6,#7]:[#6,#7,#16]:,-[#7,#6]:,-2):[#7]:[#6](:[#7]:1)-[#7]-[#6]\n", "Row: 2404 Displacement of 3H]5HT from human 5HT1D receptor expressed in CHO cells\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 34.0, mcs nAts: 28\n", "[#6]-[#6]1:[#6]:[#6]:[#6]2:[#6](:[#7]:1):[#6]:[#6]:[#6]:[#6]:2-[#8]-[#6]-[#6]-[#7]1-[#6]-[#6]-[#6](-[#6]-[#6]-1)-[#6]-[#6]1:[#6]:[#6]:[#6]:[#6](:[#6]:1)-[#7,#6]\n", "Row: 2405 Displacement of [3H]5HT from human 5HT1B receptor expressed in CHO cells\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 34.0, mcs nAts: 28\n", "[#6]-[#6]1:[#6]:[#6]:[#6]2:[#6](:[#7]:1):[#6]:[#6]:[#6]:[#6]:2-[#8]-[#6]-[#6]-[#7]1-[#6]-[#6]-[#6](-[#6]-[#6]-1)-[#6]-[#6]1:[#6]:[#6]:[#6]:[#6](:[#6]:1)-[#7,#6]\n", "Row: 2406 Displacement of [125I]WAY100635 from human 5HT1A receptor expressed in CHO cells\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 34.0, mcs nAts: 28\n", "[#6]-[#6]1:[#6]:[#6]:[#6]2:[#6](:[#7]:1):[#6]:[#6]:[#6]:[#6]:2-[#8]-[#6]-[#6]-[#7]1-[#6]-[#6]-[#6](-[#6]-[#6]-1)-[#6]-[#6]1:[#6]:[#6]:[#6]:[#6](:[#6]:1)-[#7,#6]\n", "Row: 2407 Displacement of [125I]-CCL2 from human CCR2 receptor expressed in human U2OS cell membranes\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 36.8, mcs nAts: 28\n", "[#6]-[#6](-[#6])-[#6]1(-[#6](=[#8])-[#7]-[#6]-[#6]2:[#6]:[#6](-[#6](-[#9])(-[#9])-[#9]):[#6]:[#6](:[#6]:2)-[#6](-[#9])(-[#9])-[#9])-[#6]-[#6]-[#6](-[#6]-1)-[#7]-[#6]\n", "Row: 2408 Displacement of [3H]CP-55940 from human recombinant CB2 receptor expressed in HEK293 cells by scintillation counting\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 35.4, mcs nAts: 28\n", "[#6]-[#6]-[#6]-[#6]-[#6]-[#6]-[#6]-[#6]-[#6]-[#6]-[#6]-[#6](-[#6]-[#6]1-[#8]-[#6](-[#6]-1-[#6]-[#6]-[#6]-[#6]-[#6]-[#6])=[#8])-[#8]-[#6](=[#8])-[#6]\n", "Row: 2409 Displacement of [3H]CP-55940 from human recombinant CB1 receptor expressed in HEK293 cells by scintillation counting\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 35.4, mcs nAts: 28\n", "[#6]-[#6]-[#6]-[#6]-[#6]-[#6]-[#6]-[#6]-[#6]-[#6]-[#6]-[#6](-[#6]-[#6]1-[#8]-[#6](-[#6]-1-[#6]-[#6]-[#6]-[#6]-[#6]-[#6])=[#8])-[#8]-[#6](=[#8])-[#6]\n", "Row: 2410 Inhibition of human cathepsin D\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 57.4, mcs nAts: 24\n", "[#6]-[#7,#16]-[#6,#7](=,-[#8,#6])-[#6]1:[#6]:[#6](-[#6](=[#8])-[#7]-[#6](-[#6]-[#8]-[#6])-[#6](-[#8])-[#6]-[#6](=[#8])-[#7]-[#6]):[#6]:[#6]:[#6]:1\n", "Row: 2411 Inhibition of dopamine D3 receptor (unknown origin) by PDSP assay\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 21.7, mcs nAts: 12\n", "[#7,#8]-[#6]1-[#6]2-[#6]3-[#6]-[#6]4-[#6]-1-[#6]1-[#6]-2-[#6]-[#6]-3-[#6]-1-4\n", "Row: 2412 Displacement of [3H]diprenorphine from human delta opioid receptor in CHO cells\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 27.0, mcs nAts: 21\n", "[#6]1=,-[#6](-[#6]2:[#6]:[#6]:[#6]:[#6]:[#6]:2)-[#6]2:[#6]:[#6]:[#6]:[#6]:[#6]:2-[#8]-[#6]-12-[#6]-[#6]-[#7]-[#6]-[#6]-2\n", "Row: 2413 Displacement of [3H]diprenorphine from human cloned delta receptor by cell based assay\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 43.6, mcs nAts: 11\n", "[#6]-[#6]-[#6,#7]1:[#6]:[#7,#6]:[#6]2:[#6]:1:[#6]:[#6]:[#6]:[#6]:2\n", "Row: 2414 Displacement of [3H]diprenorphine from human cloned mu receptor by cell based assay\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 43.6, mcs nAts: 11\n", "[#6]-[#6]-[#6,#7]1:[#6]:[#7,#6]:[#6]2:[#6]:1:[#6]:[#6]:[#6]:[#6]:2\n", "Row: 2415 Displacement of [3H]diprenorphine from human cloned kappa opioid receptor by cell based assay\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 43.6, mcs nAts: 11\n", "[#6]-[#6]-[#6,#7]1:[#6]:[#7,#6]:[#6]2:[#6]:1:[#6]:[#6]:[#6]:[#6]:2\n", "Row: 2416 Displacement of 2-[125I]iodomelatonin from human MT2 receptor expressed in CHO cells\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 27.1, mcs nAts: 8\n", "[#6]-[#8,#7]-[#6]1:,-[#6]:,-[#6]:[#6]:,-[#6]:,-[#6]:,-1\n", "Row: 2417 Displacement of 2-[125I]iodomelatonin from human MT1 receptor expressed in CHO cells\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 27.1, mcs nAts: 8\n", "[#6]-[#8,#7]-[#6]1:,-[#6]:,-[#6]:[#6]:,-[#6]:,-[#6]:,-1\n", "Row: 2418 Displacement of [3H]NAMH from histamine H3 receptor in rat cortex\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 31.6, mcs nAts: 26\n", "[#6]-[#6]1-[#6]2-[#6]-[#6]-[#6]3-[#6]-2(-[#6]-[#6]-[#6]2-[#6]-3-[#6]-[#6]=[#6]3-[#6]-2(-[#6]-[#6]-[#6](-[#6]-3)-[#7](-[#6,#16])-[#6,#16])-[#6])-[#6]-[#7]-1-[#6]\n", "Row: 2419 Displacement of [3H]spiperone form human cloned dopamine D3 receptor expressed in CHO cells\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 21.7, mcs nAts: 17\n", "[#6]-[#6]-[#6]-[#7]1-[#6]-[#6]-[#8]-[#6]2-[#6]-1-[#6]-[#6]-[#6]1:[#6]-2:[#6]:[#6]:[#6]:[#6]:1\n", "Row: 2420 Displacement of [3H]N-alpha-methylhistamine from human histamine H3 receptor expressed in HEK cells by scintillation counting\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 32.7, mcs nAts: 22\n", "[#8,#6,#16]=,-[#6]1:,-[#7]:,-[#6]2:[#6]:[#6](-[#9]):[#6]:[#6]:[#6]:2:,-[#7]:,-1-[#6]1:[#6]:[#6]:[#6](:[#6]:[#6]:1)-[#8]-[#6]-[#6]-[#6]-[#7]\n", "Row: 2421 Displacement of [3H]spiroperidol from human cloned dopamine D3 receptor by liquid scintillation counting\n", " * postgresql://localhost/chembl_23\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Mean nAts 30.8, mcs nAts: 18\n", "[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1-[#7]1-[#6]-[#6]-[#7](-[#6]-[#6]-1)-[#6]-[#6]-[#6]-[#7,#6]-[#6,#7,#8]=,-[#8,#6]\n", "Row: 2422 Displacement of N-[3H]methylhistamine from histamine H3 receptor in rat cortex membrane\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 28.2, mcs nAts: 24\n", "[#8,#6,#7]=,-[#6,#16](-,=[#6,#7,#8])-[#7]1-[#6]-[#6]2-[#6]-[#6]=[#6](-[#6]-2-[#6]-1)-[#6]1:[#6]:[#6]:[#6](:[#6]:[#6]:1)-[#6]-[#6]-[#7]1-[#6]-[#6]-[#6]-[#6]-1\n", "Row: 2423 Displacement of [beta-33P]-2MeS-ADP from human P2Y1 receptor transfected in HEK293 cells after 1 hr by scintillation counting method\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 37.3, mcs nAts: 28\n", "[#6]1:[#6]:[#6]:[#6]:[#6](:[#6]:1)-[#8]-[#6]1:[#7]:[#6]:[#6]:[#6]:[#6]:1-[#7]-[#6](=[#8])-[#7]-[#6]1:[#6]:[#6]:[#6](:[#6]:[#6]:1)-[#8]-[#6](-[#9])(-[#9])-[#9]\n", "Row: 2424 Displacement of [3H]-(R,R')-methoxyfenoterol from human beta2 adrenergic receptor expressed in HEK cells by liquid scintillation counting analysis\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 23.4, mcs nAts: 21\n", "[#8]-[#6]1:[#6]:[#6]:[#6](:[#6]:[#6]:1)-[#6]-[#6]-[#7]-[#6]-[#6](-[#8])-[#6]1:[#6]:[#6](-[#8]):[#6]:[#6](:[#6]:1)-[#8]\n", "Row: 2425 Displacement of [3H]haTRAP from PAR-1 isolated from human platelets by liquid scintillation counting analysis\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 37.5, mcs nAts: 32\n", "[#6]-[#6]1-[#8]-[#6](=[#8])-[#6]2-[#6]-1-[#6](-[#6]1-[#6]-[#6]-[#6](-[#6]-[#6]-1-[#6]-2)-[#6,#7]-,=[#8,#6,#7])-[#6]=[#6]-[#6]1:[#6]:[#6]:[#6](:[#6]:[#7]:1)-[#6]1:[#6]:[#6]:[#6]:[#6](:[#6]:1)-[#9,#6]\n", "Row: 2426 Displacement of [3H]MRE2029F20 from human adenosine A2B receptor expressed in HEK293 cells\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 35.0, mcs nAts: 32\n", "[#6]-[#6]-[#6]-[#7]1:[#6](=[#8]):[#6]2:[#7]:[#6](-[#6]3:[#6,#7]:[#6,#7]:[#7,#6](:[#7,#6]:3)-[#6,#7]-[#6](=[#8])-[#7,#6]-[#6]3:[#6]:[#6]:[#6]:[#6]:[#6]:3):[#7]:[#6]:2:[#7](:[#6]:1=[#8])-[#6]-[#6]-[#6]\n", "Row: 2427 Displacement of [3H]MRE3008F20 from human adenosine A3 receptor expressed in CHO cells\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 35.0, mcs nAts: 32\n", "[#6]-[#6]-[#6]-[#7]1:[#6](=[#8]):[#6]2:[#7]:[#6](-[#6]3:[#6,#7]:[#6,#7]:[#7,#6](:[#7,#6]:3)-[#6,#7]-[#6](=[#8])-[#7,#6]-[#6]3:[#6]:[#6]:[#6]:[#6]:[#6]:3):[#7]:[#6]:2:[#7](:[#6]:1=[#8])-[#6]-[#6]-[#6]\n", "Row: 2428 Displacement of [3H]ZM-241385 from human adenosine A2A receptor expressed in CHO cells\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 35.0, mcs nAts: 32\n", "[#6]-[#6]-[#6]-[#7]1:[#6](=[#8]):[#6]2:[#7]:[#6](-[#6]3:[#6,#7]:[#6,#7]:[#7,#6](:[#7,#6]:3)-[#6,#7]-[#6](=[#8])-[#7,#6]-[#6]3:[#6]:[#6]:[#6]:[#6]:[#6]:3):[#7]:[#6]:2:[#7](:[#6]:1=[#8])-[#6]-[#6]-[#6]\n", "Row: 2429 Displacement of [3H]DPCPX from human adenosine A1 receptor expressed in CHO cells\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 35.0, mcs nAts: 32\n", "[#6]-[#6]-[#6]-[#7]1:[#6](=[#8]):[#6]2:[#7]:[#6](-[#6]3:[#6,#7]:[#6,#7]:[#7,#6](:[#7,#6]:3)-[#6,#7]-[#6](=[#8])-[#7,#6]-[#6]3:[#6]:[#6]:[#6]:[#6]:[#6]:3):[#7]:[#6]:2:[#7](:[#6]:1=[#8])-[#6]-[#6]-[#6]\n", "Row: 2430 Inhibition of human transmembrane carbonic anhydrase 12 by stopped flow CO2 hydration assay\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 24.5, mcs nAts: 15\n", "[#7]-[#16](=[#8])(=[#8])-[#6]1:[#6]:[#6]:[#6](:[#6]:[#6]:1)-[#7,#6]1:[#6,#7]:[#7,#6]:[#7,#6]:[#6,#7]:1\n", "Row: 2431 Inhibition of human transmembrane carbonic anhydrase 9 by stopped flow CO2 hydration assay\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 24.5, mcs nAts: 15\n", "[#7]-[#16](=[#8])(=[#8])-[#6]1:[#6]:[#6]:[#6](:[#6]:[#6]:1)-[#7,#6]1:[#6,#7]:[#7,#6]:[#7,#6]:[#6,#7]:1\n", "Row: 2432 Inhibition of human cytosolic carbonic anhydrase 2 by stopped flow CO2 hydration assay\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 24.5, mcs nAts: 15\n", "[#7]-[#16](=[#8])(=[#8])-[#6]1:[#6]:[#6]:[#6](:[#6]:[#6]:1)-[#7,#6]1:[#6,#7]:[#7,#6]:[#7,#6]:[#6,#7]:1\n", "Row: 2433 Inhibition of human cytosolic carbonic anhydrase 1 by stopped flow CO2 hydration assay\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 24.5, mcs nAts: 15\n", "[#7]-[#16](=[#8])(=[#8])-[#6]1:[#6]:[#6]:[#6](:[#6]:[#6]:1)-[#7,#6]1:[#6,#7]:[#7,#6]:[#7,#6]:[#6,#7]:1\n", "Row: 2434 Displacement of [3H]ABMECA from human adenosine A3 receptor expressed in CHO cells\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 31.0, mcs nAts: 22\n", "[#7,#8]-,=[#6](=,-[#8,#7])-[#6]1-[#16,#8]-[#6](-[#7]2:[#6]:[#7]:[#6]3:[#6]:2:[#7]:[#6](:[#7]:[#6]:3-[#7]-[#6])-[#17])-[#6](-[#6]-1-[#8])-[#8]\n", "Row: 2435 Displacement of [3H]-ZM 241385 from rat adenosine A2A receptor expressed in CHO cell membrane\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 31.0, mcs nAts: 24\n", "[#6]-[#6]1:[#6]:[#6](-[#6]):[#7](:[#7]:1)-[#6]1:[#6]:[#6](-[#7]-[#6](=[#8])-[#6]-[#6,#7]):[#7]:[#6](:[#7]:1)-[#6]1:[#6]:[#6]:[#6](:[#8]:1)-[#6]\n", "Row: 2436 Displacement of [3H]-DPCPX from human adenosine A1 receptor expressed in HEK293 cell membrane\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 31.0, mcs nAts: 24\n", "[#6]-[#6]1:[#6]:[#6](-[#6]):[#7](:[#7]:1)-[#6]1:[#6]:[#6](-[#7]-[#6](=[#8])-[#6]-[#6,#7]):[#7]:[#6](:[#7]:1)-[#6]1:[#6]:[#6]:[#6](:[#8]:1)-[#6]\n", "Row: 2437 Displacement of [3H]-ZM 241385 from human adenosine A2A receptor expressed in HEK293 cell membrane\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 31.0, mcs nAts: 24\n", "[#6]-[#6]1:[#6]:[#6](-[#6]):[#7](:[#7]:1)-[#6]1:[#6]:[#6](-[#7]-[#6](=[#8])-[#6]-[#6,#7]):[#7]:[#6](:[#7]:1)-[#6]1:[#6]:[#6]:[#6](:[#8]:1)-[#6]\n", "Row: 2438 Displacement of [3H]mesulergine from human recombinant 5HT2C receptor expressed in CHO cells\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 23.2, mcs nAts: 14\n", "[#6]-[#6]1:[#7]:[#6]:[#6]:[#6](:[#7]:1)-[#6]1:[#6]:[#6]:[#6](:[#6]:[#6]:1)-[#17,#6,#8,#9]\n", "Row: 2439 Displacement of [3H]mesulergine from human recombinant 5HT2B receptor expressed in CHO cells\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 23.2, mcs nAts: 14\n", "[#6]-[#6]1:[#7]:[#6]:[#6]:[#6](:[#7]:1)-[#6]1:[#6]:[#6]:[#6](:[#6]:[#6]:1)-[#17,#6,#8,#9]\n", "Row: 2440 Displacement of [3H]ketanserin from human recombinant 5HT2A receptor expressed in mouse NIH3T3 cells\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 23.2, mcs nAts: 14\n", "[#6]-[#6]1:[#7]:[#6]:[#6]:[#6](:[#7]:1)-[#6]1:[#6]:[#6]:[#6](:[#6]:[#6]:1)-[#17,#6,#8,#9]\n", "Row: 2441 Displacement of [3H]-N-alpha-methylhistamine from human histamine H3 receptor expressed in CHOK1 cells after 1.5 hrs by scintillation proximity assay\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 26.5, mcs nAts: 12\n", "[#7,#6]1-[#6]-[#6]-[#7,#6](-[#6]-[#6]-1)-[#6]1-,:[#6]-,:[#6]-,:[#6,#7,#8]-,:[#6]-,:[#6]-,:1\n", "Row: 2442 Inhibition of human recombinant carbonic anhydrase 12-mediated CO2 hydration after 6 hrs by stopped-flow assay\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 23.7, mcs nAts: 17\n", "[#6,#7]1:[#6,#7]:[#7](-[#6]2:[#6]:[#6]:[#6]3:[#6](:[#6]:2)-[#6]=[#6]-[#16](-[#8]-3)(=[#8])=[#8]):[#7,#6]:[#7,#6]:1\n", "Row: 2443 Inhibition of human recombinant carbonic anhydrase 9-mediated CO2 hydration after 6 hrs by stopped-flow assay\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 23.7, mcs nAts: 17\n", "[#6,#7]1:[#6,#7]:[#7](-[#6]2:[#6]:[#6]:[#6]3:[#6](:[#6]:2)-[#6]=[#6]-[#16](-[#8]-3)(=[#8])=[#8]):[#7,#6]:[#7,#6]:1\n", "Row: 2444 Inhibition of human recombinant carbonic anhydrase 2-mediated CO2 hydration after 6 hrs by stopped-flow assay\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 23.7, mcs nAts: 17\n", "[#6,#7]1:[#6,#7]:[#7](-[#6]2:[#6]:[#6]:[#6]3:[#6](:[#6]:2)-[#6]=[#6]-[#16](-[#8]-3)(=[#8])=[#8]):[#7,#6]:[#7,#6]:1\n", "Row: 2445 Inhibition of human recombinant carbonic anhydrase 1-mediated CO2 hydration after 6 hrs by stopped-flow assay\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 23.7, mcs nAts: 17\n", "[#6,#7]1:[#6,#7]:[#7](-[#6]2:[#6]:[#6]:[#6]3:[#6](:[#6]:2)-[#6]=[#6]-[#16](-[#8]-3)(=[#8])=[#8]):[#7,#6]:[#7,#6]:1\n", "Row: 2446 Displacement of [125I]IL8 from human CXCR2 by SPA assay\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 32.2, mcs nAts: 29\n", "[#6]-[#6]-[#6](-[#7]-[#6]1:[#6](-[#7]-[#6]2:[#6]:[#6]:[#6]:[#6](:[#6]:2-[#8])-[#6](=[#8])-[#7](-[#6])-[#6]):[#6](:[#6]:1=[#8])=[#8])-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1\n", "Row: 2447 Inhibition of human factor 10a\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 37.8, mcs nAts: 24\n", "[#6]1:[#6]:[#6]:[#6](:[#6]:[#6]:1)-[#7]1:[#7]:[#6](-[#6](-[#7,#9])=,-[#8,#9]):[#6]:[#6]:1-[#6](=[#8])-[#6,#7]-[#6]1:[#6]:[#6]:[#6](:[#6]:[#6]:1)-[#7,#6]\n", "Row: 2448 Inhibition of human carbonic anhydrase 2\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 22.5, mcs nAts: 8\n", "[#7,#6,#8]-,=[#16,#6,#7,#8]-[#6]1:,-[#6,#8]:,-[#6,#7]:,-[#6,#16]:,-[#6]:,-[#6]:,-1\n", "Row: 2449 Inhibition of human carbonic anhydrase 1\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 22.5, mcs nAts: 8\n", "[#7,#6,#8]-,=[#16,#6,#7,#8]-[#6]1:,-[#6,#8]:,-[#6,#7]:,-[#6,#16]:,-[#6]:,-[#6]:,-1\n", "Row: 2450 Displacement of SAENTA-fluorescein from human ENT1 in K562 cells after 45 mins by flow cytometry\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 33.1, mcs nAts: 30\n", "[#8]=[#7](-[#8])-[#6]1:[#6]:[#6]:[#6](:[#6]:[#6]:1)-[#6]-[#16]-[#6]1:[#7]:[#6](-[#53,#7,#9,#17,#35]):[#7]:[#6]2:[#6]:1:[#7]:[#6]:[#7]:2-[#6]1-[#8]-[#6](-[#6]-[#8])-[#6](-[#6]-1-[#8])-[#8]\n", "Row: 2451 Displacement of [3H]PG2 from human CRTh2 receptor expressed in CHO cells\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 18.6, mcs nAts: 12\n", "[#6]-[#6]1:[#6]:[#6](-[#17,#6,#8,#9,#35]):[#6]:[#6]:[#6]:1-[#8]-[#6]-[#6]=,-[#8,#6,#7]\n", "Row: 2452 Displacement of [3H]MSX2 from adenosine A2A receptor in rat striatal membrane\n", " * postgresql://localhost/chembl_23\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Mean nAts 26.0, mcs nAts: 19\n", "[#6]-[#7]1:[#6](=[#8]):[#6]2:[#6](:[#7](:[#6]:1=[#8])-[#6]):[#7]:[#6]1:[#7]:2-[#6]-[#6]-[#6]-[#7]-1-[#6]-[#6]\n", "Row: 2453 Displacement of [3H]CCPA from adenosine A1 receptor in rat brain cortical membrane\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 26.0, mcs nAts: 19\n", "[#6]-[#7]1:[#6](=[#8]):[#6]2:[#6](:[#7](:[#6]:1=[#8])-[#6]):[#7]:[#6]1:[#7]:2-[#6]-[#6]-[#6]-[#7]-1-[#6]-[#6]\n", "Row: 2454 Displacement of FAM-Bid peptide from N-terminal 8x His-tagged MCl-1 (unknown origin) expressed in Escherichia coli BL21 (DE3) after 30 mins by fluorescence polarization assay\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 36.2, mcs nAts: 9\n", "[#6]-,=[#8,#6,#7]-,=[#6]1:[#6]:[#6]:[#6,#7](:[#6]:[#6]:1)-[#6,#7,#8]\n", "Row: 2455 Displacement of [3H]citalopram from SERT in Sprague-Dawley rat whole brain membranes after 1 hr by liquid scintillation spectrophotometric analysis\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 30.7, mcs nAts: 18\n", "[#6]-[#7]-[#6]-[#6]-[#6](-[#8]-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1)-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1\n", "Row: 2456 Displacement of FAM-Bid peptide from N-terminal 8x His-tagged Bcl-2 (unknown origin) expressed in Escherichia coli BL21 (DE3) after 30 mins by fluorescence polarization assay\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 36.2, mcs nAts: 9\n", "[#6]-,=[#8,#6,#7]-,=[#6]1:[#6]:[#6]:[#6,#7](:[#6]:[#6]:1)-[#6,#7,#8]\n", "Row: 2457 Displacement of FAM-p53TAD peptide from N-terminal 8x His-tagged human MDM2 (25 to 108 residues) expressed in Escherichia coli BL21 (DE3) after 30 mins by fluorescence polarization assay\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 36.2, mcs nAts: 9\n", "[#6]-,=[#8,#6,#7]-,=[#6]1:[#6]:[#6]:[#6,#7](:[#6]:[#6]:1)-[#6,#7,#8]\n", "Row: 2458 Reversible mixed-type inhibition of horse serum butyrylcholinesterase using acetylcholine bromide as substrate assessed as free enzyme-inhibitor complex by Lineweaver-Burk plot analysis\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 22.8, mcs nAts: 15\n", "[#6]-[#7]1:[#6]:[#6]:[#6]:[#6]:[#6]:[#6]:[#6]:[#6]:[#6]:[#6]:[#6]:[#6]:[#6]:1\n", "Row: 2459 Displacement of [3H]N-alpha-methylhistamine from histamine H3 receptor in rat cortical membranes\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 26.0, mcs nAts: 21\n", "[#7,#6]-[#6]-[#6]-[#6]1:[#6]:[#6]:[#6]2:[#6](:[#6]:1):[#6]:[#6]:[#6](:[#6]:2)-[#6]1:[#6]:[#6]:[#6](:[#6]:[#6]:1)-[#6]#[#7]\n", "Row: 2460 Displacement of [3H]SCH23390 from human dopamine D5 receptor by PDSP assay\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 24.4, mcs nAts: 14\n", "[#6]1:[#6]:[#6,#7]:[#6](:[#6,#7]:[#6]:1)-[#7,#6]1-[#6]-[#6]-[#7](-[#6]-[#6]-1)-[#6]-[#6]\n", "Row: 2461 Displacement of [3H]PSB298 from human adenosine A2B receptor expressed in CHO cells\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 28.6, mcs nAts: 20\n", "[#6]-[#7]1:[#6](=[#8]):[#6]2:[#6](:[#7](:[#6]:1=[#8])-[#6]):[#7]:[#6]1:[#7]:2-[#6]-[#6]-[#6]-[#7]-1-[#6]-[#6]-[#6,#7,#8]\n", "Row: 2462 Displacement of [3H]CP-55940 from human CB1 receptor expressed in HEK cells\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 32.1, mcs nAts: 25\n", "[#6]-[#6]1:[#6]2:[#6](:[#7](:[#6]:1-[#6])-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1-[#17,#6])-[#6]-[#6]-[#7](-[#6]-2=[#8])-[#6,#7]1-[#6]-[#6]-[#6]-[#6]-[#6]-1\n", "Row: 2463 Inhibition of GST-tagged human Wee1\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 34.3, mcs nAts: 28\n", "[#8]=[#6]1:[#6]2:[#6]:[#7]:[#6](:[#7]:[#6]:2:[#7]2:[#6](:[#7]:1-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1-[#17]):[#7]:[#6]:[#6]:2)-[#7]-[#6]1:,-[#6]:,-[#6]:,-[#6]:,-[#6]:,-[#6]:,-1\n", "Row: 2464 Displacement of [3H]-naloxone from human mu opioid receptor expressed in CHO-K1 cells by scintillation counting analysis\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 30.5, mcs nAts: 26\n", "[#8]=[#6](-[#6]-[#6]1:[#6]:[#6]:[#6](:[#6](:[#6]:1)-[#17])-[#17])-[#7]1-[#6]-[#6]-[#7]-[#6]2-[#6]-1-[#6](-[#6]-[#6]-[#6]-2)-[#7]1-[#6]-[#6]-[#6]-[#6]-1\n", "Row: 2465 Displacement of [3H]-DPCPX from human adenosine A1 receptor expressed in CHO cells by scintillation counting analysis\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 24.0, mcs nAts: 17\n", "[#6]-[#6]1:[#7]:[#6](-[#7]):[#6]2:[#6](:[#7]:1):[#6]:[#7](:[#7]:2)-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1\n", "Row: 2466 Inhibition of human His-tagged full length AURKA using kemptide peptide as substrate after 60 mins\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 28.3, mcs nAts: 24\n", "[#6]1-,:[#6]-,:[#6]-,:[#6]2:[#6](-,:[#6]-,:1):[#7]:[#7]:[#6]:2-[#6](=[#8])-[#7]-[#6]1:[#6]:[#7]:[#7](:[#6]:1)-[#6]-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1\n", "Row: 2467 Displacement of [125I]7-HO-PIPAT from human D3R expressed in HEK cells\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 26.6, mcs nAts: 12\n", "[#6]-[#7]-[#6]-[#6](-[#8])-[#6]1:[#6]:[#6]:[#6](:[#6]:[#6]:1)-[#8]\n", "Row: 2468 Inhibition of NET\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 34.2, mcs nAts: 29\n", "[#6]-[#6](=[#8])-[#6]1:[#6]:[#6]:[#6]:[#6](:[#6]:1)-[#7]-[#6](=[#8])-[#7]-[#6]-[#6]-[#6]-[#6]1-[#6]-[#6](-[#6]-[#6]2:[#6]:[#6]:[#6]:[#6]:[#6]:2)-[#6]-[#6]-[#7]-1\n", "Row: 2469 Inhibition of DAT\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 34.2, mcs nAts: 29\n", "[#6]-[#6](=[#8])-[#6]1:[#6]:[#6]:[#6]:[#6](:[#6]:1)-[#7]-[#6](=[#8])-[#7]-[#6]-[#6]-[#6]-[#6]1-[#6]-[#6](-[#6]-[#6]2:[#6]:[#6]:[#6]:[#6]:[#6]:2)-[#6]-[#6]-[#7]-1\n", "Row: 2470 Inhibition of 5HTT\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 34.2, mcs nAts: 29\n", "[#6]-[#6](=[#8])-[#6]1:[#6]:[#6]:[#6]:[#6](:[#6]:1)-[#7]-[#6](=[#8])-[#7]-[#6]-[#6]-[#6]-[#6]1-[#6]-[#6](-[#6]-[#6]2:[#6]:[#6]:[#6]:[#6]:[#6]:2)-[#6]-[#6]-[#7]-1\n", "Row: 2471 Inhibition of mouse 11beta-HSD1 expressed in Escherichia coli by SPA\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 30.3, mcs nAts: 15\n", "[#6,#7]-[#6]-[#6](=[#8])-[#7]-[#6]1-[#6]2-[#6]-[#6]3-[#6]-[#6]-1-[#6]-[#6](-[#6]-2)-[#6]-3\n", "Row: 2472 Inhibition of human 11beta-HSD1 expressed in Escherichia coli by SPA\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 30.3, mcs nAts: 15\n", "[#6,#7]-[#6]-[#6](=[#8])-[#7]-[#6]1-[#6]2-[#6]-[#6]3-[#6]-[#6]-1-[#6]-[#6](-[#6]-2)-[#6]-3\n", "Row: 2473 Displacement of [3H]8-arginine-vasopressin from human oxytocin receptor expressed in CHO cell membrane incubated for 1 hr by liquid scintillation counting method\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 70.1, mcs nAts: 68\n", "[#6]-[#6]-[#6](-[#6])-[#6]1-[#7]-[#6](=[#8])-[#6](-[#6]-[#6]2:[#6]:[#6]:[#6](:[#6]:[#6]:2)-[#8])-[#7]-[#6](=[#8])-[#6]-[#6]-[#16]-[#16]-[#6]-[#6](-[#7]-[#6](-[#6](-[#7]-[#6](-[#6](-[#7]-[#6]-1=[#8])-[#6]-[#6]-[#6](-[#7])=[#8])=[#8])-[#6]-[#6](-[#7])=[#8])=[#8])-[#6](=[#8])-[#7]1-[#6]-[#6]-[#6]-[#6]-1-[#6](=[#8])-[#7]-[#6](-[#6]-[#6](-[#6])-[#6])-[#6](=[#8])-[#7]-[#6]-[#6](-[#7])=[#8]\n", "Row: 2474 Displacement of [125I]Ang2 from AT2 receptor in rat liver membrane\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 32.1, mcs nAts: 13\n", "[#6]-[#6]1:[#6]:[#6]:[#6](:[#6]:[#6]:1)-[#6]-[#7]1:[#6]:[#6]:[#7]:[#6]:1\n", "Row: 2475 Antagonist activity at human OX1R by radioligand displacement assay\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 31.5, mcs nAts: 22\n", "[#6]1:[#6]:[#6]:[#6](:[#6](:[#6]:1)-[#6](=[#8])-[#7]1-[#6]-[#6]-[#6]-[#6](-[#6]-1)-[#8]-[#6]1:[#6,#7]:[#6]:[#6,#7]:[#6]:[#6,#7]:1)-[#7,#6]\n", "Row: 2476 Binding affinity to human f10a\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 40.9, mcs nAts: 35\n", "[#6]-[#6]1:[#7]:[#7](-[#6]2:[#6]:[#6]:[#6]3:[#6](:[#6]:2):[#6](:[#7]:[#8]:3)-[#7]):[#6]2:[#6]:1:,-[#7]:,-[#6,#7]:,-[#7,#6](:,-[#6]:,-2=,-[#8])-[#6]1:[#6]:[#6]:[#6](:[#6]:[#6]:1)-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1-[#6]-[#7]\n", "Row: 2477 Displacement of [125I]iodo-MLA from alpha-7 nAChR in rat cerebral cortex\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 15.5, mcs nAts: 11\n", "[#6,#7]-[#7,#6]-[#6]-[#6]=,-[#6,#8]-[#6]1:[#6]:[#6]:[#6]:[#7,#6]:[#6]:1\n", "Row: 2478 Inhibition of human recombinant carbonic anhydrase 1 expressed in Escherichia coli pre-incubated for 15 mins by stopped-flow CO2 hydration assay\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 13.1, mcs nAts: 4\n", "[#7,#6,#8,#16]-,=[#6,#7,#16](=,-[#16,#6,#8])-,=[#16,#6,#7,#8]\n", "Row: 2479 Inhibition of human recombinant carbonic anhydrase 2 expressed in Escherichia coli pre-incubated for 15 mins by stopped-flow CO2 hydration assay\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 13.1, mcs nAts: 4\n", "[#7,#6,#8,#16]-,=[#6,#7,#16](=,-[#16,#6,#8])-,=[#16,#6,#7,#8]\n", "Row: 2480 Inhibition of human recombinant carbonic anhydrase 9 expressed in Escherichia coli pre-incubated for 15 mins by stopped-flow CO2 hydration assay\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 13.1, mcs nAts: 4\n", "[#7,#6,#8,#16]-,=[#6,#7,#16](=,-[#16,#6,#8])-,=[#16,#6,#7,#8]\n", "Row: 2481 Inhibition of human recombinant carbonic anhydrase 12 expressed in Escherichia coli pre-incubated for 15 mins by stopped-flow CO2 hydration assay\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 13.1, mcs nAts: 4\n", "[#7,#6,#8,#16]-,=[#6,#7,#16](=,-[#16,#6,#8])-,=[#16,#6,#7,#8]\n", "Row: 2482 Binding affinity to 5HT2C\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 14.9, mcs nAts: 13\n", "[#6]-[#6]1-[#6]2:[#6]:[#6]:[#6]:[#6]:[#6]:2-[#6]2-[#6]-1-[#6]-[#7]-[#6]-2\n", "Row: 2483 Inhibition of [125I]NDP-alpha-MSH binding to human MC4R transfected in HEK293 cells\n", " * postgresql://localhost/chembl_23\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Mean nAts 43.4, mcs nAts: 25\n", "[#7,#6]-[#6]-[#6](-[#6])-[#7]1-[#6]-[#6]-[#7](-[#6]-[#6]-1)-[#6](=[#8])-[#6](-[#6]-[#6]1:[#6]:[#6]:[#6](:[#6]:[#6]:1)-[#17])-[#7]-[#6](=[#8])-[#6,#7]\n", "Row: 2484 Displacement of [3H]-5-CT from human 5HT7 receptor expressed in HEK293 cells after 1 hr\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 38.0, mcs nAts: 19\n", "[#6,#16]-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1-[#7]1-[#6]-[#6]-[#7](-[#6]-[#6]-1)-[#6]-[#6]-[#6]-[#6]-[#6]-,=[#6,#7,#8]\n", "Row: 2485 Displacement of [3H]-8-OH-DPAT from human 5HT1A receptor expressed in HEK293 cells after 1 hr\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 38.0, mcs nAts: 19\n", "[#6,#16]-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1-[#7]1-[#6]-[#6]-[#7](-[#6]-[#6]-1)-[#6]-[#6]-[#6]-[#6]-[#6]-,=[#6,#7,#8]\n", "Row: 2486 Displacement of [3H]MPEP from mGlu5 receptor (unknown origin) expressed in HEK293 cells by competition binding assay\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 23.1, mcs nAts: 13\n", "[#6]1:[#6,#7]:[#6](-[#6]#[#6]-[#6]2:[#6,#7]:[#7,#6]:[#6,#7]:[#7,#6]:2):[#6]:[#6,#7]:[#7,#6]:1\n", "Row: 2487 Displacement of [3H](+)Pentazocine from sigma 1 receptor in human Jurkat cells after 120 mins by liquid scintillation counting analysis\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 23.6, mcs nAts: 6\n", "[#6,#7]1:,-[#6]:,-[#6,#8]:,-[#6,#8,#16]:,-[#6]:,-[#6,#7]:,-1\n", "Row: 2488 Binding affinity to MCT1 by FB assay\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 33.3, mcs nAts: 25\n", "[#6,#8]-,=[#16,#6]-[#6]1:[#6,#7](-[#6]-[#6]2:[#6]:[#6]:[#6]:[#6]:[#6]:2):[#16,#6]:[#6]2:[#6]:1:[#6](=[#8]):[#7](-[#6]):[#6](:[#7]:2-[#6]-[#6](-[#6])-[#6])=[#8]\n", "Row: 2489 Displacement of [125I]BH-CCK-8S from human recombinant CCK2 receptor expressed in NIH3T3 cells\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 37.4, mcs nAts: 33\n", "[#6,#8]-,=[#6](=,-[#8,#6,#7])-[#6]-[#7]1-[#6](=[#8])-[#7,#6](-[#6,#7]-[#6](=[#8])-[#7]-[#6]2:[#6]:[#6]:[#6]:[#6](:[#6]:2)-[#8,#6,#7])-[#7]=[#6](-[#6]2:[#6]-1:[#6]:[#6]:[#6]:[#6]:2)-[#6]1-,:[#6]-,:[#6]-,:[#6]-,:[#6]-,:[#6,#7]-,:1\n", "Row: 2490 Inhibition of HIV1 protease\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 50.6, mcs nAts: 44\n", "[#6]-[#8]-[#6](=[#8])-[#7]-[#6](-[#6](=[#8])-[#7]-[#7](-[#6]-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1)-[#6]-[#6](-[#8])(-[#6]-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1)-[#6](=[#8])-[#7]-[#6]1-[#6]2:[#6]:[#6]:[#6]:[#6]:[#6]:2-[#6]-[#6]-1-[#8])-[#6](-[#6])(-[#6])-[#6]\n", "Row: 2491 Inhibition of recombinant human cytosolic form of carbonic anhydrase-1 preincubated for 15 mins by stopped flow CO2 hydration assay\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 22.5, mcs nAts: 20\n", "[#7]-[#16](=[#8])(=[#8])-[#6]1:[#6]:[#6]:[#6](:[#6]:[#6]:1)-[#6]-[#6]-[#7]=,-[#6]-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1\n", "Row: 2492 Inhibition of recombinant human cytosolic form of carbonic anhydrase-2 preincubated for 15 mins by stopped flow CO2 hydration assay\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 22.5, mcs nAts: 20\n", "[#7]-[#16](=[#8])(=[#8])-[#6]1:[#6]:[#6]:[#6](:[#6]:[#6]:1)-[#6]-[#6]-[#7]=,-[#6]-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1\n", "Row: 2493 Inhibition of recombinant human transmembrane, tumor-associated form of carbonic anhydrase-9 preincubated for 15 mins by stopped flow CO2 hydration assay\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 22.5, mcs nAts: 20\n", "[#7]-[#16](=[#8])(=[#8])-[#6]1:[#6]:[#6]:[#6](:[#6]:[#6]:1)-[#6]-[#6]-[#7]=,-[#6]-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1\n", "Row: 2494 Displacement of [3H]8-OH-DPAT from 5HT1A receptor expressed in CHO cells\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 27.6, mcs nAts: 12\n", "[#6]1:[#6]:[#6]:[#6]2:[#6](:[#6]:1)-[#7]-[#6]-[#6](-[#8]-2)-[#6]-[#7]\n", "Row: 2495 Displacement of 2-[125I]-iodomelatonin from human melatonin receptor-1 transfected in CHO cell membranes after 120 mins\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 18.6, mcs nAts: 13\n", "[#6]-[#8]-[#6]1:[#6]:[#6]:[#6]2:[#6](:[#6]:1):[#6](:[#6]:[#7]:2)-[#6]-[#6]\n", "Row: 2496 Displacement of 2-[125I]-iodomelatonin from human melatonin receptor-2 transfected in CHO cell membranes after 120 mins\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 18.6, mcs nAts: 13\n", "[#6]-[#8]-[#6]1:[#6]:[#6]:[#6]2:[#6](:[#6]:1):[#6](:[#6]:[#7]:2)-[#6]-[#6]\n", "Row: 2497 Inhibition of human recombinant PAK4 kinase domain using coumarin/fluorescein-labeled FRET peptide as substrate assessed as substrate phosphorylation at Ser/Thr19 preincubated for 10 mins followed by ATP addition measured after 60 mins by Z'-LYTE assay\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 25.3, mcs nAts: 16\n", "[#7]-[#6]1:[#6,#7]:[#6](-[#7]-[#6]2:[#6]:[#6](-[#6]3-[#6]-[#6]-3):[#7]:[#7]:2):[#6]:[#6]:[#7,#6]:1\n", "Row: 2498 Displacement of [3H]CP-55,940 from human CB2 receptor expressed in CHO cell membranes\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 31.5, mcs nAts: 17\n", "[#6]-[#6]-[#8,#7]-[#6](=[#8])-[#6]1:[#6]:[#6]:[#6](:[#6](:[#7]:1)-[#8]-[#6]-[#6]1-[#6]-[#6]-1)-[#6,#7]\n", "Row: 2499 Displacement of [3H]SR141716A from human CB1 receptor\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 27.5, mcs nAts: 19\n", "[#8,#6]=,-[#6]1-,:[#6](-[#6]2:[#6]:[#6]:[#6]:[#6]:[#6]:2)-,:[#7](-[#6]2:,-[#6]:,-[#6]:,-[#6]:,-[#6]:,-[#6]:,-2)-,:[#6,#7]-,:[#7,#6]-,:1-[#6]\n", "Row: 2500 Binding affinity for human 5-hydroxytryptamine 2C receptor expressed in HEK 293 cells using [3H]mesulergine\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 30.0, mcs nAts: 9\n", "[#6,#9]-[#8,#6]-[#6]1:[#6]:[#6]:[#6]:[#6,#7]:[#6]:1-[#8,#6]\n", "Row: 2501 Binding affinity for human 5-hydroxytryptamine 2A receptor expressed in HEK 293 cells using [3H]ketanserin\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 30.0, mcs nAts: 9\n", "[#6,#9]-[#8,#6]-[#6]1:[#6]:[#6]:[#6]:[#6,#7]:[#6]:1-[#8,#6]\n", "Row: 2502 Binding affinity for human 5-hydroxytryptamine 2B receptor expressed in HEK 293 cells using [3H]5-HT\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 30.0, mcs nAts: 9\n", "[#6,#9]-[#8,#6]-[#6]1:[#6]:[#6]:[#6]:[#6,#7]:[#6]:1-[#8,#6]\n", "Row: 2503 In vitro inhibition of aspartic protease plasmepsin-1 (Plm) of Plasmodium falciparum.\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 41.8, mcs nAts: 21\n", "[#8]=[#6](-[#6]-[#6](-[#8])-[#6](-[#6]-[#8]-[#6]-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1)-[#7]-[#6](=,-[#8,#6])-,=[#6,#8])-[#7]-[#6]\n", "Row: 2504 Displacement of [3H]-DAMGO from human mu opioid receptor expressed in CHO cells after 60 mins by scintillation counting analysis\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 119.5, mcs nAts: 46\n", "[#6,#7]-[#6](-,=[#6,#7,#8])-[#6]-[#6,#7]-[#7,#6]-[#6](=,-[#8,#6])-[#6,#7]-[#7,#6]-[#6](=,-[#8,#6])-[#6,#7]-[#6]-[#6]-[#7]-[#6](=,-[#8,#6])-[#6](-,=[#6,#8])-[#7]-[#6](=,-[#8,#6])-[#6](-,=[#6,#8])-[#7]-[#6](=,-[#8,#6])-[#6]-[#7]-[#6](=,-[#8,#6])-[#6](-[#7]-[#6](=,-[#8,#6])-[#6]-[#6,#8]-[#6]1:,-[#6,#8]:,-[#6]:,-[#6](:,-[#6]:,-[#6]:,-1)-[#8])-,=[#6,#8]\n", "Row: 2505 Displacement of [3H]MPEP from mGluR5 receptor in Sprague-Dawley rat forebrain membrane after 60 mins by liquid scintillation spectrometry\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 24.4, mcs nAts: 8\n", "[#6,#8]#,-,=[#6,#7]-,=[#6,#7]1:,-[#6]:,-[#6,#7]:,-[#6,#7]:,-[#7,#6]:,-[#6,#7]:,-1\n", "Row: 2506 Displacement of [3H]3-methoxy-5-(pyridin-2-ylethynyl)pyridine from mGlu5 receptor of rat cortical membrane\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 21.0, mcs nAts: 14\n", "[#6,#16](#,-[#6,#8]-[#6]1:,-[#6]:,-[#6]:,-[#6]:,-[#6]:,-[#7,#6]:,-1)-[#6,#7]1=,-,:[#6]-,:[#6]-,=,:[#6,#7]-,:[#6]-,:[#6,#7]-,:1\n", "Row: 2507 Inhibition of [3H]DAMGO binding to mu opioid receptor of rat brain membranes\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 35.1, mcs nAts: 25\n", "[#6]=[#6]-[#6]-[#7]1-[#6]-[#6](-[#6])-[#7](-[#6]-[#6]-1-[#6])-[#6](-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1)-[#6]1:[#6]:[#6]:[#6]:[#6](:[#6]:1)-[#6,#8]\n", "Row: 2508 Displacement of [3H]BMS-599240 from BACE1 (unknown origin) expressed in HEK293 cells at pH 6.4 after 1.5 hrs by Microbeta liquid scintillation counting analysis\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 32.0, mcs nAts: 8\n", "[#6]1:[#6](-[#17,#6]):[#6]:[#6]:[#6]:[#6]:1-[#17]\n", "Row: 2509 Inhibition of human recombinant carbonic anhydrase 1 preincubated for 15 mins at room temperature/6 hrs at 4 deg C by stopped-flow CO2 hydration assay\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 29.7, mcs nAts: 8\n", "[#8,#6]=,-[#6]1:,-[#6,#8]:,-[#6](-,=[#6,#8]):,-[#8,#6]:,-[#6]:,-[#6,#8]:,-1\n", "Row: 2510 Inhibition of human recombinant carbonic anhydrase 2 preincubated for 15 mins at room temperature/6 hrs at 4 deg C by stopped-flow CO2 hydration assay\n", " * postgresql://localhost/chembl_23\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Mean nAts 29.7, mcs nAts: 8\n", "[#8,#6]=,-[#6]1:,-[#6,#8]:,-[#6](-,=[#6,#8]):,-[#8,#6]:,-[#6]:,-[#6,#8]:,-1\n", "Row: 2511 Inhibition of human recombinant carbonic anhydrase 7 preincubated for 15 mins at room temperature/6 hrs at 4 deg C by stopped-flow CO2 hydration assay\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 29.7, mcs nAts: 8\n", "[#8,#6]=,-[#6]1:,-[#6,#8]:,-[#6](-,=[#6,#8]):,-[#8,#6]:,-[#6]:,-[#6,#8]:,-1\n", "Row: 2512 Inhibition of human recombinant carbonic anhydrase 12 preincubated for 15 mins at room temperature/6 hrs at 4 deg C by stopped-flow CO2 hydration assay\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 29.7, mcs nAts: 8\n", "[#8,#6]=,-[#6]1:,-[#6,#8]:,-[#6](-,=[#6,#8]):,-[#8,#6]:,-[#6]:,-[#6,#8]:,-1\n", "Row: 2513 Binding affinity towards human 5-hydroxytryptamine receptor 5A expressed in CHO cells using the radioligand [3H]LSD\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 44.2, mcs nAts: 21\n", "[#6]-[#6]-[#7](-[#6]-[#6]1:[#6]:[#6]:[#6](:[#6,#7]:[#6]:1)-[#6]1:[#6]:[#6]:[#6](:[#6]:[#6,#7]:1)-[#6]-[#7])-[#6,#16](=[#8])-,=[#6,#7,#8]\n", "Row: 2514 Displacement of [3H]N-R-methylhistamine binding to SK-N-MC cell membranes expressing human H3 receptor\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 16.4, mcs nAts: 8\n", "[#6,#7]-[#6]-,=[#6,#7]1-,:[#6]-,:[#6]-,:[#7,#6]-,:[#6]-,:[#6]-,:1\n", "Row: 2515 Inhibition of human carbonic anhydrase-1 assessed as CO2 hydration activity by stopped-flow method\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 23.4, mcs nAts: 18\n", "[#7]-[#16](=[#8])(=[#8])-[#6]1:[#6]:[#6]:[#6](:[#6]:[#6]:1)-[#6]1:[#6]:[#6]:[#6](:[#6]:[#6]:1)-[#6,#7]=,-[#8,#6,#7]\n", "Row: 2516 Inhibition of human carbonic anhydrase-2 assessed as CO2 hydration activity by stopped-flow method\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 23.4, mcs nAts: 18\n", "[#7]-[#16](=[#8])(=[#8])-[#6]1:[#6]:[#6]:[#6](:[#6]:[#6]:1)-[#6]1:[#6]:[#6]:[#6](:[#6]:[#6]:1)-[#6,#7]=,-[#8,#6,#7]\n", "Row: 2517 Inhibition of human carbonic anhydrase-9 assessed as CO2 hydration activity by stopped-flow method\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 23.4, mcs nAts: 18\n", "[#7]-[#16](=[#8])(=[#8])-[#6]1:[#6]:[#6]:[#6](:[#6]:[#6]:1)-[#6]1:[#6]:[#6]:[#6](:[#6]:[#6]:1)-[#6,#7]=,-[#8,#6,#7]\n", "Row: 2518 Inhibition of human carbonic anhydrase-12 assessed as CO2 hydration activity by stopped-flow method\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 23.4, mcs nAts: 18\n", "[#7]-[#16](=[#8])(=[#8])-[#6]1:[#6]:[#6]:[#6](:[#6]:[#6]:1)-[#6]1:[#6]:[#6]:[#6](:[#6]:[#6]:1)-[#6,#7]=,-[#8,#6,#7]\n", "Row: 2519 Inhibition of human carbonic anhydrase-14 assessed as CO2 hydration activity by stopped-flow method\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 23.4, mcs nAts: 18\n", "[#7]-[#16](=[#8])(=[#8])-[#6]1:[#6]:[#6]:[#6](:[#6]:[#6]:1)-[#6]1:[#6]:[#6]:[#6](:[#6]:[#6]:1)-[#6,#7]=,-[#8,#6,#7]\n", "Row: 2520 Binding affinity for human growth hormone secretagogue receptor using [125I]ghrelin; NM means not measured\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 38.5, mcs nAts: 19\n", "[#6]-[#7](-[#6](=[#8])-[#6]1:[#6,#16]:[#6,#7]:[#6](:[#7,#6,#8]:1)-[#6])-[#6]-[#6]-[#7,#6]-[#6,#7]1-[#6]-[#6]-[#6,#8]-[#6]-[#6]-1\n", "Row: 2521 Inhibition of [3H]8-OH-DPAT binding to 5-hydroxytryptamine 1A receptor from rat hippocampus\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 32.2, mcs nAts: 16\n", "[#7,#6]-[#6]-[#6]-[#7]1-[#6]-[#6]-[#7](-[#6]-[#6]-1)-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1-[#17,#8]\n", "Row: 2522 BindingDB_Patents: In Vitro Inhibition Assay. In vitro cathepsin inhibition assay.\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 34.9, mcs nAts: 24\n", "[#6]-[#6](-[#7]-[#6](=[#8])-[#6]1:[#6]:[#6]:[#6](:[#6]:[#6]:1)-[#7,#6])-[#6](=[#8])-[#7]1-[#6]-[#6](-[#6])-[#6]2-[#6]-1-[#6](-[#6]-[#8]-2)=[#8]\n", "Row: 2523 Inhibitory activity against beta carbonic anhydrase (Cab) from Methanobacterium thermoautotrophicum\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 14.6, mcs nAts: 5\n", "[#7,#6,#8]-[#16,#6](=,-[#8,#7,#9])(=,-[#8,#9])-,=[#8,#6,#7,#9]\n", "Row: 2524 BindingDB_Patents: Inhibition Assay. The inhibitory effect for the individual enzymes was determined in analogy to a previously disclosed method (Stürzebecher et al., J. Med. Chem., 40, 3091-3099 (1997)).\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 47.9, mcs nAts: 40\n", "[#7]=[#6](-[#7])-[#6]1:[#6]:[#6]:[#6](:[#6]:[#6]:1)-[#6]-[#7]-[#6](=[#8])-[#6](-[#6]-[#6]-[#6]1-[#6]-[#6]-[#7]-[#6]-[#6]-1)-[#7]-[#6](=[#8])-[#6](-[#6]-[#6]-[#6])-[#7]-[#16](=[#8])(=[#8])-[#6]-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1\n", "Row: 2525 BindingDB_Patents: Inhibition Assay. Inhibition of human FXIa was determined by the method described in [0092]-[0098] using activated human Factor XI from Enzyme Research Laboratories at 96 ng/mL and H-D-Lys(Cbo)-Pro-Arg-pNA (Pefachrome PCa) at 5 mM, 4 mM, and 2 mM as substrate; results are reported as Ki values (nanomolar).\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 47.9, mcs nAts: 40\n", "[#7]=[#6](-[#7])-[#6]1:[#6]:[#6]:[#6](:[#6]:[#6]:1)-[#6]-[#7]-[#6](=[#8])-[#6](-[#6]-[#6]-[#6]1-[#6]-[#6]-[#7]-[#6]-[#6]-1)-[#7]-[#6](=[#8])-[#6](-[#6]-[#6]-[#6])-[#7]-[#16](=[#8])(=[#8])-[#6]-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1\n", "Row: 2526 BindingDB_Patents: Inhibition Assay. Inhibition of human aPC was determined by the method described in [0092]-[0098] using human activated protein C from Enzyme Research Laboratories at 2.2 nM and H-D-Lys(Cbo)-Pro-Arg-pNA (Pefachrome PCa) at 2 mM, 1 mM, and 0.5 mM as substrate; results are reported as Ki values (nanomolar).\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 47.9, mcs nAts: 40\n", "[#7]=[#6](-[#7])-[#6]1:[#6]:[#6]:[#6](:[#6]:[#6]:1)-[#6]-[#7]-[#6](=[#8])-[#6](-[#6]-[#6]-[#6]1-[#6]-[#6]-[#7]-[#6]-[#6]-1)-[#7]-[#6](=[#8])-[#6](-[#6]-[#6]-[#6])-[#7]-[#16](=[#8])(=[#8])-[#6]-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1\n", "Row: 2527 BindingDB_Patents: Inhibition Assay. Inhibition of human FXa was determined by the method described in [0092]-[0098] using activated human Factor X from Enzyme Research Laboratories at 5 mIU/mL and MeOCO-d-Cha-Gly-Arg-pNA (Pefachrome FXa) at 2 mM, 1 mM, and 0.5 mM as substrate; results are reported as Ki values (nanomolar).\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 47.9, mcs nAts: 40\n", "[#7]=[#6](-[#7])-[#6]1:[#6]:[#6]:[#6](:[#6]:[#6]:1)-[#6]-[#7]-[#6](=[#8])-[#6](-[#6]-[#6]-[#6]1-[#6]-[#6]-[#7]-[#6]-[#6]-1)-[#7]-[#6](=[#8])-[#6](-[#6]-[#6]-[#6])-[#7]-[#16](=[#8])(=[#8])-[#6]-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1\n", "Row: 2528 BindingDB_Patents: FRET-Based Binding Assay. Assay protocol: Compounds were evaluated on an in-vitro binding assay developed based on the technology described in the patent WO 98/55873. This assay was developed from hA2A receptor that was fused at its amino terminal domain to Green Fluorescent Protein (GFP) and stably expressed in HEK cells. The probe used is a dyed ligand derived from the non-selective CGS15943. For the FRET-binding experiment, HEK GFP-A2A stable cell line was seeded onto poly-D-lysine precoated black-walled 96-well plates in normal growth media (0.7 105 cells per well). After 24 hours of culture at 37° C., the cell media was removed and cells were washed. The tested compounds were applied on cells by the FLIPRTETRA® (Molecular Devices®) and incubated for 10 minutes prior to addition of the dyed probe. When a drug interacts with the receptor, the FRET signal measured by the variation of GFP fluorescence at 510 nm is disrupted. The time curves of ligand binding were recorded during 1000 seconds.\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 29.8, mcs nAts: 10\n", "[#6,#7]-[#6,#7]1:[#6,#7]:[#7,#6,#8]:[#6]2:[#7,#6]:1:[#6,#7]:[#6]:[#6]:[#6]:2\n", "Row: 2529 Inhibition of [125I]NDP-MSH binding to human Melanocortin 5 receptor expressed in HEK293 cells\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 36.5, mcs nAts: 29\n", "[#7]=,-[#6](-,=[#7]-[#6]1:[#6]:[#6]:[#6](:[#6]:[#6]:1)-[#6](=[#8])-[#7]-[#6]-[#6]-[#6]1:[#6]:[#6]:[#6](:[#6]:[#6]:1-[#17])-[#17])-,=[#7]-[#6]1-[#6]-[#6]-[#6]-[#6]-[#6]-1\n", "Row: 2530 Inhibitory activity against alpha carbonic anhydrase (Zn-Cam) from Methanosarcina thermophila\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 14.6, mcs nAts: 5\n", "[#7,#6,#8]-[#16,#6](=,-[#8,#7,#9])(=,-[#8,#9])-,=[#8,#6,#7,#9]\n", "Row: 2531 Inhibitory activity against alpha carbonic anhydrase (Co-Cam) from Methanosarcina thermophila\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 14.6, mcs nAts: 5\n", "[#7,#6,#8]-[#16,#6](=,-[#8,#7,#9])(=,-[#8,#9])-,=[#8,#6,#7,#9]\n", "Row: 2532 Binding affinity for Lysophosphatidic acid receptor 3 expressed in RH7777 rat hepatoma cells\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 20.3, mcs nAts: 14\n", "[#6]-[#6]-[#6]-[#6]-[#6]-,=[#6,#8]-[#6,#7]-[#6]-[#6]-[#6,#8]-[#15,#6](=,-[#8,#9])(-[#8,#9])-,=[#8,#15,#16]\n", "Row: 2533 Inhibitory constant against dopamine D2 receptor using 0.2 nM [3H]-spiperone\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 25.4, mcs nAts: 9\n", "[#6,#8]-,=[#6]-[#7,#6]1-,:[#6]-,:[#6]-,:[#6,#7](-,:[#6]-,:[#6]-,:1)-[#6,#9]\n", "Row: 2534 Inhibitory activity against human carbonic anhydrase II at 0.01 uM\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 14.6, mcs nAts: 5\n", "[#7,#6,#8]-[#16,#6](=,-[#8,#7,#9])(=,-[#8,#9])-,=[#8,#6,#7,#9]\n", "Row: 2535 Inhibitory activity against human carbonic anhydrase I at 0.09 uM\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 14.6, mcs nAts: 5\n", "[#7,#6,#8]-[#16,#6](=,-[#8,#7,#9])(=,-[#8,#9])-,=[#8,#6,#7,#9]\n", "Row: 2536 BindingDB_Patents: FLIPR Assay. The FLIPR protocol consists of 2 substance additions. First the compounds to be tested (10 uM) are pipetted onto the cells and the Ca2+ influx is compared with the control (capsaicin 10 uM). This provides the result in % activation based on the Ca2+ signal after the addition of 10 uM of capsaicin (CP). After 5 minutes' incubation, 100 nM of capsaicin are applied and the Ca2+ influx is also determined.Desensitising agonists and antagonists lead to suppression of the Ca2+ influx. The % inhibition is calculated compared to the maximum achievable inhibition with 10 uM of capsazepine.Triple analyses (n=3) are carried out and repeated in at least 3 independent experiments (N=4).Starting from the percentage displacement caused by different concentrations of the compounds to be tested of general formula I, IC50 inhibitory concentrations which cause a 50-percent displacement of capsaicin were calculated.\n", " * postgresql://localhost/chembl_23\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Mean nAts 36.0, mcs nAts: 33\n", "[#6,#17]-[#6]1:[#6]:[#6]:[#6]:[#6](:[#6]:1)-[#6]1:[#7,#6]:[#6](-[#6](-[#9,#6])(-[#9,#6])-[#9,#6]):[#6]:[#6]:[#6]:1-[#6]-[#7]-[#6](=[#8])-[#7,#6]-[#6]1:[#6]:[#6]:[#6](:[#6]:[#6]:1)-[#6]-[#7]-[#16,#6](=,-[#8,#6,#7])=,-[#8]\n", "Row: 2537 Inhibitory concentration against the plasmepsin-1 of Plasmodium falciparum\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 44.6, mcs nAts: 21\n", "[#8]=[#6](-[#6]-[#6](-[#8])-[#6](-[#6]-[#8]-[#6]-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1)-[#7]-[#6](=[#8])-[#6])-[#7]-[#6]\n", "Row: 2538 BindingDB_Patents: Binding Assay. Binding assay using NET, DAT and SERT enzyme.\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 16.5, mcs nAts: 15\n", "[#6,#9,#17]-[#6]1:[#6]:[#6]:[#6](:[#6]:[#6]:1-[#9,#6,#17])-[#6]12-[#6]-[#6]-1-[#6]-[#7](-[#6]-2)-[#6]\n", "Row: 2539 Binding affinity against 5 Hydroxy tryptamine 6 receptor\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 23.8, mcs nAts: 7\n", "[#8,#6,#7,#16,#35]-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1\n", "Row: 2540 BindingDB_Patents: Inhibition Assay. The inhibitory effect for the individual enzymes was determined in analogy to a previously disclosed method (Sturzebecher et al., J. Med. Chem., 40, 3091-3099 (1997)). \n", " * postgresql://localhost/chembl_23\n", "Mean nAts 47.9, mcs nAts: 40\n", "[#7]=[#6](-[#7])-[#6]1:[#6]:[#6]:[#6](:[#6]:[#6]:1)-[#6]-[#7]-[#6](=[#8])-[#6](-[#6]-[#6]-[#6]1-[#6]-[#6]-[#7]-[#6]-[#6]-1)-[#7]-[#6](=[#8])-[#6](-[#6]-[#6]-[#6])-[#7]-[#16](=[#8])(=[#8])-[#6]-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1\n", "Row: 2541 Inhibitory activity against monoamine oxidase B in isolated bovine brain mitochondria\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 16.1, mcs nAts: 10\n", "[#6,#8]-,=[#7,#6]-[#6,#7]-[#6,#8]-[#6,#7]1:,-[#6]:,-[#6]:,-[#6,#8]:,-[#6]:,-[#6]:,-1\n", "Row: 2542 Inhibition of human Thyroid hormone receptor alpha\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 60.8, mcs nAts: 34\n", "[#6]#[#6]-[#6]1(-[#8])-[#6]-[#6]-[#6]2-[#6]-1(-[#6]-[#6](-[#6]1-[#6]-2-[#6]-[#6]-[#6]2-[#6]=1-[#6]-[#6]-[#6](-[#6]=2)=[#8])-[#6]1:[#6]:[#6]:[#6](:[#6]:[#6]:1)-[#7](-[#6])-[#6]-[#6]-[#8,#6,#7]-[#6,#8,#16])-[#6]\n", "Row: 2543 Binding affinity to human recombinant glucocorticoid receptor by fluorescence polarization assay\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 39.7, mcs nAts: 32\n", "[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1-[#16](=[#8])(=[#8])-[#7]1-[#6]-[#6]-[#6]2-[#6](-[#6]-1)(-[#6]-[#6]1:[#6](-[#6]=2):[#7](:[#7]:[#6]:1)-[#6]1:[#6]:[#6]:[#6](:[#6]:[#6]:1)-[#9])-[#6](=[#8])-[#6]\n", "Row: 2544 Antagonist activity at glucocorticoid receptor in human HepG2 cells assessed as inhibition of glucocorticoid-induced TAT activity after 24 hrs\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 39.7, mcs nAts: 32\n", "[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1-[#16](=[#8])(=[#8])-[#7]1-[#6]-[#6]-[#6]2-[#6](-[#6]-1)(-[#6]-[#6]1:[#6](-[#6]=2):[#7](:[#7]:[#6]:1)-[#6]1:[#6]:[#6]:[#6](:[#6]:[#6]:1)-[#9])-[#6](=[#8])-[#6]\n", "Row: 2545 Compound was evaluated for its binding affinity against Histamine H3 receptor of guinea pig brain membrane\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 25.3, mcs nAts: 18\n", "[#8]=[#6](-[#7]-[#6])-[#8,#7]-[#6]-[#6]1:[#6]:[#6]:[#6](:[#6]:[#6]:1)-[#6]-[#6]1:[#6]:[#7]:[#6]:[#7]:1\n", "Row: 2546 Evaluated for the percent binding affinity against H1 receptor by an H1 histamine-mediated bronchospasm\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 21.8, mcs nAts: 14\n", "[#8]=[#16](=[#8])(-[#7]-[#6]-[#6]-[#6]-[#6])-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1\n", "Row: 2547 Inhibition of human Thyroid hormone receptor beta\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 60.8, mcs nAts: 34\n", "[#6]#[#6]-[#6]1(-[#8])-[#6]-[#6]-[#6]2-[#6]-1(-[#6]-[#6](-[#6]1-[#6]-2-[#6]-[#6]-[#6]2-[#6]=1-[#6]-[#6]-[#6](-[#6]=2)=[#8])-[#6]1:[#6]:[#6]:[#6](:[#6]:[#6]:1)-[#7](-[#6])-[#6]-[#6]-[#8,#6,#7]-[#6,#8,#16])-[#6]\n", "Row: 2548 Inhibition of human Mineralocorticoid receptor\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 60.8, mcs nAts: 34\n", "[#6]#[#6]-[#6]1(-[#8])-[#6]-[#6]-[#6]2-[#6]-1(-[#6]-[#6](-[#6]1-[#6]-2-[#6]-[#6]-[#6]2-[#6]=1-[#6]-[#6]-[#6](-[#6]=2)=[#8])-[#6]1:[#6]:[#6]:[#6](:[#6]:[#6]:1)-[#7](-[#6])-[#6]-[#6]-[#8,#6,#7]-[#6,#8,#16])-[#6]\n", "Row: 2549 Inhibitory activity towards human Melanocortin 4 Receptor\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 45.3, mcs nAts: 16\n", "[#7]=,-[#6](-[#7])-,=[#7]-[#6]-[#6]-[#6]-[#6](-[#7]-[#6](=[#8])-[#6]-[#6])-[#6](=,-[#8,#7])-,=[#7,#8]\n", "Row: 2550 Inhibitory activity towards human Melanocortin 1 Receptor\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 45.3, mcs nAts: 16\n", "[#7]=,-[#6](-[#7])-,=[#7]-[#6]-[#6]-[#6]-[#6](-[#7]-[#6](=[#8])-[#6]-[#6])-[#6](=,-[#8,#7])-,=[#7,#8]\n", "Row: 2551 Displacement of [3H]R-alpha-methyl histamine from recombinant human H3 receptor\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 28.9, mcs nAts: 16\n", "[#7,#6,#8]-,=[#6](=,-[#8,#6,#7])-[#6,#7]1:,-[#6]:,-[#6]:,-[#6](:,-[#6]:,-[#6]:,-1)-[#8]-[#6]1-,:[#6]-,:[#6]-,:[#8,#6,#7]-,:[#6]-,:[#6]-,:1\n", "Row: 2552 Inhibition of human glucocorticoid receptor\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 60.8, mcs nAts: 34\n", "[#6]#[#6]-[#6]1(-[#8])-[#6]-[#6]-[#6]2-[#6]-1(-[#6]-[#6](-[#6]1-[#6]-2-[#6]-[#6]-[#6]2-[#6]=1-[#6]-[#6]-[#6](-[#6]=2)=[#8])-[#6]1:[#6]:[#6]:[#6](:[#6]:[#6]:1)-[#7](-[#6])-[#6]-[#6]-[#8,#6,#7]-[#6,#8,#16])-[#6]\n", "Row: 2553 Inhibition of human Estrogen receptor alpha\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 60.8, mcs nAts: 34\n", "[#6]#[#6]-[#6]1(-[#8])-[#6]-[#6]-[#6]2-[#6]-1(-[#6]-[#6](-[#6]1-[#6]-2-[#6]-[#6]-[#6]2-[#6]=1-[#6]-[#6]-[#6](-[#6]=2)=[#8])-[#6]1:[#6]:[#6]:[#6](:[#6]:[#6]:1)-[#7](-[#6])-[#6]-[#6]-[#8,#6,#7]-[#6,#8,#16])-[#6]\n", "Row: 2554 Inhibition of human Estrogen receptor beta\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 60.8, mcs nAts: 34\n", "[#6]#[#6]-[#6]1(-[#8])-[#6]-[#6]-[#6]2-[#6]-1(-[#6]-[#6](-[#6]1-[#6]-2-[#6]-[#6]-[#6]2-[#6]=1-[#6]-[#6]-[#6](-[#6]=2)=[#8])-[#6]1:[#6]:[#6]:[#6](:[#6]:[#6]:1)-[#7](-[#6])-[#6]-[#6]-[#8,#6,#7]-[#6,#8,#16])-[#6]\n", "Row: 2555 Inhibitory constant against HIV-1 reverse transcriptase\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 29.0, mcs nAts: 20\n", "[#7]-[#6]1-[#6]-,=[#16,#6]-[#6](-[#8,#6]-1)-[#6]-[#8]-[#15](=,-[#8,#5])(-,=[#8])-[#8]-[#15](=[#8])(-[#8])-[#8,#6]-[#15](=[#8])(-[#8])-[#8]\n", "Row: 2556 Inhibition of human progesterone receptor\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 60.8, mcs nAts: 34\n", "[#6]#[#6]-[#6]1(-[#8])-[#6]-[#6]-[#6]2-[#6]-1(-[#6]-[#6](-[#6]1-[#6]-2-[#6]-[#6]-[#6]2-[#6]=1-[#6]-[#6]-[#6](-[#6]=2)=[#8])-[#6]1:[#6]:[#6]:[#6](:[#6]:[#6]:1)-[#7](-[#6])-[#6]-[#6]-[#8,#6,#7]-[#6,#8,#16])-[#6]\n", "Row: 2557 Inhibition of human androgen receptor\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 60.8, mcs nAts: 34\n", "[#6]#[#6]-[#6]1(-[#8])-[#6]-[#6]-[#6]2-[#6]-1(-[#6]-[#6](-[#6]1-[#6]-2-[#6]-[#6]-[#6]2-[#6]=1-[#6]-[#6]-[#6](-[#6]=2)=[#8])-[#6]1:[#6]:[#6]:[#6](:[#6]:[#6]:1)-[#7](-[#6])-[#6]-[#6]-[#8,#6,#7]-[#6,#8,#16])-[#6]\n", "Row: 2558 Inhibitory constant against human Carbonic anhydrase IX\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 20.5, mcs nAts: 7\n", "[#7,#16]-[#6]1:[#7]:[#7]:[#6](:[#16,#7]:1)-[#16,#6]\n", "Row: 2559 Inhibitory constant against human Carbonic anhydrase II\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 20.5, mcs nAts: 7\n", "[#7,#16]-[#6]1:[#7]:[#7]:[#6](:[#16,#7]:1)-[#16,#6]\n", "Row: 2560 Inhibitory constant against human Carbonic anhydrase I\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 20.5, mcs nAts: 7\n", "[#7,#16]-[#6]1:[#7]:[#7]:[#6](:[#16,#7]:1)-[#16,#6]\n", "Row: 2561 Inhibitory activity against coagulation factor Xa\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 31.5, mcs nAts: 22\n", "[#6]-[#6](-[#6])-[#7]1-[#6]-[#6]-[#6](-[#6]-[#6]-1)-[#7]-[#6](=[#8])-[#6]1:[#6]:[#6]2:[#6]:[#6]:[#6]:[#6]:[#6]:2:[#7]:1-[#6]\n", "Row: 2562 Binding affinity towards kappa-opioid receptor by displacement of [3H]EKC at 10 nM from guinea pig cortical tissue\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 23.8, mcs nAts: 17\n", "[#6]-[#6]-[#7]1-[#6]-[#6]-[#6](-[#6](-[#6]-1)-[#6])(-[#6])-[#6]1:[#6]:[#6]:[#6]:[#6](:[#6]:1)-[#8]\n", "Row: 2563 In vitro inhibitory activity against bovine trypsin\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 37.0, mcs nAts: 21\n", "[#7]-[#6](-[#6]-[#6]1:,-[#6]:,-[#6]:,-[#6]:,-[#6]:,-[#6]:,-1)-[#6](=[#8])-[#7]1-[#6]-[#6]-[#6]-[#6]-1-[#6](=[#8])-[#7]-[#6]-[#6]\n", "Row: 2564 Competitive inhibition of trypsin\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 36.5, mcs nAts: 18\n", "[#6,#16]-[#7]1-[#6]-[#6]-[#6](-[#6]-[#6]-1)-[#8]-[#6]1:[#6]:[#6]:[#6](:[#6]:[#6]:1-[#9,#6,#7])-[#7]-[#6]-[#6]\n", "Row: 2565 Sigma opioid receptor type 2 affinity in rat liver by employing [3H]ditolylguanidine as radioligand\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 23.5, mcs nAts: 8\n", "[#6]1:,-[#6]:,-[#6,#7]:,-[#6]:,-[#6,#8]:,-[#6,#7]:,-1-[#7,#6,#8]-[#6,#7,#8]\n", "Row: 2566 Inhibitory constant was determined against class A RTEM-1 Beta-lactamase from Escherichia coli\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 12.0, mcs nAts: 8\n", "[#8,#6]-,=[#5,#6,#7,#8]-[#6]1:,-[#6]:,-[#6]:,-[#6]:,-[#6]:,-[#6]:,-1\n", "Row: 2567 Displacement of mixture of 4- and 5-(N-(7-(1-(2-((6-(3-carboxy-4-(6-hydroxy-3-oxo-3Hxanthen-9-yl)benzamido)hexyl)amino)-2-oxoethyl)-3,5-dimethyl-1H-pyrazol-4-yl)-6-chloro-3-(3-(4-chloro-3,5-dimethylphenoxy)propyl)-1H-indole-2-carbonyl)sulfamoyl)furan-2-carboxylic acid from N-terminal His-tagged human Mcl-1 (172 to 327 residues) expressed in Escherichia coli BL21(DE3) after 1.5 hrs by FPA assay\n", " * postgresql://localhost/chembl_23\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Mean nAts 47.8, mcs nAts: 30\n", "[#6]-[#6]1:[#6]:[#6](-[#8]-[#6]-[#6]-[#6]-[#6]2:[#6](-[#6](=[#8])-[#7]-[#16](=,-[#8,#6])(=[#8])-,=[#6,#8]):[#7]:[#6]3:[#6]:2:[#6]:[#6]:[#6]:[#6]:3-[#6]):[#6]:[#6](:[#6]:1-[#17])-[#6]\n", "Row: 2568 Displacement of [3H]DPCPX from human adenosine A1 receptor expressed in HEK293 cells by scintillation counting\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 28.0, mcs nAts: 16\n", "[#7]-[#6]1:[#7]:[#6](-[#8,#7]):[#7]:[#6]2:[#7]:1:[#7]:[#6](:[#7]:2)-[#6]1:[#6]:[#6]:[#6]:[#8]:1\n", "Row: 2569 Displacement of [3H]N-methylspiperone from human dopamine D3 receptor by liquid scintillation counting\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 24.0, mcs nAts: 23\n", "[#9]-[#6]1:[#6]:[#6]:[#6](:[#6]:[#6]:1)-[#8,#6,#16]-[#6]-[#6]-[#6]-[#7]1-[#6]-[#6]-[#7,#6](-[#6]-[#6]-1)-[#6]1:[#6,#7]:[#6]:[#6]:[#6]:[#6,#7]:1\n", "Row: 2570 Binding affinity to human histamine H3 receptor\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 20.7, mcs nAts: 12\n", "[#7,#8]-,=[#6](=,-[#8,#7])-[#6]1:[#6,#7]:[#7,#6]2:[#6]:[#6]:[#7,#6]:[#6,#7]:[#6]:2:[#7]:1\n", "Row: 2571 Inhibition of human carbonic anhydrase 2 esterase activity using 4-nitrophenylacetate as substrate\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 17.1, mcs nAts: 7\n", "[#6,#8,#16]-,=[#6]1-,:[#6]-,:[#6]-,:[#6]-,:[#6]-,:[#6]-,:1\n", "Row: 2572 Inhibition of human carbonic anhydrase 1 esterase activity using 4-nitrophenylacetate as substrate\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 17.1, mcs nAts: 7\n", "[#6,#8,#16]-,=[#6]1-,:[#6]-,:[#6]-,:[#6]-,:[#6]-,:[#6]-,:1\n", "Row: 2573 Displacement of [125I]alpha-bungarotoxin from alpha7 nAChR in Sprague-Dawley rat cerebral cortex by beta counting\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 17.9, mcs nAts: 16\n", "[#8,#6,#35]-[#6]1:[#6]:[#6]:[#6]2:[#6](:[#6]:1)-[#8]-[#6](-[#6]1-[#6,#7]-[#6]-[#6]-[#7,#6]-1)-[#6]-[#8]-2\n", "Row: 2574 Inhibition human recombinant cSRC using KVEKIGEGTYGVVYK peptide substrate in presence of [gamma-32P]-ATP\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 27.5, mcs nAts: 19\n", "[#6]-[#7]-[#6]1:[#7]:[#6]:[#7]:[#6]2:[#6]:1:[#6]:[#7]:[#7]:2-[#6]-[#6]-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1\n", "Row: 2575 Displacement of [3H]NAMH from rat cloned histamine 3 receptor expressed in CHO cells\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 25.8, mcs nAts: 23\n", "[#6]-[#6]1-[#6]-[#6]-[#6]-[#7]-1-[#6]-[#6]-[#6]-[#8]-[#6]1:[#6]:[#6]:[#6](:[#6]:[#6,#7]:1)-[#6]1:[#6,#7]:[#6,#7]:[#6](:[#7,#6]:[#7,#6]:1)=[#8]\n", "Row: 2576 Displacement of [3H]NAMH from human cloned histamine 3 receptor expressed in CHO cells\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 25.8, mcs nAts: 23\n", "[#6]-[#6]1-[#6]-[#6]-[#6]-[#7]-1-[#6]-[#6]-[#6]-[#8]-[#6]1:[#6]:[#6]:[#6](:[#6]:[#6,#7]:1)-[#6]1:[#6,#7]:[#6,#7]:[#6](:[#7,#6]:[#7,#6]:1)=[#8]\n", "Row: 2577 Inhibition of human butyrylcholinesterase using butyrylthiocholine as substrate by spectrophotometry\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 14.9, mcs nAts: 6\n", "[#6,#8]-,=[#6](=,-[#8,#6,#7,#16])-[#6](-,=[#6,#8,#35])=,-[#8,#6,#7,#16]\n", "Row: 2578 Inhibition of human acetylcholinesterase using acetylthiocholine as substrate by spectrophotometry\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 14.9, mcs nAts: 6\n", "[#6,#8]-,=[#6](=,-[#8,#6,#7,#16])-[#6](-,=[#6,#8,#35])=,-[#8,#6,#7,#16]\n", "Row: 2579 Inhibition of rabbit liver carboxylesterase using o-nitrophenyl acetate as substrate after for 5 mins by spectrophotometry\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 14.9, mcs nAts: 6\n", "[#6,#8]-,=[#6](=,-[#8,#6,#7,#16])-[#6](-,=[#6,#8,#35])=,-[#8,#6,#7,#16]\n", "Row: 2580 Inhibition of human intestinal carboxylesterase using o-nitrophenyl acetate as substrate after 5 mins by spectrophotometry\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 14.9, mcs nAts: 6\n", "[#6,#8]-,=[#6](=,-[#8,#6,#7,#16])-[#6](-,=[#6,#8,#35])=,-[#8,#6,#7,#16]\n", "Row: 2581 Inhibition of human liver carboxylesterase1 using o-nitrophenyl acetate as substrate after 5 mins by spectrophotometry\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 14.9, mcs nAts: 6\n", "[#6,#8]-,=[#6](=,-[#8,#6,#7,#16])-[#6](-,=[#6,#8,#35])=,-[#8,#6,#7,#16]\n", "Row: 2582 Displacement of [3H]-PGE2 from mouse EP1 receptor expressed in CHO cells after 60 mins by scintillation counting\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 28.8, mcs nAts: 15\n", "[#6]-[#6]-[#6](-[#8])-[#6]=[#6]-[#6]1-[#6]-[#6]-[#6](-[#7,#6]-1-[#6]-[#6]-,=[#6,#16])=[#8]\n", "Row: 2583 Displacement of [3H]-PGE2 from mouse EP2 receptor expressed in CHO cells after 60 mins by scintillation counting\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 28.8, mcs nAts: 15\n", "[#6]-[#6]-[#6](-[#8])-[#6]=[#6]-[#6]1-[#6]-[#6]-[#6](-[#7,#6]-1-[#6]-[#6]-,=[#6,#16])=[#8]\n", "Row: 2584 Displacement of [3H]-PGE2 from mouse EP4 receptor expressed in CHO cells after 60 mins by scintillation counting\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 28.8, mcs nAts: 15\n", "[#6]-[#6]-[#6](-[#8])-[#6]=[#6]-[#6]1-[#6]-[#6]-[#6](-[#7,#6]-1-[#6]-[#6]-,=[#6,#16])=[#8]\n", "Row: 2585 Inhibition of human carbonic anhydrase 6 by stopped flow CO2 hydration method\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 18.5, mcs nAts: 4\n", "[#7,#6,#8]-,=[#6,#7]-[#6,#7,#8]-[#6,#7]\n", "Row: 2586 Displacement of [3H]-MPEPy from human mGluR5 expressed in HEK293FT cells after 1 hr by liquid scintillation counting analysis\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 25.6, mcs nAts: 19\n", "[#6]-[#6]1:[#7]:[#7](-[#6]):[#6]2:[#6]:1:[#6,#7]:[#6]:[#6](:[#7]:2)-[#8]-[#6]-[#6]1:[#6]:[#6]:[#6]:[#6]:[#7]:1\n", "Row: 2587 Displacement of [3]DPCPX from human adenosine A1 receptor expressed in CHO cells\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 24.2, mcs nAts: 20\n", "[#6]-[#8,#7]-[#6]1:[#7]:[#6]2:[#6]:[#6]:[#6]:[#6]:[#6]:2:[#7]2:[#6]:1:[#7]:[#6](:[#7]:2)-[#6]1:[#6,#8]:[#6]:[#6]:[#8,#6]:1\n", "Row: 2588 Inhibition of human cytosolic carbonic anhydrase 1 by stopped-flow CO2 hydration assay\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 22.8, mcs nAts: 6\n", "[#7,#6,#16,#17]-,=[#6,#7]1:,-[#7,#6,#8,#16]:,-[#7,#6,#8]:,-[#6,#7]:,-[#16,#6,#7,#8]:,-1\n", "Row: 2589 Displacement of [3H]NAMH from rat histamine H3 receptor expressed in CHO cells\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 25.4, mcs nAts: 21\n", "[#6]-[#7]1-[#6]-[#6]-[#6](-[#6]-[#6]-1)-[#8]-[#6]1:[#6]:[#6]:[#6](:[#6]:[#7,#6]:1)-[#6]1:,-[#6,#7]:,-[#6,#7]:,-[#6](:,-[#7,#6]:,-[#7,#6]:,=1)=[#8]\n", "Row: 2590 Inhibition of human cytosolic carbonic anhydrase 2 by stopped-flow CO2 hydration assay\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 22.8, mcs nAts: 6\n", "[#7,#6,#16,#17]-,=[#6,#7]1:,-[#7,#6,#8,#16]:,-[#7,#6,#8]:,-[#6,#7]:,-[#16,#6,#7,#8]:,-1\n", "Row: 2591 Displacement of [3H]GR113808 from human recombinant 5HT4R expressed in HEK293T cells\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 26.1, mcs nAts: 25\n", "[#6]-[#6]-[#6]-[#7]1-[#6]-[#6]-[#6](-[#6]-[#6]-1)-[#6]-[#8]-[#6]1:[#7]:[#6]2:[#6]:[#6]:[#6]:[#6]:[#6]:2:[#6]2:[#6]:1:[#6]:[#6]:[#6,#7]:[#6,#7]:2\n", "Row: 2592 Inhibition of human transmembrane carbonic anhydrase 9 by stopped-flow CO2 hydration assay\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 22.8, mcs nAts: 6\n", "[#7,#6,#16,#17]-,=[#6,#7]1:,-[#7,#6,#8,#16]:,-[#7,#6,#8]:,-[#6,#7]:,-[#16,#6,#7,#8]:,-1\n", "Row: 2593 Inhibition of human transmembrane carbonic anhydrase 12 by stopped-flow CO2 hydration assay\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 22.8, mcs nAts: 6\n", "[#7,#6,#16,#17]-,=[#6,#7]1:,-[#7,#6,#8,#16]:,-[#7,#6,#8]:,-[#6,#7]:,-[#16,#6,#7,#8]:,-1\n", "Row: 2594 Binding affinity for Plasmodium falciparum plasmepsin-2.\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 41.9, mcs nAts: 25\n", "[#6,#8]-,=[#6](-[#6])-[#6,#7](-[#7,#6]-[#6]-[#6]1:[#6]:[#6]:[#6]:[#6]:[#7,#6]:1)-[#6]-[#7,#6]-[#6](-[#6]-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1)-[#6,#7]-[#6]-,=[#7,#6,#8]\n", "Row: 2595 Inhibition of human recombinant PACE4 expressed in drosophila schneider 2 cells using pyroGlu-Arg-Thr-Lys-Arg-AMC as substrate after 1 hr\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 74.0, mcs nAts: 51\n", "[#6]-[#6](=,-[#8,#6])-[#7,#6]-[#6](-[#6,#7]-[#6](-,=[#6,#8])-,=[#6,#8])-[#6](=[#8])-[#7]-[#6](-[#6]-[#6]-[#6])-[#6](=[#8])-[#7]-[#6](-[#6]-[#6]-[#6])-[#6](=[#8])-[#7]-[#6](-[#6]-[#6])-[#6](=[#8])-[#7]-[#6](-[#6]-[#6]-[#6]-[#7,#6]-[#6,#7])-[#6](=[#8])-[#7]-[#6](-[#6]-[#7,#6]-[#6]-[#6,#7]-[#6]-,=[#6,#7])-[#6](-[#6,#7])-,=[#6,#8]\n", "Row: 2596 Inhibition of human recombinant furin expressed in drosophila schneider 2 cells using pyroGlu-Arg-Thr-Lys-Arg-AMC as substrate after 1 hr\n", " * postgresql://localhost/chembl_23\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Mean nAts 74.0, mcs nAts: 51\n", "[#6]-[#6](=,-[#8,#6])-[#7,#6]-[#6](-[#6,#7]-[#6](-,=[#6,#8])-,=[#6,#8])-[#6](=[#8])-[#7]-[#6](-[#6]-[#6]-[#6])-[#6](=[#8])-[#7]-[#6](-[#6]-[#6]-[#6])-[#6](=[#8])-[#7]-[#6](-[#6]-[#6])-[#6](=[#8])-[#7]-[#6](-[#6]-[#6]-[#6]-[#7,#6]-[#6,#7])-[#6](=[#8])-[#7]-[#6](-[#6]-[#7,#6]-[#6]-[#6,#7]-[#6]-,=[#6,#7])-[#6](-[#6,#7])-,=[#6,#8]\n", "Row: 2597 Ability to displace [3H]3-methoxy-5-(pyridin-2-ylethynyl)pyridine from binding to metabotropic glutamate receptor 5 in rat cortical membranes\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 21.0, mcs nAts: 18\n", "[#6,#8,#9,#17]-[#6]1:[#6]:[#6]:[#6]:[#6](:[#6]:1)-[#7]1:[#7,#6]:[#7,#6]:[#6](:[#7,#6]:1)-[#6]1:[#6]:[#6]:[#6]:[#6]:[#7]:1\n", "Row: 2598 Binding affinity to F10A (unknown origin) assessed as p-nitroaniline release by spectrophotometric analysis\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 42.8, mcs nAts: 24\n", "[#6]-[#8]-[#6]1:[#6]:[#6](-[#6](-[#7]-[#6]2:[#6]:[#6]:[#6]3:[#6](:[#6]:2):[#6]:[#6]:[#7]:[#6]:3-[#7])-[#6](=,-[#8,#7])-,=[#7,#8]):[#6]:[#6]:[#6]:1\n", "Row: 2599 Displacement of [125I]]-alpha-bungarotoxin from alpha7 nAChR in rat hippocampus membranes by liquid scintillation counting method\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 15.0, mcs nAts: 9\n", "[#6,#7]1:[#6]:[#6,#7]:[#6]:[#6](:[#6]:1)-[#8]-[#6]-[#6]\n", "Row: 2600 Binding affinity to F11A (unknown origin) assessed as p-nitroaniline release by spectrophotometric analysis\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 42.8, mcs nAts: 24\n", "[#6]-[#8]-[#6]1:[#6]:[#6](-[#6](-[#7]-[#6]2:[#6]:[#6]:[#6]3:[#6](:[#6]:2):[#6]:[#6]:[#7]:[#6]:3-[#7])-[#6](=,-[#8,#7])-,=[#7,#8]):[#6]:[#6]:[#6]:1\n", "Row: 2601 Inhibition of human POP expressed in Escherichia coli BL21 pre-incubated for 30 mins before ZGP-pNA substrate addition\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 27.2, mcs nAts: 19\n", "[#8]=[#6]1-[#6]2-,:[#6](-,:[#6]=,:[#6]-,:[#6]-,:[#6]-,:2-[#6](=[#8])-[#7]2-[#6]-[#6]-[#6]-[#6]-2)-[#6]-[#7]-1-[#6,#7,#8]-[#6]\n", "Row: 2602 Binding affinity to thrombin (unknown origin) assessed as p-nitroaniline release by spectrophotometric analysis\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 42.8, mcs nAts: 24\n", "[#6]-[#8]-[#6]1:[#6]:[#6](-[#6](-[#7]-[#6]2:[#6]:[#6]:[#6]3:[#6](:[#6]:2):[#6]:[#6]:[#7]:[#6]:3-[#7])-[#6](=,-[#8,#7])-,=[#7,#8]):[#6]:[#6]:[#6]:1\n", "Row: 2603 Inhibition of [3H]WIN-35428 uptake in human DAT transfected HEK293 cells\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 20.3, mcs nAts: 18\n", "[#6]-[#7]-[#6]-[#6]1:[#6]:[#7]:[#6](:[#6]:[#6]:1-[#8]-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1-[#17,#6,#8,#16])-[#6]\n", "Row: 2604 Displacement of [125I]-TARC from human recombinant CCR4 expressed in CHO cell membranes by scintillation counting method\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 33.7, mcs nAts: 26\n", "[#17,#9]-[#6]1:[#6]:[#6]:[#6](:[#6](:[#6]:1)-[#17,#9])-[#6]-[#7]-[#6]1:[#6]:[#6]:[#7]:[#6](:[#7]:1)-[#7]1-[#6]-[#6]-[#6]2(-[#6]-[#6]-1)-[#6]-[#6]-[#7]-[#6]-2\n", "Row: 2605 Inhibition of [3H]Nisoxetine uptake in human noradrenaline transporter transfected HEK293 cells\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 20.3, mcs nAts: 18\n", "[#6]-[#7]-[#6]-[#6]1:[#6]:[#7]:[#6](:[#6]:[#6]:1-[#8]-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1-[#17,#6,#8,#16])-[#6]\n", "Row: 2606 Inhibition of [3H]Citalopram uptake in human 5HTT transfected HEK293 cells\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 20.3, mcs nAts: 18\n", "[#6]-[#7]-[#6]-[#6]1:[#6]:[#7]:[#6](:[#6]:[#6]:1-[#8]-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1-[#17,#6,#8,#16])-[#6]\n", "Row: 2607 Displacement of [3H]diprenorphine from human cloned kappa opioid receptor\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 36.6, mcs nAts: 25\n", "[#6]-[#6](-[#7]-[#6](=[#8])-[#6]-[#6]-[#7]1-[#6]-[#6]-[#6](-[#6](-[#6]-1)-[#6])(-[#6])-[#6]1:[#6]:[#6]:[#6]:[#6](:[#6]:1)-[#8])-[#6](=[#8])-[#8]\n", "Row: 2608 Displacement of [3H]NMS from human muscarinic M1 receptor expressed in CHO cells by liquid scintillation counter\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 12.1, mcs nAts: 6\n", "[#6]1:,-[#6]:,-[#8,#6]:,-[#6](:,-[#6,#7,#8]:,-1)-[#6]\n", "Row: 2609 Displacement of [3H]NMS from human muscarinic M2 receptor expressed in CHO cells by liquid scintillation counter\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 12.1, mcs nAts: 6\n", "[#6]1:,-[#6]:,-[#8,#6]:,-[#6](:,-[#6,#7,#8]:,-1)-[#6]\n", "Row: 2610 Displacement of [3H]NMS from human muscarinic M3 receptor expressed in CHO cells by liquid scintillation counter\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 12.1, mcs nAts: 6\n", "[#6]1:,-[#6]:,-[#8,#6]:,-[#6](:,-[#6,#7,#8]:,-1)-[#6]\n", "Row: 2611 Displacement of [3H]NMS from human muscarinic M4 receptor expressed in CHO cells by liquid scintillation counter\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 12.1, mcs nAts: 6\n", "[#6]1:,-[#6]:,-[#8,#6]:,-[#6](:,-[#6,#7,#8]:,-1)-[#6]\n", "Row: 2612 Displacement of [3H]NMS from human muscarinic M5 receptor expressed in CHO cells by liquid scintillation counter\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 12.1, mcs nAts: 6\n", "[#6]1:,-[#6]:,-[#8,#6]:,-[#6](:,-[#6,#7,#8]:,-1)-[#6]\n", "Row: 2613 Displacement of [3H]-CP55940 from human CB1 receptor transfected in HEK293EBNA cell membranes after 90 mins by liquid scintillation counting analysis\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 33.0, mcs nAts: 23\n", "[#6]-[#6]1:[#6]:[#6]:[#6](:[#6]:[#6]:1)-[#6]-[#7]1:[#6]:[#6](-[#6]-,=[#7,#8]):[#6]:[#6]:1-[#6]1:[#6]:[#6]:[#6](:[#6](:[#6]:1)-[#6])-[#17]\n", "Row: 2614 Displacement of [3H]WAY-100635 from human 5HT1A receptor expressed in CHO cells\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 30.8, mcs nAts: 25\n", "[#6,#7]1:[#6](-[#7]2-[#6]-[#6]-[#7](-[#6]-[#6]-2)-[#6]-[#6]-[#6]2:[#6]:[#6]:[#6]3:[#6](:[#6]:2)-[#7]-[#6](=[#8])-[#6]-[#8]-3):[#6]:[#6]:[#6]:[#6]:1\n", "Row: 2615 Binding inhibition towards human serotonin transporter\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 18.0, mcs nAts: 10\n", "[#6]-[#6,#7]1:[#6]:[#7,#6]:[#6]2:[#6]:1:[#6]:[#6]:[#6]:[#6]:2\n", "Row: 2616 Displacement of [3H]5HT from human 5HT1B receptor expressed in CHO cells\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 30.8, mcs nAts: 25\n", "[#6,#7]1:[#6](-[#7]2-[#6]-[#6]-[#7](-[#6]-[#6]-2)-[#6]-[#6]-[#6]2:[#6]:[#6]:[#6]3:[#6](:[#6]:2)-[#7]-[#6](=[#8])-[#6]-[#8]-3):[#6]:[#6]:[#6]:[#6]:1\n", "Row: 2617 Displacement of [3H]5HT from human 5HT1D receptor expressed in CHO cells\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 30.8, mcs nAts: 25\n", "[#6,#7]1:[#6](-[#7]2-[#6]-[#6]-[#7](-[#6]-[#6]-2)-[#6]-[#6]-[#6]2:[#6]:[#6]:[#6]3:[#6](:[#6]:2)-[#7]-[#6](=[#8])-[#6]-[#8]-3):[#6]:[#6]:[#6]:[#6]:1\n", "Row: 2618 Displacement of [3H]citalopram from human SerT expressed pig LLCPK cells\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 30.8, mcs nAts: 25\n", "[#6,#7]1:[#6](-[#7]2-[#6]-[#6]-[#7](-[#6]-[#6]-2)-[#6]-[#6]-[#6]2:[#6]:[#6]:[#6]3:[#6](:[#6]:2)-[#7]-[#6](=[#8])-[#6]-[#8]-3):[#6]:[#6]:[#6]:[#6]:1\n", "Row: 2619 Inhibition of recombinant human FLAG-tagged ITK using biotinylated GST-SAM68 as substrate after 30 mins\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 33.6, mcs nAts: 23\n", "[#6]-[#7]-[#6]1:[#6,#7]:[#6](-[#6,#7]-[#6]2:,-[#6]:,-[#6]:,-[#6]:,-[#6]:,-[#6,#7]:,-2):[#7,#6]:[#6](:[#7,#6]:1)-[#7,#6]-[#6]1-,:[#6]-,:[#6]-,:[#6](-,:[#6]-,:[#6]-,:1)-[#8,#9]\n", "Row: 2620 Inhibition of LCK (unknown origin) using tamra-p34cdc-derived peptide as substrate after 30 mins\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 33.6, mcs nAts: 23\n", "[#6]-[#7]-[#6]1:[#6,#7]:[#6](-[#6,#7]-[#6]2:,-[#6]:,-[#6]:,-[#6]:,-[#6]:,-[#6,#7]:,-2):[#7,#6]:[#6](:[#7,#6]:1)-[#7,#6]-[#6]1-,:[#6]-,:[#6]-,:[#6](-,:[#6]-,:[#6]-,:1)-[#8,#9]\n", "Row: 2621 Inhibition of Aurora-B (unknown origin) using 5FAM-PKAtide as substrate after 120 mins\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 33.6, mcs nAts: 23\n", "[#6]-[#7]-[#6]1:[#6,#7]:[#6](-[#6,#7]-[#6]2:,-[#6]:,-[#6]:,-[#6]:,-[#6]:,-[#6,#7]:,-2):[#7,#6]:[#6](:[#7,#6]:1)-[#7,#6]-[#6]1-,:[#6]-,:[#6]-,:[#6](-,:[#6]-,:[#6]-,:1)-[#8,#9]\n", "Row: 2622 Inhibition of human carbonic anhydrase 7 by stopped flow CO2 hydration method\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 18.5, mcs nAts: 4\n", "[#7,#6,#8]-,=[#6,#7]-[#6,#7,#8]-[#6,#7]\n", "Row: 2623 Binding affinity towards kappa-opioid receptor by displacement of [3H]-EKC at from guinea pig cortical tissue\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 22.9, mcs nAts: 16\n", "[#6]-[#6]1-[#6]-[#7](-[#6])-[#6]-[#6]-[#6]-1(-[#6])-[#6]1:[#6]:[#6]:[#6]:[#6](:[#6]:1)-[#8]\n", "Row: 2624 Displacement of 3-[4-({2',6'-dimethyl-6-[(4-[3H])phenylmethoxy]biphenyl-3-yl}methoxy)phenyl] propanoic acid from human GPR40 receptor expressed in CHO cell membrane after 90 mins by liquid scintillation counting in the presence of 0.2% BSA\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 33.5, mcs nAts: 27\n", "[#6]-[#6]1:[#6]:[#6]:[#6]:[#6](:[#6]:1-[#6]1:[#6]:[#6]:[#6]:[#6](:[#6]:1)-[#6]-[#8,#7]-[#6]1:[#6]:[#6]:[#6](:[#6]:[#6]:1)-[#6]-[#6]-[#6](=[#8])-[#8])-[#6]\n", "Row: 2625 Inhibition of human recombinant carbonic anhydrase 4 preincubated for 15 mins at room temperature/6 hrs at 4 deg C by stopped-flow CO2 hydration assay\n", " * postgresql://localhost/chembl_23\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Mean nAts 30.1, mcs nAts: 8\n", "[#8,#6]=,-[#6]1:,-[#6,#8]:,-[#6](-,=[#6,#8]):,-[#8,#6]:,-[#6]:,-[#6,#8]:,-1\n", "Row: 2626 Inhibition of human carbonic anhydrase 9 by stopped flow CO2 hydration method\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 18.5, mcs nAts: 4\n", "[#7,#6,#8]-,=[#6,#7]-[#6,#7,#8]-[#6,#7]\n", "Row: 2627 Inhibition of human carbonic anhydrase 12 by stopped flow CO2 hydration method\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 18.5, mcs nAts: 4\n", "[#7,#6,#8]-,=[#6,#7]-[#6,#7,#8]-[#6,#7]\n", "Row: 2628 Displacement of [3H]spiperone form human cloned dopamine D2L receptor expressed in CHO cells\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 21.7, mcs nAts: 17\n", "[#6]-[#6]-[#6]-[#7]1-[#6]-[#6]-[#8]-[#6]2-[#6]-1-[#6]-[#6]-[#6]1:[#6]-2:[#6]:[#6]:[#6]:[#6]:1\n", "Row: 2629 Binding affinity to displace [3H]spiperone from cloned human dopamine receptor D4 was determined\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 21.6, mcs nAts: 20\n", "[#6]1:[#6]:[#6]:[#6](:[#6]:[#6]:1)-[#8]-[#6]-[#6]-[#6,#7]-[#7,#6]-[#6]-[#6]-[#8]-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1\n", "Row: 2630 Inhibition of WNV recombinant NS2B-NS3 protease\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 39.8, mcs nAts: 31\n", "[#7]=[#6](-[#7])-[#7]-[#6]-[#6]-[#6]-[#6](-[#6]=[#8])-[#7]-[#6](=[#8])-[#6](-[#6]-[#6]-[#6]-[#7,#6])-[#7]-[#6](=[#8])-[#6](-[#6]-[#6]-[#6]-[#6,#7]-[#7,#6])-[#7]-[#6](=,-[#8,#6])-,=[#6,#7,#8]\n", "Row: 2631 Binding affinity against hERG Voltage-gated potassium channel subunit Kv11.1\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 44.8, mcs nAts: 40\n", "[#6]-[#6]-[#7]1:[#7]:[#6](-[#6]-[#6]2:[#6]:[#6]:[#6]:[#6]:[#6]:2):[#6]:[#6]:1-[#6]1-[#6]-[#6]-[#7](-[#6]-[#6]-1)-[#6]-[#6]1-[#6]-[#7](-[#6](-[#6](=,-[#8,#6])-[#8,#6])-[#6](-,=[#6,#8])-[#6,#8])-[#6]-[#6]-1-[#6]1:[#6]:[#6]:[#6]:[#6](:[#6]:1)-[#9]\n", "Row: 2632 Inhibition of mouse carbonic anhydrase 13 by stopped flow CO2 hydration method\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 18.5, mcs nAts: 4\n", "[#7,#6,#8]-,=[#6,#7]-[#6,#7,#8]-[#6,#7]\n", "Row: 2633 Displacement of [3H]LSD from human recombinant 5HT5A receptor expressed in Flp-In CHO cells\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 19.3, mcs nAts: 17\n", "[#7,#6]=,-[#6,#7]1-[#7,#6]-[#6,#7](=,-[#8,#6])-[#6](-[#7,#6]-1)=[#6]-[#6]1:[#6]:[#7]:[#6]2:[#6]:1:[#6]:[#6]:[#6]:[#6]:2\n", "Row: 2634 Displacement of [3H]LSD from human recombinant 5HT6 receptor\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 25.8, mcs nAts: 22\n", "[#8]=[#16](=[#8])(-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1)-[#6]1:[#6]:[#6]:[#6]2:[#6](:[#6]:1):,-[#8]:,-[#6]1:,-[#6]:,-2-[#6]-[#6]-[#7]-[#6]-1\n", "Row: 2635 Inhibition of human recombinant carbonic anhydrase 1 by stopped flow CO2 hydration method\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 19.5, mcs nAts: 6\n", "[#6]1:,-[#6]:,-[#6,#8]:,-[#6]:,-[#6]:,-[#6]:,-1\n", "Row: 2636 Inhibition of human carbonic anhydrase 14 by stopped flow CO2 hydration method\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 18.5, mcs nAts: 4\n", "[#7,#6,#8]-,=[#6,#7]-[#6,#7,#8]-[#6,#7]\n", "Row: 2637 Inhibition of human recombinant carbonic anhydrase 2 by stopped flow CO2 hydration method\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 19.5, mcs nAts: 6\n", "[#6]1:,-[#6]:,-[#6,#8]:,-[#6]:,-[#6]:,-[#6]:,-1\n", "Row: 2638 Inhibition of mouse carbonic anhydrase 15 by stopped flow CO2 hydration method\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 18.5, mcs nAts: 4\n", "[#7,#6,#8]-,=[#6,#7]-[#6,#7,#8]-[#6,#7]\n", "Row: 2639 Antagonist activity at human OX1 receptor expressed in CHO cells assessed as inhibition of orexin A-induced Ca2+ accumulation after 1 hr by Fluo-4-AM staining-based FLIPR assay\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 30.7, mcs nAts: 19\n", "[#8,#6]=,-[#6,#7]1-[#7,#6](-,=[#6,#8])-[#6]-[#6]-[#6]-[#6]-12-[#6]-[#6]-[#7](-[#6]-[#6]-2)-[#6]1:[#7,#6]:[#6,#7]:[#6]:[#6]:[#7]:1\n", "Row: 2640 Displacement of 2-[125I]iodomelatonin from human MT1 receptor expressed in HEK293 cells\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 25.9, mcs nAts: 24\n", "[#6]-[#8]-[#6]1:[#6]:[#6]:[#6]2:[#6](:[#6]:1):[#6](:[#6]:[#6](:[#6]:2)-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1)-[#6]-[#6]-[#7]-[#6](-,=[#6,#8])=,-[#8,#6]\n", "Row: 2641 Displacement of 2-[125I]iodomelatonin from human MT2 receptor expressed in CHO cells\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 25.9, mcs nAts: 24\n", "[#6]-[#8]-[#6]1:[#6]:[#6]:[#6]2:[#6](:[#6]:1):[#6](:[#6]:[#6](:[#6]:2)-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1)-[#6]-[#6]-[#7]-[#6](-,=[#6,#8])=,-[#8,#6]\n", "Row: 2642 Inhibition of muscarinic M5 receptor (unknown origin) by PDSP assay\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 21.6, mcs nAts: 12\n", "[#7,#8]-[#6]1-[#6]2-[#6]3-[#6]-[#6]4-[#6]-1-[#6]1-[#6]-2-[#6]-[#6]-3-[#6]-1-4\n", "Row: 2643 Inhibition of [3H]NBTI binding to equilibrative nucleoside transport protein 1 (ENT1) in human erythrocyte membranes\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 30.6, mcs nAts: 18\n", "[#6]-[#7]1:[#6]:[#7]:[#6]2:[#6]:1:[#7]:[#6]:[#7]:[#6]:2-[#16]-[#6]-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1\n", "Row: 2644 Binding affinity to glucocorticoid receptor (unknown origin) by fluorescence assay\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 33.6, mcs nAts: 25\n", "[#6]-[#6](-[#6]-[#7]-[#16,#6](=,-[#8,#6,#7])=,-[#8,#6,#7])-[#6](-[#6])-[#6]1:[#6]:[#6]:[#6]2:[#6](:[#6]:1):[#6]:[#7]:[#7]:2-[#6]1:[#6]:[#6]:[#6](:[#6]:[#6]:1)-[#9]\n", "Row: 2645 Inhibition of human cytosolic carbonic anhydrase 1 preincubated for 15 mins at room temperature followed by 72 hrs at 4 degC by stopped flow CO2 hydration assay\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 23.3, mcs nAts: 6\n", "[#7,#6,#16,#17]-,=[#6,#7]1:,-[#7,#6,#8,#16]:,-[#7,#6,#8]:,-[#6,#7]:,-[#16,#6,#7,#8]:,-1\n", "Row: 2646 Inhibition of [125I]sauvagine binding to corticotropin releasing factor receptor 1 expressed in LtK- cells\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 28.3, mcs nAts: 17\n", "[#6,#8]-[#6]-[#6]-[#7]1-[#6]-[#6]-[#6]2:[#6]3:[#6]-1:[#6]:[#6](:[#7]:[#6]:3:[#7](:[#6,#7]:2)-[#6])-[#6]\n", "Row: 2647 Inhibition constant against human Adenosine A2a receptor using [3H]-SCH- 58261 as radioligand expressed in HEK cell membranes\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 24.9, mcs nAts: 17\n", "[#7]-[#6]1:[#7]:[#6](-[#6]2:[#6]:[#6]:[#6]:[#8]:2):[#6]2:[#6](:[#7]:1):[#7](:[#6]:[#7]:2)-[#6]-[#6]\n", "Row: 2648 Inhibition of human cytosolic carbonic anhydrase 2 preincubated for 15 mins at room temperature followed by 72 hrs at 4 degC by stopped flow CO2 hydration assay\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 23.3, mcs nAts: 6\n", "[#7,#6,#16,#17]-,=[#6,#7]1:,-[#7,#6,#8,#16]:,-[#7,#6,#8]:,-[#6,#7]:,-[#16,#6,#7,#8]:,-1\n", "Row: 2649 BindingDB_Patents: FLIPR Assay. The FLIPR protocol consists of 2 substance additions. First the compounds to be tested (10 µM) are pipetted onto the cells and the Ca2+ influx is compared with the control (capsaicin 10 µM). This provides the result in % activation based on the Ca2+ signal after the addition of 10 µM of capsaicin (CP). After 5 minutes incubation, 100 nM of capsaicin are applied and the Ca2+ influx is also determined. Desensitising agonists and antagonists lead to suppression of the Ca2+ influx. The % inhibition is calculated compared to the maximum achievable inhibition with 10 µM of capsazepine. Starting from the percentage displacement caused by different concentrations of the compounds to be tested of general formula I, IC50 inhibitory concentrations which cause a 50-percent displacement of capsaicin were calculated. K1 values for the test substances were obtained by conversion by means of the Cheng-Prusoff equation (Cheng, Prusoff; Biochem. Pharmacol. 22, 3099-3108, 1973).\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 34.4, mcs nAts: 28\n", "[#6,#7]-[#16](=[#8])(=[#8])-[#7]-[#6]-[#6]1:[#6]:[#6]:[#6](:[#6]:[#6]:1)-[#7,#6]-[#6](=[#8])-[#7]-[#6]-[#6]1:[#6]:[#6]:[#6](:[#7]:[#6]:1-[#7])-[#6](-[#9])(-[#9])-[#9]\n", "Row: 2650 Inhibition of human recombinant carbonic anhydrase 7 by stopped flow CO2 hydration method\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 19.5, mcs nAts: 6\n", "[#6]1:,-[#6]:,-[#6,#8]:,-[#6]:,-[#6]:,-[#6]:,-1\n", "Row: 2651 Inhibition of human cytosolic carbonic anhydrase 7 preincubated for 15 mins at room temperature followed by 72 hrs at 4 degC by stopped flow CO2 hydration assay\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 23.3, mcs nAts: 6\n", "[#7,#6,#16,#17]-,=[#6,#7]1:,-[#7,#6,#8,#16]:,-[#7,#6,#8]:,-[#6,#7]:,-[#16,#6,#7,#8]:,-1\n", "Row: 2652 Inhibition of human membrane bound carbonic anhydrase 9 preincubated for 15 mins at room temperature followed by 72 hrs at 4 degC by stopped flow CO2 hydration assay\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 23.3, mcs nAts: 6\n", "[#7,#6,#16,#17]-,=[#6,#7]1:,-[#7,#6,#8,#16]:,-[#7,#6,#8]:,-[#6,#7]:,-[#16,#6,#7,#8]:,-1\n", "Row: 2653 In vitro inhibition of [3H]8-OH-DPAT binding to 5-hydroxytryptamine 1A receptor in rat cerebral cortex membranes\n", " * postgresql://localhost/chembl_23\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Mean nAts 29.2, mcs nAts: 14\n", "[#7,#6]-[#6]-[#7]1-[#6]-[#6]-[#7](-[#6]-[#6]-1)-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1\n", "Row: 2654 Inhibitory potency against catalytic domain of human Carbonic anhydrase IX expressed in Escherichia coli strain BL21\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 19.7, mcs nAts: 5\n", "[#6,#7]-[#16](-,=[#7,#8])(=[#8])=,-[#8,#6]\n", "Row: 2655 Displacement of [3H]-(R)-alpha-methylhistamine from rat H3 receptor expressed in HEK293T cells after 120 mins by scintillation counting\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 26.6, mcs nAts: 20\n", "[#8]=[#6]1-[#6]2:[#6]:[#6]:[#6](:[#6]:[#6]:2-[#6]-[#6]-[#7]-1-[#6]-[#6]-[#7,#6])-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1\n", "Row: 2656 Displacement of [3H]UR-MK114 from NPY1 receptor in human SK-N-MC cells\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 51.8, mcs nAts: 41\n", "[#7]=[#6](-[#7]-[#6]-[#6]-[#6]-[#6](-[#7]-[#6](=[#8])-[#6](-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1)-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1)-[#6](=[#8])-[#7]-[#6]-[#6]1:[#6]:[#6]:[#6](:[#6]:[#6]:1)-[#8])-[#7]-[#6](=[#8])-[#6]-[#6,#8]-[#6]-,=[#7,#6,#8]\n", "Row: 2657 Inhibition of human membrane bound carbonic anhydrase 12 preincubated for 15 mins at room temperature followed by 72 hrs at 4 degC by stopped flow CO2 hydration assay\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 23.3, mcs nAts: 6\n", "[#7,#6,#16,#17]-,=[#6,#7]1:,-[#7,#6,#8,#16]:,-[#7,#6,#8]:,-[#6,#7]:,-[#16,#6,#7,#8]:,-1\n", "Row: 2658 Inhibition of [3H]diprenorphine binding to human Opioid receptor kappa 1 expressed in chinese hamster ovary cells\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 31.3, mcs nAts: 29\n", "[#6]-[#7,#8]-[#6]1-[#6]-[#6](-[#6](=[#8])-[#8]-[#6])-[#6]2(-[#6](-[#6]-1=[#8])-[#6]1(-[#6]-[#6](-[#8]-[#6](-[#6]-1-[#6]-[#6]-2)=[#8])-[#6]1:[#6]:[#6]:[#8]:[#6]:1)-[#6])-[#6]\n", "Row: 2659 Displacement of [3H]SCH23390 from dopamine D1 receptor in pig striatal membranes\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 32.1, mcs nAts: 17\n", "[#8,#6,#7]=,-[#6]-[#6]-[#6]-[#6]-[#7]1-[#6]-[#6]-[#7,#6](-[#6]-[#6]-1)-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1\n", "Row: 2660 BindingDB_Patents: In Vitro Inhibition Assay. In vitro inhibition assay using cathepsin.\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 31.2, mcs nAts: 27\n", "[#8]=[#6](-[#7]-[#6](-[#6](=[#8])-[#7]1-[#6]-[#6]-[#6]2-[#6]-1-[#6](-[#6]-[#8]-2)=[#8])-[#6]1-[#6]-[#6]-[#6]-[#6]-[#6]-1)-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1\n", "Row: 2661 Displacement of [125I]-ghrelin from human GHS-R1a expressed in tetracycline inducible HEK293 cells after 8 hrs by liquid scintillation counting\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 34.7, mcs nAts: 20\n", "[#6,#8]-[#6]1:[#6]:[#6]:[#6](:[#7,#6]:[#6]:1)-[#6]-[#6](=[#8])-[#7]1-[#6]-[#6]-[#6]2(-[#6]-[#6]-1)-[#6]-[#7](-[#6]-2)-[#6]\n", "Row: 2662 Binding constant measured against Alpha-1A adrenergic receptor in human prostate; ++:moderately active\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 31.0, mcs nAts: 10\n", "[#8,#6,#9]-[#6,#7]1:,-,=[#6]:,-[#6]:,-[#6,#7](:,-,=[#6]:,-[#6,#7]:,-1)-[#6]-[#6,#7]-[#7,#6,#8]\n", "Row: 2663 Displacement of [3H]Spiperone from human dopamine D2 long receptor expressed in CHO cells\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 32.1, mcs nAts: 17\n", "[#8,#6,#7]=,-[#6]-[#6]-[#6]-[#6]-[#7]1-[#6]-[#6]-[#7,#6](-[#6]-[#6]-1)-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1\n", "Row: 2664 Displacement of [3H]Spiperone from human dopamine D2 short receptor expressed in CHO cells\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 32.1, mcs nAts: 17\n", "[#8,#6,#7]=,-[#6]-[#6]-[#6]-[#6]-[#7]1-[#6]-[#6]-[#7,#6](-[#6]-[#6]-1)-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1\n", "Row: 2665 Displacement of [3H]Spiperone from human dopamine D3 receptor expressed in CHO cells\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 32.1, mcs nAts: 17\n", "[#8,#6,#7]=,-[#6]-[#6]-[#6]-[#6]-[#7]1-[#6]-[#6]-[#7,#6](-[#6]-[#6]-1)-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1\n", "Row: 2666 BindingDB_Patents: Inhibition Assay. Inhibition of human C1s was determined by the method described in [0092]-[0098] using native human activated C1s complement component from Calbiochem at 29 nM and Val-Ser-Arg-pNA (S2314) at 8 mM, 6 mM, and 4 mM as substrate; results are reported as Ki values (nanomolar).\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 48.1, mcs nAts: 40\n", "[#7]=[#6](-[#7])-[#6]1:[#6]:[#6]:[#6](:[#6]:[#6]:1)-[#6]-[#7]-[#6](=[#8])-[#6](-[#6]-[#6]-[#6]1-[#6]-[#6]-[#7]-[#6]-[#6]-1)-[#7]-[#6](=[#8])-[#6](-[#6]-[#6]-[#6])-[#7]-[#16](=[#8])(=[#8])-[#6]-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1\n", "Row: 2667 Displacement of [3H]N-alpha-methylhistamine from recombinant human histamine H3 receptor expressed in HEK cell membranes after 30 mins by scintillation counting\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 27.8, mcs nAts: 23\n", "[#6]1:[#6]:[#6,#7]:[#6,#7]:[#6](:[#6,#7]:1)-[#6]1:[#7]:[#7]:[#6](:[#16]:1)-[#7]1-[#6]-[#6]-[#6](-[#6]-[#6]-1)-[#7]1-[#6]-[#6]-[#6]-[#6]-[#6]-1\n", "Row: 2668 BindingDB_Patents: Inhibition Assay. Inhibition of human FIIa was determined by the method described in [0092]-[0098] using human alpha-thrombin from Enzyme Research Laboratories at 0.1 NIH U/mL and Mes-d-Cha-Gly-Arg-pNA (Pefachrome tPA) at 2 mM, 1 mM, and 0.5 mM as substrate; results are reported as Ki values (nanomolar).\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 47.8, mcs nAts: 40\n", "[#7]=[#6](-[#7])-[#6]1:[#6]:[#6]:[#6](:[#6]:[#6]:1)-[#6]-[#7]-[#6](=[#8])-[#6](-[#6]-[#6]-[#6]1-[#6]-[#6]-[#7]-[#6]-[#6]-1)-[#7]-[#6](=[#8])-[#6](-[#6]-[#6]-[#6])-[#7]-[#16](=[#8])(=[#8])-[#6]-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1\n", "Row: 2669 Displacement of [3H]spiperone from human dopamine D2 receptor\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 21.5, mcs nAts: 14\n", "[#6]1:[#6]:[#6]:[#6](:[#6]:[#6]:1)-[#7]1-[#6]-[#6]-[#7](-[#6]-[#6]-1)-[#6]-[#6]\n", "Row: 2670 Binding affinity to human dopamine D3 receptor by radioligand binding assay\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 21.5, mcs nAts: 14\n", "[#6]1:[#6]:[#6]:[#6](:[#6]:[#6]:1)-[#7]1-[#6]-[#6]-[#7](-[#6]-[#6]-1)-[#6]-[#6]\n", "Row: 2671 Inhibitory potency against human cloned Carbonic anhydrase II expressed in Escherichia coli strain BL21\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 19.7, mcs nAts: 5\n", "[#6,#7]-[#16](-,=[#7,#8])(=[#8])=,-[#8,#6]\n", "Row: 2672 Binding affinity to human dopamine D4 receptor by radioligand binding assay\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 21.5, mcs nAts: 14\n", "[#6]1:[#6]:[#6]:[#6](:[#6]:[#6]:1)-[#7]1-[#6]-[#6]-[#7](-[#6]-[#6]-1)-[#6]-[#6]\n", "Row: 2673 Displacement of [3H]prazosin from human cloned alpha1A adrenoceptor expressed in CHO cells\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 26.5, mcs nAts: 17\n", "[#6]1:[#6]:[#6]:[#6](:[#6]:[#6]:1)-[#8]-[#6]-[#6]-[#7]-[#6]-[#6]1-[#6]-[#8]-[#6]-,:[#6]-[#8]-1\n", "Row: 2674 Displacement of [3H]prazosin from human cloned Alpha-1B adrenoceptor expressed in CHO cells\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 26.5, mcs nAts: 17\n", "[#6]1:[#6]:[#6]:[#6](:[#6]:[#6]:1)-[#8]-[#6]-[#6]-[#7]-[#6]-[#6]1-[#6]-[#8]-[#6]-,:[#6]-[#8]-1\n", "Row: 2675 Displacement of [3H]Spiperone from human dopamine D4.4 receptor expressed in CHO cells\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 32.1, mcs nAts: 17\n", "[#8,#6,#7]=,-[#6]-[#6]-[#6]-[#6]-[#7]1-[#6]-[#6]-[#7,#6](-[#6]-[#6]-1)-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1\n", "Row: 2676 Inhibitory potency against human cloned Carbonic anhydrase I expressed in Escherichia coli strain BL21\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 19.7, mcs nAts: 5\n", "[#6,#7]-[#16](-,=[#7,#8])(=[#8])=,-[#8,#6]\n", "Row: 2677 Displacement of [3H]Ketanserin from 5-HT2 receptor in pig cortex membranes\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 32.1, mcs nAts: 17\n", "[#8,#6,#7]=,-[#6]-[#6]-[#6]-[#6]-[#7]1-[#6]-[#6]-[#7,#6](-[#6]-[#6]-1)-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1\n", "Row: 2678 Displacement of [3H]prazosin from human cloned alpha1D adrenoceptor expressed in CHO cells\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 26.5, mcs nAts: 17\n", "[#6]1:[#6]:[#6]:[#6](:[#6]:[#6]:1)-[#8]-[#6]-[#6]-[#7]-[#6]-[#6]1-[#6]-[#8]-[#6]-,:[#6]-[#8]-1\n", "Row: 2679 Displacement of [3H]CP55940 from human CB1 receptor expressed in HEK293 cells\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 50.7, mcs nAts: 32\n", "[#6]-[#6]1:[#6](-[#6](=[#8])-[#7]-[#6]-[#6]-[#6,#7]-[#7,#6]-[#6]-[#6,#7]-[#6]-,=[#7,#6,#8]):[#7]:[#7](:[#6]:1-[#6]1:[#6]:[#6]:[#6](:[#6]:[#6]:1)-[#17])-[#6]1:[#6]:[#6]:[#6](:[#6]:[#6]:1-[#17])-[#17]\n", "Row: 2680 Displacement of [3H]8-OH-DPAT from human cloned 5HT1A receptor expressed in human HeLa cells\n", " * postgresql://localhost/chembl_23\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Mean nAts 26.5, mcs nAts: 17\n", "[#6]1:[#6]:[#6]:[#6](:[#6]:[#6]:1)-[#8]-[#6]-[#6]-[#7]-[#6]-[#6]1-[#6]-[#8]-[#6]-,:[#6]-[#8]-1\n", "Row: 2681 Inhibition of human carbonic anhydrase-2 at 20 degC preincubated for 15 mins by stopped-flow CO2 hydrase assay\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 4.7, mcs nAts: 0\n", "\n", "Row: 2682 Inhibition of rat Ecto-5'-nucleotidase transfected in COS7 cells preincubated for 10 mins followed by AMP addition measured after 10 mins\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 27.1, mcs nAts: 21\n", "[#6]-[#8]-[#6]1-[#8]-[#6]2:[#6]:[#6]:[#6]:[#6]:[#6]:2-[#6](-[#6]-1=[#6]-[#7]-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1)=[#8]\n", "Row: 2683 Displacement of [3H]SR141716 from human CB1 receptor expressed in HEK293 cells\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 50.7, mcs nAts: 32\n", "[#6]-[#6]1:[#6](-[#6](=[#8])-[#7]-[#6]-[#6]-[#6,#7]-[#7,#6]-[#6]-[#6,#7]-[#6]-,=[#7,#6,#8]):[#7]:[#7](:[#6]:1-[#6]1:[#6]:[#6]:[#6](:[#6]:[#6]:1)-[#17])-[#6]1:[#6]:[#6]:[#6](:[#6]:[#6]:1-[#17])-[#17]\n", "Row: 2684 BindingDB_Patents: Binding Assay. The [3H]-methyllycaconitine binding assay is a modification of the method described by Davies et al. in Neuropharmacol. 1999, 38, 679-690.Rat brain tissue (hippocampus or whole brain) is homogenized in homogenization buffer (10% w/v, 0.32 M sucrose, 1 mM EDTA, 0.1 mM phenylmethylsulfonyl fluoride (PMSF), 0.01% (w/v) NaN3, pH 7.4, 4 C.) at 600 rpm in a glass homogenizer. The homogenate is centrifuged (1000xg, 4 C., 10 min) and the supernatant is removed. The pellet is resuspended (20% w/v) and the suspension is centrifuged (1000xg, 4 C., 10 min). The two supernatants are combined and centrifuged (15 000xg, 4 C., 30 min). The pellet obtained in this way is referred to as the P2 fraction.The P2 pellet is washed with binding buffer (50 mM Tris-HCl, 1 mM MgCl2, 120 mM NaCl, 5 mM KCl, 2 mM CaCl2, pH 7.4), and centrifuged (15 000x g, 4 C., 30 min), twice.The P2 membranes are resuspended in binding buffer and incubated in a volume of 250 ul (amount of membrane protein 0.1-0.5 mg).\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 21.8, mcs nAts: 21\n", "[#7,#6,#8,#9,#35]-[#6]1:[#6]:[#6]:[#6]:[#6](:[#6]:1):[#8,#6,#16]:[#6](:[#6,#8,#16])-[#6](=[#8])-[#7]-[#6]1-[#6]-[#7]2-[#6]-[#6]-[#6]-1-[#6]-[#6]-2\n", "Row: 2685 Inhibition of bovine intestinal alkaline phosphatase using p-NPP as substrate treated 10 mins before substrate addition measured after 30 mins by spectrophotometric assay\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 28.5, mcs nAts: 12\n", "[#8]=[#6]1:,-[#6](-,=[#6]):,-[#6]:,-[#8]:,-[#6]2:[#6]:,-1:[#6]:[#6]:[#6]:[#6]:2\n", "Row: 2686 Inhibition of bovine kidney intestinal alkaline phosphatase using p-NPP as substrate treated 10 mins before substrate addition measured after 30 mins by spectrophotometric assay\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 28.5, mcs nAts: 12\n", "[#8]=[#6]1:,-[#6](-,=[#6]):,-[#6]:,-[#8]:,-[#6]2:[#6]:,-1:[#6]:[#6]:[#6]:[#6]:2\n", "Row: 2687 In vitro inhibition of Neutral endopeptidase.\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 30.9, mcs nAts: 29\n", "[#8]=[#6](-[#8])-[#6](-[#6]-[#6]1:[#6]:[#7]:[#6]2:[#6]:1:[#6]:[#6]:[#6]:[#6]:2)-[#7]-[#6](=[#8])-[#6](-[#6]-[#16])-[#6]1-[#6]-[#6]-[#6]2:[#6]-1:[#6]:[#6]:[#6]:[#6]:2\n", "Row: 2688 Binding affinity to human histamine H3 receptor\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 25.6, mcs nAts: 21\n", "[#6]-[#8]-[#6]1:[#6]:[#6]:[#6]2:[#6](:[#6]:1)-[#6]-[#6]-[#6]1(-[#8]-2)-[#6]-[#6]-[#7](-[#6]-[#6]-1)-[#6]1-[#6]-[#6]-[#6]-1\n", "Row: 2689 Binding affinity to human recombinant 5HT4 receptor\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 33.5, mcs nAts: 17\n", "[#6,#7]-[#6,#16]-[#7,#6]1-[#6]-[#6]-[#6,#7](-[#6]-[#6]-1)-[#6]-[#7,#6]-[#6]-[#6,#7]1:,-[#6]:,-[#6]:,-[#6,#7]:,-[#6]:,-[#6]:,-1\n", "Row: 2690 Inhibition of [125I]AB-MECA binding to rat Adenosine A3 receptor expressed in CHO cells\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 29.5, mcs nAts: 20\n", "[#6]-[#7]-[#6]1:[#7]:[#6]:[#7]:[#6]2:[#6]:1:[#7]:[#6]:[#7]:2-[#6]1-[#8,#6]-[#6](-[#6]-[#8,#7])-[#6](-[#6]-1-[#8])-[#8]\n", "Row: 2691 Binding affinity to human recombinant 5HT3 receptor\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 33.5, mcs nAts: 17\n", "[#6,#7]-[#6,#16]-[#7,#6]1-[#6]-[#6]-[#6,#7](-[#6]-[#6]-1)-[#6]-[#7,#6]-[#6]-[#6,#7]1:,-[#6]:,-[#6]:,-[#6,#7]:,-[#6]:,-[#6]:,-1\n", "Row: 2692 Displacement of [beta-33P]-2MeS-ADP from human P2Y1 receptor expressed in HEK293 cells after 1 hr by scintillation counting analysis\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 33.5, mcs nAts: 27\n", "[#6]-[#6]1:[#16,#7]:[#6](-[#7]-[#6]2:[#6]:[#6]:[#6]:[#7]:[#6]:2-[#8]-[#6]2:[#6]:[#6]:[#6]:[#6]:[#6]:2-[#6](-[#6])(-[#6])-[#6]):[#7,#16]:[#6]:1-[#6](-[#9,#6,#7])-,=[#9,#6,#8]\n", "Row: 2693 Binding affinity to rat histamine H3 receptor\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 25.6, mcs nAts: 21\n", "[#6]-[#8]-[#6]1:[#6]:[#6]:[#6]2:[#6](:[#6]:1)-[#6]-[#6]-[#6]1(-[#8]-2)-[#6]-[#6]-[#7](-[#6]-[#6]-1)-[#6]1-[#6]-[#6]-[#6]-1\n", "Row: 2694 Displacement of [3H]nisoxetine from Sprague-dawley rat NET by liquid scintillation spectrophotometry\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 22.0, mcs nAts: 12\n", "[#6,#7]-[#7,#6]-[#6]-[#6]-[#6](-[#8,#6])-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1\n", "Row: 2695 Displacement of [3H]CP55940 from human CB2 receptor expressed in CHOK1 cells\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 50.7, mcs nAts: 32\n", "[#6]-[#6]1:[#6](-[#6](=[#8])-[#7]-[#6]-[#6]-[#6,#7]-[#7,#6]-[#6]-[#6,#7]-[#6]-,=[#7,#6,#8]):[#7]:[#7](:[#6]:1-[#6]1:[#6]:[#6]:[#6](:[#6]:[#6]:1)-[#17])-[#6]1:[#6]:[#6]:[#6](:[#6]:[#6]:1-[#17])-[#17]\n", "Row: 2696 Displacement of [3H]citalopram from SERT in Sprague-dawley rat frontal cortex by liquid scintillation spectrophotometry\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 22.0, mcs nAts: 12\n", "[#6,#7]-[#7,#6]-[#6]-[#6]-[#6](-[#8,#6])-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1\n", "Row: 2697 Displacement of [3H]CP-55940 from human recombinant CB1 receptor\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 28.3, mcs nAts: 8\n", "[#6,#7,#8]-,=[#6,#7,#8,#16]-[#6,#7]1:,-[#6,#7]:,-[#6,#7]:,-[#6,#8]:,-[#6,#7]:,-[#6,#7]:,-1\n", "Row: 2698 Displacement of [3H]CP-55940 from human recombinant CB2 receptor\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 28.3, mcs nAts: 8\n", "[#6,#7,#8]-,=[#6,#7,#8,#16]-[#6,#7]1:,-[#6,#7]:,-[#6,#7]:,-[#6,#8]:,-[#6,#7]:,-[#6,#7]:,-1\n", "Row: 2699 Displacement of [3H]Spiperone from rat dopamine D2L receptor expressed in HEK293 cells\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 27.5, mcs nAts: 9\n", "[#6,#7]-[#6]-[#7,#6]-[#6,#7]1-[#6]-[#6]-,:[#6,#7]:,-[#6]-[#6]-1\n", "Row: 2700 Displacement of [125I]ABN from human dopamine D4.4 receptor expressed in HEK293 cells after 60 mins by gamma counting analysis\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 31.0, mcs nAts: 23\n", "[#6]-[#8]-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1-[#7]1-[#6]-[#6]-[#6]-[#7](-[#6]-[#6]-1)-[#6]-[#6]-[#6]-[#6]-[#7]-[#6](=,-[#8,#6])-,=[#6,#8]\n", "Row: 2701 Displacement of [3H]Spiperone from rat dopamine D3 receptor expressed in HEK293 cells\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 27.5, mcs nAts: 9\n", "[#6,#7]-[#6]-[#7,#6]-[#6,#7]1-[#6]-[#6]-,:[#6,#7]:,-[#6]-[#6]-1\n", "Row: 2702 Displacement of [3H]-citalopram in human SERT expressed in LLCPK cells by filtration assay\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 31.9, mcs nAts: 30\n", "[#6]-[#6]1:[#6]:[#6]:[#6]2:[#6](:[#7]:1):[#6]:[#6]:[#6]:[#6]:2-[#7,#6]1-[#6]-[#6]-[#7](-[#6]-[#6]-1)-[#6]-[#6]-[#6]1:[#6]:[#6]:[#6]:[#6]2:[#6]:1-,:[#8,#6]-,:[#6]-,:[#6](-,:[#7]-,:2)=[#8]\n", "Row: 2703 Displacement of [3H]CCPA from recombinant human adenosine A1 receptor expressed in CHO cells\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 32.9, mcs nAts: 21\n", "[#6]-[#7]-[#6]1:[#7]:[#6](-[#6,#7,#17]):[#7]:[#6]2:[#6]:1:[#7]:[#6]:[#7]:2-[#6]1-[#8]-[#6](-[#6]-[#8,#7])-[#6](-[#6]-1-[#8])-[#8]\n", "Row: 2704 Displacement of [3H]LSD from human recombinant 5HT7 receptor expressed in CHOK1 cells\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 28.1, mcs nAts: 13\n", "[#8]=[#6]1-[#6]-,:[#6](:[#6]:[#6]:[#6]:[#6]):,-[#6]-[#7]-1-[#6]-[#6]-,=,#[#7,#6]\n", "Row: 2705 Displacement of [3H]MDL from rat 5HT2A receptor expressed in GF62 cells by liquid scintillation analyser\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 28.4, mcs nAts: 25\n", "[#6]-[#8]-[#6]1:[#6](-[#8]):[#6]:[#6]:[#6]:[#6]:1-[#6](-,=[#8])-[#6]1-[#6]-[#6]-[#7](-[#6]-[#6]-1)-[#6]-[#6]-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1\n", "Row: 2706 Inhibition of recombinant human CA1 cytosolic isoform preincubated for 15 mins by stopped-flow CO2 hydration assay\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 12.3, mcs nAts: 5\n", "[#6,#8]-[#8,#6,#7,#16]-[#6,#7](=,-[#16,#6,#8])-,=[#16,#6,#7,#8]\n", "Row: 2707 Inhibition of recombinant human CA2 cytosolic isoform preincubated for 15 mins by stopped-flow CO2 hydration assay\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 12.3, mcs nAts: 5\n", "[#6,#8]-[#8,#6,#7,#16]-[#6,#7](=,-[#16,#6,#8])-,=[#16,#6,#7,#8]\n", "Row: 2708 Inhibition of recombinant human CA9 transmembrane isoform preincubated for 15 mins by stopped-flow CO2 hydration assay\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 12.3, mcs nAts: 5\n", "[#6,#8]-[#8,#6,#7,#16]-[#6,#7](=,-[#16,#6,#8])-,=[#16,#6,#7,#8]\n", "Row: 2709 Displacement of [3H]CP55940 from recombinant human CB2 receptor expressed in human HEK293 cell membrane after 90 mins\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 26.9, mcs nAts: 11\n", "[#8]=[#6](-[#7]-[#6])-[#6]1:[#6]:[#6]:[#6]:[#7]:[#6]:1-,=[#8]\n", "Row: 2710 Inhibition of recombinant human CA12 transmembrane isoform preincubated for 15 mins by stopped-flow CO2 hydration assay\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 12.3, mcs nAts: 5\n", "[#6,#8]-[#8,#6,#7,#16]-[#6,#7](=,-[#16,#6,#8])-,=[#16,#6,#7,#8]\n", "Row: 2711 Displacement of [3H]-dofetilide in human ERG expressed in CHO cells by proximity assay\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 31.9, mcs nAts: 30\n", "[#6]-[#6]1:[#6]:[#6]:[#6]2:[#6](:[#7]:1):[#6]:[#6]:[#6]:[#6]:2-[#7,#6]1-[#6]-[#6]-[#7](-[#6]-[#6]-1)-[#6]-[#6]-[#6]1:[#6]:[#6]:[#6]:[#6]2:[#6]:1-,:[#8,#6]-,:[#6]-,:[#6](-,:[#7]-,:2)=[#8]\n", "Row: 2712 BindingDB_Patents: In Vitro Inhibition Assay. In vitro inhibition assay using cathepsin.\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 31.2, mcs nAts: 27\n", "[#8]=[#6](-[#7]-[#6](-[#6](=[#8])-[#7]1-[#6]-[#6]-[#6]2-[#6]-1-[#6](-[#6]-[#8]-2)=[#8])-[#6]1-[#6]-[#6]-[#6]-[#6]-[#6]-1)-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1\n", "Row: 2713 Inhibition of MMP-2 (unknown origin) using Mca-PLGLDpa-AR-NH2 as substrate preincubated for 30 mins by fluorescence assay\n", " * postgresql://localhost/chembl_23\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Mean nAts 27.9, mcs nAts: 10\n", "[#8,#6]=,-[#16,#6](-[#7,#16]-[#6]1-[#6]-[#6,#7]-[#6]-[#6]-1-[#16,#8])-,=[#6,#8]\n", "Row: 2714 Inhibition of human recombinant PTP1B expressed in Escherichia coli using para-nitrophenyl phosphate as substrate preincubated for 30 mins followed by substrate addition measured by fluorescence analysis\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 32.2, mcs nAts: 23\n", "[#8]=[#6](-[#8])-[#6]1:,-[#6,#7]:,-[#6,#7](-[#6]2:[#6]:[#6]:[#6](:[#6]:[#6]:2)-[#6]-[#6](-[#6])-[#6]2:[#6]:[#6]:[#6]:[#6]:[#6]:2):,-[#7,#6,#8,#16]:,-[#8,#6,#7]:,-1\n", "Row: 2715 BindingDB_Patents: In Vitro Inhibition Assay. In vitro inhibition assay using cathepsin.\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 31.2, mcs nAts: 27\n", "[#8]=[#6](-[#7]-[#6](-[#6](=[#8])-[#7]1-[#6]-[#6]-[#6]2-[#6]-1-[#6](-[#6]-[#8]-2)=[#8])-[#6]1-[#6]-[#6]-[#6]-[#6]-[#6]-1)-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1\n", "Row: 2716 Inhibition of MMP-9 (unknown origin) using Mca-PLGLDpa-AR-NH2 as substrate preincubated for 30 mins by fluorescence assay\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 27.9, mcs nAts: 10\n", "[#8,#6]=,-[#16,#6](-[#7,#16]-[#6]1-[#6]-[#6,#7]-[#6]-[#6]-1-[#16,#8])-,=[#6,#8]\n", "Row: 2717 BindingDB_Patents: In Vitro Inhibition Assay. In vitro inhibition assay using cathepsin.\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 31.2, mcs nAts: 27\n", "[#8]=[#6](-[#7]-[#6](-[#6](=[#8])-[#7]1-[#6]-[#6]-[#6]2-[#6]-1-[#6](-[#6]-[#8]-2)=[#8])-[#6]1-[#6]-[#6]-[#6]-[#6]-[#6]-1)-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1\n", "Row: 2718 Binding affinity to human adenosine A2b receptor expressed in HEK293 cells\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 32.0, mcs nAts: 19\n", "[#6]-[#6]-[#7]1:[#6](=[#8]):[#6]2:[#7]:[#6](-[#6]):[#7]:[#6]:2:[#7](:[#6]:1=[#8])-[#6]-[#6]-[#6]-[#8]-[#6]\n", "Row: 2719 BindingDB_Patents: In Vitro Inhibition Assay. In vitro inhibition assay using cathepsin.\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 31.2, mcs nAts: 27\n", "[#8]=[#6](-[#7]-[#6](-[#6](=[#8])-[#7]1-[#6]-[#6]-[#6]2-[#6]-1-[#6](-[#6]-[#8]-2)=[#8])-[#6]1-[#6]-[#6]-[#6]-[#6]-[#6]-1)-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1\n", "Row: 2720 Displacement of [3H]histamine from human histamine H3 receptor expressed in HEK cells\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 20.4, mcs nAts: 13\n", "[#7]-[#6]1:[#7]:[#6](-[#7]):[#7]:[#6]2:[#6]:1:[#7,#6]:[#6]:[#6](:[#6]:2)-[#6]\n", "Row: 2721 Displacement of [3H]CP-55940 from rat CB1 receptor expressed in rat brain membrane by competitive binding assay\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 29.3, mcs nAts: 28\n", "[#6]-[#6]1(-[#6])-[#8]-[#6]2:[#6]:[#6](-[#6]34-[#6]-[#6]5-[#6]-[#6](-[#6]-3)-[#6]-[#6](-[#6]-4)-[#6]-5):[#6]:[#6](:[#6]:2-[#6]2:,-[#6]-1:,-[#6]:,-[#6]:,-,=[#6](:,-[#6]:,-2)-,=[#8,#6])-[#8]\n", "Row: 2722 Displacement of [3H]CP-55940 from mouse CB2 receptor expressed in mouse spleen membrane by competitive binding assay\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 29.3, mcs nAts: 28\n", "[#6]-[#6]1(-[#6])-[#8]-[#6]2:[#6]:[#6](-[#6]34-[#6]-[#6]5-[#6]-[#6](-[#6]-3)-[#6]-[#6](-[#6]-4)-[#6]-5):[#6]:[#6](:[#6]:2-[#6]2:,-[#6]-1:,-[#6]:,-[#6]:,-,=[#6](:,-[#6]:,-2)-,=[#8,#6])-[#8]\n", "Row: 2723 Displacement of [3H]LSD from human 5HT6 receptor expressed in HEK293 cells by liquid scintillation counting\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 25.1, mcs nAts: 22\n", "[#6]1:[#6]:[#6]:[#6](:[#6]:[#6]:1)-[#6]-[#6](:[#7]:[#6]1:[#6]:[#6](-[#7]2-[#6]-[#6]-[#7]-[#6]-[#6]-2):[#6]:[#6]:[#6]:1):[#7]\n", "Row: 2724 Displacement of [125I]human CGRP from human CLR expressed in HEK 293 cells coexpressing human RAMP1 after 3 hrs by scintillation counting\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 38.2, mcs nAts: 30\n", "[#8]=[#6](-[#7]-[#6]1-[#6]-[#6]-[#6](-[#6]2:[#6]:[#6]:[#6]:[#6](:[#6]:2-[#9])-[#9])-[#6]-[#7](-[#6]-1=[#8])-[#6]-[#6](-[#9])(-[#9])-[#9])-[#7]1-[#6]-[#6]-[#6]-[#6]-[#6]-1\n", "Row: 2725 Displacement of [3H]GR113808 from human 5HT4 receptor expressed in HEK293 cells by liquid scintillation counting\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 33.4, mcs nAts: 26\n", "[#8,#6,#15]=,-[#6]-[#6]-[#7]1-[#6]-[#6]-[#6](-[#6]-[#6]-1)-[#6]-[#7]-[#6](=[#8])-[#6]1:[#6]2:[#7](:[#6]3:[#6]:1:[#6]:[#6]:[#6]:[#6]:3)-[#6]-[#6]-[#6]-[#8]-2\n", "Row: 2726 Inhibition of human carbonic anhydrase 1 by stopped flow CO2 hydration assay\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 16.0, mcs nAts: 12\n", "[#7,#6,#8]-,=[#6,#8]-[#6]1:[#6]:[#6,#8,#16]:[#6]2:[#6](:[#6]:1):[#6,#8]:[#6]:[#6]:[#8,#6]:2\n", "Row: 2727 Inhibition of human carbonic anhydrase 2 by stopped flow CO2 hydration assay\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 16.0, mcs nAts: 12\n", "[#7,#6,#8]-,=[#6,#8]-[#6]1:[#6]:[#6,#8,#16]:[#6]2:[#6](:[#6]:1):[#6,#8]:[#6]:[#6]:[#8,#6]:2\n", "Row: 2728 Displacement of [3H]5-CT from rat recombinant 5HT7 receptor expressed in HEK293 cells after 60 mins\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 24.0, mcs nAts: 22\n", "[#6]1:[#6]:[#6]:[#6](:[#6]:[#6]:1)-[#6]-[#7]1:[#6]:[#6](-[#6]2:[#6]:[#6]:[#6]:[#6]:[#6]:2):[#6]2:[#6]:1-[#6]-[#6]-[#7]-[#6]-2\n", "Row: 2729 BindingDB_Patents: Radioligand Binding Assay. Membranes for in vitro receptor binding assays were obtained by the following procedures. CHO-K1 cells expressing one of the somatostatin receptors were homogenized in ice-cold buffer with 10 mM Tris-HCl, 5 mM EDTA, 3 mM EGTA, 1 mM phenylmethylsuphonyl fluoride, pH 7.6, using Polytron PT10-35GT (Kinematica) at 18,000 rpm for 30 seconds and centrifuged at 500xg for 10 minutes. The supernatant containing the plasma membranes was centrifuged at 100,000xg for 30 minutes and the pellet was resuspended in buffer containing 20 mM glycine-glycine, 1 mM MgCl2, 250 mM sucrose, pH 7.2, for storage at -80 C.For the SSTR1, 2 and 5 assays, membranes and various concentrations of test compounds were incubated in 96-well plates for 60 minutes at 25 C. with 0.05 nM [125I-Tyr11]-SRIF-14 (for hSSTR1; PerkinElmer Life Science), 0.05 nM [125I-Tyr]-seglitide (for hSSTR2; PerkinElmer Life Science) or 0.05 nM [125I-Tyr]-[DPhe-cyclo(Cys-Tyr-DTrp-Lys-Val-Cys)-Thr-NH2] (for hSSTR5.\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 115.0, mcs nAts: 88\n", "[#6]-[#6](-[#8])-[#6]1-[#7]-[#6](=[#8])-[#6](-[#6]-[#6]-[#6]-[#6]-[#7])-[#7]-[#6](=[#8])-[#6](-[#6]-[#6]2:[#6]:[#7]:[#6]3:[#6]:2:[#6]:[#6]:[#6]:[#6]:3)-[#7]-[#6](=[#8])-[#6](-[#6]-[#6]2:[#6]:[#6]:[#7,#6]:[#6]:[#6]:2)-[#7]-[#6](=[#8])-[#6](-[#6]-[#6]2:[#6]:[#6]:[#6]:[#6]:[#6]:2)-[#7]-[#6](-[#6](-[#7]-[#6](-[#6](-[#6]-[#6]-[#6]-[#6]-[#7]-[#6](-[#6](-[#7]-[#6]-1=[#8])-[#6]-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1)=[#8])-[#7]-[#6]-[#6]-[#16,#6,#7]-[#6]-,=[#6,#8])=[#8])-[#6]-[#6]-[#6]-[#7]-[#6](=[#7])-[#7])=[#8]\n", "Row: 2730 Inhibitory constant against reuptake of [3H]5-HT at serotonin transporter of rat midbrain cortex\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 26.1, mcs nAts: 16\n", "[#6]-[#8]-[#6](=[#8])-[#6]1-[#6]2-[#6]-[#6]3-[#7](-[#6]-1-[#6]-[#6]-3)-[#6]-[#6]-2=[#6]-[#6]\n", "Row: 2731 Inhibition of human carbonic anhydrase 3 by stopped flow CO2 hydration assay\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 16.0, mcs nAts: 12\n", "[#7,#6,#8]-,=[#6,#8]-[#6]1:[#6]:[#6,#8,#16]:[#6]2:[#6](:[#6]:1):[#6,#8]:[#6]:[#6]:[#8,#6]:2\n", "Row: 2732 Inhibitory constant against reuptake of [3H]-DA at dopamine transporter of rat striatal membranes\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 26.1, mcs nAts: 16\n", "[#6]-[#8]-[#6](=[#8])-[#6]1-[#6]2-[#6]-[#6]3-[#7](-[#6]-1-[#6]-[#6]-3)-[#6]-[#6]-2=[#6]-[#6]\n", "Row: 2733 Inhibition of human carbonic anhydrase 4 by stopped flow CO2 hydration assay\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 16.0, mcs nAts: 12\n", "[#7,#6,#8]-,=[#6,#8]-[#6]1:[#6]:[#6,#8,#16]:[#6]2:[#6](:[#6]:1):[#6,#8]:[#6]:[#6]:[#8,#6]:2\n", "Row: 2734 Inhibition of human carbonic anhydrase 5A by stopped flow CO2 hydration assay\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 16.0, mcs nAts: 12\n", "[#7,#6,#8]-,=[#6,#8]-[#6]1:[#6]:[#6,#8,#16]:[#6]2:[#6](:[#6]:1):[#6,#8]:[#6]:[#6]:[#8,#6]:2\n", "Row: 2735 Displacement of [3H]AVP from rat V1A receptor expressed in CHO cells\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 31.5, mcs nAts: 24\n", "[#6]-[#7]-[#6](=[#8])-[#6](-[#6]-[#6]1:[#6]:[#6]:[#6](:[#6]:[#6]:1)-[#17,#8,#9])-[#7]-[#6](=[#8])-[#6]-[#6]1:[#6]:[#6]:[#6](:[#6]:[#6]:1)-[#17,#9]\n", "Row: 2736 Inhibition of human carbonic anhydrase 5B by stopped flow CO2 hydration assay\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 16.0, mcs nAts: 12\n", "[#7,#6,#8]-,=[#6,#8]-[#6]1:[#6]:[#6,#8,#16]:[#6]2:[#6](:[#6]:1):[#6,#8]:[#6]:[#6]:[#8,#6]:2\n", "Row: 2737 Inhibition of human wild type EGFR using Fl-EEPLYWSFPAKKK-CONH2 as substrate preincubated for 30 mins followed by addition of substrate measured after 30 mins by Morrison plot analysis\n", " * postgresql://localhost/chembl_23\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Mean nAts 29.0, mcs nAts: 21\n", "[#6]-[#6]1:[#7]:[#6]2:[#6]:[#7]:[#6](:[#6]:[#6]:2:[#7]:1-[#6](-[#6])-[#6])-[#7]-[#6]1:[#6]:[#6]:[#7]:[#6](:[#7]:1)-[#6,#7,#8,#16]\n", "Row: 2738 Inhibition of human carbonic anhydrase 6 by stopped flow CO2 hydration assay\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 16.0, mcs nAts: 12\n", "[#7,#6,#8]-,=[#6,#8]-[#6]1:[#6]:[#6,#8,#16]:[#6]2:[#6](:[#6]:1):[#6,#8]:[#6]:[#6]:[#8,#6]:2\n", "Row: 2739 Displacement of [3H]WIN35428 from DAT in Sprague-Dawley rat brain membranes\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 21.7, mcs nAts: 17\n", "[#7,#8]-,=[#6]-[#6]-[#16]-[#6](-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1)-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1\n", "Row: 2740 Displacement of [3H]CP55940 from recombinant human CB1 receptor expressed in human HEK293 cell membrane after 90 mins\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 26.9, mcs nAts: 11\n", "[#8]=[#6](-[#7]-[#6])-[#6]1:[#6]:[#6]:[#6]:[#7]:[#6]:1-,=[#8]\n", "Row: 2741 Inhibition of human IMPDH2 by Spectrophotometer\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 42.0, mcs nAts: 11\n", "[#6,#7]1:[#6](-[#6,#7]):[#6]2:[#6](:[#6,#7]:[#6]:1)-,:[#6,#7](=,-[#8,#6])-,:[#8,#6]-,:[#6,#7]-,:2\n", "Row: 2742 Inhibition of human IMPDH1 by Spectrophotometry\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 42.0, mcs nAts: 11\n", "[#6,#7]1:[#6](-[#6,#7]):[#6]2:[#6](:[#6,#7]:[#6]:1)-,:[#6,#7](=,-[#8,#6])-,:[#8,#6]-,:[#6,#7]-,:2\n", "Row: 2743 Inhibition of human carbonic anhydrase 7 by stopped flow CO2 hydration assay\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 16.0, mcs nAts: 12\n", "[#7,#6,#8]-,=[#6,#8]-[#6]1:[#6]:[#6,#8,#16]:[#6]2:[#6](:[#6]:1):[#6,#8]:[#6]:[#6]:[#8,#6]:2\n", "Row: 2744 Displacement of [3H]-4-(2,6-Difluoro-4-methoxybenzyl)-2-(5,6-dimethoxypyridin-3-yl)-2H-1,2,4-benzothiadiazin-3(4H)-one 1,1-dioxide from orexin receptor-1 (unknown origin) after 90 mins\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 32.7, mcs nAts: 29\n", "[#6]-[#8,#7]-[#6]1:[#6,#7]:[#6](-[#7]2-[#6](=[#8])-[#7](-[#6]-[#6]3:[#6]:[#6]:[#6]:[#6]:[#6]:3-[#9,#8,#17])-[#6]3:[#6](-[#16]-2(=[#8])=[#8]):[#6]:[#6]:[#6]:[#6,#7]:3):[#6]:[#6,#7]:[#7,#6]:1\n", "Row: 2745 Inhibition of human carbonic anhydrase 9 by stopped flow CO2 hydration assay\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 16.0, mcs nAts: 12\n", "[#6,#7,#8]-,=[#8,#6]-[#6]1:[#6]:[#6,#8,#16]:[#6]2:[#6](:[#6]:1):[#8,#6]:[#6]:[#6]:[#6,#8]:2\n", "Row: 2746 Displacement of [3H]CCPA from human adenosine A1 receptor expressed in CHO cells\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 22.3, mcs nAts: 13\n", "[#6]-[#6]-[#6]-[#7]1:[#6]:[#7]:[#6]2:[#6]:1:[#7]:[#6]:[#7]:[#6]:2-[#7]\n", "Row: 2747 Displacement of [3H]NECA from human adenosine A2A receptor expressed in CHO cells\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 22.3, mcs nAts: 13\n", "[#6]-[#6]-[#6]-[#7]1:[#6]:[#7]:[#6]2:[#6]:1:[#7]:[#6]:[#7]:[#6]:2-[#7]\n", "Row: 2748 Antagonist activity at human adenosine A2B receptor expressed in CHO cells assessed as inhibition of NECA-stimulated adenylyl cyclase activity\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 22.3, mcs nAts: 13\n", "[#6]-[#6]-[#6]-[#7]1:[#6]:[#7]:[#6]2:[#6]:1:[#7]:[#6]:[#7]:[#6]:2-[#7]\n", "Row: 2749 Displacement of [3H]HEMADO from human adenosine A3 receptor expressed in CHO cells\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 22.3, mcs nAts: 13\n", "[#6]-[#6]-[#6]-[#7]1:[#6]:[#7]:[#6]2:[#6]:1:[#7]:[#6]:[#7]:[#6]:2-[#7]\n", "Row: 2750 Inhibition of ATX (unknown origin) using bis-(p-nitrophenyl)phosphate as substrate\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 25.0, mcs nAts: 8\n", "[#7,#6]-[#6,#7]-[#6]1:,-[#6]:,-[#6]:,-[#6,#8]:,-[#6]:,-[#6,#7]:,-1\n", "Row: 2751 Displacement of [3H]-5-carboxyamidotryptamine from human serotonin 5-HT7B receptor expressed in HEK293 cells after 1 hr by microplate reader based assay\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 30.8, mcs nAts: 21\n", "[#6,#8]-,=[#16](=[#8])(=,-[#8,#6])-[#7]-[#6]1-[#6]-[#6]-[#7](-[#6]-[#6]-1)-[#6]-[#6]-[#8]-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1-[#6]\n", "Row: 2752 Displacement of [3H]-8-OH-DPAT from human serotonin 5-HT1A receptor expressed in HEK293 cells after 1 hr by microplate reader based assay\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 30.8, mcs nAts: 21\n", "[#6,#8]-,=[#16](=[#8])(=,-[#8,#6])-[#7]-[#6]1-[#6]-[#6]-[#7](-[#6]-[#6]-1)-[#6]-[#6]-[#8]-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1-[#6]\n", "Row: 2753 Displacement of [125I]-2-iodomelatonin from human MT1 receptor expressed on CHO cells by microscintillation counting\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 23.8, mcs nAts: 19\n", "[#6,#7,#8]-,=[#6](=,-[#8,#6])-[#7]-[#6]-[#6]-[#6]1=[#6](-[#35,#6])-[#6]-[#6]2:[#6]-1:[#6]1:[#6](:[#6]:[#6]:2)-[#8]-[#6]-[#6]-1\n", "Row: 2754 Inhibitory activity against bovine carbonic anhydrase IV (bCAIV)\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 15.3, mcs nAts: 5\n", "[#6,#7,#8]-[#16,#6](-,=[#7,#8,#9])(=,-[#8,#9])=,-[#8,#6,#7,#9]\n", "Row: 2755 Inhibitory activity against human carbonic anhydrase IV (hCAIV)\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 15.3, mcs nAts: 5\n", "[#6,#7,#8]-[#16,#6](-,=[#7,#8,#9])(=,-[#8,#9])=,-[#8,#6,#7,#9]\n", "Row: 2756 Inhibitory activity against human carbonic anhydrase II (hCAII)\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 15.3, mcs nAts: 5\n", "[#6,#7,#8]-[#16,#6](-,=[#7,#8,#9])(=,-[#8,#9])=,-[#8,#6,#7,#9]\n", "Row: 2757 Binding affinity towards rat 5-HT7 receptor expressed in HEK cells\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 25.6, mcs nAts: 8\n", "[#6,#7,#8]-,=,#[#8,#6,#16]-[#6,#7]1:,-,=[#6]:,-,=[#6]:,-,=[#6]:,-,=[#6]:,-[#6]:,-1\n", "Row: 2758 Inhibition of human carbonic anhydrase 12 by stopped flow CO2 hydration assay\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 16.0, mcs nAts: 12\n", "[#6,#7,#8]-,=[#8,#6]-[#6]1:[#6]:[#6,#8,#16]:[#6]2:[#6](:[#6]:1):[#8,#6]:[#6]:[#6]:[#6,#8]:2\n", "Row: 2759 Displacement of [125I]-2-iodomelatonin from human MT2 receptor expressed on CHO cells microscintillation counting\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 23.8, mcs nAts: 19\n", "[#6,#7,#8]-,=[#6](=,-[#8,#6])-[#7]-[#6]-[#6]-[#6]1=[#6](-[#35,#6])-[#6]-[#6]2:[#6]-1:[#6]1:[#6](:[#6]:[#6]:2)-[#8]-[#6]-[#6]-1\n", "Row: 2760 Inhibition of mouse carbonic anhydrase 13 by stopped flow CO2 hydration assay\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 16.0, mcs nAts: 12\n", "[#6,#7,#8]-,=[#8,#6]-[#6]1:[#6]:[#6,#8,#16]:[#6]2:[#6](:[#6]:1):[#8,#6]:[#6]:[#6]:[#6,#8]:2\n", "Row: 2761 Inhibition of human carbonic anhydrase 14 by stopped flow CO2 hydration assay\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 16.0, mcs nAts: 12\n", "[#6,#7,#8]-,=[#8,#6]-[#6]1:[#6]:[#6,#8,#16]:[#6]2:[#6](:[#6]:1):[#8,#6]:[#6]:[#6]:[#6,#8]:2\n", "Row: 2762 Inhibition of mouse carbonic anhydrase 15 by stopped flow CO2 hydration assay\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 16.0, mcs nAts: 12\n", "[#6,#7,#8]-,=[#8,#6]-[#6]1:[#6]:[#6,#8,#16]:[#6]2:[#6](:[#6]:1):[#8,#6]:[#6]:[#6]:[#6,#8]:2\n", "Row: 2763 Inhibitory activity against human carbonic anhydrase I (hCAI)\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 15.3, mcs nAts: 5\n", "[#6,#7,#8]-[#16,#6](-,=[#7,#8,#9])(=,-[#8,#9])=,-[#8,#6,#7,#9]\n", "Row: 2764 Displacement of [3H]mepyramine from human histamine H1 receptor expressed in HEK293 cells after 1 to 1.5 hrs by scintillation counting\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 20.0, mcs nAts: 6\n", "[#6,#7]1:,-,=[#6,#7]:,-[#6,#7]:,-[#6,#7]:,-[#6]:,-[#6,#7]:,-1\n", "Row: 2765 Displacement of [3H]histamine from human H4 receptor expressed in HEK293 cells after 1 to 1.5 hrs by scintillation counting\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 21.8, mcs nAts: 7\n", "[#6,#7]-,=[#6,#7]-[#6]1:,-[#6,#7]:,-[#7,#6]:,-[#6,#7]:,-[#7,#6]:,-1\n", "Row: 2766 Displacement of [3H]mepyramine from human histamine 1 receptor expressed in Sf9 cell membranes by liquid scintillation counting\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 28.3, mcs nAts: 13\n", "[#7,#6]1-,:[#6]-,:[#6]-,:[#7,#6](-,:[#6]-,:[#6]-,:1)-[#6]1:[#7,#6]:[#6](-[#7,#6]):[#7,#6]:[#6]:[#6,#7]:1\n", "Row: 2767 Displacement of [3H]histamine from human histamine 4 receptor expressed in Sf9 cell membranes by liquid scintillation counting\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 28.3, mcs nAts: 13\n", "[#7,#6]1-,:[#6]-,:[#6]-,:[#7,#6](-,:[#6]-,:[#6]-,:1)-[#6]1:[#7,#6]:[#6](-[#7,#6]):[#7,#6]:[#6]:[#6,#7]:1\n", "Row: 2768 Inhibition of human recombinant heparanase after 2 to 24 hrs by WST1 dye based fondaparinux assay\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 116.1, mcs nAts: 34\n", "[#6,#8]1-[#6]-[#6](-[#8]-[#6]2-[#8]-[#6](-[#6]-[#8]-[#16,#15](=[#8])(=,-[#8])-[#8])-[#6](-[#6](-[#6]-2-[#8]-[#16](=[#8])(=[#8])-[#8])-[#8]-[#16](=[#8])(=[#8])-[#8])-[#8]-[#16](=[#8])(=[#8])-[#8])-[#6]-[#6]-[#6,#8]-1\n", "Row: 2769 Binding affinity to human Erg\n", " * postgresql://localhost/chembl_23\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Mean nAts 32.1, mcs nAts: 25\n", "[#8,#6]-[#6]1(-[#6]2:[#6]:[#6]:[#6](:[#6]:[#6]:2)-[#9,#6])-[#6]-[#6]-[#7]-[#6]-[#6]-1-[#6]1:[#6]:[#6](-[#6]2:[#6]:[#6]:[#6]:[#6]:[#6]:2):[#7,#8]:[#8,#7]:1\n", "Row: 2770 Displacement of [125I]adrenomedullin form CGRP receptor in human SK-N-MC cell membrane by competitive binding assay\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 31.9, mcs nAts: 13\n", "[#6]1:,-[#7,#6]:,-[#6](-[#7,#6]2-[#6]-[#6,#7]-,:[#6]-[#6,#7]-[#16,#6,#7]-2=,-[#8,#6]):,-[#6,#7]:,-[#6]:,-[#6,#7]:,-1\n", "Row: 2771 Displacement of [33P]ATP from human recombinant c-KIT domain after 20 mins by scintillation counting\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 26.2, mcs nAts: 19\n", "[#7]-[#6]1:[#7]:[#6](-[#7]-[#6]2:[#6]:[#6]:[#6]:[#6]:[#6]:2):[#7]:[#7]:1-[#6]1:[#6]:[#6]:[#6,#7]:[#6]:[#7]:1\n", "Row: 2772 Inhibition of human cloned glutamate carboxypeptidase 2\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 30.3, mcs nAts: 26\n", "[#8]=[#6](-[#8])-[#6]-[#7]-[#6](=[#8])-[#7]-[#6](-[#6]-[#6]-[#6]-[#6]-[#7]-[#6](=[#8])-[#6]1:[#6]:[#6]:[#6](:[#6]:[#6]:1)-[#53])-[#6](=[#8])-[#8]\n", "Row: 2773 Displacement of [3H]CP-55940 from human CB1 receptor\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 25.8, mcs nAts: 17\n", "[#6]1:[#6]:[#6](-[#7]-[#6](=[#8])-[#6](-[#6])(-[#6])-[#6,#8]):[#6]:[#6](:[#6]:1)-[#16](=[#8])(=[#8])-[#7]\n", "Row: 2774 Displacement of [3H]CCPA from adenosine A1 receptor in rat brain cortex membrane\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 26.1, mcs nAts: 12\n", "[#6]1:,-[#7,#6]:,-[#6,#7]:,-[#6](:,-[#16,#6]:,-1)-[#6,#7]-[#6]1:[#6]:[#6]:[#6,#7]:[#6]:[#6,#7]:1\n", "Row: 2775 Displacement of [3H]MSX2 from adenosine A2A receptor in rat brain striatum membrane\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 26.1, mcs nAts: 12\n", "[#6]1:,-[#7,#6]:,-[#6,#7]:,-[#6](:,-[#16,#6]:,-1)-[#6,#7]-[#6]1:[#6]:[#6]:[#6,#7]:[#6]:[#6,#7]:1\n", "Row: 2776 Displacement of [3H]dofetilide from human ERG expressed in HEK293 cells\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 32.5, mcs nAts: 27\n", "[#7]-[#6]1=[#7]-[#6]2(-[#6]-[#8]-1)-[#6]1:[#6]:[#6](-[#6]3:[#6]:[#6]:[#6]:[#7]:[#6]:3-[#9]):[#6]:[#6]:[#6]:1-[#8]-[#6]1:[#6]-2:[#6]:[#6](:[#7,#6]:[#6]:1)-[#6,#7]\n", "Row: 2777 Displacement of [20-3H] phorbol 12, 13-dibutylate from recombinant PKCepsilon (unknown origin) in presence of nuclear membrane mimetic lipid mixture\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 33.7, mcs nAts: 14\n", "[#6,#8]=[#6]1-[#6,#8]-[#6](-[#6]-[#8])(-[#6]-[#8]-[#6](=[#8])-[#6]-[#6])-[#8,#6]-[#6]-1\n", "Row: 2778 Displacement of [20-3H] phorbol 12, 13-dibutylate from recombinant PKCalpha (unknown origin) in presence of nuclear membrane mimetic lipid mixture\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 33.7, mcs nAts: 14\n", "[#6,#8]=[#6]1-[#6,#8]-[#6](-[#6]-[#8])(-[#6]-[#8]-[#6](=[#8])-[#6]-[#6])-[#8,#6]-[#6]-1\n", "Row: 2779 Displacement of [20-3H] phorbol 12, 13-dibutylate from recombinant PKCepsilon (unknown origin) in presence of 100 ug/ml 100% phosphatidylserine\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 33.7, mcs nAts: 14\n", "[#6,#8]=[#6]1-[#6,#8]-[#6](-[#6]-[#8])(-[#6]-[#8]-[#6](=[#8])-[#6]-[#6])-[#8,#6]-[#6]-1\n", "Row: 2780 Inhibition of full length human recombinant CA1 cytosolic isoform after 6 hrs by stopped-flow CO2 hydration method\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 19.0, mcs nAts: 11\n", "[#8,#7,#16]=,-[#6,#16]1:,-[#6]:,=[#6]:,-[#6]2:[#6](:,-[#8,#6]:,-1):,-[#6,#8]:,=[#6]:,-[#6,#16]:,-[#6,#8]:,-2\n", "Row: 2781 Displacement of [20-3H] phorbol 12, 13-dibutylate from recombinant PKCalpha (unknown origin) in presence of 100 ug/ml 100% phosphatidylserine\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 33.7, mcs nAts: 14\n", "[#6,#8]=[#6]1-[#6,#8]-[#6](-[#6]-[#8])(-[#6]-[#8]-[#6](=[#8])-[#6]-[#6])-[#8,#6]-[#6]-1\n", "Row: 2782 Displacement of [3H]DAMGO from human MOR expressed in CHO cell membranes after 60 mins\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 29.9, mcs nAts: 28\n", "[#6]-[#7](-[#6])-[#6]-[#6]1-[#6]-[#6]-[#6]2:[#6](-[#6]-1(-[#8])-[#6]1:[#6]:[#6]:[#6]:[#6](:[#6]:1)-[#8]):[#6]:[#6]:[#6](:[#6]:2)-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1\n", "Row: 2783 Displacement of [3H]-AVP from human vasopressin V1B receptor expressed in CHO cells\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 36.7, mcs nAts: 14\n", "[#6]-[#8]-[#6]1:[#6]:[#6]:[#6](:[#6](:[#6]:1-[#6])-[#6])-[#16](=,-[#8,#7])(=[#8])-,=[#7,#8]\n", "Row: 2784 Displacement of [3H]LSD from human cloned 5-HT6R expressed in HEK293 cells at 0.1 and 1 uM\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 28.3, mcs nAts: 9\n", "[#6](:,-[#6,#7]:,-,=[#7,#6])-,:[#6,#7]-,:[#6,#7]-,:[#6,#7]-,:[#6,#7]-,=,:[#7,#6,#16]-,=[#6,#7,#8,#9,#16,#17]\n", "Row: 2785 Displacement of [3H]-8-OH-DPAT from human cloned 5-HT1A receptor expressed in HEK293 cells at 0.1 and 1 uM\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 28.3, mcs nAts: 9\n", "[#6](:,-[#6,#7]:,-,=[#7,#6])-,:[#6,#7]-,:[#6,#7]-,:[#6,#7]-,:[#6,#7]-,=,:[#7,#6,#16]-,=[#6,#7,#8,#9,#16,#17]\n", "Row: 2786 Displacement of [3H]-ketanserin from human cloned 5-HT2A receptor expressed in CHO-K1 cells at 0.1 and 1 uM\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 28.3, mcs nAts: 9\n", "[#6](:,-[#6,#7]:,-,=[#7,#6])-,:[#6,#7]-,:[#6,#7]-,:[#6,#7]-,:[#6,#7]-,=,:[#7,#6,#16]-,=[#6,#7,#8,#9,#16,#17]\n", "Row: 2787 Displacement of [3H]-5-CT from human cloned 5-HT7R expressed in HEK293 cells at 0.1 and 1 uM\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 28.3, mcs nAts: 9\n", "[#6](:,-[#6,#7]:,-,=[#7,#6])-,:[#6,#7]-,:[#6,#7]-,:[#6,#7]-,:[#6,#7]-,=,:[#7,#6,#16]-,=[#6,#7,#8,#9,#16,#17]\n", "Row: 2788 Displacement of [3H]DPCPX from adenosine A1 receptor in rat cerebral cortex\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 28.3, mcs nAts: 22\n", "[#6]-[#6]-[#6]-[#7]1-,:[#6](=[#8])-,:[#7]-,:[#6]-,:[#6]2:[#6]-,:1:[#7]:[#6](:[#7]:2)-[#6]12-[#6]-[#6]-[#6](-[#6]-[#6]-1)(-[#6]-[#6]-2)-[#8,#6]\n", "Row: 2789 Displacement of [3H]CCPA from human Adenosine A1 receptor expressed in CHO cells\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 30.8, mcs nAts: 21\n", "[#6]-[#7]-[#6]1:[#7]:[#6](-[#7,#6]):[#7]:[#6]2:[#6]:1:[#7]:[#6]:[#7]:2-[#6]1-[#8]-[#6](-[#6]-,=[#8,#7])-[#6](-[#6]-1-[#8])-[#8]\n", "Row: 2790 Inhibition of human carbonic anhydrase 2 by stopped flow CO2 hydration assay\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 27.6, mcs nAts: 14\n", "[#7,#6,#8]-[#6,#7]-[#6,#7]-[#6]-[#6,#7]-[#7,#6]-[#6,#7,#8]-[#6,#7]-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1\n", "Row: 2791 Inhibition of human carbonic anhydrase 1 by stopped flow CO2 hydration assay\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 27.6, mcs nAts: 14\n", "[#7,#6,#8]-[#6,#7]-[#6,#7]-[#6]-[#6,#7]-[#7,#6]-[#6,#7,#8]-[#6,#7]-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1\n", "Row: 2792 Displacement of [3H]NECA from human recombinant adenosine 2A receptor expressed in CHO cells after 3 hrs\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 33.4, mcs nAts: 23\n", "[#6]-[#7]1:[#6]:[#6]2:[#6](:[#7]:1):[#7]:[#6](:[#7]1:[#6]:2:[#7]:[#6](:[#7]:1)-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1)-[#7]-[#6](=,-[#8,#7])-,=[#7,#6,#8]\n", "Row: 2793 Displacement of labeled MK499 from cloned hERG potassium channel expressed in HEK cells\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 41.2, mcs nAts: 37\n", "[#6]-[#8]-[#6](=[#8])-[#7](-[#7]-[#6](=[#8])-[#6]1:[#6](-[#6,#8]-[#6,#7]2-[#6]-[#6]-[#7,#6]-[#6]-[#6]-2):[#6](-[#6]2:[#6]:[#6]:[#6]:[#6]:[#6]:2):[#7]:[#6]2:[#6]:1:[#6]:[#6]:[#6]:[#6]:2)-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1\n", "Row: 2794 Binding affinity to Anthrax lethal factor-substrate complex\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 25.1, mcs nAts: 8\n", "[#6,#7,#8]=,-,#[#6,#8,#16]-,=[#6]1:,-,=[#6,#16]:,-[#6]:,-[#6]:,-[#6,#7]:,-[#6,#16]:,-1\n", "Row: 2795 Binding affinity to Anthrax lethal factor\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 25.1, mcs nAts: 8\n", "[#6,#7,#8]=,-,#[#6,#8,#16]-,=[#6]1:,-,=[#6,#16]:,-[#6]:,-[#6]:,-[#6,#7]:,-[#6,#16]:,-1\n", "Row: 2796 Inhibition of human liver cathepsin B\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 29.8, mcs nAts: 27\n", "[#8,#6]=,-[#6]-[#6](-[#6]-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1)-[#7]-[#6](=[#8])-[#6]1-[#6]-[#6,#16]-[#6]-[#7]-1-[#16](=[#8])(=[#8])-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1\n", "Row: 2797 Inhibition of porcine erythrocyte mu calpain\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 29.8, mcs nAts: 27\n", "[#8,#6]=,-[#6]-[#6](-[#6]-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1)-[#7]-[#6](=[#8])-[#6]1-[#6]-[#6,#16]-[#6]-[#7]-1-[#16](=[#8])(=[#8])-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1\n", "Row: 2798 Inhibition of full length human recombinant CA2 cytosolic isoform after 6 hrs by stopped-flow CO2 hydration method\n", " * postgresql://localhost/chembl_23\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Mean nAts 19.0, mcs nAts: 11\n", "[#8,#7,#16]=,-[#6,#16]1:,-[#6]:,=[#6]:,-[#6]2:[#6](:,-[#8,#6]:,-1):,-[#6,#8]:,=[#6]:,-[#6,#16]:,-[#6,#8]:,-2\n", "Row: 2799 Inhibition of human recombinant transmembrane CA9 catalytic domain after 6 hrs by stopped-flow CO2 hydration method\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 19.0, mcs nAts: 11\n", "[#8,#7,#16]=,-[#6,#16]1:,-[#6]:,=[#6]:,-[#6]2:[#6](:,-[#8,#6]:,-1):,-[#6,#8]:,=[#6]:,-[#6,#16]:,-[#6,#8]:,-2\n", "Row: 2800 Displacement of [3H]CCPA from human recombinant adenosine A1 receptor expressed in CHO cells after 3 hrs\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 33.4, mcs nAts: 23\n", "[#6]-[#7]1:[#6]:[#6]2:[#6](:[#7]:1):[#7]:[#6](:[#7]1:[#6]:2:[#7]:[#6](:[#7]:1)-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1)-[#7]-[#6](=,-[#8,#7])-,=[#7,#6,#8]\n", "Row: 2801 Inhibition of human recombinant transmembrane CA12 catalytic domain after 6 hrs by stopped-flow CO2 hydration method\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 19.0, mcs nAts: 11\n", "[#8,#7,#16]=,-[#6,#16]1:,-[#6]:,=[#6]:,-[#6]2:[#6](:,-[#8,#6]:,-1):,-[#6,#8]:,=[#6]:,-[#6,#16]:,-[#6,#8]:,-2\n", "Row: 2802 Inhibition of human carbonic anhydrase 2 preincubated for 15 mins by stopped-flow CO2 hydrase assay\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 27.6, mcs nAts: 14\n", "[#7,#6,#8]-[#6,#7]-[#6,#7]-[#6]-[#6,#7]-[#7,#6]-[#6,#7,#8]-[#6,#7]-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1\n", "Row: 2803 Displacement of [3H]PSB-603 from human adenosine A2B receptor expressed in CHO cells\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 26.1, mcs nAts: 12\n", "[#6]1:,-[#7,#6]:,-[#6,#7]:,-[#6](:,-[#16,#6]:,-1)-[#6,#7]-[#6]1:[#6]:[#6]:[#6,#7]:[#6]:[#6,#7]:1\n", "Row: 2804 Inhibition of human carbonic anhydrase 1 preincubated for 15 mins by stopped-flow CO2 hydrase assay\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 27.6, mcs nAts: 14\n", "[#7,#6,#8]-[#6,#7]-[#6,#7]-[#6]-[#6,#7]-[#7,#6]-[#6,#7,#8]-[#6,#7]-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1\n", "Row: 2805 Inhibition of MMP3 (unknown origin) catalytic domain using Mca-Arg-Pro-Lys-Pro-Val-Glu-Nva-Trp-Arg-Lys(Dnp)-NH2 as substrate preincubated for 60 mins followed by substrate addition by fluorescence assay\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 32.8, mcs nAts: 31\n", "[#6]-[#8]-[#6]1:[#6]:[#6]:[#6]:[#6](:[#6]:1)-[#6]-[#7]-[#6](=[#8])-[#6]1:[#6]:[#6](-[#6]2:[#7]:[#7]:[#7](:[#7]:2)-[#6]-[#6]2-[#6]-[#8,#6]-[#6,#7]-[#6,#8]-[#8,#6]-2):[#6,#7]:[#6](:[#7]:1)-[#6]\n", "Row: 2806 Displacement of [3H]AVP from rat vasopressin V1b receptor expressed in At-T20 cells\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 72.4, mcs nAts: 43\n", "[#6,#7]-[#6]-[#6]-[#6]1-[#7]-[#6](=[#8])-[#6](-[#6]-[#6]2:,-[#6]:,-[#6]:,-[#6]:,-[#6]:,-[#6]:,-2)-[#7]-[#6](=[#8])-[#6](-[#6]-[#6]2:[#6]:[#6]:[#6]:[#6,#7]:[#6]:2)-[#7]-[#6](=[#8])-[#6]-[#6,#7]-[#16,#6]-[#16,#6]-[#6]-[#6,#16]-[#7,#16]-[#6]-[#6](-[#7]-[#6]-1=[#8])-[#6]-[#6,#7]\n", "Row: 2807 Displacement of [125I]alpha-BTX from alpha-7 nAChR in rat hippocampus membrane\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 22.7, mcs nAts: 19\n", "[#8]=[#6]1-[#8]-[#6]2(-[#6]-[#7]3-[#6]-[#6]-[#6]-2-[#6]-[#6]-3)-[#6]-[#7]-1-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1\n", "Row: 2808 Binding affinity to human His-tagged MDM2 (1 to 118 residues) using FAM tagged p53-based peptide by fluorescence prolarization based protein binding assay\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 36.7, mcs nAts: 27\n", "[#6]1-[#7]-[#6](-[#6](=[#8])-[#7]-[#6])-[#6](-[#6]-12-[#6](=[#8])-[#7]-[#6]1:[#6]-2:[#6]:[#6]:[#6](:[#6]:1)-[#17])-[#6]1:[#6]:[#6]:[#6]:[#6](:[#6]:1-[#9])-[#17]\n", "Row: 2809 Displacement of [3H]-(+)-pentazocine from sigma1 receptor in guinea pig brain membrane after 150 mins by scintillation counting analysis\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 27.6, mcs nAts: 23\n", "[#6,#7]1:,-[#6]:,-[#6]:,-[#6,#7](:,-[#6]:,-[#6]:,-1)-[#6]-[#6]-[#7,#6]1-,:[#6]-,:[#6]-,:[#7,#6](-,:[#6]-,:[#6]-,:1)-[#6,#8]-[#6]-[#6]-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1\n", "Row: 2810 Inhibition of porcine kidney leucine aminopeptidase M17 using Leu-AMC as substrate preincubated for 30 to 60 mins followed by substrate addition measured for 15 mins by spectrofluorimetric analysis\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 17.8, mcs nAts: 9\n", "[#6]-[#7,#6]-[#6]-[#6](-[#7])-[#15](=[#8])(-[#8])-[#8,#6]\n", "Row: 2811 Inhibition of human alpha thrombin\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 34.2, mcs nAts: 26\n", "[#6]1:[#6]:[#6]:[#6]:[#6](:[#6]:1)-[#16](=[#8])(=[#8])-[#7]-[#6](-[#6]-[#6]-[#6]-[#7]-,=[#6](=,-[#7])-[#7])-[#6](=[#8])-[#7]1-[#6]-[#6]-[#7,#6,#8]-[#6]-[#6]-1\n", "Row: 2812 Displacement of [3H]PSB-11 from human adenosine A3 receptor expressed in CHO cells\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 26.1, mcs nAts: 12\n", "[#6]1:,-[#7,#6]:,-[#6,#7]:,-[#6](:,-[#16,#6]:,-1)-[#6,#7]-[#6]1:[#6]:[#6]:[#6,#7]:[#6]:[#6,#7]:1\n", "Row: 2813 Displacement of [3H]histamine from histamine H3 receptor in rat cerebral cortex\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 18.2, mcs nAts: 15\n", "[#6]-[#6]-[#6]-[#7]-[#6](=[#8])-[#8]-[#6]-[#6]-[#6]-[#6]1:[#6]:[#7]:[#6]:[#7]:1\n", "Row: 2814 Inhibition of human recombinant carbonic anhydrase 1 by CO2 hydration method\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 21.2, mcs nAts: 8\n", "[#8,#6,#7]-[#6,#8,#16]-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1\n", "Row: 2815 Inhibition of human recombinant carbonic anhydrase 2 by CO2 hydration method\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 21.2, mcs nAts: 8\n", "[#8,#6,#7]-[#6,#8,#16]-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1\n", "Row: 2816 Inhibition of human recombinant carbonic anhydrase 9 by CO2 hydration method\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 21.2, mcs nAts: 8\n", "[#8,#6,#7]-[#6,#8,#16]-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1\n", "Row: 2817 Displacement of [3H]CHA from human adenosine A1 receptor expressed in CHO cells\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 40.2, mcs nAts: 34\n", "[#6]-[#6]-[#7]-[#6](=[#8])-[#6]1-[#8]-[#6](-[#7]2:[#6]:[#7]:[#6]3:[#6]:2:[#7]:[#6]:[#7]:[#6]:3-[#7]-[#6]2:[#6]:[#6]:[#6](:[#6]:[#6]:2)-[#8]-[#6]-[#6](=[#8])-[#7]-[#6])-[#6](-[#6]-1-[#8])-[#8]\n", "Row: 2818 Displacement of [3H]CGS-21680 from human adenosine A2A receptor expressed in CHO cells\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 40.6, mcs nAts: 34\n", "[#6]-[#6]-[#7]-[#6](=[#8])-[#6]1-[#8]-[#6](-[#7]2:[#6]:[#7]:[#6]3:[#6]:2:[#7]:[#6]:[#7]:[#6]:3-[#7]-[#6]2:[#6]:[#6]:[#6](:[#6]:[#6]:2)-[#8]-[#6]-[#6](=[#8])-[#7]-[#6])-[#6](-[#6]-1-[#8])-[#8]\n", "Row: 2819 Inhibition of human recombinant carbonic anhydrase 12 preincubated for 15 mins by stopped-flow CO2 hydrase assay\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 32.4, mcs nAts: 22\n", "[#6]1:[#6](-[#6]2:[#6]:[#6]:[#6](:[#6]:[#6]:2)-[#35]):[#6]:[#7](:[#6]:1)-[#6]1:[#6]:[#6]:[#6](:[#6]:[#6]:1)-[#16](-[#7])(=[#8])=[#8]\n", "Row: 2820 Inhibition of human recombinant carbonic anhydrase 9 preincubated for 15 mins by stopped-flow CO2 hydrase assay\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 32.4, mcs nAts: 22\n", "[#6]1:[#6](-[#6]2:[#6]:[#6]:[#6](:[#6]:[#6]:2)-[#35]):[#6]:[#7](:[#6]:1)-[#6]1:[#6]:[#6]:[#6](:[#6]:[#6]:1)-[#16](-[#7])(=[#8])=[#8]\n", "Row: 2821 Inhibition of human recombinant carbonic anhydrase 2 preincubated for 15 mins by stopped-flow CO2 hydrase assay\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 32.4, mcs nAts: 22\n", "[#6]1:[#6](-[#6]2:[#6]:[#6]:[#6](:[#6]:[#6]:2)-[#35]):[#6]:[#7](:[#6]:1)-[#6]1:[#6]:[#6]:[#6](:[#6]:[#6]:1)-[#16](-[#7])(=[#8])=[#8]\n", "Row: 2822 Inhibition of human recombinant carbonic anhydrase 1 preincubated for 15 mins by stopped-flow CO2 hydrase assay\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 32.4, mcs nAts: 22\n", "[#6]1:[#6](-[#6]2:[#6]:[#6]:[#6](:[#6]:[#6]:2)-[#35]):[#6]:[#7](:[#6]:1)-[#6]1:[#6]:[#6]:[#6](:[#6]:[#6]:1)-[#16](-[#7])(=[#8])=[#8]\n", "Row: 2823 Binding affinity to RXRgamma\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 27.9, mcs nAts: 17\n", "[#6]-[#6](-[#6]=[#6]-[#6]-[#7]-[#6](:[#6]:[#6]:[#6]:,-[#6]-[#6]):[#6])=[#6]-[#6](=[#8])-[#8]\n", "Row: 2824 Displacement of [3H]histamine from human histamine H4 receptor expressed in SF9 cells coexpressing Galphai2, Gbeta1gamma2\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 18.2, mcs nAts: 15\n", "[#6]-[#6]-[#6]-[#7]-[#6](=[#8])-[#8]-[#6]-[#6]-[#6]-[#6]1:[#6]:[#7]:[#6]:[#7]:1\n", "Row: 2825 Displacement of [125I]human CLR from human CGRP expressed in HEK293 cells coexpressing human RAMP1\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 35.9, mcs nAts: 14\n", "[#6,#8]-,=[#7,#6]1-[#6,#7]-[#7,#6]-,:[#6,#7]-[#6]-12-[#6]-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1-[#6]-2\n", "Row: 2826 Binding affinity to RXRbeta\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 27.9, mcs nAts: 17\n", "[#6]-[#6](-[#6]=[#6]-[#6]-[#7]-[#6](:[#6]:[#6]:[#6]:,-[#6]-[#6]):[#6])=[#6]-[#6](=[#8])-[#8]\n", "Row: 2827 Binding affinity to RXRalpha\n", " * postgresql://localhost/chembl_23\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Mean nAts 27.9, mcs nAts: 17\n", "[#6]-[#6](-[#6]=[#6]-[#6]-[#7]-[#6](:[#6]:[#6]:[#6]:,-[#6]-[#6]):[#6])=[#6]-[#6](=[#8])-[#8]\n", "Row: 2828 Displacement of [3H]ABMECA from human adenosine A3 receptor expressed in CHO cells\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 40.2, mcs nAts: 34\n", "[#6]-[#6]-[#7]-[#6](=[#8])-[#6]1-[#8]-[#6](-[#7]2:[#6]:[#7]:[#6]3:[#6]:2:[#7]:[#6]:[#7]:[#6]:3-[#7]-[#6]2:[#6]:[#6]:[#6](:[#6]:[#6]:2)-[#8]-[#6]-[#6](=[#8])-[#7]-[#6])-[#6](-[#6]-1-[#8])-[#8]\n", "Row: 2829 Displacement of [3H]8-OH-DPAT from rat brain 5HT1A receptor\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 31.7, mcs nAts: 18\n", "[#6]-[#7]1:[#6](=[#8]):[#6]2:[#6](:[#7](:[#6]:1=[#8])-[#6]):[#7]:[#6](:[#7]:2-[#6]-[#6]-[#6]-[#7,#6])=,-[#8]\n", "Row: 2830 Displacement of [3H]ketanserin from rat brain 5HT2A receptor\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 31.7, mcs nAts: 18\n", "[#6]-[#7]1:[#6](=[#8]):[#6]2:[#6](:[#7](:[#6]:1=[#8])-[#6]):[#7]:[#6](:[#7]:2-[#6]-[#6]-[#6]-[#7,#6])=,-[#8]\n", "Row: 2831 Displacement of [3H]CGS21680 from adenosine A2A receptor in rat striatal membrane\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 27.7, mcs nAts: 17\n", "[#6]-[#16,#7,#8]-[#6]1:[#7]:[#6](-[#7]):[#7]2:[#6](:[#7]:1):[#7]:[#6](:[#7]:2)-[#6]1:[#6]:[#6]:[#6]:[#8]:1\n", "Row: 2832 Displacement of [3H]5CT from 5HT7 receptor in Wistar rat hyphalamic membrane\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 31.7, mcs nAts: 18\n", "[#6]-[#7]1:[#6](=[#8]):[#6]2:[#6](:[#7](:[#6]:1=[#8])-[#6]):[#7]:[#6](:[#7]:2-[#6]-[#6]-[#6]-[#7,#6])=,-[#8]\n", "Row: 2833 Displacement of [3H]histamine from human recombinant histamine H4 receptor\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 17.7, mcs nAts: 8\n", "[#6,#8,#9,#17]-,=[#6,#7,#8]-[#6,#7]1:,-[#6,#7]:,-[#6]:,-[#7,#6]:,-[#6]:,-[#7,#6]:,-1\n", "Row: 2834 Displacement of [3H]-vasopressin from mouse vasopressin 1a receptor expressed in HEK293 cell membranes after 1 hr by scintillation proximity assay\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 28.9, mcs nAts: 18\n", "[#8]=[#6](-[#6]1:[#6]:[#7]:[#6]2:[#6]:1:[#6]:[#6]:[#6](:[#6]:2)-[#17])-[#7]1-[#6]-[#6]-[#6,#7]-[#6]-[#6]-1\n", "Row: 2835 Inhibition of human acetylcholinesterase 1\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 17.4, mcs nAts: 6\n", "[#6,#7]1:,-[#6]:,-,=[#6]:,-[#6]:,-[#6,#7]:,-[#6]:,-1\n", "Row: 2836 Displacement of [3H]AF-DX 384 from Drosophila melanogaster mAChR by scintillation counting\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 22.0, mcs nAts: 4\n", "[#6,#7,#8]-,=,#[#6,#7,#8]-,#[#7,#6,#8]-,=,#[#6,#7,#8,#15]\n", "Row: 2837 Displacement of [3H]QNB from Drosophila melanogaster mAChR by scintillation counting\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 22.0, mcs nAts: 4\n", "[#6,#7,#8]-,=,#[#6,#7,#8]-,#[#7,#6,#8]-,=,#[#6,#7,#8,#15]\n", "Row: 2838 Inhibition of human butyrylcholinesterase\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 17.4, mcs nAts: 6\n", "[#6,#7]1:,-[#6]:,-,=[#6]:,-[#6]:,-[#6,#7]:,-[#6]:,-1\n", "Row: 2839 Inhibition of human HSD1 assessed as interconversion of cortisone to cortisol\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 29.5, mcs nAts: 27\n", "[#6]-[#6](-[#6])(-[#8]-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1)-[#6](=[#8])-[#7]-[#6]1-[#6]2-[#6]-[#6]3-[#6]-[#6]-1-[#6]-[#6](-[#6]-2)(-[#16](-,=[#7,#6,#8])(=[#8])=,-[#8,#6])-[#6]-3\n", "Row: 2840 Inhibition of mouse HSD1 assessed as interconversion of cortisone to cortisol\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 29.5, mcs nAts: 27\n", "[#6]-[#6](-[#6])(-[#8]-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1)-[#6](=[#8])-[#7]-[#6]1-[#6]2-[#6]-[#6]3-[#6]-[#6]-1-[#6]-[#6](-[#6]-2)(-[#16](-,=[#7,#6,#8])(=[#8])=,-[#8,#6])-[#6]-3\n", "Row: 2841 Displacement of [3H]Citalopram from SERT in rat cerebral cortex after 1 hr by liquid scintillation counting analysis\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 32.9, mcs nAts: 19\n", "[#6]1:,-[#6,#7]:,-[#6,#7]:,-[#6,#7]:[#6,#7]:,-[#6]:,-1-,:[#6,#7]-,:[#6]-,:[#7](-[#6]-[#6]-[#6]-[#7]1-[#6]-[#6]-[#6,#7]:,-[#6]-[#6]-1)-,:[#6]\n", "Row: 2842 Displacement of [125I]DOI from human recombinant 5HT2A receptor expressed in HEK293 cells by scintillation counting\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 33.3, mcs nAts: 25\n", "[#6]1:[#6]:[#6]:[#6]:[#6](:[#6]:1)-[#6](=[#8])-[#7]-[#6]1:[#6]:[#6]:[#6](:[#6](:[#6]:1)-[#6]1:[#6,#7]:[#6,#7]:[#7,#6]:[#7,#6]:1-[#6,#17])-[#8]-[#6]-[#6]-[#7]\n", "Row: 2843 Displacement of [125I]DOI from human recombinant 5HT2C receptor expressed in HEK293 cells by scintillation counting\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 33.3, mcs nAts: 25\n", "[#6]1:[#6]:[#6]:[#6]:[#6](:[#6]:1)-[#6](=[#8])-[#7]-[#6]1:[#6]:[#6]:[#6](:[#6](:[#6]:1)-[#6]1:[#6,#7]:[#6,#7]:[#7,#6]:[#7,#6]:1-[#6,#17])-[#8]-[#6]-[#6]-[#7]\n", "Row: 2844 Displacement of [20-3H]PDBu from recombinant PKC alpha in presence of phosphatidylserine\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 28.7, mcs nAts: 12\n", "[#6]-[#6](-[#6])-[#6]-[#6](-[#6]-[#6]=[#6])-[#6]-[#6](-[#6])-[#6]\n", "Row: 2845 Displacement of [3H]-histamine from human histamine H4 receptor expressed in insect Sf9 cell membrane co-expressing Galphai2/Gbeta1gamma2 subunits after 60 mins by liquid scintillation counting analysis\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 21.8, mcs nAts: 20\n", "[#6,#8]-[#7,#6]1-,:[#6]-,:[#6]-,:[#7,#6](-,:[#6]-,:[#6]-,:1)-[#6]1:[#7]:[#6](-[#7]):[#7]:[#6](:[#7]:1)-[#6,#7]1:,-[#6]:,-[#6]:,-[#6,#7]:,-[#6]:,-[#6]:,-1\n", "Row: 2846 Inhibition of human carbonic anhydrase 1 by stopped flow CO2 hydration method\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 18.5, mcs nAts: 4\n", "[#7,#6,#8]-,=[#6,#7]-[#6,#7,#8]-[#6,#7]\n", "Row: 2847 Displacement of [3H]-SR142801 from human NK3 receptor expressed in recombinant CHO cells\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 49.0, mcs nAts: 31\n", "[#6]-[#7]1-[#6](=[#8])-[#8]-[#6]2(-[#6]3:[#6]-1:[#6]:[#6]:[#6](:[#6]:3)-[#9])-[#6]-[#6]-[#7](-[#6]-[#6]-2)-[#6]-[#6]-[#6]-[#6](=,-[#8,#6])-[#7,#6]-[#6,#7]-[#6](=,-[#8,#6])-[#7,#6]-[#6,#7]-[#6]-[#7,#6,#8]\n", "Row: 2848 Reversible mixed-type inhibition of horse serum butyrylcholinesterase using acetylcholine bromide as substrate by Lineweaver-Burk plot analysis\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 23.2, mcs nAts: 15\n", "[#6]-[#7]1:[#6]:[#6]:[#6]:[#6]:[#6]:[#6]:[#6]:[#6]:[#6]:[#6]:[#6]:[#6]:[#6]:1\n", "Row: 2849 Reversible mixed-type inhibition of electric eel acetylcholinesterase using acetylcholine bromide as substrate by Lineweaver-Burk plot analysis\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 23.2, mcs nAts: 15\n", "[#6]-[#7]1:[#6]:[#6]:[#6]:[#6]:[#6]:[#6]:[#6]:[#6]:[#6]:[#6]:[#6]:[#6]:[#6]:1\n", "Row: 2850 Displacement of 3-[4-({2',6'-dimethyl-6-[(4-[3H])phenylmethoxy]biphenyl-3-yl}methoxy)phenyl] propanoic acid from rat GPR40 receptor expressed in CHO cell membrane after 90 mins by liquid scintillation counting in the presence of 0.2% BSA\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 33.5, mcs nAts: 27\n", "[#6]-[#6]1:[#6]:[#6]:[#6]:[#6](:[#6]:1-[#6]1:[#6]:[#6]:[#6]:[#6](:[#6]:1)-[#6]-[#8,#7]-[#6]1:[#6]:[#6]:[#6](:[#6]:[#6]:1)-[#6]-[#6]-[#6](=[#8])-[#8])-[#6]\n", "Row: 2851 Inhibition of human carbonic anhydrase 2 by stopped flow CO2 hydration method\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 18.5, mcs nAts: 4\n", "[#7,#6,#8]-,=[#6,#7]-[#6,#7,#8]-[#6,#7]\n", "Row: 2852 Inhibition of rat recombinant FAAH expressed in Escherichia coli using [14C]oleamide as substrate assessed as oleic acid formation by Dixon plot analysis\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 28.3, mcs nAts: 18\n", "[#8]=[#6](-[#6]1:[#7]:[#6]:[#6]:[#8]:1)-[#6]1-[#6]-[#8,#6]-[#6]2:[#6](-[#6,#8]-1):[#6]:[#6]:[#6](:[#6]:2)-[#6,#8]\n", "Row: 2853 Competitive inhibition of human aromatase using dibenzylfluorescein substrate after 10 mins preincubation measured every 10 sec for 5 mins by Michaelis-Menten and Dixon plot analysis\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 18.5, mcs nAts: 7\n", "[#8,#6,#9,#17,#35]-[#6]1:[#6]:[#6,#7]:[#6]:[#6]:[#6,#7]:1\n", "Row: 2854 Inhibition of human carbonic anhydrase 3 by stopped flow CO2 hydration method\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 18.5, mcs nAts: 4\n", "[#7,#6,#8]-,=[#6,#7]-[#6,#7,#8]-[#6,#7]\n", "Row: 2855 Displacement of [3H]CP-55,940 from mouse CB2 receptor expressed in CHO cell membranes\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 31.5, mcs nAts: 17\n", "[#6]-[#6]-[#7,#8]-[#6](=[#8])-[#6]1:[#6]:[#6]:[#6](:[#6](:[#7]:1)-[#8]-[#6]-[#6]1-[#6]-[#6]-1)-[#7,#6]\n", "Row: 2856 Displacement of [3H]PK11195 from TSPO in rat kidney mitochondrial membranes\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 28.7, mcs nAts: 27\n", "[#6]-[#7](-[#6]-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1)-[#6](=[#8])-[#6]1:[#7]:[#6](-[#6]2:[#6]:[#6]:[#6]:[#6]:[#6]:2):[#6]2:[#6](:[#7,#6]:1):[#6]:[#6]:[#6]:[#6]:2\n", "Row: 2857 Binding affinity to human CB2 receptor expressed in CHOK1 cells\n", " * postgresql://localhost/chembl_23\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Mean nAts 29.1, mcs nAts: 25\n", "[#6,#7]-[#7](:,-[#6,#7]:,=[#7,#6]):,-[#6](:,-[#6]1:,-[#7,#6]:,=[#7,#6](:,-[#6,#7](:,-[#6,#7]:,-1)-[#6]1:[#6]:[#6]:[#6](:[#6]:[#6]:1)-[#17])-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1-[#17])=[#8]\n", "Row: 2858 Displacement of [3H]SR-141716 from human CB1 receptor transfected in HEK293 cells\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 29.1, mcs nAts: 25\n", "[#6,#7]-[#7](:,-[#6,#7]:,=[#7,#6]):,-[#6](:,-[#6]1:,-[#7,#6]:,=[#7,#6](:,-[#6,#7](:,-[#6,#7]:,-1)-[#6]1:[#6]:[#6]:[#6](:[#6]:[#6]:1)-[#17])-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1-[#17])=[#8]\n", "Row: 2859 Displacement of [3H]NAMH from human histamine H3 receptor expressed in CHO cells\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 25.4, mcs nAts: 21\n", "[#6]-[#7]1-[#6]-[#6]-[#6](-[#6]-[#6]-1)-[#8]-[#6]1:[#6]:[#6]:[#6](:[#6]:[#7,#6]:1)-[#6]1:,-[#6,#7]:,-[#6,#7]:,-[#6](:,-[#7,#6]:,-[#7,#6]:,=1)=[#8]\n", "Row: 2860 Displacement of N-[3H]-alpha-methylhistamine from human histamine H3 receptor expressed in SK-N-MC cells\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 31.0, mcs nAts: 29\n", "[#6]1:[#6]:[#6]:[#6](:[#6]:[#6]:1)-[#6]1-[#6]-[#7]2-[#6]-[#6]-[#6]-[#6]-2-[#6]2:[#6]-1:[#6]:[#6]:[#6](:[#6]:2)-[#8]-[#6]-[#6]-[#6]-[#7]1-[#6]-[#6]-[#6]-[#6]-[#6]-1\n", "Row: 2861 Displacement of [3H]citalopram from rat brain SERT\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 31.0, mcs nAts: 29\n", "[#6]1:[#6]:[#6]:[#6](:[#6]:[#6]:1)-[#6]1-[#6]-[#7]2-[#6]-[#6]-[#6]-[#6]-2-[#6]2:[#6]-1:[#6]:[#6]:[#6](:[#6]:2)-[#8]-[#6]-[#6]-[#6]-[#7]1-[#6]-[#6]-[#6]-[#6]-[#6]-1\n", "Row: 2862 Antagonist activity at androgen receptor (unknown origin)\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 34.3, mcs nAts: 13\n", "[#7]-[#6]1:[#6]:[#6,#7]:[#6](:[#6](:[#6]:1)-[#6](-[#9])(-[#9])-[#9])-[#6]#[#7]\n", "Row: 2863 Displacement of [3H]diprenorphine from human cloned mu opioid receptor\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 44.2, mcs nAts: 38\n", "[#16,#6]-[#6]-[#6]-[#6](-[#7]-[#6](=[#8])-[#6](-[#6]-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1)-[#7]-[#6](=[#8])-[#6]-[#7]-[#6](=[#8])-[#6]-[#7]-[#6](=[#8])-[#6](-[#7])-[#6]-[#6]1:[#6]:[#6]:[#6,#7]:[#6]:[#6]:1)-[#6](=,-[#8,#7])-,=[#8,#7]\n", "Row: 2864 Inhibition of N-terminally His6-tagged human beta-catenin (residues 138-686)/C-terminally biotinylated human Tcf4 (residues 7-51) interaction after 45 mins by AlphaScreen competitive inhibition assay\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 24.0, mcs nAts: 6\n", "[#7,#6]1:[#7,#6]:[#6]:[#7,#6]:[#6]-,:[#6]:1\n", "Row: 2865 Displacement of [3H]diprenorphine from human cloned delta opioid receptor\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 44.2, mcs nAts: 38\n", "[#16,#6]-[#6]-[#6]-[#6](-[#7]-[#6](=[#8])-[#6](-[#6]-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1)-[#7]-[#6](=[#8])-[#6]-[#7]-[#6](=[#8])-[#6]-[#7]-[#6](=[#8])-[#6](-[#7])-[#6]-[#6]1:[#6]:[#6]:[#6,#7]:[#6]:[#6]:1)-[#6](=,-[#8,#7])-,=[#8,#7]\n", "Row: 2866 Displacement of [3H]diprenorphine from human cloned kappa opioid receptor\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 44.2, mcs nAts: 38\n", "[#16,#6]-[#6]-[#6]-[#6](-[#7]-[#6](=[#8])-[#6](-[#6]-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1)-[#7]-[#6](=[#8])-[#6]-[#7]-[#6](=[#8])-[#6]-[#7]-[#6](=[#8])-[#6](-[#7])-[#6]-[#6]1:[#6]:[#6]:[#6,#7]:[#6]:[#6]:1)-[#6](=,-[#8,#7])-,=[#8,#7]\n", "Row: 2867 Competitive inhibition of esterase activity of human thrombin assessed as decrease in p-nitrophenol production using Nalpha-Z-L-Lys-ONp as substrate by spectrophotometric analysis\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 13.7, mcs nAts: 9\n", "[#7,#6]=,-[#6,#7](-[#7,#6])-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1\n", "Row: 2868 Displacement of [3H]-LSD from human recombinant 5-HT6 receptor expressed in HEK293 cell membrane after 1 hr by Microbeta scintillation counting analysis\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 35.4, mcs nAts: 16\n", "[#6,#7]-[#6]-[#6]-[#6]-[#7]1-[#6]-[#6]-[#7](-[#6]-[#6]-1)-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1\n", "Row: 2869 Inhibition of human carbonic anhydrase 4 by stopped flow CO2 hydration method\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 18.5, mcs nAts: 4\n", "[#7,#6,#8]-,=[#6,#7]-[#6,#7,#8]-[#6,#7]\n", "Row: 2870 Displacement of [3H]-MLA from Sprague-Dawley rat brain alpha7 nicotine acetylcholine receptor after 90 mins by radioligand displacement assay\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 19.9, mcs nAts: 13\n", "[#6]-[#7](-[#6])-[#6]-[#6]-[#8]-[#6]1:[#6]:[#7,#6]:[#6]:[#6](:[#6]:1)-[#7,#6,#9]\n", "Row: 2871 Displacement of [3H]-8-OH-DPAT from human recombinant 5-HT1A receptor expressed in HEK293 cell membrane after 1 hr by Microbeta scintillation counting analysis\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 35.7, mcs nAts: 16\n", "[#6,#7]-[#6]-[#6]-[#6]-[#7]1-[#6]-[#6]-[#7](-[#6]-[#6]-1)-[#6]1:[#7,#6]:[#6]:[#6]:[#6]:[#7,#6]:1\n", "Row: 2872 Inhibition of human carbonic anhydrase 5A by stopped flow CO2 hydration method\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 18.5, mcs nAts: 4\n", "[#7,#6,#8]-,=[#6,#7]-[#6,#7,#8]-[#6,#7]\n", "Row: 2873 Inhibition of human carbonic anhydrase 1 by by stopped flow CO2 hydration method\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 29.6, mcs nAts: 17\n", "[#6,#8,#16]-,=[#6](=,-[#8,#6,#7])-,=[#7]-[#6]1:[#7]:[#6]2:[#6]:[#6]:[#6](:[#6]:[#6]:2:[#16]:1)-[#16](-[#7])(=[#8])=[#8]\n", "Row: 2874 Inhibition of human carbonic anhydrase 2 by by stopped flow CO2 hydration method\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 29.6, mcs nAts: 17\n", "[#6,#8,#16]-,=[#6](=,-[#8,#6,#7])-,=[#7]-[#6]1:[#7]:[#6]2:[#6]:[#6]:[#6](:[#6]:[#6]:2:[#16]:1)-[#16](-[#7])(=[#8])=[#8]\n", "Row: 2875 Inhibition of human carbonic anhydrase 9 by by stopped flow CO2 hydration method\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 29.6, mcs nAts: 17\n", "[#6,#8,#16]-,=[#6](=,-[#8,#6,#7])-,=[#7]-[#6]1:[#7]:[#6]2:[#6]:[#6]:[#6](:[#6]:[#6]:2:[#16]:1)-[#16](-[#7])(=[#8])=[#8]\n", "Row: 2876 Inhibition of human carbonic anhydrase 12 by by stopped flow CO2 hydration method\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 29.6, mcs nAts: 17\n", "[#6,#8,#16]-,=[#6](=,-[#8,#6,#7])-,=[#7]-[#6]1:[#7]:[#6]2:[#6]:[#6]:[#6](:[#6]:[#6]:2:[#16]:1)-[#16](-[#7])(=[#8])=[#8]\n", "Row: 2877 Inhibition of human carbonic anhydrase 5B by stopped flow CO2 hydration method\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 18.5, mcs nAts: 4\n", "[#7,#6,#8]-,=[#6,#7]-[#6,#7,#8]-[#6,#7]\n", "Row: 2878 Displacement of [3H]N-methylscopolamine from muscarinic M3 receptor in rat submandibular gland\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 30.4, mcs nAts: 20\n", "[#6]-[#6]-[#7]1-[#6]-[#6]2-[#6](-[#6]-2-[#6]-1)-[#7]-[#6](=[#8])-[#6](-[#8])(-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1)-[#6]\n", "Row: 2879 Displacement of [3H]N-methylscopolamine from muscarinic M2 receptor in rat heart\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 30.4, mcs nAts: 20\n", "[#6]-[#6]-[#7]1-[#6]-[#6]2-[#6](-[#6]-2-[#6]-1)-[#7]-[#6](=[#8])-[#6](-[#8])(-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1)-[#6]\n", "Row: 2880 Inhibition of human recombinant EGFR by fluorescence polarization assay\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 30.9, mcs nAts: 23\n", "[#8,#6]-[#6]1:[#6]:[#6]:[#6]2:[#6](:[#6]:1):[#6](:[#6](:[#6]:[#7]:2)-[#6]#[#7])-[#7]-[#6]1-[#6]-[#6]-1-[#6]1:[#6]:[#6]:[#6]:[#6]:[#6]:1\n", "Row: 2881 Displacement of [3H]spiperone from human D2L receptor expressed in CHO cells\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 33.2, mcs nAts: 26\n", "[#6]1-[#6]-[#6,#7]-[#6]2:[#6]-1:[#6]:[#6](:[#6]:[#6]:2)-[#6]-[#6]-[#7]1-[#6]-[#6]-[#7](-[#6]-[#6]-1)-[#6]1:[#7]:[#16]:[#6]2:[#6]:1:[#6]:[#6]:[#6]:[#6]:2\n", "Row: 2882 Binding affinity to human bradykinin B1 receptor expressed in CHO cells\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 29.1, mcs nAts: 21\n", "[#6]-[#6]1:[#6](-[#9,#17]):[#6]:[#6]:[#6]:[#6]:1-[#6]1:[#6]:[#6,#7]:[#6](:[#6](:[#6]:1)-[#9,#17])-[#6]-[#7]-[#6](=[#8])-[#6]-[#8,#6,#7]\n", "Row: 2883 Displacement of [3H]naltrindole from human delta opioid receptor expressed in HEK293 cells\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 33.5, mcs nAts: 15\n", "[#6,#7]-[#6](-,=[#6,#8])-[#6]1-[#6]-[#6]-[#6,#7](-[#6]-[#6]-1)-[#7,#6]1-[#6]-[#6]-[#6]-[#6]-[#6]-1\n", "Row: 2884 Displacement of [3H]diprenorphine from human kappa opioid receptor expressed in HEK293 cells\n", " * postgresql://localhost/chembl_23\n", "Mean nAts 33.5, mcs nAts: 15\n", "[#6,#7]-[#6](-,=[#6,#8])-[#6]1-[#6]-[#6]-[#6,#7](-[#6]-[#6]-1)-[#7,#6]1-[#6]-[#6]-[#6]-[#6]-[#6]-1\n", "Row: 2885 Displacement of [3H]diprenorphine from human mu opioid receptor expressed in CHO cells\n", " * postgresql://localhost/chembl_23\n" ] }, { "name": "stdout", "output_type": "stream", "text": [ "Mean nAts 33.5, mcs nAts: 15\n", "[#6,#7]-[#6](-,=[#6,#8])-[#6]1-[#6]-[#6]-[#6,#7](-[#6]-[#6]-1)-[#7,#6]1-[#6]-[#6]-[#6]-[#6]-[#6]-1\n" ] } ], "source": [ "results = []\n", "for i,row in enumerate(d):\n", " assay_id=row[0]\n", " print('Row:',i+1,row[-1])\n", " smis = %sql \\\n", " select molregno,m from activities join rdk.mols using (molregno) where assay_id = :assay_id\n", " ms = [Chem.MolFromSmiles(y) for x,y in smis]\n", " tpl,svg=MCS_Report(ms,threshold=0.9,completeRingsOnly=True)\n", " results.append((row,smis,tpl,svg))" ] }, { "cell_type": "code", "execution_count": 60, "metadata": {}, "outputs": [], "source": [ "for i,row in enumerate(results):\n", " ms = list(row[1])\n", " row = (row[0],ms,row[2],row[3])\n", " results[i] = row\n", "import pickle\n", "pickle.dump(results,open('../data/scaffolds_revisited2.pkl','wb+'))" ] }, { "cell_type": "code", "execution_count": 61, "metadata": {}, "outputs": [ { "data": { "text/plain": [ "((523462, 49, 'Displacement of [3H]PSB0413 from human platelet P2Y12 receptor'),\n", " [(501373, 'Nc1c(S(=O)(=O)[O-])cc(Nc2ccccc2O)c2c1C(=O)c1ccccc1C2=O.[Na+]'),\n", " (501646, 'Cc1cc(C)c(Nc2cc(S(=O)(=O)[O-])c(N)c3c2C(=O)c2ccccc2C3=O)c(C)c1N.[Na+]'),\n", " (217720, 'Cc1cc(C)c(Nc2cc(S(=O)(=O)[O-])c(N)c3c2C(=O)c2ccccc2C3=O)c(C)c1.[Na+]'),\n", " (438601, 'CC(=O)Nc1ccc(Nc2cc(S(=O)(=O)[O-])c(N)c3c2C(=O)c2ccccc2C3=O)cc1.[Na+]'),\n", " (438640, 'Nc1c(S(=O)(=O)[O-])cc(Nc2cccc([N+](=O)[O-])c2)c2c1C(=O)c1ccccc1C2=O.[Na+]'),\n", " (501294, 'Nc1ccc(Nc2cc(S(=O)(=O)[O-])c(N)c3c2C(=O)c2ccccc2C3=O)cc1.[Na+]'),\n", " (501293, 'Nc1ccccc1Nc1cc(S(=O)(=O)[O-])c(N)c2c1C(=O)c1ccccc1C2=O.[Na+]'),\n", " (501217, 'Nc1c(S(=O)(=O)[O-])cc(Nc2cccc3ccccc23)c2c1C(=O)c1ccccc1C2=O.[Na+]'),\n", " (501216, 'COc1ccc(CCNc2cc(S(=O)(=O)[O-])c(N)c3c2C(=O)c2ccccc2C3=O)cc1OC.[Na+]'),\n", " (501215, 'Nc1c(S(=O)(=O)[O-])cc(NCCc2ccccc2)c2c1C(=O)c1ccccc1C2=O.[Na+]'),\n", " (501214, 'Nc1c(S(=O)(=O)[O-])cc(NCc2ccccc2)c2c1C(=O)c1ccccc1C2=O.[Na+]'),\n", " (501520, 'Nc1ccc(Nc2cc(S(=O)(=O)[O-])c(N)c3c2C(=O)c2ccccc2C3=O)c(S(=O)(=O)[O-])c1.[Na+].[Na+]'),\n", " (501371, 'Nc1c(S(=O)(=O)[O-])cc(Nc2ccccc2C(=O)O)c2c1C(=O)c1ccccc1C2=O.[Na+]'),\n", " (438892, 'Nc1c(S(=O)(=O)[O-])cc(Nc2ccccc2)c2c1C(=O)c1ccccc1C2=O.[Na+]'),\n", " (438641, 'Nc1c(S(=O)(=O)[O-])cc(Nc2cccc(Cl)c2)c2c1C(=O)c1ccccc1C2=O.[Na+]'),\n", " (438642, 'Nc1c(S(=O)(=O)[O-])cc(Nc2ccc(Cl)cc2)c2c1C(=O)c1ccccc1C2=O.[Na+]'),\n", " (501521, 'Nc1c(S(=O)(=O)[O-])cc(Nc2ccc(Cl)cc2C(=O)O)c2c1C(=O)c1ccccc1C2=O.[Na+]'),\n", " (501519, 'Nc1cc(Nc2cc(S(=O)(=O)[O-])c(N)c3c2C(=O)c2ccccc2C3=O)cc(C(=O)O)c1.[Na+]'),\n", " (501647, 'Nc1c(S(=O)(=O)[O-])cc(Nc2cc(Nc3nc(Cl)nc(Cl)n3)cc(C(=O)O)c2)c2c1C(=O)c1ccccc1C2=O.[Na+]'),\n", " (218035, 'Nc1c(S(=O)(=O)[O-])cc(Nc2ccc(Nc3nc(Cl)nc(Cl)n3)c(S(=O)(=O)[O-])c2)c2c1C(=O)c1ccccc1C2=O.[Na+].[Na+]'),\n", " (501459, 'Nc1ccc(Nc2cc(S(=O)(=O)[O-])c(N)c3c2C(=O)c2ccccc2C3=O)cc1S(=O)(=O)[O-].[Na+].[Na+]'),\n", " (438604, 'Nc1c(S(=O)(=O)[O-])cc(Nc2ccc(Nc3ccccc3)cc2)c2c1C(=O)c1ccccc1C2=O.[Na+]'),\n", " (501719, 'Nc1c(S(=O)(=O)[O-])cc(Nc2ccc(Sc3ccccc3)cc2)c2c1C(=O)c1ccccc1C2=O.[Na+]'),\n", " (501458, 'Nc1cc(Nc2cc(S(=O)(=O)[O-])c(N)c3c2C(=O)c2ccccc2C3=O)ccc1S(=O)(=O)[O-].[Na+].[Na+]'),\n", " (501372, 'Nc1c(S(=O)(=O)[O-])cc(Nc2ccc(S(=O)(=O)[O-])cc2)c2c1C(=O)c1ccccc1C2=O.[Na+].[Na+]'),\n", " (501522, 'Nc1c(S(=O)(=O)[O-])cc(Nc2cc(Cl)ccc2C(=O)O)c2c1C(=O)c1ccccc1C2=O.[Na+]'),\n", " (501648, 'Nc1c(S(=O)(=O)[O-])cc(Nc2ccc(Nc3nc(Cl)nc(Cl)n3)cc2)c2c1C(=O)c1ccccc1C2=O.[Na+]'),\n", " (501649, 'COc1nc(Cl)nc(Nc2ccc(Nc3cc(S(=O)(=O)[O-])c(N)c4c3C(=O)c3ccccc3C4=O)cc2S(=O)(=O)[O-])n1.[Na+].[Na+]'),\n", " (501651, 'Nc1c(S(=O)(=O)[O-])cc(Nc2ccc(Cc3ccccc3)cc2)c2c1C(=O)c1ccccc1C2=O.[Na+]'),\n", " (501721, 'Cc1cc(Nc2ccc(Nc3ccccc3)c(S(=O)(=O)[O-])c2)c2c(c1N)C(=O)c1ccccc1C2=O.[Na+]'),\n", " (501789, 'Nc1c(S(=O)(=O)[O-])cc(Nc2ccc(Nc3ncccn3)c(S(=O)(=O)[O-])c2)c2c1C(=O)c1ccccc1C2=O.[Na+].[Na+]'),\n", " (501720, 'Nc1c(S(=O)(=O)[O-])cc(Nc2ccc(Oc3ccccc3)c(S(=O)(=O)[O-])c2)c2c1C(=O)c1ccccc1C2=O.[Na+].[Na+]'),\n", " (501650, 'Nc1c(S(=O)(=O)[O-])cc(Nc2ccc(Nc3ccccc3)c(S(=O)(=O)[O-])c2)c2c1C(=O)c1ccccc1C2=O.[Na+].[Na+]'),\n", " (501788, 'Nc1c(C(=O)O)cc(Nc2ccc(Nc3ccccc3)c(S(=O)(=O)[O-])c2)c2c1C(=O)c1ccccc1C2=O.[Na+]'),\n", " (501457, 'Nc1c(S(=O)(=O)[O-])cc(Nc2ccc(O)cc2)c2c1C(=O)c1ccccc1C2=O.[Na+]'),\n", " (501790, 'Nc1c(S(=O)(=O)[O-])cc(Nc2ccc(Nc3ncccn3)cc2)c2c1C(=O)c1ccccc1C2=O.[Na+]'),\n", " (61756, 'O=C1c2cccc(O)c2C(=O)c2c(O)cc(CO)cc21'),\n", " (61469, 'Cc1cc(O)c2c(c1)C(=O)c1cccc(O)c1C2=O'),\n", " (61174, 'Cc1cc(O)c2c(c1)C(=O)c1cc(O)cc(O)c1C2=O'),\n", " (649641, 'Cc1cc(O)c2c(c1)C(=O)c1cc(O[C@@H]3O[C@@H](C)[C@H](O)[C@@H](O)[C@H]3O)cc(O)c1C2=O'),\n", " (61248, 'COc1cc(O)c2c(c1)C(=O)c1cc(C)cc(O)c1C2=O'),\n", " (501859, 'COC(=O)c1cc(O)c2c(c1)C(=O)c1cccc(O)c1C2=O'),\n", " (501860, 'O=C1c2c(O)cccc2C(C2OC(CO)C(O)C(O)C2O)c2cc(CO)cc(O)c21'),\n", " (204788, 'Cc1cc(O)c2c(c1)Cc1cc(O)cc(O)c1C2=O'),\n", " (438486, 'CN(C)[C@@H]1C(O)=C(C(N)=O)C(=O)[C@@]2(O)C(O)=C3C(=O)c4c(O)ccc(Cl)c4[C@@](C)(O)[C@H]3C[C@@H]12'),\n", " (373985, 'CN(C)[C@@H]1C(O)=C(C(N)=O)C(=O)[C@@]2(O)C(O)=C3C(=O)c4c(O)cccc4[C@@](C)(O)[C@H]3C[C@@H]12'),\n", " (78759, 'COc1cccc2c1C(=O)c1c(O)c3c(c(O)c1C2=O)C[C@@](O)(C(=O)CO)C[C@@H]3O[C@H]1C[C@H](N)[C@H](O)[C@H](C)O1'),\n", " (4504, 'O=C1c2c(O)ccc(O)c2C(=O)c2c(NCCNCCO)ccc(NCCNCCO)c21'),\n", " (501858, 'Cc1cc(O)c2c(c1)C(=O)c1cc(OC3OCC(O)(CO)C3O)cc(O)c1C2=O')],\n", " MCSRes(smarts='[#6,#8,#16]-[#6]1:,-[#6]:,-[#6](-[#8,#7]):,-[#6]2:[#6](:,-[#6]:,-1)-,:[#6](=,-[#8,#6])-,:[#6]1:,-[#6]:,-[#6]:[#6]:,-[#6]:,-[#6]:1-,:[#6]-,:2=,-[#8]', numAtoms=18, numMols=49, avgNumMolAtoms=array([30, 33, 32, 33, 32, 30, 30, 33, 35, 31, 30, 35, 32, 29, 30, 30, 33,\n", " 33, 41, 43, 35, 36, 36, 35, 34, 33, 38, 44, 36, 37, 41, 41, 41, 39,\n", " 30, 36, 20, 19, 20, 30, 21, 22, 30, 19, 33, 32, 39, 32, 29]), mcsTime=3.679499626159668),\n", " \"\\n\\n \\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n\\n[#6,#8,#16]\\n[#8,#7]\\n[#8,#6]\\nO\\n\\n\")" ] }, "execution_count": 61, "metadata": {}, "output_type": "execute_result" } ], "source": [ "results[0]" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "# Wrapping up" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "There's a lot more we can do with this set of scaffolds. There are more posts to come..." ] } ], "metadata": { "hide_input": false, "kernelspec": { "display_name": "Python 3", "language": "python", "name": "python3" }, "language_info": { "codemirror_mode": { "name": "ipython", "version": 3 }, "file_extension": ".py", "mimetype": "text/x-python", "name": "python", "nbconvert_exporter": "python", "pygments_lexer": "ipython3", "version": "3.8.2" } }, "nbformat": 4, "nbformat_minor": 1 }