{ "cells": [ { "cell_type": "code", "execution_count": 2, "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", "
Lunedì (Giorno 1)Martedì (Giorno 2)Mercoledì (Giorno 3)Giovedì (Giorno 4)Venerdì (Giorno 5)Sabato (Giorno 6)Domenica (Giorno 7)
0Spesa: quinoa, broccoli, carote, olive, pomodo...-Spesa: salmone, patate dolci, lenticchie, brod...----
1-Pranzo: Insalata di Quinoa Avanzata con Tonno-Pranzo: Insalata di Spinaci con Frittata Avanzata-Pranzo: Zuppa di Lenticchie Avanzata-
2Cena: Insalata di Quinoa con Verdure a VaporeCena: Pollo al Limone con Patate al FornoCena: Frittata di Spinaci e FetaCena: Salmone al Vapore con Patate DolciCena: Zuppa di Lenticchie e VerdureCena: Insalata di Patate con Verdure e Fagioli-
\n", "
" ], "text/plain": [ " Lunedì (Giorno 1) \\\n", "0 Spesa: quinoa, broccoli, carote, olive, pomodo... \n", "1 - \n", "2 Cena: Insalata di Quinoa con Verdure a Vapore \n", "\n", " Martedì (Giorno 2) \\\n", "0 - \n", "1 Pranzo: Insalata di Quinoa Avanzata con Tonno \n", "2 Cena: Pollo al Limone con Patate al Forno \n", "\n", " Mercoledì (Giorno 3) \\\n", "0 Spesa: salmone, patate dolci, lenticchie, brod... \n", "1 - \n", "2 Cena: Frittata di Spinaci e Feta \n", "\n", " Giovedì (Giorno 4) \\\n", "0 - \n", "1 Pranzo: Insalata di Spinaci con Frittata Avanzata \n", "2 Cena: Salmone al Vapore con Patate Dolci \n", "\n", " Venerdì (Giorno 5) \\\n", "0 - \n", "1 - \n", "2 Cena: Zuppa di Lenticchie e Verdure \n", "\n", " Sabato (Giorno 6) Domenica (Giorno 7) \n", "0 - - \n", "1 Pranzo: Zuppa di Lenticchie Avanzata - \n", "2 Cena: Insalata di Patate con Verdure e Fagioli - " ] }, "execution_count": 2, "metadata": {}, "output_type": "execute_result" } ], "source": [ "import pandas as pd\n", "\n", "# Creazione della tabella con le informazioni richieste\n", "data = {\n", " 'Lunedì (Giorno 1)': [\"Spesa: quinoa, broccoli, carote, olive, pomodorini, petto di pollo, limoni, patate, uova, spinaci freschi, feta\",\n", " \"-\",\n", " \"Cena: Insalata di Quinoa con Verdure a Vapore\"],\n", " 'Martedì (Giorno 2)': [\"-\",\n", " \"Pranzo: Insalata di Quinoa Avanzata con Tonno\",\n", " \"Cena: Pollo al Limone con Patate al Forno\"],\n", " 'Mercoledì (Giorno 3)': [\"Spesa: salmone, patate dolci, lenticchie, brodo vegetale, fagioli cannellini, cipolle, aglio, erbe aromatiche\",\n", " \"-\",\n", " \"Cena: Frittata di Spinaci e Feta\"],\n", " 'Giovedì (Giorno 4)': [\"-\",\n", " \"Pranzo: Insalata di Spinaci con Frittata Avanzata\",\n", " \"Cena: Salmone al Vapore con Patate Dolci\"],\n", " 'Venerdì (Giorno 5)': [\"-\",\n", " \"-\",\n", " \"Cena: Zuppa di Lenticchie e Verdure\"],\n", " 'Sabato (Giorno 6)': [\"-\",\n", " \"Pranzo: Zuppa di Lenticchie Avanzata\",\n", " \"Cena: Insalata di Patate con Verdure e Fagioli\"],\n", " 'Domenica (Giorno 7)': [\"-\",\n", " \"-\",\n", " \"-\"]\n", "}\n", "\n", "# Conversione del dizionario in DataFrame\n", "menu_settimanale = pd.DataFrame(data)\n", "\n", "# save table to excel file\n", "menu_settimanale.to_excel('~/Downloads/menu_settimanale.xlsx', index=False)\n", "menu_settimanale" ] }, { "cell_type": "code", "execution_count": 144, "metadata": {}, "outputs": [ { "data": { "text/plain": [ "{'2024-03-29': 'Workday',\n", " '2024-03-30': 'Workday',\n", " '2024-03-31': 'Workday',\n", " '2024-04-01': 'Rest day'}" ] }, "execution_count": 144, "metadata": {}, "output_type": "execute_result" } ], "source": [ "from datetime import datetime, timedelta\n", "\n", "# Correct the function with the right logic considering a cycle that includes the rest days 17th, 18th, 19th of April.\n", "def is_working_day(input_date_str):\n", " # The date format expected\n", " date_format = \"%Y-%m-%d\"\n", " \n", " # Parse the input date\n", " input_date = datetime.strptime(input_date_str, date_format)\n", " \n", " # Known first rest day in the cycle\n", " first_rest_day = datetime(2024, 4, 17)\n", " \n", " # Calculate the difference in days from the known first rest day\n", " delta_days = (input_date - first_rest_day).days\n", " \n", " # Adjust the difference to be on the work cycle,\n", " # considering that the first rest day is 5 days after the cycle start\n", " cycle_day = (delta_days + 5) % 8\n", "\n", " # Days 0-4 after the cycle start are workdays, 5-7 are rest days\n", " return \"Workday\" if cycle_day < 5 else \"Rest day\"\n", "\n", "# Check the dates 13th, 14th, 15th, and 16th of April 2024\n", "# 24/02 == work day\n", "dates_to_check = [\n", " \"2024-03-29\",\n", " \"2024-03-30\",\n", " \"2024-03-31\",\n", " \"2024-04-01\",\n", "]\n", "workday_status = {date: is_working_day(date) for date in dates_to_check}\n", "workday_status" ] }, { "cell_type": "code", "execution_count": 145, "metadata": {}, "outputs": [ { "data": { "text/plain": [ "[('2024-03-09', '2024-03-10'),\n", " ('2024-03-16', '2024-03-17'),\n", " ('2024-05-04', '2024-05-05')]" ] }, "execution_count": 145, "metadata": {}, "output_type": "execute_result" } ], "source": [ "# Define the new function to find the next 3 weekends with both rest days\n", "def find_rest_weekends(start_date_str):\n", " # Parse the start date\n", " start_date = datetime.strptime(start_date_str, \"%Y-%m-%d\")\n", " \n", " # List to store the rest weekends\n", " rest_weekends = []\n", " \n", " # Counter for the number of weekends found\n", " weekends_found = 0\n", " \n", " # While we don't have 3 weekends\n", " while weekends_found < 3:\n", " # If the current day is a Saturday\n", " if start_date.weekday() == 5: # Monday is 0 and Sunday is 6\n", " # Check if both Saturday and Sunday are rest days\n", " if is_working_day(start_date.strftime(\"%Y-%m-%d\")) == \"Rest day\" and \\\n", " is_working_day((start_date + timedelta(days=1)).strftime(\"%Y-%m-%d\")) == \"Rest day\":\n", " # Add the weekend to the list\n", " rest_weekends.append((start_date, start_date + timedelta(days=1)))\n", " weekends_found += 1\n", " \n", " # Go to the next day\n", " start_date += timedelta(days=1)\n", " \n", " # Return the weekends as strings in the format YYYY-MM-DD\n", " return [(day[0].strftime(\"%Y-%m-%d\"), day[1].strftime(\"%Y-%m-%d\")) for day in rest_weekends]\n", "\n", "# Example usage: find the next 3 rest weekends starting from April 20, 2024\n", "find_rest_weekends(\"2024-03-01\")" ] }, { "cell_type": "code", "execution_count": 1, "metadata": {}, "outputs": [], "source": [ "# from IPython.display import display_html\n", "\n", "import logging\n", "import warnings\n", "import re\n", "import os\n", "import numpy as np\n", "import pandas as pd\n", "import pickle\n", "import pickle\n", "import requests\n", "import matplotlib.pyplot as plt\n", "import seaborn as sns\n", "from rdkit import Chem\n", "from rdkit.Chem import AllChem\n", "from typing import Literal, Union, List, Dict, Any, Callable\n", "from collections import defaultdict\n", "from tqdm.auto import tqdm\n", "from rdkit import RDLogger\n", "\n", "RDLogger.DisableLog('rdApp.*')" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "Filter out some warnings..." ] }, { "cell_type": "code", "execution_count": 2, "metadata": {}, "outputs": [], "source": [ "def set_global_logging_level(level=logging.ERROR, prefices=[\"\"]):\n", " \"\"\"\n", " Override logging levels of different modules based on their name as a prefix.\n", " It needs to be invoked after the modules have been loaded so that their loggers have been initialized.\n", "\n", " Args:\n", " - level: desired level. e.g. logging.INFO. Optional. Default is logging.ERROR\n", " - prefices: list of one or more str prefices to match (e.g. [\"transformers\", \"torch\"]). Optional.\n", " Default is `[\"\"]` to match all active loggers.\n", " The match is a case-sensitive `module_name.startswith(prefix)`\n", " \"\"\"\n", " prefix_re = re.compile(fr'^(?:{ \"|\".join(prefices) })')\n", " for name in logging.root.manager.loggerDict:\n", " if re.match(prefix_re, name):\n", " logging.getLogger(name).setLevel(level)\n", "\n", "\n", "# Filter out annoying Pytorch Lightning printouts\n", "warnings.filterwarnings('ignore')\n", "warnings.filterwarnings(\n", " 'ignore', '.*Covariance of the parameters could not be estimated.*')\n", "warnings.filterwarnings(\n", " 'ignore', '.*You seem to be using the pipelines sequentially on GPU.*')" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "Setup working directories:" ] }, { "cell_type": "code", "execution_count": 3, "metadata": {}, "outputs": [], "source": [ "data_dir = os.path.join(os.getcwd(), '..', 'data')\n", "src_dir = os.path.join(os.getcwd(), '..', 'src')\n", "fig_dir = os.path.join(data_dir, 'figures')\n", "checkpoint_dir = os.path.join(os.getcwd(), '..', 'checkpoints')\n", "dirs_to_make = [\n", " data_dir,\n", " # os.path.join(data_dir, 'raw'),\n", " # os.path.join(data_dir, 'processed'),\n", " fig_dir,\n", " # os.path.join(data_dir, 'train'),\n", " # os.path.join(data_dir, 'val'),\n", " # os.path.join(data_dir, 'test'),\n", " # src_dir,\n", " # checkpoint_dir,\n", "]\n", "for d in dirs_to_make:\n", " if not os.path.exists(d):\n", " os.makedirs(d)" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "Download or load the raw PROTAC-DB dataset:" ] }, { "cell_type": "code", "execution_count": 4, "metadata": {}, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "Loaded protac.csv\n" ] } ], "source": [ "protacdb_file = os.path.join(data_dir, 'PROTAC-DB.csv')\n", "protacdb_url = 'http://cadd.zju.edu.cn/protacdb/statics/binaryDownload/csv/protac/protac.csv'\n", "if os.path.exists(protacdb_file):\n", " protac_df = pd.read_csv(protacdb_file).reset_index(drop=True)\n", " print(f'Loaded protac.csv')\n", "else:\n", " print(f'Downloading {protacdb_url}')\n", " !wget {protacdb_url} {protacdb_file}\n", " protac_df = pd.read_csv(protacdb_file).reset_index(drop=True)\n", " print(f'PROTAC-DB loaded')\n", "\n", "old2new = {\n", " 'E3 ligase': 'E3 Ligase',\n", "}\n", "protac_df = protac_df.rename(columns=old2new)" ] }, { "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", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", "
Compound IDTargetPercent degradation (%)Article DOIDC50 (nM)Dmax (%)Assay (DC50/Dmax)Assay (Percent degradation)
01BRD720/12 (WB)10.1021/acs.jmedchem.8b01413NaNNaNNaN% BRD7 degradation in HeLa cells after 4/16 h ...
11BRD919/30 (WB)10.1021/acs.jmedchem.8b01413NaNNaNNaN% BRD9 degradation in HeLa cells after 4/16 h ...
22BRD719/27 (WB)10.1021/acs.jmedchem.8b01413NaNNaNNaN% BRD7 degradation in HeLa cells after 4/16 h ...
32BRD95/21 (WB)10.1021/acs.jmedchem.8b01413NaNNaNNaN% BRD9 degradation in HeLa cells after 4/16 h ...
43BRD994/93 (WB)10.1021/acs.jmedchem.8b01413NaNNaNNaN% BRD9 degradation in HeLa cells after 4/16 h ...
\n", "
" ], "text/plain": [ " Compound ID Target Percent degradation (%) Article DOI \\\n", "0 1 BRD7 20/12 (WB) 10.1021/acs.jmedchem.8b01413 \n", "1 1 BRD9 19/30 (WB) 10.1021/acs.jmedchem.8b01413 \n", "2 2 BRD7 19/27 (WB) 10.1021/acs.jmedchem.8b01413 \n", "3 2 BRD9 5/21 (WB) 10.1021/acs.jmedchem.8b01413 \n", "4 3 BRD9 94/93 (WB) 10.1021/acs.jmedchem.8b01413 \n", "\n", " DC50 (nM) Dmax (%) Assay (DC50/Dmax) \\\n", "0 NaN NaN NaN \n", "1 NaN NaN NaN \n", "2 NaN NaN NaN \n", "3 NaN NaN NaN \n", "4 NaN NaN NaN \n", "\n", " Assay (Percent degradation) \n", "0 % BRD7 degradation in HeLa cells after 4/16 h ... \n", "1 % BRD9 degradation in HeLa cells after 4/16 h ... \n", "2 % BRD7 degradation in HeLa cells after 4/16 h ... \n", "3 % BRD9 degradation in HeLa cells after 4/16 h ... \n", "4 % BRD9 degradation in HeLa cells after 4/16 h ... " ] }, "metadata": {}, "output_type": "display_data" }, { "name": "stdout", "output_type": "stream", "text": [ "PROTAC-DB scraped len: 6000\n", "Number of non-NaN DC50 values: 959\n", "Number of non-NaN Dmax values: 783\n", "Number of non-NaN DC50 and Dmax values: 374\n" ] }, { "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", "
Compound IDTargetPercent degradation (%)Article DOIDC50 (nM)Dmax (%)Assay (DC50/Dmax)Assay (Percent degradation)
1911BRD9NaN10.1021/acs.jmedchem.8b0141356080Degradation of BRD9 in HeLa cells after 4 h tr...NaN
4022BRD9NaN10.1021/acs.jmedchem.8b014131.7695Degradation of BRD9 in RI-1 cells after 8 h tr...NaN
4222BRD7NaN10.1021/acs.jmedchem.8b014134.595Degradation of BRD7 in RI-1 cells after 8 h tr...NaN
104118AR76/>95/>9910.1021/acs.jmedchem.9b013937.2/1>95/>95Degradation of AR in LNCaP/VCaP AR+ cells afte...% AR degradation in LNCaP cells after 6 h trea...
106120AR89/99/10010.1021/acs.jmedchem.8b016310.86/0.76/10.4>95/>95/>95Degradation of AR in LNCaP/VCaP/22Rv1 cells af...% AR degradation in LNCaP cells after 6 h trea...
...........................
59013218BCL-xLNaN10.1038/s41467-021-27210-x12.181Degradation of BCL-xL in 293T cells after 16 h...NaN
59023218BCL2NaN10.1038/s41467-021-27210-x354.869Degradation of BCL2 in 293T cells after 16 h t...NaN
59503217BCL-xLNaN10.1038/s41467-021-27210-x12.896Degradation of BCL-xL in 293T cells after 16 h...NaN
59513218BCL-xLNaN10.1038/s41467-021-27210-x12.181Degradation of BCL-xL in 293T cells after 16 h...NaN
59523218BCL2NaN10.1038/s41467-021-27210-x354.869Degradation of BCL2 in 293T cells after 16 h t...NaN
\n", "

374 rows × 8 columns

\n", "
" ], "text/plain": [ " Compound ID Target Percent degradation (%) \\\n", "19 11 BRD9 NaN \n", "40 22 BRD9 NaN \n", "42 22 BRD7 NaN \n", "104 118 AR 76/>95/>99 \n", "106 120 AR 89/99/100 \n", "... ... ... ... \n", "5901 3218 BCL-xL NaN \n", "5902 3218 BCL2 NaN \n", "5950 3217 BCL-xL NaN \n", "5951 3218 BCL-xL NaN \n", "5952 3218 BCL2 NaN \n", "\n", " Article DOI DC50 (nM) Dmax (%) \\\n", "19 10.1021/acs.jmedchem.8b01413 560 80 \n", "40 10.1021/acs.jmedchem.8b01413 1.76 95 \n", "42 10.1021/acs.jmedchem.8b01413 4.5 95 \n", "104 10.1021/acs.jmedchem.9b01393 7.2/1 >95/>95 \n", "106 10.1021/acs.jmedchem.8b01631 0.86/0.76/10.4 >95/>95/>95 \n", "... ... ... ... \n", "5901 10.1038/s41467-021-27210-x 12.1 81 \n", "5902 10.1038/s41467-021-27210-x 354.8 69 \n", "5950 10.1038/s41467-021-27210-x 12.8 96 \n", "5951 10.1038/s41467-021-27210-x 12.1 81 \n", "5952 10.1038/s41467-021-27210-x 354.8 69 \n", "\n", " Assay (DC50/Dmax) \\\n", "19 Degradation of BRD9 in HeLa cells after 4 h tr... \n", "40 Degradation of BRD9 in RI-1 cells after 8 h tr... \n", "42 Degradation of BRD7 in RI-1 cells after 8 h tr... \n", "104 Degradation of AR in LNCaP/VCaP AR+ cells afte... \n", "106 Degradation of AR in LNCaP/VCaP/22Rv1 cells af... \n", "... ... \n", "5901 Degradation of BCL-xL in 293T cells after 16 h... \n", "5902 Degradation of BCL2 in 293T cells after 16 h t... \n", "5950 Degradation of BCL-xL in 293T cells after 16 h... \n", "5951 Degradation of BCL-xL in 293T cells after 16 h... \n", "5952 Degradation of BCL2 in 293T cells after 16 h t... \n", "\n", " Assay (Percent degradation) \n", "19 NaN \n", "40 NaN \n", "42 NaN \n", "104 % AR degradation in LNCaP cells after 6 h trea... \n", "106 % AR degradation in LNCaP cells after 6 h trea... \n", "... ... \n", "5901 NaN \n", "5902 NaN \n", "5950 NaN \n", "5951 NaN \n", "5952 NaN \n", "\n", "[374 rows x 8 columns]" ] }, "execution_count": 7, "metadata": {}, "output_type": "execute_result" } ], "source": [ "scraped_protac_df = pd.read_csv(os.path.join(\n", " data_dir, 'PROTAC-DB-Scraped.csv'))\n", "# Rename columns\n", "old2new = {\n", " \"Assay (Percent degradation)\": \"Percent degradation (%)\",\n", " \"PROTAC to Target\": \"Assay (Percent degradation)\",\n", " \"DOI\": \"Article DOI\",\n", " \"DC50\": \"DC50 (nM)\",\n", " \"Dmax\": \"Dmax (%)\",\n", "}\n", "scraped_protac_df = scraped_protac_df.rename(columns=old2new)\n", "\n", "display(scraped_protac_df.head())\n", "print(f'PROTAC-DB scraped len: {len(scraped_protac_df)}')\n", "print(f'Number of non-NaN DC50 values: {scraped_protac_df[\"DC50 (nM)\"].notna().sum()}')\n", "print(f'Number of non-NaN Dmax values: {scraped_protac_df[\"Dmax (%)\"].notna().sum()}')\n", "print(f'Number of non-NaN DC50 and Dmax values: {len(scraped_protac_df[scraped_protac_df[\"DC50 (nM)\"].notna() & scraped_protac_df[\"Dmax (%)\"].notna()])}')\n", "scraped_protac_df[scraped_protac_df[\"DC50 (nM)\"].notna() & scraped_protac_df[\"Dmax (%)\"].notna()]" ] }, { "cell_type": "code", "execution_count": 8, "metadata": {}, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "Merged df len: 5343\n" ] }, { "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", "
Compound IDUniprotTargetE3 LigasePDBNameSmilesIC50 (nM, Protac to Target)Assay (Protac to Target, IC50)EC50 (nM, Protac to Target)...Rotatable Bond CountTopological Polar Surface AreaMolecular FormulaInChIInChI KeyPercent degradation (%)DC50 (nM)Dmax (%)Assay (DC50/Dmax)Assay (Percent degradation)
01Q9NPI1BRD7VHLNaNNaNCOC1=CC(C2=CN(C)C(=O)C3=CN=CC=C23)=CC(OC)=C1CN...NaNNaNNaN...19189.92C50H64N8O9SInChI=1S/C50H64N8O9S/c1-32-45(68-31-53-32)34-1...RPMQBLMPGMFXLD-PDUNVWSESA-N20/12 (WB)NaNNaNNaN% BRD7 degradation in HeLa cells after 4/16 h ...
11Q9H8M2BRD9VHLNaNNaNCOC1=CC(C2=CN(C)C(=O)C3=CN=CC=C23)=CC(OC)=C1CN...NaNNaNNaN...19189.92C50H64N8O9SInChI=1S/C50H64N8O9S/c1-32-45(68-31-53-32)34-1...RPMQBLMPGMFXLD-PDUNVWSESA-N19/30 (WB)NaNNaNNaN% BRD9 degradation in HeLa cells after 4/16 h ...
22Q9NPI1BRD7VHLNaNNaNCOC1=CC(C2=CN(C)C(=O)C3=CN=CC=C23)=CC(OC)=C1CN...NaNNaNNaN...25208.38C54H72N8O11SInChI=1S/C54H72N8O11S/c1-36-49(74-35-57-36)38-...NGWWVKZONFCNQP-SHPBXJAASA-N19/27 (WB)NaNNaNNaN% BRD7 degradation in HeLa cells after 4/16 h ...
32Q9H8M2BRD9VHLNaNNaNCOC1=CC(C2=CN(C)C(=O)C3=CN=CC=C23)=CC(OC)=C1CN...NaNNaNNaN...25208.38C54H72N8O11SInChI=1S/C54H72N8O11S/c1-36-49(74-35-57-36)38-...NGWWVKZONFCNQP-SHPBXJAASA-N5/21 (WB)NaNNaNNaN% BRD9 degradation in HeLa cells after 4/16 h ...
43Q9H8M2BRD9CRBNNaNNaNCOC1=CC(C2=CN(C)C(=O)C3=CN=CC=C23)=CC(OC)=C1CN...NaNNaNNaN...18202.97C43H50N8O10InChI=1S/C43H50N8O10/c1-48-24-31(28-9-10-44-23...RMBNUDOJPQLHMV-UHFFFAOYSA-N94/93 (WB)NaNNaNNaN% BRD9 degradation in HeLa cells after 4/16 h ...
\n", "

5 rows × 89 columns

\n", "
" ], "text/plain": [ " Compound ID Uniprot Target E3 Ligase PDB Name \\\n", "0 1 Q9NPI1 BRD7 VHL NaN NaN \n", "1 1 Q9H8M2 BRD9 VHL NaN NaN \n", "2 2 Q9NPI1 BRD7 VHL NaN NaN \n", "3 2 Q9H8M2 BRD9 VHL NaN NaN \n", "4 3 Q9H8M2 BRD9 CRBN NaN NaN \n", "\n", " Smiles \\\n", "0 COC1=CC(C2=CN(C)C(=O)C3=CN=CC=C23)=CC(OC)=C1CN... \n", "1 COC1=CC(C2=CN(C)C(=O)C3=CN=CC=C23)=CC(OC)=C1CN... \n", "2 COC1=CC(C2=CN(C)C(=O)C3=CN=CC=C23)=CC(OC)=C1CN... \n", "3 COC1=CC(C2=CN(C)C(=O)C3=CN=CC=C23)=CC(OC)=C1CN... \n", "4 COC1=CC(C2=CN(C)C(=O)C3=CN=CC=C23)=CC(OC)=C1CN... \n", "\n", " IC50 (nM, Protac to Target) Assay (Protac to Target, IC50) \\\n", "0 NaN NaN \n", "1 NaN NaN \n", "2 NaN NaN \n", "3 NaN NaN \n", "4 NaN NaN \n", "\n", " EC50 (nM, Protac to Target) ... Rotatable Bond Count \\\n", "0 NaN ... 19 \n", "1 NaN ... 19 \n", "2 NaN ... 25 \n", "3 NaN ... 25 \n", "4 NaN ... 18 \n", "\n", " Topological Polar Surface Area Molecular Formula \\\n", "0 189.92 C50H64N8O9S \n", "1 189.92 C50H64N8O9S \n", "2 208.38 C54H72N8O11S \n", "3 208.38 C54H72N8O11S \n", "4 202.97 C43H50N8O10 \n", "\n", " InChI \\\n", "0 InChI=1S/C50H64N8O9S/c1-32-45(68-31-53-32)34-1... \n", "1 InChI=1S/C50H64N8O9S/c1-32-45(68-31-53-32)34-1... \n", "2 InChI=1S/C54H72N8O11S/c1-36-49(74-35-57-36)38-... \n", "3 InChI=1S/C54H72N8O11S/c1-36-49(74-35-57-36)38-... \n", "4 InChI=1S/C43H50N8O10/c1-48-24-31(28-9-10-44-23... \n", "\n", " InChI Key Percent degradation (%) DC50 (nM) Dmax (%) \\\n", "0 RPMQBLMPGMFXLD-PDUNVWSESA-N 20/12 (WB) NaN NaN \n", "1 RPMQBLMPGMFXLD-PDUNVWSESA-N 19/30 (WB) NaN NaN \n", "2 NGWWVKZONFCNQP-SHPBXJAASA-N 19/27 (WB) NaN NaN \n", "3 NGWWVKZONFCNQP-SHPBXJAASA-N 5/21 (WB) NaN NaN \n", "4 RMBNUDOJPQLHMV-UHFFFAOYSA-N 94/93 (WB) NaN NaN \n", "\n", " Assay (DC50/Dmax) Assay (Percent degradation) \n", "0 NaN % BRD7 degradation in HeLa cells after 4/16 h ... \n", "1 NaN % BRD9 degradation in HeLa cells after 4/16 h ... \n", "2 NaN % BRD7 degradation in HeLa cells after 4/16 h ... \n", "3 NaN % BRD9 degradation in HeLa cells after 4/16 h ... \n", "4 NaN % BRD9 degradation in HeLa cells after 4/16 h ... \n", "\n", "[5 rows x 89 columns]" ] }, "execution_count": 8, "metadata": {}, "output_type": "execute_result" } ], "source": [ "# Merge scraped data with PROTAC-DB on Compound ID and get non-assay columns\n", "param_cols = [\n", " \"Percent degradation (%)\",\n", " \"Dmax (%)\",\n", " \"DC50 (nM)\",\n", " \"Assay (Percent degradation)\",\n", " \"Assay (DC50/Dmax)\",\n", "]\n", "cols = [c for c in protac_df.columns if c not in param_cols]\n", "on_cols = [c for c in scraped_protac_df.columns if c not in param_cols]\n", "scraped_protac_df = protac_df[cols].merge(\n", " scraped_protac_df,\n", " on=on_cols,\n", ").drop_duplicates()\n", "print(f'Merged df len: {len(scraped_protac_df)}')\n", "scraped_protac_df.head()" ] }, { "cell_type": "code", "execution_count": 9, "metadata": {}, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "362\n", "737\n" ] }, { "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", "
Percent degradation (%)Assay (Percent degradation)
020/12 (WB)% BRD7 degradation in HeLa cells after 4/16 h ...
119/30 (WB)% BRD9 degradation in HeLa cells after 4/16 h ...
219/27 (WB)% BRD7 degradation in HeLa cells after 4/16 h ...
35/21 (WB)% BRD9 degradation in HeLa cells after 4/16 h ...
494/93 (WB)% BRD9 degradation in HeLa cells after 4/16 h ...
.........
486154 (WB)% JAK3 degradation in MHH-CALL-4 cells at 100 nM
486342 (WB)% JAK3 degradation in MHH-CALL-4 cells at 100 nM
48641/32/69/19 (WB)% JAK2 degradation in MHH-CALL-4 cells at 1/10...
48810/30/30/53/29 (WB)% EGFR del19 degradation in HCC827 cells at 5/...
488210/7/7/27/34 (WB)% EGFR EGFR L858R/T790M degradation in H1975 c...
\n", "

334 rows × 2 columns

\n", "
" ], "text/plain": [ " Percent degradation (%) \\\n", "0 20/12 (WB) \n", "1 19/30 (WB) \n", "2 19/27 (WB) \n", "3 5/21 (WB) \n", "4 94/93 (WB) \n", "... ... \n", "4861 54 (WB) \n", "4863 42 (WB) \n", "4864 1/32/69/19 (WB) \n", "4881 0/30/30/53/29 (WB) \n", "4882 10/7/7/27/34 (WB) \n", "\n", " Assay (Percent degradation) \n", "0 % BRD7 degradation in HeLa cells after 4/16 h ... \n", "1 % BRD9 degradation in HeLa cells after 4/16 h ... \n", "2 % BRD7 degradation in HeLa cells after 4/16 h ... \n", "3 % BRD9 degradation in HeLa cells after 4/16 h ... \n", "4 % BRD9 degradation in HeLa cells after 4/16 h ... \n", "... ... \n", "4861 % JAK3 degradation in MHH-CALL-4 cells at 100 nM \n", "4863 % JAK3 degradation in MHH-CALL-4 cells at 100 nM \n", "4864 % JAK2 degradation in MHH-CALL-4 cells at 1/10... \n", "4881 % EGFR del19 degradation in HCC827 cells at 5/... \n", "4882 % EGFR EGFR L858R/T790M degradation in H1975 c... \n", "\n", "[334 rows x 2 columns]" ] }, "execution_count": 9, "metadata": {}, "output_type": "execute_result" } ], "source": [ "print(len(scraped_protac_df.dropna(\n", " subset=['DC50 (nM)', 'Dmax (%)']).dropna(how='all')))\n", "print(len(scraped_protac_df.dropna(\n", " subset=['Percent degradation (%)']).dropna(how='all')))\n", "\n", "tmp = scraped_protac_df.dropna(subset=['Percent degradation (%)'])\n", "\n", "tmp[tmp['Percent degradation (%)'].str.contains(\n", " 'WB')][['Percent degradation (%)', 'Assay (Percent degradation)']].drop_duplicates()" ] }, { "cell_type": "code", "execution_count": 10, "metadata": {}, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "protac_pedia_df len: 1203\n" ] }, { "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", "
PROTACDB IDPROTAC SMILESActive/InactiveBest PROTACCellscLogPCommentsCuratorDc50Dmax...Proteomics Data AvailableSecondary PubmedStatusTargetTested A Non Binding E3 ControlTested Competition With LigandTested Engagement In CellsTested Proteaseome InhibitorTimeTPSA
01Cc1ncsc1-c1ccc([C@H](C)NC(=O)[C@@H]2C[C@@H](O)...InactiveNoMOLT-410.83732IC50's are for cell viability assaysRonen GabizonNaNNaN...NoNaNReviewedQ07817NoNoNoNo48251.07
12Cc1ncsc1-c1ccc([C@H](C)NC(=O)[C@@H]2C[C@@H](O)...InactiveNoMOLT-411.22742IC50's are for cell viability assaysRonen GabizonNaNNaN...NoNaNReviewedQ07817NoNoNoNo48251.07
23Cc1ncsc1-c1ccc([C@H](C)NC(=O)[C@@H]2C[C@@H](O)...InactiveNoMOLT-411.61752IC50's are for cell viability assaysRonen GabizonNaNNaN...NoNaNReviewedQ07817NoNoNoNo48251.07
34Cc1ncsc1-c1ccc([C@H](C)NC(=O)[C@@H]2C[C@@H](O)...ActiveNoMOLT-412.00762IC50's are for cell viability assaysRonen GabizonNaNNaN...NoNaNReviewedQ07817NoNoNoNo48251.07
45Cc1ncsc1-c1ccc([C@H](C)NC(=O)[C@@H]2C[C@@H](O)...ActiveNoMOLT-412.39772IC50's are for cell viability assaysRonen Gabizon53 nM~ 100 %...NoNaNReviewedQ07817NoNoYesNo48251.07
\n", "

5 rows × 43 columns

\n", "
" ], "text/plain": [ " PROTACDB ID PROTAC SMILES \\\n", "0 1 Cc1ncsc1-c1ccc([C@H](C)NC(=O)[C@@H]2C[C@@H](O)... \n", "1 2 Cc1ncsc1-c1ccc([C@H](C)NC(=O)[C@@H]2C[C@@H](O)... \n", "2 3 Cc1ncsc1-c1ccc([C@H](C)NC(=O)[C@@H]2C[C@@H](O)... \n", "3 4 Cc1ncsc1-c1ccc([C@H](C)NC(=O)[C@@H]2C[C@@H](O)... \n", "4 5 Cc1ncsc1-c1ccc([C@H](C)NC(=O)[C@@H]2C[C@@H](O)... \n", "\n", " Active/Inactive Best PROTAC Cells cLogP \\\n", "0 Inactive No MOLT-4 10.83732 \n", "1 Inactive No MOLT-4 11.22742 \n", "2 Inactive No MOLT-4 11.61752 \n", "3 Active No MOLT-4 12.00762 \n", "4 Active No MOLT-4 12.39772 \n", "\n", " Comments Curator Dc50 Dmax ... \\\n", "0 IC50's are for cell viability assays Ronen Gabizon NaN NaN ... \n", "1 IC50's are for cell viability assays Ronen Gabizon NaN NaN ... \n", "2 IC50's are for cell viability assays Ronen Gabizon NaN NaN ... \n", "3 IC50's are for cell viability assays Ronen Gabizon NaN NaN ... \n", "4 IC50's are for cell viability assays Ronen Gabizon 53 nM ~ 100 % ... \n", "\n", " Proteomics Data Available Secondary Pubmed Status Target \\\n", "0 No NaN Reviewed Q07817 \n", "1 No NaN Reviewed Q07817 \n", "2 No NaN Reviewed Q07817 \n", "3 No NaN Reviewed Q07817 \n", "4 No NaN Reviewed Q07817 \n", "\n", " Tested A Non Binding E3 Control Tested Competition With Ligand \\\n", "0 No No \n", "1 No No \n", "2 No No \n", "3 No No \n", "4 No No \n", "\n", " Tested Engagement In Cells Tested Proteaseome Inhibitor Time TPSA \n", "0 No No 48 251.07 \n", "1 No No 48 251.07 \n", "2 No No 48 251.07 \n", "3 No No 48 251.07 \n", "4 Yes No 48 251.07 \n", "\n", "[5 rows x 43 columns]" ] }, "execution_count": 10, "metadata": {}, "output_type": "execute_result" } ], "source": [ "df_file = os.path.join(data_dir, 'PROTAC-Pedia.csv')\n", "protac_pedia_df = pd.read_csv(df_file)\n", "print(f'protac_pedia_df len: {len(protac_pedia_df)}')\n", "protac_pedia_df.head()" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "## Get Article Data from PubMed" ] }, { "cell_type": "code", "execution_count": 29, "metadata": {}, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "unique_dois len: 233\n" ] }, { "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", "
Article DOI
010.1021/acs.jmedchem.8b01413
7110.1021/acs.jmedchem.9b00455
7210.1021/acs.jmedchem.8b00909
9210.1021/acs.jmedchem.8b01572
16410.1021/acs.jmedchem.6b01816
\n", "
" ], "text/plain": [ " Article DOI\n", "0 10.1021/acs.jmedchem.8b01413\n", "71 10.1021/acs.jmedchem.9b00455\n", "72 10.1021/acs.jmedchem.8b00909\n", "92 10.1021/acs.jmedchem.8b01572\n", "164 10.1021/acs.jmedchem.6b01816" ] }, "execution_count": 29, "metadata": {}, "output_type": "execute_result" } ], "source": [ "# Get unique article DOIs from PROTAC-DB for which the Assay (DC50/Dmax) is NaN\n", "unique_dois = protac_df[protac_df['Assay (DC50/Dmax)'].isna() & protac_df['Assay (Percent degradation)'].isna()][['Article DOI']].drop_duplicates()\n", "print(f'unique_dois len: {len(unique_dois)}')\n", "unique_dois.head()" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "Convert article DOIs to PubMed IDs:" ] }, { "cell_type": "code", "execution_count": 30, "metadata": {}, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "PMC ID for DOI 10.1021/acs.jmedchem.8b01413 is PMC6348446.\n", "PMC ID for DOI 10.1021/acs.jmedchem.9b00455 is PMC10688117.\n", "PMC ID for DOI 10.1021/acs.jmedchem.8b00909 is PMC6545112.\n", "PMC ID for DOI 10.1021/acs.jmedchem.8b01572 is PMC10788944.\n", "PMC ID for DOI 10.1021/acs.jmedchem.6b01816 is PMC5788414.\n" ] } ], "source": [ "import requests\n", "\n", "def doi_to_pmcid(dois):\n", " base_url = \"https://eutils.ncbi.nlm.nih.gov/entrez/eutils/\"\n", " pmc_ids = []\n", "\n", " for doi in dois:\n", " # Step 1: Use esearch to find the PMID for the DOI\n", " search_url = f\"{base_url}esearch.fcgi?db=pubmed&term={doi}&retmode=json\"\n", " search_response = requests.get(search_url)\n", " search_data = search_response.json()\n", " pmid = search_data['esearchresult']['idlist'][0] if search_data['esearchresult']['idlist'] else None\n", "\n", " if not pmid:\n", " print(f\"No PMID found for DOI {doi}.\")\n", " pmc_ids.append(None)\n", " continue\n", "\n", " # Step 2: Use elink to find the PMC ID for the PMID\n", " link_url = f\"{base_url}elink.fcgi?dbfrom=pubmed&db=pmc&id={pmid}&retmode=json\"\n", " link_response = requests.get(link_url)\n", " link_data = link_response.json()\n", " pmc_id = None\n", " for linksetdb in link_data[\"linksets\"][0].get(\"linksetdbs\", []):\n", " if linksetdb[\"dbto\"] == \"pmc\":\n", " pmc_id = linksetdb[\"links\"][0]\n", " break\n", "\n", " if pmc_id:\n", " print(f\"PMC ID for DOI {doi} is PMC{pmc_id}.\")\n", " else:\n", " print(f\"No PMC ID found for DOI {doi}.\")\n", " \n", " pmc_ids.append(pmc_id if pmc_id else None)\n", "\n", " return pmc_ids\n", "\n", "# Example usage\n", "dois = [\n", " '10.1021/acs.jmedchem.8b01413',\n", " '10.1021/acs.jmedchem.9b00455',\n", " '10.1021/acs.jmedchem.8b00909',\n", " '10.1021/acs.jmedchem.8b01572',\n", " '10.1021/acs.jmedchem.6b01816',\n", "]\n", "\n", "pmc_ids = doi_to_pmcid(dois)" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "Fetch article XML data from PubMed:" ] }, { "cell_type": "code", "execution_count": 81, "metadata": {}, "outputs": [ { "data": { "text/plain": [ "b'\\n\\n
\\n \\n \\n \\n J Med Chem\\n J. Med. Chem\\n jm\\n jmcmar\\n \\n Journal of Medicinal Chemistry\\n \\n 0022-2623\\n 1520-4804\\n \\n American Chemical\\nSociety\\n \\n \\n \\n 30540463\\n 6348446\\n 10.1021/acs.jmedchem.8b01413\\n \\n \\n Article\\n \\n \\n \\n Iterative Design and Optimization of Initially Inactive\\nProteolysis Targeting Chimeras (PROTACs) Identify VZ185 as a Potent,\\nFast, and Selective von Hippel–Lindau (VHL) Based Dual Degrader\\nProbe of BRD9 and BRD7\\n \\n \\n \\n \\n Zoppi\\n Vittoria\\n \\n \\n \\n \\n \\n \\n Hughes\\n Scott J.\\n \\n \\n \\n \\n \\n Maniaci\\n Chiara\\n \\n \\n §\\n #\\n \\n \\n \\n Testa\\n Andrea\\n \\n \\n \\n \\n \\n Gmaschitz\\n Teresa\\n \\n \\n \\n \\n \\n Wieshofer\\n Corinna\\n \\n \\n \\n \\n \\n Koegl\\n Manfred\\n \\n \\n \\n \\n \\n Riching\\n Kristin M.\\n \\n \\n \\n \\n \\n Daniels\\n Danette L.\\n \\n \\n \\n \\n \\n Spallarossa\\n Andrea\\n \\n \\n \\n \\n \\n Ciulli\\n Alessio\\n \\n *\\n \\n \\n Division\\nof Biological Chemistry and Drug Discovery, School of Life Sciences,\\nJames Black Centre, University of Dundee, Dow Street, DD1 5EH, Dundee, Scotland, United Kingdom\\n Dipartimento\\ndi Farmacia, Sezione di Chimica del Farmaco e del Prodotto Cosmetico, Università degli Studi di Genova, Viale Benedetto XV 3, 16132 Genova, Italy\\n Medical\\nResearch Council Protein Phosphorylation and Ubiquitylation Unit,\\nSchool of Life Sciences, James Black Centre, University of Dundee, Dow Street, DD1 5EH, Dundee, Scotland, United Kingdom\\n Boehringer\\nIngelheim RCV GmbH & Co. KG, 1221 Vienna, Austria\\n Promega\\nCorporation, 2800 Woods Hollow Road, Madison, Wisconsin 53711, United States\\n \\n \\n E-mail: a.ciulli@dundee.ac.uk.\\n \\n \\n 12\\n 12\\n 2018\\n \\n \\n 24\\n 01\\n 2019\\n \\n 62\\n 2\\n 699\\n 726\\n \\n \\n 11\\n 09\\n 2018\\n \\n \\n \\n Copyright © 2018 American Chemical Society\\n 2018\\n American Chemical Society\\n \\n This is an open access article published under a Creative Commons Attribution (CC-BY) License, which permits unrestricted use, distribution and reproduction in any medium, provided the author and source are cited.\\n \\n \\n \\n

\\n \\n

\\n

Developing\\nPROTACs to redirect the ubiquitination activity of E3\\nligases and potently degrade a target protein within cells can be\\na lengthy and unpredictable process, and it remains unclear whether\\nany combination of E3 and target might be productive for degradation.\\nWe describe a probe-quality degrader for a ligase–target pair\\ndeemed unsuitable: the von Hippel–Lindau (VHL) and BRD9, a\\nbromodomain-containing subunit of the SWI/SNF chromatin remodeling\\ncomplex BAF. VHL-based degraders could be optimized from suboptimal\\ncompounds in two rounds by systematically varying conjugation patterns\\nand linkers and monitoring cellular degradation activities, kinetic\\nprofiles, and ubiquitination, as well as ternary complex formation\\nthermodynamics. The emerged structure–activity relationships\\nguided the discovery of VZ185, a potent, fast, and selective degrader\\nof BRD9 and of its close homolog BRD7. Our findings qualify a new\\nchemical tool for BRD7/9 knockdown and provide a roadmap for PROTAC\\ndevelopment against seemingly incompatible target–ligase combinations.

\\n
\\n \\n \\n document-id-old-9\\n jm8b01413\\n \\n \\n document-id-new-14\\n jm-2018-01413x\\n \\n \\n ccc-price\\n \\n \\n \\n
\\n
\\n \\n \\n Introduction\\n

Targeted\\nprotein degradation is an emerging strategy to use small\\nmolecules to knock down a protein by hijacking the ubiquitin–proteasome\\nsystem.1,2 PROTACs (proteolysis targeting chimeras)\\nare bifunctional degrader molecules composed of a ligand for the target\\nprotein and a ligand for E3 ligase recruitment, connected by a linker.3,4 Upon formation of a ternary complex target:degrader:E3,57 the protein of interest is ubiquitinated and degraded by the proteasome.\\nCompared to target blockade, post-translational protein degradation\\nmore closely phenocopies genetic approaches to target validation and\\ncan lead to a more sustained cellular effect with more extended duration\\nof action. An attractive feature of PROTACs is their catalytic mode\\nof action, as any one molecule may perform multiple rounds of target\\nubiquitination and degradation.8 A consequence\\nof this feature is that degraders can function at substoichiometric\\nreceptor occupancies, meaning they exhibit degradation activities\\nat concentrations that can be orders of magnitude lower than their\\nbinary dissociation constants (Kd) from\\nthe target, alleviating the requirement for full target engagement.9 Moreover, PROTAC molecules can add a layer of\\ntarget selectivity beyond that expected from the constitutive binding\\nligands, thus providing highly selective degraders with reduced off-target\\neffect.5,1012 The mounting interest\\nin PROTAC drug discovery is also motivated by the promise to target\\nproteins considered “undruggable” via conventional medicinal\\nchemistry approaches.13 To date, different\\ntarget classes have been successfully degraded, including epigenetic\\ntargets such as bromodomain-containing proteins BRD2, BRD3, and BRD4,5,10,11,1417 BRD9,18 TRIM24,19 SIRT2,20 PCAF/GNC5,21 protein kinases,8,12,2226 nuclear receptors,27,28 and E3 ubiquitin ligases to self-degrade.29,30

\\n

To fulfill the potential of targeted protein degradation,\\na general\\nmethodology for an efficient PROTAC design would be desirable. However,\\nthe development of active PROTAC degraders is often a laborious and\\nunguided process. The choice of E3 ligase and the selection of target\\nligands and their conjugation are all potential optimization variables\\nthat expand the chemical space to be exploited by medicinal chemists.\\nProperties of the linker, such as length, composition, and site of\\nattachment, are known to be important but often their impact on activity\\nvary in a target- and context-dependent fashion.11,24,29,31,32 Moreover, small-molecule binders for both the protein\\nof interest and the E3 ligase are required. Despite the large number\\nof human E3 ubiquitin ligases postulated to function in cells, only\\na few have good-quality ligands33 that\\nhave been successfully used for PROTACs.34 The most common ligases recruited are the von Hippel–Lindau\\n(VHL) protein complex CRL2VHL and the cereblon (CRBN) complex\\nCRL4CRBN. Studies have shown that PROTACs made of the same\\ntarget ligand but either VHL or CRBN ligands can exhibit different\\ndegradation selectivity and efficacy.11,14,18,22 In some systems, CRBN-based\\ndegraders show a more active profile than VHL-based molecules. Potential\\ngreater flexibility of the Cullin4 based CRL4CRBN compared\\nto CRL2VHL has been invoked to suggest more productive\\nubiquitination of the accessible lysine residues on the target protein.1,32,35 These observations would suggest\\nthat the development of VHL-based degraders might require more exploration\\nin the PROTAC design than those based on CRBN. Even if degradation\\nof a given target protein can be readily obtained by recruiting one\\nE3 ligase, emerging evidence suggests that it could be beneficial\\nto develop a parallel chemical series hijacking other E3 ligases.\\nFor example, chemical liabilities on a particular ligase ligand could\\nbe readily circumvented by switching to a different compound. The\\nhijacked E3 ligase expression and intrinsic activity may be context-dependent,\\nand vary widely among different cells and tissue types.36 Furthermore, resistance mechanisms could potentially\\narise from the loss of the hijacked E3 ligase, as demonstrated by\\nthe correlation between level of CRBN and response to CRBN-recruiting\\ndrugs in multiple myeloma.37 Switching\\nthe hijacked ligase can thus aid targeted protein degradation. It\\nhowever remains unclear whether optimal target–E3 pairs exist\\nor indeed whether any combination of E3 ligase and target protein\\nmight be tractable.

\\n

Here, we demonstrate the development of\\nprobe-quality PROTACs for\\na ligase–target pair previously considered incompatible: VHL\\nand the protein BRD9.18 BRD9 and its close\\nhomolog BRD7 (85% sequence identity38)\\nare bromodomain-containing subunits of the BAF (BRG-/BRM-associated\\nfactor) and PBAF (polybromo-associated BAF) complexes, respectively.39,40 BAF and PBAF represent two variants of the SWI/SNF complex, one\\nof the four mammalian ATP-dependent chromatin remodeling complexes.\\nThe SWI/SNF complexes control gene expression, DNA replication, and\\nDNA repair by modulating access to promoters and coding regions of\\nDNA through modification of the degree of compactness of chromatin.4143 Mounting evidence from genetics and sequencing of cancer-associated\\nmutations have spurred efforts to unravel yet largely elusive physiological\\nroles of BAF/PBAF subunits and to develop targeted therapeutics in\\ncancer and other human diseases.39 In particular,\\nBRD9 is overexpressed in several malignancies, such as cervical cancer\\nand in non-small-cell lung cancer (NSCLC).44,45 In contrast, BRD7 gene has been proposed as candidate tumor suppressor\\ngene,4649 as it regulates breast cancer cell metabolism50 and acts as negative regulator of aerobic glycolysis essential\\nfor tumor progression.51 BRD7 also promotes\\nX-box binding protein 1 (XBP1) nuclear translocation, which prevents\\nthe development of insulin-resistance disorders.52 In contrast to these roles, it has been recently shown\\nthat inactivation of the BRD7 gene sensitizes tumor cells to T cell-mediated\\nkilling, suggesting that knockdown of BRD7 could be an attractive\\ntarget for cancer immunotherapy.53 Potent\\nand selective inhibitors that bind to the BRD7/9 bromodomains have\\nrecently emerged from structure-guided medicinal chemistry campaigns,\\nincluding compounds I-BRD9,38 LP99,54 ketone “compound 28”,55 BI-7273 and BI-956456 (1a,b, Figure 1), and GNE-375.57 These BRD7/9 inhibitors have been used in cells to help clarify\\nthe roles of the BRD7/9 bromodomains in oncogenesis and other disease\\nstates. For example, pharmacological studies of inhibitors 1a and 1b in combination with domain-swap protein engineering\\nrevealed that an active bromodomain of BRD9 is required to sustain\\nMYC transcription and proliferation of leukemic cells.56,58 These findings and availability of bromodomain ligands prompted\\nus to initiate a PROTAC medicinal chemistry campaign to target BRD7\\nand BRD9 proteins for degradation.

\\n \\n \\n \\n

Chemical structures of parent (1a, 1b, 24) and modified\\n(1c, 2a4a) BRD7/9 and\\nE3 ligase ligands.\\nFunctional groups selected for conjugation are shown in blue on parent\\nligands and in red on modified ligands.

\\n \\n \\n
\\n
\\n \\n Results and Discussion\\n \\n First Generation of BRD7 and BRD9 Degraders\\n

We began\\nour investigation by designing a small set of PROTACs aimed to induce\\nBRD7/9 degradation by recruiting three different E3 ubiquitin ligases:\\nVHL, CRBN, and DCAF15.59,60 We aimed to leverage available\\nE3 ligase ligands and to maximize the opportunity for complementary\\nsurfaces between the bromodomain and the ligase within the ternary\\ncomplex. As BRD7/9 bromodomain ligands, we selected compounds 1a,b (Figure 1),56 on the basis of their\\nhigh binding affinity56 and of their superiority\\nas BRD9 chemical probes over other ligands.58 To design the first generation of degraders, we inspected the crystal\\nstructure of 1a bound to BRD9 (PDB code 5EU1)56 to identify suitable attachment points and vectors for\\nlinker conjugation, important considerations for PROTAC design as\\nknown to greatly influence degradation activities.11,29 The dimethylamine group of the molecule was identified as a solvent-exposed\\ngroup not involved in interactions with the protein. For synthetic\\nreasons, the dimethylamine group of compound 1a was replaced\\nby a piperazine group (BrdL1 (1c), Figure 1 and Supporting Information Figure S1), providing a convenient isosteric handle. As E3\\nligase recruiting moieties, VH032 (2, VHL ligand, Figure 1)6163 and pomalidomide\\n(3, CRBN ligand, Figure 1)64 were selected and modified\\nto afford compounds VHL1 (2a) and 3a (Figure 1 and Supporting Information Figure S1). The amino\\nterminal groups of 2a and 3a were conjugated\\nvia amide bond to the linker without perturbing the interaction with\\nthe E3 ligases, as previously demonstrated.8,10,15,22 To expand\\nthe arsenal of E3 ligase ligands being explored, we designed conjugates\\ncontaining indisulam (4, Figure 1), a small molecule recently reported to\\nbind to the E3 ligase DCAF15 and to redirect the activity of the CRL4DCAF15 complex toward the neosubstrate CAPERα (also known\\nas RBM39).59,60 As the binding mode of 4 is not known, we leveraged information on the activity of\\na biotinylated photoactive analogue probe to guide our conjugation\\nstrategy.60 Accordingly, a para-benzylamine analogue of 4 (derivative 4a, Figure 1 and Supporting Information Figure S1) was designed\\nas conjugatable ligase ligand. To generate a first set of compounds,\\nwe decided to use PEG linkers composed of two or four PEG units to\\nconnect the two warheads (compounds 510, Scheme 2).

\\n

Compounds 510 were obtained as\\nreported in Schemes 1 and 2. Briefly,\\nreductive amination between the commercially available 4-bromo-2,6-dimethoxybenzaldehyde\\n(11) and boc-piperazine led to the formation of compound 12 which was then cross-coupled with 14 (obtained\\nby methylation of 13) under the Myaura–Suzuki\\ncondition (one-pot two steps); the cleavage of tert-butyloxycarbonyl protecting group in acidic conditions afforded 1c in quantitative yield (Scheme 1). The primary alcohol functionality of the\\nlinkers (15 and 16) was oxidized to aldehyde\\ngroup using a Swern reaction and condensed with the terminal secondary\\namine of 1c to afford the tert-butyl\\nester intermediates 17 and 18 that were\\nconverted into the corresponding acids by trifluoroacetic acid (TFA)\\ntreatment (Scheme 2). Compounds 19 and 20 were then conjugated\\nwith the conjugatable E3 ligands (2a and 3a prepared as previously described,61,65 and 4a synthesis in Supporting Information Synthetic Procedures) using HATU as coupling reagent yielding\\nfinal compounds 510.

\\n \\n \\n \\n Synthesis\\nof the BRD7/9 Ligand <bold>1c</bold>\\n

Reagents\\nand conditions: (a)\\n1-Boc-piperazine, NaBH(OAc)3, THF, rt, overnight, yield\\n97%; (b) NaH, CH3I, DMF, 0 °C, 5 h, yield 95%. (c)\\nStep 1: 12, B2pin2, KOAc, Pd(dppf)Cl2, 1,4 dioxane, microwave, 140 °C, 40 min. Step 2: 14 and K2CO3 (aq) are added to step\\n1; microwave, 120 °C, 30 min, yield 55%. (d) HCl 4 M in dioxane,\\nDCM, rt, 1 h, quantitative yield.

\\n \\n \\n
\\n \\n \\n \\n Synthesis of the\\nFirst Generation of Degraders\\n

Reagents and conditions:\\n(a)\\noxalyl chloride, DMSO, DCM, then TEA, −78 °C to rt, 2\\nh; (b) 1c, NaBH(OAc)3, TEA, DMF, rt, overnight;\\n(c) TFA, DCM, rt, 2 h; (d) E3 ligand (2a, 3a, or 4a), HATU, HOAt, DIPEA, DMF, rt, 2 h.

\\n \\n \\n
\\n

To assess the degradation activity of the first generation\\nof PROTACs,\\nHeLa cells were treated with compounds 510 at fixed concentration of 1 μM, for 4 and 16 h before\\nharvesting (Figure 2A). CRBN-based PROTACs 7 and 8 demonstrated\\nstrong degradation of BRD9 already after 4 h of treatment, whereas\\nno BRD7 degradation was observed (Figure 2A). In contrast, VHL-based degraders 5 and 6 showed weak activity against both BRD7\\nand BRD9, inducing at most 20% degradation after 4 h and 30% after\\n16 h, and even weaker activity was observed with the indisulam-based\\nPROTACs 9 and 10 (Figure 2A). siRNA knockdown experiments (Figure 2B) validated the\\nspecificity of the bands observed by Western blot.

\\n \\n \\n \\n

Screening of first generation\\nof degraders. (A) Western blot analysis\\nof BRD9 and BRD7 levels after treatment of HeLa cells with 1 μM\\ncompounds for 4 and 16 h before harvesting. Degradation activity is\\nreported below each lane as % of protein abundance relative to 0.1%\\nDMSO vehicle. (B) Western blot analysis of BRD9 and BRD7 levels after\\n48 h transfection with 1.25 nM siRNA targeting respectively BRD7,\\nBRD9, or negative control (N.C.) siRNA. Intensity values are quantified\\nas described in the Experimental Section.

\\n \\n \\n
\\n

While this research was underway,\\nRemillard et al.18 disclosed the BRD9 degrader\\ndBRD9 (21, Figure 3) confirming the\\nstrong degradation activity of our CRBN-recruiting PROTACs. Compounds 7 and 21 share the same target and E3 ligands,\\nwhich, however, were differently modified to attach two distinct linkers\\n(Figure 3). CRBN-based\\nPROTACs, however, can exhibit off-target degradation of non-PROTAC-targets\\nsuch as IKZF1/3 and GSPT1 due to the neomorphic activity of the CRBN\\nligand alone.18,66

\\n \\n \\n \\n

Structures of compounds 7 and 21.18

\\n \\n \\n
\\n

We therefore turned our attention to VHL-based\\nPROTACs. Encouraged\\nby the degradation, albeit partial, of both BRD7 and BRD9 induced\\nby our initial VHL-based PROTACs, we decided to characterize the binding\\nof 5 biophysically and structurally. To determine the\\nbinding mode of the conjugated bromodomain ligand, compound 5 was cocrystallized with the BRD9 bromodomain (BRD9-BD).\\nIn the BRD9-BD:5 complex, the bromodomain ligand was\\nclearly observed within its binding pocket, and its binding mode closely\\nrecapitulates that of 1a (rmsd = 0.569 Å) (Figure 4A,B). The alkylated\\npiperazine is favorably accommodated within the binding site, with\\nthe linker directed toward solvent, as desired (Figure 4A,B).

\\n \\n \\n \\n

Ternary complex formation and analysis\\nof binding mode for compound 5. (A) Cocrystal structure\\nof BRD9-BD and compound 5. The warhead component of the\\ndegrader (purple and cyan; one from\\neach protomer in the ASU) recapitulates the binding of inhibitor 1a (magenta, PDB code 5EUI),56 whereas\\nthe alkylated piperazine used to attach the linker is solvent-exposed\\nand does not form any unfavorable interactions with the protein. (B) FoFc omit\\nmap of compound 5 (contoured at 2.5σ) showing electron\\ndensity for the alkylated piperazine ring. (C) BRD9-BD titrated into 5 alone. (D) VCB titrated into 5 alone. (E) VCB\\ntitrated into BRD9-BD:5 binary complex. VCB binds more\\nweakly to the binary complex BRD9-BD:5 (Kd = 73 nM) compared to compound 5 alone (Kd = 33 nM), indicating negative cooperativity.

\\n \\n \\n
\\n

To characterize biophysically\\nthe interplay between VCB (VHL-ElonginC-ElonginB\\ncomplex), compound 5, and the BRD9 bromodomain, we applied\\nour previously developed ITC assay5,11 that measures\\nthe thermodynamics and cooperativities of ternary complex formation.\\nPrevious work has demonstrated that VHL is capable of forming highly\\nstable and cooperative ternary complexes, as seen with MZ1-Brd4BD2\\n(ref (5)) and with\\nthe homo-PROTAC dimerizer CM11 (ref (29)). Titrations of protein into PROTAC alone revealed\\na binary binding affinity for VCB (Kd =\\n33 ± 2 nM, Figure 4D and Table 1) within\\n2-fold of that measured on previously characterized VHL-based BET\\ndegrader MZ1 (Kd = 70 nM, refs (5) and (11)). Similarly, the binary\\naffinity (Kd = 15 ± 3 nM) and binding\\nenthalpy (ΔH = −12 kcal/mol) for BRD9-BD\\n(Figure 4C and Table 1) were comparable\\nto that of inhibitor 1a,56 consistent with the conserved binding modes of 5 and\\ninhibitor 1a observed crystallographically (Figure 4A). The titrations\\nof VCB into BRD9-BD:5 complex (Figure 4E) showed that VCB binds more weakly to the\\nbinary complex BRD9-BD:5 (Kd = 73 nM) than to compound 5 alone (Kd = 33 nM), indicating negative cooperativity (α\\n< 1, Table 1). Negative\\ncooperativity has previously been observed with tetrahydroquinoline-based\\nBET PROTACs, where it was demonstrated that linker length and exit\\nvector can significantly influence ternary complex formation.11 On the basis of these considerations, we reasoned\\nto explore variations on the linker as well as the point of derivatization.

\\n \\n \\n \\n Thermodynamic Parameters of Formation\\nof Binary and Ternary Complexes between VCB, BRD9 Bromodomain, and\\nCompound <bold>5</bold> Measured by Isothermal Titration Calorimetry\\n(ITC)<xref rid=\"t1fn1\" ref-type=\"table-fn\">a</xref>\\n \\n \\n \\n \\n \\n \\n \\n \\n \\n \\n \\n \\n \\n \\n \\n \\n \\n \\n \\n \\n \\n \\n \\n \\n \\n \\n \\n \\n \\n \\n \\n \\n \\n \\n \\n \\n \\n \\n \\n \\n \\n \\n \\n \\n \\n \\n \\n \\n \\n \\n \\n \\n \\n \\n \\n \\n
syringecellKd (nM)ΔH (kcal/mol)ΔG (kcal/mol)TΔS (kcal/mol)\\n N\\n α
BRD9-BD\\n 5\\n 15 ± 3–12.5 ± 0.4–10.7 ± 0.11.8 ± 0.50.753 ± 0.004 
VCB\\n 5\\n 33 ± 2–15.2 ± 0.1–10.2 ± 0.14.9 ± 0.10.60 ± 0.01 
 BRD9-BD:573 ± 2–6.4 ± 0.1–9.7 ± 0.1–3.3 ± 0.10.75 ± 0.050.45
\\n \\n \\n \\n

All ITC titrations were performed\\nat 25 °C. Values reported are the mean ± SEM from at least\\nthree independent measurements (n ≥ 3).

\\n
\\n
\\n
\\n
\\n \\n Second Generation of BRD7 and BRD9 Degraders\\n

To improve\\nternary complex formation and degradation activity of PROTACs 5 and 6, we explored the impact of varying their\\nderivatization point, linker length, and composition (compounds 2231, Table 2). First, to expand the conjugation pattern\\nbetween VHL1 and BrdL1 (Figure 1), the number of PEG units was modified (3 units for 24; 5 units for 22), a more lipophilic 11-atoms\\nchain was inserted (compound 23), and a different attachment\\nto BrdL1 moiety via amide conjugation was explored (compound 25) (Table 2). Furthermore, we explored a conjugation vector via a phenolic position\\n(VHL2 (2b), compounds 28 and 31, Table 2 and Supporting Information Figure S1), as previously\\ndescribed.29,67 To improve binary binding affinities\\nto VHL and potentially fine-tune intermolecular interactions in the\\nternary complex,5 we replaced the VHL2\\nacetyl group with either a cyanocyclopropyl group (VHL3 (2c), derivatives 27 and 30, Table 2 and Supporting Information Figure S1)29,62 or a fluorocyclopropyl\\ngroup (VHL4 (2d), derivatives 26 and 29, Table 2 and Supporting Information Figure S1).63 As assessed by crystallographic studies (for 2c, PDB code 5LLI; for 2d, PDB code 5NVX), these modifications accommodate snugly\\non the VHL protein surface and enhance binding affinity.62,63 To allow direct comparison with the compounds from the first series,\\ncompounds 2628 and 2931 were designed to contain PEG2 and PEG4 linkers,\\nrespectively.

\\n \\n \\n \\n SAR of Second Generation of PROTACs<xref rid=\"t2fn1\" ref-type=\"table-fn\">a</xref>\\n \\n \\n \\n \\n \\n \\n

Footnote: *Degradation\\nactivity\\nreported as % of total protein remaining after 1 μM compound\\ntreatment relative to 0.1% DMSO vehicle as quantified by Western blotting\\nof HeLa cell lysates.

\\n
\\n
\\n
\\n

Compounds 22 and 24 were obtained via\\nthe same synthetic route used for the first generation (synthesis\\nof compounds 22, 24, and 25 detailed in the Supporting Information). The synthesis of 23 (Scheme 3) involved nucleophilic attack of diethylene\\nglycol (PEG2) to 6-bromo-1-hexene to afford derivative 33 that was oxidized to carboxylic acid 34 by treatment\\nwith TEMPO and bis-acetoxyiodobenzene (BAIB). After coupling\\nwith 2a, Lemieux–Johnson oxidation of the double\\nbond yielded the aldehyde intermediate that was reacted with amine 1c to yield compound 23 in 54% yield. A similar\\nsynthetic strategy was applied for the synthesis of degraders 2631 (Scheme 4). Briefly, after nucleophilic substitution\\nof polyethylene glycol (PEG2 and PEG4) with allyl bromide, the alcoholic\\ngroup of 38 and 39 was activated as mesylate\\nand reacted with the phenolic group present in the VHL ligand scaffold\\naffording derivatives 4045. The\\nalkene moiety was then oxidized, and the resulting aldehyde derivative\\nwas directly used for the final reductive amination step with 1c to afford the final products 2631.

\\n \\n \\n \\n Synthesis of Compound <bold>23</bold>\\n

Reagents and conditions: (a)\\nNaH, 6-bromo-1-hexene, DMF/THF, rt, overnight; (b) BAIB, TEMPO, ACN/H2O, rt, overnight; (c) 2a, HATU, HOAt, DIPEA,\\nDMF, rt, 2 h; (d) OsO4 4 wt % in H2O, NaIO4, pyridine, dioxane/H2O, rt; (e) 1c, NaBH(OAc)3, TEA, DMF, rt, overnight.

\\n \\n \\n
\\n \\n \\n \\n Synthesis of Compounds <bold>26</bold>–<bold>31</bold>\\n

Reagents and conditions: (a)\\nNaOH, allyl bromide, dioxane, rt, overnight; (b) MsCl, TEA, DCM, rt,\\n3 h; (c) VHL ligands 2bd, K2CO3, DMF, 70 °C, overnight; (d) OsO4, NaIO4, pyridine, dioxane/H2O, rt; (e) 1c, NaBH(OAc)3, TEA, DMF, rt, overnight.

\\n \\n \\n
\\n

All second-generation compounds were profiled for\\nBRD9 and BRD7\\ndegradation after treatment for 4 and 16 h (Figure 5A and Supporting Information Figures S2 and S3). The two VHL-based PROTACs 5 and 6 were included as reference compounds. Derivative 26 (Figure 5B) demonstrated marked and selective (around 90%) depletion of BRD9\\nover BRD7 already after 4 h treatment in HeLa cells (Figure 5A, Table 2). By comparing and contrasting the degradation\\nprofiles of related compounds, structure–activity relationships\\nbegan to emerge (Table 2). As expected, the length of linkers influenced degradation profiles,\\nwith more pronounced BRD9 degradation observed with shorter linkers\\nfor given matched pairs (compare 26 and 29; 27 and 30; 5 with 24, 6, and 22). We also observed\\nthat for a given linker length, replacement of an oxygen atom with\\na methylene group was beneficial to degradation activity (compare 23 vs 24). Among conjugates derivatized at the\\nphenolic position of the VHL ligand, the nature of the terminal capping\\ngroup also influenced degradation potency. Within each series of conjugates\\nof fixed linker, compounds bearing the fluorocyclopropyl moiety (VHL4)\\nwere more potent degraders than those containing cyanocyclopropyl\\n(VHL3) and even more so than acetyl group (VHL2) (26 vs 27 and 28; and 29 vs 30 and 31, respectively) (Table 2). These trends are consistent with the binary\\nbinding affinity values measured for the corresponding VHL ligands.63 To account for potential different protein expression\\nlevels, compounds 2231 were tested\\nacross a panel of different cancer cell lines (Supporting Information Figures S2 and S3). From these degradation\\nscreens, 26 was confirmed as the most active compound,\\nconsistently across all assays and cell lines.

\\n \\n \\n \\n

Compound 26 induces rapid and profound depletion of\\nBRD9 in cells. (A) Western blot analysis of BRD9, BRD7, and β-actin\\nafter treatment of HeLa cells with 1 μM compounds for 4 h before\\nharvesting (data reported in Table 2). (B) Chemical structure of 26. (C) Quantification\\nof BRD9 protein levels after treatment of HeLa with six different\\nconcentrations of 26 at 30 min and 4 h before harvesting.\\n(D) Quantification of BRD9 protein levels after treatment with 1 μM 26 in HeLa at the desired time points. Intensity values, DC50, and half-lives were quantified as described in the Experimental Section.

\\n \\n \\n
\\n

Compound 26 was further characterized by profiling\\nits concentration-dependent activity at early time points (30 min\\nand 4 h before harvesting; Figure 5C and Supporting Information Figure S4). PROTAC 26 induced preferential degradation\\nof BRD9 over BRD7, resulting in a half-degrading concentration (DC50) of 560 nM against BRD9 (Figure 5C and Supporting Information Figure S4). More than 60% of degradation of BRD9 was observed\\nat 1 μM after 4 h, while maximal degradation (Dmax around 80%) was reached at 10 μM. At higher\\ndoses, the characteristic “hook effect” was observed,\\nconsistent with 26 acting preferentially as inhibitor\\nover degrader at high concentrations. Rapid and selective target degradation\\nwas confirmed by profiling cellular activities over time (Figure 5D and Supporting Information Figure S4). Treatments\\nof HeLa cells at fixed concentration (1 μM) of 26 at varying time points revealed rapid degradation of BRD9 with an\\napparent half-life of 3.5 h, resulting in more than 50% degradation\\nalready after 4 h treatment and achieving the highest level of depletion\\nafter 8 h (Figure 5D).

\\n

To determine to what extent a correlation could be seen\\nbetween\\nternary complex formation and the improved degradation properties\\nof 26, we turned to measurements of thermodynamic parameters\\nand cooperativity by ITC (Figure 6A and Supporting Information Figure S5). Titrating VCB into 26 alone or BRD9-BD:26 complex indicated a cooperativity α = 1, an over\\n2-fold improvement over 5. At the binary level compared\\nto 5, we observed negligible difference between 26 and 5 in binding affinity for BRD9-BD, but\\na slight loss in affinity for VCB (Kd =\\n87 ± 5 nM for 26 compared to 33 ± 2 nM for 5) (Supporting Information Table S1).

\\n \\n \\n \\n

Improved ternary complex formation by series-2 degraders. (A) Overlay\\nof compound 26 titrations shows no difference between\\nbinary (VCB into 26 alone; black) and ternary (VCB into\\nBRD9-BD:26 binary complex; green) titrations. (B) Fluorescence\\npolarization measurements for compound 5 in the presence\\n(red) and absence (black) of BRD9-BD. The rightward shift in the presence\\nof BRD9-BD indicates negative cooperativity. Each point is the mean\\n± SEM of at least two individual experiments performed in triplicate.\\n(C) Fluorescence polarization measurements for compound 26 in the presence (green) and absence (black) of BRD9-BD. Each point\\nis the mean ± SEM of at least two individual experiments performed\\nin triplicate. (D) AlphaLISA assay showing increased ternary complex\\nformation for 26 (green) compared to 5 (red).\\nEach point is the mean ± SEM of at least one experiment performed\\nin quadruplicate.

\\n \\n \\n
\\n

To confirm these findings,\\nwe repurposed an existing fluorescence\\npolarization (FP) assay that involves the competitive displacement\\nof a FAM-labeled HIF-1α peptide.68 By comparing PROTAC-induced peptide displacement in the presence\\nand absence of BRD9-BD, it is possible to determine the cooperativity\\n(Figure 6B,C). FP measurements\\nfor compound 5 showed a rightward shift in the IC50 curve in the presence of BRD9-BD, indicating negative cooperativity,\\nwhereas compound 26 showed no shift. Back-calculation\\nof Kd values63 produced affinity values that were comparable to those obtained\\nby ITC (Supporting Information Table S1 and Figure S5).

\\n

Previous studies with VCB and BET bromodomains have\\ndemonstrated\\nthat the amount of ternary complex formed is well correlated to the\\ncooperativity of the system.5 Therefore,\\nwe employed an AlphaLISA proximity assay to determine the effect of\\nincreasing cooperativity on ternary complex formation (Figure 6D). Indeed, there was a 50%\\nincrease in the maximum α intensity measured for VCB:26:BRD9-BD compared to VCB:5:BRD9-BD, suggesting that\\nthe increased cooperativity of 26 compared to 5 resulted in increased population of ternary complex.

\\n
\\n \\n Third Generation\\nof BRD7 and BRD9 Degraders\\n

The pronounced\\ndegradation of BRD9 observed with 26 motivated us to\\ndesign a third generation of PROTACs with the goal to further optimize\\nour degrader. On the basis of the SAR previously acquired, the design\\nstrategy was to keep VHL4 moiety fixed and to focus on systematically\\nvarying the linker length and composition, as well as the substitution\\nand conjugation chemistry at the BRD7/9 warhead. The focus on the\\nlinker concentrated on exploring varying ratios between hydrophilic\\nand lipophilic portions within the context of three different lengths:\\n5, 8, and 11 atoms (Table 3). We reasoned that varying the balance between hydrophilicity\\nand lipophilicity might influence the conformational equilibria and\\nintrinsic folding propensity of the linker, with direct impact on\\nthe process of ternary complex formation as well as potentially cell\\npermeability. Linkers were connected to four different analogues of\\nBRD7/9 ligands. Guided by the structure–activity relationships\\nof BRD7/9 bromodomain inhibitors developed by Martin et al.,56 we introduced two structural variations, single\\nor in combination. First, we arranged the methoxy groups on the phenyl\\nring in either meta (BrdL1, 1c) or para (BrdL2, 1d) (Table 3 and Supporting Information Figure S1)\\nrelative to each other. Second, we replaced the piperazine moiety\\nwith an azetidine group (BrdL3, 1e and BrdL4, 1f, Table 3 and Supporting Information Figure S1). For conjugation\\nbetween the bromodomain ligand and the linker, either tertiary amines\\n(via reductive amination reactions) or amide bonds were contemplated.\\nThis design yielded a set of 19 new PROTACs (Table 3).

\\n \\n \\n \\n SAR of Third Generation\\nof PROTACs<xref rid=\"t3fn1\" ref-type=\"table-fn\">a</xref>\\n \\n \\n \\n \\n \\n \\n

Footnote: *Degradation activity\\nreported as % of total protein remaining after 1 μM compound\\ntreatment relative to 0.1% DMSO vehicle as quantified by Western blotting\\nof HeLa and RI-1 cell lysates.

\\n
\\n
\\n
\\n

To circumvent the need to use the hazardous reagent osmium tetroxide\\npreviously applied in the Lemieux–Johnson reaction, some key\\nmodifications and optimization to the synthesis were made (Scheme 5 and Supporting Information Synthetic Procedures).\\nMesylation of the free hydroxy group of the linkers allowed nucleophilic\\nattack by the phenolic group of 2d (Scheme 5). The lipophilic compound 66, instead, was conjugated to 2d via alkylation\\n(Scheme 5). Then, the\\ndiacetal functional group on the linker was hydrolyzed to aldehyde\\nunder acidic conditions to allow reductive amination with 1c,d (synthesis of 1d is described in the Supporting Information) warheads, leading to\\nthe formation of compounds 4654.\\nTo conjugate the linker to 1e,f via amide\\nbond, VHL-linker aldehyde intermediates were oxidized to acid through\\na Pinnick reaction. Then, HATU-mediated coupling with 1e,f (synthesis described in the Supporting Information) was applied to obtain the final compounds 5564 (Scheme 5 and Supporting Information Synthetic Procedures).

\\n \\n \\n \\n General Synthetic Routes for Third-Generation\\nCompounds\\n

Reagents and conditions: (a)\\nMsCl, TEA, DCM, rt, 3 h; (b) 2d, K2CO3, DMF, 70 °C, overnight; (c) K2CO3, DMF, 70 °C, overnight; (d) HCl 1 N, THF (1:1), 50 °C,\\n2 h; (e) 1c,d, NaBH(OAc)3, TEA,\\nDMF, rt, overnight; (f) Na2HPO4, NaClO2, 2-methyl-2-butene, t-BuOH, H2O, rt,\\n4 h ; (g) 1e,f, HATU, HOAt, DIPEA, DMF,\\nrt, 2 h.

\\n \\n \\n
\\n

Degraders 4664 were screened\\nat 1 μM in HeLa cells following 4 and 16 h of treatment (Table 3, Figure 7A and Supporting Information Figure S6). A large proportion of compounds induced\\nefficient degradation of both BRD7 and BRD9 in HeLa cells, with less\\nthan 10% total protein remaining after 4 h treatment (Table 3, Figure 7A). Overall, within matched pairs, greater\\ndegradation activity was observed for compounds containing meta (BrdL1 and BrdL3) over para (BrdL2\\nand BrdL4) dimethoxy substituents (as representative examples: 46 vs 47, 26 vs 48, 51 vs 52, Figure 7A). To assess consistency of cellular activity, compound\\nscreening was repeated in RI-1 (DLBCL) cells after 2 h of treatment\\n(Table 3, Figure 7B). This cell line\\nwas chosen because it is sensitive to BRD9 inhibition,58 it is of clinical relevance, and it also expresses\\nboth VHL and CRBN ligases (Supporting Information Figure S7). The compounds that induced greatest protein degradation\\nactivity after 2 h were 46 and 52 (on BRD9),\\nand 51 (on BRD7) (Figure 7B). Compounds 46 and 51 differ\\nonly by one atom in the center of the linker, which is oxygen or carbon,\\nrespectively (Table 3). Compound 52 is the analogue of 51 but\\nwith BrdL2 instead of BrdL1 (Table 3). 46 and 51 showed enhanced\\ndegradation of BRD9 compared to 26, and similar levels\\nof degradation compared to CRBN-based degrader 7 in RI-1\\ncells after 8 h treatment. In addition, 46 and 51 achieved PROTAC-induced degradation of BRD7 in addition\\nto BRD9 (Figure 7C).

\\n \\n \\n \\n

Screening\\nof third generation of degraders. (A) Western-blot analysis\\nof BRD9 and BRD7 levels after treatment of HeLa cells with 1 μM\\ncompounds for 4 h before harvesting. (B) Western blot analysis of\\nBRD9 and BRD7 levels after treatment of RI-1 cells with 1 μM\\ncompounds for 2 h before harvesting. (C) Western blot analysis of\\nBRD9 and BRD7 levels after treatment of RI-1 cells with 1 μM 7, 26, 46, and 51 for\\n2 and 8 h before harvesting. Intensity values were quantified as described\\nin the Experimental Section.

\\n \\n \\n
\\n

We next decided to assess the concentration-dependent\\nactivity\\nof 46 and 51 in RI-1 cells at two time points\\n(2 and 8 h) after treatments at different concentrations (Figure 8A,C). This experiment\\nrevealed 51 to be the most potent of the two, achieving\\nmaximal protein degradation of BRD9 in the 10–100 nM window,\\nand of BRD7 between 0.1–1 μM, with the hook effect observed\\nat higher concentrations with both proteins (Figure 8A). In contrast, 46 required\\nconcentrations of about 10-fold higher than 51 to achieve\\nits Dmax, and consequently longer treatment\\ntimes to achieve similar degradation levels of both BRD9 and BRD7\\n(Figure 8A). Dose-dependent\\ndegradation profiles of 51 at the 8 h time-point gave\\nhalf-degrading concentrations (DC50) of 1.76 nM and 4.5\\nnM against BRD9 and BRD7, respectively (Figure 8C). The pronounced hook effect observed on\\nBRD9 protein levels upon treatment with 1 μM of 51 (Figure 8A,C) explains\\nits apparent weaker degradation activity in the initial screening\\n(Figure 7B). The potent\\nand rapid protein degradation induced by 51 was confirmed\\nby assessing its activity in RI-1 cells treated with 10 nM or 100\\nnM of compound at varying time points (Figure 8D). Levels of both BRD7 and BRD9 decreased\\nby more than 50% already after 30 min of treatment at 100 nM, reaching\\nmore than 90% of degradation after 4 h. No protein recovery was observed\\nthrough 48 h of treatment. At the lower concentration used (10 nM) 51 was seen to degrade preferentially BRD9 over BRD7, consistent\\nwith the lower DC50 value for BRD9 versus BRD7. Together,\\nthe results of the stepwise design and optimization of VHL-based degraders\\nallowed us to identify 51 as our most potent degrader,\\nwith DC50 in the single-digit nanomolar range and profound Dmax greater than 90% (Figure 8). These data qualified PROTAC 51 as a potent dual BRD9 and BRD7 degrader, hence afterward referred\\nto as VZ185.

\\n \\n \\n \\n

VZ185 induces strong and rapid degradation in a time-\\nand dose-dependent\\nmanner. (A) Western blot analysis of BRD9, BRD7, and β-actin\\nafter treatment of RI-1 cells with six different concentrations of\\ncompounds 46 and 51 for 2 and 8 h before\\nharvesting. (B) Chemical structures of 51 (VZ185) and 46. (C) Quantification of protein levels relative to DMSO\\ncontrol after treatment with different concentration of VZ185 and\\nDC50 values. (D) Time-dependent experiment in RI-1 cells\\nafter treatment with 10 nM and 100 nM 51 at the desired\\ntime points. Intensity values and DC50 were quantified\\nas described in the Experimental Section.

\\n \\n \\n
\\n

To confirm the potent and rapid\\ndegradation activity of VZ185 and\\nits superiority over close analogues, we employed orthogonal kinetic\\ndegradation studies using live cell luminescent monitoring of BRD7\\nand BRD9 endogenously tagged with HiBiT in HEK293 cells using CRISPR/Cas9.69 Degradation profile experiments carried out\\nover 24 h confirmed the superior degradation activity of VZ185 over\\ncompounds 26 and 46 at a fixed concentration\\nof 1 μM (Supporting Information Figure S8). Treatment across a range of concentrations of VZ185 of both HiBiT-BRD7\\nand HiBiT-BRD9 revealed differential degradation profiles (Figure 9A) and allowed the\\ncalculation of Dmax, DC50 values,\\nand initial rates of degradation (Figure 9B,C). Indeed, rapid degradation was observed\\nwithin a few hours by VZ185 showing preference for BRD9 as compared\\nto BRD7 (BRD9-DC50 = 4 nM; BRD7-DC50 = 34 nM)\\n(Figure 9B). Degradation\\nrate was directly proportional to the concentration of VZ185 except\\nat high concentration for BRD9 where the curve reaches a plateau (Figure 9C). This trend was\\nin line with the strong “hook effect” previously observed\\nwith VZ185. Degradation activity was also confirmed within matched-pairs 2648 and VZ185-52 with CRISPR/Cas9-mediated\\nHiBiT endogenous tagging of BRD9 and BRD7 in HEK293 cells (Supporting Information Figure S8). In addition,\\ndegradation analysis in a panel of other human cancer cell lines (EOL-1,\\nA-204) confirmed the potency of VZ185, showing a DC50 between\\n2 and 8 nM for BRD9 (Supporting Information Figure S9).

\\n \\n \\n \\n

Quantitative live-cell kinetics of VZ185 induced degradation of\\nBRD7 and BRD9. Degradation profile (A), calculation of DC50 values (B), and initial degradation rate (C) across concentration\\nseries indicated of VZ185 using continual luminescent reading of CRISPR/Cas9\\nendogenously tagged HiBiT-BRD7 or HiBiT-BRD9 in HEK293 cells. Error\\nbars are expressed as SEM taken from n = 3 experiments.

\\n \\n \\n
\\n

Following its identification as\\nthe best degrader, we subjected\\nVZ185 to a thorough biophysical characterization in order to dissect\\nthe molecular basis underpinning its potent degradation activity.\\nBoth the ITC and FP data indicated that the PROTAC was not more cooperative\\nthan 26 (Table 4 and Supporting Information Figures S5 and S10). Consistent with this, the amount of ternary complex\\nestimated by AlphaLISA was also not significantly different from that\\nmeasured for 26 (Table 4 and Supporting Information Figure S10). However, the binary affinity for both VCB (Kd = 26 ± 9 nM) and the BRD9 bromodomain (Kd = 5.1 ± 0.6 nM) was significantly greater\\nthan 26. The pronounced binary affinity for each respective\\nprotein provides some basis for the strong “hook effect”\\nobserved in the degradation assays, consistent with previous reports\\nthat a high binary affinity can direct PROTACs to function preferentially\\nas inhibitors at higher concentrations and exhibit strong hook effects.11 Despite the absence of a significant boost in\\ncooperativity over 26, the total ΔG° for ternary complex formation increased to −21.7 kcal/mol,\\nwhich is greater compared to those of 26 (−20.7\\nkcal/mol) and 5 (−20.4 kcal/mol) (Table 4) and in line with that of our\\npotent Brd4 degrader MZ1 (−22.2 kcal/mol).5 VZ185 and its analogues 26 and 46 all showed low cell permeability in PAMPA assay, suggesting that\\npermeability is unlikely to be the main driver of the enhanced degradation\\nactivity of VZ185 (Table S3). The data\\ntogether suggest that the thermodynamically more stable ternary complex\\nformed by VZ185 helps to drive its more potent and rapid degradation\\nactivity, in spite of its low cell permeability.

\\n \\n \\n \\n Biophysical Comparison between BRD9\\nDegraders from Three Generations\\n \\n \\n \\n \\n \\n \\n \\n \\n \\n \\n \\n \\n \\n \\n \\n \\n \\n \\n \\n \\n \\n \\n \\n \\n \\n \\n \\n \\n \\n \\n \\n \\n \\n \\n \\n \\n \\n \\n \\n \\n \\n \\n \\n \\n \\n \\n \\n \\n \\n \\n \\n \\n \\n \\n \\n \\n \\n \\n \\n \\n \\n \\n \\n \\n \\n \\n \\n
 ITCa
FPb
AlphaLISA
compdbinary Kd (nM)ternary Kd (nM)αtotal ΔG (kcal/mol)binary Kd (nM)ternary Kd (nM)αmax intensity
\\n 5\\n 33 ± 273 ± 20.45–20.424 ± 698 ± 20.241.0 × 106
\\n 26\\n 87 ± 583 ± 21.05–20.770 ± 1460 ± 51.171.56 × 106
VZ18526 ± 927 ± 30.96–21.735 ± 535 ± 61.001.47 × 106
\\n \\n \\n \\n

All ITC titrations\\nwere performed\\nat 25 °C. Values reported are the mean ± SEM from at least\\ntwo independent measurements (n ≥ 2).

\\n
\\n \\n \\n

Kd values\\nare reported as the mean ± SEM of at least two individual experiments\\nperformed in triplicate.

\\n
\\n
\\n
\\n

We next studied the functional mechanism of VZ185 by confirming\\nproteasome and CRL2VHL involvement and ubiquitination of\\nBRD7 and BRD9 (Figure 10). Combined treatment of the active degrader with the proteasome\\ninhibitor MG132 and the neddylation inhibitor MLN4924, which blocks\\nthe activity of CRL2VHL,70 suppressed\\nthe degradation of BRD7 and BRD9, clearly indicating that the degradation\\nis proteasome- and CRL2VHL-dependent (Figure 10A). Moreover, to investigate\\nlevels of target ubiquitination, NanoBRET experiments were performed\\nusing the endogenously tagged HiBiT-BRD7 and BRD9 as energy donors\\nand a polyclonal-Ub primary in conjunction with a fluorescently labeled\\nsecondary antibody as an energy acceptor (Figure 10B). Increases in BRET can be observed over\\ntime after treatment with VZ185 for both proteins, indicating PROTAC-induced\\ntarget ubiquitination. The observed signal was stronger for BRD9 as\\ncompared to BRD7, consistent with the trends observed for VZ185 inducing\\npreferential degradation of BRD9 compared to BRD7 (Figure 10B). Additionally, to confirm\\nthe involvement of VHL in the mechanism of action of VZ185, a competition\\nassay with VHL inhibitor VH298 (ref (62)) was carried out. RI-1 cells were treated with\\n100 μM VH298 30 min before adding VZ185 (100 nM), and the cells\\nwere incubated for 4 h before cell lysis (Figure 10A). As anticipated, pretreatment with VHL\\ninhibitor blocked the degradation activity of VZ185. Moreover, since\\nthe trans stereochemistry of the hydroxyl group of\\nthe hydroxyproline moiety on VHL is essential for the binding to VHL,62,71 RI-1 cells were treated with cisVZ185 (100 nM)\\nas inactive negative control (synthesis detailed in the Supporting Information) for 4 h before harvesting.\\nAs expected, no degradation of BRD7 or BDR9 was observed with cisVZ185 (Figure 10A).

\\n \\n \\n \\n

Mechanistic characterization of VZ185 mode of action.\\n(A) VZ185\\nactivity is proteasome and CRL2VHL-dependent. RI-1 cells\\nwere treated in two replicates with MG132, MLN4924, VH298, and cisVZ185 in the presence of absence of VZ185 (100 nM) at\\ndesired time points before harvesting. (B) NanoBRET experiments in\\nHEK293 cells to monitor ubiquitination of HiBiT endogenously tagged\\nBRD9 (purple) or BRD7 (green) using monoclonal-Ub primary and Alexa594\\nsecondary antibodies at times indicated after treatment with 1 μM\\nVZ185. Error bars expressed as SEM of n = 3 experiments.

\\n \\n \\n
\\n

We next assessed the impact of\\ncompound-induced BRD7/9 degradation\\non the viability of cancer cell lines. EOL-1 (acute myeloid eosinophilic\\nleukemia) and A-204 (malignant rhabdoid tumor) cell lines were chosen\\nbecause they are sensitive to BRD9 inhibition/degradation18,56 and dependent on an active BAF complex,72 respectively. Cellular ATP presence was quantified as signal of\\nmetabolically active cells (Figure 11). VZ185 was cytotoxic in both cell lines, with EC50 of 3 nM (EOL-1) and 40 nM (A-402), and proved to be equipotent\\nto CRBN-based degrader 21 (dBRD9, EC50 of\\n5 and 90 nM, respectively) (Figure 11). Differential cytotoxicity of BRD7/9 degradation\\nby VZ185 over and above BRD7/9 bromodomain inhibition was clearly\\nobserved (EC50 of 90–340 nM and 370–3550\\nnM for compounds 1a and 1b, respectively).\\nThe activity in A-204 cells is of particular relevance as malignant\\nrhabdoid tumors are rare, chemoresistant cancers with poor survival\\nrate (<25%) that are distinctly characterized by biallelic inactivation\\nof SMARCB1, a core subunit of the BAF complex, suggesting specific\\nvulnerabilities.86

\\n \\n \\n \\n

Effect of BRD7/9 degradation\\non viability of BRD9-sensitive cancer\\ncell lines. Cell proliferation activity assessed in EOL-1 (A) and\\nA-204 (B) cell lines after treatment with 1a, 1b, VZ185, 7, 21 (dBRD9), and doxorubicin\\nfor 7 days.

\\n \\n \\n
\\n

Finally, to assess the\\ncellular selectivity of VZ185 for BRD7/9\\ndegradation and identify potential degradation off-targets, multiplexed\\nisobaric tagging mass spectrometry proteomic experiments were performed\\nto monitor protein levels in a quantitative and unbiased manner. RI-1\\ncells were treated in triplicate with DMSO, 100 nM VZ185, or 100 nM cisVZ185 for 4 h. Among 6273 proteins quantified in this\\nanalysis, of those that met the criteria for a statistically significant\\nchange in abundance (p-value y <\\n0.001; fold change {x < −20% U, x > 20%}, Figure 12 and Supporting Information Figures S11 and S12), markedly selective degradation of BRD7 and BRD9\\nwas observed. As expected, BRD7/9 proteins were not depleted by treatment\\nwith negative control cisVZ185 (Supporting Information Figures S11 and S12). Protein levels\\nof other bromodomain-containing proteins or other BAF/PBAF subunits\\nremained unaffected. To confirm selectivity over key potential off-target\\nproteins within the bromodomain protein family, live cell kinetic\\nanalyses of endogenously tagged BRD2/3/4 and SMARCA4 proteins expressing\\nLgBiT were performed (Supporting Information Figure S13). These results together with the proteomic data confirmed\\nVZ185 as an effective and highly selective degrader of BRD7/9 proteins\\nin cells. In vitro PK data further showed high stabilities of VZ185\\nin both plasma and microsomes from both human and mouse species, as\\nwell as high aqueous kinetic solubility (up to ∼100 μM, Table S3). Together, the data qualify VZ185 as\\na novel high-quality degrader probe for cellular and potentially in\\nvivo investigations.

\\n \\n \\n \\n

Impact of VZ185 on the cellular proteome after treatment\\nof RI-1\\ncells with 100 nM compound for 4 h before harvesting. Data are plotted\\nas fold change (%) versus −log10 of p-value (t test) for a total of 6273 proteins, expressed\\nas the mean of the replicates. For quantification, see Experimental Section.

\\n \\n \\n
\\n
\\n
\\n \\n Conclusion\\n

We describe the development of a new series\\nof PROTACs against\\nBRD9, a target thought as not degradable through recruitment of the\\nE3 ligase VHL. In spite of starting from unimpressive degradation\\nprofiles of initial compounds, VHL-based degraders could be optimized\\nby systematically varying the conjugation patterns and monitoring\\ncellular degradation activities and formation of ternary complexes.\\nThroughout the campaign, we revealed important structure–activity\\nrelationships that proved invaluable to guide the optimization search\\nspace and led to significant improvements in degradation activities.\\nWe thoroughly characterize VZ185 as a highly selective, potent, and\\nrapid dual degrader with a slight preference for BRD9 over BRD7. Our\\nfindings thus qualify VZ185 as a new high-quality chemical probe that\\nwill be valuable to explore the biology and therapeutic potential\\nof degrading these two proteins.

\\n

Biophysical and mechanistic\\nstudies suggest that increased ternary\\ncomplex stability correlates with improved degradation profiles. The\\nabsence of positive cooperativity in VZ185 allows much scope for optimizing\\nthe thermodynamics of ternary complex formation, which in turn should\\nwarrant enhanced degradation activities of future compounds.5,11,32 Further investigation of the\\ncontributing factors of single-target selectivity would be important\\nand could also allow rational design of single-target selective degraders,\\nfor example, for BRD7 over BRD9. More generally, this successful campaign\\nexemplifies a broadly applicable approach to arrive at degraders that\\nare effective for any target–ligase pairs, even those that\\nmight have been considered unproductive based on negative studies\\nwith initial compounds. It is thus tempting to speculate that there\\nmay not exist a preferred E3 ligase for “PROTACing”\\na given target protein. Any E3 ligase might, in principle, be hijacked\\nfor productive target ubiquitination and degradation, provided the\\ncombinatorial chemical space is adequately explored.

\\n
\\n \\n Experimental Section\\n \\n Chemistry. Synthesis\\n

Chemicals,\\ncommercially available,\\nwere purchased from Apollo Scientific, Sigma-Aldrich, Fluorochem,\\nor Manchester Organics and used without any further purification.\\nAll reactions were carried out using anhydrous solvents. Analytical\\nthin-layer chromatography (TLC) was performed on precoated TLC plates\\n(layer 0.20 mm silica gel 60 with fluorescent indicator (UV 254: Merck)).\\nThe TLC plates were air-dried and revealed under UV lamp (254/365\\nnm). Flash column chromatography was performed using prepacked silica\\ngel cartridges (230–400 mesh, 40–63 mm; SiliCycle) using\\na Teledyne ISCO Combiflash Companion or Combiflash Retrieve using\\nthe solvent mixtures stated for each synthesis as mobile phase. Liquid\\nchromatography–mass spectrometry (LC–MS) analyses were\\nperformed with either an Agilent HPLC 1100 series connected to a Bruker\\nDaltonics MicroTOF or an Agilent Technologies 1200 series HPLC connected\\nto an Agilent Technologies 6130 quadrupole spectrometer or a Waters\\n2795 connected to a Waters ZQ Micromass spectrometer; all instruments\\nwere connected to a diode array detector. All of the final compounds\\nused in all of the experiments were evaluated after preparative LC–MS\\nseparations with a Waters X-bridge C18 column (50 mm × 2.1 mm\\n× 3.5 mm particle size); flow rate, 0.5 mL/min with a mobile\\nphase of water/MeCN + 0.1% NH4OH or water/MeCN + 0.1% CHOOH;\\n95/5 water/MeCN was initially held for 0.5 min followed by a linear\\ngradient from 95/5 to 5/95 water/MeCN over 3.5 min which was then\\nheld for 2 min. The purity of all the compounds was evaluated using\\nthe analytical LC–MS system described before, and purity was\\n>95%. 1H NMR and 13C NMR spectra were recorded\\non a Bruker Avance II 500 spectrometer (1H at 500.1 MHz, 13C at 125.8 MHz) or on a Bruker DPX-400 spectrometer (1H at 400.1 MHz, 13C at 101 MHz). Chemical shifts\\n(δ) are expressed in ppm reported using residual solvent as\\nthe internal reference in all cases. Signal splitting patterns are\\ndescribed as singlet (s), doublet (d), triplet (t), multiplet (m),\\nor a combination thereof. Coupling constants (J)\\nare quoted to the nearest 0.1 Hz.

\\n
\\n \\n General Method A\\n

To a mixture of aryl bromide (1 equiv)\\nin dioxane (0.2 M), Pd(dppf)Cl2 (0.1 equiv), bis(pinacolato)diboron\\n(1.2 equiv), and KOAc (3 equiv) were added. The mixture was heated\\nunder microwave conditions at 140 °C for 40 min. Then aryl iodide 14 (1 equiv) and a degassed solution of K2CO3 2 M (2 equiv) were added. The reaction mixture was heated\\nin microwave at 120 °C for 30 min. The resulting mixture was\\nfiltered through Celite and washed several times with DCM. The organic\\nphase was washed with H2O and brine, dried over MgSO4, filtered, and evaporated in vacuum. The crude was purified\\nby flash column chromatography using a gradient from 0% to 20% of\\nMeOH in DCM to obtain the desired compound. Then the intermediate\\nwas taken up in a mixture 1:1 HCl 4 N in dioxane/DCM and stirred at\\nrt for 3 h. The solvents were evaporated to dryness to obtain the\\ndesired compound as hydrochloride salt.

\\n
\\n \\n General Method B\\n

To a solution of acid (1 equiv) in\\nDMF (0.2 M), HATU (1 equiv), HOAt (1 equiv), amine (1 equiv), and\\nDIPEA (5 equiv) were added. The reaction mixture was stirred at rt\\nfor 2 h. The solvent was evaporated under reduced pressure to give\\nthe corresponding crude, which was chromatographically purified to\\nyield the final compound.

\\n
\\n \\n General Method C\\n

A mixture of aldehyde (1 equiv), amine\\n(HCl salt, 1.1 equiv), and TEA (1.1 equiv) in DMF (0.2 M) was stirred\\nat rt. After 15 min, NaBH(OAc)3 (1.5 equiv) was added,\\nand the reaction was stirred overnight at rt under nitrogen. The solvent\\nwas evaporated under reduced pressure to give the corresponding crude,\\nwhich was purified accordingly to yield the desired compound.

\\n
\\n \\n General\\nMethod D\\n

To a stirred solution of oxalyl chloride\\n(1.5 equiv) in DCM (0.3 M), DMSO (2 equiv) was added dropwise at −78\\n°C. After 10 min at −78 °C, the alcohol starting\\nmaterial (1 equiv) in DCM (0.3 M) was added. The reaction was stirred\\nat −78 °C for 1 h, TEA (10 equiv) was added dropwise,\\nand temperature was increased to rt. After 1 h, the reaction mixture\\nwas diluted with DCM, washed with a saturated solution of ammonium\\nchloride. The organic phases were combined, washed with brine, dried\\nover MgSO4, filtered, and evaporated to dryness. Then the\\ncrude was dissolved in DMF (0.05 M); 1c (1 equiv) and\\nTEA (1.1 equiv) were added. After 15 min, NaBH(OAc)3 was\\nadded and the reaction mixture was stirred overnight at rt under nitrogen.\\nThe solvent was evaporated under reduced pressure to give the corresponding\\ncrude, which was purified by preparative HPLC to yield the desired\\ncompound.

\\n
\\n \\n General Method E\\n

To a solution of\\nthe alcohol starting\\nmaterial (1 equiv) and trimethylamine (1.5 equiv) in DCM (0.2 M),\\nmethansulfonyl chloride (1.2 equiv) was added at 0 °C. The reaction\\nmixture was stirred at 0 °C for 3 h. The reaction was quenched\\nwith a saturated solution of ammonium chloride and extracted with\\nDCM. The organic phases were combined, dried over MgSO4, filtered, and evaporated to dryness. The crude (1.5 equiv) was\\nsuspended in DMF (0.2 M), and 2bd inhibitor derivative (1 equiv) and K2CO3 (3\\nequiv) were added. The mixture was heated overnight at 70 °C.\\nThe reaction mixture was diluted with water and extracted with DCM.\\nThe organic phases were combined, dried over MgSO4, filtered,\\nand evaporated to dryness. The crude was purified by flash column\\nchromatography using a gradient from 0% to 20% of MeOH in DCM to yield\\nthe desired compound.

\\n
\\n \\n General Method F\\n

A 1 M aqueous solution\\nof HCl (1 mL)\\nwas added to the VHL-acetal linker (0.06 mmol) in THF (1 mL). The\\nreaction mixture was heated at 50 °C for 2 h. The solvent was\\nevaporated under reduced pressure, and the product was extracted with\\nDCM/MeOH (9:1). The organic phases were combined, dried over MgSO4, filtered, and evaporated to dryness. The crude was used\\ndirectly without any further purification.

\\n
\\n \\n General method G\\n

Aldehyde (1 equiv) was taken up in t-BuOH and water\\n(4:1) (0.3 M). Then 2-methyl-2-butene 2\\nM in THF (4 equiv) was added, followed by sodium phosphate dibasic\\n(1 equiv) and sodium chlorite (2 equiv). The reaction mixture was\\nstirred at rt for 4 h. A 1 M aqueous solution of HCl was added. The\\nproduct was extracted with DCM. The organic phases were combined,\\ndried over MgSO4, filtered, and evaporated to dryness.\\nThe crude was used directly without any further purification.

\\n
\\n \\n 4-(3,5-Dimethoxy-4-(piperazin-1-ylmethyl)phenyl)-2-methyl-2,7-naphthyridin-1(2<italic>H</italic>)-one (<bold>1c</bold>)\\n

Following general method\\nA, compound 1c was obtained from compound 12 and 14 as brown powder. Yield: 50 mg, 55%. 1H NMR (400 MHz, MeOD) δ: 9.67 (s, 1H), 8.76 (d, J = 6.9 Hz, 1H), 8.27 (s, 1H), 8.21 (d, J = 6.9 Hz,\\n1H), 6.95 (s, 2H), 4.62 (s, 2H), 4.03 (s, 6H), 3.81 (s, 3H), 3.73\\n(s, 8H). 13C NMR (101 MHz, CDCl3) δ: 161.5,\\n161.4, 148.6, 146.3, 145.5, 141.9, 139.7, 122.9, 117.9, 107.1, 105.8,\\n57.2, 50.8, 49.7, 41.9, 37.9. MS m/z calcd for C22H26N4O3 394.2, found 395.3 [M + H+].

\\n
\\n \\n (2<italic>S</italic>,4<italic>R</italic>)-1-((S)-2-(2-(2-(2-(4-(2,6-Dimethoxy-4-(2-methyl-1-oxo-1,2-dihydro-2,7-naphthyridin-4-yl)benzyl)piperazin-1-yl)ethoxy)ethoxy)acetamido)-3,3-dimethylbutanoyl)-4-hydroxy-<italic>N</italic>-(4-(4-methylthiazol-5-yl)benzyl)pyrrolidine-2-carboxamide\\n(<bold>5</bold>)\\n

Following general method B, compound 5 was obtained from 19 and 2a (synthesized\\naccordingly to literature61). The crude\\nwas purified by HPLC using a gradient of 5% to 95% v/v acetonitrile\\nin 0.1% aqueous solution of formic acid to obtain 5 as\\nwhite powder. Yield: 6.3 mg, 44%. 1H NMR (400 MHz, MeOD)\\nδ: 9.44 (s, 1H), 8.80 (s, 1H), 8.59 (d, J =\\n5.5 Hz, 1H), 7.66 (s, 1H), 7.54 (d, J = 5.9 Hz, 1H),\\n7.37 (q, J = 7.8 Hz, 4H), 6.73 (s, 2H), 4.66 (s,\\n1H), 4.52–4.26 (m, 4H), 4.05–3.95 (m, 4H), 3.86–3.72\\n(m, 8H), 3.69–3.59 (m, 9H), 2.96–2.73 (m, 10H), 2.40\\n(s, 3H), 2.21–2.14 (m, 1H), 2.06–1.97 (m, 1H), 0.99\\n(s, 9H). 13C NMR (101 MHz, MeOD) δ: 174.3, 172.0,\\n171.7, 163.0, 161.0, 152.8, 151.7, 151.2, 149.1, 143.5, 140.3, 139.0,\\n133.3, 131.6, 130.5, 130.4, 129.5, 129.0, 121.7, 119.2, 119.0, 106.6,\\n72.2, 71.3, 71.1, 71.0, 69.1, 60.9, 58.2, 58.1, 57.9, 56.6, 52.8,\\n52.4, 43.7, 39.0, 37.4, 37.2, 27.0, 15.8. HRMS m/z calcd for C50H64N8O9S 952.45, found 953.4728 [M + H+].

\\n
\\n \\n (2<italic>S</italic>,4<italic>R</italic>)-1-((<italic>S</italic>)-2-(<italic>tert</italic>-Butyl)-17-(4-(2,6-dimethoxy-4-(2-methyl-1-oxo-1,2-dihydro-2,7-naphthyridin-4-yl)benzyl)piperazin-1-yl)-4-oxo-6,9,12,15-tetraoxa-3-azaheptadecanoyl)-4-hydroxy-<italic>N</italic>-(4-(4-methylthiazol-5-yl)benzyl)pyrrolidine-2-carboxamide\\n(<bold>6</bold>)\\n

Following general method B, compound 6 was obtained from 20 and 2a (synthesized\\naccordingly to literature61). The crude\\nwas purified by HPLC using a gradient of 5% to 95% v/v acetonitrile\\nin 0.1% aqueous solution of formic acid to obtain 6 as\\nwhite powder. Yield: 4.9 mg, 30%. 1H NMR (400 MHz, MeOD)\\nδ: 9.44 (s, 1H), 8.81 (s, 1H), 8.60 (d, J =\\n5.6 Hz, 1H), 7.67 (s, 1H), 7.54 (d, J = 5.6 Hz, 1H),\\n7.37 (q, J = 9.0 Hz, 4H), 6.73 (s, 2H), 4.63 (s,\\n1H), 4.53–4.26 (m, 4H), 4.02–3.94 (m, 4H), 3.84–3.72\\n(m, 8H), 3.66–3.50 (m, 17H), 2.89–2.67 (m, 10H), 2.41\\n(s, 3H), 2.20–2.14 (m, 1H), 2.06–1.97 (m, 1H), 0.98\\n(s, 9H). 13C NMR (101 MHz, MeOD) δ: 174.4, 172.0,\\n171.7, 163.0, 161.0, 152.9, 151.7, 151.2, 149.1, 143.5, 140.3, 139.0,\\n138.6, 133.4, 131.5, 130.5, 130.4, 129.5, 129.0, 121.7, 119.2, 119.1,\\n106.6, 72.3, 71.7, 71.6, 71.5, 71.4, 71.1, 71.0, 68.9, 60.9, 58.2,\\n58.0, 56.6, 52.8, 43.7, 39.0, 37.4, 37.1, 27.0, 15.9. HRMS m/z calcd for C54H72N8O11S 1040.50, found 1041.5287 [M + H+].

\\n
\\n \\n 2-(2-(2-(4-(2,6-Dimethoxy-4-(2-methyl-1-oxo-1,2-dihydro-2,7-naphthyridin-4-yl)benzyl)piperazin-1-yl)ethoxy)ethoxy)-<italic>N</italic>-(2-((2-(2,6-dioxopiperidin-3-yl)-1,3-dioxoisoindolin-4-yl)amino)ethyl)acetamide\\n(<bold>7</bold>)\\n

Following general method B, compound 7 was obtained from compound 19 and 3a (synthesized accordingly to literature73). The crude was purified by HPLC using a gradient of 5% to 95% v/v\\nacetonitrile in 0.1% aqueous solution of formic acid to obtain compound 7 as yellow powder. Yield: 5.6 mg, 33%. 1H NMR\\n(400 MHz, MeOD) δ: 9.54 (d, J = 0.8 Hz, 1H),\\n8.70 (d, J = 6.0 Hz, 1H), 8.11 (s, 1NH), 7.84 (s,\\n1H), 7.73 (dd, J = 0.6, 6.0 Hz, 1H), 7.55–7.49\\n(m, 1H), 7.10–7.03 (m, 2H), 6.87 (s, 2H), 5.08 (dd, J = 5.5, 12.7 Hz, 1H), 4.38 (s, 2H), 4.05 (s, 2H), 3.96\\n(s, 6H), 3.77–3.67 (m, 9H), 3.51–3.46 (m, 4H), 3.39\\n(s, 4H), 3.20 (s, 4H), 3.01 (t, J = 4.8 Hz, 2H),\\n2.94–2.67 (m, 4H). 13C NMR (101 MHz, MeOD) δ:\\n174.6, 173.4, 171.6, 170.6, 169.1, 162.7, 161.1, 150.9, 149.8, 147.9,\\n144.0, 140.1, 137.2, 133.9, 121.8, 119.6, 118.5, 117.9, 112.2, 111.4,\\n106.7, 71.7, 71.3, 71.0, 67.7, 57.5, 56.8, 51.8, 51.1, 50.2, 50.0,\\n42.6, 39.4, 37.5, 32.2, 23.8. HRMS m/z calcd for C43H50N8O10 838.36, found 839.3796 [M + H+].

\\n
\\n \\n 14-(4-(2,6-Dimethoxy-4-(2-methyl-1-oxo-1,2-dihydro-2,7-naphthyridin-4-yl)benzyl)piperazin-1-yl)-<italic>N</italic>-(2-((2-(2,6-dioxopiperidin-3-yl)-1,3-dioxoisoindolin-4-yl)amino)ethyl)-3,6,9,12-tetraoxatetradecanamide\\n(<bold>8</bold>)\\n

Following general method B, compound 8 was obtained from compound 20 and 3a (synthesized accordingly to literature73). The crude was purified by HPLC using a gradient of 5% to 95% v/v\\nacetonitrile in 0.1% aqueous solution of formic acid to obtain compound 8 as yellow powder. Yield: 10 mg, 54%. 1H NMR (400\\nMHz, MeOD) δ: 9.53 (s, 1H), 8.70 (d, J = 5.7\\nHz, 1H), 8.15 (s, 1NH), 7.77 (s, 1H), 7.64 (d, J =\\n5.7 Hz, 1H), 7.59–7.53 (m, 1H), 7.17–7.13 (m, 1H), 7.08–7.04\\n(m, 1H), 6.86 (s, 2H), 5.07 (dd, J = 5.5, 12.5 Hz,\\n1H), 4.29 (s, 2H), 4.01 (s, 2H), 3.96 (s, 6H), 3.72–3.63 (m,\\n17H), 3.54 (s, 4H), 3.25 (s, 4H), 3.02 (s, 4H), 2.94–2.67 (m,\\n6H). 13C NMR (101 MHz, MeOD) δ: 174.6, 173.5, 171.5,\\n170.6, 169.2, 163.0, 161.0, 151.7, 151.2, 148.0, 143.4, 139.8, 139.2,\\n137.3, 133.9, 121.7, 119.1, 118.7, 118.1, 112.1, 111.4, 108.1, 106.7,\\n72.0, 71.4, 71.1, 68.5, 57.6, 56.8, 52.4, 51.6, 50.2, 49.9, 42.5,\\n39.4, 37.5, 32.2, 23.8. HRMS m/z calcd for C47H58N8O12 926.42, found 927.4396 [M + H+].

\\n
\\n \\n <italic>N</italic>-(4-(<italic>N</italic>-(3-Chloro-1<italic>H</italic>-indol-7-yl)sulfamoyl)benzyl)-2-(2-(2-(4-(2,6-dimethoxy-4-(2-methyl-1-oxo-1,2-dihydro-2,7-naphthyridin-4-yl)benzyl)piperazin-1-yl)ethoxy)ethoxy)acetamide\\n(<bold>9</bold>)\\n

Following general method B, compound 9 was obtained from compound 19 and 4a (synthesis detailed in the Supporting Information). The crude was purified by HPLC using a gradient of 5% to 95% v/v\\nacetonitrile in 0.1% aqueous solution of formic acid to obtain compound 9 as white powder. Yield: 10.8 mg, 34%. 1H NMR\\n(400 MHz, MeOD) δ: 9.54 (s, 1H), 8.69 (d, J = 5.8 Hz, 1H), 8.27 (s, 1NH), 7.75 (s, 1H), 7.68–7.62 (m,\\n3H), 7.39 (d, J = 8.3 Hz, 2H), 7.33 (dd, J = 0.9, 8.1 Hz, 1H), 7.26 (s, 1H), 6.91 (t, J = 7.8 Hz, 1H), 6.85 (s, 2H), 6.70 (d, J = 7.7 Hz,\\n1H), 4.49 (s, 2H), 4.28 (s, 2H), 4.11 (s, 2H), 3.94 (s, 6H), 3.76–3.66\\n(m, 7H), 3.63 (t, J = 5.3 Hz, 2H), 3.22 (s, 4H),\\n2.88 (s, 4H), 2.73 (t, J = 5.1 Hz, 2H). 13C NMR (101 MHz, MeOD) δ: 173.0, 166.4, 163.0, 161.0, 151.7,\\n151.2, 145.5, 143.3, 140.0, 139.4, 139.1, 132.0, 128.8, 128.7, 128.2,\\n123.4, 122.7, 121.6, 120.9, 119.4, 119.1, 118.8, 117.0, 107.5, 106.7,\\n106.2, 71.9, 71.4, 71.3, 68.7, 57.6, 56.8, 52.5, 51.3, 49.9, 43.0,\\n37.5. HRMS m/z calcd for C43H48ClN7O8S 857.30, found 858.3111\\n[M + H+].

\\n
\\n \\n <italic>N</italic>-(4-(<italic>N</italic>-(3-Chloro-1<italic>H</italic>-indol-7-yl)sulfamoyl)benzyl)-14-(4-(2,6-dimethoxy-4-(2-methyl-1-oxo-1,2-dihydro-2,7-naphthyridin-4-yl)benzyl)piperazin-1-yl)-3,6,9,12-tetraoxatetradecanamide\\n(<bold>10</bold>)\\n

Following general method B, compound 10 was obtained from compound 20 and 4a (synthesis detailed in the Supporting Information). The crude was purified by HPLC using a gradient of 5% to 95% v/v\\nacetonitrile in 0.1% aqueous solution of formic acid to obtain compound 10 as white powder. Yield: 11.1 mg, 37%. 1H NMR\\n(400 MHz, MeOD) δ: 9.54 (d, J = 0.6 Hz, 1H),\\n8.69 (d, J = 5.7 Hz, 1H), 8.30 (s, 1NH), 7.75 (s,\\n1H), 7.68–7.62 (m, 3H), 7.41 (d, J = 8.2 Hz,\\n2H), 7.34 (dd, J = 0.8, 8.1 Hz, 1H), 7.27 (s, 1H),\\n6.92 (t, J = 7.8 Hz, 1H), 6.84 (s, 2H), 6.72 (dd, J = 0.9, 7.5 Hz, 1H), 4.50 (s, 2H), 4.26 (s, 2H), 4.09 (s,\\n2H), 3.94 (s, 6H), 3.73–3.67 (m, 7H), 3.65–3.59 (m,\\n4H), 3.58–3.53 (m, 6H), 3.22 (s, 4H), 2.96 (s, 4H), 2.82 (t, J = 5.3 Hz, 2H). 13C NMR (101 MHz, MeOD) δ:\\n173.1, 166.7, 163.1, 161.0, 151.7, 151.2, 145.5, 143.4, 139.7, 139.2,\\n139.0, 131.9, 128.9, 128.6, 128.2, 123.4, 122.7, 121.6, 121.0, 119.3,\\n119.2, 118.9, 117.0, 108.0, 106.7, 106.2, 72.0, 71.3, 71.3, 71.2,\\n68.3, 57.5, 56.8, 52.3, 51.5, 49.9, 42.9, 37.6. HRMS m/z calcd for C47H56ClN7O10S 945.35, found 946.3676 [M + H+].

\\n
\\n \\n <italic>tert</italic>-Butyl 4-(4-Bromo-2,6-dimethoxybenzyl)piperazine-1-carboxylate\\n(<bold>12</bold>)\\n

Following general method C, compound 12 was obtained from 4-bromo-2,6-dimethoxybenzaldehyde\\n(11) and boc-piperazine (both commercially available).\\nThe reaction was quenched with saturated solution of NaHCO3, extracted with DCM, washed with water and brine. The organic phases\\nwere combined, dried over MgSO4, filtered, and evaporated\\nto dryness to give the desired compound without any further purification\\nas sticky oil. Yield: 495 mg, 97%. 1H NMR (500 MHz, CDCl3) δ: 6.69 (s, 2H), 3.78 (s, 6H), 3.62 (s, 2H), 3.38\\n(t, J = 5.0 Hz, 4H), 2.41 (t, J =\\n4.4 Hz, 4H), 1.43 (s, 9H). 13C NMR (125 MHz, CDCl3) δ: 159.9, 154.7, 122.8, 107.7, 79.8, 56.1, 51.8, 48.5, 31.0,\\n28.5. MS m/z calcd for C18H27BrN2O4 414.12, found 415.2 [M\\n+ H+].

\\n
\\n \\n 4-Iodo-2-methyl-2,7-naphthyridin-1(2<italic>H</italic>)-one\\n(<bold>14</bold>)\\n

A mixture of 4-iodo-2,7-naphthyridin-1(2H)-one 13 (synthesized accordingly to literature74) (1 equiv) and NaH (2 equiv) was stirred 30\\nmin at 0 °C in DMF (0.2 M). Then CH3I (1.6 equiv)\\nwas added and the reaction mixture was stirred at 0 °C for 5\\nh. Water was added, and the precipitate formed was filtered and dried\\nin vacuum. Yield: 300 mg, 95%. 1H NMR (400 MHz, DMSO) δ:\\n9.27 (s, 1H), 8.82 (d, J = 5.6 Hz, 1H), 8.26 (s,\\n1H), 7.47 (d, J = 5.5 Hz, 1H), 3.52 (s,3H). 13C NMR (101 MHz, DMSO) δ: 160.3, 152.0, 150.3, 144.8,\\n143.0, 122.4, 120.7, 67.9, 36.2. MS m/z calcd for C9H7IN2O 285.96, found\\n287.1 [M + H+].

\\n
\\n \\n <italic>tert</italic>-Butyl\\n2-(2-(2-(4-(2,6-Dimethoxy-4-(2-methyl-1-oxo-1,2-dihydro-2,7-naphthyridin-4-yl)benzyl)piperazin-1-yl)ethoxy)ethoxy)acetate\\n(<bold>17</bold>)\\n

Following general method D, compound 17 was obtained from tert-butyl 2-(2-(2-hydroxyethoxy)ethoxy)acetate 15 and 1c after purification by HPLC using a\\ngradient of 5% to 95% v/v acetonitrile in 0.1% aqueous solution of\\nammonia as white powder. Yield: 8.8 mg, 32%. 1H NMR (500\\nMHz, CDCl3) δ: 9.69 (d, J = 0.8\\nHz, 1H), 8.70 (d, J = 5.7 Hz, 1H), 7.43 (dd, J = 0.8, 5.6 Hz, 1H), 7.26 (s, 1H), 6.52 (s, 2H), 4.00 (s,\\n2H), 3.81 (s, 6H), 3.70–3.60 (m, 11H), 2.65–2.56 (m,\\n10H), 1.46 (s, 9H). 13C NMR (125 MHz, CDCl3)\\nδ: 170.0, 161.8, 160.0, 152.0, 151.3, 142.1, 136.1, 135.5, 120.8,\\n118.4, 117.8, 113.9, 105.7, 81.9, 71.0, 70.7, 69.3, 58.1, 56.2, 53.7,\\n52.6, 48.9, 37.4, 28.4. MS m/z calcd\\nfor C32H44N4O7 596.32,\\nfound 597.34 [M + H+].

\\n
\\n \\n <italic>tert</italic>-Butyl\\n14-(4-(2,6-Dimethoxy-4-(2-methyl-1-oxo-1,2-dihydro-2,7-naphthyridin-4-yl)benzyl)piperazin-1-yl)-3,6,9,12-tetraoxatetradecanoate\\n(<bold>18</bold>)\\n

Following general method D, compound 18 was obtained from tert-butyl 14-hydroxy-3,6,9,12-tetraoxatetradecanoate 16 and 1c after purification by HPLC using a\\ngradient of 5% to 95% v/v acetonitrile in 0.1% aqueous solution of\\nammonia as white powder. Yield: 10.7 mg, 34%. 1H NMR (500\\nMHz, CDCl3) δ: 9.69 (d, J = 0.8\\nHz, 1H), 8.70 (d, J = 5.6 Hz, 1H), 7.43 (d, J = 5.6 Hz, 1H), 7.26 (s, 1H), 6.52 (s, 2H), 4.00 (s, 2H),\\n3.81 (s, 6H), 3.73–3.57 (m, 19H), 2.67–2.55 (m, 10H),\\n1.46 (s, 9H). 13C NMR (125 MHz, CDCl3) δ:\\n170.0, 161.8, 160.0, 152.0, 151.3, 142.1, 136.2, 120.8, 118.4, 117.8,\\n105.7, 81.9, 71.1, 70.9, 70.7, 69.4, 69.2, 58.0, 56.3, 53.8, 52.4,\\n48.9, 37.5, 28.5. MS m/z calcd for\\nC36H52N4O9 684.37, found\\n685.39 [M + H+].

\\n
\\n \\n 2-(2-(2-(4-(2,6-Dimethoxy-4-(2-methyl-1-oxo-1,2-dihydro-2,7-naphthyridin-4-yl)benzyl)piperazin-1-yl)ethoxy)ethoxy)acetic\\nAcid (<bold>19</bold>)\\n

A mixture of compound 17 (0.015 mmol), TFA (0.5 mL), and DCM (0.5 mL) was stirred at rt for\\n3 h. Then the solvent was evaporated; the crude was dried under high\\npressure overnight and used directly in the next step without any\\nfurther purification. Quantitative yield. MS m/z calcd for C28H36N4O7 540.26, found 541.4 [M + H+].

\\n
\\n \\n 17-(4-(2,6-Dimethoxy-4-(2-methyl-1-oxo-1,2-dihydro-2,7-naphthyridin-4-yl)benzyl)piperazin-1-yl)-3,6,9,12,15-pentaoxaheptadecanoic\\nAcid (<bold>20</bold>)\\n

A mixture of compound 18 (0.034 mmol), TFA (0.5 mL), and DCM (0.5 mL) was stirred at rt for\\n3 h. Then the solvent was evaporated; the crude was dried under high\\npressure overnight and used directly without any further purification.\\nQuantitative yield. MS m/z calcd\\nfor C34H48N4O10 672.34,\\nfound 673.36 [M + H+].

\\n
\\n \\n (2<italic>R</italic>,4<italic>S</italic>)-1-((<italic>R</italic>)-2-(2-(2-((5-(4-(2,6-Dimethoxy-4-(2-methyl-1-oxo-1,2-dihydro-2,7-naphthyridin-4-yl)benzyl)piperazin-1-yl)pentyl)oxy)ethoxy)acetamido)-3,3-dimethylbutanoyl)-4-hydroxy-<italic>N</italic>-(4-(4-methylthiazol-5-yl)benzyl)pyrrolidine-2-carboxamide\\n(<bold>23</bold>)\\n

A mixture of 35 (1 equiv),\\nosmium tetroxide 4% in H2O (0.2 equiv), sodium periodate\\n(4 equiv), pyridine (2 equiv) in dioxane/H2O (3:1) was\\nstirred at rt for 48 h. Then H2O was added to the reaction\\nand the product was extracted with DCM. The organic phases were combined,\\ndried over MgSO4, filtered, and evaporated to dryness.\\nThe crude was dissolved in DCE, and a mixture of 1c (1\\nequiv) and TEA (1.1 equiv) in DCE (0.02 M) was added. After 15 min,\\nNaBH(OAc)3 was added and the reaction mixture was stirred\\nat rt for 4 h under nitrogen. The solvent was evaporated under reduced\\npressure to give the corresponding crude, which was purified by HPLC\\nusing a gradient of 5% to 95% v/v acetonitrile in 0.1% aqueous solution\\nof ammonia. Compound 23 was obtained as a white powder.\\nYield: 6.9 mg, 54%. 1H NMR (400 MHz, CDCl3)\\nδ: 9.68 (s, 1H), 8.69 (d, J = 5.6 Hz, 1H),\\n8.66 (s, 1H), 7.41 (dd, J = 0.6, 5.6 Hz, 1H), 7.37–7.32\\n(m, 4H), 7.27 (s, 1H), 6.53 (s, 2H), 4.72 (t, J =\\n8.0 Hz, 1H), 4.59–4.49 (m, 3H), 4.35–4.29 (m, 1H), 4.07–3.95\\n(m, 3H), 3.85–3.80 (m, 8H), 3.67–3.55 (m, 8H), 3.43\\n(t, J = 6.4 Hz, 2H), 2.74–2.37 (m, 14H), 2.15–2.09\\n(m, 1H), 1.60–1.47 (m, 4H), 1.36–1.27 (m, 2H), 0.94\\n(s, 9H). 13C NMR (101 MHz, CDCl3) δ: 171.5,\\n170.9, 170.5, 168.6, 161.6, 159.8, 151.8, 151.1, 150.4, 148.6, 141.9,\\n138.3, 136.0, 131.7, 131.1, 129.6, 128.3, 120.6, 118.1, 117.6, 105.5,\\n71.4, 71.3, 70.6, 70.1, 58.6, 58.2, 57.2, 56.9, 56.1, 52.5, 51.7,\\n48.6, 43.4, 37.3, 36.1, 35.2, 29.4, 26.6, 26.0, 24.2, 16.2. HRMS m/z calcd for C53H70N8O9S 994.50, found 995.5178 [M + H+].

\\n
\\n \\n (2<italic>S</italic>,4<italic>R</italic>)-<italic>N</italic>-(2-(2-(2-(2-(4-(2,6-Dimethoxy-4-(2-methyl-1-oxo-1,2-dihydro-2,7-naphthyridin-4-yl)benzyl)piperazin-1-yl)ethoxy)ethoxy)ethoxy)-4-(4-methylthiazol-5-yl)benzyl)-1-((<italic>S</italic>)-2-(1-fluorocyclopropane-1-carboxamido)-3,3-dimethylbutanoyl)-4-hydroxypyrrolidine-2-carboxamide\\n(<bold>26</bold>)\\n

A mixture of 40 (1 equiv),\\nosmium tetroxide 4% in H2O (0.2 equiv), sodium periodate\\n(4 equiv), pyridine (2 equiv) in dioxane/H2O (3:1) was\\nstirred at rt for 48 h. Then H2O was added to the reaction\\nand the product was extracted with DCM. The organic phases were combined,\\ndried over MgSO4, filtered, and evaporated to dryness.\\nThen, following general method A, compound 26 was synthesized\\nfrom the aldehyde derivative and 1c. The solvent was\\nremoved in vacuum to give the corresponding crude, which was purified\\nby HPLC using a gradient of 5% to 95% v/v acetonitrile in 0.1% aqueous\\nsolution of formic acid to yield compound 26 as white\\npowder. Yield: 7 mg, 45%. 1H NMR (400 MHz, MeOD) δ:\\n9.54 (s, 1H), 8.90 (s, 1H), 8.70 (d, J = 5.8 Hz,\\n1H), 8.58 (s, 1NH), 7.75 (s, 1H), 7.63 (dd, J = 0.6,\\n5.7 Hz, 1H), 7.51 (d, J = 7.8 Hz, 1H), 7.10–7.04\\n(m, 2H), 6.79 (s, 2H), 4.78 (s, 1H), 4.66 (t, J =\\n8.4 Hz, 1H), 4.55–4.42 (m, 3H), 4.32–4.23 (m, 2H), 3.97–3.77\\n(m, 14H), 3.73–3.66 (m, 7H), 2.85–2.68 (m, 10H), 2.52\\n(s, 3H), 2.30–2.24 (m, 1H), 2.16–2.09 (m, 1H), 1.46–1.27\\n(m, 4H), 1.07 (s, 9H). 13C NMR (101 MHz, MeOD) δ:\\n174.2, 171.7, 171.5, 171.3, 170.2, 163.0, 161.0, 158.0, 152.8, 151.7,\\n151.2, 149.1, 143.6, 138.9, 138.1, 133.5, 132.9, 130.0, 128.4, 122.9,\\n121.7, 119.2, 113.8, 106.5, 80.3, 78.0, 71.8, 71.4, 71.0, 70.8, 69.4,\\n69.3, 60.8, 58.7, 58.3, 58.2, 56.5, 53.3, 53.0, 39.5, 39.0, 37.4,\\n37.3, 26.9, 16.0, 14.1, 14.0, 13.9. MS m/z calcd for C54H69FN8O10S 1040.48, found 1041.4430 [M + H+].

\\n
\\n \\n (2<italic>S</italic>,4<italic>R</italic>)-1-((<italic>S</italic>)-2-(1-Cyanocyclopropane-1-carboxamido)-3,3-dimethylbutanoyl)-<italic>N</italic>-(2-(2-(2-(2-(4-(2,6-dimethoxy-4-(2-methyl-1-oxo-1,2-dihydro-2,7-naphthyridin-4-yl)benzyl)piperazin-1-yl)ethoxy)ethoxy)ethoxy)-4-(4-methylthiazol-5-yl)benzyl)-4-hydroxypyrrolidine-2-carboxamide\\n(<bold>27</bold>)\\n

A mixture of 42 (1 equiv),\\nosmium tetroxide 4% in H2O (0.2 equiv), sodium periodate\\n(4 equiv), pyridine (2 equiv) in dioxane/H2O (3:1) was\\nstirred at rt for 48 h. Then H2O was added to the reaction\\nand the product was extracted with DCM. The organic phases were combined,\\ndried over MgSO4, filtered, and evaporated to dryness.\\nThen, following general method A, from the aldehyde derivative and 1c compound 27 was obtained after purification\\nby HPLC using a gradient of 5% to 95% v/v acetonitrile in 0.1% aqueous\\nsolution of formic acid as white powder. Yield: 11 mg, 44%. 1H NMR (400 MHz, MeOD) δ: 9.55 (s, 1H), 8.90 (s, 1H), 8.69 (d, J = 5.8 Hz, 1H), 8.58 (s, 1NH), 7.75 (s, 1H), 7.63 (d, J = 5.6 Hz, 1H), 7.50 (d, J = 7.7 Hz, 1H),\\n7.10–7.03 (m, 2H), 6.79 (s, 2H), 4.71–4.63 (m, 2H),\\n4.56–4.42 (m, 3H), 4.33–4.23 (m, 2H), 3.98–3.66\\n(m, 21H), 2.86–2.69 (m, 10H), 2.52 (s, 3H), 2.30–2.23\\n(m, 1H), 2.16–2.08 (m, 1H), 1.70–1.55 (m, 4H), 1.06\\n(s, 9H). 13C NMR (101 MHz, MeOD) δ: 174.1, 171.5,\\n170.1, 167.1, 163.0, 161.0, 158.1, 152.8, 151.7, 151.2, 149.1, 143.5,\\n138.9, 138.1, 133.4, 132.9, 130.1, 128.4, 122.8, 121.7, 120.8, 119.2,\\n119.2, 113.8, 106.5, 71.8, 71.4, 71.0, 70.8, 69.4, 69.2, 60.8, 59.5,\\n58.3, 58.1, 56.5, 53.2, 53.0, 39.5, 38.9, 37.7, 37.4, 26.8, 18.1,\\n18.0, 16.0, 14.8. HRMS m/z calcd\\nfor C55H69N9O10S 1047.49,\\nfound 1048.4493 [M + H+].

\\n
\\n \\n (2<italic>S</italic>,4<italic>R</italic>)-1-((S)-2-Acetamido-3,3-dimethylbutanoyl)-<italic>N</italic>-(2-(2-(2-(2-(4-(2,6-dimethoxy-4-(2-methyl-1-oxo-1,2-dihydro-2,7-naphthyridin-4-yl)benzyl)piperazin-1-yl)ethoxy)ethoxy)ethoxy)-4-(4-methylthiazol-5-yl)benzyl)-4-hydroxypyrrolidine-2-carboxamide\\n(<bold>28</bold>)\\n

A mixture of 44 (1 equiv),\\nosmium tetroxide 4% in H2O (0.2 equiv), sodium periodate\\n(4 equiv), pyridine (2 equiv) in dioxane/H2O (3:1) was\\nstirred at rt for 48 h. Then H2O was added to the reaction\\nand the product was extracted with DCM. The organic phases were combined,\\ndried over MgSO4, filtered, and evaporated to dryness.\\nThen, following general method A, from the aldehyde derivative and 1c compound 28 was obtained after purification\\nby HPLC using a gradient of 5% to 95% v/v acetonitrile in 0.1% aqueous\\nsolution of formic acid as white powder. Yield: 3.3 mg, 17%. 1H NMR (400 MHz, MeOD) δ: 9.55 (d, J = 0.7 Hz, 1H), 8.90 (s, 1H), 8.70 (d, J = 5.9 Hz,\\n1H), 7.76 (s, 1H), 7.64 (dd, J = 0.7, 5.9 Hz, 1H),\\n7.52 (d, J = 7.7 Hz, 1H), 7.09 (d, J = 1.5 Hz, 1H), 7.03 (dd, J = 1.7, 7.7 Hz, 1H),\\n6.79 (s, 2H), 4.65–4.60 (m, 2H), 4.54–4.42 (m, 3H),\\n4.28–4.25 (m, 2H), 3.96–3.65 (m, 21H), 2.86–2.67\\n(m, 10H), 2.52 (s, 3H), 2.27–2.21 (m, 1H), 2.15–2.08\\n(m, 1H), 2.04 (s, 3H), 1.05 (s, 9H). 13C NMR (101 MHz,\\nMeOD) δ: 174.4, 173.1, 172.3, 163.1, 161.0, 158.0, 152.8, 151.7,\\n151.2, 149.1, 143.6, 138.9, 133.5, 132.9, 130.0, 128.4, 122.8, 121.7,\\n119.2, 113.7, 106.5, 71.8, 71.4, 71.1, 70.8, 69.4, 69.2, 60.7, 59.2,\\n58.2, 58.0, 56.5, 53.2, 53.0, 49.8, 39.4, 38.9, 37.4, 36.5, 27.0,\\n22.3, 16.0. HRMS m/z calcd for C52H68N8O10S 996.48, found\\n997.5008 [M + H+].

\\n
\\n \\n (2<italic>S</italic>,4<italic>R</italic>)-<italic>N</italic>-(2-((14-(4-(2,6-Dimethoxy-4-(2-methyl-1-oxo-1,2-dihydro-2,7-naphthyridin-4-yl)benzyl)piperazin-1-yl)-3,6,9,12-tetraoxatetradecyl)oxy)-4-(4-methylthiazol-5-yl)benzyl)-1-((<italic>S</italic>)-2-(1-fluorocyclopropane-1-carboxamido)-3,3-dimethylbutanoyl)-4-hydroxypyrrolidine-2-carboxamide\\n(<bold>29</bold>)\\n

A mixture of 41 (1 equiv),\\nosmium tetroxide 4% in H2O (0.2 equiv), sodium periodate\\n(4 equiv), pyridine (2 equiv) in dioxane/H2O (3:1) was\\nstirred at rt for 48 h. Then H2O was added to the reaction\\nand the product was extracted with DCM. The organic phases were combined,\\ndried over MgSO4, filtered, and evaporated to dryness.\\nThen, following general method A, from the aldehyde derivative and 1c compound 29 was obtained after purification\\nby HPLC using a gradient of 5% to 95% v/v acetonitrile in 0.1% aqueous\\nsolution of ammonia as white powder. Yield: 9.5 mg, 46%. 1H NMR (400 MHz, MeOD) δ: 9.54 (s, 1H), 8.90 (s, 1H), 8.70 (d, J = 5.8 Hz, 1H), 7.75 (s, 1H), 7.64 (dd, J = 0.6, 5.9 Hz, 1H), 7.51 (d, J = 7.6 Hz, 1H), 7.10–7.03\\n(m, 2H), 6.77 (s, 2H), 4.78 (s, 1H), 4.69–4.63 (m, 1H), 4.55–4.42\\n(m, 3H), 4.31–4.23 (m, 2H), 3.97–3.57 (m, 29H), 2.71–2.60\\n(m, 10H), 2.52 (s, 3H), 2.30–2.24 (m, 1H), 2.17–2.08\\n(m, 1H), 1.43–1.29 (m, 4H), 1.07 (s, 9H). 13C NMR\\n(101 MHz, MeOD) δ: 174.2, 171.6, 171.3, 163.0, 161.0, 158.0,\\n152.8, 151.7, 151.2, 149.1, 143.6, 138.8, 137.3, 133.5, 132.9, 130.0,\\n128.4, 122.8, 121.7, 119.4, 119.3, 113.8, 113.2, 106.5, 80.3, 78.0,\\n73.7, 71.8, 71.6, 71.5, 71.4, 71.0, 70.8, 69.6, 69.4, 62.2, 60.8,\\n58.7, 58.6, 58.2, 56.3, 54.0, 53.3, 39.5, 38.9, 37.4, 37.3, 26.9,\\n16.0, 14.1, 14.0, 13.9. HRMS m/z calcd for C58H77FN8O12S 1128.54, found 1129.5445 [M + H+].

\\n
\\n \\n (2<italic>S</italic>,4<italic>R</italic>)-1-((<italic>S</italic>)-2-(1-Cyanocyclopropane-1-carboxamido)-3,3-dimethylbutanoyl)-<italic>N</italic>-(2-((14-(4-(2,6-dimethoxy-4-(2-methyl-1-oxo-1,2-dihydro-2,7-naphthyridin-4-yl)benzyl)piperazin-1-yl)-3,6,9,12-tetraoxatetradecyl)oxy)-4-(4-methylthiazol-5-yl)benzyl)-4-hydroxypyrrolidine-2-carboxamide\\n(<bold>30</bold>)\\n

A mixture of 43 (1 equiv),\\nosmium tetroxide 4% in H2O (0.2 equiv), sodium periodate\\n(4 equiv), pyridine (2 equiv) in dioxane/H2O (3:1) was\\nstirred at rt for 48 h. Then H2O was added to the reaction\\nand the product was extracted with DCM. The organic phases were combined,\\ndried over MgSO4, filtered, and evaporated to dryness.\\nThen, following general method A, from the aldehyde derivative and 1c compound 30 was obtained after purification\\nby HPLC using a gradient of 5% to 95% v/v acetonitrile in 0.1% aqueous\\nsolution of ammonia as white powder. Yield: 9 mg, 39%. 1H NMR (400 MHz, MeOD) δ: 9.55 (d, J = 0.7\\nHz, 1H), 8.89 (s, 1H), 8.70 (d, J = 5.9 Hz, 1H),\\n7.74 (s, 1H), 7.64 (dd, J = 0.7, 5.8 Hz, 1H), 7.49\\n(d, J = 7.7 Hz, 1H), 7.09–7.02 (m, 2H), 6.76\\n(s, 2H), 4.69–4.63 (m, 2H), 4.55–4.42 (m, 3H), 4.34–4.23\\n(m, 2H), 3.95 (t, J = 4.5 Hz, 2H), 3.89 (s, 6H),\\n3.84–3.75 (m, 6H), 3.73–3.70 (m, 5H), 3.69–3.58\\n(m, 9H), 2.68–2.56 (m, 10H), 2.52 (s, 3H), 2.32–2.22\\n(m, 1H), 2.17–2.09 (m, 1H), 1.71–1.55 (m, 4H), 1.06\\n(s, 9H). 13C NMR (101 MHz, MeOD) δ: 174.1, 171.5,\\n167.2, 163.1, 161.0, 158.1, 152.8, 151.7, 151.2, 149.2, 143.7, 138.8,\\n137.2, 133.5, 133.0, 130.2, 128.4, 122.8, 121.7, 120.7, 119.5, 119.3,\\n113.9, 113.7, 106.5, 71.8, 71.6, 71.6, 71.4, 71.1, 70.9, 69.7, 69.4,\\n60.8, 59.5, 58.7, 58.1, 56.3, 54.2, 53.4, 39.6, 38.9, 37.4, 37.3,\\n26.8, 18.1, 18.0, 16.0, 14.9. HRMS m/z calcd for C59H77N9O12S 1035.54, found 1036.5169 [M + H+].

\\n
\\n \\n 14-(4-(2,6-Dimethoxy-4-(2-methyl-1-oxo-1,2-dihydro-2,7-naphthyridin-4-yl)benzyl)piperazin-1-yl)-<italic>N</italic>-(2-((2-(2,6-dioxopiperidin-3-yl)-1,3-dioxoisoindolin-4-yl)amino)ethyl)-3,6,9,12-tetraoxatetradecanamide\\n(<bold>31</bold>)\\n

A mixture of 45 (1 equiv),\\nosmium tetroxide 4% in H2O (0.2 equiv), sodium periodate\\n(4 equiv), pyridine (2 equiv) in dioxane/H2O (3:1) was\\nstirred at rt for 48 h. Then H2O was added to the reaction\\nand the product was extracted with DCM. The organic phases were combined,\\ndried over MgSO4, filtered, and evaporated to dryness.\\nThen, following general method A, from the aldehyde derivative and 1c compound 31 was obtained after purification\\nby HPLC using a gradient of 5% to 95% v/v acetonitrile in 0.1% aqueous\\nsolution of formic acid as white powder. Yield: 3.7 mg, 17%. 1H NMR (400 MHz, MeOD) δ: 9.55 (d, J = 0.7 Hz, 1H), 8.90 (s, 1H), 8.70 (d, J = 5.8 Hz,\\n1H), 7.76 (s, 1H), 7.64 (dd, J = 0.6, 5.8 Hz, 1H),\\n7.52 (d, J = 7.7 Hz, 1H), 7.08–7.01 (m, 2H),\\n6.81 (s, 2H), 4.65–4.60 (m, 2H), 4.53–4.41 (m, 3H),\\n4.27–4.25 (m, 2H), 4.02–3.61 (m, 29H), 2.96–2.76\\n(m, 10H), 2.51 (s, 3H), 2.27–2.21 (m, 1H), 2.15–2.08\\n(m, 1H), 2.04 (s, 3H), 1.06 (s, 9H). 13C NMR (101 MHz,\\nMeOD) δ: 174.4, 173.1, 172.3, 163.0, 161.0, 158.0, 152.8, 151.8,\\n151.3, 151.2, 149.1, 143.5, 139.0, 133.5, 132.8, 130.0, 128.4, 122.8,\\n121.7, 119.2, 119.1, 113.7, 106.6, 71.9, 71.6, 71.5, 71.4, 71.1, 70.9,\\n69.4, 60.7, 59.2, 58.1, 58.0, 56.6, 52.8, 49.8, 39.4, 38.9, 37.4,\\n36.5, 27.0, 22.3, 16.0. HRMS m/z calcd for C56H76N8O12S 1084.53, found 1085.5658 [M + H+].

\\n
\\n \\n 2-(2-(Hex-5-en-1-yloxy)ethoxy)ethan-1-ol\\n(<bold>33</bold>)\\n

To a suspension of NaH (2.5 equiv) in DMF\\n(1 M) and THF (1 M),\\ndiethylene glycol (5 equiv) was added at 0 °C under nitrogen.\\nAfter 45 min 6-bromo-1-hexene (1 equiv) was added dropwise at 0 °C.\\nThen the ice bath was removed, and the reaction mixture was stirred\\novernight at rt under nitrogen. Distillate water was added, and the\\nreaction mixture was acidified with HCl 1 M up to pH 2. The product\\nwas extracted with CHCl3. The organic phases were combined,\\ndried over MgSO4, filtered, and evaporated to dryness.\\nThe resulting oil was purified by flash column chromatography using\\na gradient from 50% to 100% of ethyl acetate in heptane to obtain\\nthe desired compound 33 as an oil. Yield: 552 mg, 49%. 1H NMR (400 MHz, CDCl3) δ: 5.85–5.74\\n(m, 1H), 5.03–4.96 (m, 1H), 4.96–4.91 (m, 1H), 3.75–3.56\\n(m, 8H), 3.46 (t, J = 6.7 Hz, 2H), 2.09–2.03\\n(m, 2H), 1.65–1.56 (m, 2H), 1.48–1.39 (m, 2H). 13C NMR (101 MHz, CDCl3) δ: 138.8, 114.7,\\n72.6, 71.5, 70.6, 70.3, 62.0, 33.6, 29.2, 25.5.

\\n
\\n \\n 2-(2-(Hex-5-en-1-yloxy)ethoxy)acetic\\nAcid (<bold>34</bold>)\\n

A mixture of 30 (1 equiv), BAIB (2.2\\nequiv), TEMPO (0.22 equiv)\\nin ACN/H2O (1:1) (0.5 M) was stirred overnight at rt. The\\nday after the solvent was evaporated, the crude was resuspended in\\nDCM and washed with H2O. The organic phases were combined,\\ndried over MgSO4, filtered, and evaporated to dryness.\\nThe resulting product was purified by flash column chromatography\\nusing a gradient from 0% to 20% of MeOH in DCM to obtain compound 34 as an oil. Yield: 472 mg, 81%. 1H NMR (400 MHz,\\nCDCl3) δ: 5.84–5.73 (m, 1H), 5.03–4.97\\n(m, 1H), 4.96–4.92 (m, 1H), 4.15 (s, 2H), 3.76–3.73\\n(m, 2H), 3.63–3.59 (m, 2H), 3.52 (t, J = 6.6\\nHz, 2H), 2.10–2.03 (m, 2H), 1.65–1.57 (m, 2H), 1.49–1.40\\n(m, 2H). 13C NMR (101 MHz, CDCl3) δ: 173.2,\\n138.7, 114.8, 71.7, 71.6, 69.7, 69.1, 33.6, 28.9, 25.4.

\\n
\\n \\n (2<italic>R</italic>,4<italic>S</italic>)-1-((<italic>R</italic>)-2-(2-(2-(Hex-5-en-1-yloxy)ethoxy)acetamido)-3,3-dimethylbutanoyl)-4-hydroxy-<italic>N</italic>-(4-(4-methylthiazol-5-yl)benzyl)pyrrolidine-2-carboxamide\\n(<bold>35</bold>)\\n

Following general method B, compound 35 was obtained from compounds 34 and 2a (synthesized accordingly to literature61). The crude was purified by HPLC using a gradient of 5% to 95% v/v\\nacetonitrile in 0.1% aqueous solution of formic acid to obtain 35 as white powder. Yield: 14.7 mg, 30%. 1H NMR\\n(400 MHz, CDCl3) δ: 8.64 (s, 1H), 7.28–7.23\\n(m, 4H), 5.74–5.63 (m, 1H), 4.93–4.82 (m, 2H), 4.65\\n(t, J = 7.9 Hz, 1H), 4.49–4.21 (m, 4H), 4.03–3.85\\n(m, 3H), 3.59–3.47 (m, 5H), 3.40–3.34 (m, 2H), 2.47–2.39\\n(m, 4H), 2.06–1.91 (m, 3H), 1.54–1.45 (m, 2H), 1.37–1.29\\n(m, 2H), 0.87 (s, 9H). 13C NMR (101 MHz, CDCl3) δ: 171.6, 170.8, 150.7, 148.1, 138.7, 138.4, 132.0, 130.7,\\n129.6, 128.3, 114.8, 71.5, 71.4, 70.4, 70.3, 69.8, 58.6, 57.5, 56.7,\\n43.3, 36.0, 34.9, 33.6, 29.1, 26.5, 25.4, 16.0. MS m/z calcd for C32H46N4O6S 614.31, found 615.4 [M + H+].

\\n
\\n \\n 2-(2-(Allyloxy)ethoxy)ethan-1-ol\\n(<bold>38</bold>)\\n

To a mixture of NaOH (1 equiv) in dioxane\\n(0.3 M), diethylene glycol\\n(2 equiv) and allyl bromide (1 equiv) were added dropwise. The mixture\\nwas heated overnight at 55 °C. Then the reaction mixture was\\ndried over MgSO4, filtered, and evaporated in vacuum. The\\ncrude was purified by flash column chromatography using a gradient\\nfrom 50% to 100% of ethyl acetate in heptane to obtain compound 38 as an oil. Yield: 329 mg, 54%. 1H NMR (400 MHz,\\nCDCl3) δ: 5.90–5.80 (m, 1H), 5.21 (qd, J = 1.6, 17.2 Hz, 1H), 5.14–5.10 (m, 1H), 3.96 (td, J = 1.4, 5.7 Hz, 2H), 3.68–3.59 (m, 4H), 3.56–3.52\\n(m, 4H). 13C NMR (101 MHz, CDCl3) δ: 134.5,\\n117.3, 72.6, 72.2, 70.4, 69.4, 61.7.

\\n
\\n \\n 3,6,9,12-Tetraoxapentadec-14-en-1-ol\\n(<bold>39</bold>)\\n

Following the same procedure applied for\\ncompound 38, from tetraethylene glycol and allyl bromide\\ncompound 39 was obtained as oil. Yield: 3.29 g, 68%.\\nAnalytical data matched\\nthose previously reported.75

\\n
\\n \\n (2<italic>S</italic>,4<italic>R</italic>)-<italic>N</italic>-(2-(2-(2-(Allyloxy)ethoxy)ethoxy)-4-(4-methylthiazol-5-yl)benzyl)-1-((<italic>S</italic>)-2-(1-fluorocyclopropane-1-carboxamido)-3,3-dimethylbutanoyl)-4-hydroxypyrrolidine-2-carboxamide\\n(<bold>40</bold>)\\n

Following general method E, compound 40 was obtained from compounds 38 and 2d (synthesis detailed in the Supporting Information). The crude was purified by HPLC using a gradient of 5% to 95% v/v\\nacetonitrile in 0.1% aqueous solution of formic acid. Yield: 21.7\\nmg, 42%. 1H NMR (500 MHz, MeOD) δ: 8.91 (s, 1H),\\n8.52 (t, J = 5.9 Hz, 1H), 7.55 (dd, J = 3.4, 9.4 Hz, 1H), 7.51 (d, J = 7.8 Hz, 1H), 7.10\\n(d, J = 1.6 Hz, 1H), 7.06 (dd, J = 1.6, 7.8 Hz, 1H), 5.98–5.90 (m, 1H), 5.30 (ddt, J = 1.7, 6.9, 8.6 Hz, 1H), 5.18 (ddt, J = 1.4, 4.5, 5.2 Hz, 1H), 4.79 (d, J = 9.6 Hz, 1H),\\n4.66 (t, J = 8.3 Hz, 1H), 4.54–4.43 (m, 3H),\\n4.31–4.26 (m, 2H), 4.07–4.04 (m, 2H), 3.97–3.94\\n(m, 2H), 3.90–3.82 (m, 2H), 3.80–3.76 (m, 2H), 3.69–3.66\\n(m, 2H), 2.53 (s, 3H), 2.29–2.24 (m, 1H), 2.17–2.10\\n(m, 1H), 1.42–1.30 (m, 4H), 1.07 (s, 10H). MS m/z calcd for C33H45FN4O7S 660.30, found 661.3 [M + H+].

\\n
\\n \\n (2<italic>S</italic>,4<italic>R</italic>)-<italic>N</italic>-(2-((3,6,9,12-Tetraoxapentadec-14-en-1-yl)oxy)-4-(4-methylthiazol-5-yl)benzyl)-1-((<italic>S</italic>)-2-(1-fluorocyclopropane-1-carboxamido)-3,3-dimethylbutanoyl)-4-hydroxypyrrolidine-2-carboxamide\\n(<bold>41</bold>)\\n

Following general method E, compound 41 was obtained from compounds 39 and 2d (synthesis detailed in the Supporting Information). The crude was purified by HPLC using a gradient of 5% to 95% v/v\\nacetonitrile in 0.1% aqueous solution of formic acid. Yield: 26.9\\nmg, 46%. 1H NMR (500 MHz, MeOD) δ: 8.91 (s, 1H),\\n8.51 (t, J = 6.1 Hz, 1H), 7.56 (dd, J = 3.2, 9.6 Hz, 1H), 7.51 (d, J = 7.8 Hz, 1H), 7.10\\n(d, J = 1.6 Hz, 1H), 7.06 (dd, J = 1.7, 7.7 Hz, 1H), 5.97–5.89 (m, 1H), 5.30 (ddt, J = 1.7, 6.9, 8.7 Hz, 1H), 5.19–5.16 (m, 1H), 4.79\\n(d, J = 9.1 Hz, 1H), 4.66 (t, J =\\n8.2 Hz, 1H), 4.56–4.43 (m, 3H), 4.30–4.26 (m, 2H), 4.04–4.02\\n(m, 2H), 3.97–3.94 (m, 2H), 3.90–3.82 (m, 2H), 3.80–3.77\\n(m, 2H), 3.73–3.70 (m, 2H), 3.69–3.64 (m, 7H), 3.62–3.59\\n(m, 2H), 2.54 (s, 3H), 2.30–2.25 (m, 1H), 2.16–2.11\\n(m, 1H), 1.42–1.31 (m, 4H), 1.07 (s, 9H). MS m/z calcd for C37H53FN4O9S 748.35, found 749.4 [M + H+].

\\n
\\n \\n (2<italic>S</italic>,4<italic>R</italic>)-<italic>N</italic>-(2-(2-(2-(Allyloxy)ethoxy)ethoxy)-4-(4-methylthiazol-5-yl)benzyl)-1-((<italic>S</italic>)-2-(1-cyanocyclopropane-1-carboxamido)-3,3-dimethylbutanoyl)-4-hydroxypyrrolidine-2-carboxamide\\n(<bold>42</bold>)\\n

Following general method E, compound 42 was obtained from compounds 38 and 2c (synthesized as previously reported29). The crude was purified by HPLC using a gradient of 5% to 95% v/v\\nacetonitrile in 0.1% aqueous solution of formic acid. Yield: 15.8\\nmg, 61%. 1H NMR (500 MHz, MeOD) δ: 8.91 (s, 1H),\\n8.50 (t, J = 5.9 Hz, 1H), 7.50 (d, J = 7.9 Hz, 1H), 7.10 (d, J = 1.8 Hz, 1H), 7.06 (dd, J = 1.7, 8.0 Hz, 1H), 5.98–5.90 (m, 1H), 5.30 (ddt, J = 1.8, 6.9, 8.6 Hz, 1H), 5.20–5.16 (m, 1H), 4.71–4.64\\n(m, 2H), 4.54–4.44 (m, 4H), 4.31–4.27 (m, 2H), 4.06\\n(td, J = 1.4, 5.6 Hz, 2H), 3.97–3.95 (m, 2H),\\n3.87–3.78 (m, 5H), 3.69–3.66 (m, 3H), 2.53 (s, 4H),\\n2.28–2.23 (m, 1H), 2.16–2.10 (m, 1H), 1.71–1.56\\n(m, 4H), 1.06 (s, 9H). 13C NMR (101 MHz, MeOD) δ:\\n174.3, 171.6, 167.3, 158.2, 152.9, 149.2, 136.2, 133.6, 133.0, 130.2,\\n128.5, 122.9, 120.8, 117.4, 113.9, 73.2, 71.9, 71.1, 71.0, 70.7, 69.5,\\n60.9, 59.7, 59.6, 39.8, 39.0, 37.4, 26.9, 18.2, 18.1, 16.0, 15.0,\\n14.9. MS m/z calcd for C34H45N5O7S 667.30, found 668.4 [M\\n+ H+].

\\n
\\n \\n (2<italic>S</italic>,4<italic>R</italic>)-<italic>N</italic>-(2-((3,6,9,12-Tetraoxapentadec-14-en-1-yl)oxy)-4-(4-methylthiazol-5-yl)benzyl)-1-((<italic>S</italic>)-2-(1-cyanocyclopropane-1-carboxamido)-3,3-dimethylbutanoyl)-4-hydroxypyrrolidine-2-carboxamide\\n(<bold>43</bold>)\\n

Following general method E, compound 43 was obtained from compounds 39 and 2c (synthesized as previously reported29). The crude was purified by HPLC using a gradient of 5% to 95% v/v\\nacetonitrile in 0.1% aqueous solution of formic acid. Yield: 15.3\\nmg, 52%. 1H NMR (500 MHz, MeOD) δ: 8.91 (s, 1H),\\n8.49 (t, J = 6.1 Hz, 1H), 7.51 (d, J = 7.7 Hz, 1H), 7.10 (d, J = 1.6 Hz, 1H), 7.06 (dd, J = 1.6, 7.7 Hz, 1H), 5.97–5.89 (m, 1H), 5.30 (ddt, J = 1.6, 6.9, 8.6 Hz, 1H), 5.19–5.16 (m, 1H), 4.71–4.64\\n(m, 2H), 4.55–4.43 (m, 3H), 4.31–4.26 (m, 2H), 4.03\\n(td, J = 1.4, 5.6 Hz, 2H), 3.97–3.94 (m, 2H),\\n3.87–3.77 (m, 4H), 3.73–3.71 (m, 2H), 3.69–3.64\\n(m, 7H), 3.62–3.59 (m, 2H), 2.54 (s, 3H), 2.30–2.25\\n(m, 1H), 2.16–2.10 (m, 1H), 1.71–1.56 (m, 4H), 1.06\\n(s, 9H). MS m/z calcd for C38H53N5O9S 755.36, found 756.5\\n[M + H+].

\\n
\\n \\n (2<italic>S</italic>,4<italic>R</italic>)-1-((<italic>S</italic>)-2-Acetamido-3,3-dimethylbutanoyl)-<italic>N</italic>-(2-(2-(2-(allyloxy)ethoxy)ethoxy)-4-(4-methylthiazol-5-yl)benzyl)-4-hydroxypyrrolidine-2-carboxamide\\n(<bold>44</bold>)\\n

Following general method E, compound 44 was obtained from compounds 38 and 2b (synthesized accordingly to literature29). The crude was purified by HPLC using a gradient of 5% to 95% v/v\\nacetonitrile in 0.1% aqueous solution of formic acid. Yield: 12.7\\nmg, 53%. 1H NMR (400 MHz, MeOD) δ: 8.91 (s, 1H),\\n7.52 (d, J = 7.8 Hz, 1H), 7.08 (s, 1H), 7.04 (dd, J = 1.4, 7.8 Hz, 1H), 5.99–5.88 (m, 1H), 5.30 (dq, J = 1.7, 6.9 Hz, 1H), 5.18 (dq, J = 1.3,\\n4.5 Hz, 1H), 4.67–4.60 (m, 2H), 4.55–4.42 (m, 3H), 4.30–4.25\\n(m, 2H), 4.05 (dt, J = 1.4, 5.6 Hz, 2H), 3.97–3.90\\n(m, 3H), 3.85–3.77 (m, 3H), 3.68–3.65 (m, 2H), 2.53\\n(s, 3H), 2.28–2.20 (m, 1H), 2.16–2.07 (m, 1H), 2.03\\n(s, 3H), 1.06 (s, 9H). 13C NMR (101 MHz, MeOD) δ:\\n174.4, 173.1, 172.3, 158.0, 152.8, 149.1, 136.1, 133.5, 132.8, 130.0,\\n128.4, 122.8, 117.3, 114.0, 113.8, 73.1, 71.8, 70.9, 70.6, 69.4, 60.7,\\n59.1, 57.9, 39.4, 38.9, 36.5, 27.0, 22.3, 15.9. MS m/z calcd for C31H44N4O7S 616.29, found 617.4 [M + H+].

\\n
\\n \\n (2<italic>S</italic>,4<italic>R</italic>)-<italic>N</italic>-(2-((3,6,9,12-Tetraoxapentadec-14-en-1-yl)oxy)-4-(4-methylthiazol-5-yl)benzyl)-1-((<italic>S</italic>)-2-acetamido-3,3-dimethylbutanoyl)-4-hydroxypyrrolidine-2-carboxamide\\n(<bold>45</bold>)\\n

Following general method E, compound 45 was obtained from compounds 39 and 2b (synthesized accordingly to literature29). The crude was purified by HPLC using a gradient of 5% to 95% v/v\\nacetonitrile in 0.1% aqueous solution of formic acid. Yield: 13.8\\nmg, 53%. 1H NMR (400 MHz, MeOD) δ: 8.92 (s, 1H),\\n7.52 (d, J = 7.9 Hz, 1H), 7.08 (s, 1H), 7.04 (dd, J = 1.5, 7.8 Hz, 1H), 6.01–5.88 (m, 1H), 5.29 (dq, J = 1.7, 6.9 Hz, 1H), 5.17 (dq, J = 1.3,\\n4.5 Hz, 1H), 4.67–4.60 (m, 2H), 4.56–4.39 (m, 2H), 4.29–4.25\\n(m, 2H), 4.03 (dt, J = 1.4, 5.7 Hz, 2H), 3.97–3.90\\n(m, 3H), 3.85–3.76 (m, 3H), 3.73–3.63 (m, 9H), 3.62–3.58\\n(m, 2H), 2.53 (s, 3H), 2.28–2.21 (m, 1H), 2.16–2.08\\n(m, 1H), 2.04 (s, 3H), 1.06 (s, 9H). 13C NMR (101 MHz,\\nMeOD) δ: 174.4, 173.1, 172.2, 158.0, 152.8, 149.1, 136.1, 133.5,\\n132.8, 130.0, 128.4, 122.8, 117.2, 113.7, 73.1, 71.8, 71.6, 71.5,\\n71.1, 70.8, 70.6, 69.4, 60.7, 59.1, 58.0, 39.4, 38.9, 36.5, 27.0,\\n22.3, 15.9. MS m/z calcd for C35H52N4O9S 704.35, found 705.4\\n[M + H+].

\\n
\\n \\n (2<italic>S</italic>,4<italic>R</italic>)-<italic>N</italic>-(2-(2-(2-(4-(2,6-Dimethoxy-4-(2-methyl-1-oxo-1,2-dihydro-2,7-naphthyridin-4-yl)benzyl)piperazin-1-yl)ethoxy)ethoxy)-4-(4-methylthiazol-5-yl)benzyl)-1-((<italic>S</italic>)-2-(1-fluorocyclopropane-1-carboxamido)-3,3-dimethylbutanoyl)-4-hydroxypyrrolidine-2-carboxamide\\n(<bold>46</bold>)\\n

Following general method C, from 69 (0.033 mmol) and 1c (0.033 mmol) compound 46 was obtained after purification by HPLC using a gradient\\nof 5% to 95% v/v acetonitrile in 0.1% aqueous solution of formic acid\\nas white powder. Yield: 5.3 mg, 16%. 1H NMR (400 MHz, MeOD)\\nδ: 9.61 (s, 1H), 8.95 (s, 1H), 8.71 (d, J =\\n6.2 Hz, 1H), 7.97 (s, 1H), 7.85 (d, J = 6.0 Hz, 1H),\\n7.53 (d, J = 8.2 Hz, 1H), 7.10–7.07 (m, 2H),\\n6.90 (s, 2H), 4.78 (s, 1H), 4.66 (t, J = 8.5 Hz,\\n1H), 4.54–4.44 (m, 3H), 4.32–4.29 (m, 2H), 4.00–3.81\\n(m, 14H), 3.76 (s, 3H), 3.55 (s, 4H), 3.45 (s, 4H), 3.30–3.27\\n(m, 2H), 2.53 (s, 3H), 2.32–2.26 (m, 1H), 2.18–2.10\\n(m, 1H), 1.44–1.30 (m, 4H), 1.08 (s, 9H). 13C NMR\\n(101 MHz, MeOD) δ: 174.2, 171.8, 164.4, 162.2, 161.2, 157.8,\\n153.0, 149.0, 146.4, 142.3, 140.0, 133.5, 132.9, 129.9, 128.2, 122.9,\\n122.3, 120.8, 118.2, 113.5, 106.8, 80.3, 78.0, 71.0, 70.9, 69.1, 67.2,\\n60.9, 58.8, 58.7, 58.2, 57.5, 56.9, 50.7, 50.1, 39.4, 39.0, 37.6,\\n37.3, 26.9, 15.8, 14.1, 14.0, 14.0, 13.9. HRMS m/z calcd for C52H65FN8O9S 996.46, found 997.4810 [M + H+].

\\n
\\n \\n (2<italic>S</italic>,4<italic>R</italic>)-<italic>N</italic>-(2-(2-(2-(4-(2,5-Dimethoxy-4-(2-methyl-1-oxo-1,2-dihydro-2,7-naphthyridin-4-yl)benzyl)piperazin-1-yl)ethoxy)ethoxy)-4-(4-methylthiazol-5-yl)benzyl)-1-((<italic>S</italic>)-2-(1-fluorocyclopropane-1-carboxamido)-3,3-dimethylbutanoyl)-4-hydroxypyrrolidine-2-carboxamide\\n(<bold>47</bold>)\\n

Following general method C, from 69 (0.033 mmol) and 1d (synthesis detailed in\\nthe Supporting Information) (0.033 mmol)\\ncompound 47 was obtained after purification by HPLC using\\na gradient of 5% to 95% v/v acetonitrile in 0.1% aqueous solution\\nof formic acid as white powder. Yield: 5.3 mg, 5%. 1H NMR\\n(400 MHz, MeOD) δ: 9.52 (s, 1H), 8.91 (s, 1H), 8.62 (d, J = 5.7 Hz, 1H), 7.65 (s, 1H), 7.51 (d, J = 7.9 Hz, 1H), 7.23–7.19 (m, 2H), 7.10 (d, J = 1.2 Hz, 1H), 7.06 (dd, J = 1.6, 7.7 Hz, 1H),\\n6.98 (s, 1H), 4.78 (s, 1H), 4.66 (t, J = 8.5 Hz,\\n1H), 4.55–4.45 (m, 3H), 4.32–4.28 (m, 2H), 3.95–3.89\\n(m, 2H), 3.88–3.80 (m, 7H), 3.76–3.71 (m, 8H), 2.78–2.71\\n(m, 10H), 2.53 (s, 3H), 2.30–2.24 (m, 1H), 2.17–2.11\\n(m, 1H), 1.42–1.31 (m, 4H), 1.07 (s, 9H). 13C NMR\\n(101 MHz, MeOD) δ: 174.1, 171.7, 163.3, 158.0, 153.7, 152.8,\\n151.4, 150.6, 144.2, 139.2, 133.5, 133.0, 128.4, 124.1, 122.8, 121.5,\\n120.3, 115.8, 113.9, 80.3, 71.0, 70.8, 69.8, 69.3, 60.8, 58.7, 58.2,\\n56.7, 56.5, 54.3, 53.5, 39.4, 38.9, 37.4, 37.3, 26.9, 15.9, 14.1,\\n14.0, 13.9. HRMS m/z calcd for C52H65FN8O9S 996.46, found\\n997.4712 [M + H+].

\\n
\\n \\n (2<italic>S</italic>,4<italic>R</italic>)-<italic>N</italic>-(2-((5-(4-(2,6-Dimethoxy-4-(2-methyl-1-oxo-1,2-dihydro-2,7-naphthyridin-4-yl)benzyl)piperazin-1-yl)pentyl)oxy)-4-(4-methylthiazol-5-yl)benzyl)-1-((<italic>S</italic>)-2-(1-fluorocyclopropane-1-carboxamido)-3,3-dimethylbutanoyl)-4-hydroxypyrrolidine-2-carboxamide\\n(<bold>51</bold>, VZ185)\\n

Following general method C, from 70 (0.02 mmol) and 1c (0.02 mmol) compound 51 was obtained after purification by HPLC using a gradient\\nof 5% to 95% v/v acetonitrile in 0.1% aqueous solution of formic acid\\nas white powder. Yield: 4.8 mg, 24%. 1H NMR (400 MHz, MeOD)\\nδ: 9.56 (d, J = 0.8 Hz, 1H), 8.92 (s, 1H),\\n8.71 (d, J = 5.8 Hz, 1H), 7.78 (s, 1H), 7.65 (dd, J = 0.7, 5.8 Hz, 1H), 7.52 (d, J = 7.7\\nHz, 1H), 7.07–7.03 (m, 2H), 6.86 (s, 2H), 4.79 (s, 1H), 4.67\\n(t, J = 12.4 Hz, 1H), 4.55–4.47 (m, 3H), 4.18\\n(s, 2H), 4.14 (t, J = 6.0 Hz, 2H), 3.96–3.82\\n(m, 8H), 3.74 (s, 3H), 3.18–2.78 (m, 10H), 2.53 (s, 3H), 2.32–2.25\\n(m, 1H), 2.19–2.12 (m, 1H), 1.98–1.91 (m, 2H), 1.79–1.71\\n(m, 2H), 1.68–1.61 (m, 2H), 1.42–1.29 (m, 4H), 1.08\\n(s, 9H). 13C NMR (101 MHz, MeOD) δ: 174.2, 171.8,\\n171.4, 163.1, 161.0, 158.0, 152.8, 151.7, 151.2, 149.1, 143.6, 138.8,\\n133.6, 132.8, 129.7, 128.0, 122.5, 121.7, 119.2, 113.1, 106.6, 80.3,\\n78.0, 71.0, 69.2, 60.8, 59.2, 58.7, 58.1, 56.4, 53.1, 49.8, 39.3,\\n38.9, 37.4, 37.3, 30.1, 26.9, 25.1, 15.9, 14.1, 14.0, 13.8. HRMS m/z calcd for C53H67FN8O8S 994.48, found 995.5024 [M + H+].

\\n
\\n \\n (2<italic>S</italic>,4<italic>R</italic>)-<italic>N</italic>-(2-((5-(4-(2,5-Dimethoxy-4-(2-methyl-1-oxo-1,2-dihydro-2,7-naphthyridin-4-yl)benzyl)piperazin-1-yl)pentyl)oxy)-4-(4-methylthiazol-5-yl)benzyl)-1-((<italic>S</italic>)-2-(1-fluorocyclopropane-1-carboxamido)-3,3-dimethylbutanoyl)-4-hydroxypyrrolidine-2-carboxamide\\n(<bold>52</bold>)\\n

Following general method C, from 70 (0.02 mmol) and 1d (0.02 mmol) compound 52 was obtained after purification by HPLC using a gradient\\nof 5% to 95% v/v acetonitrile in 0.1% aqueous solution of formic acid\\nas white powder. Yield: 4 mg, 20%. 1H NMR (400 MHz, MeOD)\\nδ: 9.53 (s, 1H), 8.92 (s, 1H), 8.62 (d, J =\\n5.7 Hz, 1H), 7.65 (s, 1H), 7.53 (d, J = 7.4 Hz, 1H),\\n7.23–7.19 (m, 2H), 7.05 (s, 2H), 7.02 (s, 1H), 4.79 (s, 1H),\\n4.68 (t, J = 8.4 Hz, 1H), 4.55–4.47 (m, 3H),\\n4.15 (t, J = 5.9 Hz, 2H), 3.92–3.82 (m, 7H),\\n3.75 (s, 3H), 3.72 (s, 3H), 3.18–2.91 (m, 10H), 2.53 (s, 3H),\\n2.32–2.26 (m, 1H), 2.19–2.12 (m, 1H), 2.00–1.93\\n(m, 2H), 1.87–1.78 (m, 2H), 1.70–1.62 (m, 2H), 1.43–1.30\\n(m, 4H), 1.08 (s, 9H). 13C NMR (101 MHz, MeOD) δ:174.2,\\n171.8, 163.3, 157.9, 153.7, 152.8, 151.4, 150.5, 149.2, 144.1, 139.3,\\n133.6, 132.9, 129.6, 127.9, 122.6, 121.5, 120.1, 116.0, 115.6, 113.1,\\n80.4, 78.1, 71.0, 69.0, 60.9, 58.7, 58.4, 58.2, 56.8, 56.5, 56.2,\\n53.1, 51.8, 39.3, 38.9, 37.4, 37.3, 29.8, 26.9, 24.7, 15.9, 14.1,\\n14.0, 13.9. HRMS m/z calcd for C53H67FN8O8S 994.48, found\\n995.4771 [M + H+].

\\n
\\n \\n (2<italic>S</italic>,4<italic>R</italic>)-<italic>N</italic>-(2-(2-(2-((1-(2,6-Dimethoxy-4-(2-methyl-1-oxo-1,2-dihydro-2,7-naphthyridin-4-yl)benzyl)azetidin-3-yl)amino)-2-oxoethoxy)ethoxy)-4-(4-methylthiazol-5-yl)benzyl)-1-((<italic>S</italic>)-2-(1-fluorocyclopropane-1-carboxamido)-3,3-dimethylbutanoyl)-4-hydroxypyrrolidine-2-carboxamide\\n(<bold>55</bold>)\\n

Following general method B, from the 71 (0.02 mmol) and 1e (0.02 mmol) compound 55 was obtained after purification by HPLC using a gradient\\nof 5% to 95% v/v acetonitrile in 0.1% aqueous solution of ammonia\\nas white powder. Yield: 2.4 mg, 12%. 1H NMR (400 MHz, MeOD)\\nδ: 9.56 (d, J = 0.6 Hz, 1H), 8.93 (s, 1H),\\n8.71 (d, J = 6.0 Hz, 1H), 7.80 (s, 1H), 7.63 (dd, J = 0.6, 5.8 Hz, 1H), 7.55 (d, J = 8.1\\nHz, 1H), 7.12–7.08 (m, 2H), 6.89 (s, 2H), 4.80–4.64\\n(m, 3H), 4.60–4.31 (m, 11H), 4.23 (s, 2H), 4.06 (t, J = 4.0 Hz, 2H), 3.98 (s, 6H), 3.91–3.80 (m, 2H),\\n3.74 (s, 3H), 2.53 (s, 3H), 2.31–2.25 (m, 1H), 2.18–2.10\\n(m, 1H), 1.42–1.30 (m, 4H), 1.07 (s, 9H). 13C NMR\\n(101 MHz, MeOD) δ: 174.3, 171.8, 166.7, 160.7, 157.8, 152.9,\\n151.8, 151.3, 149.2, 143.3, 140.4, 139.2, 133.4, 133.0, 130.0, 128.2,\\n123.0, 121.7, 119.1, 118.6, 113.4, 106.8, 71.5, 71.5, 71.0, 69.2,\\n60.9, 60.9, 58.7, 58.2, 56.9, 49.5, 39.4, 38.9, 37.5, 37.3, 29.5,\\n26.9, 15.9, 13.9. HRMS m/z calcd\\nfor C51H61FN8O10S 996.42,\\nfound 997.4452 [M + H+].

\\n
\\n \\n (2<italic>S</italic>,4<italic>R</italic>)-<italic>N</italic>-(2-(2-(2-((1-(2,5-Dimethoxy-4-(2-methyl-1-oxo-1,2-dihydro-2,7-naphthyridin-4-yl)benzyl)azetidin-3-yl)amino)-2-oxoethoxy)ethoxy)-4-(4-methylthiazol-5-yl)benzyl)-1-((<italic>S</italic>)-2-(1-fluorocyclopropane-1-carboxamido)-3,3-dimethylbutanoyl)-4-hydroxypyrrolidine-2-carboxamide\\n(<bold>56</bold>)\\n

Following general method B, from 71 (0.02 mmol) and 1f (synthesis detailed in\\nthe Supporting Information) (0.02 mmol)\\ncompound 56 was obtained after purification by HPLC using\\na gradient of 5% to 95% v/v acetonitrile in 0.1% aqueous solution\\nof ammonia as white powder. Yield: 3.3 mg, 17%. 1H NMR\\n(400 MHz, MeOD) δ: 9.39 (s, 1H), 8.80 (s, 1H), 8.49 (d, J = 5.7 Hz, 1H), 7.54 (s, 1H), 7.42 (d, J = 8.2 Hz, 1H), 7.10 (s, 1H), 7.04 (d, J = 5.6 Hz,\\n1H), 6.99 (s, 1H), 6.98–6.94 (m, 2H), 4.66 (s, 1H), 4.60–4.51\\n(m, 2H), 4.45–4.32 (m, 5H), 4.27–4.15 (m, 6H), 4.10\\n(s, 2H), 3.93 (t, J = 4.1 Hz, 2H), 3.81 (s, 3H),\\n3.78–3.67 (m, 2H), 3.63 (s, 3H), 3.58 (s, 3H), 2.40 (s, 3H),\\n2.19–2.10 (m, 1H), 2.05–1.98 (m, 1H), 1.30–1.16\\n(m, 4H), 0.94 (s, 9H). 13C NMR (101 MHz, MeOD) δ:\\n174.2, 173.2, 171.8, 167.1, 166.6, 163.2, 157.8, 153.4, 153.0, 152.9,\\n151.4, 150.6, 149.2, 143.8, 139.5, 133.4, 133.0, 130.0, 128.2, 127.1,\\n123.0, 121.5, 120.9, 120.0, 116.1, 115.6, 113.4, 80.3, 78.0, 71.5,\\n71.5, 71.0, 69.2, 69.1, 60.9, 58.7, 58.2, 56.8, 56.6, 55.9, 49.5,\\n49.5, 40.7, 39.4, 38.9, 37.4, 37.3, 26.9, 15.9, 14.0. HRMS m/z calcd for C51H61FN8O10S 996.42, found 997.4435 [M + H+].

\\n
\\n \\n (2<italic>S</italic>,4<italic>R</italic>)-<italic>N</italic>-(2-((5-((1-(2,6-Dimethoxy-4-(2-methyl-1-oxo-1,2-dihydro-2,7-naphthyridin-4-yl)benzyl)azetidin-3-yl)amino)-5-oxopentyl)oxy)-4-(4-methylthiazol-5-yl)benzyl)-1-((<italic>S</italic>)-2-(1-fluorocyclopropane-1-carboxamido)-3,3-dimethylbutanoyl)-4-hydroxypyrrolidine-2-carboxamide\\n(<bold>61</bold>)\\n

Following general method B, from 72 (0.025 mmol) and 1e (0.025 mmol) compound 61 was obtained after purification by HPLC using a gradient\\nof 5% to 95% v/v acetonitrile in 0.1% aqueous solution of formic acid\\nas white powder. Yield: 4.5 mg, 18%. 1H NMR (400 MHz, MeOD)\\nδ: 9.45 (d, J = 0.5 Hz, 1H), 8.81 (s, 1H),\\n8.61 (d, J = 5.7 Hz, 1H), 7.68 (s, 1H), 7.54 (d, J = 5.5 Hz, 1H), 7.41 (d, J = 7.6 Hz, 1H),\\n6.96–6.91 (m, 2H), 6.74 (s, 2H), 4.69 (s, 1H), 4.58 (t, J = 8.5 Hz, 1H), 4.54–4.32 (m, 5H), 4.24 (s, 2H),\\n4.11–4.01 (m, 4H), 3.85 (s, 6H), 3.81–3.70 (m, 3H),\\n3.63 (s, 3H), 2.42 (s, 3H), 2.28 (t, J = 6.5 Hz,\\n2H), 2.21–2.15 (m, 1H), 2.08–2.01 (m, 1H), 1.85–1.78\\n(m, 4H), 1.32–1.20 (m, 4H), 0.96 (s, 9H). 13C NMR\\n(101 MHz, MeOD) δ: 176.1, 174.3, 171.7, 163.0, 160.7, 157.9,\\n152.8, 151.7, 151.3, 149.1, 148.6, 143.4, 139.4, 139.1, 133.6, 132.8,\\n129.7, 128.2, 128.0, 122.5, 121.7, 120.9, 119.2, 118.9, 113.0, 106.7,\\n80.3, 78.0, 71.0, 68.8, 61.1, 60.8, 58.7, 58.2, 56.7, 56.1, 40.9,\\n39.3, 38.9, 37.4, 37.3, 36.4, 29.8, 29.5, 26.9, 23.4, 15.9, 14.1,\\n14.0, 13.9. HRMS m/z calcd for C52H63FN8O9S 994.44, found\\n995.4634 [M + H+].

\\n
\\n \\n (2<italic>S</italic>,4<italic>R</italic>)-<italic>N</italic>-(2-((5-((1-(2,5-Dimethoxy-4-(2-methyl-1-oxo-1,2-dihydro-2,7-naphthyridin-4-yl)benzyl)azetidin-3-yl)amino)-5-oxopentyl)oxy)-4-(4-methylthiazol-5-yl)benzyl)-1-((<italic>S</italic>)-2-(1-fluorocyclopropane-1-carboxamido)-3,3-dimethylbutanoyl)-4-hydroxypyrrolidine-2-carboxamide\\n(<bold>62</bold>)\\n

Following general method B, from 72 (0.025 mmol) and 1f (0.025 mmol) compound 62 was obtained after purification by HPLC using a gradient\\nof 5% to 95% v/v acetonitrile in 0.1% aqueous solution of formic acid\\nas white powder. Yield: 5.8 mg, 23%. 1H NMR (400 MHz, MeOD)\\nδ: 9.51 (d, J = 0.7 Hz, 1H), 8.91 (s, 1H),\\n8.62 (d, J = 6.0 Hz, 1H), 7.64 (s, 1H), 7.52 (d, J = 7.5 Hz, 1H), 7.19 (dd, J = 0.8, 5.8\\nHz, 1H), 7.14 (s, 1H), 7.06–7.02 (m, 2H), 7.01 (s, 1H), 4.79\\n(s, 1H), 4.69 (t, J = 8.5 Hz, 1H), 4.58–4.43\\n(m, 4H), 4.13 (s, 2H), 4.01–3.81 (m, 10H), 3.74 (s, 3H), 3.71\\n(s, 3H), 3.47 (s, 1H), 2.52 (s, 3H), 2.36 (t, J =\\n6.5 Hz, 2H), 2.31–2.24 (m, 1H), 2.20–2.11 (m, 1H), 1.92\\n(t, J = 2.6 Hz, 4H), 1.46–1.29 (m, 4H), 1.08\\n(s, 9H). 13C NMR (101 MHz, MeOD) δ: 175.8, 174.3,\\n171.7, 171.6, 171.4, 163.2, 157.9, 153.2, 152.8, 152.8, 151.3, 150.5,\\n149.1, 144.1, 139.3, 133.6, 132.8, 129.7, 128.0, 124.7, 122.5, 121.5,\\n120.2, 116.1, 115.6, 115.0, 113.0, 80.3, 78.0, 71.1, 68.8, 61.8, 60.8,\\n58.7, 58.2, 57.2, 56.6, 56.5, 41.4, 39.3, 38.9, 37.4, 37.3, 36.4,\\n29.8, 26.9, 23.5, 15.9, 14.1, 14.0, 13.9. HRMS m/z calcd for C52H63FN8O9S 994.44, found 995.4664 [M + H+].

\\n
\\n \\n (2<italic>S</italic>,4<italic>R</italic>)-<italic>N</italic>-(2-(2-(2,2-Diethoxyethoxy)ethoxy)-4-(4-methylthiazol-5-yl)benzyl)-1-((<italic>S</italic>)-2-(1-fluorocyclopropane-1-carboxamido)-3,3-dimethylbutanoyl)-4-hydroxypyrrolidine-2-carboxamide\\n(<bold>67</bold>)\\n

Following general method E, compound 67 was obtained after reaction between 2-(2,2-diethoxyethoxy)ethan-1-ol\\n(synthesized accordingly to literature76) and 2d as white powder. Yield: 92 mg, 87%. 1H NMR (400 MHz, CDCl3) δ: 8.66 (s, 1H), 7.31 (d, J = 7.7 Hz, 1H), 6.95 (dd, J = 1.2, 7.7\\nHz, 1H), 6.88 (s, 1H), 4.66 (t, J = 7.6 Hz, 2H),\\n4.55–4.40 (m, 4H), 4.23–4.13 (m, 2H), 3.97–3.87\\n(m, 3H), 3.71–3.49 (m, 7H), 2.50 (s, 3H), 2.44–2.34\\n(m, 1H), 2.13–2.05 (m, 1H), 1.35–1.26 (m, 4H), 1.18\\n(t, J = 7.1 Hz, 6H), 0.93 (s, 9H). 13C\\nNMR (101 MHz, CDCl3) δ: 170.8, 170.3, 170.1, 156.9,\\n150.4, 148.6, 132.4, 131.8, 129.8, 126.9, 122.1, 112.9, 101.0, 79.5,\\n72.0, 70.3, 70.1, 68.0, 62.5, 62.3, 58.7, 57.5, 56.7, 39.1, 36.5,\\n35.6, 26.4, 16.2, 15.4, 13.9, 13.8, 13.7. MS m/z calcd for C34H49FN4O8S 692.33, found 693.3 [M + H+].

\\n
\\n \\n (2<italic>S</italic>,4<italic>R</italic>)-<italic>N</italic>-(2-((5,5-Dimethoxypentyl)oxy)-4-(4-methylthiazol-5-yl)benzyl)-1-((<italic>S</italic>)-2-(1-fluorocyclopropane-1-carboxamido)-3,3-dimethylbutanoyl)-4-hydroxypyrrolidine-2-carboxamide\\n(<bold>68</bold>)\\n

A mixture of 2d (0.075 mmol,\\n1 equiv), 5-bromo-1,1-dimethoxypentane 66 (synthesized\\naccordingly to literature77) (0.112 mmol,\\n1.8 equiv), and K2CO3 (0.225 mmol, 3 equiv)\\nin DMF (0.5 mL) was stirred at 70 °C overnight. The reaction\\nmixture was diluted with water and extracted with DCM, dried over\\nMgSO4, filtered and evaporated to dryness. The crude was\\npurified by flash column chromatography using a gradient from 0% to\\n20% of methanol in DCM to obtain the desired compound as white powder.\\nYield: 23 mg, 55%. 1H NMR (400 MHz, MeOD) δ: 8.91\\n(s, 1H), 7.51 (d, J = 8.0 Hz, 1H), 7.05 (d, J = 1.5 Hz, 1H), 7.03 (s, 1H), 4.80 (d, J = 8.6 Hz, 1H), 4.68 (t, J = 8.3 Hz, 1H), 4.57–4.42\\n(m, 4H), 4.11 (t, J = 6.2 Hz, 2H), 3.81–3.62\\n(m, 2H), 3.36 (s, 6H), 2.53 (s, 3H), 2.31–2.25 (m, 1H), 2.21–2.14\\n(m, 1H), 1.95–1.88 (m, 2H), 1.76–1.68 (m, 2H), 1.67–1.58\\n(m, 2H), 1.38–1.29 (m, 4H), 1.08 (s, 9H). 13C NMR\\n(101 MHz, MeOD) δ: 174.2, 171.7, 171.4, 158.0, 152.8, 149.1,\\n133.6, 132.8, 129.6, 127.9, 122.4, 113.0, 106.2, 80.3, 71.1, 69.2,\\n60.8, 58.1, 55.8, 53.5, 43.8, 39.3, 38.9, 37.3, 33.4, 30.1, 26.9,\\n22.3, 15.9, 14.1, 14.0, 13.9, 13.2. MS m/z calcd for C33H47FN4O7S 662.31, found 663.5 [M + H+].

\\n
\\n \\n (2<italic>S</italic>,4<italic>R</italic>)-1-((<italic>S</italic>)-2-(1-Fluorocyclopropane-1-carboxamido)-3,3-dimethylbutanoyl)-4-hydroxy-<italic>N</italic>-(4-(4-methylthiazol-5-yl)-2-(2-(2-oxoethoxy)ethoxy)benzyl)pyrrolidine-2-carboxamide\\n(<bold>69</bold>)\\n

Following general method F, compound 69 was obtained from 67 (0.066 mmol) and directly\\nused in the next step without any further purification. MS m/z calcd for C30H39FN4O7S 618.15, found 619.3 [M + H+].

\\n
\\n \\n (2<italic>S</italic>,4<italic>R</italic>)-1-((<italic>S</italic>)-2-(1-Fluorocyclopropane-1-carboxamido)-3,3-dimethylbutanoyl)-4-hydroxy-<italic>N</italic>-(4-(4-methylthiazol-5-yl)-2-((5-oxopentyl)oxy)benzyl)pyrrolidine-2-carboxamide\\n(<bold>70</bold>)\\n

Following general method F, compound 70 was obtained from 68 (0.04 mmol) and directly\\nused in the next step without any further purification. MS m/z calcd for C31H41FN4O6S 616.27, found 617.3 [M + H+].

\\n
\\n \\n 2-(2-(2-(((2<italic>S</italic>,4<italic>R</italic>)-1-((<italic>S</italic>)-2-(1-Fluorocyclopropane-1-carboxamido)-3,3-dimethylbutanoyl)-4-hydroxypyrrolidine-2-carboxamido)methyl)-5-(4-methylthiazol-5-yl)phenoxy)ethoxy)acetic\\nAcid (<bold>71</bold>)\\n

Following general method G, compound 71 was obtained from compound 69 (0.04 mmol)\\nand was used in the next step without any further purification. Quantitative\\nyield. MS m/z calcd for C30H39FN4O8S 634.25, found 635.3 [M\\n+ H+].

\\n
\\n \\n 5-(2-(((2<italic>S</italic>,4<italic>R</italic>)-1-((<italic>S</italic>)-2-(1-Fluorocyclopropane-1-carboxamido)-3,3-dimethylbutanoyl)-4-hydroxypyrrolidine-2-carboxamido)methyl)-5-(4-methylthiazol-5-yl)phenoxy)pentanoic\\nAcid (<bold>72</bold>)\\n

Following general method G, compound 72 was obtained from compound 70 (0.05 mmol)\\nand was used in the next step without any further purification. Quantitative\\nyield. MS m/z calcd for C31H41FN4O7S 632.27, found 633.3 [M\\n+ H+].

\\n
\\n \\n Biology. Cell Culture\\n

Human cell\\nlines HeLa and Hek293\\nwere purchased from ATCC and propagated in DMEM medium (Gibco), supplemented\\nwith 10% fetal bovine serum (FBS) (Gibco), l-glutamine (Gibco),\\n100 μg mL–1 of penicillin/streptomycin. RI-1\\ncells, purchased from DSMZ, were propagated in RPMI medium (Gibco),\\nsupplemented with 10% fetal bovine serum (FBS) (Gibco), l-glutamine, 100 μg mL–1 of penicillin/streptomycin.\\nCells were kept at 37 °C and 5% of CO2. EOL-1 and\\nA-204 cell lines were purchased from ATCC and DSMZ. EOL-1 cells were\\ngrown in RPMI supplemented with 10% fetal calf serum. A-204 cells\\nwere grown in McCoy’s medium supplemented with 10% fetal calf\\nserum. All cell lines were routinely tested for mycoplasma contamination\\nusing MycoAlert kit from Lonza.

\\n
\\n \\n Testing Compounds in Cells\\n

HeLa and Hek293 cells were\\nseeded at either 0.3 × 106 or 0.5 × 106 cells per well in 6-well plate in 2 mL of medium. At 80% confluency,\\ncells were treated with compounds at the desired concentration, with\\nfinal DMSO concentration of 0.1% v/v. Cells were incubated at 37 °C\\nand 5% of CO2 for the desired time before harvesting. For\\nprotein extraction from adherent cells, cells were washed twice with\\nDPBS (Gibco) and lysed with RIPA buffer (Sigma-Aldrich), supplemented\\nwith cOmplete Mini EDTA-free protease inhibitor cocktail (Roche).\\nInsoluble material was removed by centrifugation at 14 000\\nrpm for 15 min at 4 °C. Supernatant was collected and protein\\nconcentration was quantified by Bradford assay (Thermo Scientific\\nno. 23200, mean of two replicates). For RI-1 cells, (1–1.5)\\n× 106 cells/mL were seeded in 6-well plate in 2 mL\\nof medium. The day after, cells were treated with compounds at the\\ndesired concentration, with final DMSO concentration of 0.1% v/v.\\nBefore harvesting, cells were incubated at 37 °C and 5% CO2 for the desired time. Cells were washed twice with DPBS (Gibco)\\nand lysed with RIPA buffer (Sigma-Aldrich), supplemented with cOmplete\\nMini EDTA-free protease inhibitor cocktail (Roche). Lysates were sonicated\\n(10 s) and centrifuged at 14 000 rpm for 20 min at 4 °C.\\nSupernatant was collected, and protein concentration was quantified\\nby Bradford assay (mean of two replicates). For EOL-1 and A-204 cell\\nline, 20 000 cells were seeded in 300 μL per well in\\na 24-well plate and incubated at 37 °C overnight. Compounds were\\nadded from DMSO stock solution using a digital dispenser D300 (Tecan),\\nnormalizing for added DMSO, and cells were incubated at 37 °C\\nfor 18 h. Medium was removed, and cells were washed with PBS and lysed\\nin 80 μL of lysis buffer (1% Triton, 350 mM KCl, 10 mM Tris,\\npH 7,4, phosphatase-protease inhibitor cocktail (Thermo Scientific\\nno. 1861281), 10 mM DTT, Benzonase 0.5 μL/ml (Novagen no. 70746\\n10KU, 25 U/μL)) for 30 min on ice before insoluble debris was\\npelleted by centrifugation.

\\n
\\n \\n Small Interfering RNA\\n

HeLa cells were seeded at 0.3\\n× 106 cells per well in 6-well plates in 2 mL of medium,\\nwith a goal to achieve 70% of confluence on the day of transfection.\\nBRD7, BRD9, and CRBN targeting siRNA (L-020297-00-0005 ON-TARGETplus\\nhuman BRD7, L-014250-02-0005 ON-TARGETplus human BRD9, and L-021086-00-0005\\nON-TARGETplus human CRBN SMARTpool, 5 nmol, Dharmacon) were prepared\\nas a 20 μM solution in RNase-free 1× siRNA buffer (Dharmacon).\\nNontargeting siRNA (On-TARGETplus control pool, nontargeting pool\\nD-001810-10-05, 5 nmol, Dharmacon) was used as negative control. Medium\\nwas replaced on the day of transfection. siRNA solution (5 μL)\\nof BRD7, BRD9, or CRBN targeting siRNA, negative control, and vehicle\\ncontrol (1× siRNA buffer) were added to 250 μL of Opti-mem\\n(Gibco), prepared in duplicate. Lipofectamine RNAiMax (5 μL,\\nThermo Fisher Scientific) was added to 250 μL of Opti-mem in\\nanother tube, also in duplicate. The two solutions were combined,\\nincubated for 20 min at rt, and added to the wells. Plates were incubated\\nat 37 °C and 5% CO2 for 48 h before harvesting as\\ndescribed above.

\\n
\\n \\n Mechanistic Evaluation\\n

Cells were\\nseeded in 6-well\\nplates with 5 × 105 cells per well in 2 mL of complete\\nmedium to aim for 80% confluence on the day of treatment. At time\\nzero, ML4924 was added at final concentration of 3 μM with 0.1%\\nv/v of DMSO. DMSO was added to the remaining wells in order to match\\nconcentration of vehicle in all wells. After 3 h, MG132 (50 μM)\\nor VH298 (100 μM) was added to the designated wells at a final\\nconcentration of 0.1% v/v of DMSO. Again, DMSO was added to the remaining\\nwells to match vehicle concentration. At t = 3.5\\nh, VZ185 or cisVZ185 was added at 100 nM and 0.1%\\nv/v of DMSO, matching the DMSO concentration in the remaining wells\\n(final concentration 0.3% v/v). Plates were incubated for an additional\\n4 h at 37 °C and 5% CO2 before harvesting as described\\nbefore. The experiment was performed in duplicate.

\\n
\\n \\n Immunoblotting\\n

Proteins were resolved by SDS–PAGE\\non NuPage 4–12% Bis-Tris Midi Gel (Invitrogen) and transferred\\nto Amersham Protran 0.45 NC nitrocellulose membrane (GE Healthcare)\\nusing wet transfer. The membrane was blocked with 5% w/v milk in Tris-buffered\\nsaline (TBS) with 0.1% w/v Tween-20. The following primary antibodies\\nat the given concentration were used: anti β-actin (Cell Signaling\\nTechnology, 4970S, 13E5) 1:2000, anti-Brd9 (Bethyl A303-781A) 1:1000,\\nanti-Brd7 (Bethyl A302-304A) 1:1000, VHL rabbit Ab (Cell Signaling\\nTechnology, no. 68547S) 1:1000, anti-CRBN (Novus Bio, NBP 1-9-1810)\\n1:1000, anti-actin hFAB rhodamine antibody, Bio-Rad, no. 12004164.\\nFollowing incubation with horseradish peroxidase-conjugated secondary\\nantibody (Cell Signaling Technology) or IRDye secondary antibody (Licor),\\nbands were developed using Amersham ECL Prime Western blotting detection\\nkit on Amersham Hyperfilm ECL film (Amersham) or ChemiDoc imaging\\nsystem (Bio-Rad). ImageJ software was used for band quantification,\\nand the last was reported as relative amount as ratio of each protein\\nband relative to the lane’s loading control. Then the values\\nobtained were normalized to 0.1% DMSO vehicle control. Alternatively,\\nprotein levels were determined on a WES capillary electrophoresis\\ninstrument (Proteinsimple) using a BRD9 antibody (Bethyl A303-781A)\\nand a GAPDH antibody (Abcam no. ab9485) for normalization. DC50 and half-lives were determined by assuming a linear model\\nbetween the two data points across 50% protein level mark.

\\n
\\n \\n Proliferation\\nAssays\\n

A-204 cells (1 × 103) were seeded\\nper well of 384-well plates. After overnight incubation,\\ncompounds were added to the cells at logarithmic dose series using\\nthe HP digital dispenser D300 (Tecan), normalizing for added DMSO.\\n1 day and 8 days after seeding cellular ATP content was measured using\\nCellTiterGlo (Promega). Measurements after 8 days were divided by\\nthe measurement after 1 day (i.e., the T0 plate) to derive fold proliferation. Data were analyzed with GraphPad\\nPrism software to obtain EC50 values.

\\n
\\n \\n MS Proteomics\\n \\n Sample\\nPreparation\\n

RI-1 cells were seeded at 2 ×\\n106 cells/mL in a 10 cm plate 12 h before treatment. Cells\\nwere treated with 0.1% DMSO as vehicle control and with 100 nM VZ185\\nand 100 nM cisVZ185 as negative control. Cells were\\nincubated at 37 °C and 5% CO2 for 4 h before harvesting.\\nCells were washed twice with DPBS (Gibco) and lysed with 0.5 mL of\\n100 mM Tris, pH 8.0, 4% (w/v) SDS, supplemented with cOmplete Mini\\nEDTA-free protease inhibitor cocktail (Roche). Lysates were sonicated\\n(2 × 10 s) and centrifuged at 14 000 rpm for 20 min at\\n4 °C. The supernatant fraction of the cell extract was collected,\\nand protein concentration was quantified by BCA assay (Thermo Fisher\\nScientific). Further sample processing, digestion, desalting, TMT\\n10-plex isobaric labeling were performed as previously described.5 After labeling, the peptides from the 9 samples\\nwere pooled together in equal proportion. The pooled sample was fractionated\\ninto 20 discrete fractions using high pH reverse-phase chromatography\\non an XBridge peptide BEH column (130 Å, 3.5 μm, 2.1 mm\\n× 150 mm, Waters) on an Ultimate 3000 HPLC system (Thermo Scientific/Dionex).\\nA mixture of buffer A (10 mM ammonium formate in water, pH 9) and\\nB (10 mM ammonium formate in 90% CH3CN, pH 9) was used\\nover a linear gradient of 5% to 60% buffer B over 60 min at a flow\\nrate of 200 μL/min. The peptides eluted from the column were\\ncollected in 80 fractions before concatenation into 20 fractions based\\non the UV signal of each fraction. All the fractions were dried in\\na Genevac EZ-2 concentrator and resuspended in 1% formic acid for\\nMS analysis.

\\n
\\n \\n nLC–MS/MS Analysis\\n

The fractions\\nwere analyzed\\nsequentially on a Q Exactive HF hybrid quadrupole-Orbitrap mass spectrometer\\n(Thermo Scientific) coupled to an UltiMate 3000 RSLCnano UHPLC system\\n(Thermo Scientific) and EasySpray column (75 μm × 50 cm,\\nPepMap RSLC C18 column, 2 μm, 100 Å, Thermo Scientific).\\nA mix of buffer A (0.1% formic acid in H2O) and B (0.08%\\nformic acid in 80% CH3CN) was used over a linear gradient\\nfrom 5% to 35% buffer B over 125 min using a flow rate of 300 nL/min.\\nColumn temperature was set at 50 °C. The Q Exactive HF hybrid\\nquadrupole-Orbitrap mass spectrometer was operated in data dependent\\nmode with a single MS survey scan from 335 to 1600 m/z followed by 15 sequential m/z dependent MS2 scans. The 15 most intense precursor ions\\nwere sequentially fragmented by higher energy collision dissociation\\n(HCD). The MS1 isolation window was set to 0.7 Da and the resolution\\nset at 120 000. MS2 resolution was set at 60 000. The\\nAGC targets for MS1 and MS2 were set at 3e6 ions and 1e5 ions, respectively.\\nThe normalized collision energy was set at 32%. The maximum ion injection\\ntimes for MS1 and MS2 were set at 50 and 200 ms, respectively.

\\n
\\n \\n Peptide\\nand Protein Identification and Quantification\\n

The raw MS\\ndata files for all 20 fractions were merged and searched\\nagainst the Uniprot-sprot-Human-Canonical database by Maxquant software\\n1.6.0.16 for protein identification and TMT reporter ion quantitation.\\nThe identifications were based on the following criteria: enzyme used\\ntrypsin/P; maximum number of missed cleavages equal to 2; precursor\\nmass tolerance equal to 10 ppm; fragment mass tolerance equal\\nto 20 ppm. Variable modifications: oxidation (M), acetyl (N-term),\\ndeamidation (NQ), Gln → pyro-Glu (Q N-term). Fixed modifications:\\ncarbamidomethyl (C). The data were filtered by applying a 1% false\\ndiscovery rate followed by exclusion of proteins with less than two\\nunique peptides. Quantified proteins were filtered if the absolute\\nfold-change difference between the three DMSO replicates was \\n≥1.5.

\\n
\\n
\\n \\n Protein Expression and Purification\\n

Human proteins\\nVHL (UniProt accession number P40337), ElonginC (Q15369), and ElonginB\\n(Q15370) and the bromodomain (residues 134–239) for BRD9 (Q9H8M2)\\nwere used for all protein expression. His6-tagged constructs\\nwere transformed into Escherichia coli BL21(DE3),\\nand expression was induced by the addition of isopropyl β-d-1-thiogalactopyranoside (IPTG). E. coli cells\\nwere lysed using a pressure cell homogenizer (Stansted Fluid Power);\\nlysates were clarified by centrifuge and loaded onto a HisTrap FF\\naffinity column (GE Healthcare). Following elution, His-tags were\\nremoved with TEV protease and samples were loaded onto a second Ni\\naffinity column to obtain tag-free protein. Following dialysis in\\na low-salt buffer, BRD9 bromodomain and VCB complex proteins were\\nfurther purified using cation exchange (Resource S; GE Healthcare)\\nor anion exchange (Resource Q; GE Healthcare) chromatography, respectively.\\nThis was followed by a final polish by size-exclusion chromatography\\nusing a Superdex-75 16/600 column (GE Healthcare) equilibrated with\\n20 mM HEPES, pH 7.5, 100 mM sodium chloride, and 1 mM\\nTCEP.

\\n
\\n \\n Crystallization and Structure Solution of BRD9 Bromodomain Binary\\nComplex\\n

The binary complex of Brd9-BD:5 was\\ngenerated by incubating 500 μM Brd9 bromodomain with 750 μM\\ncompound 5 (from a 100 mM stock in DMSO). Crystals were\\ngrown using the hanging-drop vapor diffusion method by mixing equal\\nvolumes of binary complex solution and a crystallization solution\\ncontaining 24% PEG 3350 and 0.2 M NH4F. Small needle crystals\\nappeared within 48 h but took approximately 2 weeks to reach a suitable\\nsize for harvesting. Crystals were flash-frozen in liquid nitrogen\\nusing 20% ethylene glycol in liquor solution as a cryoprotectant.\\nDiffraction data were collected at Diamond Light Source beamline I24\\nusing a Pilatus 6M-F detector at a wavelength of 0.98962 Å. Data\\nwere indexed and integrated using XDS,78 and scaling and merging were performed with AIMLESS79 in CCP4i.80 The structure was\\nsolved by molecular replacement using MOLREP81 and a search model derived from a BRD9 bromodomain structure (PDB\\nentry 5I40).\\nThe initial model underwent iterative rounds of model building and\\nrefinement with COOT82 and REFMAC5,83 respectively. Compound 5 geometry\\nrestraints for refinement were prepared with the PRODRG84 server. Model geometry and steric clashes were\\nvalidated using the MOLPROBITY server;85 Ramachandran plots indicate that 97.7% of backbone torsion angles\\nare in the favored region and there are no outliers. The structure\\nhas been deposited in the Protein Data Bank (PDB) with accession code 6HM0; data collection\\nand refinement statistics are presented in Supporting Information Table S1.

\\n
\\n \\n AlphaLISA Proximity Assay\\n

All assays were performed\\nat room temperature in 384-well plates with a final assay volume of\\n25 μL per well, as described previously.5 All reagents were prepared as 5× stocks diluted in\\n50 mM HEPES, pH 7.5, 100 mM NaCl, 0.1% (w/v) bovine\\nserum albumin, and 0.02% (w/v) 3-[(cholamidopropyl)dimethylammonio]-1-propanesulfonate\\n(CHAPS). Plates were sealed by transparent film and briefly centrifuged\\nat 100g between additions of reagents. Biotinylated\\nVCB (100 nM final) and His6-BRD9-bromodomain (100 nM\\nfinal) were incubated with a range of PROTAC concentrations (0.5–2000 nM;\\ntwo-in-one serial dilution) for 1 h. Streptavidin-coated donor\\nbeads and nickel chelate acceptor beads (PerkinElmer) were added to\\na final concentration of 10 μg mL–1, and plates were incubated for another hour. Plates were read on\\na PHERAstar FS (BMG Labtech) using an optic module with an excitation\\nwavelength of 680 nm and emission wavelength of 615 nm.\\nIntensity values were plotted against PROTAC concentration on a log10 scale using GraphPad Prism, version 7. To obtain biotinylated-VCB,\\nprotein was mixed with EZ-link NHS-PEG4-biotin (Thermo\\nScientific) in a 1:1 molar ratio and incubated at room temperature\\nfor 1 h. The reaction was quenched using 1 M Tris-HCl, pH 7.5,\\nand unreacted NHS-biotin was removed with a PD-10 MiniTrap desalting\\ncolumn (GE Healthcare) equilibrated with 20 mM HEPES, pH 7.5,\\n150 mM NaCl, and 1 mM DTT.

\\n
\\n \\n Fluorescence Polarization\\n

All measurements were taken\\nusing a PHERAstar FS (BMG LABTECH) with fluorescence excitation and\\nemission wavelengths (λ) of 485 and 520 nm, respectively. FP\\ncompetitive binding assays were run in triplicate in 384-well plates\\n(Corning 3575) using a total well volume of 15 μL (ref (63)). Each well solution contained\\n15 nM VCB protein, 10 nM FAM-labeled HIF-1α peptide (FAM-DEALAHypYIPMDDDFQLRSF, Kd = 3 nM as measured by a direct FP titration),\\nand decreasing concentrations of PROTAC (14-point serial 2-fold dilutions\\nstarting from 50 μM PROTAC) or PROTAC:bromodomain (14-point\\nserial 2-fold dilutions starting from 50 μM PROTAC:100 μM\\nbromodomain into wells containing an additional 1 μM bromodomain)\\nin 100 mM Bis-Tris propane, 100 mM NaCl, 1 mM TCEP, pH 7, with a final\\nDMSO concentration of 1%. Control wells containing VCB and peptide\\nwith no compound (zero displacement), or peptide in the absence of\\nprotein (maximum displacement), were also included. Control values\\nwere used to obtain the percentage of displacement which was graphed\\nagainst log[PROTAC]. Average IC50 values and the standard\\nerror of the mean (SEM) were determined for each titration using Prism\\n7. Dissociation constants Kd were back-calculated\\nfrom the measured IC50 values using a displacement binding\\nmodel, as described previously.68

\\n
\\n \\n Isothermal\\nTitration Calorimetry\\n

ITC experiments were\\nperformed in an ITC200 microcalorimeter (GE Healthcare) as described\\npreviously.5 Titrations were carried out\\nat 25 °C while stirring at 750 rpm and were performed as reverse\\nmode (protein in the syringe and the ligand in the cell). Compounds\\nwere diluted in ITC buffer (20 mM Bis-Tris propane, 100 mM NaCl, 1\\nmM tris(2-carboxyethyl)phosphine (TCEP), pH 7.5) from 10 mM\\nDMSO stock solutions to a final concentration of 20 μM (0.2%\\nDMSO). Each run consisted of 19 injections of 2 μL of protein\\nsolution (ITC buffer with 0.2% DMSO) at a rate of 0.5 μL/s at\\n120 s time intervals. An initial injection of 0.4 μL was made\\nand discarded during data analysis. BRD9 bromodomain (200 μM,\\nin the syringe) was first titrated into the PROTAC (20 μM, in\\nthe cell); at the end of the titration, the excess of solution was\\nremoved from the cell and the syringe was washed and dried. VCB complex\\n(168 μM, in the same buffer) was loaded in the syringe and titrated\\ninto the complex PROTAC-bromodomain. The concentration of the complex\\nin the cell (C) after the first titration (16.8 μM),\\nwas calculated as follows:where C0 is the\\ninitial concentration of the PROTAC in the cell (20 μM), Vcell is the volume of the sample cell (200.12\\nμL), and Vinj is the volume of titrant\\ninjected during the first titration (38.4 μL). Titrations for\\nthe binary complex PROTAC-VCB were performed by first adding buffer\\n(38.4 μL) to the solution of PROTAC (20 μM, in the cell)\\nby a single ITC injection. After removal of the excess solution from\\nthe cell, VCB complex (168 μM, in the same buffer) was loaded\\ninto the (washed and dried) syringe and titrated into the diluted\\nPROTAC solution. The data were fitted to a single binding-site model\\nusing the MicroCal PEAQ-ITC analysis software provided by the manufacturer\\nto obtain the stoichiometry n, the dissociation constant Kd, and the enthalpy of binding ΔH.

\\n
\\n \\n Live Cell Kinetic Analysis of BRD7 and BRD9\\nDegradation\\n

HEK293 cells stably expressing LgBiT protein\\ncultured in DMEM (Gibco)\\nsupplemented with 10% fetal bovine serum (Seradigm) and maintained\\nat 37 °C and 5% CO2 were genome-edited using CRISPR/Cas9\\nto generate endogenous HiBiT-BRD7 or HiBiT-BRD9 fusions. Clonal populations\\nwere isolated, and cells were plated in 96-well tissue culture plates\\nat a density of 2 × 104 cells per well in 100 μL\\nof growth medium. Following overnight incubation at 37 °C and\\n5% CO2 medium was replaced with CO2-independent\\nmedium (Gibco) containing 20 μM Endurazine, an extended time-released\\nsubstrate (Promega), and plates were incubated at 37 °C, 5% CO2, for 2.5 h before addition of a 3-fold serial dilution of\\n1 μM final concentration VZ185 compound. Plates retaining the\\nplate lids were then read every 5 min for a period of 24 h on a GloMax\\nDiscover (Promega) set to 37 °C. Degradation traces for each\\nconcentration were plotted in GraphPad Prism, and the degradation\\nportion of each curve was fitted to a one-component exponential decay\\nmodel to obtain degradation parameters, rate, and Dmax, as previously described.69

\\n
\\n \\n NanoBRET Ubiquitination of BRD7 and BRD9\\n

Clonal populations\\nof edited HEK293 cells expressing HiBiT-BRD7 or HiBiT-BRD9 were plated\\nin tissue 96-well tissue culture plates at a density of 2 × 104 cells per well in 100 μL of growth medium and incubated\\novernight at 37 °C, 5% CO2. Following treatment with\\n1 μM VZ185 for the indicated time frames, medium was replaced\\nwith Opti-MEM (Gibco) containing 200 μg/mL digitonin, 1:200\\ndilution of primary anti-Ub antibody (Enzo Life Sciences, BML-PW8810),\\n1:500 dilution of secondary anti-mouse Alexa 594 antibody (Cell Signaling\\nTechnologies, 8890), and 20 μM NanoGlo (Promega) substrate.\\nAdditional control wells received no antibodies (control for background\\nNanoBRET) or no primary antibody (control for specificity). Plates\\nwere placed on an orbital shaker for 10 min, and NanoBRET measurements\\nwere collected on a CLARIOstar (BMG Labtech). Background subtracted\\nNanoBRET ratios were generated by calculating the ratios of acceptor\\nsignal to donor signal in both the presence and absence of the Alexa594\\nantibody and computing the difference. Background subtracted BRET\\nratios were expressed in milliBRET units by multiplying by 1000.

\\n
\\n
\\n \\n \\n \\n Supporting Information Available\\n

The Supporting Information is\\navailable free of charge on the ACS Publications website at DOI: 10.1021/acs.jmedchem.8b01413.

Additional Western\\nBlots and quantification of protein\\nlevels in HeLa, Hek293 and RI-1 cells; ITC titration curves and results;\\nprotein level profile of HiBiT-BRD2/3/4/7/9 and HiBiT-SMARCA4 after\\ntreatment with desired compounds; concentration-dependency evaluation\\nof VZ185 and dBRD9 activity in EOL-1 and A-204 cells; AlphaLISA ternary\\ncomplex formation for 5, 26, and VZ185 and\\ncooperativity with VZ185 with FP; proteomic supplementary blots and\\ngraph for cisVZ185; physicochemical properties and\\nin vitro PK data on compounds 26, 46, VZ185,\\nand cisVZ185; original blot images; NMR spectra;\\nHPLC traces of VZ185 and cisVZ185 (PDF)

Molecular formula strings\\n(CSV)

Proteomics\\nraw data (XLS)

\\n
\\n \\n Supplementary Material\\n \\n \\n \\n

jm8b01413_si_001.pdf

\\n \\n
\\n
\\n \\n \\n \\n

jm8b01413_si_002.csv

\\n \\n
\\n
\\n \\n \\n \\n

jm8b01413_si_003.xls

\\n \\n
\\n
\\n
\\n \\n Accession Codes\\n

Atomic coordinates\\nand structure factors for BRD9-BD:5 have been deposited\\nto the Protein Data Bank (PDB) under accession number 6HM0. Authors will release\\nthe atomic coordinates and experimental data upon article publication.

\\n
\\n \\n Author Present Address\\n

# C.M.: Chemistry Research Laboratory, Department of Chemistry,\\nUniversity\\nof Oxford, 12 Mansfield Road, Oxford OX1 3TA, United Kingdom.

\\n
\\n \\n Author Contributions\\n

The\\nmanuscript\\nwas written through contributions of all authors. All authors have\\ngiven approval to the final version of the manuscript.

\\n
\\n \\n

The\\nauthors\\ndeclare the following competing financial interest(s): The Ciulli\\nlaboratory receives sponsored research support from Boehringer Ingelheim\\nand Nurix Inc. A.C. is a scientific founder, director, and shareholder\\nof Amphista Therapeutics, a company that is developing targeted protein\\ndegradation therapeutic platforms.

\\n
\\n \\n Acknowledgments\\n

We thank J. Wright and\\nthe staff of the MRC tissue\\nculture facility for assistance with tissue culture; A. Atrih and\\nD. Lamont for support with proteomics experiments; N. Trainor for\\nassistance with proteomics data analysis; P. Fyfe for support with\\nin-house X-ray facilities, and the Diamond Light Source for beamtime\\n(BAG Proposal 14980) and beamline support at beamline I24; and Kevin\\nRead and his team at the Dundee Drug Discovery Unit for in vitro DMPK\\ndata. This project has received funding from the European Research\\nCouncil (ERC) under the European Union’s Seventh Framework\\nProgramme (FP7/2007–2013) as a Starting Grant to A.C. (Grant\\nAgreement ERC-2012-StG-311460 DrugE3CRLs). Biophysics and drug discovery\\nactivities are supported by Wellcome Trust strategic awards to Dundee\\n(Grants 100476/Z/12/Z and 094090/Z/10/Z, respectively). V.Z. was supported\\nby the “Scuola di Dottorato in Scienze e Tecnologie della Chimica\\ne dei Materiali” of the University of Genova, Italy.

\\n
\\n \\n \\n Abbreviations Used\\n \\n BET\\n \\n

bromodomain\\nand extra-terminal

\\n
\\n
\\n \\n BRD2/3/4/7/9\\n \\n

bromodomain-containing\\nprotein 2/3/4/7/9

\\n
\\n
\\n \\n CRBN\\n \\n

cereblon

\\n
\\n
\\n \\n DLBCL\\n \\n

diffuse large B cell lymphoma

\\n
\\n
\\n \\n DIPEA\\n \\n

N,N-diisopropylethylamine

\\n
\\n
\\n \\n HATU\\n \\n

1-[bis(dimethylamino)methylene]-1H-1,2,3-triazolo[4,5-b]pyridinium\\n3-oxide hexafluorophosphate

\\n
\\n
\\n \\n HOAt\\n \\n

1-hydroxy-7-azabenzotriazole solution

\\n
\\n
\\n \\n MsCl\\n \\n

methanesulfonyl chloride

\\n
\\n
\\n \\n PROTAC\\n \\n

proteolysis-targeting\\nchimera

\\n
\\n
\\n \\n NaHMDS\\n \\n

sodium\\nbis(trimethylsilyl)amide

\\n
\\n
\\n \\n NaH\\n \\n

sodium hydride

\\n
\\n
\\n \\n TEMPO\\n \\n

2,2,6,6-tetramethyl-1-piperidinyloxy

\\n
\\n
\\n \\n VCB\\n \\n

VHL-ElonginC-ElonginB\\ncomplex

\\n
\\n
\\n \\n VHL\\n \\n

von\\nHippel–Lindau

\\n
\\n
\\n
\\n
\\n \\n References\\n \\n LaiA. C.; CrewsC. M.\\nInduced\\nProtein Degradation: An Emerging Drug Discovery\\nParadigm. Nat. Rev. Drug Discovery\\n2017, 16 (2), 101114. 10.1038/nrd.2016.211.27885283\\n \\n \\n CollinsI.; WangH.; CaldwellJ. J.; ChopraR.\\nChemical Approaches\\nto Targeted Protein Degradation Through Modulation of the Ubiquitin–Proteasome\\nPathway. Biochem. J.\\n2017, 474 (7), 11271147. 10.1042/BCJ20160762.28298557\\n \\n \\n SakamotoK. M.; KimK. B.; KumagaiA.; MercurioF.; CrewsC. M.; DeshaiesR. J.\\nProtacs: Chimeric\\nMolecules That Target Proteins to\\nthe Skp1-Cullin-F Box Complex for Ubiquitination and Degradation. Proc. Natl. Acad. Sci. U. S. A.\\n2001, 98 (15), 85548559. 10.1073/pnas.141230798.11438690\\n \\n \\n OttisP.; CrewsC. M.\\nProteolysis-Targeting\\nChimeras: Induced Protein Degradation\\nas a Therapeutic Strategy. ACS Chem. Biol.\\n2017, 12 (4), 892898. 10.1021/acschembio.6b01068.28263557\\n \\n \\n GaddM. S.; TestaA.; LucasX.; ChanK.-H.; ChenW.; LamontD. J.; ZengerleM.; CiulliA.\\nStructural Basis of\\nPROTAC Cooperative Recognition for Selective Protein Degradation. Nat. Chem. Biol.\\n2017, 13 (5), 514521. 10.1038/nchembio.2329.28288108\\n \\n \\n NowakR. P.; DeAngeloS. L.; BuckleyD.; HeZ.; DonovanK. A.; AnJ.; SafaeeN.; JedrychowskiM. P.; PonthierC. M.; IshoeyM.; ZhangT.; ManciasJ. D.; GrayN. S.; BradnerJ. E.; FischerE. S.\\nPlasticity in Binding\\nConfers Selectivity in Ligand-Induced\\nProtein Degradation. Nat. Chem. Biol.\\n2018, 14 (7), 706714. 10.1038/s41589-018-0055-y.29892083\\n \\n \\n HughesS. J.; CiulliA.\\nMolecular Recognition of Ternary Complexes: A New Dimension\\nin the Structure-Guided Design of Chemical Degraders. Essays Biochem.\\n2017, 61 (5), 505516. 10.1042/EBC20170041.29118097\\n \\n \\n BondesonD. P.; MaresA.; SmithI. E. D.; KoE.; CamposS.; MiahA. H.; MulhollandK. E.; RoutlyN.; BuckleyD. L.; GustafsonJ. L.; ZinnN.; GrandiP.; ShimamuraS.; BergaminiG.; Faelth-SavitskiM.; BantscheffM.; CoxC.; GordonD. A.; WillardR. R.; FlanaganJ. J.; CasillasL. N.; VottaB. J.; den BestenW.; FammK.; KruidenierL.; CarterP. S.; HarlingJ. D.; ChurcherI.; CrewsC. M.\\nCatalytic\\nin Vivo Protein Knockdown by Small-Molecule PROTACs. Nat. Chem. Biol.\\n2015, 11 (8), 611617. 10.1038/nchembio.1858.26075522\\n \\n \\n DurhamT. B.; BlancoM.-J.\\nTarget Engagement\\nin Lead Generation. Bioorg. Med. Chem. Lett.\\n2015, 25 (5), 9981008. 10.1016/j.bmcl.2014.12.076.25630223\\n \\n \\n ZengerleM.; ChanK.-H.; CiulliA.\\nSelective Small Molecule Induced\\nDegradation of the BET Bromodomain Protein BRD4. ACS Chem. Biol.\\n2015, 10 (8), 17701777. 10.1021/acschembio.5b00216.26035625\\n \\n \\n ChanK.-H.; ZengerleM.; TestaA.; CiulliA.\\nImpact of Target Warhead\\nand Linkage Vector on Inducing Protein Degradation: Comparison of\\nBromodomain and Extra-Terminal (BET) Degraders Derived from Triazolodiazepine\\n(JQ1) and Tetrahydroquinoline (I-BET726) BET Inhibitor Scaffolds. J. Med. Chem.\\n2018, 61 (2), 504513. 10.1021/acs.jmedchem.6b01912.28595007\\n \\n \\n BondesonD. P.; SmithB. E.; BurslemG. M.; BuhimschiA. D.; HinesJ.; Jaime-FigueroaS.; WangJ.; HammanB. D.; IshchenkoA.; CrewsC. M.\\nLessons in PROTAC Design from Selective\\nDegradation with a Promiscuous Warhead. Cell\\nChem. Biol.\\n2018, 25 (1), 7887. 10.1016/j.chembiol.2017.09.010.29129718\\n \\n \\n HuangX.; DixitV. M.\\nDrugging the Undruggables:\\nExploring the Ubiquitin\\nSystem for Drug Development. Cell Res.\\n2016, 26 (4), 484498. 10.1038/cr.2016.31.27002218\\n \\n \\n WinterG.\\nE.; BuckleyD. L.; PaulkJ.; RobertsJ. M.; SouzaA.; Dhe-PaganonS.; BradnerJ. E.\\nPhthalimide Conjugation as a Strategy\\nfor in Vivo Target Protein Degradation. Science\\n2015, 348 (6241), 13761381. 10.1126/science.aab1433.25999370\\n \\n \\n LuJ.; QianY.; AltieriM.; DongH.; WangJ.; RainaK.; HinesJ.; WinklerJ. D.; CrewA. P.; ColemanK.; CrewsC. M.\\nHijacking the E3 Ubiquitin Ligase\\nCereblon to Efficiently Target BRD4. Chem. Biol.\\n2015, 22 (6), 755763. 10.1016/j.chembiol.2015.05.009.26051217\\n \\n \\n QinC.; HuY.; ZhouB.; Fernandez-SalasE.; YangC.-Y.; LiuL.; McEachernD.; PrzybranowskiS.; WangM.; StuckeyJ.; MeagherJ.; BaiL.; ChenZ.; LinM.; YangJ.; ZiazadehD. N.; XuF.; HuJ.; XiangW.; HuangL.; LiS.; WenB.; SunD.; WangS.\\nDiscovery of QCA570 as an Exceptionally Potent and\\nEfficacious Proteolysis Targeting Chimera (PROTAC) Degrader of the\\nBromodomain and Extra-Terminal (BET) Proteins Capable of Inducing\\nComplete and Durable Tumor Regression. J. Med.\\nChem.\\n2018, 61 (15), 66856704. 10.1021/acs.jmedchem.8b00506.30019901\\n \\n \\n RainaK.; LuJ.; QianY.; AltieriM.; GordonD.; RossiA. M. K.; WangJ.; ChenX.; DongH.; SiuK.; WinklerJ. D.; CrewA. P.; CrewsC. M.; ColemanK. G.\\nPROTAC-Induced\\nBET Protein Degradation as a Therapy for Castration-Resistant Prostate\\nCancer. Proc. Natl. Acad. Sci. U. S. A.\\n2016, 113 (26), 71247129. 10.1073/pnas.1521738113.27274052\\n \\n \\n RemillardD.; BuckleyD. L.; PaulkJ.; BrienG. L.; SonnettM.; SeoH.-S.; DastjerdiS.; WührM.; Dhe-PaganonS.; ArmstrongS. A.; BradnerJ. E.\\nDegradation of the\\nBAF Complex Factor BRD9 by Heterobifunctional Ligands. Angew. Chem.\\n2017, 129 (21), 58325837. 10.1002/ange.201611281.\\n \\n \\n GechijianL. N.; BuckleyD. L.; LawlorM. A.; ReyesJ. M.; PaulkJ.; OttC. J.; WinterG. E.; ErbM. A.; ScottT. G.; XuM.; SeoH. S.; Dhe-PaganonS.; KwiatkowskiN. P.; PerryJ. A.; QiJ.; GrayN. S.; BradnerJ. E.\\nFunctional\\nTRIM24 Degrader via Conjugation of Ineffectual Bromodomain and VHL\\nLigands. Nat. Chem. Biol.\\n2018, 14 (4), 405412. 10.1038/s41589-018-0010-y.29507391\\n \\n \\n SchiedelM.; HerpD.; HammelmannS.; SwyterS.; LehotzkyA.; RobaaD.; OláhJ.; OvádiJ.; SipplW.; JungM.\\nChemically Induced\\nDegradation of\\nSirtuin 2 (Sirt2) by a Proteolysis Targeting Chimera (PROTAC) Based\\non Sirtuin Rearranging Ligands (SirReals). J.\\nMed. Chem.\\n2018, 61 (2), 482491. 10.1021/acs.jmedchem.6b01872.28379698\\n \\n \\n BassiZ. I.; FillmoreM. C.; MiahA. H.; ChapmanT. D.; MallerC.; RobertsE. J.; DavisL. C.; LewisD. E.; GalweyN. W.; WaddingtonK. E.; ParraviciniV.; Macmillan-JonesA. L.; GongoraC.; HumphreysP. G.; ChurcherI.; PrinjhaR. K.; ToughD. F.\\nModulating PCAF/GCN5\\nImmune Cell Function Through a\\nPROTAC Approach. ACS Chem. Biol.\\n2018, 13 (10), 28622867. 10.1021/acschembio.8b00705.30200762\\n \\n \\n LaiA. C.; ToureM.; HellerschmiedD.; SalamiJ.; Jaime-FigueroaS.; KoE.; HinesJ.; CrewsC. M.\\nModular PROTAC Design for the Degradation\\nof Oncogenic BCR-ABL. Angew. Chem., Int. Ed.\\n2016, 55 (2), 807810. 10.1002/anie.201507634.\\n \\n \\n HuangH.-T.; DobrovolskyD.; PaulkJ.; YangG.; WeisbergE. L.; DoctorZ. M.; BuckleyD. L.; ChoJ.-H.; KoE.; JangJ.; ShiK.; ChoiH. G.; GriffinJ. D.; LiY.; TreonS. P.; FischerE. S.; BradnerJ. E.; TanL.; GrayN. S.\\nA Chemoproteomic Approach to Query the Degradable Kinome\\nUsing a Multi-Kinase Degrader. Cell Chem. Biol.\\n2018, 25 (1), 8899. 10.1016/j.chembiol.2017.10.005.29129717\\n \\n \\n CrewA. P.; RainaK.; DongH.; QianY.; WangJ.; VigilD.; SerebrenikY. V.; HammanB. D.; MorganA.; FerraroC.; SiuK.; NeklesaT. K.; WinklerJ. D.; ColemanK. G.; CrewsC. M.\\nIdentification and Characterization\\nof Von Hippel-Lindau-Recruiting Proteolysis Targeting Chimeras (PROTACs)\\nof TANK-Binding Kinase 1. J. Med. Chem.\\n2018, 61 (2), 583598. 10.1021/acs.jmedchem.7b00635.28692295\\n \\n \\n OlsonC. M.; JiangB.; ErbM. A.; LiangY.; DoctorZ. M.; ZhangZ.; ZhangT.; KwiatkowskiN.; BoukhaliM.; GreenJ. L.; HaasW.; NomanbhoyT.; FischerE. S.; YoungR. A.; BradnerJ. E.; WinterG. E.; GrayN. S.\\nPharmacological Perturbation of CDK9 Using Selective\\nCDK9 Inhibition or Degradation. Nat. Chem. Biol.\\n2017, 14 (2), 163170. 10.1038/nchembio.2538.29251720\\n \\n \\n RobbC. M.; ContrerasJ. I.; KourS.; TaylorM. A.; AbidM.; SonawaneY. A.; ZahidM.; MurryD. J.; NatarajanA.; RanaS.\\nChemically Induced Degradation of CDK9 by a Proteolysis Targeting\\nChimera (PROTAC). Chem. Commun.\\n2017, 53 (54), 75777580. 10.1039/C7CC03879H.\\n \\n \\n ShibataN.; NagaiK.; MoritaY.; UjikawaO.; OhokaN.; HattoriT.; KoyamaR.; SanoO.; ImaedaY.; NaraH.; ChoN.; NaitoM.\\nDevelopment of Protein\\nDegradation Inducers of Androgen Receptor by Conjugation of Androgen\\nReceptor Ligands and Inhibitor of Apoptosis Protein Ligands. J. Med. Chem.\\n2018, 61 (2), 543575. 10.1021/acs.jmedchem.7b00168.28594553\\n \\n \\n SalamiJ.; AlabiS.; WillardR. R.; VitaleN. J.; WangJ.; DongH.; JinM.; McDonnellD. P.; CrewA. P.; NeklesaT. K.; CrewsC. M.\\nAndrogen\\nReceptor\\nDegradation by the Proteolysis-Targeting Chimera ARCC-4 Outperforms\\nEnzalutamide in Cellular Models of Prostate Cancer Drug Resistance. Commun. Biol.\\n2018, 1, 10010.1038/s42003-018-0105-8.30271980\\n \\n \\n ManiaciC.; HughesS. J.; TestaA.; ChenW.; LamontD. J.; RochaS.; AlessiD. R.; RomeoR.; CiulliA.\\nHomo-PROTACs:\\nBivalent Small-Molecule Dimerizers of the VHL E3 Ubiquitin Ligase\\nto Induce Self-Degradation. Nat. Commun.\\n2017, 8 (1), 83010.1038/s41467-017-00954-1.29018234\\n \\n \\n SteinebachC.; LindnerS.; UdeshiN. D.; ManiD. C.; KehmH.; KöpffS.; CarrS. A.; GütschowM.; KronkeJ.\\nHomo-PROTACs for the\\nChemical Knockdown of Cereblon. ACS Chem. Biol.\\n2018, 13 (9), 27712782. 10.1021/acschembio.8b00693.30118587\\n \\n \\n CyrusK.; WehenkelM.; ChoiE.-Y.; LeeH.; SwansonH.; KimK.-B.\\nJostling for Position: Optimizing Linker Location in\\nthe Design of Estrogen Receptor-Targeting PROTACs. ChemMedChem\\n2010, 5 (7), 979985. 10.1002/cmdc.201000146.20512796\\n \\n \\n ZorbaA.; NguyenC.; XuY.; StarrJ.; BorzilleriK.; SmithJ.; ZhuH.; FarleyK. A.; DingW.; SchiemerJ.; FengX.; ChangJ. S.; UccelloD. P.; YoungJ. A.; Garcia-IrrizaryC. N.; CzabaniukL.; SchuffB.; OliverR.; MontgomeryJ.; HaywardM. M.; CoeJ.; ChenJ.; NiosiM.; LuthraS.; ShahJ. C.; El-KattanA.; QiuX.; WestG. M.; NoeM. C.; ShanmugasundaramV.; GilbertA. M.; BrownM. F.; CalabreseM. F.\\nDelineating\\nthe Role of Cooperativity in the Design of Potent PROTACs for BTK. Proc. Natl. Acad. Sci. U. S. A.\\n2018, 115 (31), E7285E7292. 10.1073/pnas.1803662115.30012605\\n \\n \\n BulatovE.; CiulliA.\\nTargeting Cullin–RING\\nE3 Ubiquitin Ligases for\\nDrug Discovery: Structure, Assembly and Small-Molecule Modulation. Biochem. J.\\n2015, 467 (3), 365386. 10.1042/BJ20141450.25886174\\n \\n \\n LucasX.; CiulliA.\\nRecognition of Substrate Degrons by E3 Ubiquitin Ligases\\nand Modulation by Small-Molecule Mimicry Strategies. Curr. Opin. Struct. Biol.\\n2017, 44, 101110. 10.1016/j.sbi.2016.12.015.28130986\\n \\n \\n FischerE. S.; ScrimaA.; BöhmK.; MatsumotoS.; LingarajuG. M.; FatyM.; YasudaT.; CavadiniS.; WakasugiM.; HanaokaF.; IwaiS.; GutH.; SugasawaK.; ThomäN. H.\\nThe Molecular Basis of CRL4DDB2/CSA\\nUbiquitin Ligase Architecture, Targeting, and Activation. Cell\\n2011, 147 (5), 10241039. 10.1016/j.cell.2011.10.035.22118460\\n \\n \\n PetroskiM. D.; DeshaiesR. J.\\nFunction and Regulation of Cullin–RING\\nUbiquitin\\nLigases. Nat. Rev. Mol. Cell Biol.\\n2005, 6 (1), 920. 10.1038/nrm1547.15688063\\n \\n \\n ZhuY. X.; BraggioE.; ShiC.-X.; BruinsL. A.; SchmidtJ. E.; Van WierS.; ChangX.-B.; BjorklundC. C.; FonsecaR.; BergsagelP. L.; OrlowskiR. Z.; StewartA. K.\\nCereblon\\nExpression is Required for the Antimyeloma Activity of Lenalidomide\\nand Pomalidomide. Blood\\n2011, 118 (18), 47714779. 10.1182/blood-2011-05-356063.21860026\\n \\n \\n TheodoulouN. H.; BamboroughP.; BannisterA. J.; BecherI.; BitR. A.; CheK. H.; ChungC.; DittmannA.; DrewesG.; DrewryD. H.; GordonL.; GrandiP.; LeveridgeM.; LindonM.; MichonA. M.; MolnarJ.; RobsonS. C.; TomkinsonN. C.; KouzaridesT.; PrinjhaR. K.; HumphreysP. G.\\nDiscovery\\nof I-BRD9, a Selective Cell Active Chemical Probe for Bromodomain\\nContaining Protein 9 Inhibition. J. Med. Chem.\\n2016, 59 (4), 14251439. 10.1021/acs.jmedchem.5b00256.25856009\\n \\n \\n KadochC.; HargreavesD. C.; HodgesC.; EliasL.; HoL.; RanishJ.; CrabtreeG. R.\\nProteomic and Bioinformatic Analysis\\nof Mammalian SWI/SNF Complexes Identifies Extensive Roles in Human\\nMalignancy. Nat. Genet.\\n2013, 45 (6), 592601. 10.1038/ng.2628.23644491\\n \\n \\n KaeserM. D.; AslanianA.; DongM.-Q.; YatesJ. R.; EmersonB. M.\\nBRD7, a\\nNovel PBAF-Specific SWI/SNF Subunit, is Required for Target Gene Activation\\nand Repression in Embryonic Stem Cells. J. Biol.\\nChem.\\n2008, 283 (47), 3225432263. 10.1074/jbc.M806061200.18809673\\n \\n \\n NarlikarG. J.; SundaramoorthyR.; Owen-HughesT.\\nMechanisms and Functions of ATP-Dependent\\nChromatin-Remodeling Enzymes. Cell\\n2013, 154 (3), 490503. 10.1016/j.cell.2013.07.011.23911317\\n \\n \\n HohmannA. F.; VakocC. R.\\nA Rationale to Target the SWI/SNF Complex for Cancer\\nTherapy. Trends Genet.\\n2014, 30 (8), 356363. 10.1016/j.tig.2014.05.001.24932742\\n \\n \\n MartensJ. A.\\nEvidence\\nThat Swi/Snf Directly Represses Transcription in S. Cerevisiae. Genes Dev.\\n2002, 16 (17), 22312236. 10.1101/gad.1009902.12208846\\n \\n \\n KangJ. U.; KooS. H.; KwonK. C.; ParkJ. W.; KimJ. M.\\nGain at\\nChromosomal Region 5p15.33, Containing TERT, is the Most Frequent\\nGenetic Event in Early Stages of Non-Small Cell Lung Cancer. Cancer Genet. Cytogenet.\\n2008, 182 (1), 111. 10.1016/j.cancergencyto.2007.12.004.18328944\\n \\n \\n ScottoL.; NarayanG.; NandulaS. V.; SubramaniyamS.; KaufmannA. M.; WrightJ. D.; PothuriB.; MansukhaniM.; SchneiderA.; Arias-PulidoH.; MurtyV. V.\\nIntegrative Genomics\\nAnalysis of Chromosome 5p Gain in Cervical Cancer Reveals Target Over-Expressed\\nGenes, Including Drosha. Mol. Cancer\\n2008, 7, 5810.1186/1476-4598-7-58.18559093\\n \\n \\n YuX.; LiZ.; ShenJ.\\nBRD7: A Novel\\nTumor Suppressor Gene in Different Cancers. Am. J. Transl. Res.\\n2016, 8 (2), 742748.27158366\\n \\n \\n DrostJ.; MantovaniF.; ToccoF.; ElkonR.; ComelA.; HolstegeH.; KerkhovenR.; JonkersJ.; VoorhoeveP. M.; AgamiR.; Del SalG.\\nBRD7 Is a Candidate Tumour Suppressor\\nGene Required for P53 Function. Nat. Cell Biol.\\n2010, 12 (4), 380389. 10.1038/ncb2038.20228809\\n \\n \\n ChiuY.-H.; LeeJ. Y.; CantleyL. C.\\nBRD7, a\\nTumor Suppressor, Interacts\\nwith P85α and Regulates PI3K Activity. Mol. Cell\\n2014, 54 (1), 193202. 10.1016/j.molcel.2014.02.016.24657164\\n \\n \\n HarteM. T.; O’BrienG. J.; RyanN. M.; GorskiJ. J.; SavageK. I.; CrawfordN. T.; MullanP. B.; HarkinD. P.\\nBRD7, a\\nSubunit\\nof SWI/SNF Complexes, Binds Directly to BRCA1 and Regulates BRCA1-Dependent\\nTranscription. Cancer Res.\\n2010, 70 (6), 25382547. 10.1158/0008-5472.CAN-09-2089.20215511\\n \\n \\n NiuW.; LuoY.; WangX.; ZhouY.; LiH.; WangH.; FuY.; LiuS.; YinS.; LiJ.; ZhaoR.; LiuY.; FanS.; LiZ.; XiongW.; LiX.; LiG.; RenC.; TanM.; ZhouM.\\nBRD7 Inhibits the Warburg\\nEffect and Tumor Progression Through Inactivation of HIF1α/LDHA\\nAxis in Breast Cancer. Cell Death Dis.\\n2018, 9 (5), 51910.1038/s41419-018-0536-7.29725006\\n \\n \\n GatenbyR. A.; GilliesR. J.\\nWhy Do Cancers Have\\nHigh Aerobic Glycolysis?. Nat. Rev. Cancer\\n2004, 4 (11), 891899. 10.1038/nrc1478.15516961\\n \\n \\n ParkS. W.; HerremaH.; SalazarM.; CakirI.; CabiS.; Basibuyuk SahinF.; ChiuY.-H.; CantleyL. C.; OzcanU.\\nBRD7 Regulates\\nXBP1s’ Activity and Glucose Homeostasis Through its Interaction\\nwith the Regulatory Subunits of PI3K. Cell Metab.\\n2014, 20 (1), 7384. 10.1016/j.cmet.2014.04.006.24836559\\n \\n \\n PanD.; KobayashiA.; JiangP.; Ferrari de AndradeL.; TayR. E.; LuomaA. M.; TsoucasD.; QiuX.; LimK.; RaoP.; LongH. W.; YuanG. C.; DoenchJ.; BrownM.; LiuX. S.; WucherpfennigK. W.\\nA Major\\nChromatin Regulator Determines Resistance of Tumor Cells to T Cell-Mediated\\nKilling. Science\\n2018, 359 (6377), 770775. 10.1126/science.aao1710.29301958\\n \\n \\n ClarkP. G. K.; VieiraL. C. C.; TallantC.; FedorovO.; SingletonD. C.; RogersC. M.; MonteiroO. P.; BennettJ. M.; BaronioR.; MüllerS.; DanielsD. L.; MéndezJ.; KnappS.; BrennanP. E.; DixonD. J.\\nLP99: Discovery\\nand Synthesis of the First Selective BRD7/9 Bromodomain Inhibitor. Angew. Chem., Int. Ed.\\n2015, 54 (21), 62176221. 10.1002/anie.201501394.\\n \\n \\n HayD. A.; RogersC. M.; FedorovO.; TallantC.; MartinS.; MonteiroO. P.; MüllerS.; KnappS.; SchofieldC. J.; BrennanP. E.\\nDesign and Synthesis\\nof Potent and Selective Inhibitors\\nof BRD7 and BRD9 Bromodomains. MedChemComm\\n2015, 6 (7), 13811386. 10.1039/C5MD00152H.\\n \\n \\n MartinL.\\nJ.; KoeglM.; BaderG.; CockcroftX.-L.; FedorovO.; FiegenD.; GerstbergerT.; HofmannM. H.; HohmannA. F.; KesslerD.; KnappS.; KneslP.; KorniggS.; MüllerS.; NarH.; RogersC.; RumpelK.; SchaafO.; SteurerS.; TallantC.; VakocC. R.; ZeebM.; ZoephelA.; PearsonM.; BoehmeltG.; McConnellD.\\nStructure-Based\\nDesign of an in Vivo Active Selective BRD9 Inhibitor. J. Med. Chem.\\n2016, 59 (10), 44624475. 10.1021/acs.jmedchem.5b01865.26914985\\n \\n \\n CrawfordT. D.; VartanianS.; CôtéA.; BellonS.; DuplessisM.; FlynnE. M.; HewittM.; HuangH.-R.; KieferJ. R.; MurrayJ.; NasveschukC. G.; PardoE.; RomeroF. A.; SandyP.; TangY.; TaylorA. M.; TsuiV.; WangJ.; WangS.; ZawadzkeL.; AlbrechtB. K.; MagnusonS. R.; CochranA. G.; StokoeD.\\nInhibition of Bromodomain-Containing\\nProtein 9 for the Prevention of Epigenetically-Defined Drug Resistance. Bioorg. Med. Chem. Lett.\\n2017, 27 (15), 35343541. 10.1016/j.bmcl.2017.05.063.28606761\\n \\n \\n HohmannA. F.; MartinL. J.; MinderJ. L.; RoeJ.-S.; ShiJ.; SteurerS.; BaderG.; McConnellD.; PearsonM.; GerstbergerT.; GottschamelT.; ThompsonD.; SuzukiY.; KoeglM.; VakocC. R.\\nSensitivity\\nand Engineered Resistance of Myeloid Leukemia Cells to BRD9 Inhibition. Nat. Chem. Biol.\\n2016, 12 (9), 672679. 10.1038/nchembio.2115.27376689\\n \\n \\n HanT.; GoralskiM.; GaskillN.; CapotaE.; KimJ.; TingT. C.; XieY.; WilliamsN. S.; NijhawanD.\\nAnticancer\\nSulfonamides Target Splicing by Inducing RBM39 Degradation via Recruitment\\nto DCAF15. Science\\n2017, 356 (6336), eaal375510.1126/science.aal3755.28302793\\n \\n \\n UeharaT.; MinoshimaY.; SaganeK.; SugiN. H.; MitsuhashiK. O.; YamamotoN.; KamiyamaH.; TakahashiK.; KotakeY.; UesugiM.; YokoiA.; InoueA.; YoshidaT.; MabuchiM.; TanakaA.; OwaT.\\nSelective\\nDegradation of Splicing Factor CAPERα by Anticancer Sulfonamides. Nat. Chem. Biol.\\n2017, 13 (6), 675680. 10.1038/nchembio.2363.28437394\\n \\n \\n GaldeanoC.; GaddM. S.; SoaresP.; ScaffidiS.; Van MolleI.; BircedI.; HewittS.; DiasD. M.; CiulliA.\\nStructure-Guided\\nDesign and Optimization of Small Molecules Targeting the Protein–Protein\\nInteraction Between the Von Hippel–Lindau (VHL) E3 Ubiquitin\\nLigase and the Hypoxia Inducible Factor (HIF) Alpha Subunit with in\\nVitro Nanomolar Affinities. J. Med. Chem.\\n2014, 57 (20), 86578663. 10.1021/jm5011258.25166285\\n \\n \\n FrostJ.; GaldeanoC.; SoaresP.; GaddM. S.; GrzesK. M.; EllisL.; EpemoluO.; ShimamuraS.; BantscheffM.; GrandiP.; ReadK. D.; CantrellD. A.; RochaS.; CiulliA.\\nPotent and Selective\\nChemical Probe\\nof Hypoxic Signalling Downstream of HIF-α Hydroxylation via\\nVHL Inhibition. Nat. Commun.\\n2016, 7, 1331210.1038/ncomms13312.27811928\\n \\n \\n SoaresP.; GaddM. S.; FrostJ.; GaldeanoC.; EllisL.; EpemoluO.; RochaS.; ReadK. D.; CiulliA.\\nGroup-Based\\nOptimization of Potent and Cell-Active Inhibitors of the von Hippel–Lindau\\n(VHL) E3 Ubiquitin Ligase: Structure–Activity Relationships\\nLeading to the Chemical Probe (2S,4R)-1-((S)-2-(1-Cyanocyclopropanecarboxamido)-3,3-dimethylbutanoyl)-4-hydroxy-N-(4-(4-methylthiazol-5-yl)benzyl)pyrrolidine-2-carboxamide\\n(VH298). J. Med. Chem.\\n2018, 61 (2), 599618. 10.1021/acs.jmedchem.7b00675.28853884\\n \\n \\n FischerE. S.; BöhmK.; LydeardJ. R.; YangH.; StadlerM. B.; CavadiniS.; NagelJ.; SerlucaF.; AckerV.; LingarajuG. M.; TichkuleR. B.; SchebestaM.; ForresterW. C.; SchirleM.; HassiepenU.; OttlJ.; HildM.; BeckwithR. E.; HarperJ. W.; JenkinsJ. L.; ThomäN. H.\\nStructure\\nof the DDB1–CRBN\\nE3 Ubiquitin Ligase in Complex with Thalidomide. Nature\\n2014, 512 (7512), 4953. 10.1038/nature13527.25043012\\n \\n \\n ZhouB.; HuJ.; XuF.; ChenZ.; BaiL.; Fernandez-SalasE.; LinM.; LiuL.; YangC.-Y.; ZhaoY.; McEachernD.; PrzybranowskiS.; WenB.; SunD.; WangS.\\nDiscovery\\nof a Small-Molecule Degrader of Bromodomain and Extra-Terminal (BET)\\nProteins with Picomolar Cellular Potencies and Capable of Achieving\\nTumor Regression. J. Med. Chem.\\n2018, 61 (2), 462481. 10.1021/acs.jmedchem.6b01816.28339196\\n \\n \\n IshoeyM.; ChornS.; SinghN.; JaegerM. G.; BrandM.; PaulkJ.; BauerS.; ErbM. A.; ParapaticsK.; MüllerA. C.; BennettK. L.; EckerG. F.; BradnerJ. E.; WinterG. E.\\nTranslation\\nTermination Factor GSPT1 Is a Phenotypically\\nRelevant Off-Target of Heterobifunctional Phthalimide Degraders. ACS Chem. Biol.\\n2018, 13 (3), 553560. 10.1021/acschembio.7b00969.29356495\\n \\n \\n BuckleyD. L.; RainaK.; DarricarrereN.; HinesJ.; GustafsonJ. L.; SmithI. E.; MiahA. H.; HarlingJ. D.; CrewsC. M.\\nHaloPROTACS:\\nUse of Small Molecule PROTACs to Induce Degradation of HaloTag Fusion\\nProteins. ACS Chem. Biol.\\n2015, 10 (8), 18311837. 10.1021/acschembio.5b00442.26070106\\n \\n \\n Van\\nMolleI.; ThomannA.; BuckleyD. L.; SoE. C.; LangS.; CrewsC. M.; CiulliA.\\nDissecting Fragment-Based\\nLead Discovery at the Von Hippel-Lindau Protein:Hypoxia Inducible\\nFactor 1α Protein-Protein Interface. Chem.\\nBiol.\\n2012, 19 (10), 13001312. 10.1016/j.chembiol.2012.08.015.23102223\\n \\n \\n RichingK. M.; MahanS.; CoronaC. R.; McDougallM.; VastaJ. D.; RobersM. B.; UrhM.; DanielsD. L.\\nQuantitative\\nLive-Cell Kinetic Degradation and Mechanistic Profiling of PROTAC\\nMode of Action. ACS Chem. Biol.\\n2018, 13 (9), 27582770. 10.1021/acschembio.8b00692.30137962\\n \\n \\n SoucyT. A.; SmithP. G.; MilhollenM. A.; BergerA. J.; GavinJ. M.; AdhikariS.; BrownellJ. E.; BurkeK. E.; CardinD. P.; CritchleyS.; CullisC. A.; DoucetteA.; GarnseyJ. J.; GaulinJ. L.; GershmanR. E.; LublinskyA. R.; McDonaldA.; MizutaniH.; NarayananU.; OlhavaE. J.; PelusoS.; RezaeiM.; SintchakM. D.; TalrejaT.; ThomasM. P.; TraoreT.; VyskocilS.; WeatherheadG. S.; YuJ.; ZhangJ.; DickL. R.; ClaiborneC. F.; RolfeM.; BolenJ. B.; LangstonS. P.\\nAn Inhibitor\\nof NEDD8-Activating Enzyme as a New Approach to Treat Cancer. Nature\\n2009, 458 (7239), 732736. 10.1038/nature07884.19360080\\n \\n \\n LoenarzC.; MecinovićJ.; ChowdhuryR.; McNeillL. A.; FlashmanE.; SchofieldC. J.\\nEvidence\\nfor a Stereoelectronic Effect in Human Oxygen\\nSensing. Angew. Chem., Int. Ed.\\n2009, 48 (10), 17841787. 10.1002/anie.200805427.\\n \\n \\n WangX.; SansamC. G.; ThomC. S.; MetzgerD.; EvansJ. A.; NguyenP. T. L.; RobertsC. W. M.\\nOncogenesis Caused by Loss of the\\nSNF5 Tumor Suppressor is Dependent on Activity of BRG1, the ATPase\\nof the SWI/SNF Chromatin Remodeling Complex. Cancer Res.\\n2009, 69 (20), 80948101. 10.1158/0008-5472.CAN-09-0733.19789351\\n \\n \\n ZhangC.; HanX.-R.; YangX.; JiangB.; LiuJ.; XiongY.; JinJ.\\nProteolysis Targeting Chimeras (PROTACs)\\nof Anaplastic Lymphoma Kinase (ALK). Eur. J.\\nMed. Chem.\\n2018, 151, 304314. 10.1016/j.ejmech.2018.03.071.29627725\\n \\n \\n GreinerR.; ZieglerD. S.; CibuD.; JakowetzA. C.; AurasF.; BeinT.; KnochelP.\\nPreparation of Polyfunctional Naphthyridines\\nby Cobalt-Catalyzed Cross-Couplings of Halogenated Naphthyridines\\nwith Magnesium and Zinc Organometallics. Org.\\nLett.\\n2017, 19 (23), 63846387. 10.1021/acs.orglett.7b03242.29152984\\n \\n \\n LinY. A.; ChalkerJ. M.; DavisB. G.\\nOlefin Cross-Metathesis\\non Proteins:\\nInvestigation of Allylic Chalcogen Effects and Guiding Principles\\nin Metathesis Partner Selection. J. Am. Chem.\\nSoc.\\n2010, 132 (47), 1680516811. 10.1021/ja104994d.21050005\\n \\n \\n ZhangQ.; RenH.; BakerG. L.\\nSynthesis of a Library of Propargylated and PEGylated\\nα-Hydroxy Acids Toward “Clickable” Polylactides\\nvia Hydrolysis of Cyanohydrin Derivatives. J.\\nOrg. Chem.\\n2014, 79 (20), 95469555. 10.1021/jo5016135.25255205\\n \\n \\n IharaM.; SuzukiS.; TaniguchiN.; FukumotoK.\\nDeconjugation of α,β-Unsaturated\\nEsters and an Intramolecular Michael Reaction of Bis-α,β-Unsaturated\\nEsters with Trialkylsilyl Trifluoromethanesulfonate in the Presence\\nof Tertiary Amine: Synthesis of (±)-Ricciocarpin A. J. Chem. Soc., Perkin Trans. 1\\n1993, (19), 22512258. 10.1039/P19930002251.\\n \\n \\n KabschW.\\nXDS. Acta Crystallogr.,\\nSect. D: Biol. Crystallogr.\\n2010, 66 (2), 125132. 10.1107/S0907444909047337.20124692\\n \\n \\n EvansP.\\nScaling and\\nAssessment of Data Quality. Acta Crystallogr.,\\nSect. D: Biol. Crystallogr.\\n2006, 62 (1), 7282. 10.1107/S0907444905036693.16369096\\n \\n \\n WinnM. D.; BallardC. C.; CowtanK. D.; DodsonE. J.; EmsleyP.; EvansP. R.; KeeganR. M.; KrissinelE. B.; LeslieA. G. W.; McCoyA.; McNicholasS. J.; MurshudovG. N.; PannuN. S.; PottertonE. A.; PowellH. R.; ReadR. J.; VaginA.; WilsonK. S.\\nOverview\\nof the CCP4 Suite and Current Developments. Acta Crystallogr., Sect. D: Biol. Crystallogr.\\n2011, 67 (4), 235242. 10.1107/S0907444910045749.21460441\\n \\n \\n VaginA.; TeplyakovA.\\nMOLREP: An\\nAutomated Program for Molecular Replacement. J. Appl. Crystallogr.\\n1997, 30 (6), 10221025. 10.1107/S0021889897006766.\\n \\n \\n EmsleyP.; CowtanK.\\nCoot: Model-Building\\nTools for Molecular Graphics. Acta Crystallogr.,\\nSect. D: Biol. Crystallogr.\\n2004, 60 (12), 21262132. 10.1107/S0907444904019158.15572765\\n \\n \\n MurshudovG. N.; VaginA. A.; DodsonE. J.\\nRefinement\\nof Macromolecular Structures\\nby the Maximum-Likelihood Method. Acta Crystallogr.,\\nSect. D: Biol. Crystallogr.\\n1997, 53 (3), 240255. 10.1107/S0907444996012255.15299926\\n \\n \\n SchüttelkopfA.\\nW.; van AaltenD. M. F.\\nPRODRG:\\nA Tool for High-Throughput Crystallography\\nof Protein–Ligand Complexes. Acta Crystallogr.,\\nSect. D: Biol. Crystallogr.\\n2004, 60 (8), 13551363. 10.1107/S0907444904011679.15272157\\n \\n \\n ChenV. B.; ArendallW. B.; HeaddJ. J.; KeedyD. A.; ImmorminoR. M.; KapralG. J.; MurrayL. W.; RichardsonJ. S.; RichardsonD. C.\\nMolProbity: All-Atom Structure Validation\\nfor Macromolecular\\nCrystallography. Acta Crystallogr., Sect. D:\\nBiol. Crystallogr.\\n2010, 66 (1), 1221. 10.1107/S0907444909042073.20057044\\n \\n \\n KimK. H.; RobertsC. W.\\nMechanisms by Which SMARCB1 Loss\\nDrives Rhabdoid Tumor\\nGrowth. Cancer Genet.\\n2014, 207 (9), 365372. 10.1016/j.cancergen.2014.04.004.24853101\\n \\n \\n
\\n
\\n
'" ] }, "execution_count": 81, "metadata": {}, "output_type": "execute_result" } ], "source": [ "from Bio import Entrez\n", "\n", "def fetch_article(pmc_id):\n", " Entrez.email = \"your.email@example.com\" # Provide your email here\n", " handle = Entrez.efetch(db=\"pmc\", id=pmc_id, retmode=\"xml\")\n", " article_xml = handle.read() # Read raw XML content\n", " handle.close()\n", " return article_xml\n", "\n", "# Example usage\n", "pmc_id = f\"PMC{pmc_ids[0]}\" # Replace with an actual PMC ID\n", "article_xml = fetch_article(pmc_id)\n", "article_xml" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "Parse article XML data into a Python dictionary:" ] }, { "cell_type": "code", "execution_count": 127, "metadata": {}, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "number of sections: 4\n", "section title: Introduction\n", "--------------------------------------------------------------------------------\n", "section text: Targeted\n", "protein degradation is an emerging strategy to use small\n", "molecules to knock down a protein by hijacking the ubiquitin–proteasome\n", "system.1,2 PROTACs (proteolysis targeting chimeras)\n", "are bifunctional degrader molecules composed of a ligand for the target\n", "protein and a ligand for E3 ligase recruitment, connected by a linker.3,4 Upon formation of a ternary complex target:degrader:E3,5−7 the protein of interest is ubiquitinated and degraded by the proteasome.\n", "Compared to target blockade, pos\n", "--------------------------------------------------------------------------------\n", "number of subsections: 0\n", "====================================================================================================\n", "\n", "section title: Results and DiscussionFirst Generation of BRD7 and BRD9 DegradersSynthesis\n", "of the BRD7/9 Ligand Synthesis of the\n", "First Generation of DegradersThermodynamic Parameters of Formation\n", "of Binary and Ternary Complexes between VCB, BRD9 Bromodomain, and\n", "Compound Measured by Isothermal Titration Calorimetry\n", "(ITC)Second Generation of BRD7 and BRD9 DegradersSAR of Second Generation of PROTACsSynthesis of Compound Synthesis of Compounds –Third Generation\n", "of BRD7 and BRD9 DegradersSAR of Third Generation\n", "of PROTACsGeneral Synthetic Routes for Third-Generation\n", "CompoundsBiophysical Comparison between BRD9\n", "Degraders from Three Generations\n", "--------------------------------------------------------------------------------\n", "section text: We began\n", "our investigation by designing a small set of PROTACs aimed to induce\n", "BRD7/9 degradation by recruiting three different E3 ubiquitin ligases:\n", "VHL, CRBN, and DCAF15.59,60 We aimed to leverage available\n", "E3 ligase ligands and to maximize the opportunity for complementary\n", "surfaces between the bromodomain and the ligase within the ternary\n", "complex. As BRD7/9 bromodomain ligands, we selected compounds 1a,b (Figure 1),56 on the basis of their\n", "high binding affinity56 and of their superiority\n", "as B\n", "--------------------------------------------------------------------------------\n", "number of subsections: 3\n", "--------------------------------------------------------------------------------\n", "\tsubsection title: First Generation of BRD7 and BRD9 Degraders\n", "\tsubsection text: We began\n", "our investigation by designing a small set of PROTACs aimed to induce\n", "BRD7/9 degradation by recruiting three different E3 ubiquitin ligases:\n", "VHL, CRBN, and DCAF15.59,60 We aimed to leverage available\n", "E3 ligase ligands and to maximize the opportunity for complementary\n", "surfaces between the bromodomain and the ligase within the ternary\n", "complex. As BRD7/9 bromodomain ligands, we selected compounds 1a,b (Figure 1),56 on the basis of their\n", "high binding affinity56 and of their superiority\n", "as B\n", "--------------------------------------------------------------------------------\n", "\tsubsection title: Second Generation of BRD7 and BRD9 Degraders\n", "\tsubsection text: To improve\n", "ternary complex formation and degradation activity of PROTACs 5 and 6, we explored the impact of varying their\n", "derivatization point, linker length, and composition (compounds 22–31, Table 2). First, to expand the conjugation pattern\n", "between VHL1 and BrdL1 (Figure 1), the number of PEG units was modified (3 units for 24; 5 units for 22), a more lipophilic 11-atoms\n", "chain was inserted (compound 23), and a different attachment\n", "to BrdL1 moiety via amide conjugation was explored (compound 2\n", "--------------------------------------------------------------------------------\n", "\tsubsection title: Third Generation\n", "of BRD7 and BRD9 Degraders\n", "\tsubsection text: The pronounced\n", "degradation of BRD9 observed with 26 motivated us to\n", "design a third generation of PROTACs with the goal to further optimize\n", "our degrader. On the basis of the SAR previously acquired, the design\n", "strategy was to keep VHL4 moiety fixed and to focus on systematically\n", "varying the linker length and composition, as well as the substitution\n", "and conjugation chemistry at the BRD7/9 warhead. The focus on the\n", "linker concentrated on exploring varying ratios between hydrophilic\n", "and lipophilic p\n", "====================================================================================================\n", "\n", "section title: Conclusion\n", "--------------------------------------------------------------------------------\n", "section text: We describe the development of a new series\n", "of PROTACs against\n", "BRD9, a target thought as not degradable through recruitment of the\n", "E3 ligase VHL. In spite of starting from unimpressive degradation\n", "profiles of initial compounds, VHL-based degraders could be optimized\n", "by systematically varying the conjugation patterns and monitoring\n", "cellular degradation activities and formation of ternary complexes.\n", "Throughout the campaign, we revealed important structure–activity\n", "relationships that proved invalua\n", "--------------------------------------------------------------------------------\n", "number of subsections: 0\n", "====================================================================================================\n", "\n", "section title: Experimental SectionChemistry. SynthesisGeneral Method AGeneral Method BGeneral Method CGeneral\n", "Method DGeneral Method EGeneral Method FGeneral method G4-(3,5-Dimethoxy-4-(piperazin-1-ylmethyl)phenyl)-2-methyl-2,7-naphthyridin-1(2)-one ()(2,4)-1-((S)-2-(2-(2-(2-(4-(2,6-Dimethoxy-4-(2-methyl-1-oxo-1,2-dihydro-2,7-naphthyridin-4-yl)benzyl)piperazin-1-yl)ethoxy)ethoxy)acetamido)-3,3-dimethylbutanoyl)-4-hydroxy--(4-(4-methylthiazol-5-yl)benzyl)pyrrolidine-2-carboxamide\n", "()(2,4)-1-(()-2-(-Butyl)-17-(4-(2,6-dimethoxy-4-(2-methyl-1-oxo-1,2-dihydro-2,7-naphthyridin-4-yl)benzyl)piperazin-1-yl)-4-oxo-6,9,12,15-tetraoxa-3-azaheptadecanoyl)-4-hydroxy--(4-(4-methylthiazol-5-yl)benzyl)pyrrolidine-2-carboxamide\n", "()2-(2-(2-(4-(2,6-Dimethoxy-4-(2-methyl-1-oxo-1,2-dihydro-2,7-naphthyridin-4-yl)benzyl)piperazin-1-yl)ethoxy)ethoxy)--(2-((2-(2,6-dioxopiperidin-3-yl)-1,3-dioxoisoindolin-4-yl)amino)ethyl)acetamide\n", "()14-(4-(2,6-Dimethoxy-4-(2-methyl-1-oxo-1,2-dihydro-2,7-naphthyridin-4-yl)benzyl)piperazin-1-yl)--(2-((2-(2,6-dioxopiperidin-3-yl)-1,3-dioxoisoindolin-4-yl)amino)ethyl)-3,6,9,12-tetraoxatetradecanamide\n", "()-(4-(-(3-Chloro-1-indol-7-yl)sulfamoyl)benzyl)-2-(2-(2-(4-(2,6-dimethoxy-4-(2-methyl-1-oxo-1,2-dihydro-2,7-naphthyridin-4-yl)benzyl)piperazin-1-yl)ethoxy)ethoxy)acetamide\n", "()-(4-(-(3-Chloro-1-indol-7-yl)sulfamoyl)benzyl)-14-(4-(2,6-dimethoxy-4-(2-methyl-1-oxo-1,2-dihydro-2,7-naphthyridin-4-yl)benzyl)piperazin-1-yl)-3,6,9,12-tetraoxatetradecanamide\n", "()-Butyl 4-(4-Bromo-2,6-dimethoxybenzyl)piperazine-1-carboxylate\n", "()4-Iodo-2-methyl-2,7-naphthyridin-1(2)-one\n", "()-Butyl\n", "2-(2-(2-(4-(2,6-Dimethoxy-4-(2-methyl-1-oxo-1,2-dihydro-2,7-naphthyridin-4-yl)benzyl)piperazin-1-yl)ethoxy)ethoxy)acetate\n", "()-Butyl\n", "14-(4-(2,6-Dimethoxy-4-(2-methyl-1-oxo-1,2-dihydro-2,7-naphthyridin-4-yl)benzyl)piperazin-1-yl)-3,6,9,12-tetraoxatetradecanoate\n", "()2-(2-(2-(4-(2,6-Dimethoxy-4-(2-methyl-1-oxo-1,2-dihydro-2,7-naphthyridin-4-yl)benzyl)piperazin-1-yl)ethoxy)ethoxy)acetic\n", "Acid ()17-(4-(2,6-Dimethoxy-4-(2-methyl-1-oxo-1,2-dihydro-2,7-naphthyridin-4-yl)benzyl)piperazin-1-yl)-3,6,9,12,15-pentaoxaheptadecanoic\n", "Acid ()(2,4)-1-(()-2-(2-(2-((5-(4-(2,6-Dimethoxy-4-(2-methyl-1-oxo-1,2-dihydro-2,7-naphthyridin-4-yl)benzyl)piperazin-1-yl)pentyl)oxy)ethoxy)acetamido)-3,3-dimethylbutanoyl)-4-hydroxy--(4-(4-methylthiazol-5-yl)benzyl)pyrrolidine-2-carboxamide\n", "()(2,4)--(2-(2-(2-(2-(4-(2,6-Dimethoxy-4-(2-methyl-1-oxo-1,2-dihydro-2,7-naphthyridin-4-yl)benzyl)piperazin-1-yl)ethoxy)ethoxy)ethoxy)-4-(4-methylthiazol-5-yl)benzyl)-1-(()-2-(1-fluorocyclopropane-1-carboxamido)-3,3-dimethylbutanoyl)-4-hydroxypyrrolidine-2-carboxamide\n", "()(2,4)-1-(()-2-(1-Cyanocyclopropane-1-carboxamido)-3,3-dimethylbutanoyl)--(2-(2-(2-(2-(4-(2,6-dimethoxy-4-(2-methyl-1-oxo-1,2-dihydro-2,7-naphthyridin-4-yl)benzyl)piperazin-1-yl)ethoxy)ethoxy)ethoxy)-4-(4-methylthiazol-5-yl)benzyl)-4-hydroxypyrrolidine-2-carboxamide\n", "()(2,4)-1-((S)-2-Acetamido-3,3-dimethylbutanoyl)--(2-(2-(2-(2-(4-(2,6-dimethoxy-4-(2-methyl-1-oxo-1,2-dihydro-2,7-naphthyridin-4-yl)benzyl)piperazin-1-yl)ethoxy)ethoxy)ethoxy)-4-(4-methylthiazol-5-yl)benzyl)-4-hydroxypyrrolidine-2-carboxamide\n", "()(2,4)--(2-((14-(4-(2,6-Dimethoxy-4-(2-methyl-1-oxo-1,2-dihydro-2,7-naphthyridin-4-yl)benzyl)piperazin-1-yl)-3,6,9,12-tetraoxatetradecyl)oxy)-4-(4-methylthiazol-5-yl)benzyl)-1-(()-2-(1-fluorocyclopropane-1-carboxamido)-3,3-dimethylbutanoyl)-4-hydroxypyrrolidine-2-carboxamide\n", "()(2,4)-1-(()-2-(1-Cyanocyclopropane-1-carboxamido)-3,3-dimethylbutanoyl)--(2-((14-(4-(2,6-dimethoxy-4-(2-methyl-1-oxo-1,2-dihydro-2,7-naphthyridin-4-yl)benzyl)piperazin-1-yl)-3,6,9,12-tetraoxatetradecyl)oxy)-4-(4-methylthiazol-5-yl)benzyl)-4-hydroxypyrrolidine-2-carboxamide\n", "()14-(4-(2,6-Dimethoxy-4-(2-methyl-1-oxo-1,2-dihydro-2,7-naphthyridin-4-yl)benzyl)piperazin-1-yl)--(2-((2-(2,6-dioxopiperidin-3-yl)-1,3-dioxoisoindolin-4-yl)amino)ethyl)-3,6,9,12-tetraoxatetradecanamide\n", "()2-(2-(Hex-5-en-1-yloxy)ethoxy)ethan-1-ol\n", "()2-(2-(Hex-5-en-1-yloxy)ethoxy)acetic\n", "Acid ()(2,4)-1-(()-2-(2-(2-(Hex-5-en-1-yloxy)ethoxy)acetamido)-3,3-dimethylbutanoyl)-4-hydroxy--(4-(4-methylthiazol-5-yl)benzyl)pyrrolidine-2-carboxamide\n", "()2-(2-(Allyloxy)ethoxy)ethan-1-ol\n", "()3,6,9,12-Tetraoxapentadec-14-en-1-ol\n", "()(2,4)--(2-(2-(2-(Allyloxy)ethoxy)ethoxy)-4-(4-methylthiazol-5-yl)benzyl)-1-(()-2-(1-fluorocyclopropane-1-carboxamido)-3,3-dimethylbutanoyl)-4-hydroxypyrrolidine-2-carboxamide\n", "()(2,4)--(2-((3,6,9,12-Tetraoxapentadec-14-en-1-yl)oxy)-4-(4-methylthiazol-5-yl)benzyl)-1-(()-2-(1-fluorocyclopropane-1-carboxamido)-3,3-dimethylbutanoyl)-4-hydroxypyrrolidine-2-carboxamide\n", "()(2,4)--(2-(2-(2-(Allyloxy)ethoxy)ethoxy)-4-(4-methylthiazol-5-yl)benzyl)-1-(()-2-(1-cyanocyclopropane-1-carboxamido)-3,3-dimethylbutanoyl)-4-hydroxypyrrolidine-2-carboxamide\n", "()(2,4)--(2-((3,6,9,12-Tetraoxapentadec-14-en-1-yl)oxy)-4-(4-methylthiazol-5-yl)benzyl)-1-(()-2-(1-cyanocyclopropane-1-carboxamido)-3,3-dimethylbutanoyl)-4-hydroxypyrrolidine-2-carboxamide\n", "()(2,4)-1-(()-2-Acetamido-3,3-dimethylbutanoyl)--(2-(2-(2-(allyloxy)ethoxy)ethoxy)-4-(4-methylthiazol-5-yl)benzyl)-4-hydroxypyrrolidine-2-carboxamide\n", "()(2,4)--(2-((3,6,9,12-Tetraoxapentadec-14-en-1-yl)oxy)-4-(4-methylthiazol-5-yl)benzyl)-1-(()-2-acetamido-3,3-dimethylbutanoyl)-4-hydroxypyrrolidine-2-carboxamide\n", "()(2,4)--(2-(2-(2-(4-(2,6-Dimethoxy-4-(2-methyl-1-oxo-1,2-dihydro-2,7-naphthyridin-4-yl)benzyl)piperazin-1-yl)ethoxy)ethoxy)-4-(4-methylthiazol-5-yl)benzyl)-1-(()-2-(1-fluorocyclopropane-1-carboxamido)-3,3-dimethylbutanoyl)-4-hydroxypyrrolidine-2-carboxamide\n", "()(2,4)--(2-(2-(2-(4-(2,5-Dimethoxy-4-(2-methyl-1-oxo-1,2-dihydro-2,7-naphthyridin-4-yl)benzyl)piperazin-1-yl)ethoxy)ethoxy)-4-(4-methylthiazol-5-yl)benzyl)-1-(()-2-(1-fluorocyclopropane-1-carboxamido)-3,3-dimethylbutanoyl)-4-hydroxypyrrolidine-2-carboxamide\n", "()(2,4)--(2-((5-(4-(2,6-Dimethoxy-4-(2-methyl-1-oxo-1,2-dihydro-2,7-naphthyridin-4-yl)benzyl)piperazin-1-yl)pentyl)oxy)-4-(4-methylthiazol-5-yl)benzyl)-1-(()-2-(1-fluorocyclopropane-1-carboxamido)-3,3-dimethylbutanoyl)-4-hydroxypyrrolidine-2-carboxamide\n", "(, VZ185)(2,4)--(2-((5-(4-(2,5-Dimethoxy-4-(2-methyl-1-oxo-1,2-dihydro-2,7-naphthyridin-4-yl)benzyl)piperazin-1-yl)pentyl)oxy)-4-(4-methylthiazol-5-yl)benzyl)-1-(()-2-(1-fluorocyclopropane-1-carboxamido)-3,3-dimethylbutanoyl)-4-hydroxypyrrolidine-2-carboxamide\n", "()(2,4)--(2-(2-(2-((1-(2,6-Dimethoxy-4-(2-methyl-1-oxo-1,2-dihydro-2,7-naphthyridin-4-yl)benzyl)azetidin-3-yl)amino)-2-oxoethoxy)ethoxy)-4-(4-methylthiazol-5-yl)benzyl)-1-(()-2-(1-fluorocyclopropane-1-carboxamido)-3,3-dimethylbutanoyl)-4-hydroxypyrrolidine-2-carboxamide\n", "()(2,4)--(2-(2-(2-((1-(2,5-Dimethoxy-4-(2-methyl-1-oxo-1,2-dihydro-2,7-naphthyridin-4-yl)benzyl)azetidin-3-yl)amino)-2-oxoethoxy)ethoxy)-4-(4-methylthiazol-5-yl)benzyl)-1-(()-2-(1-fluorocyclopropane-1-carboxamido)-3,3-dimethylbutanoyl)-4-hydroxypyrrolidine-2-carboxamide\n", "()(2,4)--(2-((5-((1-(2,6-Dimethoxy-4-(2-methyl-1-oxo-1,2-dihydro-2,7-naphthyridin-4-yl)benzyl)azetidin-3-yl)amino)-5-oxopentyl)oxy)-4-(4-methylthiazol-5-yl)benzyl)-1-(()-2-(1-fluorocyclopropane-1-carboxamido)-3,3-dimethylbutanoyl)-4-hydroxypyrrolidine-2-carboxamide\n", "()(2,4)--(2-((5-((1-(2,5-Dimethoxy-4-(2-methyl-1-oxo-1,2-dihydro-2,7-naphthyridin-4-yl)benzyl)azetidin-3-yl)amino)-5-oxopentyl)oxy)-4-(4-methylthiazol-5-yl)benzyl)-1-(()-2-(1-fluorocyclopropane-1-carboxamido)-3,3-dimethylbutanoyl)-4-hydroxypyrrolidine-2-carboxamide\n", "()(2,4)--(2-(2-(2,2-Diethoxyethoxy)ethoxy)-4-(4-methylthiazol-5-yl)benzyl)-1-(()-2-(1-fluorocyclopropane-1-carboxamido)-3,3-dimethylbutanoyl)-4-hydroxypyrrolidine-2-carboxamide\n", "()(2,4)--(2-((5,5-Dimethoxypentyl)oxy)-4-(4-methylthiazol-5-yl)benzyl)-1-(()-2-(1-fluorocyclopropane-1-carboxamido)-3,3-dimethylbutanoyl)-4-hydroxypyrrolidine-2-carboxamide\n", "()(2,4)-1-(()-2-(1-Fluorocyclopropane-1-carboxamido)-3,3-dimethylbutanoyl)-4-hydroxy--(4-(4-methylthiazol-5-yl)-2-(2-(2-oxoethoxy)ethoxy)benzyl)pyrrolidine-2-carboxamide\n", "()(2,4)-1-(()-2-(1-Fluorocyclopropane-1-carboxamido)-3,3-dimethylbutanoyl)-4-hydroxy--(4-(4-methylthiazol-5-yl)-2-((5-oxopentyl)oxy)benzyl)pyrrolidine-2-carboxamide\n", "()2-(2-(2-(((2,4)-1-(()-2-(1-Fluorocyclopropane-1-carboxamido)-3,3-dimethylbutanoyl)-4-hydroxypyrrolidine-2-carboxamido)methyl)-5-(4-methylthiazol-5-yl)phenoxy)ethoxy)acetic\n", "Acid ()5-(2-(((2,4)-1-(()-2-(1-Fluorocyclopropane-1-carboxamido)-3,3-dimethylbutanoyl)-4-hydroxypyrrolidine-2-carboxamido)methyl)-5-(4-methylthiazol-5-yl)phenoxy)pentanoic\n", "Acid ()Biology. Cell CultureTesting Compounds in CellsSmall Interfering RNAMechanistic EvaluationImmunoblottingProliferation\n", "AssaysMS ProteomicsSample\n", "PreparationnLC–MS/MS AnalysisPeptide\n", "and Protein Identification and QuantificationProtein Expression and PurificationCrystallization and Structure Solution of BRD9 Bromodomain Binary\n", "ComplexAlphaLISA Proximity AssayFluorescence PolarizationIsothermal\n", "Titration CalorimetryLive Cell Kinetic Analysis of BRD7 and BRD9\n", "DegradationNanoBRET Ubiquitination of BRD7 and BRD9\n", "--------------------------------------------------------------------------------\n", "section text: Chemicals,\n", "commercially available,\n", "were purchased from Apollo Scientific, Sigma-Aldrich, Fluorochem,\n", "or Manchester Organics and used without any further purification.\n", "All reactions were carried out using anhydrous solvents. Analytical\n", "thin-layer chromatography (TLC) was performed on precoated TLC plates\n", "(layer 0.20 mm silica gel 60 with fluorescent indicator (UV 254: Merck)).\n", "The TLC plates were air-dried and revealed under UV lamp (254/365\n", "nm). Flash column chromatography was performed using pr\n", "--------------------------------------------------------------------------------\n", "number of subsections: 69\n", "--------------------------------------------------------------------------------\n", "\tsubsection title: Chemistry. Synthesis\n", "\tsubsection text: Chemicals,\n", "commercially available,\n", "were purchased from Apollo Scientific, Sigma-Aldrich, Fluorochem,\n", "or Manchester Organics and used without any further purification.\n", "All reactions were carried out using anhydrous solvents. Analytical\n", "thin-layer chromatography (TLC) was performed on precoated TLC plates\n", "(layer 0.20 mm silica gel 60 with fluorescent indicator (UV 254: Merck)).\n", "The TLC plates were air-dried and revealed under UV lamp (254/365\n", "nm). Flash column chromatography was performed using pr\n", "--------------------------------------------------------------------------------\n", "\tsubsection title: General Method A\n", "\tsubsection text: To a mixture of aryl bromide (1 equiv)\n", "in dioxane (0.2 M), Pd(dppf)Cl2 (0.1 equiv), bis(pinacolato)diboron\n", "(1.2 equiv), and KOAc (3 equiv) were added. The mixture was heated\n", "under microwave conditions at 140 °C for 40 min. Then aryl iodide 14 (1 equiv) and a degassed solution of K2CO3 2 M (2 equiv) were added. The reaction mixture was heated\n", "in microwave at 120 °C for 30 min. The resulting mixture was\n", "filtered through Celite and washed several times with DCM. The organic\n", "phase was washed with H2\n", "--------------------------------------------------------------------------------\n", "\tsubsection title: General Method B\n", "\tsubsection text: To a solution of acid (1 equiv) in\n", "DMF (0.2 M), HATU (1 equiv), HOAt (1 equiv), amine (1 equiv), and\n", "DIPEA (5 equiv) were added. The reaction mixture was stirred at rt\n", "for 2 h. The solvent was evaporated under reduced pressure to give\n", "the corresponding crude, which was chromatographically purified to\n", "yield the final compound.\n", "--------------------------------------------------------------------------------\n", "\tsubsection title: General Method C\n", "\tsubsection text: A mixture of aldehyde (1 equiv), amine\n", "(HCl salt, 1.1 equiv), and TEA (1.1 equiv) in DMF (0.2 M) was stirred\n", "at rt. After 15 min, NaBH(OAc)3 (1.5 equiv) was added,\n", "and the reaction was stirred overnight at rt under nitrogen. The solvent\n", "was evaporated under reduced pressure to give the corresponding crude,\n", "which was purified accordingly to yield the desired compound.\n", "--------------------------------------------------------------------------------\n", "\tsubsection title: General\n", "Method D\n", "\tsubsection text: To a stirred solution of oxalyl chloride\n", "(1.5 equiv) in DCM (0.3 M), DMSO (2 equiv) was added dropwise at −78\n", "°C. After 10 min at −78 °C, the alcohol starting\n", "material (1 equiv) in DCM (0.3 M) was added. The reaction was stirred\n", "at −78 °C for 1 h, TEA (10 equiv) was added dropwise,\n", "and temperature was increased to rt. After 1 h, the reaction mixture\n", "was diluted with DCM, washed with a saturated solution of ammonium\n", "chloride. The organic phases were combined, washed with brine, dried\n", "over MgSO4, \n", "--------------------------------------------------------------------------------\n", "\tsubsection title: General Method E\n", "\tsubsection text: To a solution of\n", "the alcohol starting\n", "material (1 equiv) and trimethylamine (1.5 equiv) in DCM (0.2 M),\n", "methansulfonyl chloride (1.2 equiv) was added at 0 °C. The reaction\n", "mixture was stirred at 0 °C for 3 h. The reaction was quenched\n", "with a saturated solution of ammonium chloride and extracted with\n", "DCM. The organic phases were combined, dried over MgSO4, filtered, and evaporated to dryness. The crude (1.5 equiv) was\n", "suspended in DMF (0.2 M), and 2b–d inhibitor derivative (1 equiv) and K2CO3 (3\n", "\n", "--------------------------------------------------------------------------------\n", "\tsubsection title: General Method F\n", "\tsubsection text: A 1 M aqueous solution\n", "of HCl (1 mL)\n", "was added to the VHL-acetal linker (0.06 mmol) in THF (1 mL). The\n", "reaction mixture was heated at 50 °C for 2 h. The solvent was\n", "evaporated under reduced pressure, and the product was extracted with\n", "DCM/MeOH (9:1). The organic phases were combined, dried over MgSO4, filtered, and evaporated to dryness. The crude was used\n", "directly without any further purification.\n", "--------------------------------------------------------------------------------\n", "\tsubsection title: General method G\n", "\tsubsection text: Aldehyde (1 equiv) was taken up in t-BuOH and water\n", "(4:1) (0.3 M). Then 2-methyl-2-butene 2\n", "M in THF (4 equiv) was added, followed by sodium phosphate dibasic\n", "(1 equiv) and sodium chlorite (2 equiv). The reaction mixture was\n", "stirred at rt for 4 h. A 1 M aqueous solution of HCl was added. The\n", "product was extracted with DCM. The organic phases were combined,\n", "dried over MgSO4, filtered, and evaporated to dryness.\n", "The crude was used directly without any further purification.\n", "--------------------------------------------------------------------------------\n", "\tsubsection title: 4-(3,5-Dimethoxy-4-(piperazin-1-ylmethyl)phenyl)-2-methyl-2,7-naphthyridin-1(2)-one ()\n", "\tsubsection text: Following general method\n", "A, compound 1c was obtained from compound 12 and 14 as brown powder. Yield: 50 mg, 55%. 1H NMR (400 MHz, MeOD) δ: 9.67 (s, 1H), 8.76 (d, J = 6.9 Hz, 1H), 8.27 (s, 1H), 8.21 (d, J = 6.9 Hz,\n", "1H), 6.95 (s, 2H), 4.62 (s, 2H), 4.03 (s, 6H), 3.81 (s, 3H), 3.73\n", "(s, 8H). 13C NMR (101 MHz, CDCl3) δ: 161.5,\n", "161.4, 148.6, 146.3, 145.5, 141.9, 139.7, 122.9, 117.9, 107.1, 105.8,\n", "57.2, 50.8, 49.7, 41.9, 37.9. MS m/z calcd for C22H26N4O3 394.2, found 395.3 [M + H+].\n", "--------------------------------------------------------------------------------\n", "\tsubsection title: (2,4)-1-((S)-2-(2-(2-(2-(4-(2,6-Dimethoxy-4-(2-methyl-1-oxo-1,2-dihydro-2,7-naphthyridin-4-yl)benzyl)piperazin-1-yl)ethoxy)ethoxy)acetamido)-3,3-dimethylbutanoyl)-4-hydroxy--(4-(4-methylthiazol-5-yl)benzyl)pyrrolidine-2-carboxamide\n", "()\n", "\tsubsection text: Following general method B, compound 5 was obtained from 19 and 2a (synthesized\n", "accordingly to literature61). The crude\n", "was purified by HPLC using a gradient of 5% to 95% v/v acetonitrile\n", "in 0.1% aqueous solution of formic acid to obtain 5 as\n", "white powder. Yield: 6.3 mg, 44%. 1H NMR (400 MHz, MeOD)\n", "δ: 9.44 (s, 1H), 8.80 (s, 1H), 8.59 (d, J =\n", "5.5 Hz, 1H), 7.66 (s, 1H), 7.54 (d, J = 5.9 Hz, 1H),\n", "7.37 (q, J = 7.8 Hz, 4H), 6.73 (s, 2H), 4.66 (s,\n", "1H), 4.52–4.26 (m, 4H), 4.05–3.95 (m, 4H), 3.86–3.72\n", "(\n", "--------------------------------------------------------------------------------\n", "\tsubsection title: (2,4)-1-(()-2-(-Butyl)-17-(4-(2,6-dimethoxy-4-(2-methyl-1-oxo-1,2-dihydro-2,7-naphthyridin-4-yl)benzyl)piperazin-1-yl)-4-oxo-6,9,12,15-tetraoxa-3-azaheptadecanoyl)-4-hydroxy--(4-(4-methylthiazol-5-yl)benzyl)pyrrolidine-2-carboxamide\n", "()\n", "\tsubsection text: Following general method B, compound 6 was obtained from 20 and 2a (synthesized\n", "accordingly to literature61). The crude\n", "was purified by HPLC using a gradient of 5% to 95% v/v acetonitrile\n", "in 0.1% aqueous solution of formic acid to obtain 6 as\n", "white powder. Yield: 4.9 mg, 30%. 1H NMR (400 MHz, MeOD)\n", "δ: 9.44 (s, 1H), 8.81 (s, 1H), 8.60 (d, J =\n", "5.6 Hz, 1H), 7.67 (s, 1H), 7.54 (d, J = 5.6 Hz, 1H),\n", "7.37 (q, J = 9.0 Hz, 4H), 6.73 (s, 2H), 4.63 (s,\n", "1H), 4.53–4.26 (m, 4H), 4.02–3.94 (m, 4H), 3.84–3.72\n", "(\n", "--------------------------------------------------------------------------------\n", "\tsubsection title: 2-(2-(2-(4-(2,6-Dimethoxy-4-(2-methyl-1-oxo-1,2-dihydro-2,7-naphthyridin-4-yl)benzyl)piperazin-1-yl)ethoxy)ethoxy)--(2-((2-(2,6-dioxopiperidin-3-yl)-1,3-dioxoisoindolin-4-yl)amino)ethyl)acetamide\n", "()\n", "\tsubsection text: Following general method B, compound 7 was obtained from compound 19 and 3a (synthesized accordingly to literature73). The crude was purified by HPLC using a gradient of 5% to 95% v/v\n", "acetonitrile in 0.1% aqueous solution of formic acid to obtain compound 7 as yellow powder. Yield: 5.6 mg, 33%. 1H NMR\n", "(400 MHz, MeOD) δ: 9.54 (d, J = 0.8 Hz, 1H),\n", "8.70 (d, J = 6.0 Hz, 1H), 8.11 (s, 1NH), 7.84 (s,\n", "1H), 7.73 (dd, J = 0.6, 6.0 Hz, 1H), 7.55–7.49\n", "(m, 1H), 7.10–7.03 (m, 2H), 6.87 (s, 2H), 5.08 (dd, J =\n", "--------------------------------------------------------------------------------\n", "\tsubsection title: 14-(4-(2,6-Dimethoxy-4-(2-methyl-1-oxo-1,2-dihydro-2,7-naphthyridin-4-yl)benzyl)piperazin-1-yl)--(2-((2-(2,6-dioxopiperidin-3-yl)-1,3-dioxoisoindolin-4-yl)amino)ethyl)-3,6,9,12-tetraoxatetradecanamide\n", "()\n", "\tsubsection text: A mixture of 45 (1 equiv),\n", "osmium tetroxide 4% in H2O (0.2 equiv), sodium periodate\n", "(4 equiv), pyridine (2 equiv) in dioxane/H2O (3:1) was\n", "stirred at rt for 48 h. Then H2O was added to the reaction\n", "and the product was extracted with DCM. The organic phases were combined,\n", "dried over MgSO4, filtered, and evaporated to dryness.\n", "Then, following general method A, from the aldehyde derivative and 1c compound 31 was obtained after purification\n", "by HPLC using a gradient of 5% to 95% v/v acetonitrile in 0\n", "--------------------------------------------------------------------------------\n", "\tsubsection title: -(4-(-(3-Chloro-1-indol-7-yl)sulfamoyl)benzyl)-2-(2-(2-(4-(2,6-dimethoxy-4-(2-methyl-1-oxo-1,2-dihydro-2,7-naphthyridin-4-yl)benzyl)piperazin-1-yl)ethoxy)ethoxy)acetamide\n", "()\n", "\tsubsection text: Following general method B, compound 9 was obtained from compound 19 and 4a (synthesis detailed in the Supporting Information). The crude was purified by HPLC using a gradient of 5% to 95% v/v\n", "acetonitrile in 0.1% aqueous solution of formic acid to obtain compound 9 as white powder. Yield: 10.8 mg, 34%. 1H NMR\n", "(400 MHz, MeOD) δ: 9.54 (s, 1H), 8.69 (d, J = 5.8 Hz, 1H), 8.27 (s, 1NH), 7.75 (s, 1H), 7.68–7.62 (m,\n", "3H), 7.39 (d, J = 8.3 Hz, 2H), 7.33 (dd, J = 0.9, 8.1 Hz, 1H), 7.26 (s, 1H), 6.91 (t, \n", "--------------------------------------------------------------------------------\n", "\tsubsection title: -(4-(-(3-Chloro-1-indol-7-yl)sulfamoyl)benzyl)-14-(4-(2,6-dimethoxy-4-(2-methyl-1-oxo-1,2-dihydro-2,7-naphthyridin-4-yl)benzyl)piperazin-1-yl)-3,6,9,12-tetraoxatetradecanamide\n", "()\n", "\tsubsection text: Following general method B, compound 10 was obtained from compound 20 and 4a (synthesis detailed in the Supporting Information). The crude was purified by HPLC using a gradient of 5% to 95% v/v\n", "acetonitrile in 0.1% aqueous solution of formic acid to obtain compound 10 as white powder. Yield: 11.1 mg, 37%. 1H NMR\n", "(400 MHz, MeOD) δ: 9.54 (d, J = 0.6 Hz, 1H),\n", "8.69 (d, J = 5.7 Hz, 1H), 8.30 (s, 1NH), 7.75 (s,\n", "1H), 7.68–7.62 (m, 3H), 7.41 (d, J = 8.2 Hz,\n", "2H), 7.34 (dd, J = 0.8, 8.1 Hz, 1H), 7.27 (s, \n", "--------------------------------------------------------------------------------\n", "\tsubsection title: -Butyl 4-(4-Bromo-2,6-dimethoxybenzyl)piperazine-1-carboxylate\n", "()\n", "\tsubsection text: Following general method C, compound 12 was obtained from 4-bromo-2,6-dimethoxybenzaldehyde\n", "(11) and boc-piperazine (both commercially available).\n", "The reaction was quenched with saturated solution of NaHCO3, extracted with DCM, washed with water and brine. The organic phases\n", "were combined, dried over MgSO4, filtered, and evaporated\n", "to dryness to give the desired compound without any further purification\n", "as sticky oil. Yield: 495 mg, 97%. 1H NMR (500 MHz, CDCl3) δ: 6.69 (s, 2H), 3.78 (s, 6H), 3.6\n", "--------------------------------------------------------------------------------\n", "\tsubsection title: 4-Iodo-2-methyl-2,7-naphthyridin-1(2)-one\n", "()\n", "\tsubsection text: A mixture of 4-iodo-2,7-naphthyridin-1(2H)-one 13 (synthesized accordingly to literature74) (1 equiv) and NaH (2 equiv) was stirred 30\n", "min at 0 °C in DMF (0.2 M). Then CH3I (1.6 equiv)\n", "was added and the reaction mixture was stirred at 0 °C for 5\n", "h. Water was added, and the precipitate formed was filtered and dried\n", "in vacuum. Yield: 300 mg, 95%. 1H NMR (400 MHz, DMSO) δ:\n", "9.27 (s, 1H), 8.82 (d, J = 5.6 Hz, 1H), 8.26 (s,\n", "1H), 7.47 (d, J = 5.5 Hz, 1H), 3.52 (s,3H). 13C NMR (101 MHz, DMSO) δ: 160.3, \n", "--------------------------------------------------------------------------------\n", "\tsubsection title: -Butyl\n", "2-(2-(2-(4-(2,6-Dimethoxy-4-(2-methyl-1-oxo-1,2-dihydro-2,7-naphthyridin-4-yl)benzyl)piperazin-1-yl)ethoxy)ethoxy)acetate\n", "()\n", "\tsubsection text: Following general method D, compound 17 was obtained from tert-butyl 2-(2-(2-hydroxyethoxy)ethoxy)acetate 15 and 1c after purification by HPLC using a\n", "gradient of 5% to 95% v/v acetonitrile in 0.1% aqueous solution of\n", "ammonia as white powder. Yield: 8.8 mg, 32%. 1H NMR (500\n", "MHz, CDCl3) δ: 9.69 (d, J = 0.8\n", "Hz, 1H), 8.70 (d, J = 5.7 Hz, 1H), 7.43 (dd, J = 0.8, 5.6 Hz, 1H), 7.26 (s, 1H), 6.52 (s, 2H), 4.00 (s,\n", "2H), 3.81 (s, 6H), 3.70–3.60 (m, 11H), 2.65–2.56 (m,\n", "10H), 1.46 (s, 9H). 13C NMR (125 MHz\n", "--------------------------------------------------------------------------------\n", "\tsubsection title: -Butyl\n", "14-(4-(2,6-Dimethoxy-4-(2-methyl-1-oxo-1,2-dihydro-2,7-naphthyridin-4-yl)benzyl)piperazin-1-yl)-3,6,9,12-tetraoxatetradecanoate\n", "()\n", "\tsubsection text: Following general method D, compound 18 was obtained from tert-butyl 14-hydroxy-3,6,9,12-tetraoxatetradecanoate 16 and 1c after purification by HPLC using a\n", "gradient of 5% to 95% v/v acetonitrile in 0.1% aqueous solution of\n", "ammonia as white powder. Yield: 10.7 mg, 34%. 1H NMR (500\n", "MHz, CDCl3) δ: 9.69 (d, J = 0.8\n", "Hz, 1H), 8.70 (d, J = 5.6 Hz, 1H), 7.43 (d, J = 5.6 Hz, 1H), 7.26 (s, 1H), 6.52 (s, 2H), 4.00 (s, 2H),\n", "3.81 (s, 6H), 3.73–3.57 (m, 19H), 2.67–2.55 (m, 10H),\n", "1.46 (s, 9H). 13C NMR (125 MH\n", "--------------------------------------------------------------------------------\n", "\tsubsection title: 2-(2-(2-(4-(2,6-Dimethoxy-4-(2-methyl-1-oxo-1,2-dihydro-2,7-naphthyridin-4-yl)benzyl)piperazin-1-yl)ethoxy)ethoxy)acetic\n", "Acid ()\n", "\tsubsection text: A mixture of compound 17 (0.015 mmol), TFA (0.5 mL), and DCM (0.5 mL) was stirred at rt for\n", "3 h. Then the solvent was evaporated; the crude was dried under high\n", "pressure overnight and used directly in the next step without any\n", "further purification. Quantitative yield. MS m/z calcd for C28H36N4O7 540.26, found 541.4 [M + H+].\n", "--------------------------------------------------------------------------------\n", "\tsubsection title: 17-(4-(2,6-Dimethoxy-4-(2-methyl-1-oxo-1,2-dihydro-2,7-naphthyridin-4-yl)benzyl)piperazin-1-yl)-3,6,9,12,15-pentaoxaheptadecanoic\n", "Acid ()\n", "\tsubsection text: A mixture of compound 18 (0.034 mmol), TFA (0.5 mL), and DCM (0.5 mL) was stirred at rt for\n", "3 h. Then the solvent was evaporated; the crude was dried under high\n", "pressure overnight and used directly without any further purification.\n", "Quantitative yield. MS m/z calcd\n", "for C34H48N4O10 672.34,\n", "found 673.36 [M + H+].\n", "--------------------------------------------------------------------------------\n", "\tsubsection title: (2,4)-1-(()-2-(2-(2-((5-(4-(2,6-Dimethoxy-4-(2-methyl-1-oxo-1,2-dihydro-2,7-naphthyridin-4-yl)benzyl)piperazin-1-yl)pentyl)oxy)ethoxy)acetamido)-3,3-dimethylbutanoyl)-4-hydroxy--(4-(4-methylthiazol-5-yl)benzyl)pyrrolidine-2-carboxamide\n", "()\n", "\tsubsection text: A mixture of 35 (1 equiv),\n", "osmium tetroxide 4% in H2O (0.2 equiv), sodium periodate\n", "(4 equiv), pyridine (2 equiv) in dioxane/H2O (3:1) was\n", "stirred at rt for 48 h. Then H2O was added to the reaction\n", "and the product was extracted with DCM. The organic phases were combined,\n", "dried over MgSO4, filtered, and evaporated to dryness.\n", "The crude was dissolved in DCE, and a mixture of 1c (1\n", "equiv) and TEA (1.1 equiv) in DCE (0.02 M) was added. After 15 min,\n", "NaBH(OAc)3 was added and the reaction mixture was \n", "--------------------------------------------------------------------------------\n", "\tsubsection title: (2,4)--(2-(2-(2-(2-(4-(2,6-Dimethoxy-4-(2-methyl-1-oxo-1,2-dihydro-2,7-naphthyridin-4-yl)benzyl)piperazin-1-yl)ethoxy)ethoxy)ethoxy)-4-(4-methylthiazol-5-yl)benzyl)-1-(()-2-(1-fluorocyclopropane-1-carboxamido)-3,3-dimethylbutanoyl)-4-hydroxypyrrolidine-2-carboxamide\n", "()\n", "\tsubsection text: A mixture of 40 (1 equiv),\n", "osmium tetroxide 4% in H2O (0.2 equiv), sodium periodate\n", "(4 equiv), pyridine (2 equiv) in dioxane/H2O (3:1) was\n", "stirred at rt for 48 h. Then H2O was added to the reaction\n", "and the product was extracted with DCM. The organic phases were combined,\n", "dried over MgSO4, filtered, and evaporated to dryness.\n", "Then, following general method A, compound 26 was synthesized\n", "from the aldehyde derivative and 1c. The solvent was\n", "removed in vacuum to give the corresponding crude, which w\n", "--------------------------------------------------------------------------------\n", "\tsubsection title: (2,4)-1-(()-2-(1-Cyanocyclopropane-1-carboxamido)-3,3-dimethylbutanoyl)--(2-(2-(2-(2-(4-(2,6-dimethoxy-4-(2-methyl-1-oxo-1,2-dihydro-2,7-naphthyridin-4-yl)benzyl)piperazin-1-yl)ethoxy)ethoxy)ethoxy)-4-(4-methylthiazol-5-yl)benzyl)-4-hydroxypyrrolidine-2-carboxamide\n", "()\n", "\tsubsection text: A mixture of 42 (1 equiv),\n", "osmium tetroxide 4% in H2O (0.2 equiv), sodium periodate\n", "(4 equiv), pyridine (2 equiv) in dioxane/H2O (3:1) was\n", "stirred at rt for 48 h. Then H2O was added to the reaction\n", "and the product was extracted with DCM. The organic phases were combined,\n", "dried over MgSO4, filtered, and evaporated to dryness.\n", "Then, following general method A, from the aldehyde derivative and 1c compound 27 was obtained after purification\n", "by HPLC using a gradient of 5% to 95% v/v acetonitrile in 0\n", "--------------------------------------------------------------------------------\n", "\tsubsection title: (2,4)-1-((S)-2-Acetamido-3,3-dimethylbutanoyl)--(2-(2-(2-(2-(4-(2,6-dimethoxy-4-(2-methyl-1-oxo-1,2-dihydro-2,7-naphthyridin-4-yl)benzyl)piperazin-1-yl)ethoxy)ethoxy)ethoxy)-4-(4-methylthiazol-5-yl)benzyl)-4-hydroxypyrrolidine-2-carboxamide\n", "()\n", "\tsubsection text: A mixture of 44 (1 equiv),\n", "osmium tetroxide 4% in H2O (0.2 equiv), sodium periodate\n", "(4 equiv), pyridine (2 equiv) in dioxane/H2O (3:1) was\n", "stirred at rt for 48 h. Then H2O was added to the reaction\n", "and the product was extracted with DCM. The organic phases were combined,\n", "dried over MgSO4, filtered, and evaporated to dryness.\n", "Then, following general method A, from the aldehyde derivative and 1c compound 28 was obtained after purification\n", "by HPLC using a gradient of 5% to 95% v/v acetonitrile in 0\n", "--------------------------------------------------------------------------------\n", "\tsubsection title: (2,4)--(2-((14-(4-(2,6-Dimethoxy-4-(2-methyl-1-oxo-1,2-dihydro-2,7-naphthyridin-4-yl)benzyl)piperazin-1-yl)-3,6,9,12-tetraoxatetradecyl)oxy)-4-(4-methylthiazol-5-yl)benzyl)-1-(()-2-(1-fluorocyclopropane-1-carboxamido)-3,3-dimethylbutanoyl)-4-hydroxypyrrolidine-2-carboxamide\n", "()\n", "\tsubsection text: A mixture of 41 (1 equiv),\n", "osmium tetroxide 4% in H2O (0.2 equiv), sodium periodate\n", "(4 equiv), pyridine (2 equiv) in dioxane/H2O (3:1) was\n", "stirred at rt for 48 h. Then H2O was added to the reaction\n", "and the product was extracted with DCM. The organic phases were combined,\n", "dried over MgSO4, filtered, and evaporated to dryness.\n", "Then, following general method A, from the aldehyde derivative and 1c compound 29 was obtained after purification\n", "by HPLC using a gradient of 5% to 95% v/v acetonitrile in 0\n", "--------------------------------------------------------------------------------\n", "\tsubsection title: (2,4)-1-(()-2-(1-Cyanocyclopropane-1-carboxamido)-3,3-dimethylbutanoyl)--(2-((14-(4-(2,6-dimethoxy-4-(2-methyl-1-oxo-1,2-dihydro-2,7-naphthyridin-4-yl)benzyl)piperazin-1-yl)-3,6,9,12-tetraoxatetradecyl)oxy)-4-(4-methylthiazol-5-yl)benzyl)-4-hydroxypyrrolidine-2-carboxamide\n", "()\n", "\tsubsection text: A mixture of 43 (1 equiv),\n", "osmium tetroxide 4% in H2O (0.2 equiv), sodium periodate\n", "(4 equiv), pyridine (2 equiv) in dioxane/H2O (3:1) was\n", "stirred at rt for 48 h. Then H2O was added to the reaction\n", "and the product was extracted with DCM. The organic phases were combined,\n", "dried over MgSO4, filtered, and evaporated to dryness.\n", "Then, following general method A, from the aldehyde derivative and 1c compound 30 was obtained after purification\n", "by HPLC using a gradient of 5% to 95% v/v acetonitrile in 0\n", "--------------------------------------------------------------------------------\n", "\tsubsection title: 2-(2-(Hex-5-en-1-yloxy)ethoxy)ethan-1-ol\n", "()\n", "\tsubsection text: To a suspension of NaH (2.5 equiv) in DMF\n", "(1 M) and THF (1 M),\n", "diethylene glycol (5 equiv) was added at 0 °C under nitrogen.\n", "After 45 min 6-bromo-1-hexene (1 equiv) was added dropwise at 0 °C.\n", "Then the ice bath was removed, and the reaction mixture was stirred\n", "overnight at rt under nitrogen. Distillate water was added, and the\n", "reaction mixture was acidified with HCl 1 M up to pH 2. The product\n", "was extracted with CHCl3. The organic phases were combined,\n", "dried over MgSO4, filtered, and evaporated \n", "--------------------------------------------------------------------------------\n", "\tsubsection title: 2-(2-(Hex-5-en-1-yloxy)ethoxy)acetic\n", "Acid ()\n", "\tsubsection text: A mixture of 30 (1 equiv), BAIB (2.2\n", "equiv), TEMPO (0.22 equiv)\n", "in ACN/H2O (1:1) (0.5 M) was stirred overnight at rt. The\n", "day after the solvent was evaporated, the crude was resuspended in\n", "DCM and washed with H2O. The organic phases were combined,\n", "dried over MgSO4, filtered, and evaporated to dryness.\n", "The resulting product was purified by flash column chromatography\n", "using a gradient from 0% to 20% of MeOH in DCM to obtain compound 34 as an oil. Yield: 472 mg, 81%. 1H NMR (400 MHz,\n", "CDCl3) δ: 5.84\n", "--------------------------------------------------------------------------------\n", "\tsubsection title: (2,4)-1-(()-2-(2-(2-(Hex-5-en-1-yloxy)ethoxy)acetamido)-3,3-dimethylbutanoyl)-4-hydroxy--(4-(4-methylthiazol-5-yl)benzyl)pyrrolidine-2-carboxamide\n", "()\n", "\tsubsection text: Following general method B, compound 35 was obtained from compounds 34 and 2a (synthesized accordingly to literature61). The crude was purified by HPLC using a gradient of 5% to 95% v/v\n", "acetonitrile in 0.1% aqueous solution of formic acid to obtain 35 as white powder. Yield: 14.7 mg, 30%. 1H NMR\n", "(400 MHz, CDCl3) δ: 8.64 (s, 1H), 7.28–7.23\n", "(m, 4H), 5.74–5.63 (m, 1H), 4.93–4.82 (m, 2H), 4.65\n", "(t, J = 7.9 Hz, 1H), 4.49–4.21 (m, 4H), 4.03–3.85\n", "(m, 3H), 3.59–3.47 (m, 5H), 3.40–3.34 (m, 2H), 2.47–2.39\n", "\n", "--------------------------------------------------------------------------------\n", "\tsubsection title: 2-(2-(Allyloxy)ethoxy)ethan-1-ol\n", "()\n", "\tsubsection text: To a mixture of NaOH (1 equiv) in dioxane\n", "(0.3 M), diethylene glycol\n", "(2 equiv) and allyl bromide (1 equiv) were added dropwise. The mixture\n", "was heated overnight at 55 °C. Then the reaction mixture was\n", "dried over MgSO4, filtered, and evaporated in vacuum. The\n", "crude was purified by flash column chromatography using a gradient\n", "from 50% to 100% of ethyl acetate in heptane to obtain compound 38 as an oil. Yield: 329 mg, 54%. 1H NMR (400 MHz,\n", "CDCl3) δ: 5.90–5.80 (m, 1H), 5.21 (qd, J = 1.6, 17.2 Hz, 1H\n", "--------------------------------------------------------------------------------\n", "\tsubsection title: 3,6,9,12-Tetraoxapentadec-14-en-1-ol\n", "()\n", "\tsubsection text: Following the same procedure applied for\n", "compound 38, from tetraethylene glycol and allyl bromide\n", "compound 39 was obtained as oil. Yield: 3.29 g, 68%.\n", "Analytical data matched\n", "those previously reported.75\n", "--------------------------------------------------------------------------------\n", "\tsubsection title: (2,4)--(2-(2-(2-(Allyloxy)ethoxy)ethoxy)-4-(4-methylthiazol-5-yl)benzyl)-1-(()-2-(1-fluorocyclopropane-1-carboxamido)-3,3-dimethylbutanoyl)-4-hydroxypyrrolidine-2-carboxamide\n", "()\n", "\tsubsection text: Following general method E, compound 40 was obtained from compounds 38 and 2d (synthesis detailed in the Supporting Information). The crude was purified by HPLC using a gradient of 5% to 95% v/v\n", "acetonitrile in 0.1% aqueous solution of formic acid. Yield: 21.7\n", "mg, 42%. 1H NMR (500 MHz, MeOD) δ: 8.91 (s, 1H),\n", "8.52 (t, J = 5.9 Hz, 1H), 7.55 (dd, J = 3.4, 9.4 Hz, 1H), 7.51 (d, J = 7.8 Hz, 1H), 7.10\n", "(d, J = 1.6 Hz, 1H), 7.06 (dd, J = 1.6, 7.8 Hz, 1H), 5.98–5.90 (m, 1H), 5.30 (ddt, J = 1.7, 6.9, 8.6 \n", "--------------------------------------------------------------------------------\n", "\tsubsection title: (2,4)--(2-((3,6,9,12-Tetraoxapentadec-14-en-1-yl)oxy)-4-(4-methylthiazol-5-yl)benzyl)-1-(()-2-(1-fluorocyclopropane-1-carboxamido)-3,3-dimethylbutanoyl)-4-hydroxypyrrolidine-2-carboxamide\n", "()\n", "\tsubsection text: Following general method E, compound 41 was obtained from compounds 39 and 2d (synthesis detailed in the Supporting Information). The crude was purified by HPLC using a gradient of 5% to 95% v/v\n", "acetonitrile in 0.1% aqueous solution of formic acid. Yield: 26.9\n", "mg, 46%. 1H NMR (500 MHz, MeOD) δ: 8.91 (s, 1H),\n", "8.51 (t, J = 6.1 Hz, 1H), 7.56 (dd, J = 3.2, 9.6 Hz, 1H), 7.51 (d, J = 7.8 Hz, 1H), 7.10\n", "(d, J = 1.6 Hz, 1H), 7.06 (dd, J = 1.7, 7.7 Hz, 1H), 5.97–5.89 (m, 1H), 5.30 (ddt, J = 1.7, 6.9, 8.7 \n", "--------------------------------------------------------------------------------\n", "\tsubsection title: (2,4)--(2-(2-(2-(Allyloxy)ethoxy)ethoxy)-4-(4-methylthiazol-5-yl)benzyl)-1-(()-2-(1-cyanocyclopropane-1-carboxamido)-3,3-dimethylbutanoyl)-4-hydroxypyrrolidine-2-carboxamide\n", "()\n", "\tsubsection text: Following general method E, compound 42 was obtained from compounds 38 and 2c (synthesized as previously reported29). The crude was purified by HPLC using a gradient of 5% to 95% v/v\n", "acetonitrile in 0.1% aqueous solution of formic acid. Yield: 15.8\n", "mg, 61%. 1H NMR (500 MHz, MeOD) δ: 8.91 (s, 1H),\n", "8.50 (t, J = 5.9 Hz, 1H), 7.50 (d, J = 7.9 Hz, 1H), 7.10 (d, J = 1.8 Hz, 1H), 7.06 (dd, J = 1.7, 8.0 Hz, 1H), 5.98–5.90 (m, 1H), 5.30 (ddt, J = 1.8, 6.9, 8.6 Hz, 1H), 5.20–5.16 (m, 1H), 4.71–4.64\n", "(m, 2H\n", "--------------------------------------------------------------------------------\n", "\tsubsection title: (2,4)--(2-((3,6,9,12-Tetraoxapentadec-14-en-1-yl)oxy)-4-(4-methylthiazol-5-yl)benzyl)-1-(()-2-(1-cyanocyclopropane-1-carboxamido)-3,3-dimethylbutanoyl)-4-hydroxypyrrolidine-2-carboxamide\n", "()\n", "\tsubsection text: Following general method E, compound 43 was obtained from compounds 39 and 2c (synthesized as previously reported29). The crude was purified by HPLC using a gradient of 5% to 95% v/v\n", "acetonitrile in 0.1% aqueous solution of formic acid. Yield: 15.3\n", "mg, 52%. 1H NMR (500 MHz, MeOD) δ: 8.91 (s, 1H),\n", "8.49 (t, J = 6.1 Hz, 1H), 7.51 (d, J = 7.7 Hz, 1H), 7.10 (d, J = 1.6 Hz, 1H), 7.06 (dd, J = 1.6, 7.7 Hz, 1H), 5.97–5.89 (m, 1H), 5.30 (ddt, J = 1.6, 6.9, 8.6 Hz, 1H), 5.19–5.16 (m, 1H), 4.71–4.64\n", "(m, 2H\n", "--------------------------------------------------------------------------------\n", "\tsubsection title: (2,4)-1-(()-2-Acetamido-3,3-dimethylbutanoyl)--(2-(2-(2-(allyloxy)ethoxy)ethoxy)-4-(4-methylthiazol-5-yl)benzyl)-4-hydroxypyrrolidine-2-carboxamide\n", "()\n", "\tsubsection text: Following general method E, compound 44 was obtained from compounds 38 and 2b (synthesized accordingly to literature29). The crude was purified by HPLC using a gradient of 5% to 95% v/v\n", "acetonitrile in 0.1% aqueous solution of formic acid. Yield: 12.7\n", "mg, 53%. 1H NMR (400 MHz, MeOD) δ: 8.91 (s, 1H),\n", "7.52 (d, J = 7.8 Hz, 1H), 7.08 (s, 1H), 7.04 (dd, J = 1.4, 7.8 Hz, 1H), 5.99–5.88 (m, 1H), 5.30 (dq, J = 1.7, 6.9 Hz, 1H), 5.18 (dq, J = 1.3,\n", "4.5 Hz, 1H), 4.67–4.60 (m, 2H), 4.55–4.42 (m, 3H), 4.30–4\n", "--------------------------------------------------------------------------------\n", "\tsubsection title: (2,4)--(2-((3,6,9,12-Tetraoxapentadec-14-en-1-yl)oxy)-4-(4-methylthiazol-5-yl)benzyl)-1-(()-2-acetamido-3,3-dimethylbutanoyl)-4-hydroxypyrrolidine-2-carboxamide\n", "()\n", "\tsubsection text: Following general method E, compound 45 was obtained from compounds 39 and 2b (synthesized accordingly to literature29). The crude was purified by HPLC using a gradient of 5% to 95% v/v\n", "acetonitrile in 0.1% aqueous solution of formic acid. Yield: 13.8\n", "mg, 53%. 1H NMR (400 MHz, MeOD) δ: 8.92 (s, 1H),\n", "7.52 (d, J = 7.9 Hz, 1H), 7.08 (s, 1H), 7.04 (dd, J = 1.5, 7.8 Hz, 1H), 6.01–5.88 (m, 1H), 5.29 (dq, J = 1.7, 6.9 Hz, 1H), 5.17 (dq, J = 1.3,\n", "4.5 Hz, 1H), 4.67–4.60 (m, 2H), 4.56–4.39 (m, 2H), 4.29–4\n", "--------------------------------------------------------------------------------\n", "\tsubsection title: (2,4)--(2-(2-(2-(4-(2,6-Dimethoxy-4-(2-methyl-1-oxo-1,2-dihydro-2,7-naphthyridin-4-yl)benzyl)piperazin-1-yl)ethoxy)ethoxy)-4-(4-methylthiazol-5-yl)benzyl)-1-(()-2-(1-fluorocyclopropane-1-carboxamido)-3,3-dimethylbutanoyl)-4-hydroxypyrrolidine-2-carboxamide\n", "()\n", "\tsubsection text: Following general method C, from 69 (0.033 mmol) and 1c (0.033 mmol) compound 46 was obtained after purification by HPLC using a gradient\n", "of 5% to 95% v/v acetonitrile in 0.1% aqueous solution of formic acid\n", "as white powder. Yield: 5.3 mg, 16%. 1H NMR (400 MHz, MeOD)\n", "δ: 9.61 (s, 1H), 8.95 (s, 1H), 8.71 (d, J =\n", "6.2 Hz, 1H), 7.97 (s, 1H), 7.85 (d, J = 6.0 Hz, 1H),\n", "7.53 (d, J = 8.2 Hz, 1H), 7.10–7.07 (m, 2H),\n", "6.90 (s, 2H), 4.78 (s, 1H), 4.66 (t, J = 8.5 Hz,\n", "1H), 4.54–4.44 (m, 3H), 4.32–4.29 (m, 2H)\n", "--------------------------------------------------------------------------------\n", "\tsubsection title: (2,4)--(2-(2-(2-(4-(2,5-Dimethoxy-4-(2-methyl-1-oxo-1,2-dihydro-2,7-naphthyridin-4-yl)benzyl)piperazin-1-yl)ethoxy)ethoxy)-4-(4-methylthiazol-5-yl)benzyl)-1-(()-2-(1-fluorocyclopropane-1-carboxamido)-3,3-dimethylbutanoyl)-4-hydroxypyrrolidine-2-carboxamide\n", "()\n", "\tsubsection text: Following general method C, from 69 (0.033 mmol) and 1d (synthesis detailed in\n", "the Supporting Information) (0.033 mmol)\n", "compound 47 was obtained after purification by HPLC using\n", "a gradient of 5% to 95% v/v acetonitrile in 0.1% aqueous solution\n", "of formic acid as white powder. Yield: 5.3 mg, 5%. 1H NMR\n", "(400 MHz, MeOD) δ: 9.52 (s, 1H), 8.91 (s, 1H), 8.62 (d, J = 5.7 Hz, 1H), 7.65 (s, 1H), 7.51 (d, J = 7.9 Hz, 1H), 7.23–7.19 (m, 2H), 7.10 (d, J = 1.2 Hz, 1H), 7.06 (dd, J = 1.6, 7.7 Hz, 1H),\n", "6.98 (s,\n", "--------------------------------------------------------------------------------\n", "\tsubsection title: (2,4)--(2-((5-(4-(2,6-Dimethoxy-4-(2-methyl-1-oxo-1,2-dihydro-2,7-naphthyridin-4-yl)benzyl)piperazin-1-yl)pentyl)oxy)-4-(4-methylthiazol-5-yl)benzyl)-1-(()-2-(1-fluorocyclopropane-1-carboxamido)-3,3-dimethylbutanoyl)-4-hydroxypyrrolidine-2-carboxamide\n", "(, VZ185)\n", "\tsubsection text: Following general method C, from 70 (0.02 mmol) and 1c (0.02 mmol) compound 51 was obtained after purification by HPLC using a gradient\n", "of 5% to 95% v/v acetonitrile in 0.1% aqueous solution of formic acid\n", "as white powder. Yield: 4.8 mg, 24%. 1H NMR (400 MHz, MeOD)\n", "δ: 9.56 (d, J = 0.8 Hz, 1H), 8.92 (s, 1H),\n", "8.71 (d, J = 5.8 Hz, 1H), 7.78 (s, 1H), 7.65 (dd, J = 0.7, 5.8 Hz, 1H), 7.52 (d, J = 7.7\n", "Hz, 1H), 7.07–7.03 (m, 2H), 6.86 (s, 2H), 4.79 (s, 1H), 4.67\n", "(t, J = 12.4 Hz, 1H), 4.55–4.47 (m, 3H), \n", "--------------------------------------------------------------------------------\n", "\tsubsection title: (2,4)--(2-((5-(4-(2,5-Dimethoxy-4-(2-methyl-1-oxo-1,2-dihydro-2,7-naphthyridin-4-yl)benzyl)piperazin-1-yl)pentyl)oxy)-4-(4-methylthiazol-5-yl)benzyl)-1-(()-2-(1-fluorocyclopropane-1-carboxamido)-3,3-dimethylbutanoyl)-4-hydroxypyrrolidine-2-carboxamide\n", "()\n", "\tsubsection text: Following general method C, from 70 (0.02 mmol) and 1d (0.02 mmol) compound 52 was obtained after purification by HPLC using a gradient\n", "of 5% to 95% v/v acetonitrile in 0.1% aqueous solution of formic acid\n", "as white powder. Yield: 4 mg, 20%. 1H NMR (400 MHz, MeOD)\n", "δ: 9.53 (s, 1H), 8.92 (s, 1H), 8.62 (d, J =\n", "5.7 Hz, 1H), 7.65 (s, 1H), 7.53 (d, J = 7.4 Hz, 1H),\n", "7.23–7.19 (m, 2H), 7.05 (s, 2H), 7.02 (s, 1H), 4.79 (s, 1H),\n", "4.68 (t, J = 8.4 Hz, 1H), 4.55–4.47 (m, 3H),\n", "4.15 (t, J = 5.9 Hz, 2H), 3.92–3.\n", "--------------------------------------------------------------------------------\n", "\tsubsection title: (2,4)--(2-(2-(2-((1-(2,6-Dimethoxy-4-(2-methyl-1-oxo-1,2-dihydro-2,7-naphthyridin-4-yl)benzyl)azetidin-3-yl)amino)-2-oxoethoxy)ethoxy)-4-(4-methylthiazol-5-yl)benzyl)-1-(()-2-(1-fluorocyclopropane-1-carboxamido)-3,3-dimethylbutanoyl)-4-hydroxypyrrolidine-2-carboxamide\n", "()\n", "\tsubsection text: Following general method B, from the 71 (0.02 mmol) and 1e (0.02 mmol) compound 55 was obtained after purification by HPLC using a gradient\n", "of 5% to 95% v/v acetonitrile in 0.1% aqueous solution of ammonia\n", "as white powder. Yield: 2.4 mg, 12%. 1H NMR (400 MHz, MeOD)\n", "δ: 9.56 (d, J = 0.6 Hz, 1H), 8.93 (s, 1H),\n", "8.71 (d, J = 6.0 Hz, 1H), 7.80 (s, 1H), 7.63 (dd, J = 0.6, 5.8 Hz, 1H), 7.55 (d, J = 8.1\n", "Hz, 1H), 7.12–7.08 (m, 2H), 6.89 (s, 2H), 4.80–4.64\n", "(m, 3H), 4.60–4.31 (m, 11H), 4.23 (s, 2H), 4.06 (t\n", "--------------------------------------------------------------------------------\n", "\tsubsection title: (2,4)--(2-(2-(2-((1-(2,5-Dimethoxy-4-(2-methyl-1-oxo-1,2-dihydro-2,7-naphthyridin-4-yl)benzyl)azetidin-3-yl)amino)-2-oxoethoxy)ethoxy)-4-(4-methylthiazol-5-yl)benzyl)-1-(()-2-(1-fluorocyclopropane-1-carboxamido)-3,3-dimethylbutanoyl)-4-hydroxypyrrolidine-2-carboxamide\n", "()\n", "\tsubsection text: Following general method B, from 71 (0.02 mmol) and 1f (synthesis detailed in\n", "the Supporting Information) (0.02 mmol)\n", "compound 56 was obtained after purification by HPLC using\n", "a gradient of 5% to 95% v/v acetonitrile in 0.1% aqueous solution\n", "of ammonia as white powder. Yield: 3.3 mg, 17%. 1H NMR\n", "(400 MHz, MeOD) δ: 9.39 (s, 1H), 8.80 (s, 1H), 8.49 (d, J = 5.7 Hz, 1H), 7.54 (s, 1H), 7.42 (d, J = 8.2 Hz, 1H), 7.10 (s, 1H), 7.04 (d, J = 5.6 Hz,\n", "1H), 6.99 (s, 1H), 6.98–6.94 (m, 2H), 4.66 (s, 1H), 4.6\n", "--------------------------------------------------------------------------------\n", "\tsubsection title: (2,4)--(2-((5-((1-(2,6-Dimethoxy-4-(2-methyl-1-oxo-1,2-dihydro-2,7-naphthyridin-4-yl)benzyl)azetidin-3-yl)amino)-5-oxopentyl)oxy)-4-(4-methylthiazol-5-yl)benzyl)-1-(()-2-(1-fluorocyclopropane-1-carboxamido)-3,3-dimethylbutanoyl)-4-hydroxypyrrolidine-2-carboxamide\n", "()\n", "\tsubsection text: Following general method B, from 72 (0.025 mmol) and 1e (0.025 mmol) compound 61 was obtained after purification by HPLC using a gradient\n", "of 5% to 95% v/v acetonitrile in 0.1% aqueous solution of formic acid\n", "as white powder. Yield: 4.5 mg, 18%. 1H NMR (400 MHz, MeOD)\n", "δ: 9.45 (d, J = 0.5 Hz, 1H), 8.81 (s, 1H),\n", "8.61 (d, J = 5.7 Hz, 1H), 7.68 (s, 1H), 7.54 (d, J = 5.5 Hz, 1H), 7.41 (d, J = 7.6 Hz, 1H),\n", "6.96–6.91 (m, 2H), 6.74 (s, 2H), 4.69 (s, 1H), 4.58 (t, J = 8.5 Hz, 1H), 4.54–4.32 (m, 5H), 4.24 \n", "--------------------------------------------------------------------------------\n", "\tsubsection title: (2,4)--(2-((5-((1-(2,5-Dimethoxy-4-(2-methyl-1-oxo-1,2-dihydro-2,7-naphthyridin-4-yl)benzyl)azetidin-3-yl)amino)-5-oxopentyl)oxy)-4-(4-methylthiazol-5-yl)benzyl)-1-(()-2-(1-fluorocyclopropane-1-carboxamido)-3,3-dimethylbutanoyl)-4-hydroxypyrrolidine-2-carboxamide\n", "()\n", "\tsubsection text: Following general method B, from 72 (0.025 mmol) and 1f (0.025 mmol) compound 62 was obtained after purification by HPLC using a gradient\n", "of 5% to 95% v/v acetonitrile in 0.1% aqueous solution of formic acid\n", "as white powder. Yield: 5.8 mg, 23%. 1H NMR (400 MHz, MeOD)\n", "δ: 9.51 (d, J = 0.7 Hz, 1H), 8.91 (s, 1H),\n", "8.62 (d, J = 6.0 Hz, 1H), 7.64 (s, 1H), 7.52 (d, J = 7.5 Hz, 1H), 7.19 (dd, J = 0.8, 5.8\n", "Hz, 1H), 7.14 (s, 1H), 7.06–7.02 (m, 2H), 7.01 (s, 1H), 4.79\n", "(s, 1H), 4.69 (t, J = 8.5 Hz, 1H), 4.58\n", "--------------------------------------------------------------------------------\n", "\tsubsection title: (2,4)--(2-(2-(2,2-Diethoxyethoxy)ethoxy)-4-(4-methylthiazol-5-yl)benzyl)-1-(()-2-(1-fluorocyclopropane-1-carboxamido)-3,3-dimethylbutanoyl)-4-hydroxypyrrolidine-2-carboxamide\n", "()\n", "\tsubsection text: Following general method E, compound 67 was obtained after reaction between 2-(2,2-diethoxyethoxy)ethan-1-ol\n", "(synthesized accordingly to literature76) and 2d as white powder. Yield: 92 mg, 87%. 1H NMR (400 MHz, CDCl3) δ: 8.66 (s, 1H), 7.31 (d, J = 7.7 Hz, 1H), 6.95 (dd, J = 1.2, 7.7\n", "Hz, 1H), 6.88 (s, 1H), 4.66 (t, J = 7.6 Hz, 2H),\n", "4.55–4.40 (m, 4H), 4.23–4.13 (m, 2H), 3.97–3.87\n", "(m, 3H), 3.71–3.49 (m, 7H), 2.50 (s, 3H), 2.44–2.34\n", "(m, 1H), 2.13–2.05 (m, 1H), 1.35–1.26 (m, 4H), 1.18\n", "(t, J = 7.1 Hz,\n", "--------------------------------------------------------------------------------\n", "\tsubsection title: (2,4)--(2-((5,5-Dimethoxypentyl)oxy)-4-(4-methylthiazol-5-yl)benzyl)-1-(()-2-(1-fluorocyclopropane-1-carboxamido)-3,3-dimethylbutanoyl)-4-hydroxypyrrolidine-2-carboxamide\n", "()\n", "\tsubsection text: A mixture of 2d (0.075 mmol,\n", "1 equiv), 5-bromo-1,1-dimethoxypentane 66 (synthesized\n", "accordingly to literature77) (0.112 mmol,\n", "1.8 equiv), and K2CO3 (0.225 mmol, 3 equiv)\n", "in DMF (0.5 mL) was stirred at 70 °C overnight. The reaction\n", "mixture was diluted with water and extracted with DCM, dried over\n", "MgSO4, filtered and evaporated to dryness. The crude was\n", "purified by flash column chromatography using a gradient from 0% to\n", "20% of methanol in DCM to obtain the desired compound as white powder.\n", "Yield: \n", "--------------------------------------------------------------------------------\n", "\tsubsection title: (2,4)-1-(()-2-(1-Fluorocyclopropane-1-carboxamido)-3,3-dimethylbutanoyl)-4-hydroxy--(4-(4-methylthiazol-5-yl)-2-(2-(2-oxoethoxy)ethoxy)benzyl)pyrrolidine-2-carboxamide\n", "()\n", "\tsubsection text: Following general method F, compound 69 was obtained from 67 (0.066 mmol) and directly\n", "used in the next step without any further purification. MS m/z calcd for C30H39FN4O7S 618.15, found 619.3 [M + H+].\n", "--------------------------------------------------------------------------------\n", "\tsubsection title: (2,4)-1-(()-2-(1-Fluorocyclopropane-1-carboxamido)-3,3-dimethylbutanoyl)-4-hydroxy--(4-(4-methylthiazol-5-yl)-2-((5-oxopentyl)oxy)benzyl)pyrrolidine-2-carboxamide\n", "()\n", "\tsubsection text: Following general method F, compound 70 was obtained from 68 (0.04 mmol) and directly\n", "used in the next step without any further purification. MS m/z calcd for C31H41FN4O6S 616.27, found 617.3 [M + H+].\n", "--------------------------------------------------------------------------------\n", "\tsubsection title: 2-(2-(2-(((2,4)-1-(()-2-(1-Fluorocyclopropane-1-carboxamido)-3,3-dimethylbutanoyl)-4-hydroxypyrrolidine-2-carboxamido)methyl)-5-(4-methylthiazol-5-yl)phenoxy)ethoxy)acetic\n", "Acid ()\n", "\tsubsection text: Following general method G, compound 71 was obtained from compound 69 (0.04 mmol)\n", "and was used in the next step without any further purification. Quantitative\n", "yield. MS m/z calcd for C30H39FN4O8S 634.25, found 635.3 [M\n", "+ H+].\n", "--------------------------------------------------------------------------------\n", "\tsubsection title: 5-(2-(((2,4)-1-(()-2-(1-Fluorocyclopropane-1-carboxamido)-3,3-dimethylbutanoyl)-4-hydroxypyrrolidine-2-carboxamido)methyl)-5-(4-methylthiazol-5-yl)phenoxy)pentanoic\n", "Acid ()\n", "\tsubsection text: Following general method G, compound 72 was obtained from compound 70 (0.05 mmol)\n", "and was used in the next step without any further purification. Quantitative\n", "yield. MS m/z calcd for C31H41FN4O7S 632.27, found 633.3 [M\n", "+ H+].\n", "--------------------------------------------------------------------------------\n", "\tsubsection title: Biology. Cell Culture\n", "\tsubsection text: Human cell\n", "lines HeLa and Hek293\n", "were purchased from ATCC and propagated in DMEM medium (Gibco), supplemented\n", "with 10% fetal bovine serum (FBS) (Gibco), l-glutamine (Gibco),\n", "100 μg mL–1 of penicillin/streptomycin. RI-1\n", "cells, purchased from DSMZ, were propagated in RPMI medium (Gibco),\n", "supplemented with 10% fetal bovine serum (FBS) (Gibco), l-glutamine, 100 μg mL–1 of penicillin/streptomycin.\n", "Cells were kept at 37 °C and 5% of CO2. EOL-1 and\n", "A-204 cell lines were purchased from ATCC and DSMZ. EO\n", "--------------------------------------------------------------------------------\n", "\tsubsection title: Testing Compounds in Cells\n", "\tsubsection text: HeLa and Hek293 cells were\n", "seeded at either 0.3 × 106 or 0.5 × 106 cells per well in 6-well plate in 2 mL of medium. At 80% confluency,\n", "cells were treated with compounds at the desired concentration, with\n", "final DMSO concentration of 0.1% v/v. Cells were incubated at 37 °C\n", "and 5% of CO2 for the desired time before harvesting. For\n", "protein extraction from adherent cells, cells were washed twice with\n", "DPBS (Gibco) and lysed with RIPA buffer (Sigma-Aldrich), supplemented\n", "with cOmplete Mini EDTA-free p\n", "--------------------------------------------------------------------------------\n", "\tsubsection title: Small Interfering RNA\n", "\tsubsection text: HeLa cells were seeded at 0.3\n", "× 106 cells per well in 6-well plates in 2 mL of medium,\n", "with a goal to achieve 70% of confluence on the day of transfection.\n", "BRD7, BRD9, and CRBN targeting siRNA (L-020297-00-0005 ON-TARGETplus\n", "human BRD7, L-014250-02-0005 ON-TARGETplus human BRD9, and L-021086-00-0005\n", "ON-TARGETplus human CRBN SMARTpool, 5 nmol, Dharmacon) were prepared\n", "as a 20 μM solution in RNase-free 1× siRNA buffer (Dharmacon).\n", "Nontargeting siRNA (On-TARGETplus control pool, nontargeting pool\n", "D\n", "--------------------------------------------------------------------------------\n", "\tsubsection title: Mechanistic Evaluation\n", "\tsubsection text: Cells were\n", "seeded in 6-well\n", "plates with 5 × 105 cells per well in 2 mL of complete\n", "medium to aim for 80% confluence on the day of treatment. At time\n", "zero, ML4924 was added at final concentration of 3 μM with 0.1%\n", "v/v of DMSO. DMSO was added to the remaining wells in order to match\n", "concentration of vehicle in all wells. After 3 h, MG132 (50 μM)\n", "or VH298 (100 μM) was added to the designated wells at a final\n", "concentration of 0.1% v/v of DMSO. Again, DMSO was added to the remaining\n", "wells to match ve\n", "--------------------------------------------------------------------------------\n", "\tsubsection title: Immunoblotting\n", "\tsubsection text: Proteins were resolved by SDS–PAGE\n", "on NuPage 4–12% Bis-Tris Midi Gel (Invitrogen) and transferred\n", "to Amersham Protran 0.45 NC nitrocellulose membrane (GE Healthcare)\n", "using wet transfer. The membrane was blocked with 5% w/v milk in Tris-buffered\n", "saline (TBS) with 0.1% w/v Tween-20. The following primary antibodies\n", "at the given concentration were used: anti β-actin (Cell Signaling\n", "Technology, 4970S, 13E5) 1:2000, anti-Brd9 (Bethyl A303-781A) 1:1000,\n", "anti-Brd7 (Bethyl A302-304A) 1:1000, VHL rabbit \n", "--------------------------------------------------------------------------------\n", "\tsubsection title: Proliferation\n", "Assays\n", "\tsubsection text: A-204 cells (1 × 103) were seeded\n", "per well of 384-well plates. After overnight incubation,\n", "compounds were added to the cells at logarithmic dose series using\n", "the HP digital dispenser D300 (Tecan), normalizing for added DMSO.\n", "1 day and 8 days after seeding cellular ATP content was measured using\n", "CellTiterGlo (Promega). Measurements after 8 days were divided by\n", "the measurement after 1 day (i.e., the T0 plate) to derive fold proliferation. Data were analyzed with GraphPad\n", "Prism software to obtain E\n", "--------------------------------------------------------------------------------\n", "\tsubsection title: MS Proteomics\n", "\tsubsection text: RI-1 cells were seeded at 2 ×\n", "106 cells/mL in a 10 cm plate 12 h before treatment. Cells\n", "were treated with 0.1% DMSO as vehicle control and with 100 nM VZ185\n", "and 100 nM cisVZ185 as negative control. Cells were\n", "incubated at 37 °C and 5% CO2 for 4 h before harvesting.\n", "Cells were washed twice with DPBS (Gibco) and lysed with 0.5 mL of\n", "100 mM Tris, pH 8.0, 4% (w/v) SDS, supplemented with cOmplete Mini\n", "EDTA-free protease inhibitor cocktail (Roche). Lysates were sonicated\n", "(2 × 10 s) and centrifuged at\n", "--------------------------------------------------------------------------------\n", "\tsubsection title: Sample\n", "Preparation\n", "\tsubsection text: RI-1 cells were seeded at 2 ×\n", "106 cells/mL in a 10 cm plate 12 h before treatment. Cells\n", "were treated with 0.1% DMSO as vehicle control and with 100 nM VZ185\n", "and 100 nM cisVZ185 as negative control. Cells were\n", "incubated at 37 °C and 5% CO2 for 4 h before harvesting.\n", "Cells were washed twice with DPBS (Gibco) and lysed with 0.5 mL of\n", "100 mM Tris, pH 8.0, 4% (w/v) SDS, supplemented with cOmplete Mini\n", "EDTA-free protease inhibitor cocktail (Roche). Lysates were sonicated\n", "(2 × 10 s) and centrifuged at\n", "--------------------------------------------------------------------------------\n", "\tsubsection title: nLC–MS/MS Analysis\n", "\tsubsection text: The fractions\n", "were analyzed\n", "sequentially on a Q Exactive HF hybrid quadrupole-Orbitrap mass spectrometer\n", "(Thermo Scientific) coupled to an UltiMate 3000 RSLCnano UHPLC system\n", "(Thermo Scientific) and EasySpray column (75 μm × 50 cm,\n", "PepMap RSLC C18 column, 2 μm, 100 Å, Thermo Scientific).\n", "A mix of buffer A (0.1% formic acid in H2O) and B (0.08%\n", "formic acid in 80% CH3CN) was used over a linear gradient\n", "from 5% to 35% buffer B over 125 min using a flow rate of 300 nL/min.\n", "Column temperature was set\n", "--------------------------------------------------------------------------------\n", "\tsubsection title: Peptide\n", "and Protein Identification and Quantification\n", "\tsubsection text: The raw MS\n", "data files for all 20 fractions were merged and searched\n", "against the Uniprot-sprot-Human-Canonical database by Maxquant software\n", "1.6.0.16 for protein identification and TMT reporter ion quantitation.\n", "The identifications were based on the following criteria: enzyme used\n", "trypsin/P; maximum number of missed cleavages equal to 2; precursor\n", "mass tolerance equal to 10 ppm; fragment mass tolerance equal\n", "to 20 ppm. Variable modifications: oxidation (M), acetyl (N-term),\n", "deamidation (NQ), Gln \n", "--------------------------------------------------------------------------------\n", "\tsubsection title: Protein Expression and Purification\n", "\tsubsection text: Human proteins\n", "VHL (UniProt accession number P40337), ElonginC (Q15369), and ElonginB\n", "(Q15370) and the bromodomain (residues 134–239) for BRD9 (Q9H8M2)\n", "were used for all protein expression. His6-tagged constructs\n", "were transformed into Escherichia coli BL21(DE3),\n", "and expression was induced by the addition of isopropyl β-d-1-thiogalactopyranoside (IPTG). E. coli cells\n", "were lysed using a pressure cell homogenizer (Stansted Fluid Power);\n", "lysates were clarified by centrifuge and loaded onto a HisTrap\n", "--------------------------------------------------------------------------------\n", "\tsubsection title: Crystallization and Structure Solution of BRD9 Bromodomain Binary\n", "Complex\n", "\tsubsection text: The binary complex of Brd9-BD:5 was\n", "generated by incubating 500 μM Brd9 bromodomain with 750 μM\n", "compound 5 (from a 100 mM stock in DMSO). Crystals were\n", "grown using the hanging-drop vapor diffusion method by mixing equal\n", "volumes of binary complex solution and a crystallization solution\n", "containing 24% PEG 3350 and 0.2 M NH4F. Small needle crystals\n", "appeared within 48 h but took approximately 2 weeks to reach a suitable\n", "size for harvesting. Crystals were flash-frozen in liquid nitrogen\n", "using 20% eth\n", "--------------------------------------------------------------------------------\n", "\tsubsection title: AlphaLISA Proximity Assay\n", "\tsubsection text: All assays were performed\n", "at room temperature in 384-well plates with a final assay volume of\n", "25 μL per well, as described previously.5 All reagents were prepared as 5× stocks diluted in\n", "50 mM HEPES, pH 7.5, 100 mM NaCl, 0.1% (w/v) bovine\n", "serum albumin, and 0.02% (w/v) 3-[(cholamidopropyl)dimethylammonio]-1-propanesulfonate\n", "(CHAPS). Plates were sealed by transparent film and briefly centrifuged\n", "at 100g between additions of reagents. Biotinylated\n", "VCB (100 nM final) and His6-BRD9-bromodomain (100 \n", "--------------------------------------------------------------------------------\n", "\tsubsection title: Fluorescence Polarization\n", "\tsubsection text: All measurements were taken\n", "using a PHERAstar FS (BMG LABTECH) with fluorescence excitation and\n", "emission wavelengths (λ) of 485 and 520 nm, respectively. FP\n", "competitive binding assays were run in triplicate in 384-well plates\n", "(Corning 3575) using a total well volume of 15 μL (ref (63)). Each well solution contained\n", "15 nM VCB protein, 10 nM FAM-labeled HIF-1α peptide (FAM-DEALAHypYIPMDDDFQLRSF, Kd = 3 nM as measured by a direct FP titration),\n", "and decreasing concentrations of PROTAC (14-point seri\n", "--------------------------------------------------------------------------------\n", "\tsubsection title: Isothermal\n", "Titration Calorimetry\n", "\tsubsection text: ITC experiments were\n", "performed in an ITC200 microcalorimeter (GE Healthcare) as described\n", "previously.5 Titrations were carried out\n", "at 25 °C while stirring at 750 rpm and were performed as reverse\n", "mode (protein in the syringe and the ligand in the cell). Compounds\n", "were diluted in ITC buffer (20 mM Bis-Tris propane, 100 mM NaCl, 1\n", "mM tris(2-carboxyethyl)phosphine (TCEP), pH 7.5) from 10 mM\n", "DMSO stock solutions to a final concentration of 20 μM (0.2%\n", "DMSO). Each run consisted of 19 injections of 2 \n", "--------------------------------------------------------------------------------\n", "\tsubsection title: Live Cell Kinetic Analysis of BRD7 and BRD9\n", "Degradation\n", "\tsubsection text: HEK293 cells stably expressing LgBiT protein\n", "cultured in DMEM (Gibco)\n", "supplemented with 10% fetal bovine serum (Seradigm) and maintained\n", "at 37 °C and 5% CO2 were genome-edited using CRISPR/Cas9\n", "to generate endogenous HiBiT-BRD7 or HiBiT-BRD9 fusions. Clonal populations\n", "were isolated, and cells were plated in 96-well tissue culture plates\n", "at a density of 2 × 104 cells per well in 100 μL\n", "of growth medium. Following overnight incubation at 37 °C and\n", "5% CO2 medium was replaced with CO2-independent\n", "m\n", "--------------------------------------------------------------------------------\n", "\tsubsection title: NanoBRET Ubiquitination of BRD7 and BRD9\n", "\tsubsection text: Clonal populations\n", "of edited HEK293 cells expressing HiBiT-BRD7 or HiBiT-BRD9 were plated\n", "in tissue 96-well tissue culture plates at a density of 2 × 104 cells per well in 100 μL of growth medium and incubated\n", "overnight at 37 °C, 5% CO2. Following treatment with\n", "1 μM VZ185 for the indicated time frames, medium was replaced\n", "with Opti-MEM (Gibco) containing 200 μg/mL digitonin, 1:200\n", "dilution of primary anti-Ub antibody (Enzo Life Sciences, BML-PW8810),\n", "1:500 dilution of secondary anti-mouse Alexa\n", "====================================================================================================\n", "\n" ] } ], "source": [ "from lxml import etree\n", "\n", "def format_references(sup_element):\n", " \"\"\"Format reference citations found within tags.\"\"\"\n", " references = sup_element.xpath('.//xref[@ref-type=\"bibr\"]/text()')\n", " # Join multiple references with commas and enclose in brackets\n", " return '[' + ', '.join(references) + ']'\n", "\n", "def parse_paragraph(paragraph):\n", " \"\"\"Parse a paragraph element, combining text nodes and references.\"\"\"\n", " text_segments = []\n", " for node in paragraph.iterchildren():\n", " if node.tag == 'sup':\n", " text_segments.append(format_references(node))\n", " else:\n", " # Directly append text from other tags if needed\n", " text_segments.append(node.xpath('string()'))\n", " # Prepend any leading text in the paragraph before the first child element\n", " leading_text = paragraph.xpath('text()')[0] if paragraph.xpath('text()') else ''\n", " full_text = leading_text + ''.join(text_segments)\n", " return full_text\n", "\n", "def parse_section(section):\n", " \"\"\"Recursively parse a section to extract its title, text, and any subsections.\"\"\"\n", " section_data = {\n", " 'title': \"\".join(section.xpath('.//title/text()')),\n", " 'text': \"\".join(section.xpath('.//p//text()')),\n", " # 'text': ' '.join([parse_paragraph(p) for p in section.xpath('.//p')]),\n", " }\n", " \n", " # Process any subsections recursively\n", " subsections = section.xpath('.//sec')\n", " for subsection in subsections:\n", " subsection_title = \"\".join(subsection.xpath('./title/text()')).strip()\n", " section_data[subsection_title] = parse_section(subsection)\n", " \n", " return section_data\n", "\n", "def parse_article_data(article_xml):\n", " root = etree.fromstring(article_xml)\n", " # Use correct XPaths based on the XML namespace if applicable\n", " title = root.xpath('//article-meta//article-title/text()')\n", " abstract = \" \".join(root.xpath('//abstract//p/text()'))\n", " keywords = root.xpath('//kwd-group/kwd/text()')\n", " year = root.xpath('//article-meta//pub-date/year/text()')\n", " \n", " # Adjust XPath expressions based on actual XML structure\n", " # sections = [\"\".join(sec.xpath('.//text()')) for sec in root.xpath('//body//sec')]\n", " sections = [parse_section(sec) for sec in root.xpath('//body/sec')]\n", "\n", " tables = [{\"caption\": \"\".join(table.xpath('.//caption//title//text()')), \"content\": etree.tostring(table)} for table in root.xpath('//body//table-wrap')]\n", " figures = [{\"caption\": \"\".join(fig.xpath('.//caption//p//text()')), \"content\": etree.tostring(fig)} for fig in root.xpath('//body//fig')]\n", " \n", " return {\n", " \"title\": title,\n", " \"abstract\": abstract,\n", " \"keywords\": keywords,\n", " \"year\": year,\n", " \"sections\": sections,\n", " \"tables\": tables,\n", " \"figures\": figures\n", " }\n", "\n", "\n", "# Use the parse_article_data function on the fetched data\n", "article_info = parse_article_data(article_xml)\n", "# for k, v in article_info.items():\n", "# print(f\"{k}: {v}\\n\")\n", "# # if k == 'sections':\n", "# # print(''.join(v))\n", "# print('='*100 + '\\n')\n", "\n", "print(f'number of sections: {len(article_info[\"sections\"])}')\n", "for sec in article_info[\"sections\"]:\n", " print(f'section title: {sec[\"title\"]}')\n", " print('-'*80)\n", " print(f'section text: {sec[\"text\"][:500]}')\n", " print('-'*80)\n", " print(f'number of subsections: {len(sec) - 2}')\n", " for subsec in sec:\n", " if subsec not in ['title', 'text']:\n", " print('-'*80)\n", " print(f'\\tsubsection title: {subsec}')\n", " print(f'\\tsubsection text: {sec[subsec][\"text\"][:500]}')\n", " print('='*100 + '\\n')" ] }, { "cell_type": "code", "execution_count": 124, "metadata": {}, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "Tables: 4\n", "Thermodynamic Parameters of Formation\n", "of Binary and Ternary Complexes between VCB, BRD9 Bromodomain, and\n", "Compound 5 Measured by Isothermal Titration Calorimetry\n", "(ITC)a \n", "\n", "b'\\n \\n \\n Thermodynamic Parameters of Formation\\nof Binary and Ternary Complexes between VCB, BRD9 Bromodomain, and\\nCompound <bold>5</bold> Measured by Isothermal Titration Calorimetry\\n(ITC)<xref rid=\"t1fn1\" ref-type=\"table-fn\">a</xref>\\n \\n \\n \\n \\n \\n \\n \\n \\n \\n \\n \\n \\n \\n \\n \\n \\n \\n \\n \\n \\n \\n \\n \\n \\n \\n \\n \\n \\n \\n \\n \\n \\n \\n \\n \\n \\n \\n \\n \\n \\n \\n \\n \\n \\n \\n \\n \\n \\n \\n \\n \\n \\n \\n \\n \\n \\n
syringecellKd (nM)ΔH (kcal/mol)ΔG (kcal/mol)TΔS (kcal/mol)\\n N\\n α
BRD9-BD\\n 5\\n 15 ± 3–12.5 ± 0.4–10.7 ± 0.11.8 ± 0.50.753 ± 0.004 
VCB\\n 5\\n 33 ± 2–15.2 ± 0.1–10.2 ± 0.14.9 ± 0.10.60 ± 0.01 
 BRD9-BD:573 ± 2–6.4 ± 0.1–9.7 ± 0.1–3.3 ± 0.10.75 ± 0.050.45
\\n \\n \\n \\n

All ITC titrations were performed\\nat 25 °C. Values reported are the mean ± SEM from at least\\nthree independent measurements (n ≥ 3).

\\n
\\n
\\n
\\n '\n", "====================================================================================================\n", "\n", "SAR of Second Generation of PROTACsa \n", "\n", "b'\\n \\n \\n SAR of Second Generation of PROTACs<xref rid=\"t2fn1\" ref-type=\"table-fn\">a</xref>\\n \\n \\n \\n \\n \\n \\n

Footnote: *Degradation\\nactivity\\nreported as % of total protein remaining after 1 μM compound\\ntreatment relative to 0.1% DMSO vehicle as quantified by Western blotting\\nof HeLa cell lysates.

\\n
\\n
\\n
\\n '\n", "====================================================================================================\n", "\n", "SAR of Third Generation\n", "of PROTACsa \n", "\n", "b'\\n \\n \\n SAR of Third Generation\\nof PROTACs<xref rid=\"t3fn1\" ref-type=\"table-fn\">a</xref>\\n \\n \\n \\n \\n \\n \\n

Footnote: *Degradation activity\\nreported as % of total protein remaining after 1 μM compound\\ntreatment relative to 0.1% DMSO vehicle as quantified by Western blotting\\nof HeLa and RI-1 cell lysates.

\\n
\\n
\\n
\\n '\n", "====================================================================================================\n", "\n", "Biophysical Comparison between BRD9\n", "Degraders from Three Generations \n", "\n", "b'\\n \\n \\n Biophysical Comparison between BRD9\\nDegraders from Three Generations\\n \\n \\n \\n \\n \\n \\n \\n \\n \\n \\n \\n \\n \\n \\n \\n \\n \\n \\n \\n \\n \\n \\n \\n \\n \\n \\n \\n \\n \\n \\n \\n \\n \\n \\n \\n \\n \\n \\n \\n \\n \\n \\n \\n \\n \\n \\n \\n \\n \\n \\n \\n \\n \\n \\n \\n \\n \\n \\n \\n \\n \\n \\n \\n \\n \\n \\n \\n
 ITCa
FPb
AlphaLISA
compdbinary Kd (nM)ternary Kd (nM)αtotal ΔG (kcal/mol)binary Kd (nM)ternary Kd (nM)αmax intensity
\\n 5\\n 33 ± 273 ± 20.45–20.424 ± 698 ± 20.241.0 × 106
\\n 26\\n 87 ± 583 ± 21.05–20.770 ± 1460 ± 51.171.56 × 106
VZ18526 ± 927 ± 30.96–21.735 ± 535 ± 61.001.47 × 106
\\n \\n \\n \\n

All ITC titrations\\nwere performed\\nat 25 °C. Values reported are the mean ± SEM from at least\\ntwo independent measurements (n ≥ 2).

\\n
\\n \\n \\n

Kd values\\nare reported as the mean ± SEM of at least two individual experiments\\nperformed in triplicate.

\\n
\\n
\\n
\\n '\n", "====================================================================================================\n", "\n", "Figures: 17\n", "Chemical structures of parent (1a, 1b, 2–4) and modified\n", "(1c, 2a–4a) BRD7/9 and\n", "E3 ligase ligands.\n", "Functional groups selected for conjugation are shown in blue on parent\n", "ligands and in red on modified ligands. \n", "\n", "b'\\n \\n \\n

Chemical structures of parent (1a, 1b, 24) and modified\\n(1c, 2a4a) BRD7/9 and\\nE3 ligase ligands.\\nFunctional groups selected for conjugation are shown in blue on parent\\nligands and in red on modified ligands.

\\n \\n \\n
\\n '\n", "====================================================================================================\n", "\n", "Reagents\n", "and conditions: (a)\n", "1-Boc-piperazine, NaBH(OAc)3, THF, rt, overnight, yield\n", "97%; (b) NaH, CH3I, DMF, 0 °C, 5 h, yield 95%. (c)\n", "Step 1: 12, B2pin2, KOAc, Pd(dppf)Cl2, 1,4 dioxane, microwave, 140 °C, 40 min. Step 2: 14 and K2CO3 (aq) are added to step\n", "1; microwave, 120 °C, 30 min, yield 55%. (d) HCl 4 M in dioxane,\n", "DCM, rt, 1 h, quantitative yield. \n", "\n", "b'\\n \\n \\n Synthesis\\nof the BRD7/9 Ligand <bold>1c</bold>\\n

Reagents\\nand conditions: (a)\\n1-Boc-piperazine, NaBH(OAc)3, THF, rt, overnight, yield\\n97%; (b) NaH, CH3I, DMF, 0 °C, 5 h, yield 95%. (c)\\nStep 1: 12, B2pin2, KOAc, Pd(dppf)Cl2, 1,4 dioxane, microwave, 140 °C, 40 min. Step 2: 14 and K2CO3 (aq) are added to step\\n1; microwave, 120 °C, 30 min, yield 55%. (d) HCl 4 M in dioxane,\\nDCM, rt, 1 h, quantitative yield.

\\n \\n \\n
\\n '\n", "====================================================================================================\n", "\n", "Reagents and conditions:\n", "(a)\n", "oxalyl chloride, DMSO, DCM, then TEA, −78 °C to rt, 2\n", "h; (b) 1c, NaBH(OAc)3, TEA, DMF, rt, overnight;\n", "(c) TFA, DCM, rt, 2 h; (d) E3 ligand (2a, 3a, or 4a), HATU, HOAt, DIPEA, DMF, rt, 2 h. \n", "\n", "b'\\n \\n \\n Synthesis of the\\nFirst Generation of Degraders\\n

Reagents and conditions:\\n(a)\\noxalyl chloride, DMSO, DCM, then TEA, −78 °C to rt, 2\\nh; (b) 1c, NaBH(OAc)3, TEA, DMF, rt, overnight;\\n(c) TFA, DCM, rt, 2 h; (d) E3 ligand (2a, 3a, or 4a), HATU, HOAt, DIPEA, DMF, rt, 2 h.

\\n \\n \\n
\\n '\n", "====================================================================================================\n", "\n", "Screening of first generation\n", "of degraders. (A) Western blot analysis\n", "of BRD9 and BRD7 levels after treatment of HeLa cells with 1 μM\n", "compounds for 4 and 16 h before harvesting. Degradation activity is\n", "reported below each lane as % of protein abundance relative to 0.1%\n", "DMSO vehicle. (B) Western blot analysis of BRD9 and BRD7 levels after\n", "48 h transfection with 1.25 nM siRNA targeting respectively BRD7,\n", "BRD9, or negative control (N.C.) siRNA. Intensity values are quantified\n", "as described in the Experimental Section. \n", "\n", "b'\\n \\n \\n

Screening of first generation\\nof degraders. (A) Western blot analysis\\nof BRD9 and BRD7 levels after treatment of HeLa cells with 1 μM\\ncompounds for 4 and 16 h before harvesting. Degradation activity is\\nreported below each lane as % of protein abundance relative to 0.1%\\nDMSO vehicle. (B) Western blot analysis of BRD9 and BRD7 levels after\\n48 h transfection with 1.25 nM siRNA targeting respectively BRD7,\\nBRD9, or negative control (N.C.) siRNA. Intensity values are quantified\\nas described in the Experimental Section.

\\n \\n \\n
\\n '\n", "====================================================================================================\n", "\n", "Structures of compounds 7 and 21.18 \n", "\n", "b'\\n \\n \\n

Structures of compounds 7 and 21.18

\\n \\n \\n
\\n '\n", "====================================================================================================\n", "\n", "Ternary complex formation and analysis\n", "of binding mode for compound 5. (A) Cocrystal structure\n", "of BRD9-BD and compound 5. The warhead component of the\n", "degrader (purple and cyan; one from\n", "each protomer in the ASU) recapitulates the binding of inhibitor 1a (magenta, PDB code 5EUI),56 whereas\n", "the alkylated piperazine used to attach the linker is solvent-exposed\n", "and does not form any unfavorable interactions with the protein. (B) Fo – Fc omit\n", "map of compound 5 (contoured at 2.5σ) showing electron\n", "density for the alkylated piperazine ring. (C) BRD9-BD titrated into 5 alone. (D) VCB titrated into 5 alone. (E) VCB\n", "titrated into BRD9-BD:5 binary complex. VCB binds more\n", "weakly to the binary complex BRD9-BD:5 (Kd = 73 nM) compared to compound 5 alone (Kd = 33 nM), indicating negative cooperativity. \n", "\n", "b'\\n \\n \\n

Ternary complex formation and analysis\\nof binding mode for compound 5. (A) Cocrystal structure\\nof BRD9-BD and compound 5. The warhead component of the\\ndegrader (purple and cyan; one from\\neach protomer in the ASU) recapitulates the binding of inhibitor 1a (magenta, PDB code 5EUI),56 whereas\\nthe alkylated piperazine used to attach the linker is solvent-exposed\\nand does not form any unfavorable interactions with the protein. (B) FoFc omit\\nmap of compound 5 (contoured at 2.5σ) showing electron\\ndensity for the alkylated piperazine ring. (C) BRD9-BD titrated into 5 alone. (D) VCB titrated into 5 alone. (E) VCB\\ntitrated into BRD9-BD:5 binary complex. VCB binds more\\nweakly to the binary complex BRD9-BD:5 (Kd = 73 nM) compared to compound 5 alone (Kd = 33 nM), indicating negative cooperativity.

\\n \\n \\n
\\n '\n", "====================================================================================================\n", "\n", "Reagents and conditions: (a)\n", "NaH, 6-bromo-1-hexene, DMF/THF, rt, overnight; (b) BAIB, TEMPO, ACN/H2O, rt, overnight; (c) 2a, HATU, HOAt, DIPEA,\n", "DMF, rt, 2 h; (d) OsO4 4 wt % in H2O, NaIO4, pyridine, dioxane/H2O, rt; (e) 1c, NaBH(OAc)3, TEA, DMF, rt, overnight. \n", "\n", "b'\\n \\n \\n Synthesis of Compound <bold>23</bold>\\n

Reagents and conditions: (a)\\nNaH, 6-bromo-1-hexene, DMF/THF, rt, overnight; (b) BAIB, TEMPO, ACN/H2O, rt, overnight; (c) 2a, HATU, HOAt, DIPEA,\\nDMF, rt, 2 h; (d) OsO4 4 wt % in H2O, NaIO4, pyridine, dioxane/H2O, rt; (e) 1c, NaBH(OAc)3, TEA, DMF, rt, overnight.

\\n \\n \\n
\\n '\n", "====================================================================================================\n", "\n", "Reagents and conditions: (a)\n", "NaOH, allyl bromide, dioxane, rt, overnight; (b) MsCl, TEA, DCM, rt,\n", "3 h; (c) VHL ligands 2b–d, K2CO3, DMF, 70 °C, overnight; (d) OsO4, NaIO4, pyridine, dioxane/H2O, rt; (e) 1c, NaBH(OAc)3, TEA, DMF, rt, overnight. \n", "\n", "b'\\n \\n \\n Synthesis of Compounds <bold>26</bold>–<bold>31</bold>\\n

Reagents and conditions: (a)\\nNaOH, allyl bromide, dioxane, rt, overnight; (b) MsCl, TEA, DCM, rt,\\n3 h; (c) VHL ligands 2bd, K2CO3, DMF, 70 °C, overnight; (d) OsO4, NaIO4, pyridine, dioxane/H2O, rt; (e) 1c, NaBH(OAc)3, TEA, DMF, rt, overnight.

\\n \\n \\n
\\n '\n", "====================================================================================================\n", "\n", "Compound 26 induces rapid and profound depletion of\n", "BRD9 in cells. (A) Western blot analysis of BRD9, BRD7, and β-actin\n", "after treatment of HeLa cells with 1 μM compounds for 4 h before\n", "harvesting (data reported in Table 2). (B) Chemical structure of 26. (C) Quantification\n", "of BRD9 protein levels after treatment of HeLa with six different\n", "concentrations of 26 at 30 min and 4 h before harvesting.\n", "(D) Quantification of BRD9 protein levels after treatment with 1 μM 26 in HeLa at the desired time points. Intensity values, DC50, and half-lives were quantified as described in the Experimental Section. \n", "\n", "b'\\n \\n \\n

Compound 26 induces rapid and profound depletion of\\nBRD9 in cells. (A) Western blot analysis of BRD9, BRD7, and β-actin\\nafter treatment of HeLa cells with 1 μM compounds for 4 h before\\nharvesting (data reported in Table 2). (B) Chemical structure of 26. (C) Quantification\\nof BRD9 protein levels after treatment of HeLa with six different\\nconcentrations of 26 at 30 min and 4 h before harvesting.\\n(D) Quantification of BRD9 protein levels after treatment with 1 μM 26 in HeLa at the desired time points. Intensity values, DC50, and half-lives were quantified as described in the Experimental Section.

\\n \\n \\n
\\n '\n", "====================================================================================================\n", "\n", "Improved ternary complex formation by series-2 degraders. (A) Overlay\n", "of compound 26 titrations shows no difference between\n", "binary (VCB into 26 alone; black) and ternary (VCB into\n", "BRD9-BD:26 binary complex; green) titrations. (B) Fluorescence\n", "polarization measurements for compound 5 in the presence\n", "(red) and absence (black) of BRD9-BD. The rightward shift in the presence\n", "of BRD9-BD indicates negative cooperativity. Each point is the mean\n", "± SEM of at least two individual experiments performed in triplicate.\n", "(C) Fluorescence polarization measurements for compound 26 in the presence (green) and absence (black) of BRD9-BD. Each point\n", "is the mean ± SEM of at least two individual experiments performed\n", "in triplicate. (D) AlphaLISA assay showing increased ternary complex\n", "formation for 26 (green) compared to 5 (red).\n", "Each point is the mean ± SEM of at least one experiment performed\n", "in quadruplicate. \n", "\n", "b'\\n \\n \\n

Improved ternary complex formation by series-2 degraders. (A) Overlay\\nof compound 26 titrations shows no difference between\\nbinary (VCB into 26 alone; black) and ternary (VCB into\\nBRD9-BD:26 binary complex; green) titrations. (B) Fluorescence\\npolarization measurements for compound 5 in the presence\\n(red) and absence (black) of BRD9-BD. The rightward shift in the presence\\nof BRD9-BD indicates negative cooperativity. Each point is the mean\\n± SEM of at least two individual experiments performed in triplicate.\\n(C) Fluorescence polarization measurements for compound 26 in the presence (green) and absence (black) of BRD9-BD. Each point\\nis the mean ± SEM of at least two individual experiments performed\\nin triplicate. (D) AlphaLISA assay showing increased ternary complex\\nformation for 26 (green) compared to 5 (red).\\nEach point is the mean ± SEM of at least one experiment performed\\nin quadruplicate.

\\n \\n \\n
\\n '\n", "====================================================================================================\n", "\n", "Reagents and conditions: (a)\n", "MsCl, TEA, DCM, rt, 3 h; (b) 2d, K2CO3, DMF, 70 °C, overnight; (c) K2CO3, DMF, 70 °C, overnight; (d) HCl 1 N, THF (1:1), 50 °C,\n", "2 h; (e) 1c,d, NaBH(OAc)3, TEA,\n", "DMF, rt, overnight; (f) Na2HPO4, NaClO2, 2-methyl-2-butene, t-BuOH, H2O, rt,\n", "4 h ; (g) 1e,f, HATU, HOAt, DIPEA, DMF,\n", "rt, 2 h. \n", "\n", "b'\\n \\n \\n General Synthetic Routes for Third-Generation\\nCompounds\\n

Reagents and conditions: (a)\\nMsCl, TEA, DCM, rt, 3 h; (b) 2d, K2CO3, DMF, 70 °C, overnight; (c) K2CO3, DMF, 70 °C, overnight; (d) HCl 1 N, THF (1:1), 50 °C,\\n2 h; (e) 1c,d, NaBH(OAc)3, TEA,\\nDMF, rt, overnight; (f) Na2HPO4, NaClO2, 2-methyl-2-butene, t-BuOH, H2O, rt,\\n4 h ; (g) 1e,f, HATU, HOAt, DIPEA, DMF,\\nrt, 2 h.

\\n \\n \\n
\\n '\n", "====================================================================================================\n", "\n", "Screening\n", "of third generation of degraders. (A) Western-blot analysis\n", "of BRD9 and BRD7 levels after treatment of HeLa cells with 1 μM\n", "compounds for 4 h before harvesting. (B) Western blot analysis of\n", "BRD9 and BRD7 levels after treatment of RI-1 cells with 1 μM\n", "compounds for 2 h before harvesting. (C) Western blot analysis of\n", "BRD9 and BRD7 levels after treatment of RI-1 cells with 1 μM 7, 26, 46, and 51 for\n", "2 and 8 h before harvesting. Intensity values were quantified as described\n", "in the Experimental Section. \n", "\n", "b'\\n \\n \\n

Screening\\nof third generation of degraders. (A) Western-blot analysis\\nof BRD9 and BRD7 levels after treatment of HeLa cells with 1 μM\\ncompounds for 4 h before harvesting. (B) Western blot analysis of\\nBRD9 and BRD7 levels after treatment of RI-1 cells with 1 μM\\ncompounds for 2 h before harvesting. (C) Western blot analysis of\\nBRD9 and BRD7 levels after treatment of RI-1 cells with 1 μM 7, 26, 46, and 51 for\\n2 and 8 h before harvesting. Intensity values were quantified as described\\nin the Experimental Section.

\\n \\n \\n
\\n '\n", "====================================================================================================\n", "\n", "VZ185 induces strong and rapid degradation in a time-\n", "and dose-dependent\n", "manner. (A) Western blot analysis of BRD9, BRD7, and β-actin\n", "after treatment of RI-1 cells with six different concentrations of\n", "compounds 46 and 51 for 2 and 8 h before\n", "harvesting. (B) Chemical structures of 51 (VZ185) and 46. (C) Quantification of protein levels relative to DMSO\n", "control after treatment with different concentration of VZ185 and\n", "DC50 values. (D) Time-dependent experiment in RI-1 cells\n", "after treatment with 10 nM and 100 nM 51 at the desired\n", "time points. Intensity values and DC50 were quantified\n", "as described in the Experimental Section. \n", "\n", "b'\\n \\n \\n

VZ185 induces strong and rapid degradation in a time-\\nand dose-dependent\\nmanner. (A) Western blot analysis of BRD9, BRD7, and β-actin\\nafter treatment of RI-1 cells with six different concentrations of\\ncompounds 46 and 51 for 2 and 8 h before\\nharvesting. (B) Chemical structures of 51 (VZ185) and 46. (C) Quantification of protein levels relative to DMSO\\ncontrol after treatment with different concentration of VZ185 and\\nDC50 values. (D) Time-dependent experiment in RI-1 cells\\nafter treatment with 10 nM and 100 nM 51 at the desired\\ntime points. Intensity values and DC50 were quantified\\nas described in the Experimental Section.

\\n \\n \\n
\\n '\n", "====================================================================================================\n", "\n", "Quantitative live-cell kinetics of VZ185 induced degradation of\n", "BRD7 and BRD9. Degradation profile (A), calculation of DC50 values (B), and initial degradation rate (C) across concentration\n", "series indicated of VZ185 using continual luminescent reading of CRISPR/Cas9\n", "endogenously tagged HiBiT-BRD7 or HiBiT-BRD9 in HEK293 cells. Error\n", "bars are expressed as SEM taken from n = 3 experiments. \n", "\n", "b'\\n \\n \\n

Quantitative live-cell kinetics of VZ185 induced degradation of\\nBRD7 and BRD9. Degradation profile (A), calculation of DC50 values (B), and initial degradation rate (C) across concentration\\nseries indicated of VZ185 using continual luminescent reading of CRISPR/Cas9\\nendogenously tagged HiBiT-BRD7 or HiBiT-BRD9 in HEK293 cells. Error\\nbars are expressed as SEM taken from n = 3 experiments.

\\n \\n \\n
\\n '\n", "====================================================================================================\n", "\n", "Mechanistic characterization of VZ185 mode of action.\n", "(A) VZ185\n", "activity is proteasome and CRL2VHL-dependent. RI-1 cells\n", "were treated in two replicates with MG132, MLN4924, VH298, and cisVZ185 in the presence of absence of VZ185 (100 nM) at\n", "desired time points before harvesting. (B) NanoBRET experiments in\n", "HEK293 cells to monitor ubiquitination of HiBiT endogenously tagged\n", "BRD9 (purple) or BRD7 (green) using monoclonal-Ub primary and Alexa594\n", "secondary antibodies at times indicated after treatment with 1 μM\n", "VZ185. Error bars expressed as SEM of n = 3 experiments. \n", "\n", "b'\\n \\n \\n

Mechanistic characterization of VZ185 mode of action.\\n(A) VZ185\\nactivity is proteasome and CRL2VHL-dependent. RI-1 cells\\nwere treated in two replicates with MG132, MLN4924, VH298, and cisVZ185 in the presence of absence of VZ185 (100 nM) at\\ndesired time points before harvesting. (B) NanoBRET experiments in\\nHEK293 cells to monitor ubiquitination of HiBiT endogenously tagged\\nBRD9 (purple) or BRD7 (green) using monoclonal-Ub primary and Alexa594\\nsecondary antibodies at times indicated after treatment with 1 μM\\nVZ185. Error bars expressed as SEM of n = 3 experiments.

\\n \\n \\n
\\n '\n", "====================================================================================================\n", "\n", "Effect of BRD7/9 degradation\n", "on viability of BRD9-sensitive cancer\n", "cell lines. Cell proliferation activity assessed in EOL-1 (A) and\n", "A-204 (B) cell lines after treatment with 1a, 1b, VZ185, 7, 21 (dBRD9), and doxorubicin\n", "for 7 days. \n", "\n", "b'\\n \\n \\n

Effect of BRD7/9 degradation\\non viability of BRD9-sensitive cancer\\ncell lines. Cell proliferation activity assessed in EOL-1 (A) and\\nA-204 (B) cell lines after treatment with 1a, 1b, VZ185, 7, 21 (dBRD9), and doxorubicin\\nfor 7 days.

\\n \\n \\n
\\n '\n", "====================================================================================================\n", "\n", "Impact of VZ185 on the cellular proteome after treatment\n", "of RI-1\n", "cells with 100 nM compound for 4 h before harvesting. Data are plotted\n", "as fold change (%) versus −log10 of p-value (t test) for a total of 6273 proteins, expressed\n", "as the mean of the replicates. For quantification, see Experimental Section. \n", "\n", "b'\\n \\n \\n

Impact of VZ185 on the cellular proteome after treatment\\nof RI-1\\ncells with 100 nM compound for 4 h before harvesting. Data are plotted\\nas fold change (%) versus −log10 of p-value (t test) for a total of 6273 proteins, expressed\\nas the mean of the replicates. For quantification, see Experimental Section.

\\n \\n \\n
\\n '\n", "====================================================================================================\n", "\n" ] } ], "source": [ "from IPython.display import display_html\n", "\n", "print(f'Tables: {len(article_info[\"tables\"])}')\n", "for table in article_info['tables']:\n", " print(table['caption'], '\\n')\n", " print(table['content'])\n", " print('='*100 + '\\n')\n", "\n", "print(f'Figures: {len(article_info[\"figures\"])}')\n", "for fig in article_info['figures']:\n", " print(fig['caption'], '\\n')\n", " print(fig['content'])\n", " print('='*100 + '\\n')" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "## Deprecated" ] }, { "cell_type": "code", "execution_count": 61, "metadata": {}, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "Section: Introduction\n", "\n", "Targeted\n", "protein degradation is an emerging strategy to use small\n", "molecules to knock down a protein by hijacking the ubiquitin–proteasome\n", "system [1,2]. PROTACs (proteolysis targeting chimeras)\n", "are bifunctional degrader molecules composed of a ligand for the target\n", "protein and a ligand for E3 ligase recruitment, connected by a linker [3,4]. Upon formation of a ternary complex target:degrader:E3 [5−7], the protein of interest is ubiquitinated and degraded by the proteasome.\n", "Compared to target bloc...\n", "\n", "====================================================================================================\n", "\n", "Section: Results and Discussion\n", "\n", "We began\n", "our investigation by designing a small set of PROTACs aimed to induce\n", "BRD7/9 degradation by recruiting three different E3 ubiquitin ligases:\n", "VHL, CRBN, and DCAF15 [59,60]. We aimed to leverage available\n", "E3 ligase ligands and to maximize the opportunity for complementary\n", "surfaces between the bromodomain and the ligase within the ternary\n", "complex. As BRD7/9 bromodomain ligands, we selected compounds 1a,b (Figure 1) [56], on the basis of their\n", "high binding affinity[56] and of their superior...\n", "\n", "====================================================================================================\n", "\n", "Section: First Generation of BRD7 and BRD9 Degraders\n", "\n", "We began\n", "our investigation by designing a small set of PROTACs aimed to induce\n", "BRD7/9 degradation by recruiting three different E3 ubiquitin ligases:\n", "VHL, CRBN, and DCAF15 [59,60]. We aimed to leverage available\n", "E3 ligase ligands and to maximize the opportunity for complementary\n", "surfaces between the bromodomain and the ligase within the ternary\n", "complex. As BRD7/9 bromodomain ligands, we selected compounds 1a,b (Figure 1) [56], on the basis of their\n", "high binding affinity[56] and of their superior...\n", "\n", "====================================================================================================\n", "\n", "Section: Second Generation of BRD7 and BRD9 Degraders\n", "\n", "To improve\n", "ternary complex formation and degradation activity of PROTACs 5 and 6, we explored the impact of varying their\n", "derivatization point, linker length, and composition (compounds 22–31, Table 2). First, to expand the conjugation pattern\n", "between VHL1 and BrdL1 (Figure 1), the number of PEG units was modified (3 units for 24; 5 units for 22), a more lipophilic 11-atoms\n", "chain was inserted (compound 23), and a different attachment\n", "to BrdL1 moiety via amide conjugation was explored (compound 2...\n", "\n", "====================================================================================================\n", "\n", "Section: Third Generation\n", "of BRD7 and BRD9 Degraders\n", "\n", "The pronounced\n", "degradation of BRD9 observed with 26 motivated us to\n", "design a third generation of PROTACs with the goal to further optimize\n", "our degrader. On the basis of the SAR previously acquired, the design\n", "strategy was to keep VHL4 moiety fixed and to focus on systematically\n", "varying the linker length and composition, as well as the substitution\n", "and conjugation chemistry at the BRD7/9 warhead. The focus on the\n", "linker concentrated on exploring varying ratios between hydrophilic\n", "and lipophilic p...\n", "\n", "====================================================================================================\n", "\n", "Section: Conclusion\n", "\n", "We describe the development of a new series\n", "of PROTACs against\n", "BRD9, a target thought as not degradable through recruitment of the\n", "E3 ligase VHL. In spite of starting from unimpressive degradation\n", "profiles of initial compounds, VHL-based degraders could be optimized\n", "by systematically varying the conjugation patterns and monitoring\n", "cellular degradation activities and formation of ternary complexes.\n", "Throughout the campaign, we revealed important structure–activity\n", "relationships that proved invalua...\n", "\n", "====================================================================================================\n", "\n", "Section: Experimental Section\n", "\n", "Chemicals,\n", "commercially available,\n", "were purchased from Apollo Scientific, Sigma-Aldrich, Fluorochem,\n", "or Manchester Organics and used without any further purification.\n", "All reactions were carried out using anhydrous solvents. Analytical\n", "thin-layer chromatography (TLC) was performed on precoated TLC plates\n", "(layer 0.20 mm silica gel 60 with fluorescent indicator (UV 254: Merck)).\n", "The TLC plates were air-dried and revealed under UV lamp (254/365\n", "nm). Flash column chromatography was performed using pr...\n", "\n", "====================================================================================================\n", "\n", "Section: Chemistry. Synthesis\n", "\n", "Chemicals,\n", "commercially available,\n", "were purchased from Apollo Scientific, Sigma-Aldrich, Fluorochem,\n", "or Manchester Organics and used without any further purification.\n", "All reactions were carried out using anhydrous solvents. Analytical\n", "thin-layer chromatography (TLC) was performed on precoated TLC plates\n", "(layer 0.20 mm silica gel 60 with fluorescent indicator (UV 254: Merck)).\n", "The TLC plates were air-dried and revealed under UV lamp (254/365\n", "nm). Flash column chromatography was performed using pr...\n", "\n", "====================================================================================================\n", "\n", "Section: General Method A\n", "\n", "To a mixture of aryl bromide (1 equiv)\n", "in dioxane (0.2 M), Pd(dppf)Cl2 (0.1 equiv), bis(pinacolato)diboron\n", "(1.2 equiv), and KOAc (3 equiv) were added. The mixture was heated\n", "under microwave conditions at 140 °C for 40 min. Then aryl iodide 14 (1 equiv) and a degassed solution of K2CO3 2 M (2 equiv) were added. The reaction mixture was heated\n", "in microwave at 120 °C for 30 min. The resulting mixture was\n", "filtered through Celite and washed several times with DCM. The organic\n", "phase was washed with H2...\n", "\n", "====================================================================================================\n", "\n", "Section: General Method B\n", "\n", "To a solution of acid (1 equiv) in\n", "DMF (0.2 M), HATU (1 equiv), HOAt (1 equiv), amine (1 equiv), and\n", "DIPEA (5 equiv) were added. The reaction mixture was stirred at rt\n", "for 2 h. The solvent was evaporated under reduced pressure to give\n", "the corresponding crude, which was chromatographically purified to\n", "yield the final compound....\n", "\n", "====================================================================================================\n", "\n", "Section: General Method C\n", "\n", "A mixture of aldehyde (1 equiv), amine\n", "(HCl salt, 1.1 equiv), and TEA (1.1 equiv) in DMF (0.2 M) was stirred\n", "at rt. After 15 min, NaBH(OAc)3 (1.5 equiv) was added,\n", "and the reaction was stirred overnight at rt under nitrogen. The solvent\n", "was evaporated under reduced pressure to give the corresponding crude,\n", "which was purified accordingly to yield the desired compound....\n", "\n", "====================================================================================================\n", "\n", "Section: General\n", "Method D\n", "\n", "To a stirred solution of oxalyl chloride\n", "(1.5 equiv) in DCM (0.3 M), DMSO (2 equiv) was added dropwise at −78\n", "°C. After 10 min at −78 °C, the alcohol starting\n", "material (1 equiv) in DCM (0.3 M) was added. The reaction was stirred\n", "at −78 °C for 1 h, TEA (10 equiv) was added dropwise,\n", "and temperature was increased to rt. After 1 h, the reaction mixture\n", "was diluted with DCM, washed with a saturated solution of ammonium\n", "chloride. The organic phases were combined, washed with brine, dried\n", "over MgSO4, ...\n", "\n", "====================================================================================================\n", "\n", "Section: General Method E\n", "\n", "To a solution of\n", "the alcohol starting\n", "material (1 equiv) and trimethylamine (1.5 equiv) in DCM (0.2 M),\n", "methansulfonyl chloride (1.2 equiv) was added at 0 °C. The reaction\n", "mixture was stirred at 0 °C for 3 h. The reaction was quenched\n", "with a saturated solution of ammonium chloride and extracted with\n", "DCM. The organic phases were combined, dried over MgSO4, filtered, and evaporated to dryness. The crude (1.5 equiv) was\n", "suspended in DMF (0.2 M), and 2b–d inhibitor derivative (1 equiv) and K2CO3 (3\n", "...\n", "\n", "====================================================================================================\n", "\n", "Section: General Method F\n", "\n", "A 1 M aqueous solution\n", "of HCl (1 mL)\n", "was added to the VHL-acetal linker (0.06 mmol) in THF (1 mL). The\n", "reaction mixture was heated at 50 °C for 2 h. The solvent was\n", "evaporated under reduced pressure, and the product was extracted with\n", "DCM/MeOH (9:1). The organic phases were combined, dried over MgSO4, filtered, and evaporated to dryness. The crude was used\n", "directly without any further purification....\n", "\n", "====================================================================================================\n", "\n", "Section: General method G\n", "\n", "Aldehyde (1 equiv) was taken up in t-BuOH and water\n", "(4:1) (0.3 M). Then 2-methyl-2-butene 2\n", "M in THF (4 equiv) was added, followed by sodium phosphate dibasic\n", "(1 equiv) and sodium chlorite (2 equiv). The reaction mixture was\n", "stirred at rt for 4 h. A 1 M aqueous solution of HCl was added. The\n", "product was extracted with DCM. The organic phases were combined,\n", "dried over MgSO4, filtered, and evaporated to dryness.\n", "The crude was used directly without any further purification....\n", "\n", "====================================================================================================\n", "\n", "Section: 4-(3,5-Dimethoxy-4-(piperazin-1-ylmethyl)phenyl)-2-methyl-2,7-naphthyridin-1(2\n", "\n", "Following general method\n", "A, compound 1c was obtained from compound 12 and 14 as brown powder. Yield: 50 mg, 55%. [1]H NMR (400 MHz, MeOD) δ: 9.67 (s, 1H), 8.76 (d, J = 6.9 Hz, 1H), 8.27 (s, 1H), 8.21 (d, J = 6.9 Hz,\n", "1H), 6.95 (s, 2H), 4.62 (s, 2H), 4.03 (s, 6H), 3.81 (s, 3H), 3.73\n", "(s, 8H). [13]C NMR (101 MHz, CDCl3) δ: 161.5,\n", "161.4, 148.6, 146.3, 145.5, 141.9, 139.7, 122.9, 117.9, 107.1, 105.8,\n", "57.2, 50.8, 49.7, 41.9, 37.9. MS m/z calcd for C22H26N4O3 394.2, found 395.3 [M + H[+]]....\n", "\n", "====================================================================================================\n", "\n", "Section: (2\n", "\n", "Following general method F, compound 70 was obtained from 68 (0.04 mmol) and directly\n", "used in the next step without any further purification. MS m/z calcd for C31H41FN4O6S 616.27, found 617.3 [M + H[+]]....\n", "\n", "====================================================================================================\n", "\n", "Section: 2-(2-(2-(4-(2,6-Dimethoxy-4-(2-methyl-1-oxo-1,2-dihydro-2,7-naphthyridin-4-yl)benzyl)piperazin-1-yl)ethoxy)ethoxy)-\n", "\n", "Following general method B, compound 7 was obtained from compound 19 and 3a (synthesized accordingly to literature[73]). The crude was purified by HPLC using a gradient of 5% to 95% v/v\n", "acetonitrile in 0.1% aqueous solution of formic acid to obtain compound 7 as yellow powder. Yield: 5.6 mg, 33%. [1]H NMR\n", "(400 MHz, MeOD) δ: 9.54 (d, J = 0.8 Hz, 1H),\n", "8.70 (d, J = 6.0 Hz, 1H), 8.11 (s, 1NH), 7.84 (s,\n", "1H), 7.73 (dd, J = 0.6, 6.0 Hz, 1H), 7.55–7.49\n", "(m, 1H), 7.10–7.03 (m, 2H), 6.87 (s, 2H), 5.08 (dd,...\n", "\n", "====================================================================================================\n", "\n", "Section: 14-(4-(2,6-Dimethoxy-4-(2-methyl-1-oxo-1,2-dihydro-2,7-naphthyridin-4-yl)benzyl)piperazin-1-yl)-\n", "\n", "A mixture of 45 (1 equiv),\n", "osmium tetroxide 4% in H2O (0.2 equiv), sodium periodate\n", "(4 equiv), pyridine (2 equiv) in dioxane/H2O (3:1) was\n", "stirred at rt for 48 h. Then H2O was added to the reaction\n", "and the product was extracted with DCM. The organic phases were combined,\n", "dried over MgSO4, filtered, and evaporated to dryness.\n", "Then, following general method A, from the aldehyde derivative and 1c compound 31 was obtained after purification\n", "by HPLC using a gradient of 5% to 95% v/v acetonitrile in 0...\n", "\n", "====================================================================================================\n", "\n", "Section: None\n", "\n", "Following general method D, compound 18 was obtained from tert-butyl 14-hydroxy-3,6,9,12-tetraoxatetradecanoate 16 and 1c after purification by HPLC using a\n", "gradient of 5% to 95% v/v acetonitrile in 0.1% aqueous solution of\n", "ammonia as white powder. Yield: 10.7 mg, 34%. [1]H NMR (500\n", "MHz, CDCl3) δ: 9.69 (d, J = 0.8\n", "Hz, 1H), 8.70 (d, J = 5.6 Hz, 1H), 7.43 (d, J = 5.6 Hz, 1H), 7.26 (s, 1H), 6.52 (s, 2H), 4.00 (s, 2H),\n", "3.81 (s, 6H), 3.73–3.57 (m, 19H), 2.67–2.55 (m, 10H),\n", "1.46 (s, 9H). [13]C NMR (12...\n", "\n", "====================================================================================================\n", "\n", "Section: 4-Iodo-2-methyl-2,7-naphthyridin-1(2\n", "\n", "A mixture of 4-iodo-2,7-naphthyridin-1(2H)-one 13 (synthesized accordingly to literature[74]) (1 equiv) and NaH (2 equiv) was stirred 30\n", "min at 0 °C in DMF (0.2 M). Then CH3I (1.6 equiv)\n", "was added and the reaction mixture was stirred at 0 °C for 5\n", "h. Water was added, and the precipitate formed was filtered and dried\n", "in vacuum. Yield: 300 mg, 95%. [1]H NMR (400 MHz, DMSO) δ:\n", "9.27 (s, 1H), 8.82 (d, J = 5.6 Hz, 1H), 8.26 (s,\n", "1H), 7.47 (d, J = 5.5 Hz, 1H), 3.52 (s,3H). [13]C NMR (101 MHz, DMSO) δ: 1...\n", "\n", "====================================================================================================\n", "\n", "Section: 2-(2-(2-(4-(2,6-Dimethoxy-4-(2-methyl-1-oxo-1,2-dihydro-2,7-naphthyridin-4-yl)benzyl)piperazin-1-yl)ethoxy)ethoxy)acetic\n", "Acid (\n", "\n", "A mixture of compound 17 (0.015 mmol), TFA (0.5 mL), and DCM (0.5 mL) was stirred at rt for\n", "3 h. Then the solvent was evaporated; the crude was dried under high\n", "pressure overnight and used directly in the next step without any\n", "further purification. Quantitative yield. MS m/z calcd for C28H36N4O7 540.26, found 541.4 [M + H[+]]....\n", "\n", "====================================================================================================\n", "\n", "Section: 17-(4-(2,6-Dimethoxy-4-(2-methyl-1-oxo-1,2-dihydro-2,7-naphthyridin-4-yl)benzyl)piperazin-1-yl)-3,6,9,12,15-pentaoxaheptadecanoic\n", "Acid (\n", "\n", "A mixture of compound 18 (0.034 mmol), TFA (0.5 mL), and DCM (0.5 mL) was stirred at rt for\n", "3 h. Then the solvent was evaporated; the crude was dried under high\n", "pressure overnight and used directly without any further purification.\n", "Quantitative yield. MS m/z calcd\n", "for C34H48N4O10 672.34,\n", "found 673.36 [M + H[+]]....\n", "\n", "====================================================================================================\n", "\n", "Section: 2-(2-(Hex-5-en-1-yloxy)ethoxy)ethan-1-ol\n", "(\n", "\n", "To a suspension of NaH (2.5 equiv) in DMF\n", "(1 M) and THF (1 M),\n", "diethylene glycol (5 equiv) was added at 0 °C under nitrogen.\n", "After 45 min 6-bromo-1-hexene (1 equiv) was added dropwise at 0 °C.\n", "Then the ice bath was removed, and the reaction mixture was stirred\n", "overnight at rt under nitrogen. Distillate water was added, and the\n", "reaction mixture was acidified with HCl 1 M up to pH 2. The product\n", "was extracted with CHCl3. The organic phases were combined,\n", "dried over MgSO4, filtered, and evaporated ...\n", "\n", "====================================================================================================\n", "\n", "Section: 2-(2-(Hex-5-en-1-yloxy)ethoxy)acetic\n", "Acid (\n", "\n", "A mixture of 30 (1 equiv), BAIB (2.2\n", "equiv), TEMPO (0.22 equiv)\n", "in ACN/H2O (1:1) (0.5 M) was stirred overnight at rt. The\n", "day after the solvent was evaporated, the crude was resuspended in\n", "DCM and washed with H2O. The organic phases were combined,\n", "dried over MgSO4, filtered, and evaporated to dryness.\n", "The resulting product was purified by flash column chromatography\n", "using a gradient from 0% to 20% of MeOH in DCM to obtain compound 34 as an oil. Yield: 472 mg, 81%. [1]H NMR (400 MHz,\n", "CDCl3) δ: 5....\n", "\n", "====================================================================================================\n", "\n", "Section: 2-(2-(Allyloxy)ethoxy)ethan-1-ol\n", "(\n", "\n", "To a mixture of NaOH (1 equiv) in dioxane\n", "(0.3 M), diethylene glycol\n", "(2 equiv) and allyl bromide (1 equiv) were added dropwise. The mixture\n", "was heated overnight at 55 °C. Then the reaction mixture was\n", "dried over MgSO4, filtered, and evaporated in vacuum. The\n", "crude was purified by flash column chromatography using a gradient\n", "from 50% to 100% of ethyl acetate in heptane to obtain compound 38 as an oil. Yield: 329 mg, 54%. [1]H NMR (400 MHz,\n", "CDCl3) δ: 5.90–5.80 (m, 1H), 5.21 (qd, J = 1.6, 17.2 Hz, ...\n", "\n", "====================================================================================================\n", "\n", "Section: 3,6,9,12-Tetraoxapentadec-14-en-1-ol\n", "(\n", "\n", "Following the same procedure applied for\n", "compound 38, from tetraethylene glycol and allyl bromide\n", "compound 39 was obtained as oil. Yield: 3.29 g, 68%.\n", "Analytical data matched\n", "those previously reported [75]....\n", "\n", "====================================================================================================\n", "\n", "Section: 2-(2-(2-(((2\n", "\n", "Following general method G, compound 71 was obtained from compound 69 (0.04 mmol)\n", "and was used in the next step without any further purification. Quantitative\n", "yield. MS m/z calcd for C30H39FN4O8S 634.25, found 635.3 [M\n", "+ H[+]]....\n", "\n", "====================================================================================================\n", "\n", "Section: 5-(2-(((2\n", "\n", "Following general method G, compound 72 was obtained from compound 70 (0.05 mmol)\n", "and was used in the next step without any further purification. Quantitative\n", "yield. MS m/z calcd for C31H41FN4O7S 632.27, found 633.3 [M\n", "+ H[+]]....\n", "\n", "====================================================================================================\n", "\n", "Section: Biology. Cell Culture\n", "\n", "Human cell\n", "lines HeLa and Hek293\n", "were purchased from ATCC and propagated in DMEM medium (Gibco), supplemented\n", "with 10% fetal bovine serum (FBS) (Gibco), l-glutamine (Gibco),\n", "100 μg mL[–1] of penicillin/streptomycin. RI-1\n", "cells, purchased from DSMZ, were propagated in RPMI medium (Gibco),\n", "supplemented with 10% fetal bovine serum (FBS) (Gibco), l-glutamine, 100 μg mL[–1] of penicillin/streptomycin.\n", "Cells were kept at 37 °C and 5% of CO2. EOL-1 and\n", "A-204 cell lines were purchased from ATCC and DSMZ...\n", "\n", "====================================================================================================\n", "\n", "Section: Testing Compounds in Cells\n", "\n", "HeLa and Hek293 cells were\n", "seeded at either 0.3 × 10[6] or 0.5 × 10[6] cells per well in 6-well plate in 2 mL of medium. At 80% confluency,\n", "cells were treated with compounds at the desired concentration, with\n", "final DMSO concentration of 0.1% v/v. Cells were incubated at 37 °C\n", "and 5% of CO2 for the desired time before harvesting. For\n", "protein extraction from adherent cells, cells were washed twice with\n", "DPBS (Gibco) and lysed with RIPA buffer (Sigma-Aldrich), supplemented\n", "with cOmplete Mini EDTA-fr...\n", "\n", "====================================================================================================\n", "\n", "Section: Small Interfering RNA\n", "\n", "HeLa cells were seeded at 0.3\n", "× 10[6] cells per well in 6-well plates in 2 mL of medium,\n", "with a goal to achieve 70% of confluence on the day of transfection.\n", "BRD7, BRD9, and CRBN targeting siRNA (L-020297-00-0005 ON-TARGETplus\n", "human BRD7, L-014250-02-0005 ON-TARGETplus human BRD9, and L-021086-00-0005\n", "ON-TARGETplus human CRBN SMARTpool, 5 nmol, Dharmacon) were prepared\n", "as a 20 μM solution in RNase-free 1× siRNA buffer (Dharmacon).\n", "Nontargeting siRNA (On-TARGETplus control pool, nontargeting pool...\n", "\n", "====================================================================================================\n", "\n", "Section: Mechanistic Evaluation\n", "\n", "Cells were\n", "seeded in 6-well\n", "plates with 5 × 10[5] cells per well in 2 mL of complete\n", "medium to aim for 80% confluence on the day of treatment. At time\n", "zero, ML4924 was added at final concentration of 3 μM with 0.1%\n", "v/v of DMSO. DMSO was added to the remaining wells in order to match\n", "concentration of vehicle in all wells. After 3 h, MG132 (50 μM)\n", "or VH298 (100 μM) was added to the designated wells at a final\n", "concentration of 0.1% v/v of DMSO. Again, DMSO was added to the remaining\n", "wells to match ...\n", "\n", "====================================================================================================\n", "\n", "Section: Immunoblotting\n", "\n", "Proteins were resolved by SDS–PAGE\n", "on NuPage 4–12% Bis-Tris Midi Gel (Invitrogen) and transferred\n", "to Amersham Protran 0.45 NC nitrocellulose membrane (GE Healthcare)\n", "using wet transfer. The membrane was blocked with 5% w/v milk in Tris-buffered\n", "saline (TBS) with 0.1% w/v Tween-20. The following primary antibodies\n", "at the given concentration were used: anti β-actin (Cell Signaling\n", "Technology, 4970S, 13E5) 1:2000, anti-Brd9 (Bethyl A303-781A) 1:1000,\n", "anti-Brd7 (Bethyl A302-304A) 1:1000, VHL rabbit ...\n", "\n", "====================================================================================================\n", "\n", "Section: Proliferation\n", "Assays\n", "\n", "A-204 cells (1 × 10[3]) were seeded\n", "per well of 384-well plates. After overnight incubation,\n", "compounds were added to the cells at logarithmic dose series using\n", "the HP digital dispenser D300 (Tecan), normalizing for added DMSO.\n", "1 day and 8 days after seeding cellular ATP content was measured using\n", "CellTiterGlo (Promega). Measurements after 8 days were divided by\n", "the measurement after 1 day (i.e., the T0 plate) to derive fold proliferation. Data were analyzed with GraphPad\n", "Prism software to obtain...\n", "\n", "====================================================================================================\n", "\n", "Section: MS Proteomics\n", "\n", "RI-1 cells were seeded at 2 ×\n", "10[6] cells/mL in a 10 cm plate 12 h before treatment. Cells\n", "were treated with 0.1% DMSO as vehicle control and with 100 nM VZ185\n", "and 100 nM cisVZ185 as negative control. Cells were\n", "incubated at 37 °C and 5% CO2 for 4 h before harvesting.\n", "Cells were washed twice with DPBS (Gibco) and lysed with 0.5 mL of\n", "100 mM Tris, pH 8.0, 4% (w/v) SDS, supplemented with cOmplete Mini\n", "EDTA-free protease inhibitor cocktail (Roche). Lysates were sonicated\n", "(2 × 10 s) and centrifuged ...\n", "\n", "====================================================================================================\n", "\n", "Section: Sample\n", "Preparation\n", "\n", "RI-1 cells were seeded at 2 ×\n", "10[6] cells/mL in a 10 cm plate 12 h before treatment. Cells\n", "were treated with 0.1% DMSO as vehicle control and with 100 nM VZ185\n", "and 100 nM cisVZ185 as negative control. Cells were\n", "incubated at 37 °C and 5% CO2 for 4 h before harvesting.\n", "Cells were washed twice with DPBS (Gibco) and lysed with 0.5 mL of\n", "100 mM Tris, pH 8.0, 4% (w/v) SDS, supplemented with cOmplete Mini\n", "EDTA-free protease inhibitor cocktail (Roche). Lysates were sonicated\n", "(2 × 10 s) and centrifuged ...\n", "\n", "====================================================================================================\n", "\n", "Section: nLC–MS/MS Analysis\n", "\n", "The fractions\n", "were analyzed\n", "sequentially on a Q Exactive HF hybrid quadrupole-Orbitrap mass spectrometer\n", "(Thermo Scientific) coupled to an UltiMate 3000 RSLCnano UHPLC system\n", "(Thermo Scientific) and EasySpray column (75 μm × 50 cm,\n", "PepMap RSLC C18 column, 2 μm, 100 Å, Thermo Scientific).\n", "A mix of buffer A (0.1% formic acid in H2O) and B (0.08%\n", "formic acid in 80% CH3CN) was used over a linear gradient\n", "from 5% to 35% buffer B over 125 min using a flow rate of 300 nL/min.\n", "Column temperature was set...\n", "\n", "====================================================================================================\n", "\n", "Section: Peptide\n", "and Protein Identification and Quantification\n", "\n", "The raw MS\n", "data files for all 20 fractions were merged and searched\n", "against the Uniprot-sprot-Human-Canonical database by Maxquant software\n", "1.6.0.16 for protein identification and TMT reporter ion quantitation.\n", "The identifications were based on the following criteria: enzyme used\n", "trypsin/P; maximum number of missed cleavages equal to 2; precursor\n", "mass tolerance equal to 10 ppm; fragment mass tolerance equal\n", "to 20 ppm. Variable modifications: oxidation (M), acetyl (N-term),\n", "deamidation (NQ), Gln ...\n", "\n", "====================================================================================================\n", "\n", "Section: Protein Expression and Purification\n", "\n", "Human proteins\n", "VHL (UniProt accession number P40337), ElonginC (Q15369), and ElonginB\n", "(Q15370) and the bromodomain (residues 134–239) for BRD9 (Q9H8M2)\n", "were used for all protein expression. His6-tagged constructs\n", "were transformed into Escherichia coli BL21(DE3),\n", "and expression was induced by the addition of isopropyl β-d-1-thiogalactopyranoside (IPTG). E. coli cells\n", "were lysed using a pressure cell homogenizer (Stansted Fluid Power);\n", "lysates were clarified by centrifuge and loaded onto a HisTrap...\n", "\n", "====================================================================================================\n", "\n", "Section: Crystallization and Structure Solution of BRD9 Bromodomain Binary\n", "Complex\n", "\n", "The binary complex of Brd9-BD:5 was\n", "generated by incubating 500 μM Brd9 bromodomain with 750 μM\n", "compound 5 (from a 100 mM stock in DMSO). Crystals were\n", "grown using the hanging-drop vapor diffusion method by mixing equal\n", "volumes of binary complex solution and a crystallization solution\n", "containing 24% PEG 3350 and 0.2 M NH4F. Small needle crystals\n", "appeared within 48 h but took approximately 2 weeks to reach a suitable\n", "size for harvesting. Crystals were flash-frozen in liquid nitrogen\n", "using 20% eth...\n", "\n", "====================================================================================================\n", "\n", "Section: AlphaLISA Proximity Assay\n", "\n", "All assays were performed\n", "at room temperature in 384-well plates with a final assay volume of\n", "25 μL per well, as described previously [5]. All reagents were prepared as 5× stocks diluted in\n", "50 mM HEPES, pH 7.5, 100 mM NaCl, 0.1% (w/v) bovine\n", "serum albumin, and 0.02% (w/v) 3-[(cholamidopropyl)dimethylammonio]-1-propanesulfonate\n", "(CHAPS). Plates were sealed by transparent film and briefly centrifuged\n", "at 100g between additions of reagents. Biotinylated\n", "VCB (100 nM final) and His6-BRD9-bromodomain (1...\n", "\n", "====================================================================================================\n", "\n", "Section: Fluorescence Polarization\n", "\n", "All measurements were taken\n", "using a PHERAstar FS (BMG LABTECH) with fluorescence excitation and\n", "emission wavelengths (λ) of 485 and 520 nm, respectively. FP\n", "competitive binding assays were run in triplicate in 384-well plates\n", "(Corning 3575) using a total well volume of 15 μL (ref (63)). Each well solution contained\n", "15 nM VCB protein, 10 nM FAM-labeled HIF-1α peptide (FAM-DEALAHypYIPMDDDFQLRSF, Kd = 3 nM as measured by a direct FP titration),\n", "and decreasing concentrations of PROTAC (14-point seri...\n", "\n", "====================================================================================================\n", "\n", "Section: Isothermal\n", "Titration Calorimetry\n", "\n", "ITC experiments were\n", "performed in an ITC200 microcalorimeter (GE Healthcare) as described\n", "previously [5]. Titrations were carried out\n", "at 25 °C while stirring at 750 rpm and were performed as reverse\n", "mode (protein in the syringe and the ligand in the cell). Compounds\n", "were diluted in ITC buffer (20 mM Bis-Tris propane, 100 mM NaCl, 1\n", "mM tris(2-carboxyethyl)phosphine (TCEP), pH 7.5) from 10 mM\n", "DMSO stock solutions to a final concentration of 20 μM (0.2%\n", "DMSO). Each run consisted of 19 injections of...\n", "\n", "====================================================================================================\n", "\n", "Section: Live Cell Kinetic Analysis of BRD7 and BRD9\n", "Degradation\n", "\n", "HEK293 cells stably expressing LgBiT protein\n", "cultured in DMEM (Gibco)\n", "supplemented with 10% fetal bovine serum (Seradigm) and maintained\n", "at 37 °C and 5% CO2 were genome-edited using CRISPR/Cas9\n", "to generate endogenous HiBiT-BRD7 or HiBiT-BRD9 fusions. Clonal populations\n", "were isolated, and cells were plated in 96-well tissue culture plates\n", "at a density of 2 × 10[4] cells per well in 100 μL\n", "of growth medium. Following overnight incubation at 37 °C and\n", "5% CO2 medium was replaced with CO2-independent...\n", "\n", "====================================================================================================\n", "\n", "Section: NanoBRET Ubiquitination of BRD7 and BRD9\n", "\n", "Clonal populations\n", "of edited HEK293 cells expressing HiBiT-BRD7 or HiBiT-BRD9 were plated\n", "in tissue 96-well tissue culture plates at a density of 2 × 10[4] cells per well in 100 μL of growth medium and incubated\n", "overnight at 37 °C, 5% CO2. Following treatment with\n", "1 μM VZ185 for the indicated time frames, medium was replaced\n", "with Opti-MEM (Gibco) containing 200 μg/mL digitonin, 1:200\n", "dilution of primary anti-Ub antibody (Enzo Life Sciences, BML-PW8810),\n", "1:500 dilution of secondary anti-mouse Ale...\n", "\n", "====================================================================================================\n", "\n" ] } ], "source": [ "def get_all_text(elem, namespaces):\n", " \"\"\"\n", " Recursively retrieve all text within an element, including nested tags.\n", " Text within tags is included in brackets.\n", " :param elem: The current element to process\n", " :param namespaces: Dictionary of XML namespaces\n", " \"\"\"\n", " text = elem.text if elem.text is not None else \"\"\n", " for child in elem:\n", " # Extract local tag name ignoring namespace\n", " tag = child.tag.split('}')[-1] # Splits on '}' and takes the last part, which is the local tag name\n", " if tag == 'sup':\n", " text += \"[\" + get_all_text(child, namespaces) + \"]\" # Process content with brackets\n", " else:\n", " text += get_all_text(child, namespaces)\n", " if child.tail is not None:\n", " text += child.tail\n", " # Replace \".[]\" with \" [].\" in one go. Both brachets and dot are preserved.\n", " text = re.sub(r'\\.\\[([^\\]]+)\\]', r' [\\1].', text)\n", " text = re.sub(r',\\[([^\\]]+)\\]', r' [\\1],', text)\n", " return text\n", "\n", "def parse_article_xml(article_xml):\n", " # Define the namespaces used in the XML document\n", " namespaces = {\n", " 'oai': 'http://www.openarchives.org/OAI/2.0/',\n", " 'jats': 'https://jats.nlm.nih.gov/ns/archiving/1.3/'\n", " }\n", "\n", " # Find the body element\n", " # Note: Adjust the XPath expression based on the actual structure and namespaces\n", " body = article_xml.find('.//jats:body', namespaces)\n", "\n", " if not body:\n", " print(\"No body found in the XML.\")\n", " return None\n", "\n", " # Initialize a dictionary to hold section titles and their corresponding text\n", " sections = {'body': {}, 'back': {}, 'front': {}}\n", " # Iterate over each section in the XML\n", " for sec in body.findall('.//jats:sec', namespaces):\n", " # Extract the section title\n", " title = sec.find('.//jats:title', namespaces).text if sec.find('.//jats:title', namespaces) is not None else \"No Title\"\n", " # Extract and concatenate all paragraph texts within this section\n", " paragraphs = sec.findall('.//jats:p', namespaces)\n", " section_text = \"\\n\\n\".join([get_all_text(p, namespaces) for p in paragraphs if p.text])\n", " \n", " # Add this section's text to the dictionary\n", " sections['body'][title] = section_text\n", " \n", " back = article_xml.find('.//jats:back', namespaces)\n", " if back:\n", " for sec in back.findall('.//jats:sec', namespaces):\n", " title = sec.find('.//jats:title', namespaces).text if sec.find('.//jats:title', namespaces) is not None else \"No Title\"\n", " paragraphs = sec.findall('.//jats:p', namespaces)\n", " section_text = \"\\n\\n\".join([get_all_text(p, namespaces) for p in paragraphs if p.text])\n", " sections['back'][title] = section_text\n", " return sections\n", "\n", "\n", "article_text = parse_article_xml(article_xml)\n", "for sec, text in article_text['body'].items():\n", " print(f\"Section: {sec}\\n\\n{text[:500]}...\\n\")\n", " print(\"=\"*100 + \"\\n\")" ] } ], "metadata": { "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.11.0" } }, "nbformat": 4, "nbformat_minor": 2 }