Introduction
This dataset containing measurements of drug-target interactions is provided by EvE Bio. It is actively being generated with a quantitative screening process, and data for new targets is added every other month. For each target, one or more types of activity (agonism, antagonism, etc.) are measured for every drug in a 1,397 member compound library that primarily represents FDA approved small molecule drugs. Results are reported for every combination, whether they are active or inactive. Targets are members of three classes: nuclear receptors (NRs), 7-transmembrane receptors (7TMs, aka G-protein coupled receptors), and protein kinases. Data is also reported for cell viability, which is particularly important in conjunction with the 7TM results, which are generated with live cell assays (the other classes use biochemical assays). More information can be found on Eve's Data Page including methods detailing assays used and data processing. The data provided in this dataset, as well as the raw data, can be viewed interactively in the data explorer available on that site.
Since drugs are typically selective for a small number of targets, active results are sparse, on the order of 1%. The key response variables are compound activity and potency. Binary activity and maximum observed activity is captured for every compound-assay combination
(outcome_is_active, outcome_max_activity). Activity is expressed as a % of maximum activity, in reference to known standard compounds for each assay. For active compounds that have sufficient potency to be
measurable in the concentration range tested (is_quantified), four-parameter logistic curve fits result in quantified potency, measured as pXC50 (outcome_potency_pxc50). pXC50 is the negative log of the IC50/EC50 –
the concentration at which half of the maximum activity is reached. Higher pXC50s are higher potency, and 5 is the lowest quantifiable pXC50 in the concentration range used.
To collect these measurements, EvE uses a two-phase quantitative screening process. All combinations of compounds and assays are included in the screening phase, which includes two replicates of three concentrations. A rules-based progression algorithm determines which compounds advance to the profiling phase, where the 11-point concentration range is 10 μM to 10 pM. The full concentration response is effectively censored by the concentration range tested. For low potency compounds, this leads to results that are reported as active, but not quantified.
In addition to cytotoxicity, compounds can interfere with assays in various ways, leading to potentially spurious results. Compounds with potential cytotoxicity, indicating poor cell viability, are flagged when the cell viability assay has observed maximum values greater than 15%. Compounds that appear with suspicious frequency (> 20 hits) for any given target class and mode are flagged as “high frequency”.
They could be removed from the data before model development, but in some cases true activity will be lost in the process. Alternatively,
this frequency flag could be treated as a response in itself, in order to develop models that link compound and concentration response characteristics
with particular forms of interference. Columns that flag combinations where either cell viability or hit frequency merit consideration are included in the dataset
(viability_flag, frequency_flag).
The dataset contains one row per combination of target, compound, mode, and mechanism (currently there is only one mechanism per target class, but this will change when data for both signaling pathways is added for 7TMs in 2026). NRs and 7TMs have two modes each, while PKs and cell viability have one. Multiple identifiers are included for both compounds and targets. For compounds: SMILES (a text-based chemical representation), InChIkey, CAS #, UNII, and DrugBank ID. For targets: gene, Uniprot ID, and mutant/wildtype indicators.
Data Schema
assay_id(string): EvE Bio assay identifiertarget_id(string): EvE Bio target identifiercompound_id(string): EvE Bio compound identifiermode(string): Assay mode (Agonist, Antagonist, or Binding)mechanism(string): Assay mechanism of action (Barr2 Recruitment, Co-factor Recruitment, Competition Binding, ATP Production)outcome_is_active(bool): Flag to indicate whether the result is activeoutcome_potency_pxc50(float|null): pXC50 based on the fitted curveoutcome_max_activity(float) : Maximum Activity: The asymptotic max if a pXC50 was quantified, otherwise the highest average observed activityobserved_max(float): Maximum Activity: The highest average observed activity (by concentration) for the final phase progressed tois_quantified(bool): Flag to indicate whether the result was quantified in the profiling phasefrequency_flag(bool): Flag to indicate whether high frequency of 'hits' for the target class and mode should be considered when intrepreting assay resultsviability_flag(bool): Flag to indicate whether viability data should be examined in conjunction with assay resultspxc50_modifier(string): Modifier for the pXC50 value (fitting all replicates together)slope(float|null): Slope of the fitted curve (fitting all replicates together)asymp_min(float|null): Asymptotic minimum of the fitted curve (fitting all replicates together)asymp_max(float|null): Asymptotic maximum of the fitted curve (fitting all replicates together)assay__technology(string): Assay technology used (TR-FRET, FRET, Luminescence)target__class(string): Target class (7TM, NR, Kinase)target__gene(string): Gene nametarget__uniprot_id(string): UniProt identifier (www.uniprot.org)target__is_mutant(bool): Flag to indicate whether the gene for a target is a mutanttarget__wildtype_id(string): Target_ID for the wildtype to link mutant assays with their associated wildtype assaytarget__name(string): Target full namecompound__name(string): Compound namecompound__smiles(string): SMILEScompound__drugbank_id(string): DrugBank identifiercompound__cas(string): CAS registry numbercompound__unii(string): FDA Unique Ingredient Identifiercompound__inchikey(string): International Chemical Identifier keyprogressed(bool): Whether the compound progressed to the profiling phaserelease(string): EvE Bio data release number
Quickstart Guide
This guide demonstrates how to load and work with the drug-target activity dataset by target class, illustrating the elements of the dataset that are relevant by target class.
Setup: Load the Dataset
import polars as pl
from datasets import load_dataset
# Load dataset from Hugging Face
ds = load_dataset("eve-bio/drug-target-activity")
train_ds = ds['train']
df = pl.from_pandas(train_ds.to_pandas())
Nuclear Receptors (NR)
Nuclear receptors are addressed with a biochemical assay in two modes - Agonist and Antagonist. Since these are biochemical assays, cell viability is not relevant. High frequency compounds are flagged based on activity levels by mode (frequency_flag).
# Filter for nuclear receptor data
df_nr = df.filter(pl.col('target__class') == 'NR')
# Select relevant columns for NR analysis
df_nr_selected = df_nr.select([
'target_id',
'target__gene',
'target__name',
'target__uniprot_id',
'compound_id',
'compound__name',
'compound__smiles',
'mode',
'mechanism',
'outcome_is_active',
'outcome_potency_pxc50',
'outcome_max_activity',
'is_quantified',
'frequency_flag'
])
7TM Receptors (7TMs/GPCRs)
7TM receptors (G-protein coupled receptors) are addressed with cell-based assays in two modes - Agonist and Antagonist. The use of cell-based assays makes consideration of cell viability critical to data interpretation. Cell death can masquerade as antagonism. Compounds with potential viability concerns are flagged (viability_flag) but direct comparison of potency and activity results for viability vs. 7TM results directly is necessary for proper interpretation of the data. Some compounds that are flagged for viability are still truly active. High frequency compounds are flagged based on activity levels by mode (frequency_flag). 7TMs can act through multiple mechanisms of action, and this is an important pharmacological consideration regarding biased agonism. These mechanisms are captured in mechanism (e.g., Barr2). Data for multiple mechanisms will be available starting in 2026.
# Filter for 7TM receptor data
df_7tm = df.filter(pl.col('target__class') == '7TM')
# Select relevant columns for 7TM analysis
df_7tm_selected = df_7tm.select([
'target_id',
'target__gene',
'target__name',
'target__uniprot_id',
'compound_id',
'compound__name',
'compound__smiles',
'mode',
'mechanism', # e.g., 'Barr2' for 7TM
'outcome_is_active',
'outcome_potency_pxc50',
'outcome_max_activity',
'viability_flag', # Important: flags compounds that affect cell viability
'is_quantified',
'frequency_flag'
])
Protein Kinases
Protein Kinases are addressed with a biochemical assay in a single mode - Binding. Since these are biochemical assays, cell viability is not relevant. High frequency compounds are flagged based on activity levels by mode (frequency_flag), excluding known promiscuous kinase binders. Protein Kinase targets include both wildtype and mutant variants. Use target__is_mutant and target__wildtype_id to analyze mutant selectivity.
# Filter for kinase data
df_kinase = df.filter(pl.col('target__class') == 'Kinase')
# Select relevant columns for kinase analysis
df_kinase_selected = df_kinase.select([
'target_id',
'target__gene',
'target__name',
'target__uniprot_id',
'target__is_mutant', # Boolean: is this a mutant kinase?
'target__wildtype_id', # Reference to wildtype target if mutant
'compound_id',
'compound__name',
'compound__smiles',
'mode',
'outcome_is_active',
'outcome_potency_pxc50',
'outcome_max_activity',
'is_quantified',
'frequency_flag'
])
Cell Viability
For viability assays, outcome_is_active = True indicates the compound is potentially cytotoxic.
# Filter for viability assay data
df_viability = df.filter(pl.col('target__class') == 'Viability')
# Select relevant columns for viability analysis
df_viability_selected = df_viability.select([
'target_id',
'compound_id',
'compound__name',
'compound__smiles',
'outcome_is_active', # Active = potentially cytotoxic
'outcome_potency_pxc50',
'outcome_max_activity',
'is_quantified'
])
Joining Viability Data to Other Target Classes
You can join viability data to 7TM data to identify compounds with potential cytotoxicity concerns. It is relevant to this target class due to the use of cell based assays, and is particularly critical for interpretation of antagonist data.
# Prepare viability outcomes for joining
viability_outcomes = df.filter(
pl.col('target__class') == 'Viability'
).select([
'compound_id',
pl.col('outcome_is_active').alias('viability_is_active'),
pl.col('is_quantified').alias('viability_is_quantified'),
pl.col('outcome_potency_pxc50').alias('viability_pxc50'),
pl.col('outcome_max_activity').alias('viability_max_activity')
])
# Join viability data to 7TM results
df_7tm_with_viability = df_7tm_selected.join(
viability_outcomes,
on='compound_id',
how='left' # Left join keeps all 7TM records, adds viability data where available
)
# Identify 7TM actives that may have viability concerns
potential_concerns = df_7tm_with_viability.filter(
(pl.col('mode') == 'Antagonist') & # 7TM target in Antagonist mode only
(pl.col('outcome_is_active') == True) & # Active at 7TM target
(pl.col('viability_flag') == True) # Flagged for viability issues
)
Citation
Citation Information
EvE Bio, LLC (2025). Data Releases #1-#7. https://data.evebio.org/. Accessed yyyy-mm-dd.
- Downloads last month
- 60