{ "cells": [ { "cell_type": "markdown", "id": "95c72710", "metadata": {}, "source": [ "# EDA and split for ProtCID data" ] }, { "cell_type": "code", "execution_count": 1, "id": "3e8eaf18", "metadata": {}, "outputs": [], "source": [ "import os\n", "import pandas as pd\n", "import numpy as np\n", "import matplotlib.pyplot as plt\n", "import seaborn as sns" ] }, { "cell_type": "code", "execution_count": 2, "id": "3395b03f", "metadata": {}, "outputs": [], "source": [ "DATA_DIR = '/home/ec2-user/SageMaker/efs/data/ProtCID/JaredJanssen_Benchmark'" ] }, { "cell_type": "code", "execution_count": 3, "id": "c6d31c26", "metadata": {}, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "total 30372\n", "drwxrwxr-x 4 ec2-user ec2-user 6144 Oct 14 15:06 camp_preprocess_test\n", "drwxrwxr-x 4 ec2-user ec2-user 6144 Oct 6 19:03 camp_preprocess_train\n", "-rwxrwx--- 1 ec2-user ec2-user 2078 Sep 17 22:58 HeaderAnnotations.txt\n", "drwxrwx--- 3 ec2-user ec2-user 6144 Sep 18 02:22 non-physiol\n", "drwxrwx--- 3 ec2-user ec2-user 6144 Sep 18 02:31 physiol\n", "-rwxrwx--- 1 ec2-user ec2-user 16600 Sep 18 02:05 ProcedureBenchmarkDimers.docx\n", "-rw-rw-r-- 1 ec2-user ec2-user 13473246 Sep 23 18:52 ProtCID_proteins.fasta\n", "-rw-rw-r-- 1 ec2-user ec2-user 3161922 Oct 27 13:50 test_full.csv\n", "-rw-rw-r-- 1 ec2-user ec2-user 321027 Nov 4 01:51 test_small.csv\n", "-rwxrwxr-x 1 ec2-user ec2-user 2022 Sep 18 02:41 TextFileNameStructure.txt\n", "-rw-rw-r-- 1 ec2-user ec2-user 12830792 Oct 27 13:50 train_full.csv\n", "-rw-rw-r-- 1 ec2-user ec2-user 1258012 Nov 4 01:51 train_small.csv\n" ] } ], "source": [ "!ls -l {DATA_DIR}" ] }, { "cell_type": "code", "execution_count": 4, "id": "4c72186b", "metadata": {}, "outputs": [], "source": [ "# !ls -l {DATA_DIR}/non-physiol" ] }, { "cell_type": "code", "execution_count": 5, "id": "96e513d2", "metadata": {}, "outputs": [], "source": [ "# !wc -l {DATA_DIR}/non-physiol/*.txt" ] }, { "cell_type": "code", "execution_count": 6, "id": "8356edaf", "metadata": {}, "outputs": [], "source": [ "# !head {DATA_DIR}/non-physiol/homoNonPhysiolDimerList_unpPdbCF5_all.txt" ] }, { "cell_type": "code", "execution_count": 7, "id": "7f292cda", "metadata": {}, "outputs": [], "source": [ "# !ls -lh {DATA_DIR}/non-physiol/non-physiol_pdb/homo | head" ] }, { "cell_type": "code", "execution_count": 8, "id": "1d8b2589", "metadata": {}, "outputs": [], "source": [ "# !ls -l {DATA_DIR}/non-physiol/non-physiol_pdb/homo | wc -l" ] }, { "cell_type": "code", "execution_count": 9, "id": "51724a4a", "metadata": {}, "outputs": [], "source": [ "# !ls -l {DATA_DIR}/physiol/physiol_pdb/homo | wc -l" ] }, { "cell_type": "code", "execution_count": 10, "id": "11d9b5e9", "metadata": {}, "outputs": [], "source": [ "# !ls -l {DATA_DIR}/non-physiol/non-physiol_pdb/hetero | wc -l" ] }, { "cell_type": "code", "execution_count": 11, "id": "2f1eca23", "metadata": {}, "outputs": [], "source": [ "# !ls -l {DATA_DIR}/physiol/physiol_pdb/hetero | wc -l" ] }, { "cell_type": "code", "execution_count": 12, "id": "8e868996", "metadata": {}, "outputs": [], "source": [ "pd.set_option('display.max_columns', None)" ] }, { "cell_type": "markdown", "id": "c3edef8d", "metadata": {}, "source": [ "## Collect pdb file paths" ] }, { "cell_type": "code", "execution_count": 13, "id": "8d8454e1", "metadata": {}, "outputs": [ { "data": { "text/plain": [ "(21446, 6)" ] }, "execution_count": 13, "metadata": {}, "output_type": "execute_result" } ], "source": [ "meta_df = []\n", "for label in ['physiol', 'non-physiol']:\n", " for complex_type in ['homo', 'hetero']:\n", " relative_path = f'{label}/{label}_pdb/{complex_type}'\n", " for pdb_file in os.listdir(os.path.join(DATA_DIR, relative_path)):\n", " relative_path_to_pdb_file = os.path.join(relative_path, pdb_file)\n", " \n", " file_str = pdb_file.split('.')[0]\n", " \n", " row = {\n", " 'id': file_str,\n", " 'label': label, \n", " 'complex_type': complex_type, \n", " 'pdb_file': relative_path_to_pdb_file,\n", " 'UnpID': '_'.join(file_str.split('_')[0:-2]),\n", " 'PdbID': file_str.split('_')[-2],\n", " 'InterfaceID': int(file_str.split('_')[-1]),\n", " }\n", " meta_df.append(row)\n", " \n", "meta_df = pd.DataFrame(meta_df).set_index('id', verify_integrity=True)\n", "meta_df.shape" ] }, { "cell_type": "code", "execution_count": 14, "id": "ecc939aa", "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", "
labelcomplex_typepdb_fileUnpIDPdbIDInterfaceID
id
IL2_HUMAN-IL2RB_HUMAN_5m5e_3non-physiolheteronon-physiol/non-physiol_pdb/hetero/IL2_HUMAN-I...IL2_HUMAN-IL2RB_HUMAN5m5e3
COX1_BOVIN-COX41_BOVIN_5b1b_3non-physiolheteronon-physiol/non-physiol_pdb/hetero/COX1_BOVIN-...COX1_BOVIN-COX41_BOVIN5b1b3
B2MG_CHICK-Q9GIP6_CHICK_6kx9_5non-physiolheteronon-physiol/non-physiol_pdb/hetero/B2MG_CHICK-...B2MG_CHICK-Q9GIP6_CHICK6kx95
H2A1B_HUMAN-H2B1K_HUMAN_6l9h_8non-physiolheteronon-physiol/non-physiol_pdb/hetero/H2A1B_HUMAN...H2A1B_HUMAN-H2B1K_HUMAN6l9h8
NIFD_CLOPA-NIFK_CLOPA_4wes_9non-physiolheteronon-physiol/non-physiol_pdb/hetero/NIFD_CLOPA-...NIFD_CLOPA-NIFK_CLOPA4wes9
\n", "
" ], "text/plain": [ " label complex_type \\\n", "id \n", "IL2_HUMAN-IL2RB_HUMAN_5m5e_3 non-physiol hetero \n", "COX1_BOVIN-COX41_BOVIN_5b1b_3 non-physiol hetero \n", "B2MG_CHICK-Q9GIP6_CHICK_6kx9_5 non-physiol hetero \n", "H2A1B_HUMAN-H2B1K_HUMAN_6l9h_8 non-physiol hetero \n", "NIFD_CLOPA-NIFK_CLOPA_4wes_9 non-physiol hetero \n", "\n", " pdb_file \\\n", "id \n", "IL2_HUMAN-IL2RB_HUMAN_5m5e_3 non-physiol/non-physiol_pdb/hetero/IL2_HUMAN-I... \n", "COX1_BOVIN-COX41_BOVIN_5b1b_3 non-physiol/non-physiol_pdb/hetero/COX1_BOVIN-... \n", "B2MG_CHICK-Q9GIP6_CHICK_6kx9_5 non-physiol/non-physiol_pdb/hetero/B2MG_CHICK-... \n", "H2A1B_HUMAN-H2B1K_HUMAN_6l9h_8 non-physiol/non-physiol_pdb/hetero/H2A1B_HUMAN... \n", "NIFD_CLOPA-NIFK_CLOPA_4wes_9 non-physiol/non-physiol_pdb/hetero/NIFD_CLOPA-... \n", "\n", " UnpID PdbID InterfaceID \n", "id \n", "IL2_HUMAN-IL2RB_HUMAN_5m5e_3 IL2_HUMAN-IL2RB_HUMAN 5m5e 3 \n", "COX1_BOVIN-COX41_BOVIN_5b1b_3 COX1_BOVIN-COX41_BOVIN 5b1b 3 \n", "B2MG_CHICK-Q9GIP6_CHICK_6kx9_5 B2MG_CHICK-Q9GIP6_CHICK 6kx9 5 \n", "H2A1B_HUMAN-H2B1K_HUMAN_6l9h_8 H2A1B_HUMAN-H2B1K_HUMAN 6l9h 8 \n", "NIFD_CLOPA-NIFK_CLOPA_4wes_9 NIFD_CLOPA-NIFK_CLOPA 4wes 9 " ] }, "execution_count": 14, "metadata": {}, "output_type": "execute_result" } ], "source": [ "meta_df.tail()" ] }, { "cell_type": "code", "execution_count": 15, "id": "12a99d57", "metadata": {}, "outputs": [ { "data": { "text/plain": [ "label complex_type\n", "non-physiol hetero 551\n", " homo 4925\n", "physiol hetero 6854\n", " homo 9116\n", "dtype: int64" ] }, "execution_count": 15, "metadata": {}, "output_type": "execute_result" } ], "source": [ "meta_df.groupby(['label', 'complex_type']).size()" ] }, { "cell_type": "code", "execution_count": 16, "id": "aeeb8ee9", "metadata": {}, "outputs": [ { "data": { "text/plain": [ "1 3886\n", "2 2201\n", "3 1942\n", "4 1672\n", "5 1450\n", " ... \n", "262 1\n", "385 1\n", "233 1\n", "399 1\n", "392 1\n", "Name: InterfaceID, Length: 292, dtype: int64" ] }, "execution_count": 16, "metadata": {}, "output_type": "execute_result" } ], "source": [ "meta_df['InterfaceID'].value_counts()" ] }, { "cell_type": "markdown", "id": "e5f89e37", "metadata": {}, "source": [ "## Parse protein sequences from PDB files" ] }, { "cell_type": "code", "execution_count": 17, "id": "b890fee5", "metadata": {}, "outputs": [], "source": [ "from ppi.data_utils import gunzip_to_ram, three_to_one_standard\n", "from ppi.data_utils import parse_pdb_structure" ] }, { "cell_type": "code", "execution_count": 18, "id": "3ffcb697", "metadata": {}, "outputs": [], "source": [ "from Bio.PDB import MMCIFParser, PDBParser\n", "from Bio.PDB.Polypeptide import three_to_one, is_aa\n", "\n", "def get_chain_sequences(structure):\n", " result = {}\n", " ligands = []\n", " for chain in structure.get_chains():\n", " seq = \"\".join(\n", " [\n", " three_to_one_standard(res.get_resname())\n", " for res in chain.get_residues()\n", " if is_aa(res)\n", " ]\n", " )\n", " for res in chain.get_residues():\n", " if not is_aa(res) and res.id[0] != 'W':\n", " ligands.append(res.get_resname())\n", " result[structure.id + '-' + chain.id] = seq\n", " return result, ligands" ] }, { "cell_type": "code", "execution_count": 19, "id": "c41225b8", "metadata": {}, "outputs": [], "source": [ "from tqdm import tqdm\n", "all_seqs = {}\n", "all_ligands = []\n", "rows_with_errors = []\n", "\n", "pdb_parser = PDBParser(\n", " QUIET=True,\n", " PERMISSIVE=True,\n", ")" ] }, { "cell_type": "code", "execution_count": null, "id": "7f98f99b", "metadata": {}, "outputs": [], "source": [ "for i in tqdm(range(meta_df.shape[0])):\n", " row = meta_df.iloc[i]\n", " try:\n", " structure = parse_pdb_structure(\n", " pdb_parser,\n", " row.name, \n", " os.path.join(DATA_DIR, row['pdb_file']) \n", " ) \n", " except:\n", " rows_with_errors.append(row.name)\n", " pass\n", " else:\n", " seqs, ligands = get_chain_sequences(structure)\n", " all_seqs.update(seqs)\n", " all_ligands.append(ligands)" ] }, { "cell_type": "code", "execution_count": 36, "id": "1c0148d7", "metadata": {}, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "number of chains: 42876\n", "number of unique sequences: 21160\n" ] } ], "source": [ "print('number of chains:', len(all_seqs))\n", "print('number of unique sequences:', len(set(all_seqs.values())))" ] }, { "cell_type": "code", "execution_count": 35, "id": "436b3a2c", "metadata": {}, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "number of PDB files with parsing errors: 8\n" ] } ], "source": [ "print('number of PDB files with parsing errors:', len(rows_with_errors))" ] }, { "cell_type": "code", "execution_count": 37, "id": "c7bf1f7e", "metadata": {}, "outputs": [], "source": [ "# write a fasta file for all ProtCID protein sequences\n", "with open(os.path.join(DATA_DIR, 'ProtCID_proteins.fasta'), 'w') as out:\n", " for pdb_chain_id, seq in all_seqs.items():\n", " out.write('>' + pdb_chain_id + '\\n')\n", " out.write(seq + '\\n')" ] }, { "cell_type": "markdown", "id": "ca7ee5c4", "metadata": {}, "source": [ "## Load protein sequences from the fasta file" ] }, { "cell_type": "code", "execution_count": 20, "id": "5980a289", "metadata": {}, "outputs": [], "source": [ "from Bio import SeqIO" ] }, { "cell_type": "code", "execution_count": 21, "id": "d5c06770", "metadata": {}, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "seq 21160\n", "dtype: int64\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", "
seq
id
CAPP1_MAIZE_6u2t_4-AKHHSIDAQLRQLVPGKVSEDDKLIEYDALLVDRFLNILQDLHGPSL...
CAPP1_MAIZE_6u2t_4-BKHHSIDAQLRQLVPGKVSEDDKLIEYDALLVDRFLNILQDLHGPSL...
Q31135_MOUSE_6blr_3-ALVERLYLVCGEEGAGGGSLVGERHFVHQFKGECYFTNGTQRIRLVT...
Q31135_MOUSE_6blr_3-BLVERLYLVCGEEGAGGGSLVGERHFVHQFKGECYFTNGTQRIRLVT...
DPOLL_HUMAN_5iio_6-ANHNLHITEKLEVLAKAYSVQGDKWRALGYAKAINALKSFHKPVTSY...
\n", "
" ], "text/plain": [ " seq\n", "id \n", "CAPP1_MAIZE_6u2t_4-A KHHSIDAQLRQLVPGKVSEDDKLIEYDALLVDRFLNILQDLHGPSL...\n", "CAPP1_MAIZE_6u2t_4-B KHHSIDAQLRQLVPGKVSEDDKLIEYDALLVDRFLNILQDLHGPSL...\n", "Q31135_MOUSE_6blr_3-A LVERLYLVCGEEGAGGGSLVGERHFVHQFKGECYFTNGTQRIRLVT...\n", "Q31135_MOUSE_6blr_3-B LVERLYLVCGEEGAGGGSLVGERHFVHQFKGECYFTNGTQRIRLVT...\n", "DPOLL_HUMAN_5iio_6-A NHNLHITEKLEVLAKAYSVQGDKWRALGYAKAINALKSFHKPVTSY..." ] }, "execution_count": 21, "metadata": {}, "output_type": "execute_result" } ], "source": [ "fasta = SeqIO.parse(os.path.join(DATA_DIR, 'ProtCID_proteins.fasta'), \"fasta\")\n", "seqs = []\n", "for item in fasta:\n", " seq = str(item.seq)\n", " if seq != '':\n", " seqs.append({'seq': seq, 'id': item.id})\n", "\n", "# len(cluster_seqs)\n", "seqs = pd.DataFrame(seqs).set_index('id', verify_integrity=True)\n", "print(seqs.nunique())\n", "seqs.head()" ] }, { "cell_type": "code", "execution_count": 22, "id": "e01deab8", "metadata": {}, "outputs": [ { "data": { "text/plain": [ "(42876, 1)" ] }, "execution_count": 22, "metadata": {}, "output_type": "execute_result" } ], "source": [ "seqs.shape" ] }, { "cell_type": "code", "execution_count": 23, "id": "7d5c7697", "metadata": {}, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "21438\n" ] }, { "data": { "text/plain": [ "A 21438\n", "B 21438\n", "Name: chain_id, dtype: int64" ] }, "execution_count": 23, "metadata": {}, "output_type": "execute_result" } ], "source": [ "seqs['chain_id'] = seqs.index.map(lambda x: x.split('-')[-1])\n", "seqs['structure_id'] = seqs.index.map(lambda x: '-'.join(x.split('-')[0:-1]))\n", "print(seqs['structure_id'].nunique())\n", "seqs['chain_id'].value_counts()" ] }, { "cell_type": "markdown", "id": "52fb1590", "metadata": {}, "source": [ "## Load sequence clustering results" ] }, { "cell_type": "code", "execution_count": 24, "id": "1d759043", "metadata": {}, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "(73130, 2)\n", "cluster_center 9787\n", "member 73130\n", "dtype: int64\n" ] } ], "source": [ "seq_clusters_df = pd.read_csv(\n", " '/home/ec2-user/SageMaker/efs/results/sequence_clustering/combined_datasets_newprotcid_0.6Cov0_cluster.tsv',\n", " sep='\\t',\n", " names=['cluster_center', 'member']\n", ")\n", "print(seq_clusters_df.shape)\n", "print(seq_clusters_df.nunique())" ] }, { "cell_type": "code", "execution_count": 25, "id": "b4c815f1", "metadata": {}, "outputs": [], "source": [ "seq_clusters_df = seq_clusters_df.set_index('member')" ] }, { "cell_type": "code", "execution_count": 26, "id": "5e7a5db8", "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", "
cluster_center
member
NADA_PYRHO_5kts_5-ANADA_PYRHO_5kts_5-A
NADA_PYRHO_6or8_7-ANADA_PYRHO_5kts_5-A
NADA_PYRHO_6or8_7-BNADA_PYRHO_5kts_5-A
NADA_PYRHO_5kts_5-BNADA_PYRHO_5kts_5-A
NADA_PYRHO_4zk6_1-ANADA_PYRHO_5kts_5-A
\n", "
" ], "text/plain": [ " cluster_center\n", "member \n", "NADA_PYRHO_5kts_5-A NADA_PYRHO_5kts_5-A\n", "NADA_PYRHO_6or8_7-A NADA_PYRHO_5kts_5-A\n", "NADA_PYRHO_6or8_7-B NADA_PYRHO_5kts_5-A\n", "NADA_PYRHO_5kts_5-B NADA_PYRHO_5kts_5-A\n", "NADA_PYRHO_4zk6_1-A NADA_PYRHO_5kts_5-A" ] }, "execution_count": 26, "metadata": {}, "output_type": "execute_result" } ], "source": [ "seq_clusters_df.head()" ] }, { "cell_type": "code", "execution_count": 27, "id": "c018872e", "metadata": {}, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "(42876, 4)\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", "
seqchain_idstructure_idcluster_center
id
CAPP1_MAIZE_6u2t_4-AKHHSIDAQLRQLVPGKVSEDDKLIEYDALLVDRFLNILQDLHGPSL...ACAPP1_MAIZE_6u2t_4CAPP1_MAIZE_6mgi_4-A
CAPP1_MAIZE_6u2t_4-BKHHSIDAQLRQLVPGKVSEDDKLIEYDALLVDRFLNILQDLHGPSL...BCAPP1_MAIZE_6u2t_4CAPP1_MAIZE_6mgi_4-A
Q31135_MOUSE_6blr_3-ALVERLYLVCGEEGAGGGSLVGERHFVHQFKGECYFTNGTQRIRLVT...AQ31135_MOUSE_6blr_36u3m-E-B|MHC
Q31135_MOUSE_6blr_3-BLVERLYLVCGEEGAGGGSLVGERHFVHQFKGECYFTNGTQRIRLVT...BQ31135_MOUSE_6blr_36u3m-E-B|MHC
DPOLL_HUMAN_5iio_6-ANHNLHITEKLEVLAKAYSVQGDKWRALGYAKAINALKSFHKPVTSY...ADPOLL_HUMAN_5iio_6DPOLL_HUMAN_5iio_3-A
\n", "
" ], "text/plain": [ " seq \\\n", "id \n", "CAPP1_MAIZE_6u2t_4-A KHHSIDAQLRQLVPGKVSEDDKLIEYDALLVDRFLNILQDLHGPSL... \n", "CAPP1_MAIZE_6u2t_4-B KHHSIDAQLRQLVPGKVSEDDKLIEYDALLVDRFLNILQDLHGPSL... \n", "Q31135_MOUSE_6blr_3-A LVERLYLVCGEEGAGGGSLVGERHFVHQFKGECYFTNGTQRIRLVT... \n", "Q31135_MOUSE_6blr_3-B LVERLYLVCGEEGAGGGSLVGERHFVHQFKGECYFTNGTQRIRLVT... \n", "DPOLL_HUMAN_5iio_6-A NHNLHITEKLEVLAKAYSVQGDKWRALGYAKAINALKSFHKPVTSY... \n", "\n", " chain_id structure_id cluster_center \n", "id \n", "CAPP1_MAIZE_6u2t_4-A A CAPP1_MAIZE_6u2t_4 CAPP1_MAIZE_6mgi_4-A \n", "CAPP1_MAIZE_6u2t_4-B B CAPP1_MAIZE_6u2t_4 CAPP1_MAIZE_6mgi_4-A \n", "Q31135_MOUSE_6blr_3-A A Q31135_MOUSE_6blr_3 6u3m-E-B|MHC \n", "Q31135_MOUSE_6blr_3-B B Q31135_MOUSE_6blr_3 6u3m-E-B|MHC \n", "DPOLL_HUMAN_5iio_6-A A DPOLL_HUMAN_5iio_6 DPOLL_HUMAN_5iio_3-A " ] }, "execution_count": 27, "metadata": {}, "output_type": "execute_result" } ], "source": [ "# join with `seqs`\n", "seqs = seqs.merge(\n", " seq_clusters_df,\n", " how='left',\n", " left_index=True, \n", " right_index=True\n", ")\n", "print(seqs.shape)\n", "seqs.head()" ] }, { "cell_type": "code", "execution_count": 28, "id": "7c244cdc", "metadata": {}, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "(21438, 4)\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "/tmp/ipykernel_29900/2774498782.py:1: FutureWarning: Indexing with multiple keys (implicitly converted to a tuple of keys) will be deprecated, use a list instead.\n", " seqs = seqs.groupby(['structure_id', 'chain_id'])['seq', 'cluster_center'].first().unstack()\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", "
seqcluster_center
chain_idABAB
structure_id
1433B_HUMAN_5n10_1MDKSELVQKAKLAEQAERYDDMAAAMKAVTEQGHELSNEERNLLSV...QGSMTMDKSELVQKAKLAEQAERYDDMAAAMKAVTEQGHELSNEER...6f08-N-J|14-3-36f08-N-J|14-3-3
1433B_HUMAN_6hep_8MGSMTMDKSELVQKAKLAEQAERYDDMAAAMKAVTEQGHELSNEER...MDKSELVQKAKLAEQAERYDDMAAAMKAVTEQGHELSNEERNLLSV...6f08-N-J|14-3-36f08-N-J|14-3-3
1433C_TOBAC_2o98_16AVAPTAREENVYMAKLAEQAERYEEMVEFMEKVSNSLGSEELTVEE...AVAPTAREENVYMAKLAEQAERYEEMVEFMEKVSNSLGSEELTVEE...6f08-N-J|14-3-36f08-N-J|14-3-3
1433C_TOBAC_3m50_2EENVYMAKLAEQAERYEEMVEFMEKVSNSLEELTVEERNLLSVAYK...EENVYMAKLAEQAERYEEMVEFMEKVSNSLEELTVEERNLLSVAYK...6f08-N-J|14-3-36f08-N-J|14-3-3
1433C_TOBAC_5nwj_1APTAREENVYMAKLAEQAERYEEMVEFMEKVSNSLGSEELTVEERN...APTAREENVYMAKLAEQAERYEEMVEFMEKVSNSLGSEELTVEERN...6f08-N-J|14-3-36f08-N-J|14-3-3
\n", "
" ], "text/plain": [ " seq \\\n", "chain_id A \n", "structure_id \n", "1433B_HUMAN_5n10_1 MDKSELVQKAKLAEQAERYDDMAAAMKAVTEQGHELSNEERNLLSV... \n", "1433B_HUMAN_6hep_8 MGSMTMDKSELVQKAKLAEQAERYDDMAAAMKAVTEQGHELSNEER... \n", "1433C_TOBAC_2o98_16 AVAPTAREENVYMAKLAEQAERYEEMVEFMEKVSNSLGSEELTVEE... \n", "1433C_TOBAC_3m50_2 EENVYMAKLAEQAERYEEMVEFMEKVSNSLEELTVEERNLLSVAYK... \n", "1433C_TOBAC_5nwj_1 APTAREENVYMAKLAEQAERYEEMVEFMEKVSNSLGSEELTVEERN... \n", "\n", " \\\n", "chain_id B \n", "structure_id \n", "1433B_HUMAN_5n10_1 QGSMTMDKSELVQKAKLAEQAERYDDMAAAMKAVTEQGHELSNEER... \n", "1433B_HUMAN_6hep_8 MDKSELVQKAKLAEQAERYDDMAAAMKAVTEQGHELSNEERNLLSV... \n", "1433C_TOBAC_2o98_16 AVAPTAREENVYMAKLAEQAERYEEMVEFMEKVSNSLGSEELTVEE... \n", "1433C_TOBAC_3m50_2 EENVYMAKLAEQAERYEEMVEFMEKVSNSLEELTVEERNLLSVAYK... \n", "1433C_TOBAC_5nwj_1 APTAREENVYMAKLAEQAERYEEMVEFMEKVSNSLGSEELTVEERN... \n", "\n", " cluster_center \n", "chain_id A B \n", "structure_id \n", "1433B_HUMAN_5n10_1 6f08-N-J|14-3-3 6f08-N-J|14-3-3 \n", "1433B_HUMAN_6hep_8 6f08-N-J|14-3-3 6f08-N-J|14-3-3 \n", "1433C_TOBAC_2o98_16 6f08-N-J|14-3-3 6f08-N-J|14-3-3 \n", "1433C_TOBAC_3m50_2 6f08-N-J|14-3-3 6f08-N-J|14-3-3 \n", "1433C_TOBAC_5nwj_1 6f08-N-J|14-3-3 6f08-N-J|14-3-3 " ] }, "execution_count": 28, "metadata": {}, "output_type": "execute_result" } ], "source": [ "seqs = seqs.groupby(['structure_id', 'chain_id'])['seq', 'cluster_center'].first().unstack()\n", "print(seqs.shape)\n", "seqs.head() # pdb files x sequences of chains" ] }, { "cell_type": "code", "execution_count": 29, "id": "c7784f36", "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", "
seq-Aseq-Bcluster_center-Acluster_center-B
structure_id
1433B_HUMAN_5n10_1MDKSELVQKAKLAEQAERYDDMAAAMKAVTEQGHELSNEERNLLSV...QGSMTMDKSELVQKAKLAEQAERYDDMAAAMKAVTEQGHELSNEER...6f08-N-J|14-3-36f08-N-J|14-3-3
1433B_HUMAN_6hep_8MGSMTMDKSELVQKAKLAEQAERYDDMAAAMKAVTEQGHELSNEER...MDKSELVQKAKLAEQAERYDDMAAAMKAVTEQGHELSNEERNLLSV...6f08-N-J|14-3-36f08-N-J|14-3-3
1433C_TOBAC_2o98_16AVAPTAREENVYMAKLAEQAERYEEMVEFMEKVSNSLGSEELTVEE...AVAPTAREENVYMAKLAEQAERYEEMVEFMEKVSNSLGSEELTVEE...6f08-N-J|14-3-36f08-N-J|14-3-3
1433C_TOBAC_3m50_2EENVYMAKLAEQAERYEEMVEFMEKVSNSLEELTVEERNLLSVAYK...EENVYMAKLAEQAERYEEMVEFMEKVSNSLEELTVEERNLLSVAYK...6f08-N-J|14-3-36f08-N-J|14-3-3
1433C_TOBAC_5nwj_1APTAREENVYMAKLAEQAERYEEMVEFMEKVSNSLGSEELTVEERN...APTAREENVYMAKLAEQAERYEEMVEFMEKVSNSLGSEELTVEERN...6f08-N-J|14-3-36f08-N-J|14-3-3
\n", "
" ], "text/plain": [ " seq-A \\\n", "structure_id \n", "1433B_HUMAN_5n10_1 MDKSELVQKAKLAEQAERYDDMAAAMKAVTEQGHELSNEERNLLSV... \n", "1433B_HUMAN_6hep_8 MGSMTMDKSELVQKAKLAEQAERYDDMAAAMKAVTEQGHELSNEER... \n", "1433C_TOBAC_2o98_16 AVAPTAREENVYMAKLAEQAERYEEMVEFMEKVSNSLGSEELTVEE... \n", "1433C_TOBAC_3m50_2 EENVYMAKLAEQAERYEEMVEFMEKVSNSLEELTVEERNLLSVAYK... \n", "1433C_TOBAC_5nwj_1 APTAREENVYMAKLAEQAERYEEMVEFMEKVSNSLGSEELTVEERN... \n", "\n", " seq-B \\\n", "structure_id \n", "1433B_HUMAN_5n10_1 QGSMTMDKSELVQKAKLAEQAERYDDMAAAMKAVTEQGHELSNEER... \n", "1433B_HUMAN_6hep_8 MDKSELVQKAKLAEQAERYDDMAAAMKAVTEQGHELSNEERNLLSV... \n", "1433C_TOBAC_2o98_16 AVAPTAREENVYMAKLAEQAERYEEMVEFMEKVSNSLGSEELTVEE... \n", "1433C_TOBAC_3m50_2 EENVYMAKLAEQAERYEEMVEFMEKVSNSLEELTVEERNLLSVAYK... \n", "1433C_TOBAC_5nwj_1 APTAREENVYMAKLAEQAERYEEMVEFMEKVSNSLGSEELTVEERN... \n", "\n", " cluster_center-A cluster_center-B \n", "structure_id \n", "1433B_HUMAN_5n10_1 6f08-N-J|14-3-3 6f08-N-J|14-3-3 \n", "1433B_HUMAN_6hep_8 6f08-N-J|14-3-3 6f08-N-J|14-3-3 \n", "1433C_TOBAC_2o98_16 6f08-N-J|14-3-3 6f08-N-J|14-3-3 \n", "1433C_TOBAC_3m50_2 6f08-N-J|14-3-3 6f08-N-J|14-3-3 \n", "1433C_TOBAC_5nwj_1 6f08-N-J|14-3-3 6f08-N-J|14-3-3 " ] }, "execution_count": 29, "metadata": {}, "output_type": "execute_result" } ], "source": [ "# flatten column names\n", "seqs.columns = ['%s-%s' % (x, y) for x, y in list(seqs.columns)]\n", "seqs.head()" ] }, { "cell_type": "code", "execution_count": 30, "id": "f81b3f31", "metadata": {}, "outputs": [ { "data": { "text/plain": [ "seq-A 14998\n", "seq-B 15095\n", "cluster_center-A 6731\n", "cluster_center-B 6796\n", "dtype: int64" ] }, "execution_count": 30, "metadata": {}, "output_type": "execute_result" } ], "source": [ "seqs.nunique()" ] }, { "cell_type": "code", "execution_count": 31, "id": "38830e1b", "metadata": {}, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "number of homodimers: 14052\n" ] } ], "source": [ "mask_homo = seqs['cluster_center-A'] == seqs['cluster_center-B']\n", "print('number of homodimers: ', mask_homo.sum())" ] }, { "cell_type": "code", "execution_count": 32, "id": "6e77291c", "metadata": {}, "outputs": [ { "data": { "text/plain": [ "(21438, 4)" ] }, "execution_count": 32, "metadata": {}, "output_type": "execute_result" } ], "source": [ "seqs.shape" ] }, { "cell_type": "code", "execution_count": 33, "id": "1ab1421b", "metadata": {}, "outputs": [], "source": [ "seqs['length-A'] = seqs['seq-A'].map(len)\n", "seqs['length-B'] = seqs['seq-B'].map(len)" ] }, { "cell_type": "code", "execution_count": 34, "id": "9461d9a8", "metadata": {}, "outputs": [ { "data": { "text/plain": [ "count 21438.000000\n", "mean 289.734863\n", "std 223.128384\n", "min 11.000000\n", "25% 140.000000\n", "50% 235.000000\n", "75% 367.000000\n", "max 2238.000000\n", "Name: length-A, dtype: float64" ] }, "execution_count": 34, "metadata": {}, "output_type": "execute_result" } ], "source": [ "seqs['length-A'].describe()" ] }, { "cell_type": "code", "execution_count": 35, "id": "10c0f05b", "metadata": {}, "outputs": [ { "data": { "text/plain": [ "count 21438.000000\n", "mean 284.559660\n", "std 215.747208\n", "min 11.000000\n", "25% 139.000000\n", "50% 236.000000\n", "75% 359.000000\n", "max 3636.000000\n", "Name: length-B, dtype: float64" ] }, "execution_count": 35, "metadata": {}, "output_type": "execute_result" } ], "source": [ "seqs['length-B'].describe()" ] }, { "cell_type": "code", "execution_count": 36, "id": "8e9d3da1", "metadata": {}, "outputs": [ { "data": { "text/plain": [ "15738" ] }, "execution_count": 36, "metadata": {}, "output_type": "execute_result" } ], "source": [ "mask_a_is_longer = seqs['length-A'] >= seqs['length-B']\n", "mask_a_is_longer.sum()" ] }, { "cell_type": "code", "execution_count": 37, "id": "b1ea8261", "metadata": {}, "outputs": [ { "data": { "text/plain": [ "3891" ] }, "execution_count": 37, "metadata": {}, "output_type": "execute_result" } ], "source": [ "(mask_a_is_longer & ~mask_homo).sum()" ] }, { "cell_type": "code", "execution_count": 38, "id": "4e3f9d63", "metadata": {}, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "(21446, 6)\n", "(21446, 12)\n" ] } ], "source": [ "# merge with meta_df\n", "print(meta_df.shape)\n", "meta_df = meta_df.merge(\n", " seqs,\n", " left_index=True,\n", " right_index=True,\n", " how='left')\n", "print(meta_df.shape)" ] }, { "cell_type": "code", "execution_count": 39, "id": "28f4248a", "metadata": {}, "outputs": [ { "data": { "text/plain": [ "label 21446\n", "complex_type 21446\n", "pdb_file 21446\n", "UnpID 21446\n", "PdbID 21446\n", "InterfaceID 21446\n", "seq-A 21438\n", "seq-B 21438\n", "cluster_center-A 21438\n", "cluster_center-B 21438\n", "length-A 21438\n", "length-B 21438\n", "dtype: int64" ] }, "execution_count": 39, "metadata": {}, "output_type": "execute_result" } ], "source": [ "meta_df.count()" ] }, { "cell_type": "code", "execution_count": 40, "id": "2bbd5cc7", "metadata": {}, "outputs": [ { "data": { "text/plain": [ "(21438, 12)" ] }, "execution_count": 40, "metadata": {}, "output_type": "execute_result" } ], "source": [ "# drop NA rows\n", "meta_df = meta_df.loc[~meta_df['seq-A'].isnull()]\n", "meta_df.shape" ] }, { "cell_type": "code", "execution_count": 41, "id": "abd0cc7d", "metadata": {}, "outputs": [], "source": [ "meta_df['label'] = meta_df['label'].map({\n", " 'physiol': 1,\n", " 'non-physiol': 0\n", "})" ] }, { "cell_type": "code", "execution_count": 42, "id": "1177df5f", "metadata": {}, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "(14038, 11) (7400, 11)\n" ] } ], "source": [ "meta_df_homo = meta_df.loc[\n", " meta_df['complex_type']=='homo'\n", "].drop('complex_type', axis=1)\n", "\n", "meta_df_hetero = meta_df.loc[\n", " meta_df['complex_type']=='hetero'\n", "].drop('complex_type', axis=1)\n", "\n", "print(meta_df_homo.shape, meta_df_hetero.shape)" ] }, { "cell_type": "code", "execution_count": 43, "id": "fbe05903", "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", "
complex_typeheterohomo
label
05514923
168499115
\n", "
" ], "text/plain": [ "complex_type hetero homo\n", "label \n", "0 551 4923\n", "1 6849 9115" ] }, "execution_count": 43, "metadata": {}, "output_type": "execute_result" } ], "source": [ "meta_df.groupby(['label', 'complex_type']).size().unstack()" ] }, { "cell_type": "code", "execution_count": 44, "id": "333543d1", "metadata": {}, "outputs": [ { "data": { "text/plain": [ "label 2\n", "complex_type 2\n", "pdb_file 21438\n", "UnpID 11585\n", "PdbID 12336\n", "InterfaceID 291\n", "seq-A 14998\n", "seq-B 15095\n", "cluster_center-A 6731\n", "cluster_center-B 6796\n", "length-A 1081\n", "length-B 1050\n", "dtype: int64" ] }, "execution_count": 44, "metadata": {}, "output_type": "execute_result" } ], "source": [ "meta_df.nunique()" ] }, { "cell_type": "code", "execution_count": 45, "id": "2b47bf42", "metadata": {}, "outputs": [], "source": [ "meta_df = meta_df.drop(['length-A', 'length-B'], axis=1)" ] }, { "cell_type": "code", "execution_count": 46, "id": "0252e28f", "metadata": {}, "outputs": [], "source": [ "meta_df['receptor_chain_id'] = 'A'\n", "meta_df['ligand_chain_id'] = 'B'" ] }, { "cell_type": "markdown", "id": "3c02de98", "metadata": {}, "source": [ "## Extract contact residues from PDB structures, then save the cropped structures in PDB files" ] }, { "cell_type": "code", "execution_count": 47, "id": "fa188f3a", "metadata": {}, "outputs": [], "source": [ "# thres = 10 # C-beta distance cutoff defining inter-residue contact\n", "thres = 6\n", "CROP_DATA_DIR = f'/home/ec2-user/SageMaker/efs/data/ProtCID/JaredJanssen_Benchmark_thres_{thres}'" ] }, { "cell_type": "code", "execution_count": 48, "id": "2a370c65", "metadata": {}, "outputs": [], "source": [ "!mkdir -p {CROP_DATA_DIR}\n", "!mkdir -p {CROP_DATA_DIR}/non-physiol/non-physiol_pdb/homo\n", "!mkdir -p {CROP_DATA_DIR}/physiol/physiol_pdb/homo\n", "!mkdir -p {CROP_DATA_DIR}/non-physiol/non-physiol_pdb/hetero\n", "!mkdir -p {CROP_DATA_DIR}/physiol/physiol_pdb/hetero" ] }, { "cell_type": "code", "execution_count": 48, "id": "76d478d6", "metadata": {}, "outputs": [], "source": [ "from scipy.spatial.distance import cdist\n", "from Bio.PDB import Select, PDBIO\n", "\n", "def get_cbeta(res):\n", " if res.get_resname() == 'GLY':\n", " return res['CA']\n", " else:\n", " if 'CB' not in res:\n", " return res['CA']\n", " return res['CB']\n", "\n", " \n", "def get_concat_residues(chain1, chain2, thres=10):\n", " # get the residue IDs\n", " res_ids1 = np.asarray([res.id[1] for res in chain1.get_residues() if is_aa(res)])\n", " res_ids2 = np.asarray([res.id[1] for res in chain2.get_residues() if is_aa(res)])\n", " \n", " # extract the C-beta coordinates of all AA residues\n", " coords1 = np.asarray([get_cbeta(res).coord for res in chain1.get_residues() if is_aa(res)])\n", " coords2 = np.asarray([get_cbeta(res).coord for res in chain2.get_residues() if is_aa(res)])\n", " # calculate interchain distance\n", " dist = cdist(coords1, coords2) \n", " dist_bool = dist <= thres\n", "\n", " res1_keep = res_ids1[dist_bool.sum(axis=1) > 0]\n", " res2_keep = res_ids2[dist_bool.sum(axis=0) > 0]\n", "# print('number of contacting residues in chain 1:', len(res1_keep))\n", "# print('number of contacting residues in chain 2:', len(res2_keep))\n", " return res1_keep, res2_keep\n", "\n", "\n", "def subset_pdb_structure(structure, chain1, chain2, \n", " res1_keep, res2_keep,\n", " outfile):\n", " class ResSelect(Select):\n", " def accept_residue(self, res):\n", " if (res.id[1] in res1_keep and res.parent.id == chain1.id) or \\\n", " (res.id[1] in res2_keep and res.parent.id == chain2.id):\n", " return True\n", " else:\n", " return False\n", " \n", " io = PDBIO()\n", " io.set_structure(structure)\n", " io.save(outfile, ResSelect())\n", " return" ] }, { "cell_type": "code", "execution_count": null, "id": "53a8f84e", "metadata": {}, "outputs": [ { "name": "stderr", "output_type": "stream", "text": [ " 66%|██████▋ | 14242/21438 [34:05<14:02, 8.55it/s] " ] } ], "source": [ "row_idx_with_error = []\n", "for i, row in tqdm(meta_df.iterrows(), total=meta_df.shape[0]):\n", " structure = parse_pdb_structure(\n", " pdb_parser,\n", " row.name, \n", " os.path.join(DATA_DIR, row['pdb_file']) \n", " ) \n", " \n", " # remove .gz suffix\n", " pdb_file = row['pdb_file'][:-3]\n", " output_pdb_file = os.path.join(CROP_DATA_DIR, pdb_file)\n", " \n", " for chain in structure.get_chains():\n", " if chain.id == row['receptor_chain_id']:\n", " chain1 = chain\n", " elif chain.id == row['ligand_chain_id']:\n", " chain2 = chain\n", " try:\n", " res1_keep, res2_keep = get_concat_residues(chain1, chain2, thres=thres)\n", " subset_pdb_structure(structure, chain1, chain2,\n", " res1_keep, res2_keep,\n", " output_pdb_file\n", " )\n", " except Exception as e:\n", "# print(e)\n", " # the error is due to atom in residues not labeled\n", " row_idx_with_error.append(i)\n", " pass" ] }, { "cell_type": "code", "execution_count": 49, "id": "5b1def7f", "metadata": {}, "outputs": [ { "ename": "NameError", "evalue": "name 'row_idx_with_error' is not defined", "output_type": "error", "traceback": [ "\u001b[0;31m---------------------------------------------------------------------------\u001b[0m", "\u001b[0;31mNameError\u001b[0m Traceback (most recent call last)", "\u001b[0;32m/tmp/ipykernel_29900/2162080649.py\u001b[0m in \u001b[0;36m\u001b[0;34m()\u001b[0m\n\u001b[0;32m----> 1\u001b[0;31m \u001b[0mlen\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0mrow_idx_with_error\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0m", "\u001b[0;31mNameError\u001b[0m: name 'row_idx_with_error' is not defined" ] } ], "source": [ "len(row_idx_with_error)" ] }, { "cell_type": "code", "execution_count": 52, "id": "3b324dca", "metadata": {}, "outputs": [ { "data": { "text/plain": [ "['AAKG1_HUMAN_2uv4_1',\n", " 'PYRF_METTH_4fx8_3',\n", " 'Q9LAK3_CAMJU_1ro7_2',\n", " 'HFQ_ECOLI_3rer_9',\n", " 'U89C1_ARATH_6ij9_13']" ] }, "execution_count": 52, "metadata": {}, "output_type": "execute_result" } ], "source": [ "row_idx_with_error[:5]" ] }, { "cell_type": "code", "execution_count": 53, "id": "ca372c79", "metadata": {}, "outputs": [ { "data": { "text/plain": [ "False 20646\n", "True 792\n", "Name: has_crop_error, dtype: int64" ] }, "execution_count": 53, "metadata": {}, "output_type": "execute_result" } ], "source": [ "meta_df['has_crop_error'] = False\n", "meta_df.loc[meta_df.index.isin(row_idx_with_error), 'has_crop_error'] = True\n", "meta_df['has_crop_error'].value_counts()" ] }, { "cell_type": "code", "execution_count": 54, "id": "03f1cd94", "metadata": {}, "outputs": [], "source": [ "from ppi.data_utils import parse_structure, residue_to_mol\n", "from ppi.data_utils import mol_to_feature\n", "\n", "# try parsing all the cropped PDB\n", "pdb_parser = PDBParser(\n", " QUIET=True,\n", " PERMISSIVE=True,\n", ")\n", "cif_parser = MMCIFParser(QUIET=True)\n", "\n", "def parse_cropped_pdb_file(row):\n", " structure = parse_structure(\n", " pdb_parser,\n", " cif_parser,\n", " name='name',\n", " file_path=os.path.join(CROP_DATA_DIR, row[\"pdb_file\"]),\n", " )\n", " for chain in structure.get_chains():\n", " if chain.id == row[\"receptor_chain_id\"]:\n", " protein = chain\n", " elif chain.id == row[\"ligand_chain_id\"]:\n", " ligand = chain\n", "\n", " ligand_mol = residue_to_mol(ligand)\n", " protein_mol = residue_to_mol(protein)\n", " physics = mol_to_feature(\n", " ligand_mol, protein_mol, compute_full=False\n", " )\n", " return" ] }, { "cell_type": "code", "execution_count": 55, "id": "ff107474", "metadata": {}, "outputs": [ { "data": { "text/html": [ "
\n", "\n", "\n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", "
labelcomplex_typepdb_fileUnpIDPdbIDInterfaceIDseq-Aseq-Bcluster_center-Acluster_center-Breceptor_chain_idligand_chain_idhas_crop_error
id
CAPP1_MAIZE_6u2t_41homophysiol/physiol_pdb/homo/CAPP1_MAIZE_6u2t_4.pd...CAPP1_MAIZE6u2t4KHHSIDAQLRQLVPGKVSEDDKLIEYDALLVDRFLNILQDLHGPSL...KHHSIDAQLRQLVPGKVSEDDKLIEYDALLVDRFLNILQDLHGPSL...CAPP1_MAIZE_6mgi_4-ACAPP1_MAIZE_6mgi_4-AABFalse
Q31135_MOUSE_6blr_31homophysiol/physiol_pdb/homo/Q31135_MOUSE_6blr_3.p...Q31135_MOUSE6blr3LVERLYLVCGEEGAGGGSLVGERHFVHQFKGECYFTNGTQRIRLVT...LVERLYLVCGEEGAGGGSLVGERHFVHQFKGECYFTNGTQRIRLVT...6u3m-E-B|MHC6u3m-E-B|MHCABFalse
DPOLL_HUMAN_5iio_61homophysiol/physiol_pdb/homo/DPOLL_HUMAN_5iio_6.pd...DPOLL_HUMAN5iio6NHNLHITEKLEVLAKAYSVQGDKWRALGYAKAINALKSFHKPVTSY...TNHNLHITEKLEVLAKAYSVQGDKWRALGYAKAINALKSFHKPVTS...DPOLL_HUMAN_5iio_3-ADPOLL_HUMAN_5iio_3-AABFalse
CNNM3_HUMAN_6wur_41homophysiol/physiol_pdb/homo/CNNM3_HUMAN_6wur_4.pd...CNNM3_HUMAN6wur4GPLNMIQGVLELRCRTVEDVLTPLEDCFMLDASTVLDFGVLASIMQ...GPLNMIQGVLELRCRTVEDVLTPLEDCFMLDASTVLDFGVLASIMQ...CNNM2_MOUSE_5mmz_6-ACNNM2_MOUSE_5mmz_6-AABFalse
FA7_HUMAN_6r2w_81homophysiol/physiol_pdb/homo/FA7_HUMAN_6r2w_8.pdb.gzFA7_HUMAN6r2w8ANAFLXXLRPGSLXRXCKXXQCSFXXARXIFKDAXRTKLFWISYSD...IVGGKVCPKGECPWQVLLLVNGAQLCGGTLINTIWVVSAAHCFDKI...FA9_HUMAN_1edm_4-A1jbu-X-H|COAGULATIONABFalse
\n", "
" ], "text/plain": [ " label complex_type \\\n", "id \n", "CAPP1_MAIZE_6u2t_4 1 homo \n", "Q31135_MOUSE_6blr_3 1 homo \n", "DPOLL_HUMAN_5iio_6 1 homo \n", "CNNM3_HUMAN_6wur_4 1 homo \n", "FA7_HUMAN_6r2w_8 1 homo \n", "\n", " pdb_file \\\n", "id \n", "CAPP1_MAIZE_6u2t_4 physiol/physiol_pdb/homo/CAPP1_MAIZE_6u2t_4.pd... \n", "Q31135_MOUSE_6blr_3 physiol/physiol_pdb/homo/Q31135_MOUSE_6blr_3.p... \n", "DPOLL_HUMAN_5iio_6 physiol/physiol_pdb/homo/DPOLL_HUMAN_5iio_6.pd... \n", "CNNM3_HUMAN_6wur_4 physiol/physiol_pdb/homo/CNNM3_HUMAN_6wur_4.pd... \n", "FA7_HUMAN_6r2w_8 physiol/physiol_pdb/homo/FA7_HUMAN_6r2w_8.pdb.gz \n", "\n", " UnpID PdbID InterfaceID \\\n", "id \n", "CAPP1_MAIZE_6u2t_4 CAPP1_MAIZE 6u2t 4 \n", "Q31135_MOUSE_6blr_3 Q31135_MOUSE 6blr 3 \n", "DPOLL_HUMAN_5iio_6 DPOLL_HUMAN 5iio 6 \n", "CNNM3_HUMAN_6wur_4 CNNM3_HUMAN 6wur 4 \n", "FA7_HUMAN_6r2w_8 FA7_HUMAN 6r2w 8 \n", "\n", " seq-A \\\n", "id \n", "CAPP1_MAIZE_6u2t_4 KHHSIDAQLRQLVPGKVSEDDKLIEYDALLVDRFLNILQDLHGPSL... \n", "Q31135_MOUSE_6blr_3 LVERLYLVCGEEGAGGGSLVGERHFVHQFKGECYFTNGTQRIRLVT... \n", "DPOLL_HUMAN_5iio_6 NHNLHITEKLEVLAKAYSVQGDKWRALGYAKAINALKSFHKPVTSY... \n", "CNNM3_HUMAN_6wur_4 GPLNMIQGVLELRCRTVEDVLTPLEDCFMLDASTVLDFGVLASIMQ... \n", "FA7_HUMAN_6r2w_8 ANAFLXXLRPGSLXRXCKXXQCSFXXARXIFKDAXRTKLFWISYSD... \n", "\n", " seq-B \\\n", "id \n", "CAPP1_MAIZE_6u2t_4 KHHSIDAQLRQLVPGKVSEDDKLIEYDALLVDRFLNILQDLHGPSL... \n", "Q31135_MOUSE_6blr_3 LVERLYLVCGEEGAGGGSLVGERHFVHQFKGECYFTNGTQRIRLVT... \n", "DPOLL_HUMAN_5iio_6 TNHNLHITEKLEVLAKAYSVQGDKWRALGYAKAINALKSFHKPVTS... \n", "CNNM3_HUMAN_6wur_4 GPLNMIQGVLELRCRTVEDVLTPLEDCFMLDASTVLDFGVLASIMQ... \n", "FA7_HUMAN_6r2w_8 IVGGKVCPKGECPWQVLLLVNGAQLCGGTLINTIWVVSAAHCFDKI... \n", "\n", " cluster_center-A cluster_center-B \\\n", "id \n", "CAPP1_MAIZE_6u2t_4 CAPP1_MAIZE_6mgi_4-A CAPP1_MAIZE_6mgi_4-A \n", "Q31135_MOUSE_6blr_3 6u3m-E-B|MHC 6u3m-E-B|MHC \n", "DPOLL_HUMAN_5iio_6 DPOLL_HUMAN_5iio_3-A DPOLL_HUMAN_5iio_3-A \n", "CNNM3_HUMAN_6wur_4 CNNM2_MOUSE_5mmz_6-A CNNM2_MOUSE_5mmz_6-A \n", "FA7_HUMAN_6r2w_8 FA9_HUMAN_1edm_4-A 1jbu-X-H|COAGULATION \n", "\n", " receptor_chain_id ligand_chain_id has_crop_error \n", "id \n", "CAPP1_MAIZE_6u2t_4 A B False \n", "Q31135_MOUSE_6blr_3 A B False \n", "DPOLL_HUMAN_5iio_6 A B False \n", "CNNM3_HUMAN_6wur_4 A B False \n", "FA7_HUMAN_6r2w_8 A B False " ] }, "execution_count": 55, "metadata": {}, "output_type": "execute_result" } ], "source": [ "meta_df.head()" ] }, { "cell_type": "code", "execution_count": 57, "id": "6be509be", "metadata": {}, "outputs": [ { "name": "stderr", "output_type": "stream", "text": [ "100%|██████████| 21438/21438 [06:08<00:00, 58.19it/s] \n" ] } ], "source": [ "row_idx_with_parsing_error = []\n", "for i, row in tqdm(meta_df.iterrows(), total=meta_df.shape[0]):\n", " row[\"pdb_file\"] = row[\"pdb_file\"][:-3]\n", " try:\n", " parse_cropped_pdb_file(row)\n", " except Exception as e:\n", "# print(e)\n", " row_idx_with_parsing_error.append(i)\n", " pass" ] }, { "cell_type": "code", "execution_count": 58, "id": "344b16b2", "metadata": {}, "outputs": [ { "data": { "text/plain": [ "992" ] }, "execution_count": 58, "metadata": {}, "output_type": "execute_result" } ], "source": [ "len(row_idx_with_parsing_error)" ] }, { "cell_type": "code", "execution_count": 59, "id": "066a0c1e", "metadata": {}, "outputs": [ { "data": { "text/plain": [ "False 20446\n", "True 992\n", "Name: has_crop_error, dtype: int64" ] }, "execution_count": 59, "metadata": {}, "output_type": "execute_result" } ], "source": [ "meta_df['has_crop_error'] = False\n", "meta_df.loc[meta_df.index.isin(row_idx_with_parsing_error), 'has_crop_error'] = True\n", "meta_df['has_crop_error'].value_counts()" ] }, { "cell_type": "code", "execution_count": 60, "id": "d6626704", "metadata": {}, "outputs": [ { "data": { "text/plain": [ "label complex_type has_crop_error\n", "0 hetero False 514\n", " True 37\n", " homo False 4664\n", " True 259\n", "1 hetero False 6585\n", " True 264\n", " homo False 8683\n", " True 432\n", "dtype: int64" ] }, "execution_count": 60, "metadata": {}, "output_type": "execute_result" } ], "source": [ "meta_df.groupby(['label', 'complex_type', 'has_crop_error']).size()" ] }, { "cell_type": "markdown", "id": "6acbb84f", "metadata": {}, "source": [ "## Train/test split" ] }, { "cell_type": "code", "execution_count": 61, "id": "a32e9e8f", "metadata": {}, "outputs": [], "source": [ "from sklearn import model_selection" ] }, { "cell_type": "code", "execution_count": 62, "id": "05ec120b", "metadata": {}, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "Train/test ratio: 3.9983679179295875\n", "Train pos label ratio: 0.7447081462475946\n", "Test pos label ratio: 0.7444625786896713\n", "Train/test ratio: 3.999533582089552\n", "Train pos label ratio: 0.744606413994169\n", "Test pos label ratio: 0.7448694029850746\n", "Train/test ratio: 4.001866542230518\n", "Train pos label ratio: 0.7446944962686567\n", "Test pos label ratio: 0.7445170321978535\n", "Train/test ratio: 3.9972027972027973\n", "Train pos label ratio: 0.7445766270118964\n", "Test pos label ratio: 0.744988344988345\n", "Train/test ratio: 4.003033838973162\n", "Train pos label ratio: 0.7447093802833323\n", "Test pos label ratio: 0.7444574095682613\n" ] } ], "source": [ "splitter = model_selection.StratifiedGroupKFold(\n", " n_splits=5,\n", ")\n", "for train_idxs, test_idxs in splitter.split(\n", " meta_df, \n", " y=meta_df['label'],\n", " groups=meta_df['cluster_center-A']\n", "):\n", " print('Train/test ratio:', len(train_idxs)/len(test_idxs))\n", " print('Train pos label ratio:',\n", " meta_df['label'].iloc[train_idxs].mean()\n", " )\n", " print('Test pos label ratio:',\n", " meta_df['label'].iloc[test_idxs].mean()\n", " )" ] }, { "cell_type": "code", "execution_count": 63, "id": "ae4466aa", "metadata": {}, "outputs": [], "source": [ "clusters_in_train = set(meta_df.iloc[train_idxs]['cluster_center-A']) & \\\n", " set(meta_df.iloc[train_idxs]['cluster_center-B'])\n", "\n", "clusters_in_test = set(meta_df.iloc[test_idxs]['cluster_center-A']) & \\\n", " set(meta_df.iloc[test_idxs]['cluster_center-B'])" ] }, { "cell_type": "code", "execution_count": 64, "id": "1c9d33fa", "metadata": {}, "outputs": [], "source": [ "# !pip install matplotlib-venn\n", "from matplotlib_venn import venn2" ] }, { "cell_type": "code", "execution_count": 65, "id": "0a9f1246", "metadata": {}, "outputs": [ { "data": { "image/png": "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\n", "text/plain": [ "
" ] }, "metadata": {}, "output_type": "display_data" } ], "source": [ "venn2(\n", " [clusters_in_train, clusters_in_test],\n", " ('Train', 'Test')\n", " );" ] }, { "cell_type": "code", "execution_count": 66, "id": "0993b668", "metadata": {}, "outputs": [ { "data": { "text/plain": [ "label complex_type\n", "0 hetero 442\n", " homo 3937\n", "1 hetero 5535\n", " homo 7239\n", "dtype: int64" ] }, "execution_count": 66, "metadata": {}, "output_type": "execute_result" } ], "source": [ "meta_df.iloc[train_idxs].groupby(['label', 'complex_type']).size()" ] }, { "cell_type": "code", "execution_count": 67, "id": "79d54070", "metadata": {}, "outputs": [ { "data": { "text/plain": [ "label complex_type\n", "0 hetero 109\n", " homo 986\n", "1 hetero 1314\n", " homo 1876\n", "dtype: int64" ] }, "execution_count": 67, "metadata": {}, "output_type": "execute_result" } ], "source": [ "meta_df.iloc[test_idxs].groupby(['label', 'complex_type']).size()" ] }, { "cell_type": "code", "execution_count": 68, "id": "2f12027e", "metadata": {}, "outputs": [], "source": [ "# meta_df.iloc[train_idxs].to_csv(\n", "# os.path.join(DATA_DIR, 'train_full.csv')\n", "# )\n", "# meta_df.iloc[test_idxs].to_csv(\n", "# os.path.join(DATA_DIR, 'test_full.csv')\n", "# )\n", "\n", "# drop rows with cropping error for the cropped version\n", "meta_df_train_crop = meta_df.iloc[train_idxs].query('has_crop_error == False')\n", "meta_df_train_crop['pdb_file'] = meta_df_train_crop['pdb_file']\\\n", " .map(lambda x: x[:-3])\n", "\n", "meta_df_test_crop = meta_df.iloc[test_idxs].query('has_crop_error == False')\n", "meta_df_test_crop['pdb_file'] = meta_df_test_crop['pdb_file']\\\n", " .map(lambda x: x[:-3])\n", "\n", "meta_df_train_crop.to_csv(\n", " os.path.join(CROP_DATA_DIR, 'train_full.csv')\n", ")\n", "meta_df_test_crop.to_csv(\n", " os.path.join(CROP_DATA_DIR, 'test_full.csv')\n", ")" ] }, { "cell_type": "code", "execution_count": null, "id": "c6131574", "metadata": {}, "outputs": [], "source": [] }, { "cell_type": "code", "execution_count": 69, "id": "dee37c99", "metadata": {}, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "(1715, 13) (428, 13)\n", "(1644, 13) (408, 13)\n" ] } ], "source": [ "# subsample to make smaller versions of the dataset\n", "meta_df_train_sample = meta_df.iloc[train_idxs].sample(\n", " frac=0.1,\n", " random_state=42\n", ")\n", "meta_df_train_sample.to_csv(\n", " os.path.join(DATA_DIR, 'train_small.csv')\n", ")\n", "\n", "meta_df_test_sample = meta_df.iloc[test_idxs].sample(\n", " frac=0.1,\n", " random_state=42\n", ")\n", "meta_df_test_sample.to_csv(\n", " os.path.join(DATA_DIR, 'test_small.csv')\n", ")\n", "print(meta_df_train_sample.shape, meta_df_test_sample.shape)\n", "\n", "# drop rows with cropping error for the cropped version\n", "meta_df_train_sample = meta_df_train_sample.query('has_crop_error == False')\n", "meta_df_train_sample['pdb_file'] = meta_df_train_sample['pdb_file']\\\n", " .map(lambda x: x[:-3])\n", "\n", "meta_df_test_sample = meta_df_test_sample.query('has_crop_error == False')\n", "meta_df_test_sample['pdb_file'] = meta_df_test_sample['pdb_file']\\\n", " .map(lambda x: x[:-3])\n", "\n", "meta_df_train_sample.to_csv(\n", " os.path.join(CROP_DATA_DIR, 'train_small.csv')\n", ")\n", "\n", "meta_df_test_sample.to_csv(\n", " os.path.join(CROP_DATA_DIR, 'test_small.csv')\n", ")\n", "\n", "print(meta_df_train_sample.query('has_crop_error == False').shape,\n", " meta_df_test_sample.query('has_crop_error == False').shape,\n", " )" ] }, { "cell_type": "code", "execution_count": 70, "id": "78b6c9d7", "metadata": {}, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "non-physiol test_full.csv train_full.csv\n", "physiol test_small.csv train_small.csv\n" ] } ], "source": [ "!ls {CROP_DATA_DIR}" ] }, { "cell_type": "code", "execution_count": null, "id": "4140a8af", "metadata": {}, "outputs": [], "source": [] }, { "cell_type": "markdown", "id": "d92a7b68", "metadata": {}, "source": [ "## Read additional ProtCID cluster metadata (probably not informative for ML)" ] }, { "cell_type": "code", "execution_count": 71, "id": "4108fb1c", "metadata": {}, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "non-physiol/heteroNonPhysiolDimerList_unpPdbCF5_all.txt (2362, 30)\n", "non-physiol/homoNonPhysiolDimerList_unpPdbCF5_all.txt (27517, 30)\n", "physiol/heteroPhysiolDimerList_unpPdbCF5_all.txt (109208, 30)\n", "physiol/homoPhysiolDimerList_unpPdbCF5_all.txt (93568, 30)\n" ] } ], "source": [ "files = [\n", " 'non-physiol/heteroNonPhysiolDimerList_unpPdbCF5_all.txt',\n", " 'non-physiol/homoNonPhysiolDimerList_unpPdbCF5_all.txt',\n", " 'physiol/heteroPhysiolDimerList_unpPdbCF5_all.txt',\n", " 'physiol/homoPhysiolDimerList_unpPdbCF5_all.txt'\n", "]\n", "\n", "df = []\n", "for file in files:\n", " temp_df = pd.read_csv(\n", " os.path.join(DATA_DIR, file),\n", " sep='\\t'\n", " ).drop_duplicates() \n", "\n", " df.append(temp_df)\n", " print(file, temp_df.shape)\n" ] }, { "cell_type": "code", "execution_count": 72, "id": "af699437", "metadata": {}, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "(232655, 30)\n" ] } ], "source": [ "df = pd.concat(df)\n", "print(df.shape)" ] }, { "cell_type": "code", "execution_count": 73, "id": "a3f9016e", "metadata": {}, "outputs": [ { "data": { "text/plain": [ "(232655, 30)" ] }, "execution_count": 73, "metadata": {}, "output_type": "execute_result" } ], "source": [ "df.drop_duplicates().shape" ] }, { "cell_type": "code", "execution_count": 74, "id": "2c300d7c", "metadata": {}, "outputs": [ { "data": { "text/plain": [ "231415" ] }, "execution_count": 74, "metadata": {}, "output_type": "execute_result" } ], "source": [ "df['id'] = df.apply(\n", " lambda row: '_'.join([\n", " row['UnpID'], row['PdbID'], str(row['InterfaceID'])\n", " ]),\n", " axis=1)\n", "df['id'].nunique()" ] }, { "cell_type": "code", "execution_count": 77, "id": "27142703", "metadata": {}, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "(9139, 31) (21438, 12)\n" ] } ], "source": [ "df = df.loc[df['id'].isin(meta_df.index)]\n", "print(df.shape, meta_df.shape)" ] }, { "cell_type": "code", "execution_count": 78, "id": "5a88a745", "metadata": {}, "outputs": [ { "data": { "text/plain": [ "UnpID 5396\n", "PdbID 5028\n", "InterfaceID 258\n", "AsymID1 123\n", "AsymID2 423\n", "AuthChain1 86\n", "AuthChain2 151\n", "EntityID1 126\n", "EntityID2 407\n", "SymmetryOp1 88\n", "SymmetryOp2 365\n", "SurfaceArea 7715\n", "SymmetryIndex 2056\n", "ChainPfamArch1 2222\n", "ChainPfamArch2 2246\n", "InPDB 2\n", "InPISA 2\n", "DomainInterfaceID 233\n", "PfamPair 2943\n", "ClusterID 201\n", "#CFs_unpClus 124\n", "#Entries_unpClus 221\n", "#CFs_unpPDB 137\n", "#Entries_unpPdb 248\n", "#CFs_clus 234\n", "#Entries_clus 347\n", "#CFs_rel 301\n", "#Entries_rel 413\n", "Resolution 807\n", "Method 6\n", "id 9075\n", "dtype: int64" ] }, "execution_count": 78, "metadata": {}, "output_type": "execute_result" } ], "source": [ "df.nunique()" ] }, { "cell_type": "code", "execution_count": 79, "id": "4e543ef2", "metadata": {}, "outputs": [ { "data": { "text/plain": [ " 1 4914\n", "-1 1624\n", " 2 1075\n", " 3 381\n", " 4 183\n", " ... \n", " 153 1\n", " 436 1\n", " 506 1\n", " 109 1\n", " 44 1\n", "Name: ClusterID, Length: 201, dtype: int64" ] }, "execution_count": 79, "metadata": {}, "output_type": "execute_result" } ], "source": [ "df['ClusterID'].value_counts()" ] }, { "cell_type": "code", "execution_count": 80, "id": "54248e84", "metadata": {}, "outputs": [ { "data": { "text/plain": [ "id\n", "RRP7_YEAST-UTP22_YEAST_4m5d_1 4\n", "CALM3_HUMAN-KCNQ4_HUMAN_7byl_10 3\n", "DPO3X_ECOLI-HOLA_ECOLI_1jr3_5 3\n", "A0A1D8PP59_CANAL-QCR2_CANAL_7rja_37 3\n", "PSA1_RAT-PSA3_RAT_6epc_77 3\n", " ..\n", "FIMC_ECOLI-FIMD_ECOLI_7b0x_2 1\n", "FIMA1_ECOLI_6y7s_11 1\n", "FIMA1_ECOLI_6s09_4 1\n", "FIMA1_ECOLI_6s09_11 1\n", "ZO1_HUMAN_2h3m_3 1\n", "Length: 9075, dtype: int64" ] }, "execution_count": 80, "metadata": {}, "output_type": "execute_result" } ], "source": [ "df.groupby('id').size().sort_values(ascending=False)" ] }, { "cell_type": "code", "execution_count": 81, "id": "4e479e60", "metadata": {}, "outputs": [ { "data": { "text/html": [ "
\n", "\n", "\n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", "
UnpIDPdbIDInterfaceIDAsymID1AsymID2AuthChain1AuthChain2EntityID1EntityID2SymmetryOp1SymmetryOp2SurfaceAreaSymmetryIndexChainPfamArch1ChainPfamArch2InPDBInPISADomainInterfaceIDPfamPairClusterID#CFs_unpClus#Entries_unpClus#CFs_unpPDB#Entries_unpPdb#CFs_clus#Entries_clus#CFs_rel#Entries_relResolutionMethodid
133393RRP7_YEAST-UTP22_YEAST4m5d1AA11_555BB21_5553087.55-1.0(Nrap)_(Nrap_D2)_(Nrap_D3)_(Nrap_D4)_(Nrap_D5)...(RRM_Rrp7)_(RRP7)1.00.04(Nrap_D6)(RRP7)117172323171726261.97X-RAY DIFFRACTIONRRP7_YEAST-UTP22_YEAST_4m5d_1
133416RRP7_YEAST-UTP22_YEAST4m5d1AA11_555BB21_5553087.55-1.0(Nrap)_(Nrap_D2)_(Nrap_D3)_(Nrap_D4)_(Nrap_D5)...(RRM_Rrp7)_(RRP7)1.00.02(Nrap_D4)(RRP7)123232323303030301.97X-RAY DIFFRACTIONRRP7_YEAST-UTP22_YEAST_4m5d_1
133439RRP7_YEAST-UTP22_YEAST4m5d1AA11_555BB21_5553087.55-1.0(Nrap)_(Nrap_D2)_(Nrap_D3)_(Nrap_D4)_(Nrap_D5)...(RRM_Rrp7)_(RRP7)1.00.01(Nrap_D4)(RRM_Rrp7)123232323262629291.97X-RAY DIFFRACTIONRRP7_YEAST-UTP22_YEAST_4m5d_1
133462RRP7_YEAST-UTP22_YEAST4m5d1AA11_555BB21_5553087.55-1.0(Nrap)_(Nrap_D2)_(Nrap_D3)_(Nrap_D4)_(Nrap_D5)...(RRM_Rrp7)_(RRP7)1.00.03(Nrap_D6)(RRM_Rrp7)123232323292930301.97X-RAY DIFFRACTIONRRP7_YEAST-UTP22_YEAST_4m5d_1
\n", "
" ], "text/plain": [ " UnpID PdbID InterfaceID AsymID1 AsymID2 AuthChain1 \\\n", "133393 RRP7_YEAST-UTP22_YEAST 4m5d 1 A A 1 \n", "133416 RRP7_YEAST-UTP22_YEAST 4m5d 1 A A 1 \n", "133439 RRP7_YEAST-UTP22_YEAST 4m5d 1 A A 1 \n", "133462 RRP7_YEAST-UTP22_YEAST 4m5d 1 A A 1 \n", "\n", " AuthChain2 EntityID1 EntityID2 SymmetryOp1 SymmetryOp2 SurfaceArea \\\n", "133393 1_555 B B 2 1_555 3087.55 \n", "133416 1_555 B B 2 1_555 3087.55 \n", "133439 1_555 B B 2 1_555 3087.55 \n", "133462 1_555 B B 2 1_555 3087.55 \n", "\n", " SymmetryIndex ChainPfamArch1 \\\n", "133393 -1.0 (Nrap)_(Nrap_D2)_(Nrap_D3)_(Nrap_D4)_(Nrap_D5)... \n", "133416 -1.0 (Nrap)_(Nrap_D2)_(Nrap_D3)_(Nrap_D4)_(Nrap_D5)... \n", "133439 -1.0 (Nrap)_(Nrap_D2)_(Nrap_D3)_(Nrap_D4)_(Nrap_D5)... \n", "133462 -1.0 (Nrap)_(Nrap_D2)_(Nrap_D3)_(Nrap_D4)_(Nrap_D5)... \n", "\n", " ChainPfamArch2 InPDB InPISA DomainInterfaceID \\\n", "133393 (RRM_Rrp7)_(RRP7) 1.0 0.0 4 \n", "133416 (RRM_Rrp7)_(RRP7) 1.0 0.0 2 \n", "133439 (RRM_Rrp7)_(RRP7) 1.0 0.0 1 \n", "133462 (RRM_Rrp7)_(RRP7) 1.0 0.0 3 \n", "\n", " PfamPair ClusterID #CFs_unpClus #Entries_unpClus \\\n", "133393 (Nrap_D6)(RRP7) 1 17 17 \n", "133416 (Nrap_D4)(RRP7) 1 23 23 \n", "133439 (Nrap_D4)(RRM_Rrp7) 1 23 23 \n", "133462 (Nrap_D6)(RRM_Rrp7) 1 23 23 \n", "\n", " #CFs_unpPDB #Entries_unpPdb #CFs_clus #Entries_clus #CFs_rel \\\n", "133393 23 23 17 17 26 \n", "133416 23 23 30 30 30 \n", "133439 23 23 26 26 29 \n", "133462 23 23 29 29 30 \n", "\n", " #Entries_rel Resolution Method \\\n", "133393 26 1.97 X-RAY DIFFRACTION \n", "133416 30 1.97 X-RAY DIFFRACTION \n", "133439 29 1.97 X-RAY DIFFRACTION \n", "133462 30 1.97 X-RAY DIFFRACTION \n", "\n", " id \n", "133393 RRP7_YEAST-UTP22_YEAST_4m5d_1 \n", "133416 RRP7_YEAST-UTP22_YEAST_4m5d_1 \n", "133439 RRP7_YEAST-UTP22_YEAST_4m5d_1 \n", "133462 RRP7_YEAST-UTP22_YEAST_4m5d_1 " ] }, "execution_count": 81, "metadata": {}, "output_type": "execute_result" } ], "source": [ "df.loc[df['id'] == 'RRP7_YEAST-UTP22_YEAST_4m5d_1']" ] }, { "cell_type": "code", "execution_count": 70, "id": "5ac4b193", "metadata": {}, "outputs": [], "source": [ "# meta_df.loc['C4QZQ7_KOMPG-C4R4Y0_KOMPG_5x4z_1']" ] }, { "cell_type": "code", "execution_count": 56, "id": "e2af5f80", "metadata": {}, "outputs": [ { "data": { "text/plain": [ "count 2362.000000\n", "mean 3.480883\n", "std 2.384415\n", "min 0.000000\n", "25% 2.500000\n", "50% 3.040000\n", "75% 3.700000\n", "max 40.000000\n", "Name: Resolution, dtype: float64" ] }, "execution_count": 56, "metadata": {}, "output_type": "execute_result" } ], "source": [ "df['Resolution'].describe()" ] }, { "cell_type": "code", "execution_count": 57, "id": "99decbdd", "metadata": {}, "outputs": [ { "data": { "text/plain": [ "UnpID PdbID InterfaceID\n", "1A02_HUMAN-B2MG_HUMAN 3mrf 1 1\n", " 4l29 8 1\n", " 35 1\n", " 6apn 1 1\n", "1A68_HUMAN-B2MG_HUMAN 1tmc 2 1\n", " ..\n", "W8TUC9_STAAU-W8TVK2_STAAU 7asp 3 1\n", "XPO1_YEAST-YRB1_YEAST 5ysu 9 1\n", " 6lq9 9 1\n", "XRCC5_HUMAN-XRCC6_HUMAN 1jey 10 1\n", " 6erg 7 1\n", "Length: 2362, dtype: int64" ] }, "execution_count": 57, "metadata": {}, "output_type": "execute_result" } ], "source": [ "df.groupby(['UnpID', 'PdbID', 'InterfaceID']).size()" ] }, { "cell_type": "code", "execution_count": null, "id": "425ee3cf", "metadata": {}, "outputs": [], "source": [] }, { "cell_type": "markdown", "id": "64086621", "metadata": {}, "source": [ "## EDA for the 1st batch of ProtCID data" ] }, { "cell_type": "code", "execution_count": 5, "id": "2243c58e", "metadata": {}, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "(1831, 10)\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", "
ChainGroupIDChainPfamArchClusterID#PDBBAs#PISABAs#CFs/Cluster#CFs/Group#Entries/Cluster#Entries/GroupMinSequenceIdentity
017(C1-set);(MHC_I)_(C1-set)1.01063.0990.0518.0519.01066.01150.08.00
117(C1-set);(MHC_I)_(C1-set)2.00.03.041.0519.098.01150.018.37
217(C1-set);(MHC_I)_(C1-set)3.00.04.030.0519.045.01150.022.68
317(C1-set);(MHC_I)_(C1-set)4.00.00.028.0519.069.01150.083.00
417(C1-set);(MHC_I)_(C1-set)5.00.04.025.0519.063.01150.018.56
\n", "
" ], "text/plain": [ " ChainGroupID ChainPfamArch ClusterID #PDBBAs #PISABAs \\\n", "0 17 (C1-set);(MHC_I)_(C1-set) 1.0 1063.0 990.0 \n", "1 17 (C1-set);(MHC_I)_(C1-set) 2.0 0.0 3.0 \n", "2 17 (C1-set);(MHC_I)_(C1-set) 3.0 0.0 4.0 \n", "3 17 (C1-set);(MHC_I)_(C1-set) 4.0 0.0 0.0 \n", "4 17 (C1-set);(MHC_I)_(C1-set) 5.0 0.0 4.0 \n", "\n", " #CFs/Cluster #CFs/Group #Entries/Cluster #Entries/Group \\\n", "0 518.0 519.0 1066.0 1150.0 \n", "1 41.0 519.0 98.0 1150.0 \n", "2 30.0 519.0 45.0 1150.0 \n", "3 28.0 519.0 69.0 1150.0 \n", "4 25.0 519.0 63.0 1150.0 \n", "\n", " MinSequenceIdentity \n", "0 8.00 \n", "1 18.37 \n", "2 22.68 \n", "3 83.00 \n", "4 18.56 " ] }, "execution_count": 5, "metadata": {}, "output_type": "execute_result" } ], "source": [ "cluster_df = pd.read_csv(\n", " os.path.join(DATA_DIR, 'ChainHeteroClusterList_CF5.txt'),\n", " sep='\\t',\n", " skiprows=11\n", ")\n", "print(cluster_df.shape)\n", "cluster_df.head()" ] }, { "cell_type": "code", "execution_count": 6, "id": "4e52889f", "metadata": {}, "outputs": [ { "data": { "text/plain": [ "ChainGroupID 1460\n", "ChainPfamArch 1456\n", "ClusterID 51\n", "#PDBBAs 222\n", "#PISABAs 127\n", "#CFs/Cluster 185\n", "#CFs/Group 191\n", "#Entries/Cluster 221\n", "#Entries/Group 231\n", "MinSequenceIdentity 514\n", "dtype: int64" ] }, "execution_count": 6, "metadata": {}, "output_type": "execute_result" } ], "source": [ "cluster_df.nunique()" ] }, { "cell_type": "code", "execution_count": 7, "id": "0685e792", "metadata": {}, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "Types of Pfam arch in clusters:\n" ] }, { "data": { "text/plain": [ "ChainPfamArch1 633\n", "ChainPfamArch2 620\n", "dtype: int64" ] }, "execution_count": 7, "metadata": {}, "output_type": "execute_result" } ], "source": [ "cluster_df['ChainPfamArch1'] = cluster_df['ChainPfamArch']\\\n", " .map(\n", " lambda x: x.split(';')[0] if not pd.isnull(x) else np.nan\n", " )\n", "cluster_df['ChainPfamArch2'] = cluster_df['ChainPfamArch']\\\n", " .map(\n", " lambda x: x.split(';')[1] if not pd.isnull(x) and ';' in x else np.nan\n", " )\n", "\n", "print('Types of Pfam arch in clusters:')\n", "cluster_df[['ChainPfamArch1', 'ChainPfamArch2']].nunique()" ] }, { "cell_type": "code", "execution_count": 8, "id": "dbf48af8", "metadata": {}, "outputs": [ { "data": { "text/plain": [ "(V-set)_(C1-set) 42\n", "(C1-set) 27\n", "(Actin) 19\n", "(Herpes_MCP) 17\n", "(RNA_pol_Rpb1_1)_(RNA_pol_Rpb1_2)_(RNA_pol_Rpb1_3)_(RNA_pol_Rpb1_4)_(RNA_pol_Rpb1_5) 16\n", "(JAB)_(MitMem_reg) 16\n", "(L51_S25_CI-B8) 15\n", "(GP120) 15\n", "(PsaA_PsaB) 15\n", "(Complex1_49kDa) 15\n", "Name: ChainPfamArch1, dtype: int64" ] }, "execution_count": 8, "metadata": {}, "output_type": "execute_result" } ], "source": [ "cluster_df['ChainPfamArch1'].value_counts().head(10)" ] }, { "cell_type": "code", "execution_count": 9, "id": "ea46b1fe", "metadata": {}, "outputs": [ { "data": { "text/plain": [ "(V-set)_(C1-set) 55\n", "(MHC_I)_(C1-set) 30\n", "(Trypsin) 18\n", "(Ribosomal_S5)_(Ribosomal_S5_C) 18\n", "(Ribosomal_S18) 17\n", "(Proton_antipo_N)_(Proton_antipo_M)_(NADH5_C) 15\n", "(PSII) 15\n", "(Photo_RC) 14\n", "(V-set) 14\n", "(Ribosomal_L7Ae) 13\n", "Name: ChainPfamArch2, dtype: int64" ] }, "execution_count": 9, "metadata": {}, "output_type": "execute_result" } ], "source": [ "cluster_df['ChainPfamArch2'].value_counts().head(10)" ] }, { "cell_type": "code", "execution_count": 10, "id": "790a6db2", "metadata": {}, "outputs": [ { "data": { "text/plain": [ "count 1827.000000\n", "mean 50.082649\n", "std 93.085530\n", "min 6.000000\n", "25% 10.000000\n", "50% 22.000000\n", "75% 48.000000\n", "max 1066.000000\n", "Name: #Entries/Cluster, dtype: float64" ] }, "execution_count": 10, "metadata": {}, "output_type": "execute_result" } ], "source": [ "cluster_df['#Entries/Cluster'].describe()" ] }, { "cell_type": "code", "execution_count": 11, "id": "825356a6", "metadata": {}, "outputs": [ { "data": { "text/plain": [ "count 1827.000000\n", "mean 150.368911\n", "std 514.388269\n", "min 6.000000\n", "25% 15.000000\n", "50% 35.000000\n", "75% 75.500000\n", "max 3983.000000\n", "Name: #Entries/Group, dtype: float64" ] }, "execution_count": 11, "metadata": {}, "output_type": "execute_result" } ], "source": [ "cluster_df['#Entries/Group'].describe()" ] }, { "cell_type": "code", "execution_count": 12, "id": "56f9cf2e", "metadata": {}, "outputs": [ { "data": { "text/plain": [ "count 1827.000000\n", "mean 32.939048\n", "std 25.273081\n", "min 0.100000\n", "25% 11.760000\n", "50% 27.000000\n", "75% 49.500000\n", "max 89.260000\n", "Name: MinSequenceIdentity, dtype: float64" ] }, "execution_count": 12, "metadata": {}, "output_type": "execute_result" } ], "source": [ "cluster_df['MinSequenceIdentity'].describe()" ] }, { "cell_type": "markdown", "id": "ac76057a", "metadata": {}, "source": [ "## Load positive interactions" ] }, { "cell_type": "code", "execution_count": 17, "id": "99917a97", "metadata": {}, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "#ChainGroupID: the group ID in integer\n", "#ClusterID: the cluster ID in integer\n", "#PdbID\n", "#InterfaceID: the interface ID in integer\n", "#UnpCode: the UniProt codes for two chains, delimited by \";\". Watch out some missing UniProt codes from SIFTs or PDB itself or bugs in my codes :-).\n", "#SurfaceArea: the buried surface area (BSA) of the interface. BSA = (SA(chain A) + SA(chain B) - SA(interface AB)) / 2. \n", "#InAsu: whether the interface exists in the asymmetric unit. 1: exists; 0: not exists\n", "#InPdb: whether the interface exists in the PDB biological assembly\n", "#InPisa: whether the interface exists in the PISA biological assembly\n", "#ASU: the asymmetric unit in ABC format. e.g. homo-dimer: A2, heterodimer: AB, homo-tetramer: A4, hetero-tetramer: A2B2, A3B\n", "#PDBBA: the PDB biological assembly in ABC format\n", "#PDBBaID: the biological assembly value. Most of times, it is an integer, but it can be a string in PDB.\n", "#PISABA: the PISA biological assembly in ABC format\n", "#PisaBaID: the biological assembly number in integer\n", "#Resolution\n", "#Method: X-RAY, NMR or Cryo-EM\n", "#RfactorWork: R factor R work\n", "#RfactorFree: R factor R free\n", "#AsymChain1: the asymmetric chain ID for the interface chain A\n", "#AuthChain1: the author chain ID for the interface chain A\n", "#EntityID1: the entity ID for the interface chain A\n", "#SymmetryString1: the symmetry operator for the interface chain A\n", "#AsymChain2: the asymmetric chain ID for the interface chain B\n", "#AuthChain2: the author chain ID for the interface chain B\n", "#EntityID2: the entity ID for the interface chain B\n", "#SymmetryString2: the symmetry operator for the interface chain B\n", "#ChainPfamArch1: the Pfam architecture for the interface chain A\n", "#ChainPfamArch2: the Pfam architecture for the interface chain B\n", "\n", "ChainGroupID\tClusterID\tPdbID\tInterfaceID\tUnpCode\tSurfaceArea\tInAsu\tInPdb\tInPisa\tASU\tPDBBA\tPdbBaID\tPISABA\tPisaBaID\tResolution\tMethod\tRfactorWork\tRfactorFree\tAsymChain1\tAuthChain1\tEntityID1\tSymmetryString1\tAsymChain2\tAuthChain2\tEntityID2\tSymmetryString2\tChainPfamArch1\tChainPfamArch2\n" ] } ], "source": [ "!head -30 {DATA_DIR}/ChainHeteroInterfaceList_CF5.txt" ] }, { "cell_type": "code", "execution_count": 14, "id": "17b69c68", "metadata": {}, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "(91501, 28)\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ "/home/ec2-user/anaconda3/envs/pytorch_p38/lib/python3.8/site-packages/IPython/core/interactiveshell.py:3524: DtypeWarning: Columns (14,16,17,20,24) have mixed types.Specify dtype option on import or set low_memory=False.\n", " exec(code_obj, self.user_global_ns, self.user_ns)\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", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", "
ChainGroupIDClusterIDPdbIDInterfaceIDUnpCodeSurfaceAreaInAsuInPdbInPisaASUPDBBAPdbBaIDPISABAPisaBaIDResolutionMethodRfactorWorkRfactorFreeAsymChain1AuthChain1EntityID1SymmetryString1AsymChain2AuthChain2EntityID2SymmetryString2ChainPfamArch1ChainPfamArch2
01711a1m1B2MG_HUMAN;HLAB_HUMAN1247.90111ABCABC1ABC12.3X-RAY DIFFRACTION0.2050.0BB21_555AA11_555(C1-set)(MHC_I)_(C1-set)
11711a1n1B2MG_HUMAN;HLAB_HUMAN1244.10111ABCABC1ABC12.0X-RAY DIFFRACTION0.2030.0BB21_555AA11_555(C1-set)(MHC_I)_(C1-set)
21711a1o1B2MG_HUMAN;HLAB_HUMAN1275.90111ABCABC1ABC12.3X-RAY DIFFRACTION0.1680.0BB21_555AA11_555(C1-set)(MHC_I)_(C1-set)
31711a6z1B2MG_HUMAN;HFE_HUMAN1240.10111A2B2AB1AB12.6X-RAY DIFFRACTION0.2330.277BB21_555AA11_555(C1-set)(MHC_I)_(C1-set)
41711a9b1B2MG_HUMAN;HLAB_HUMAN1364.95111A2B2C2ABC1ABC13.2X-RAY DIFFRACTION0.2510.305BB21_555AA11_555(C1-set)(MHC_I)_(C1-set)
\n", "
" ], "text/plain": [ " ChainGroupID ClusterID PdbID InterfaceID UnpCode \\\n", "0 17 1 1a1m 1 B2MG_HUMAN;HLAB_HUMAN \n", "1 17 1 1a1n 1 B2MG_HUMAN;HLAB_HUMAN \n", "2 17 1 1a1o 1 B2MG_HUMAN;HLAB_HUMAN \n", "3 17 1 1a6z 1 B2MG_HUMAN;HFE_HUMAN \n", "4 17 1 1a9b 1 B2MG_HUMAN;HLAB_HUMAN \n", "\n", " SurfaceArea InAsu InPdb InPisa ASU PDBBA PdbBaID PISABA PisaBaID \\\n", "0 1247.90 1 1 1 ABC ABC 1 ABC 1 \n", "1 1244.10 1 1 1 ABC ABC 1 ABC 1 \n", "2 1275.90 1 1 1 ABC ABC 1 ABC 1 \n", "3 1240.10 1 1 1 A2B2 AB 1 AB 1 \n", "4 1364.95 1 1 1 A2B2C2 ABC 1 ABC 1 \n", "\n", " Resolution Method RfactorWork RfactorFree AsymChain1 AuthChain1 \\\n", "0 2.3 X-RAY DIFFRACTION 0.205 0.0 B B \n", "1 2.0 X-RAY DIFFRACTION 0.203 0.0 B B \n", "2 2.3 X-RAY DIFFRACTION 0.168 0.0 B B \n", "3 2.6 X-RAY DIFFRACTION 0.233 0.277 B B \n", "4 3.2 X-RAY DIFFRACTION 0.251 0.305 B B \n", "\n", " EntityID1 SymmetryString1 AsymChain2 AuthChain2 EntityID2 SymmetryString2 \\\n", "0 2 1_555 A A 1 1_555 \n", "1 2 1_555 A A 1 1_555 \n", "2 2 1_555 A A 1 1_555 \n", "3 2 1_555 A A 1 1_555 \n", "4 2 1_555 A A 1 1_555 \n", "\n", " ChainPfamArch1 ChainPfamArch2 \n", "0 (C1-set) (MHC_I)_(C1-set) \n", "1 (C1-set) (MHC_I)_(C1-set) \n", "2 (C1-set) (MHC_I)_(C1-set) \n", "3 (C1-set) (MHC_I)_(C1-set) \n", "4 (C1-set) (MHC_I)_(C1-set) " ] }, "execution_count": 14, "metadata": {}, "output_type": "execute_result" } ], "source": [ "interface_df = pd.read_csv(\n", " os.path.join(DATA_DIR, 'ChainHeteroInterfaceList_CF5.txt'),\n", " sep='\\t',\n", " comment='#'\n", ")\n", "print(interface_df.shape)\n", "interface_df.head()" ] }, { "cell_type": "code", "execution_count": 16, "id": "531bbe10", "metadata": {}, "outputs": [ { "data": { "text/plain": [ "ChainGroupID 1456\n", "ClusterID 51\n", "PdbID 12852\n", "InterfaceID 434\n", "UnpCode 11307\n", "SurfaceArea 33227\n", "InAsu 2\n", "InPdb 2\n", "InPisa 2\n", "ASU 725\n", "PDBBA 653\n", "PdbBaID 3\n", "PISABA 297\n", "PisaBaID 8\n", "Resolution 2022\n", "Method 7\n", "RfactorWork 4115\n", "RfactorFree 4235\n", "AsymChain1 229\n", "AuthChain1 1179\n", "EntityID1 181\n", "SymmetryString1 158\n", "AsymChain2 239\n", "AuthChain2 1222\n", "EntityID2 183\n", "SymmetryString2 200\n", "ChainPfamArch1 642\n", "ChainPfamArch2 645\n", "dtype: int64" ] }, "execution_count": 16, "metadata": {}, "output_type": "execute_result" } ], "source": [ "interface_df.nunique()" ] }, { "cell_type": "code", "execution_count": 18, "id": "dec6e23e", "metadata": {}, "outputs": [ { "data": { "text/plain": [ "1 79582\n", "2 7221\n", "3 2318\n", "5 561\n", "4 453\n", "11 200\n", "6 197\n", "7 136\n", "9 92\n", "19 81\n", "8 50\n", "30 41\n", "16 35\n", "39 34\n", "10 30\n", "70 25\n", "12 23\n", "18 22\n", "72 22\n", "73 21\n", "64 21\n", "14 20\n", "17 20\n", "99 19\n", "13 19\n", "167 15\n", "15 15\n", "20 14\n", "21 13\n", "24 12\n", "173 12\n", "258 11\n", "184 11\n", "195 11\n", "196 11\n", "239 10\n", "236 10\n", "25 10\n", "211 10\n", "235 10\n", "223 9\n", "22 9\n", "261 9\n", "250 8\n", "23 8\n", "276 7\n", "280 7\n", "302 7\n", "310 7\n", "304 6\n", "305 6\n", "Name: ClusterID, dtype: int64" ] }, "execution_count": 18, "metadata": {}, "output_type": "execute_result" } ], "source": [ "interface_df['ClusterID'].value_counts()" ] }, { "cell_type": "code", "execution_count": 19, "id": "3c2d1ac2", "metadata": {}, "outputs": [ { "data": { "text/plain": [ "ELECTRON MICROSCOPY 54374\n", "X-RAY DIFFRACTION 37057\n", "SOLUTION NMR 49\n", "- 18\n", "SOLUTION SCATTERING 1\n", "ELECTRON CRYSTALLOGRAPHY 1\n", "NEUTRON DIFFRACTION 1\n", "Name: Method, dtype: int64" ] }, "execution_count": 19, "metadata": {}, "output_type": "execute_result" } ], "source": [ "interface_df['Method'].value_counts()" ] }, { "cell_type": "code", "execution_count": 20, "id": "a7492bd8", "metadata": {}, "outputs": [ { "data": { "text/plain": [ "A2BCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqr 5227\n", "ABC 3403\n", "AB 2401\n", "A2B2C2D2E2F2G2H2I2J2K2L2M2N2O2P2Q2R2S2T2U2V2W2X2Y2Z2a2b2c2d2e2f2g2h2i2j2k2l2m2n2o2p2q2r2s2t2u2v2w2 2063\n", "ABCD 1864\n", "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz 1849\n", "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789ABCDEFGHIJKLMN 1736\n", "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789ABCDEFGHIJKLMNOP 1683\n", "A2B2C2D2E2F2G2H2I2J2K2L2M2N2 1539\n", "A2B2C2 1450\n", "Name: ASU, dtype: int64" ] }, "execution_count": 20, "metadata": {}, "output_type": "execute_result" } ], "source": [ "#ASU: the asymmetric unit in ABC format. \n", "# e.g. homo-dimer: A2, heterodimer: AB, homo-tetramer: A4, hetero-tetramer: A2B2, A3B\n", "interface_df['ASU'].value_counts().head(10)" ] }, { "cell_type": "code", "execution_count": 21, "id": "7e3db3b1", "metadata": {}, "outputs": [ { "data": { "image/png": "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\n", "text/plain": [ "
" ] }, "metadata": { "needs_background": "light" }, "output_type": "display_data" } ], "source": [ "ax = interface_df['SurfaceArea'].plot(kind='hist', bins=50)\n", "ax.set(xlabel='SurfaceArea');" ] }, { "cell_type": "markdown", "id": "35344526", "metadata": {}, "source": [ "## Examine PDB files in ProtCID" ] }, { "cell_type": "code", "execution_count": 22, "id": "d0919fcb", "metadata": {}, "outputs": [], "source": [ "import sys\n", "sys.path.append('ppi-model')" ] }, { "cell_type": "code", "execution_count": 23, "id": "8007304f", "metadata": {}, "outputs": [], "source": [ "from ppi.data_utils import parse_pdb_structure, extract_coords" ] }, { "cell_type": "code", "execution_count": 24, "id": "815a25c0", "metadata": {}, "outputs": [], "source": [ "# from ppi.data_utils import SloppyStructureBuilder" ] }, { "cell_type": "code", "execution_count": 25, "id": "1e8c3367", "metadata": {}, "outputs": [], "source": [ "from Bio.PDB import PDBParser" ] }, { "cell_type": "code", "execution_count": 26, "id": "67164354", "metadata": {}, "outputs": [], "source": [ "pdb_id = '6k15_41'\n", "\n", "pdb_parser = PDBParser(\n", " QUIET=True,\n", " PERMISSIVE=True,\n", "# structure_builder=SloppyStructureBuilder(),\n", ")\n", "\n", "structure = pdb_parser.get_structure(\n", " pdb_id, \n", " os.path.join(DATA_DIR, f'{pdb_id}.pdb') \n", ")" ] }, { "cell_type": "code", "execution_count": 27, "id": "0567557d", "metadata": {}, "outputs": [ { "data": { "text/plain": [ "dict_keys(['A', 'B'])" ] }, "execution_count": 27, "metadata": {}, "output_type": "execute_result" } ], "source": [ "recs = extract_coords(structure)\n", "recs.keys()" ] }, { "cell_type": "code", "execution_count": 28, "id": "f386ff6e", "metadata": {}, "outputs": [ { "data": { "text/plain": [ "'AVFDLMTSPFTQEEVLIKEIDFLKNKLLDLQSL'" ] }, "execution_count": 28, "metadata": {}, "output_type": "execute_result" } ], "source": [ "recs['A']['seq']" ] }, { "cell_type": "code", "execution_count": 29, "id": "f6f77b66", "metadata": {}, "outputs": [ { "data": { "text/plain": [ "'PLNWVQGPAIFHMLTSPYTQDEIINHEMNFLKGRLLELQEIT'" ] }, "execution_count": 29, "metadata": {}, "output_type": "execute_result" } ], "source": [ "recs['B']['seq']" ] }, { "cell_type": "code", "execution_count": 30, "id": "8230ca01", "metadata": {}, "outputs": [], "source": [ "import matplotlib\n", "\n", "def plot_backbone(rec: dict, ax):\n", " '''\n", " 3d plot for the backbone atoms from a chain.\n", " '''\n", " coords = np.asarray(rec['coords'])\n", " atoms = [\"N\", \"CA\", \"C\", \"O\"]\n", " for i, atom in enumerate(atoms):\n", " ax.scatter(coords[:, i, 0],\n", " coords[:, i, 1],\n", " coords[:, i, 2],\n", " label='%s:%s' % (rec['name'], atom)\n", " );\n", "\n", " # connect backbone atoms sequentially\n", " coords_stacked = coords.reshape(-1, 3)\n", " N_atoms = coords_stacked.shape[0]\n", " edge_pos = np.array([(coords_stacked[u], coords_stacked[u+1]) \\\n", " for u in range(N_atoms-1)])\n", "\n", " # Plot the edges\n", " for vizedge in edge_pos:\n", " ax.plot(*vizedge.T, color=\"tab:gray\")\n", "\n", " return ax " ] }, { "cell_type": "code", "execution_count": 31, "id": "96170749", "metadata": {}, "outputs": [ { "data": { "text/plain": [ "" ] }, "execution_count": 31, "metadata": {}, "output_type": "execute_result" }, { "data": { "image/png": "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\n", "text/plain": [ "
" ] }, "metadata": { "needs_background": "light" }, "output_type": "display_data" } ], "source": [ "# Visualize 4 key atoms across amino acid residues in the pair of proteins\n", "fig = plt.figure(figsize=(12, 12))\n", "ax = fig.add_subplot(projection='3d')\n", "\n", "for chain_id in recs:\n", " ax = plot_backbone(recs[chain_id], ax)\n", " \n", "ax.legend()" ] }, { "cell_type": "markdown", "id": "51834772", "metadata": {}, "source": [ "## Download PDB files" ] }, { "cell_type": "code", "execution_count": 55, "id": "8ad23621", "metadata": {}, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "--2022-09-09 14:45:32-- https://www.rcsb.org/scripts/batch_download.sh\n", "Resolving www.rcsb.org (www.rcsb.org)... 132.249.210.225\n", "Connecting to www.rcsb.org (www.rcsb.org)|132.249.210.225|:443... connected.\n", "HTTP request sent, awaiting response... 200 OK\n", "Length: 2360 (2.3K) [application/x-sh]\n", "Saving to: ‘batch_download.sh’\n", "\n", "100%[======================================>] 2,360 --.-K/s in 0s \n", "\n", "2022-09-09 14:45:32 (352 MB/s) - ‘batch_download.sh’ saved [2360/2360]\n", "\n" ] } ], "source": [ "!wget https://www.rcsb.org/scripts/batch_download.sh" ] }, { "cell_type": "code", "execution_count": 56, "id": "07140e77", "metadata": {}, "outputs": [], "source": [ "# write list_files\n", "with open(os.path.join(DATA_DIR, 'list_files.txt'), 'w') as out:\n", " out.write(','.join(interface_df['PdbID'].unique()))" ] }, { "cell_type": "code", "execution_count": null, "id": "f26c7f97", "metadata": { "collapsed": true, "jupyter": { "outputs_hidden": true } }, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "Downloading https://files.rcsb.org/download/1a1m.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1a1m.pdb.gz\n", "Downloading https://files.rcsb.org/download/1a1n.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1a1n.pdb.gz\n", "Downloading https://files.rcsb.org/download/1a1o.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1a1o.pdb.gz\n", "Downloading https://files.rcsb.org/download/1a6z.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1a6z.pdb.gz\n", "Downloading https://files.rcsb.org/download/1a9b.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1a9b.pdb.gz\n", "Downloading https://files.rcsb.org/download/1a9e.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1a9e.pdb.gz\n", "Downloading https://files.rcsb.org/download/1agb.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1agb.pdb.gz\n", "Downloading https://files.rcsb.org/download/1agc.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1agc.pdb.gz\n", "Downloading https://files.rcsb.org/download/1agd.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1agd.pdb.gz\n", "Downloading https://files.rcsb.org/download/1age.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1age.pdb.gz\n", "Downloading https://files.rcsb.org/download/1agf.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1agf.pdb.gz\n", "Downloading https://files.rcsb.org/download/1akj.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1akj.pdb.gz\n", "Downloading https://files.rcsb.org/download/1ao7.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1ao7.pdb.gz\n", "Downloading https://files.rcsb.org/download/1b0g.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1b0g.pdb.gz\n", "Downloading https://files.rcsb.org/download/1b0r.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1b0r.pdb.gz\n", "Downloading https://files.rcsb.org/download/1bd2.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1bd2.pdb.gz\n", "Downloading https://files.rcsb.org/download/1bqh.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1bqh.pdb.gz\n", "Downloading https://files.rcsb.org/download/1bz9.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1bz9.pdb.gz\n", "Downloading https://files.rcsb.org/download/1c16.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1c16.pdb.gz\n", "Downloading https://files.rcsb.org/download/1ce6.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1ce6.pdb.gz\n", "Downloading https://files.rcsb.org/download/1cg9.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1cg9.pdb.gz\n", "Downloading https://files.rcsb.org/download/1ddh.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1ddh.pdb.gz\n", "Downloading https://files.rcsb.org/download/1de4.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1de4.pdb.gz\n", "Downloading https://files.rcsb.org/download/1duy.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1duy.pdb.gz\n", "Downloading https://files.rcsb.org/download/1duz.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1duz.pdb.gz\n", "Downloading https://files.rcsb.org/download/1e27.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1e27.pdb.gz\n", "Downloading https://files.rcsb.org/download/1e28.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1e28.pdb.gz\n", "Downloading https://files.rcsb.org/download/1ed3.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1ed3.pdb.gz\n", "Downloading https://files.rcsb.org/download/1eey.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1eey.pdb.gz\n", "Downloading https://files.rcsb.org/download/1eez.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1eez.pdb.gz\n", "Downloading https://files.rcsb.org/download/1efx.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1efx.pdb.gz\n", "Downloading https://files.rcsb.org/download/1exu.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1exu.pdb.gz\n", "Downloading https://files.rcsb.org/download/1ffn.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1ffn.pdb.gz\n", "Downloading https://files.rcsb.org/download/1ffo.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1ffo.pdb.gz\n", "Downloading https://files.rcsb.org/download/1ffp.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1ffp.pdb.gz\n", "Downloading https://files.rcsb.org/download/1fg2.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1fg2.pdb.gz\n", "Downloading https://files.rcsb.org/download/1fo0.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1fo0.pdb.gz\n", "Downloading https://files.rcsb.org/download/1frt.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1frt.pdb.gz\n", "Downloading https://files.rcsb.org/download/1fzj.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1fzj.pdb.gz\n", "Downloading https://files.rcsb.org/download/1fzk.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1fzk.pdb.gz\n", "Downloading https://files.rcsb.org/download/1fzm.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1fzm.pdb.gz\n", "Downloading https://files.rcsb.org/download/1fzo.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1fzo.pdb.gz\n", "Downloading https://files.rcsb.org/download/1g6r.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1g6r.pdb.gz\n", "Downloading https://files.rcsb.org/download/1g7p.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1g7p.pdb.gz\n", "Downloading https://files.rcsb.org/download/1g7q.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1g7q.pdb.gz\n", "Downloading https://files.rcsb.org/download/1hhg.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1hhg.pdb.gz\n", "Downloading https://files.rcsb.org/download/1hhh.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1hhh.pdb.gz\n", "Downloading https://files.rcsb.org/download/1hhi.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1hhi.pdb.gz\n", "Downloading https://files.rcsb.org/download/1hhj.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1hhj.pdb.gz\n", "Downloading https://files.rcsb.org/download/1hhk.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1hhk.pdb.gz\n", "Downloading https://files.rcsb.org/download/1hoc.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1hoc.pdb.gz\n", "Downloading https://files.rcsb.org/download/1hsa.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1hsa.pdb.gz\n", "Downloading https://files.rcsb.org/download/1hsb.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1hsb.pdb.gz\n", "Downloading https://files.rcsb.org/download/1i1f.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1i1f.pdb.gz\n", "Downloading https://files.rcsb.org/download/1i1y.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1i1y.pdb.gz\n", "Downloading https://files.rcsb.org/download/1i4f.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1i4f.pdb.gz\n", "Downloading https://files.rcsb.org/download/1i7r.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1i7r.pdb.gz\n", "Downloading https://files.rcsb.org/download/1i7t.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1i7t.pdb.gz\n", "Downloading https://files.rcsb.org/download/1i7u.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1i7u.pdb.gz\n", "Downloading https://files.rcsb.org/download/1im3.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1im3.pdb.gz\n", "Downloading https://files.rcsb.org/download/1im9.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1im9.pdb.gz\n", "Downloading https://files.rcsb.org/download/1inq.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1inq.pdb.gz\n", "Downloading https://files.rcsb.org/download/1jf1.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1jf1.pdb.gz\n", "Downloading https://files.rcsb.org/download/1jgd.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1jgd.pdb.gz\n", "Downloading https://files.rcsb.org/download/1jge.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1jge.pdb.gz\n", "Downloading https://files.rcsb.org/download/1jht.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1jht.pdb.gz\n", "Downloading https://files.rcsb.org/download/1jpf.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1jpf.pdb.gz\n", "Downloading https://files.rcsb.org/download/1jpg.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1jpg.pdb.gz\n", "Downloading https://files.rcsb.org/download/1juf.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1juf.pdb.gz\n", "Downloading https://files.rcsb.org/download/1k5n.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1k5n.pdb.gz\n", "Downloading https://files.rcsb.org/download/1k8d.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1k8d.pdb.gz\n", "Downloading https://files.rcsb.org/download/1kbg.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1kbg.pdb.gz\n", "Downloading https://files.rcsb.org/download/1kj2.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1kj2.pdb.gz\n", "Downloading https://files.rcsb.org/download/1kj3.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1kj3.pdb.gz\n", "Downloading https://files.rcsb.org/download/1kjm.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1kjm.pdb.gz\n", "Downloading https://files.rcsb.org/download/1kjv.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1kjv.pdb.gz\n", "Downloading https://files.rcsb.org/download/1kpr.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1kpr.pdb.gz\n", "Downloading https://files.rcsb.org/download/1kpu.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1kpu.pdb.gz\n", "Downloading https://files.rcsb.org/download/1kpv.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1kpv.pdb.gz\n", "Downloading https://files.rcsb.org/download/1ktl.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1ktl.pdb.gz\n", "Downloading https://files.rcsb.org/download/1ld9.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1ld9.pdb.gz\n", "Downloading https://files.rcsb.org/download/1ldp.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1ldp.pdb.gz\n", "Downloading https://files.rcsb.org/download/1leg.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1leg.pdb.gz\n", "Downloading https://files.rcsb.org/download/1lek.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1lek.pdb.gz\n", "Downloading https://files.rcsb.org/download/1lk2.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1lk2.pdb.gz\n", "Downloading https://files.rcsb.org/download/1lp9.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1lp9.pdb.gz\n", "Downloading https://files.rcsb.org/download/1m05.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1m05.pdb.gz\n", "Downloading https://files.rcsb.org/download/1m6o.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1m6o.pdb.gz\n", "Downloading https://files.rcsb.org/download/1mhc.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1mhc.pdb.gz\n", "Downloading https://files.rcsb.org/download/1mhe.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1mhe.pdb.gz\n", "Downloading https://files.rcsb.org/download/1mi5.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1mi5.pdb.gz\n", "Downloading https://files.rcsb.org/download/1mwa.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1mwa.pdb.gz\n", "Downloading https://files.rcsb.org/download/1n2r.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1n2r.pdb.gz\n", "Downloading https://files.rcsb.org/download/1n3n.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1n3n.pdb.gz\n", "Downloading https://files.rcsb.org/download/1n59.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1n59.pdb.gz\n", "Downloading https://files.rcsb.org/download/1n5a.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1n5a.pdb.gz\n", "Downloading https://files.rcsb.org/download/1nam.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1nam.pdb.gz\n", "Downloading https://files.rcsb.org/download/1nan.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1nan.pdb.gz\n", "Downloading https://files.rcsb.org/download/1nez.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1nez.pdb.gz\n", "Downloading https://files.rcsb.org/download/1of2.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1of2.pdb.gz\n", "Downloading https://files.rcsb.org/download/1oga.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1oga.pdb.gz\n", "Downloading https://files.rcsb.org/download/1ogt.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1ogt.pdb.gz\n", "Downloading https://files.rcsb.org/download/1osz.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1osz.pdb.gz\n", "Downloading https://files.rcsb.org/download/1p1z.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1p1z.pdb.gz\n", "Downloading https://files.rcsb.org/download/1p4l.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1p4l.pdb.gz\n", "Downloading https://files.rcsb.org/download/1p7q.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1p7q.pdb.gz\n", "Downloading https://files.rcsb.org/download/1pqz.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1pqz.pdb.gz\n", "Downloading https://files.rcsb.org/download/1q94.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1q94.pdb.gz\n", "Downloading https://files.rcsb.org/download/1qew.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1qew.pdb.gz\n", "Downloading https://files.rcsb.org/download/1qlf.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1qlf.pdb.gz\n", "Downloading https://files.rcsb.org/download/1qo3.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1qo3.pdb.gz\n", "Downloading https://files.rcsb.org/download/1qqd.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1qqd.pdb.gz\n", "Downloading https://files.rcsb.org/download/1qr1.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1qr1.pdb.gz\n", "Downloading https://files.rcsb.org/download/1qrn.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1qrn.pdb.gz\n", "Downloading https://files.rcsb.org/download/1qse.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1qse.pdb.gz\n", "Downloading https://files.rcsb.org/download/1qsf.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1qsf.pdb.gz\n", "Downloading https://files.rcsb.org/download/1qvo.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1qvo.pdb.gz\n", "Downloading https://files.rcsb.org/download/1r3h.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1r3h.pdb.gz\n", "Downloading https://files.rcsb.org/download/1rjy.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1rjy.pdb.gz\n", "Downloading https://files.rcsb.org/download/1rjz.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1rjz.pdb.gz\n", "Downloading https://files.rcsb.org/download/1rk0.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1rk0.pdb.gz\n", "Downloading https://files.rcsb.org/download/1rk1.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1rk1.pdb.gz\n", "Downloading https://files.rcsb.org/download/1s8d.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1s8d.pdb.gz\n", "Downloading https://files.rcsb.org/download/1s9w.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1s9w.pdb.gz\n", "Downloading https://files.rcsb.org/download/1s9x.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1s9x.pdb.gz\n", "Downloading https://files.rcsb.org/download/1s9y.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1s9y.pdb.gz\n", "Downloading https://files.rcsb.org/download/1sys.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1sys.pdb.gz\n", "Downloading https://files.rcsb.org/download/1syv.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1syv.pdb.gz\n", "Downloading https://files.rcsb.org/download/1t0m.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1t0m.pdb.gz\n", "Downloading https://files.rcsb.org/download/1t0n.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1t0n.pdb.gz\n", "Downloading https://files.rcsb.org/download/1t1w.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1t1w.pdb.gz\n", "Downloading https://files.rcsb.org/download/1t1x.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1t1x.pdb.gz\n", "Downloading https://files.rcsb.org/download/1t1y.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1t1y.pdb.gz\n", "Downloading https://files.rcsb.org/download/1t1z.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1t1z.pdb.gz\n", "Downloading https://files.rcsb.org/download/1t20.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1t20.pdb.gz\n", "Downloading https://files.rcsb.org/download/1t21.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1t21.pdb.gz\n", "Downloading https://files.rcsb.org/download/1t22.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1t22.pdb.gz\n", "Downloading https://files.rcsb.org/download/1tvb.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1tvb.pdb.gz\n", "Downloading https://files.rcsb.org/download/1tvh.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1tvh.pdb.gz\n", "Downloading https://files.rcsb.org/download/1u58.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1u58.pdb.gz\n", "Downloading https://files.rcsb.org/download/1uxs.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1uxs.pdb.gz\n", "Downloading https://files.rcsb.org/download/1uxw.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1uxw.pdb.gz\n", "Downloading https://files.rcsb.org/download/1vac.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1vac.pdb.gz\n", "Downloading https://files.rcsb.org/download/1vad.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1vad.pdb.gz\n", "Downloading https://files.rcsb.org/download/1vgk.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1vgk.pdb.gz\n", "Downloading https://files.rcsb.org/download/1w0v.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1w0v.pdb.gz\n", "Downloading https://files.rcsb.org/download/1w0w.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1w0w.pdb.gz\n", "Downloading https://files.rcsb.org/download/1w72.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1w72.pdb.gz\n", "Downloading https://files.rcsb.org/download/1wbx.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1wbx.pdb.gz\n", "Downloading https://files.rcsb.org/download/1wbz.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1wbz.pdb.gz\n", "Downloading https://files.rcsb.org/download/1x7q.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1x7q.pdb.gz\n", "Downloading https://files.rcsb.org/download/1xh3.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1xh3.pdb.gz\n", "Downloading https://files.rcsb.org/download/1xr8.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1xr8.pdb.gz\n", "Downloading https://files.rcsb.org/download/1xr9.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1xr9.pdb.gz\n", "Downloading https://files.rcsb.org/download/1ydp.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1ydp.pdb.gz\n", "Downloading https://files.rcsb.org/download/1ypz.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1ypz.pdb.gz\n", "Downloading https://files.rcsb.org/download/1zhb.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1zhb.pdb.gz\n", "Downloading https://files.rcsb.org/download/1zhk.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1zhk.pdb.gz\n", "Downloading https://files.rcsb.org/download/1zhl.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1zhl.pdb.gz\n", "Downloading https://files.rcsb.org/download/1zs8.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1zs8.pdb.gz\n", "Downloading https://files.rcsb.org/download/1zsd.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1zsd.pdb.gz\n", "Downloading https://files.rcsb.org/download/1zt1.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1zt1.pdb.gz\n", "Downloading https://files.rcsb.org/download/1zt7.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1zt7.pdb.gz\n", "Downloading https://files.rcsb.org/download/1zvs.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1zvs.pdb.gz\n", "Downloading https://files.rcsb.org/download/2a83.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/2a83.pdb.gz\n", "Downloading https://files.rcsb.org/download/2ak4.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/2ak4.pdb.gz\n", "Downloading https://files.rcsb.org/download/2av1.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/2av1.pdb.gz\n", "Downloading https://files.rcsb.org/download/2av7.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/2av7.pdb.gz\n", "Downloading https://files.rcsb.org/download/2axf.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/2axf.pdb.gz\n", "Downloading https://files.rcsb.org/download/2axg.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/2axg.pdb.gz\n", "Downloading https://files.rcsb.org/download/2bck.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/2bck.pdb.gz\n", "Downloading https://files.rcsb.org/download/2bnq.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/2bnq.pdb.gz\n", "Downloading https://files.rcsb.org/download/2bnr.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/2bnr.pdb.gz\n", "Downloading https://files.rcsb.org/download/2bsr.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/2bsr.pdb.gz\n", "Downloading https://files.rcsb.org/download/2bss.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/2bss.pdb.gz\n", "Downloading https://files.rcsb.org/download/2bst.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/2bst.pdb.gz\n", "Downloading https://files.rcsb.org/download/2bvo.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/2bvo.pdb.gz\n", "Downloading https://files.rcsb.org/download/2bvp.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/2bvp.pdb.gz\n", "Downloading https://files.rcsb.org/download/2bvq.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/2bvq.pdb.gz\n", "Downloading https://files.rcsb.org/download/2c7u.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/2c7u.pdb.gz\n", "Downloading https://files.rcsb.org/download/2cii.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/2cii.pdb.gz\n", "Downloading https://files.rcsb.org/download/2cik.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/2cik.pdb.gz\n", "Downloading https://files.rcsb.org/download/2ckb.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/2ckb.pdb.gz\n", "Downloading https://files.rcsb.org/download/2clr.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/2clr.pdb.gz\n", "Downloading https://files.rcsb.org/download/2clv.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/2clv.pdb.gz\n", "Downloading https://files.rcsb.org/download/2clz.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/2clz.pdb.gz\n", "Downloading https://files.rcsb.org/download/2d31.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/2d31.pdb.gz\n", "Downloading https://files.rcsb.org/download/2esv.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/2esv.pdb.gz\n", "Downloading https://files.rcsb.org/download/2f53.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/2f53.pdb.gz\n", "Downloading https://files.rcsb.org/download/2f54.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/2f54.pdb.gz\n", "Downloading https://files.rcsb.org/download/2f74.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/2f74.pdb.gz\n", "Downloading https://files.rcsb.org/download/2fo4.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/2fo4.pdb.gz\n", "Downloading https://files.rcsb.org/download/2fwo.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/2fwo.pdb.gz\n", "Downloading https://files.rcsb.org/download/2fyy.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/2fyy.pdb.gz\n", "Downloading https://files.rcsb.org/download/2fz3.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/2fz3.pdb.gz\n", "Downloading https://files.rcsb.org/download/2git.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/2git.pdb.gz\n", "Downloading https://files.rcsb.org/download/2gj6.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/2gj6.pdb.gz\n", "Downloading https://files.rcsb.org/download/2gt9.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/2gt9.pdb.gz\n", "Downloading https://files.rcsb.org/download/2gtw.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/2gtw.pdb.gz\n", "Downloading https://files.rcsb.org/download/2gtz.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/2gtz.pdb.gz\n", "Downloading https://files.rcsb.org/download/2guo.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/2guo.pdb.gz\n", "Downloading https://files.rcsb.org/download/2h6p.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/2h6p.pdb.gz\n", "Downloading https://files.rcsb.org/download/2hjk.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/2hjk.pdb.gz\n", "Downloading https://files.rcsb.org/download/2hjl.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/2hjl.pdb.gz\n", "Downloading https://files.rcsb.org/download/2hla.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/2hla.pdb.gz\n", "Downloading https://files.rcsb.org/download/2hn7.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/2hn7.pdb.gz\n", "Downloading https://files.rcsb.org/download/2j8u.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/2j8u.pdb.gz\n", "Downloading https://files.rcsb.org/download/2jcc.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/2jcc.pdb.gz\n", "Downloading https://files.rcsb.org/download/2mha.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/2mha.pdb.gz\n", "Downloading https://files.rcsb.org/download/2nw3.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/2nw3.pdb.gz\n", "Downloading https://files.rcsb.org/download/2nx5.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/2nx5.pdb.gz\n", "Downloading https://files.rcsb.org/download/2ol3.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/2ol3.pdb.gz\n", "Downloading https://files.rcsb.org/download/2p5e.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/2p5e.pdb.gz\n", "Downloading https://files.rcsb.org/download/2p5w.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/2p5w.pdb.gz\n", "Downloading https://files.rcsb.org/download/2pye.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/2pye.pdb.gz\n", "Downloading https://files.rcsb.org/download/2rfx.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/2rfx.pdb.gz\n", "Downloading https://files.rcsb.org/download/2uwe.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/2uwe.pdb.gz\n", "Downloading https://files.rcsb.org/download/2v2w.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/2v2w.pdb.gz\n", "Downloading https://files.rcsb.org/download/2v2x.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/2v2x.pdb.gz\n", "Downloading https://files.rcsb.org/download/2vaa.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/2vaa.pdb.gz\n", "Downloading https://files.rcsb.org/download/2vab.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/2vab.pdb.gz\n", "Downloading https://files.rcsb.org/download/2ve6.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/2ve6.pdb.gz\n", "Downloading https://files.rcsb.org/download/2vlj.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/2vlj.pdb.gz\n", "Downloading https://files.rcsb.org/download/2vlk.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/2vlk.pdb.gz\n", "Downloading https://files.rcsb.org/download/2vll.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/2vll.pdb.gz\n", "Downloading https://files.rcsb.org/download/2vlr.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/2vlr.pdb.gz\n", "Downloading https://files.rcsb.org/download/2x4n.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/2x4n.pdb.gz\n", "Downloading https://files.rcsb.org/download/2x4o.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/2x4o.pdb.gz\n", "Downloading https://files.rcsb.org/download/2x4p.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/2x4p.pdb.gz\n", "Downloading https://files.rcsb.org/download/2x4q.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/2x4q.pdb.gz\n", "Downloading https://files.rcsb.org/download/2x4r.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/2x4r.pdb.gz\n", "Downloading https://files.rcsb.org/download/2x4s.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/2x4s.pdb.gz\n", "Downloading https://files.rcsb.org/download/2x4t.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/2x4t.pdb.gz\n", "Downloading https://files.rcsb.org/download/2x4u.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/2x4u.pdb.gz\n", "Downloading https://files.rcsb.org/download/2x70.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/2x70.pdb.gz\n", "Downloading https://files.rcsb.org/download/2xfx.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/2xfx.pdb.gz\n", "Downloading https://files.rcsb.org/download/2xpg.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/2xpg.pdb.gz\n", "Downloading https://files.rcsb.org/download/2yez.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/2yez.pdb.gz\n", "Downloading https://files.rcsb.org/download/2ypk.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/2ypk.pdb.gz\n", "Downloading https://files.rcsb.org/download/2ypl.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/2ypl.pdb.gz\n", "Downloading https://files.rcsb.org/download/2zok.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/2zok.pdb.gz\n", "Downloading https://files.rcsb.org/download/2zol.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/2zol.pdb.gz\n", "Downloading https://files.rcsb.org/download/2zsv.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/2zsv.pdb.gz\n", "Downloading https://files.rcsb.org/download/2zsw.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/2zsw.pdb.gz\n", "Downloading https://files.rcsb.org/download/3am8.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3am8.pdb.gz\n", "Downloading https://files.rcsb.org/download/3b3i.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3b3i.pdb.gz\n", "Downloading https://files.rcsb.org/download/3b6s.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3b6s.pdb.gz\n", "Downloading https://files.rcsb.org/download/3bev.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3bev.pdb.gz\n", "Downloading https://files.rcsb.org/download/3bew.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3bew.pdb.gz\n", "Downloading https://files.rcsb.org/download/3bgm.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3bgm.pdb.gz\n", "Downloading https://files.rcsb.org/download/3bh8.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3bh8.pdb.gz\n", "Downloading https://files.rcsb.org/download/3bh9.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3bh9.pdb.gz\n", "Downloading https://files.rcsb.org/download/3bhb.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3bhb.pdb.gz\n", "Downloading https://files.rcsb.org/download/3bo8.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3bo8.pdb.gz\n", "Downloading https://files.rcsb.org/download/3bp4.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3bp4.pdb.gz\n", "Downloading https://files.rcsb.org/download/3bp7.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3bp7.pdb.gz\n", "Downloading https://files.rcsb.org/download/3buy.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3buy.pdb.gz\n", "Downloading https://files.rcsb.org/download/3bvn.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3bvn.pdb.gz\n", "Downloading https://files.rcsb.org/download/3bw9.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3bw9.pdb.gz\n", "Downloading https://files.rcsb.org/download/3bwa.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3bwa.pdb.gz\n", "Downloading https://files.rcsb.org/download/3bxn.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3bxn.pdb.gz\n", "Downloading https://files.rcsb.org/download/3bze.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3bze.pdb.gz\n", "Downloading https://files.rcsb.org/download/3bzf.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3bzf.pdb.gz\n", "Downloading https://files.rcsb.org/download/3c8k.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3c8k.pdb.gz\n", "Downloading https://files.rcsb.org/download/3c9n.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3c9n.pdb.gz\n", "Downloading https://files.rcsb.org/download/3cc5.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3cc5.pdb.gz\n", "Downloading https://files.rcsb.org/download/3cch.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3cch.pdb.gz\n", "Downloading https://files.rcsb.org/download/3cdg.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3cdg.pdb.gz\n", "Downloading https://files.rcsb.org/download/3ch1.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3ch1.pdb.gz\n", "Downloading https://files.rcsb.org/download/3cii.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3cii.pdb.gz\n", "Downloading https://files.rcsb.org/download/3cpl.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3cpl.pdb.gz\n", "Downloading https://files.rcsb.org/download/3cvh.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3cvh.pdb.gz\n", "Downloading https://files.rcsb.org/download/3czf.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3czf.pdb.gz\n", "Downloading https://files.rcsb.org/download/3d18.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3d18.pdb.gz\n", "Downloading https://files.rcsb.org/download/3d25.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3d25.pdb.gz\n", "Downloading https://files.rcsb.org/download/3d39.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3d39.pdb.gz\n", "Downloading https://files.rcsb.org/download/3d3v.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3d3v.pdb.gz\n", "Downloading https://files.rcsb.org/download/3dbx.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3dbx.pdb.gz\n", "Downloading https://files.rcsb.org/download/3dmm.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3dmm.pdb.gz\n", "Downloading https://files.rcsb.org/download/3dtx.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3dtx.pdb.gz\n", "Downloading https://files.rcsb.org/download/3dx6.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3dx6.pdb.gz\n", "Downloading https://files.rcsb.org/download/3dx7.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3dx7.pdb.gz\n", "Downloading https://files.rcsb.org/download/3dx8.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3dx8.pdb.gz\n", "Downloading https://files.rcsb.org/download/3dxa.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3dxa.pdb.gz\n", "Downloading https://files.rcsb.org/download/3e6f.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3e6f.pdb.gz\n", "Downloading https://files.rcsb.org/download/3e6h.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3e6h.pdb.gz\n", "Downloading https://files.rcsb.org/download/3ecb.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3ecb.pdb.gz\n", "Downloading https://files.rcsb.org/download/3ffc.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3ffc.pdb.gz\n", "Downloading https://files.rcsb.org/download/3fol.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3fol.pdb.gz\n", "Downloading https://files.rcsb.org/download/3fom.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3fom.pdb.gz\n", "Downloading https://files.rcsb.org/download/3fon.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3fon.pdb.gz\n", "Downloading https://files.rcsb.org/download/3fqn.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3fqn.pdb.gz\n", "Downloading https://files.rcsb.org/download/3fqr.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3fqr.pdb.gz\n", "Downloading https://files.rcsb.org/download/3fqt.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3fqt.pdb.gz\n", "Downloading https://files.rcsb.org/download/3fqu.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3fqu.pdb.gz\n", "Downloading https://files.rcsb.org/download/3fqw.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3fqw.pdb.gz\n", "Downloading https://files.rcsb.org/download/3fqx.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3fqx.pdb.gz\n", "Downloading https://files.rcsb.org/download/3fru.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3fru.pdb.gz\n", "Downloading https://files.rcsb.org/download/3ft3.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3ft3.pdb.gz\n", "Downloading https://files.rcsb.org/download/3ft4.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3ft4.pdb.gz\n", "Downloading https://files.rcsb.org/download/3ftg.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3ftg.pdb.gz\n", "Downloading https://files.rcsb.org/download/3giv.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3giv.pdb.gz\n", "Downloading https://files.rcsb.org/download/3gjf.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3gjf.pdb.gz\n", "Downloading https://files.rcsb.org/download/3gsn.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3gsn.pdb.gz\n", "Downloading https://files.rcsb.org/download/3gso.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3gso.pdb.gz\n", "Downloading https://files.rcsb.org/download/3gsw.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3gsw.pdb.gz\n", "Downloading https://files.rcsb.org/download/3h7b.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3h7b.pdb.gz\n", "Downloading https://files.rcsb.org/download/3h9h.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3h9h.pdb.gz\n", "Downloading https://files.rcsb.org/download/3h9s.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3h9s.pdb.gz\n", "Downloading https://files.rcsb.org/download/3hae.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3hae.pdb.gz\n", "Downloading https://files.rcsb.org/download/3hcv.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3hcv.pdb.gz\n", "Downloading https://files.rcsb.org/download/3hg1.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3hg1.pdb.gz\n", "Downloading https://files.rcsb.org/download/3hla.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3hla.pdb.gz\n", "Downloading https://files.rcsb.org/download/3hpj.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3hpj.pdb.gz\n", "Downloading https://files.rcsb.org/download/3i6g.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3i6g.pdb.gz\n", "Downloading https://files.rcsb.org/download/3i6k.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3i6k.pdb.gz\n", "Downloading https://files.rcsb.org/download/3i6l.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3i6l.pdb.gz\n", "Downloading https://files.rcsb.org/download/3ixa.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3ixa.pdb.gz\n", "Downloading https://files.rcsb.org/download/3jts.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3jts.pdb.gz\n", "Downloading https://files.rcsb.org/download/3jtt.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3jtt.pdb.gz\n", "Downloading https://files.rcsb.org/download/3jvg.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3jvg.pdb.gz\n", "Downloading https://files.rcsb.org/download/3kla.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3kla.pdb.gz\n", "Downloading https://files.rcsb.org/download/3kpl.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3kpl.pdb.gz\n", "Downloading https://files.rcsb.org/download/3kpm.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3kpm.pdb.gz\n", "Downloading https://files.rcsb.org/download/3kpn.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3kpn.pdb.gz\n", "Downloading https://files.rcsb.org/download/3kpo.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3kpo.pdb.gz\n", "Downloading https://files.rcsb.org/download/3kpp.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3kpp.pdb.gz\n", "Downloading https://files.rcsb.org/download/3kpq.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3kpq.pdb.gz\n", "Downloading https://files.rcsb.org/download/3kpr.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3kpr.pdb.gz\n", "Downloading https://files.rcsb.org/download/3kps.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3kps.pdb.gz\n", "Downloading https://files.rcsb.org/download/3kww.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3kww.pdb.gz\n", "Downloading https://files.rcsb.org/download/3kxf.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3kxf.pdb.gz\n", "Downloading https://files.rcsb.org/download/3kyn.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3kyn.pdb.gz\n", "Downloading https://files.rcsb.org/download/3kyo.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3kyo.pdb.gz\n", "Downloading https://files.rcsb.org/download/3l3d.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3l3d.pdb.gz\n", "Downloading https://files.rcsb.org/download/3l3g.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3l3g.pdb.gz\n", "Downloading https://files.rcsb.org/download/3l3i.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3l3i.pdb.gz\n", "Downloading https://files.rcsb.org/download/3l3j.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3l3j.pdb.gz\n", "Downloading https://files.rcsb.org/download/3l3k.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3l3k.pdb.gz\n", "Downloading https://files.rcsb.org/download/3lkn.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3lkn.pdb.gz\n", "Downloading https://files.rcsb.org/download/3lko.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3lko.pdb.gz\n", "Downloading https://files.rcsb.org/download/3lkp.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3lkp.pdb.gz\n", "Downloading https://files.rcsb.org/download/3lkq.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3lkq.pdb.gz\n", "Downloading https://files.rcsb.org/download/3lkr.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3lkr.pdb.gz\n", "Downloading https://files.rcsb.org/download/3lks.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3lks.pdb.gz\n", "Downloading https://files.rcsb.org/download/3ln4.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3ln4.pdb.gz\n", "Downloading https://files.rcsb.org/download/3ln5.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3ln5.pdb.gz\n", "Downloading https://files.rcsb.org/download/3lv3.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3lv3.pdb.gz\n", "Downloading https://files.rcsb.org/download/3m17.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3m17.pdb.gz\n", "Downloading https://files.rcsb.org/download/3m1b.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3m1b.pdb.gz\n", "Downloading https://files.rcsb.org/download/3mgo.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3mgo.pdb.gz\n", "Downloading https://files.rcsb.org/download/3mgt.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3mgt.pdb.gz\n", "Downloading https://files.rcsb.org/download/3mr9.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3mr9.pdb.gz\n", "Downloading https://files.rcsb.org/download/3mrb.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3mrb.pdb.gz\n", "Downloading https://files.rcsb.org/download/3mrc.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3mrc.pdb.gz\n", "Downloading https://files.rcsb.org/download/3mrd.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3mrd.pdb.gz\n", "Downloading https://files.rcsb.org/download/3mre.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3mre.pdb.gz\n", "Downloading https://files.rcsb.org/download/3mrf.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3mrf.pdb.gz\n", "Downloading https://files.rcsb.org/download/3mrg.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3mrg.pdb.gz\n", "Downloading https://files.rcsb.org/download/3mrh.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3mrh.pdb.gz\n", "Downloading https://files.rcsb.org/download/3mri.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3mri.pdb.gz\n", "Downloading https://files.rcsb.org/download/3mrj.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3mrj.pdb.gz\n", "Downloading https://files.rcsb.org/download/3mrk.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3mrk.pdb.gz\n", "Downloading https://files.rcsb.org/download/3mrl.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3mrl.pdb.gz\n", "Downloading https://files.rcsb.org/download/3mrm.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3mrm.pdb.gz\n", "Downloading https://files.rcsb.org/download/3mrn.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3mrn.pdb.gz\n", "Downloading https://files.rcsb.org/download/3mro.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3mro.pdb.gz\n", "Downloading https://files.rcsb.org/download/3mrp.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3mrp.pdb.gz\n", "Downloading https://files.rcsb.org/download/3mrq.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3mrq.pdb.gz\n", "Downloading https://files.rcsb.org/download/3mrr.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3mrr.pdb.gz\n", "Downloading https://files.rcsb.org/download/3mv7.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3mv7.pdb.gz\n", "Downloading https://files.rcsb.org/download/3mv8.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3mv8.pdb.gz\n", "Downloading https://files.rcsb.org/download/3myj.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3myj.pdb.gz\n", "Downloading https://files.rcsb.org/download/3nfn.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3nfn.pdb.gz\n", "Downloading https://files.rcsb.org/download/3o3a.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3o3a.pdb.gz\n", "Downloading https://files.rcsb.org/download/3o3b.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3o3b.pdb.gz\n", "Downloading https://files.rcsb.org/download/3o3d.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3o3d.pdb.gz\n", "Downloading https://files.rcsb.org/download/3o3e.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3o3e.pdb.gz\n", "Downloading https://files.rcsb.org/download/3ox8.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3ox8.pdb.gz\n", "Downloading https://files.rcsb.org/download/3oxr.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3oxr.pdb.gz\n", "Downloading https://files.rcsb.org/download/3oxs.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3oxs.pdb.gz\n", "Downloading https://files.rcsb.org/download/3p4m.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3p4m.pdb.gz\n", "Downloading https://files.rcsb.org/download/3p4n.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3p4n.pdb.gz\n", "Downloading https://files.rcsb.org/download/3p4o.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3p4o.pdb.gz\n", "Downloading https://files.rcsb.org/download/3p73.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3p73.pdb.gz\n", "Downloading https://files.rcsb.org/download/3p77.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3p77.pdb.gz\n", "Downloading https://files.rcsb.org/download/3p9l.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3p9l.pdb.gz\n", "Downloading https://files.rcsb.org/download/3p9m.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3p9m.pdb.gz\n", "Downloading https://files.rcsb.org/download/3pab.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3pab.pdb.gz\n", "Downloading https://files.rcsb.org/download/3pqy.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3pqy.pdb.gz\n", "Downloading https://files.rcsb.org/download/3pwj.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3pwj.pdb.gz\n", "Downloading https://files.rcsb.org/download/3pwl.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3pwl.pdb.gz\n", "Downloading https://files.rcsb.org/download/3pwn.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3pwn.pdb.gz\n", "Downloading https://files.rcsb.org/download/3pwp.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3pwp.pdb.gz\n", "Downloading https://files.rcsb.org/download/3pwu.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3pwu.pdb.gz\n", "Downloading https://files.rcsb.org/download/3pwv.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3pwv.pdb.gz\n", "Downloading https://files.rcsb.org/download/3qdg.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3qdg.pdb.gz\n", "Downloading https://files.rcsb.org/download/3qdj.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3qdj.pdb.gz\n", "Downloading https://files.rcsb.org/download/3qdm.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3qdm.pdb.gz\n", "Downloading https://files.rcsb.org/download/3qeq.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3qeq.pdb.gz\n", "Downloading https://files.rcsb.org/download/3qfd.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3qfd.pdb.gz\n", "Downloading https://files.rcsb.org/download/3qfj.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3qfj.pdb.gz\n", "Downloading https://files.rcsb.org/download/3qq3.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3qq3.pdb.gz\n", "Downloading https://files.rcsb.org/download/3qq4.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3qq4.pdb.gz\n", "Downloading https://files.rcsb.org/download/3quk.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3quk.pdb.gz\n", "Downloading https://files.rcsb.org/download/3qul.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3qul.pdb.gz\n", "Downloading https://files.rcsb.org/download/3qzw.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3qzw.pdb.gz\n", "Downloading https://files.rcsb.org/download/3rew.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3rew.pdb.gz\n", "Downloading https://files.rcsb.org/download/3rgv.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3rgv.pdb.gz\n", "Downloading https://files.rcsb.org/download/3rl1.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3rl1.pdb.gz\n", "Downloading https://files.rcsb.org/download/3rl2.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3rl2.pdb.gz\n", "Downloading https://files.rcsb.org/download/3rol.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3rol.pdb.gz\n", "Downloading https://files.rcsb.org/download/3roo.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3roo.pdb.gz\n", "Downloading https://files.rcsb.org/download/3rwc.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3rwc.pdb.gz\n", "Downloading https://files.rcsb.org/download/3rwd.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3rwd.pdb.gz\n", "Downloading https://files.rcsb.org/download/3rwe.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3rwe.pdb.gz\n", "Downloading https://files.rcsb.org/download/3rwf.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3rwf.pdb.gz\n", "Downloading https://files.rcsb.org/download/3rwg.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3rwg.pdb.gz\n", "Downloading https://files.rcsb.org/download/3rwh.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3rwh.pdb.gz\n", "Downloading https://files.rcsb.org/download/3rwi.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3rwi.pdb.gz\n", "Downloading https://files.rcsb.org/download/3rwj.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3rwj.pdb.gz\n", "Downloading https://files.rcsb.org/download/3sjv.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3sjv.pdb.gz\n", "Downloading https://files.rcsb.org/download/3skm.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3skm.pdb.gz\n", "Downloading https://files.rcsb.org/download/3sko.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3sko.pdb.gz\n", "Downloading https://files.rcsb.org/download/3spv.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3spv.pdb.gz\n", "Downloading https://files.rcsb.org/download/3tbs.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3tbs.pdb.gz\n", "Downloading https://files.rcsb.org/download/3tbt.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3tbt.pdb.gz\n", "Downloading https://files.rcsb.org/download/3tbv.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3tbv.pdb.gz\n", "Downloading https://files.rcsb.org/download/3tbw.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3tbw.pdb.gz\n", "Downloading https://files.rcsb.org/download/3tby.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3tby.pdb.gz\n", "Downloading https://files.rcsb.org/download/3tid.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3tid.pdb.gz\n", "Downloading https://files.rcsb.org/download/3tie.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3tie.pdb.gz\n", "Downloading https://files.rcsb.org/download/3to2.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3to2.pdb.gz\n", "Downloading https://files.rcsb.org/download/3upr.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3upr.pdb.gz\n", "Downloading https://files.rcsb.org/download/3utq.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3utq.pdb.gz\n", "Downloading https://files.rcsb.org/download/3uts.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3uts.pdb.gz\n", "Downloading https://files.rcsb.org/download/3utt.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3utt.pdb.gz\n", "Downloading https://files.rcsb.org/download/3v5d.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3v5d.pdb.gz\n", "Downloading https://files.rcsb.org/download/3v5h.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3v5h.pdb.gz\n", "Downloading https://files.rcsb.org/download/3v5k.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3v5k.pdb.gz\n", "Downloading https://files.rcsb.org/download/3vcl.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3vcl.pdb.gz\n", "Downloading https://files.rcsb.org/download/3vfm.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3vfm.pdb.gz\n", "Downloading https://files.rcsb.org/download/3vfn.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3vfn.pdb.gz\n", "Downloading https://files.rcsb.org/download/3vfo.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3vfo.pdb.gz\n", "Downloading https://files.rcsb.org/download/3vfp.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3vfp.pdb.gz\n", "Downloading https://files.rcsb.org/download/3vfr.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3vfr.pdb.gz\n", "Downloading https://files.rcsb.org/download/3vfs.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3vfs.pdb.gz\n", "Downloading https://files.rcsb.org/download/3vft.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3vft.pdb.gz\n", "Downloading https://files.rcsb.org/download/3vfu.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3vfu.pdb.gz\n", "Downloading https://files.rcsb.org/download/3vfv.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3vfv.pdb.gz\n", "Downloading https://files.rcsb.org/download/3vfw.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3vfw.pdb.gz\n", "Downloading https://files.rcsb.org/download/3vh8.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3vh8.pdb.gz\n", "Downloading https://files.rcsb.org/download/3vj6.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3vj6.pdb.gz\n", "Downloading https://files.rcsb.org/download/3vri.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3vri.pdb.gz\n", "Downloading https://files.rcsb.org/download/3vrj.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3vrj.pdb.gz\n", "Downloading https://files.rcsb.org/download/3vxm.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3vxm.pdb.gz\n", "Downloading https://files.rcsb.org/download/3vxn.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3vxn.pdb.gz\n", "Downloading https://files.rcsb.org/download/3vxo.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3vxo.pdb.gz\n", "Downloading https://files.rcsb.org/download/3vxp.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3vxp.pdb.gz\n", "Downloading https://files.rcsb.org/download/3vxr.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3vxr.pdb.gz\n", "Downloading https://files.rcsb.org/download/3vxs.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3vxs.pdb.gz\n", "Downloading https://files.rcsb.org/download/3vxu.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3vxu.pdb.gz\n", "Downloading https://files.rcsb.org/download/3w0w.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3w0w.pdb.gz\n", "Downloading https://files.rcsb.org/download/3w39.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3w39.pdb.gz\n", "Downloading https://files.rcsb.org/download/3wl9.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3wl9.pdb.gz\n", "Downloading https://files.rcsb.org/download/3wlb.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3wlb.pdb.gz\n", "Downloading https://files.rcsb.org/download/3ws3.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3ws3.pdb.gz\n", "Downloading https://files.rcsb.org/download/3ws6.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3ws6.pdb.gz\n", "Downloading https://files.rcsb.org/download/3wuw.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3wuw.pdb.gz\n", "Downloading https://files.rcsb.org/download/3x11.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3x11.pdb.gz\n", "Downloading https://files.rcsb.org/download/3x12.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3x12.pdb.gz\n", "Downloading https://files.rcsb.org/download/3x13.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3x13.pdb.gz\n", "Downloading https://files.rcsb.org/download/3x14.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3x14.pdb.gz\n", "Downloading https://files.rcsb.org/download/4cvx.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4cvx.pdb.gz\n", "Downloading https://files.rcsb.org/download/4cvz.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4cvz.pdb.gz\n", "Downloading https://files.rcsb.org/download/4cw1.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4cw1.pdb.gz\n", "Downloading https://files.rcsb.org/download/4d0b.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4d0b.pdb.gz\n", "Downloading https://files.rcsb.org/download/4d0c.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4d0c.pdb.gz\n", "Downloading https://files.rcsb.org/download/4d0d.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4d0d.pdb.gz\n", "Downloading https://files.rcsb.org/download/4e0r.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4e0r.pdb.gz\n", "Downloading https://files.rcsb.org/download/4e5x.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4e5x.pdb.gz\n", "Downloading https://files.rcsb.org/download/4eup.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4eup.pdb.gz\n", "Downloading https://files.rcsb.org/download/4f7m.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4f7m.pdb.gz\n", "Downloading https://files.rcsb.org/download/4f7p.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4f7p.pdb.gz\n", "Downloading https://files.rcsb.org/download/4f7t.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4f7t.pdb.gz\n", "Downloading https://files.rcsb.org/download/4ftv.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4ftv.pdb.gz\n", "Downloading https://files.rcsb.org/download/4g42.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4g42.pdb.gz\n", "Downloading https://files.rcsb.org/download/4g43.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4g43.pdb.gz\n", "Downloading https://files.rcsb.org/download/4g8g.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4g8g.pdb.gz\n", "Downloading https://files.rcsb.org/download/4g8i.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4g8i.pdb.gz\n", "Downloading https://files.rcsb.org/download/4g9d.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4g9d.pdb.gz\n", "Downloading https://files.rcsb.org/download/4g9f.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4g9f.pdb.gz\n", "Downloading https://files.rcsb.org/download/4gkn.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4gkn.pdb.gz\n", "Downloading https://files.rcsb.org/download/4gks.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4gks.pdb.gz\n", "Downloading https://files.rcsb.org/download/4gup.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4gup.pdb.gz\n", "Downloading https://files.rcsb.org/download/4hkj.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4hkj.pdb.gz\n", "Downloading https://files.rcsb.org/download/4hs3.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4hs3.pdb.gz\n", "Downloading https://files.rcsb.org/download/4huu.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4huu.pdb.gz\n", "Downloading https://files.rcsb.org/download/4huv.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4huv.pdb.gz\n", "Downloading https://files.rcsb.org/download/4huw.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4huw.pdb.gz\n", "Downloading https://files.rcsb.org/download/4hux.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4hux.pdb.gz\n", "Downloading https://files.rcsb.org/download/4hv8.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4hv8.pdb.gz\n", "Downloading https://files.rcsb.org/download/4hwz.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4hwz.pdb.gz\n", "Downloading https://files.rcsb.org/download/4hx1.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4hx1.pdb.gz\n", "Downloading https://files.rcsb.org/download/4i48.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4i48.pdb.gz\n", "Downloading https://files.rcsb.org/download/4i4w.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4i4w.pdb.gz\n", "Downloading https://files.rcsb.org/download/4iho.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4iho.pdb.gz\n", "Downloading https://files.rcsb.org/download/4jfd.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4jfd.pdb.gz\n", "Downloading https://files.rcsb.org/download/4jfe.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4jfe.pdb.gz\n", "Downloading https://files.rcsb.org/download/4jff.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4jff.pdb.gz\n", "Downloading https://files.rcsb.org/download/4jfo.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4jfo.pdb.gz\n", "Downloading https://files.rcsb.org/download/4jfp.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4jfp.pdb.gz\n", "Downloading https://files.rcsb.org/download/4jfq.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4jfq.pdb.gz\n", "Downloading https://files.rcsb.org/download/4jqv.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4jqv.pdb.gz\n", "Downloading https://files.rcsb.org/download/4jqx.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4jqx.pdb.gz\n", "Downloading https://files.rcsb.org/download/4jrx.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4jrx.pdb.gz\n", "Downloading https://files.rcsb.org/download/4jry.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4jry.pdb.gz\n", "Downloading https://files.rcsb.org/download/4k7f.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4k7f.pdb.gz\n", "Downloading https://files.rcsb.org/download/4l29.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4l29.pdb.gz\n", "Downloading https://files.rcsb.org/download/4l3c.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4l3c.pdb.gz\n", "Downloading https://files.rcsb.org/download/4l3e.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4l3e.pdb.gz\n", "Downloading https://files.rcsb.org/download/4l4t.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4l4t.pdb.gz\n", "Downloading https://files.rcsb.org/download/4l4v.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4l4v.pdb.gz\n", "Downloading https://files.rcsb.org/download/4l8b.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4l8b.pdb.gz\n", "Downloading https://files.rcsb.org/download/4l8c.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4l8c.pdb.gz\n", "Downloading https://files.rcsb.org/download/4l8d.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4l8d.pdb.gz\n", "Downloading https://files.rcsb.org/download/4lcw.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4lcw.pdb.gz\n", "Downloading https://files.rcsb.org/download/4lcy.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4lcy.pdb.gz\n", "Downloading https://files.rcsb.org/download/4lnr.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4lnr.pdb.gz\n", "Downloading https://files.rcsb.org/download/4mj5.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4mj5.pdb.gz\n", "Downloading https://files.rcsb.org/download/4mj6.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4mj6.pdb.gz\n", "Downloading https://files.rcsb.org/download/4mji.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4mji.pdb.gz\n", "Downloading https://files.rcsb.org/download/4mnq.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4mnq.pdb.gz\n", "Downloading https://files.rcsb.org/download/4n0u.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4n0u.pdb.gz\n", "Downloading https://files.rcsb.org/download/4n8v.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4n8v.pdb.gz\n", "Downloading https://files.rcsb.org/download/4nnx.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4nnx.pdb.gz\n", "Downloading https://files.rcsb.org/download/4nny.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4nny.pdb.gz\n", "Downloading https://files.rcsb.org/download/4no0.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4no0.pdb.gz\n", "Downloading https://files.rcsb.org/download/4no2.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4no2.pdb.gz\n", "Downloading https://files.rcsb.org/download/4no3.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4no3.pdb.gz\n", "Downloading https://files.rcsb.org/download/4nqc.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4nqc.pdb.gz\n", "Downloading https://files.rcsb.org/download/4nqd.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4nqd.pdb.gz\n", "Downloading https://files.rcsb.org/download/4nqe.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4nqe.pdb.gz\n", "Downloading https://files.rcsb.org/download/4nqv.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4nqv.pdb.gz\n", "Downloading https://files.rcsb.org/download/4nqx.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4nqx.pdb.gz\n", "Downloading https://files.rcsb.org/download/4nsk.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4nsk.pdb.gz\n", "Downloading https://files.rcsb.org/download/4nt6.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4nt6.pdb.gz\n", "Downloading https://files.rcsb.org/download/4o2c.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4o2c.pdb.gz\n", "Downloading https://files.rcsb.org/download/4o2e.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4o2e.pdb.gz\n", "Downloading https://files.rcsb.org/download/4o2f.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4o2f.pdb.gz\n", "Downloading https://files.rcsb.org/download/4pg2.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4pg2.pdb.gz\n", "Downloading https://files.rcsb.org/download/4pgb.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4pgb.pdb.gz\n", "Downloading https://files.rcsb.org/download/4pgc.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4pgc.pdb.gz\n", "Downloading https://files.rcsb.org/download/4pj5.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4pj5.pdb.gz\n", "Downloading https://files.rcsb.org/download/4pj7.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4pj7.pdb.gz\n", "Downloading https://files.rcsb.org/download/4pj8.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4pj8.pdb.gz\n", "Downloading https://files.rcsb.org/download/4pj9.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4pj9.pdb.gz\n", "Downloading https://files.rcsb.org/download/4pja.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4pja.pdb.gz\n", "Downloading https://files.rcsb.org/download/4pjb.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4pjb.pdb.gz\n", "Downloading https://files.rcsb.org/download/4pjc.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4pjc.pdb.gz\n", "Downloading https://files.rcsb.org/download/4pjd.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4pjd.pdb.gz\n", "Downloading https://files.rcsb.org/download/4pje.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4pje.pdb.gz\n", "Downloading https://files.rcsb.org/download/4pjf.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4pjf.pdb.gz\n", "Downloading https://files.rcsb.org/download/4pjg.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4pjg.pdb.gz\n", "Downloading https://files.rcsb.org/download/4pjh.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4pjh.pdb.gz\n", "Downloading https://files.rcsb.org/download/4pji.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4pji.pdb.gz\n", "Downloading https://files.rcsb.org/download/4pjx.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4pjx.pdb.gz\n", "Downloading https://files.rcsb.org/download/4pr5.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4pr5.pdb.gz\n", "Downloading https://files.rcsb.org/download/4pra.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4pra.pdb.gz\n", "Downloading https://files.rcsb.org/download/4prb.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4prb.pdb.gz\n", "Downloading https://files.rcsb.org/download/4prd.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4prd.pdb.gz\n", "Downloading https://files.rcsb.org/download/4pre.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4pre.pdb.gz\n", "Downloading https://files.rcsb.org/download/4pri.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4pri.pdb.gz\n", "Downloading https://files.rcsb.org/download/4prn.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4prn.pdb.gz\n", "Downloading https://files.rcsb.org/download/4prp.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4prp.pdb.gz\n", "Downloading https://files.rcsb.org/download/4qok.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4qok.pdb.gz\n", "Downloading https://files.rcsb.org/download/4qrp.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4qrp.pdb.gz\n", "Downloading https://files.rcsb.org/download/4qrq.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4qrq.pdb.gz\n", "Downloading https://files.rcsb.org/download/4qrr.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4qrr.pdb.gz\n", "Downloading https://files.rcsb.org/download/4qrs.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4qrs.pdb.gz\n", "Downloading https://files.rcsb.org/download/4qrt.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4qrt.pdb.gz\n", "Downloading https://files.rcsb.org/download/4qru.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4qru.pdb.gz\n", "Downloading https://files.rcsb.org/download/4u1h.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4u1h.pdb.gz\n", "Downloading https://files.rcsb.org/download/4u1i.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4u1i.pdb.gz\n", "Downloading https://files.rcsb.org/download/4u1j.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4u1j.pdb.gz\n", "Downloading https://files.rcsb.org/download/4u1k.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4u1k.pdb.gz\n", "Downloading https://files.rcsb.org/download/4u1l.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4u1l.pdb.gz\n", "Downloading https://files.rcsb.org/download/4u1m.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4u1m.pdb.gz\n", "Downloading https://files.rcsb.org/download/4u1n.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4u1n.pdb.gz\n", "Downloading https://files.rcsb.org/download/4u1s.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4u1s.pdb.gz\n", "Downloading https://files.rcsb.org/download/4u6x.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4u6x.pdb.gz\n", "Downloading https://files.rcsb.org/download/4u6y.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4u6y.pdb.gz\n", "Downloading https://files.rcsb.org/download/4uq2.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4uq2.pdb.gz\n", "Downloading https://files.rcsb.org/download/4uq3.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4uq3.pdb.gz\n", "Downloading https://files.rcsb.org/download/4wdi.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4wdi.pdb.gz\n", "Downloading https://files.rcsb.org/download/4wj5.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4wj5.pdb.gz\n", "Downloading https://files.rcsb.org/download/4wu5.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4wu5.pdb.gz\n", "Downloading https://files.rcsb.org/download/4wu7.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4wu7.pdb.gz\n", "Downloading https://files.rcsb.org/download/4wuu.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4wuu.pdb.gz\n", "Downloading https://files.rcsb.org/download/4xxc.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4xxc.pdb.gz\n", "Downloading https://files.rcsb.org/download/4z76.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4z76.pdb.gz\n", "Downloading https://files.rcsb.org/download/4z77.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4z77.pdb.gz\n", "Downloading https://files.rcsb.org/download/4z78.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4z78.pdb.gz\n", "Downloading https://files.rcsb.org/download/4zfz.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4zfz.pdb.gz\n", "Downloading https://files.rcsb.org/download/4zus.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4zus.pdb.gz\n", "Downloading https://files.rcsb.org/download/4zut.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4zut.pdb.gz\n", "Downloading https://files.rcsb.org/download/4zuu.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4zuu.pdb.gz\n", "Downloading https://files.rcsb.org/download/4zuv.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4zuv.pdb.gz\n", "Downloading https://files.rcsb.org/download/4zuw.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4zuw.pdb.gz\n", "Downloading https://files.rcsb.org/download/5acz.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5acz.pdb.gz\n", "Downloading https://files.rcsb.org/download/5ad0.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5ad0.pdb.gz\n", "Downloading https://files.rcsb.org/download/5b38.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5b38.pdb.gz\n", "Downloading https://files.rcsb.org/download/5b39.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5b39.pdb.gz\n", "Downloading https://files.rcsb.org/download/5bjt.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5bjt.pdb.gz\n", "Downloading https://files.rcsb.org/download/5brz.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5brz.pdb.gz\n", "Downloading https://files.rcsb.org/download/5bs0.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5bs0.pdb.gz\n", "Downloading https://files.rcsb.org/download/5bxf.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5bxf.pdb.gz\n", "Downloading https://files.rcsb.org/download/5c07.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5c07.pdb.gz\n", "Downloading https://files.rcsb.org/download/5c08.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5c08.pdb.gz\n", "Downloading https://files.rcsb.org/download/5c09.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5c09.pdb.gz\n", "Downloading https://files.rcsb.org/download/5c0a.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5c0a.pdb.gz\n", "Downloading https://files.rcsb.org/download/5c0b.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5c0b.pdb.gz\n", "Downloading https://files.rcsb.org/download/5c0c.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5c0c.pdb.gz\n", "Downloading https://files.rcsb.org/download/5c0d.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5c0d.pdb.gz\n", "Downloading https://files.rcsb.org/download/5c0e.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5c0e.pdb.gz\n", "Downloading https://files.rcsb.org/download/5c0f.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5c0f.pdb.gz\n", "Downloading https://files.rcsb.org/download/5c0g.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5c0g.pdb.gz\n", "Downloading https://files.rcsb.org/download/5c0i.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5c0i.pdb.gz\n", "Downloading https://files.rcsb.org/download/5c0j.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5c0j.pdb.gz\n", "Downloading https://files.rcsb.org/download/5d2l.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5d2l.pdb.gz\n", "Downloading https://files.rcsb.org/download/5d2n.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5d2n.pdb.gz\n", "Downloading https://files.rcsb.org/download/5d5m.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5d5m.pdb.gz\n", "Downloading https://files.rcsb.org/download/5d7i.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5d7i.pdb.gz\n", "Downloading https://files.rcsb.org/download/5d7j.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5d7j.pdb.gz\n", "Downloading https://files.rcsb.org/download/5d7l.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5d7l.pdb.gz\n", "Downloading https://files.rcsb.org/download/5d9s.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5d9s.pdb.gz\n", "Downloading https://files.rcsb.org/download/5ddh.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5ddh.pdb.gz\n", "Downloading https://files.rcsb.org/download/5def.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5def.pdb.gz\n", "Downloading https://files.rcsb.org/download/5deg.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5deg.pdb.gz\n", "Downloading https://files.rcsb.org/download/5e00.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5e00.pdb.gz\n", "Downloading https://files.rcsb.org/download/5e6i.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5e6i.pdb.gz\n", "Downloading https://files.rcsb.org/download/5e8n.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5e8n.pdb.gz\n", "Downloading https://files.rcsb.org/download/5e8o.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5e8o.pdb.gz\n", "Downloading https://files.rcsb.org/download/5e8p.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5e8p.pdb.gz\n", "Downloading https://files.rcsb.org/download/5e9d.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5e9d.pdb.gz\n", "Downloading https://files.rcsb.org/download/5enw.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5enw.pdb.gz\n", "Downloading https://files.rcsb.org/download/5eo0.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5eo0.pdb.gz\n", "Downloading https://files.rcsb.org/download/5eo1.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5eo1.pdb.gz\n", "Downloading https://files.rcsb.org/download/5eot.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5eot.pdb.gz\n", "Downloading https://files.rcsb.org/download/5eu3.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5eu3.pdb.gz\n", "Downloading https://files.rcsb.org/download/5eu4.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5eu4.pdb.gz\n", "Downloading https://files.rcsb.org/download/5eu5.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5eu5.pdb.gz\n", "Downloading https://files.rcsb.org/download/5eu6.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5eu6.pdb.gz\n", "Downloading https://files.rcsb.org/download/5euo.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5euo.pdb.gz\n", "Downloading https://files.rcsb.org/download/5f1i.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5f1i.pdb.gz\n", "Downloading https://files.rcsb.org/download/5f1n.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5f1n.pdb.gz\n", "Downloading https://files.rcsb.org/download/5f7d.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5f7d.pdb.gz\n", "Downloading https://files.rcsb.org/download/5f9j.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5f9j.pdb.gz\n", "Downloading https://files.rcsb.org/download/5fa3.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5fa3.pdb.gz\n", "Downloading https://files.rcsb.org/download/5fa4.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5fa4.pdb.gz\n", "Downloading https://files.rcsb.org/download/5fdw.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5fdw.pdb.gz\n", "Downloading https://files.rcsb.org/download/5gjx.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5gjx.pdb.gz\n", "Downloading https://files.rcsb.org/download/5gjy.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5gjy.pdb.gz\n", "Downloading https://files.rcsb.org/download/5gr7.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5gr7.pdb.gz\n", "Downloading https://files.rcsb.org/download/5grd.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5grd.pdb.gz\n", "Downloading https://files.rcsb.org/download/5grg.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5grg.pdb.gz\n", "Downloading https://files.rcsb.org/download/5gsb.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5gsb.pdb.gz\n", "Downloading https://files.rcsb.org/download/5gsd.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5gsd.pdb.gz\n", "Downloading https://files.rcsb.org/download/5gsr.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5gsr.pdb.gz\n", "Downloading https://files.rcsb.org/download/5gsv.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5gsv.pdb.gz\n", "Downloading https://files.rcsb.org/download/5gsx.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5gsx.pdb.gz\n", "Downloading https://files.rcsb.org/download/5h5z.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5h5z.pdb.gz\n", "Downloading https://files.rcsb.org/download/5h94.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5h94.pdb.gz\n", "Downloading https://files.rcsb.org/download/5hga.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5hga.pdb.gz\n", "Downloading https://files.rcsb.org/download/5hgb.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5hgb.pdb.gz\n", "Downloading https://files.rcsb.org/download/5hgd.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5hgd.pdb.gz\n", "Downloading https://files.rcsb.org/download/5hgh.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5hgh.pdb.gz\n", "Downloading https://files.rcsb.org/download/5hhm.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5hhm.pdb.gz\n", "Downloading https://files.rcsb.org/download/5hhn.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5hhn.pdb.gz\n", "Downloading https://files.rcsb.org/download/5hho.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5hho.pdb.gz\n", "Downloading https://files.rcsb.org/download/5hhp.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5hhp.pdb.gz\n", "Downloading https://files.rcsb.org/download/5hhq.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5hhq.pdb.gz\n", "Downloading https://files.rcsb.org/download/5hyj.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5hyj.pdb.gz\n", "Downloading https://files.rcsb.org/download/5ib1.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5ib1.pdb.gz\n", "Downloading https://files.rcsb.org/download/5ib2.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5ib2.pdb.gz\n", "Downloading https://files.rcsb.org/download/5ib3.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5ib3.pdb.gz\n", "Downloading https://files.rcsb.org/download/5ib4.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5ib4.pdb.gz\n", "Downloading https://files.rcsb.org/download/5ib5.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5ib5.pdb.gz\n", "Downloading https://files.rcsb.org/download/5ieh.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5ieh.pdb.gz\n", "Downloading https://files.rcsb.org/download/5iek.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5iek.pdb.gz\n", "Downloading https://files.rcsb.org/download/5im7.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5im7.pdb.gz\n", "Downloading https://files.rcsb.org/download/5inc.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5inc.pdb.gz\n", "Downloading https://files.rcsb.org/download/5ind.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5ind.pdb.gz\n", "Downloading https://files.rcsb.org/download/5iro.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5iro.pdb.gz\n", "Downloading https://files.rcsb.org/download/5isz.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5isz.pdb.gz\n", "Downloading https://files.rcsb.org/download/5iue.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5iue.pdb.gz\n", "Downloading https://files.rcsb.org/download/5ivx.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5ivx.pdb.gz\n", "Downloading https://files.rcsb.org/download/5j6g.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5j6g.pdb.gz\n", "Downloading https://files.rcsb.org/download/5j6h.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5j6h.pdb.gz\n", "Downloading https://files.rcsb.org/download/5jhd.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5jhd.pdb.gz\n", "Downloading https://files.rcsb.org/download/5jwd.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5jwd.pdb.gz\n", "Downloading https://files.rcsb.org/download/5jwe.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5jwe.pdb.gz\n", "Downloading https://files.rcsb.org/download/5jzi.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5jzi.pdb.gz\n", "Downloading https://files.rcsb.org/download/5kd4.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5kd4.pdb.gz\n", "Downloading https://files.rcsb.org/download/5kd7.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5kd7.pdb.gz\n", "Downloading https://files.rcsb.org/download/5knm.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5knm.pdb.gz\n", "Downloading https://files.rcsb.org/download/5m00.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5m00.pdb.gz\n", "Downloading https://files.rcsb.org/download/5m01.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5m01.pdb.gz\n", "Downloading https://files.rcsb.org/download/5m02.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5m02.pdb.gz\n", "Downloading https://files.rcsb.org/download/5men.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5men.pdb.gz\n", "Downloading https://files.rcsb.org/download/5meo.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5meo.pdb.gz\n", "Downloading https://files.rcsb.org/download/5mep.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5mep.pdb.gz\n", "Downloading https://files.rcsb.org/download/5meq.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5meq.pdb.gz\n", "Downloading https://files.rcsb.org/download/5mer.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5mer.pdb.gz\n", "Downloading https://files.rcsb.org/download/5mzm.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5mzm.pdb.gz\n", "Downloading https://files.rcsb.org/download/5n1y.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5n1y.pdb.gz\n", "Downloading https://files.rcsb.org/download/5n6b.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5n6b.pdb.gz\n", "Downloading https://files.rcsb.org/download/5nht.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5nht.pdb.gz\n", "Downloading https://files.rcsb.org/download/5nme.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5nme.pdb.gz\n", "Downloading https://files.rcsb.org/download/5nmf.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5nmf.pdb.gz\n", "Downloading https://files.rcsb.org/download/5nmg.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5nmg.pdb.gz\n", "Downloading https://files.rcsb.org/download/5nmh.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5nmh.pdb.gz\n", "Downloading https://files.rcsb.org/download/5nmk.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5nmk.pdb.gz\n", "Downloading https://files.rcsb.org/download/5npz.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5npz.pdb.gz\n", "Downloading https://files.rcsb.org/download/5nq0.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5nq0.pdb.gz\n", "Downloading https://files.rcsb.org/download/5nq1.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5nq1.pdb.gz\n", "Downloading https://files.rcsb.org/download/5nq2.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5nq2.pdb.gz\n", "Downloading https://files.rcsb.org/download/5nq3.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5nq3.pdb.gz\n", "Downloading https://files.rcsb.org/download/5nqk.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5nqk.pdb.gz\n", "Downloading https://files.rcsb.org/download/5opi.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5opi.pdb.gz\n", "Downloading https://files.rcsb.org/download/5swq.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5swq.pdb.gz\n", "Downloading https://files.rcsb.org/download/5sws.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5sws.pdb.gz\n", "Downloading https://files.rcsb.org/download/5swz.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5swz.pdb.gz\n", "Downloading https://files.rcsb.org/download/5t6w.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5t6w.pdb.gz\n", "Downloading https://files.rcsb.org/download/5t6x.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5t6x.pdb.gz\n", "Downloading https://files.rcsb.org/download/5t6y.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5t6y.pdb.gz\n", "Downloading https://files.rcsb.org/download/5t6z.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5t6z.pdb.gz\n", "Downloading https://files.rcsb.org/download/5t70.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5t70.pdb.gz\n", "Downloading https://files.rcsb.org/download/5t7g.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5t7g.pdb.gz\n", "Downloading https://files.rcsb.org/download/5tez.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5tez.pdb.gz\n", "Downloading https://files.rcsb.org/download/5til.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5til.pdb.gz\n", "Downloading https://files.rcsb.org/download/5tje.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5tje.pdb.gz\n", "Downloading https://files.rcsb.org/download/5trz.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5trz.pdb.gz\n", "Downloading https://files.rcsb.org/download/5ts1.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5ts1.pdb.gz\n", "Downloading https://files.rcsb.org/download/5txs.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5txs.pdb.gz\n", "Downloading https://files.rcsb.org/download/5u16.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5u16.pdb.gz\n", "Downloading https://files.rcsb.org/download/5u17.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5u17.pdb.gz\n", "Downloading https://files.rcsb.org/download/5u1r.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5u1r.pdb.gz\n", "Downloading https://files.rcsb.org/download/5u2v.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5u2v.pdb.gz\n", "Downloading https://files.rcsb.org/download/5u6q.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5u6q.pdb.gz\n", "Downloading https://files.rcsb.org/download/5u72.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5u72.pdb.gz\n", "Downloading https://files.rcsb.org/download/5u98.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5u98.pdb.gz\n", "Downloading https://files.rcsb.org/download/5v5l.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5v5l.pdb.gz\n", "Downloading https://files.rcsb.org/download/5v5m.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5v5m.pdb.gz\n", "Downloading https://files.rcsb.org/download/5vcl.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5vcl.pdb.gz\n", "Downloading https://files.rcsb.org/download/5vgd.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5vgd.pdb.gz\n", "Downloading https://files.rcsb.org/download/5vge.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5vge.pdb.gz\n", "Downloading https://files.rcsb.org/download/5vud.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5vud.pdb.gz\n", "Downloading https://files.rcsb.org/download/5vue.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5vue.pdb.gz\n", "Downloading https://files.rcsb.org/download/5vuf.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5vuf.pdb.gz\n", "Downloading https://files.rcsb.org/download/5vvp.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5vvp.pdb.gz\n", "Downloading https://files.rcsb.org/download/5vwd.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5vwd.pdb.gz\n", "Downloading https://files.rcsb.org/download/5vwf.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5vwf.pdb.gz\n", "Downloading https://files.rcsb.org/download/5vwh.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5vwh.pdb.gz\n", "Downloading https://files.rcsb.org/download/5vwj.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5vwj.pdb.gz\n", "Downloading https://files.rcsb.org/download/5vz5.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5vz5.pdb.gz\n", "Downloading https://files.rcsb.org/download/5w1v.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5w1v.pdb.gz\n", "Downloading https://files.rcsb.org/download/5w1w.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5w1w.pdb.gz\n", "Downloading https://files.rcsb.org/download/5w67.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5w67.pdb.gz\n", "Downloading https://files.rcsb.org/download/5w69.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5w69.pdb.gz\n", "Downloading https://files.rcsb.org/download/5w6a.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5w6a.pdb.gz\n", "Downloading https://files.rcsb.org/download/5wer.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5wer.pdb.gz\n", "Downloading https://files.rcsb.org/download/5wes.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5wes.pdb.gz\n", "Downloading https://files.rcsb.org/download/5wet.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5wet.pdb.gz\n", "Downloading https://files.rcsb.org/download/5weu.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5weu.pdb.gz\n", "Downloading https://files.rcsb.org/download/5wjl.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5wjl.pdb.gz\n", "Downloading https://files.rcsb.org/download/5wjn.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5wjn.pdb.gz\n", "Downloading https://files.rcsb.org/download/5wkf.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5wkf.pdb.gz\n", "Downloading https://files.rcsb.org/download/5wkh.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5wkh.pdb.gz\n", "Downloading https://files.rcsb.org/download/5wlg.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5wlg.pdb.gz\n", "Downloading https://files.rcsb.org/download/5wli.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5wli.pdb.gz\n", "Downloading https://files.rcsb.org/download/5wmn.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5wmn.pdb.gz\n", "Downloading https://files.rcsb.org/download/5wmo.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5wmo.pdb.gz\n", "Downloading https://files.rcsb.org/download/5wmp.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5wmp.pdb.gz\n", "Downloading https://files.rcsb.org/download/5wmq.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5wmq.pdb.gz\n", "Downloading https://files.rcsb.org/download/5wmr.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5wmr.pdb.gz\n", "Downloading https://files.rcsb.org/download/5wsh.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5wsh.pdb.gz\n", "Downloading https://files.rcsb.org/download/5wwi.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5wwi.pdb.gz\n", "Downloading https://files.rcsb.org/download/5wwj.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5wwj.pdb.gz\n", "Downloading https://files.rcsb.org/download/5wwu.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5wwu.pdb.gz\n", "Downloading https://files.rcsb.org/download/5wxc.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5wxc.pdb.gz\n", "Downloading https://files.rcsb.org/download/5wxd.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5wxd.pdb.gz\n", "Downloading https://files.rcsb.org/download/5xmf.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5xmf.pdb.gz\n", "Downloading https://files.rcsb.org/download/5xmm.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5xmm.pdb.gz\n", "Downloading https://files.rcsb.org/download/5xos.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5xos.pdb.gz\n", "Downloading https://files.rcsb.org/download/5xot.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5xot.pdb.gz\n", "Downloading https://files.rcsb.org/download/5xov.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5xov.pdb.gz\n", "Downloading https://files.rcsb.org/download/5xs3.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5xs3.pdb.gz\n", "Downloading https://files.rcsb.org/download/5y91.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5y91.pdb.gz\n", "Downloading https://files.rcsb.org/download/5ylx.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5ylx.pdb.gz\n", "Downloading https://files.rcsb.org/download/5ymv.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5ymv.pdb.gz\n", "Downloading https://files.rcsb.org/download/5ymw.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5ymw.pdb.gz\n", "Downloading https://files.rcsb.org/download/5yxn.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5yxn.pdb.gz\n", "Downloading https://files.rcsb.org/download/5yxu.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5yxu.pdb.gz\n", "Downloading https://files.rcsb.org/download/6a2b.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6a2b.pdb.gz\n", "Downloading https://files.rcsb.org/download/6a6h.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6a6h.pdb.gz\n", "Downloading https://files.rcsb.org/download/6a97.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6a97.pdb.gz\n", "Downloading https://files.rcsb.org/download/6aee.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6aee.pdb.gz\n", "Downloading https://files.rcsb.org/download/6am5.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6am5.pdb.gz\n", "Downloading https://files.rcsb.org/download/6amt.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6amt.pdb.gz\n", "Downloading https://files.rcsb.org/download/6amu.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6amu.pdb.gz\n", "Downloading https://files.rcsb.org/download/6at9.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6at9.pdb.gz\n", "Downloading https://files.rcsb.org/download/6bj2.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6bj2.pdb.gz\n", "Downloading https://files.rcsb.org/download/6bj3.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6bj3.pdb.gz\n", "Downloading https://files.rcsb.org/download/6bj8.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6bj8.pdb.gz\n", "Downloading https://files.rcsb.org/download/6bxp.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6bxp.pdb.gz\n", "Downloading https://files.rcsb.org/download/6bxq.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6bxq.pdb.gz\n", "Downloading https://files.rcsb.org/download/6d29.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6d29.pdb.gz\n", "Downloading https://files.rcsb.org/download/6d2b.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6d2b.pdb.gz\n", "Downloading https://files.rcsb.org/download/6d2r.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6d2r.pdb.gz\n", "Downloading https://files.rcsb.org/download/6d2t.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6d2t.pdb.gz\n", "Downloading https://files.rcsb.org/download/6d78.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6d78.pdb.gz\n", "Downloading https://files.rcsb.org/download/6dkp.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6dkp.pdb.gz\n", "Downloading https://files.rcsb.org/download/6ei2.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6ei2.pdb.gz\n", "Downloading https://files.rcsb.org/download/6eqa.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6eqa.pdb.gz\n", "Downloading https://files.rcsb.org/download/6eqb.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6eqb.pdb.gz\n", "Downloading https://files.rcsb.org/download/6ewa.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6ewa.pdb.gz\n", "Downloading https://files.rcsb.org/download/6ewc.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6ewc.pdb.gz\n", "Downloading https://files.rcsb.org/download/6ewo.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6ewo.pdb.gz\n", "Downloading https://files.rcsb.org/download/6g3j.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6g3j.pdb.gz\n", "Downloading https://files.rcsb.org/download/6g3k.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6g3k.pdb.gz\n", "Downloading https://files.rcsb.org/download/6g9q.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6g9q.pdb.gz\n", "Downloading https://files.rcsb.org/download/6g9r.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6g9r.pdb.gz\n", "Downloading https://files.rcsb.org/download/6gb6.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6gb6.pdb.gz\n", "Downloading https://files.rcsb.org/download/6ggm.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6ggm.pdb.gz\n", "Downloading https://files.rcsb.org/download/6gh1.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6gh1.pdb.gz\n", "Downloading https://files.rcsb.org/download/6gh4.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6gh4.pdb.gz\n", "Downloading https://files.rcsb.org/download/6ghn.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6ghn.pdb.gz\n", "Downloading https://files.rcsb.org/download/6gl1.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6gl1.pdb.gz\n", "Downloading https://files.rcsb.org/download/6id4.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6id4.pdb.gz\n", "Downloading https://files.rcsb.org/download/6iex.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6iex.pdb.gz\n", "Downloading https://files.rcsb.org/download/6ilc.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6ilc.pdb.gz\n", "Downloading https://files.rcsb.org/download/6ile.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6ile.pdb.gz\n", "Downloading https://files.rcsb.org/download/6ilf.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6ilf.pdb.gz\n", "Downloading https://files.rcsb.org/download/6ilg.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6ilg.pdb.gz\n", "Downloading https://files.rcsb.org/download/6ilm.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6ilm.pdb.gz\n", "Downloading https://files.rcsb.org/download/6irl.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6irl.pdb.gz\n", "Downloading https://files.rcsb.org/download/6iwg.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6iwg.pdb.gz\n", "Downloading https://files.rcsb.org/download/6iwh.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6iwh.pdb.gz\n", "Downloading https://files.rcsb.org/download/6j1v.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6j1v.pdb.gz\n", "Downloading https://files.rcsb.org/download/6j1w.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6j1w.pdb.gz\n", "Downloading https://files.rcsb.org/download/6j29.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6j29.pdb.gz\n", "Downloading https://files.rcsb.org/download/6j2a.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6j2a.pdb.gz\n", "Downloading https://files.rcsb.org/download/6j2d.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6j2d.pdb.gz\n", "Downloading https://files.rcsb.org/download/6j2e.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6j2e.pdb.gz\n", "Downloading https://files.rcsb.org/download/6j2f.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6j2f.pdb.gz\n", "Downloading https://files.rcsb.org/download/6j2g.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6j2g.pdb.gz\n", "Downloading https://files.rcsb.org/download/6j2h.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6j2h.pdb.gz\n", "Downloading https://files.rcsb.org/download/6j2i.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6j2i.pdb.gz\n", "Downloading https://files.rcsb.org/download/6j2j.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6j2j.pdb.gz\n", "Downloading https://files.rcsb.org/download/6joz.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6joz.pdb.gz\n", "Downloading https://files.rcsb.org/download/6jp3.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6jp3.pdb.gz\n", "Downloading https://files.rcsb.org/download/6jq2.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6jq2.pdb.gz\n", "Downloading https://files.rcsb.org/download/6jq3.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6jq3.pdb.gz\n", "Downloading https://files.rcsb.org/download/6jtn.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6jtn.pdb.gz\n", "Downloading https://files.rcsb.org/download/6jto.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6jto.pdb.gz\n", "Downloading https://files.rcsb.org/download/6jtp.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6jtp.pdb.gz\n", "Downloading https://files.rcsb.org/download/6k60.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6k60.pdb.gz\n", "Downloading https://files.rcsb.org/download/6k7t.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6k7t.pdb.gz\n", "Downloading https://files.rcsb.org/download/6kwk.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6kwk.pdb.gz\n", "Downloading https://files.rcsb.org/download/6kwl.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6kwl.pdb.gz\n", "Downloading https://files.rcsb.org/download/6kwo.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6kwo.pdb.gz\n", "Downloading https://files.rcsb.org/download/6kyu.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6kyu.pdb.gz\n", "Downloading https://files.rcsb.org/download/6l9m.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6l9m.pdb.gz\n", "Downloading https://files.rcsb.org/download/6l9n.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6l9n.pdb.gz\n", "Downloading https://files.rcsb.org/download/6la6.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6la6.pdb.gz\n", "Downloading https://files.rcsb.org/download/6la7.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6la7.pdb.gz\n", "Downloading https://files.rcsb.org/download/6lah.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6lah.pdb.gz\n", "Downloading https://files.rcsb.org/download/6lam.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6lam.pdb.gz\n", "Downloading https://files.rcsb.org/download/6lb2.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6lb2.pdb.gz\n", "Downloading https://files.rcsb.org/download/6lbe.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6lbe.pdb.gz\n", "Downloading https://files.rcsb.org/download/6lf8.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6lf8.pdb.gz\n", "Downloading https://files.rcsb.org/download/6lf9.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6lf9.pdb.gz\n", "Downloading https://files.rcsb.org/download/6lhf.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6lhf.pdb.gz\n", "Downloading https://files.rcsb.org/download/6lhh.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6lhh.pdb.gz\n", "Downloading https://files.rcsb.org/download/6lt6.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6lt6.pdb.gz\n", "Downloading https://files.rcsb.org/download/6lup.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6lup.pdb.gz\n", "Downloading https://files.rcsb.org/download/6m24.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6m24.pdb.gz\n", "Downloading https://files.rcsb.org/download/6m2j.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6m2j.pdb.gz\n", "Downloading https://files.rcsb.org/download/6m2k.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6m2k.pdb.gz\n", "Downloading https://files.rcsb.org/download/6mpp.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6mpp.pdb.gz\n", "Downloading https://files.rcsb.org/download/6mt3.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6mt3.pdb.gz\n", "Downloading https://files.rcsb.org/download/6mt4.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6mt4.pdb.gz\n", "Downloading https://files.rcsb.org/download/6mt5.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6mt5.pdb.gz\n", "Downloading https://files.rcsb.org/download/6mt6.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6mt6.pdb.gz\n", "Downloading https://files.rcsb.org/download/6mtl.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6mtl.pdb.gz\n", "Downloading https://files.rcsb.org/download/6mtm.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6mtm.pdb.gz\n", "Downloading https://files.rcsb.org/download/6mwr.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6mwr.pdb.gz\n", "Downloading https://files.rcsb.org/download/6nca.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6nca.pdb.gz\n", "Downloading https://files.rcsb.org/download/6nf7.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6nf7.pdb.gz\n", "Downloading https://files.rcsb.org/download/6npr.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6npr.pdb.gz\n", "Downloading https://files.rcsb.org/download/6o4y.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6o4y.pdb.gz\n", "Downloading https://files.rcsb.org/download/6o4z.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6o4z.pdb.gz\n", "Downloading https://files.rcsb.org/download/6o51.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6o51.pdb.gz\n", "Downloading https://files.rcsb.org/download/6o53.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6o53.pdb.gz\n", "Downloading https://files.rcsb.org/download/6o9b.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6o9b.pdb.gz\n", "Downloading https://files.rcsb.org/download/6o9c.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6o9c.pdb.gz\n", "Downloading https://files.rcsb.org/download/6opd.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6opd.pdb.gz\n", "Downloading https://files.rcsb.org/download/6p23.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6p23.pdb.gz\n", "Downloading https://files.rcsb.org/download/6p27.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6p27.pdb.gz\n", "Downloading https://files.rcsb.org/download/6p2c.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6p2c.pdb.gz\n", "Downloading https://files.rcsb.org/download/6p2f.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6p2f.pdb.gz\n", "Downloading https://files.rcsb.org/download/6p2s.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6p2s.pdb.gz\n", "Downloading https://files.rcsb.org/download/6p64.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6p64.pdb.gz\n", "Downloading https://files.rcsb.org/download/6pbh.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6pbh.pdb.gz\n", "Downloading https://files.rcsb.org/download/6ptb.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6ptb.pdb.gz\n", "Downloading https://files.rcsb.org/download/6pte.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6pte.pdb.gz\n", "Downloading https://files.rcsb.org/download/6puc.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6puc.pdb.gz\n", "Downloading https://files.rcsb.org/download/6pud.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6pud.pdb.gz\n", "Downloading https://files.rcsb.org/download/6pue.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6pue.pdb.gz\n", "Downloading https://files.rcsb.org/download/6puf.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6puf.pdb.gz\n", "Downloading https://files.rcsb.org/download/6pug.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6pug.pdb.gz\n", "Downloading https://files.rcsb.org/download/6puh.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6puh.pdb.gz\n", "Downloading https://files.rcsb.org/download/6pui.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6pui.pdb.gz\n", "Downloading https://files.rcsb.org/download/6puj.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6puj.pdb.gz\n", "Downloading https://files.rcsb.org/download/6puk.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6puk.pdb.gz\n", "Downloading https://files.rcsb.org/download/6pul.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6pul.pdb.gz\n", "Downloading https://files.rcsb.org/download/6pum.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6pum.pdb.gz\n", "Downloading https://files.rcsb.org/download/6pvc.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6pvc.pdb.gz\n", "Downloading https://files.rcsb.org/download/6pvd.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6pvd.pdb.gz\n", "Downloading https://files.rcsb.org/download/6pyj.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6pyj.pdb.gz\n", "Downloading https://files.rcsb.org/download/6pyl.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6pyl.pdb.gz\n", "Downloading https://files.rcsb.org/download/6pyv.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6pyv.pdb.gz\n", "Downloading https://files.rcsb.org/download/6pyw.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6pyw.pdb.gz\n", "Downloading https://files.rcsb.org/download/6pz5.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6pz5.pdb.gz\n", "Downloading https://files.rcsb.org/download/6q3k.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6q3k.pdb.gz\n", "Downloading https://files.rcsb.org/download/6q3s.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6q3s.pdb.gz\n", "Downloading https://files.rcsb.org/download/6r2l.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6r2l.pdb.gz\n", "Downloading https://files.rcsb.org/download/6rp9.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6rp9.pdb.gz\n", "Downloading https://files.rcsb.org/download/6rpa.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6rpa.pdb.gz\n", "Downloading https://files.rcsb.org/download/6rpb.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6rpb.pdb.gz\n", "Downloading https://files.rcsb.org/download/6rsy.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6rsy.pdb.gz\n", "Downloading https://files.rcsb.org/download/6ss7.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6ss7.pdb.gz\n", "Downloading https://files.rcsb.org/download/6ss8.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6ss8.pdb.gz\n", "Downloading https://files.rcsb.org/download/6ss9.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6ss9.pdb.gz\n", "Downloading https://files.rcsb.org/download/6ssa.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6ssa.pdb.gz\n", "Downloading https://files.rcsb.org/download/6tdo.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6tdo.pdb.gz\n", "Downloading https://files.rcsb.org/download/6tdp.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6tdp.pdb.gz\n", "Downloading https://files.rcsb.org/download/6tdq.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6tdq.pdb.gz\n", "Downloading https://files.rcsb.org/download/6tdr.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6tdr.pdb.gz\n", "Downloading https://files.rcsb.org/download/6tds.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6tds.pdb.gz\n", "Downloading https://files.rcsb.org/download/6tmo.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6tmo.pdb.gz\n", "Downloading https://files.rcsb.org/download/6trn.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6trn.pdb.gz\n", "Downloading https://files.rcsb.org/download/6tro.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6tro.pdb.gz\n", "Downloading https://files.rcsb.org/download/6ujo.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6ujo.pdb.gz\n", "Downloading https://files.rcsb.org/download/6ujq.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6ujq.pdb.gz\n", "Downloading https://files.rcsb.org/download/6uk2.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6uk2.pdb.gz\n", "Downloading https://files.rcsb.org/download/6uk4.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6uk4.pdb.gz\n", "Downloading https://files.rcsb.org/download/6uli.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6uli.pdb.gz\n", "Downloading https://files.rcsb.org/download/6ulk.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6ulk.pdb.gz\n", "Downloading https://files.rcsb.org/download/6uln.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6uln.pdb.gz\n", "Downloading https://files.rcsb.org/download/6ulr.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6ulr.pdb.gz\n", "Downloading https://files.rcsb.org/download/6uon.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6uon.pdb.gz\n", "Downloading https://files.rcsb.org/download/6uz1.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6uz1.pdb.gz\n", "Downloading https://files.rcsb.org/download/6uzm.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6uzm.pdb.gz\n", "Downloading https://files.rcsb.org/download/6uzn.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6uzn.pdb.gz\n", "Downloading https://files.rcsb.org/download/6uzo.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6uzo.pdb.gz\n", "Downloading https://files.rcsb.org/download/6uzp.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6uzp.pdb.gz\n", "Downloading https://files.rcsb.org/download/6uzq.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6uzq.pdb.gz\n", "Downloading https://files.rcsb.org/download/6uzs.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6uzs.pdb.gz\n", "Downloading https://files.rcsb.org/download/6v2o.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6v2o.pdb.gz\n", "Downloading https://files.rcsb.org/download/6v2p.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6v2p.pdb.gz\n", "Downloading https://files.rcsb.org/download/6v2q.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6v2q.pdb.gz\n", "Downloading https://files.rcsb.org/download/6v3j.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6v3j.pdb.gz\n", "Downloading https://files.rcsb.org/download/6vb0.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6vb0.pdb.gz\n", "Downloading https://files.rcsb.org/download/6vb1.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6vb1.pdb.gz\n", "Downloading https://files.rcsb.org/download/6vb2.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6vb2.pdb.gz\n", "Downloading https://files.rcsb.org/download/6vb3.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6vb3.pdb.gz\n", "Downloading https://files.rcsb.org/download/6vb4.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6vb4.pdb.gz\n", "Downloading https://files.rcsb.org/download/6vb5.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6vb5.pdb.gz\n", "Downloading https://files.rcsb.org/download/6vb6.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6vb6.pdb.gz\n", "Downloading https://files.rcsb.org/download/6vb7.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6vb7.pdb.gz\n", "Downloading https://files.rcsb.org/download/6viu.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6viu.pdb.gz\n", "Downloading https://files.rcsb.org/download/6vm7.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6vm7.pdb.gz\n", "Downloading https://files.rcsb.org/download/6vm8.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6vm8.pdb.gz\n", "Downloading https://files.rcsb.org/download/6vm9.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6vm9.pdb.gz\n", "Downloading https://files.rcsb.org/download/6vma.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6vma.pdb.gz\n", "Downloading https://files.rcsb.org/download/6vmc.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6vmc.pdb.gz\n", "Downloading https://files.rcsb.org/download/6vmx.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6vmx.pdb.gz\n", "Downloading https://files.rcsb.org/download/6vpz.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6vpz.pdb.gz\n", "Downloading https://files.rcsb.org/download/6vq2.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6vq2.pdb.gz\n", "Downloading https://files.rcsb.org/download/6vqd.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6vqd.pdb.gz\n", "Downloading https://files.rcsb.org/download/6vqe.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6vqe.pdb.gz\n", "Downloading https://files.rcsb.org/download/6vqo.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6vqo.pdb.gz\n", "Downloading https://files.rcsb.org/download/6vqy.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6vqy.pdb.gz\n", "Downloading https://files.rcsb.org/download/6vqz.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6vqz.pdb.gz\n", "Downloading https://files.rcsb.org/download/6vr1.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6vr1.pdb.gz\n", "Downloading https://files.rcsb.org/download/6vr5.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6vr5.pdb.gz\n", "Downloading https://files.rcsb.org/download/6vrm.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6vrm.pdb.gz\n", "Downloading https://files.rcsb.org/download/6vrn.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6vrn.pdb.gz\n", "Downloading https://files.rcsb.org/download/6w51.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6w51.pdb.gz\n", "Downloading https://files.rcsb.org/download/6w9u.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6w9u.pdb.gz\n", "Downloading https://files.rcsb.org/download/6w9v.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6w9v.pdb.gz\n", "Downloading https://files.rcsb.org/download/6wna.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6wna.pdb.gz\n", "Downloading https://files.rcsb.org/download/6wzy.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6wzy.pdb.gz\n", "Downloading https://files.rcsb.org/download/6x00.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6x00.pdb.gz\n", "Downloading https://files.rcsb.org/download/6xqp.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6xqp.pdb.gz\n", "Downloading https://files.rcsb.org/download/6y26.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6y26.pdb.gz\n", "Downloading https://files.rcsb.org/download/6y27.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6y27.pdb.gz\n", "Downloading https://files.rcsb.org/download/6y28.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6y28.pdb.gz\n", "Downloading https://files.rcsb.org/download/6y29.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6y29.pdb.gz\n", "Downloading https://files.rcsb.org/download/6y2a.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6y2a.pdb.gz\n", "Downloading https://files.rcsb.org/download/6y2b.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6y2b.pdb.gz\n", "Downloading https://files.rcsb.org/download/6z9v.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6z9v.pdb.gz\n", "Downloading https://files.rcsb.org/download/6z9x.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6z9x.pdb.gz\n", "Downloading https://files.rcsb.org/download/7alo.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7alo.pdb.gz\n", "Downloading https://files.rcsb.org/download/7b5f.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7b5f.pdb.gz\n", "Downloading https://files.rcsb.org/download/7byd.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7byd.pdb.gz\n", "Downloading https://files.rcsb.org/download/7c9v.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7c9v.pdb.gz\n", "Downloading https://files.rcsb.org/download/7cjq.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7cjq.pdb.gz\n", "Downloading https://files.rcsb.org/download/7cpo.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7cpo.pdb.gz\n", "Downloading https://files.rcsb.org/download/7em9.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7em9.pdb.gz\n", "Downloading https://files.rcsb.org/download/7ema.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7ema.pdb.gz\n", "Downloading https://files.rcsb.org/download/7emb.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7emb.pdb.gz\n", "Downloading https://files.rcsb.org/download/7emc.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7emc.pdb.gz\n", "Downloading https://files.rcsb.org/download/7emd.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7emd.pdb.gz\n", "Downloading https://files.rcsb.org/download/7eu2.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7eu2.pdb.gz\n", "Downloading https://files.rcsb.org/download/7f4w.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7f4w.pdb.gz\n", "Downloading https://files.rcsb.org/download/7ji2.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7ji2.pdb.gz\n", "Downloading https://files.rcsb.org/download/7jyu.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7jyu.pdb.gz\n", "Downloading https://files.rcsb.org/download/7jyv.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7jyv.pdb.gz\n", "Downloading https://files.rcsb.org/download/7k80.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7k80.pdb.gz\n", "Downloading https://files.rcsb.org/download/7k81.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7k81.pdb.gz\n", "Downloading https://files.rcsb.org/download/7kgo.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7kgo.pdb.gz\n", "Downloading https://files.rcsb.org/download/7kgp.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7kgp.pdb.gz\n", "Downloading https://files.rcsb.org/download/7kgq.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7kgq.pdb.gz\n", "Downloading https://files.rcsb.org/download/7kgr.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7kgr.pdb.gz\n", "Downloading https://files.rcsb.org/download/7kgs.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7kgs.pdb.gz\n", "Downloading https://files.rcsb.org/download/7kgt.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7kgt.pdb.gz\n", "Downloading https://files.rcsb.org/download/7lfi.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7lfi.pdb.gz\n", "Downloading https://files.rcsb.org/download/7lfj.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7lfj.pdb.gz\n", "Downloading https://files.rcsb.org/download/7lfk.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7lfk.pdb.gz\n", "Downloading https://files.rcsb.org/download/7lfl.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7lfl.pdb.gz\n", "Downloading https://files.rcsb.org/download/7lfm.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7lfm.pdb.gz\n", "Downloading https://files.rcsb.org/download/7lfz.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7lfz.pdb.gz\n", "Downloading https://files.rcsb.org/download/7lg0.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7lg0.pdb.gz\n", "Downloading https://files.rcsb.org/download/7lg2.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7lg2.pdb.gz\n", "Downloading https://files.rcsb.org/download/7lg3.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7lg3.pdb.gz\n", "Downloading https://files.rcsb.org/download/7lgd.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7lgd.pdb.gz\n", "Downloading https://files.rcsb.org/download/7lgt.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7lgt.pdb.gz\n", "Downloading https://files.rcsb.org/download/7lli.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7lli.pdb.gz\n", "Downloading https://files.rcsb.org/download/7llj.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7llj.pdb.gz\n", "Downloading https://files.rcsb.org/download/7m8s.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7m8s.pdb.gz\n", "Downloading https://files.rcsb.org/download/7m8t.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7m8t.pdb.gz\n", "Downloading https://files.rcsb.org/download/7m8u.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7m8u.pdb.gz\n", "Downloading https://files.rcsb.org/download/7mj6.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7mj6.pdb.gz\n", "Downloading https://files.rcsb.org/download/7mj7.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7mj7.pdb.gz\n", "Downloading https://files.rcsb.org/download/7mj8.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7mj8.pdb.gz\n", "Downloading https://files.rcsb.org/download/7mja.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7mja.pdb.gz\n", "Downloading https://files.rcsb.org/download/7mkb.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7mkb.pdb.gz\n", "Downloading https://files.rcsb.org/download/7n1a.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7n1a.pdb.gz\n", "Downloading https://files.rcsb.org/download/7n1b.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7n1b.pdb.gz\n", "Downloading https://files.rcsb.org/download/7n6d.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7n6d.pdb.gz\n", "Downloading https://files.rcsb.org/download/7nui.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7nui.pdb.gz\n", "Downloading https://files.rcsb.org/download/7p3d.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7p3d.pdb.gz\n", "Downloading https://files.rcsb.org/download/7p3e.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7p3e.pdb.gz\n", "Downloading https://files.rcsb.org/download/4pv8.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4pv8.pdb.gz\n", "Downloading https://files.rcsb.org/download/4pv9.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4pv9.pdb.gz\n", "Downloading https://files.rcsb.org/download/1wby.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1wby.pdb.gz\n", "Downloading https://files.rcsb.org/download/1yn6.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1yn6.pdb.gz\n", "Downloading https://files.rcsb.org/download/1yn7.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1yn7.pdb.gz\n", "Downloading https://files.rcsb.org/download/3l3h.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3l3h.pdb.gz\n", "Downloading https://files.rcsb.org/download/4pgd.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4pgd.pdb.gz\n", "Downloading https://files.rcsb.org/download/4pge.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4pge.pdb.gz\n", "Downloading https://files.rcsb.org/download/2fug.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/2fug.pdb.gz\n", "Downloading https://files.rcsb.org/download/2ybb.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/2ybb.pdb.gz\n", "Downloading https://files.rcsb.org/download/3i9v.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3i9v.pdb.gz\n", "Downloading https://files.rcsb.org/download/3iam.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3iam.pdb.gz\n", "Downloading https://files.rcsb.org/download/3ias.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3ias.pdb.gz\n", "Downloading https://files.rcsb.org/download/3m9s.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3m9s.pdb.gz\n", "Downloading https://files.rcsb.org/download/4hea.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4hea.pdb.gz\n", "Downloading https://files.rcsb.org/download/5gpn.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5gpn.pdb.gz\n", "Failed to download https://files.rcsb.org/download/5gpn.pdb.gz\n", "Downloading https://files.rcsb.org/download/5gup.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5gup.pdb.gz\n", "Failed to download https://files.rcsb.org/download/5gup.pdb.gz\n", "Downloading https://files.rcsb.org/download/5lc5.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5lc5.pdb.gz\n", "Downloading https://files.rcsb.org/download/5ldw.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5ldw.pdb.gz\n", "Downloading https://files.rcsb.org/download/5ldx.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5ldx.pdb.gz\n", "Downloading https://files.rcsb.org/download/5lnk.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5lnk.pdb.gz\n", "Downloading https://files.rcsb.org/download/5o31.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5o31.pdb.gz\n", "Downloading https://files.rcsb.org/download/5xtb.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5xtb.pdb.gz\n", "Downloading https://files.rcsb.org/download/5xtd.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5xtd.pdb.gz\n", "Downloading https://files.rcsb.org/download/5xth.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5xth.pdb.gz\n", "Failed to download https://files.rcsb.org/download/5xth.pdb.gz\n", "Downloading https://files.rcsb.org/download/5xti.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5xti.pdb.gz\n", "Failed to download https://files.rcsb.org/download/5xti.pdb.gz\n", "Downloading https://files.rcsb.org/download/6g2j.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6g2j.pdb.gz\n", "Downloading https://files.rcsb.org/download/6g72.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6g72.pdb.gz\n", "Downloading https://files.rcsb.org/download/6hl4.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6hl4.pdb.gz\n", "Downloading https://files.rcsb.org/download/6hlj.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6hlj.pdb.gz\n", "Downloading https://files.rcsb.org/download/6hlm.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6hlm.pdb.gz\n", "Downloading https://files.rcsb.org/download/6i0d.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6i0d.pdb.gz\n", "Downloading https://files.rcsb.org/download/6i1p.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6i1p.pdb.gz\n", "Downloading https://files.rcsb.org/download/6q8o.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6q8o.pdb.gz\n", "Downloading https://files.rcsb.org/download/6q8w.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6q8w.pdb.gz\n", "Downloading https://files.rcsb.org/download/6q8x.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6q8x.pdb.gz\n", "Downloading https://files.rcsb.org/download/6q9c.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6q9c.pdb.gz\n", "Downloading https://files.rcsb.org/download/6q9d.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6q9d.pdb.gz\n", "Failed to download https://files.rcsb.org/download/6q9d.pdb.gz\n", "Downloading https://files.rcsb.org/download/6q9k.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6q9k.pdb.gz\n", "Downloading https://files.rcsb.org/download/6qa9.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6qa9.pdb.gz\n", "Failed to download https://files.rcsb.org/download/6qa9.pdb.gz\n", "Downloading https://files.rcsb.org/download/6qbx.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6qbx.pdb.gz\n", "Failed to download https://files.rcsb.org/download/6qbx.pdb.gz\n", "Downloading https://files.rcsb.org/download/6qc2.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6qc2.pdb.gz\n", "Failed to download https://files.rcsb.org/download/6qc2.pdb.gz\n", "Downloading https://files.rcsb.org/download/6qc3.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6qc3.pdb.gz\n", "Failed to download https://files.rcsb.org/download/6qc3.pdb.gz\n", "Downloading https://files.rcsb.org/download/6qc4.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6qc4.pdb.gz\n", "Failed to download https://files.rcsb.org/download/6qc4.pdb.gz\n", "Downloading https://files.rcsb.org/download/6qc5.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6qc5.pdb.gz\n", "Failed to download https://files.rcsb.org/download/6qc5.pdb.gz\n", "Downloading https://files.rcsb.org/download/6qc6.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6qc6.pdb.gz\n", "Failed to download https://files.rcsb.org/download/6qc6.pdb.gz\n", "Downloading https://files.rcsb.org/download/6qc7.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6qc7.pdb.gz\n", "Failed to download https://files.rcsb.org/download/6qc7.pdb.gz\n", "Downloading https://files.rcsb.org/download/6qc8.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6qc8.pdb.gz\n", "Failed to download https://files.rcsb.org/download/6qc8.pdb.gz\n", "Downloading https://files.rcsb.org/download/6qc9.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6qc9.pdb.gz\n", "Failed to download https://files.rcsb.org/download/6qc9.pdb.gz\n", "Downloading https://files.rcsb.org/download/6qca.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6qca.pdb.gz\n", "Failed to download https://files.rcsb.org/download/6qca.pdb.gz\n", "Downloading https://files.rcsb.org/download/6qcf.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6qcf.pdb.gz\n", "Failed to download https://files.rcsb.org/download/6qcf.pdb.gz\n", "Downloading https://files.rcsb.org/download/6r7p.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6r7p.pdb.gz\n", "Downloading https://files.rcsb.org/download/6rfs.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6rfs.pdb.gz\n", "Downloading https://files.rcsb.org/download/6saq.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6saq.pdb.gz\n", "Downloading https://files.rcsb.org/download/6x89.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6x89.pdb.gz\n", "Failed to download https://files.rcsb.org/download/6x89.pdb.gz\n", "Downloading https://files.rcsb.org/download/6y11.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6y11.pdb.gz\n", "Downloading https://files.rcsb.org/download/6y79.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6y79.pdb.gz\n", "Downloading https://files.rcsb.org/download/6yj4.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6yj4.pdb.gz\n", "Downloading https://files.rcsb.org/download/6ziy.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6ziy.pdb.gz\n", "Downloading https://files.rcsb.org/download/6zjl.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6zjl.pdb.gz\n", "Downloading https://files.rcsb.org/download/6zjn.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6zjn.pdb.gz\n", "Downloading https://files.rcsb.org/download/6zjy.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6zjy.pdb.gz\n", "Downloading https://files.rcsb.org/download/6zk9.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6zk9.pdb.gz\n", "Downloading https://files.rcsb.org/download/6zkc.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6zkc.pdb.gz\n", "Downloading https://files.rcsb.org/download/6zkd.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6zkd.pdb.gz\n", "Downloading https://files.rcsb.org/download/6zke.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6zke.pdb.gz\n", "Downloading https://files.rcsb.org/download/6zkf.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6zkf.pdb.gz\n", "Downloading https://files.rcsb.org/download/6zkg.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6zkg.pdb.gz\n", "Downloading https://files.rcsb.org/download/6zkh.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6zkh.pdb.gz\n", "Downloading https://files.rcsb.org/download/6zki.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6zki.pdb.gz\n", "Downloading https://files.rcsb.org/download/6zkj.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6zkj.pdb.gz\n", "Downloading https://files.rcsb.org/download/6zkk.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6zkk.pdb.gz\n", "Downloading https://files.rcsb.org/download/6zkl.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6zkl.pdb.gz\n", "Downloading https://files.rcsb.org/download/6zkm.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6zkm.pdb.gz\n", "Downloading https://files.rcsb.org/download/6zkn.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6zkn.pdb.gz\n", "Downloading https://files.rcsb.org/download/6zko.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6zko.pdb.gz\n", "Downloading https://files.rcsb.org/download/6zkp.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6zkp.pdb.gz\n", "Downloading https://files.rcsb.org/download/6zkq.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6zkq.pdb.gz\n", "Downloading https://files.rcsb.org/download/6zkr.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6zkr.pdb.gz\n", "Downloading https://files.rcsb.org/download/6zks.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6zks.pdb.gz\n", "Downloading https://files.rcsb.org/download/6zkt.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6zkt.pdb.gz\n", "Downloading https://files.rcsb.org/download/6zku.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6zku.pdb.gz\n", "Downloading https://files.rcsb.org/download/6zkv.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6zkv.pdb.gz\n", "Downloading https://files.rcsb.org/download/6zr2.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6zr2.pdb.gz\n", "Downloading https://files.rcsb.org/download/6ztq.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6ztq.pdb.gz\n", "Downloading https://files.rcsb.org/download/7a23.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7a23.pdb.gz\n", "Downloading https://files.rcsb.org/download/7a24.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7a24.pdb.gz\n", "Downloading https://files.rcsb.org/download/7ak5.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7ak5.pdb.gz\n", "Downloading https://files.rcsb.org/download/7ak6.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7ak6.pdb.gz\n", "Downloading https://files.rcsb.org/download/7ar8.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7ar8.pdb.gz\n", "Downloading https://files.rcsb.org/download/7arb.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7arb.pdb.gz\n", "Downloading https://files.rcsb.org/download/7b93.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7b93.pdb.gz\n", "Downloading https://files.rcsb.org/download/7o6y.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7o6y.pdb.gz\n", "Downloading https://files.rcsb.org/download/7o71.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7o71.pdb.gz\n", "Downloading https://files.rcsb.org/download/4wz7.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4wz7.pdb.gz\n", "Failed to download https://files.rcsb.org/download/4wz7.pdb.gz\n", "Downloading https://files.rcsb.org/download/6cfw.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6cfw.pdb.gz\n", "Downloading https://files.rcsb.org/download/6h8k.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6h8k.pdb.gz\n", "Failed to download https://files.rcsb.org/download/6h8k.pdb.gz\n", "Downloading https://files.rcsb.org/download/6hum.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6hum.pdb.gz\n", "Downloading https://files.rcsb.org/download/6khi.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6khi.pdb.gz\n", "Downloading https://files.rcsb.org/download/6khj.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6khj.pdb.gz\n", "Downloading https://files.rcsb.org/download/6l7o.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6l7o.pdb.gz\n", "Downloading https://files.rcsb.org/download/6l7p.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6l7p.pdb.gz\n", "Downloading https://files.rcsb.org/download/6nbq.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6nbq.pdb.gz\n", "Downloading https://files.rcsb.org/download/6nbx.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6nbx.pdb.gz\n", "Downloading https://files.rcsb.org/download/6nby.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6nby.pdb.gz\n", "Downloading https://files.rcsb.org/download/6tjv.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6tjv.pdb.gz\n", "Downloading https://files.rcsb.org/download/6u8y.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6u8y.pdb.gz\n", "Downloading https://files.rcsb.org/download/6q9b.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6q9b.pdb.gz\n", "Failed to download https://files.rcsb.org/download/6q9b.pdb.gz\n", "Downloading https://files.rcsb.org/download/6zka.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6zka.pdb.gz\n", "Downloading https://files.rcsb.org/download/6zkb.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6zkb.pdb.gz\n", "Downloading https://files.rcsb.org/download/5xtc.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5xtc.pdb.gz\n", "Downloading https://files.rcsb.org/download/5ool.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5ool.pdb.gz\n", "Downloading https://files.rcsb.org/download/5oom.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5oom.pdb.gz\n", "Downloading https://files.rcsb.org/download/5usr.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5usr.pdb.gz\n", "Downloading https://files.rcsb.org/download/5wgb.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5wgb.pdb.gz\n", "Downloading https://files.rcsb.org/download/5wkp.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5wkp.pdb.gz\n", "Downloading https://files.rcsb.org/download/5wlw.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5wlw.pdb.gz\n", "Downloading https://files.rcsb.org/download/6nzu.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6nzu.pdb.gz\n", "Downloading https://files.rcsb.org/download/6odd.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6odd.pdb.gz\n", "Downloading https://files.rcsb.org/download/6uxe.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6uxe.pdb.gz\n", "Downloading https://files.rcsb.org/download/6w1d.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6w1d.pdb.gz\n", "Downloading https://files.rcsb.org/download/6wi2.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6wi2.pdb.gz\n", "Downloading https://files.rcsb.org/download/6wih.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6wih.pdb.gz\n", "Downloading https://files.rcsb.org/download/6yxy.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6yxy.pdb.gz\n", "Failed to download https://files.rcsb.org/download/6yxy.pdb.gz\n", "Downloading https://files.rcsb.org/download/7a5h.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7a5h.pdb.gz\n", "Failed to download https://files.rcsb.org/download/7a5h.pdb.gz\n", "Downloading https://files.rcsb.org/download/7a5j.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7a5j.pdb.gz\n", "Failed to download https://files.rcsb.org/download/7a5j.pdb.gz\n", "Downloading https://files.rcsb.org/download/7oi7.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7oi7.pdb.gz\n", "Downloading https://files.rcsb.org/download/7oi8.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7oi8.pdb.gz\n", "Downloading https://files.rcsb.org/download/7oi9.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7oi9.pdb.gz\n", "Downloading https://files.rcsb.org/download/7oid.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7oid.pdb.gz\n", "Failed to download https://files.rcsb.org/download/7oid.pdb.gz\n", "Downloading https://files.rcsb.org/download/7oie.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7oie.pdb.gz\n", "Downloading https://files.rcsb.org/download/7rtk.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7rtk.pdb.gz\n", "Downloading https://files.rcsb.org/download/1ar1.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1ar1.pdb.gz\n", "Downloading https://files.rcsb.org/download/1occ.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1occ.pdb.gz\n", "Downloading https://files.rcsb.org/download/1oco.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1oco.pdb.gz\n", "Downloading https://files.rcsb.org/download/1ocr.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1ocr.pdb.gz\n", "Downloading https://files.rcsb.org/download/1ocz.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1ocz.pdb.gz\n", "Downloading https://files.rcsb.org/download/1qle.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1qle.pdb.gz\n", "Downloading https://files.rcsb.org/download/1v54.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1v54.pdb.gz\n", "Downloading https://files.rcsb.org/download/1v55.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1v55.pdb.gz\n", "Downloading https://files.rcsb.org/download/2dyr.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/2dyr.pdb.gz\n", "Downloading https://files.rcsb.org/download/2dys.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/2dys.pdb.gz\n", "Downloading https://files.rcsb.org/download/2eij.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/2eij.pdb.gz\n", "Downloading https://files.rcsb.org/download/2eik.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/2eik.pdb.gz\n", "Downloading https://files.rcsb.org/download/2eil.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/2eil.pdb.gz\n", "Downloading https://files.rcsb.org/download/2eim.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/2eim.pdb.gz\n", "Downloading https://files.rcsb.org/download/2ein.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/2ein.pdb.gz\n", "Downloading https://files.rcsb.org/download/2gsm.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/2gsm.pdb.gz\n", "Downloading https://files.rcsb.org/download/2occ.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/2occ.pdb.gz\n", "Downloading https://files.rcsb.org/download/2y69.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/2y69.pdb.gz\n", "Downloading https://files.rcsb.org/download/2zxw.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/2zxw.pdb.gz\n", "Downloading https://files.rcsb.org/download/3abk.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3abk.pdb.gz\n", "Downloading https://files.rcsb.org/download/3abl.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3abl.pdb.gz\n", "Downloading https://files.rcsb.org/download/3abm.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3abm.pdb.gz\n", "Downloading https://files.rcsb.org/download/3ag1.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3ag1.pdb.gz\n", "Downloading https://files.rcsb.org/download/3ag2.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3ag2.pdb.gz\n", "Downloading https://files.rcsb.org/download/3ag3.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3ag3.pdb.gz\n", "Downloading https://files.rcsb.org/download/3ag4.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3ag4.pdb.gz\n", "Downloading https://files.rcsb.org/download/3asn.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3asn.pdb.gz\n", "Downloading https://files.rcsb.org/download/3aso.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3aso.pdb.gz\n", "Downloading https://files.rcsb.org/download/3dtu.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3dtu.pdb.gz\n", "Downloading https://files.rcsb.org/download/3ehb.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3ehb.pdb.gz\n", "Downloading https://files.rcsb.org/download/3fye.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3fye.pdb.gz\n", "Downloading https://files.rcsb.org/download/3fyi.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3fyi.pdb.gz\n", "Downloading https://files.rcsb.org/download/3hb3.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3hb3.pdb.gz\n", "Downloading https://files.rcsb.org/download/3om3.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3om3.pdb.gz\n", "Downloading https://files.rcsb.org/download/3omi.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3omi.pdb.gz\n", "Downloading https://files.rcsb.org/download/3omn.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3omn.pdb.gz\n", "Downloading https://files.rcsb.org/download/3wg7.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3wg7.pdb.gz\n", "Downloading https://files.rcsb.org/download/3x2q.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3x2q.pdb.gz\n", "Downloading https://files.rcsb.org/download/5b1a.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5b1a.pdb.gz\n", "Downloading https://files.rcsb.org/download/5b1b.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5b1b.pdb.gz\n", "Downloading https://files.rcsb.org/download/5b3s.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5b3s.pdb.gz\n", "Downloading https://files.rcsb.org/download/5iy5.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5iy5.pdb.gz\n", "Downloading https://files.rcsb.org/download/5j4z.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5j4z.pdb.gz\n", "Failed to download https://files.rcsb.org/download/5j4z.pdb.gz\n", "Downloading https://files.rcsb.org/download/5j7y.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5j7y.pdb.gz\n", "Failed to download https://files.rcsb.org/download/5j7y.pdb.gz\n", "Downloading https://files.rcsb.org/download/5luf.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5luf.pdb.gz\n", "Downloading https://files.rcsb.org/download/5w97.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5w97.pdb.gz\n", "Downloading https://files.rcsb.org/download/5wau.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5wau.pdb.gz\n", "Downloading https://files.rcsb.org/download/5x19.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5x19.pdb.gz\n", "Downloading https://files.rcsb.org/download/5x1b.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5x1b.pdb.gz\n", "Downloading https://files.rcsb.org/download/5x1f.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5x1f.pdb.gz\n", "Downloading https://files.rcsb.org/download/5xdq.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5xdq.pdb.gz\n", "Downloading https://files.rcsb.org/download/5xdx.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5xdx.pdb.gz\n", "Downloading https://files.rcsb.org/download/5z62.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5z62.pdb.gz\n", "Downloading https://files.rcsb.org/download/5z84.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5z84.pdb.gz\n", "Downloading https://files.rcsb.org/download/5z85.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5z85.pdb.gz\n", "Downloading https://files.rcsb.org/download/5z86.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5z86.pdb.gz\n", "Downloading https://files.rcsb.org/download/5zco.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5zco.pdb.gz\n", "Downloading https://files.rcsb.org/download/5zcp.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5zcp.pdb.gz\n", "Downloading https://files.rcsb.org/download/5zcq.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5zcq.pdb.gz\n", "Downloading https://files.rcsb.org/download/6adq.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6adq.pdb.gz\n", "Downloading https://files.rcsb.org/download/6giq.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6giq.pdb.gz\n", "Downloading https://files.rcsb.org/download/6hu9.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6hu9.pdb.gz\n", "Downloading https://files.rcsb.org/download/6hwh.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6hwh.pdb.gz\n", "Downloading https://files.rcsb.org/download/6j8m.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6j8m.pdb.gz\n", "Downloading https://files.rcsb.org/download/6juw.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6juw.pdb.gz\n", "Downloading https://files.rcsb.org/download/6jy3.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6jy3.pdb.gz\n", "Downloading https://files.rcsb.org/download/6jy4.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6jy4.pdb.gz\n", "Downloading https://files.rcsb.org/download/6nkn.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6nkn.pdb.gz\n", "Downloading https://files.rcsb.org/download/6nmf.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6nmf.pdb.gz\n", "Downloading https://files.rcsb.org/download/6nmp.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6nmp.pdb.gz\n", "Downloading https://files.rcsb.org/download/6pw0.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6pw0.pdb.gz\n", "Downloading https://files.rcsb.org/download/6pw1.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6pw1.pdb.gz\n", "Downloading https://files.rcsb.org/download/6t0b.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6t0b.pdb.gz\n", "Downloading https://files.rcsb.org/download/6t15.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6t15.pdb.gz\n", "Downloading https://files.rcsb.org/download/6ymx.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6ymx.pdb.gz\n", "Downloading https://files.rcsb.org/download/6ymy.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6ymy.pdb.gz\n", "Downloading https://files.rcsb.org/download/7coh.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7coh.pdb.gz\n", "Downloading https://files.rcsb.org/download/7cp5.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7cp5.pdb.gz\n", "Downloading https://files.rcsb.org/download/7d5w.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7d5w.pdb.gz\n", "Downloading https://files.rcsb.org/download/7d5x.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7d5x.pdb.gz\n", "Downloading https://files.rcsb.org/download/7ev7.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7ev7.pdb.gz\n", "Downloading https://files.rcsb.org/download/7jro.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7jro.pdb.gz\n", "Downloading https://files.rcsb.org/download/7jrp.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7jrp.pdb.gz\n", "Downloading https://files.rcsb.org/download/7o37.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7o37.pdb.gz\n", "Downloading https://files.rcsb.org/download/7o3c.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7o3c.pdb.gz\n", "Downloading https://files.rcsb.org/download/1fft.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1fft.pdb.gz\n", "Downloading https://files.rcsb.org/download/6kob.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6kob.pdb.gz\n", "Downloading https://files.rcsb.org/download/6koc.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6koc.pdb.gz\n", "Downloading https://files.rcsb.org/download/6koe.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6koe.pdb.gz\n", "Downloading https://files.rcsb.org/download/6wti.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6wti.pdb.gz\n", "Downloading https://files.rcsb.org/download/1bcc.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1bcc.pdb.gz\n", "Downloading https://files.rcsb.org/download/1be3.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1be3.pdb.gz\n", "Downloading https://files.rcsb.org/download/1bgy.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1bgy.pdb.gz\n", "Downloading https://files.rcsb.org/download/1ezv.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1ezv.pdb.gz\n", "Downloading https://files.rcsb.org/download/1kb9.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1kb9.pdb.gz\n", "Downloading https://files.rcsb.org/download/1kyo.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1kyo.pdb.gz\n", "Downloading https://files.rcsb.org/download/1l0l.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1l0l.pdb.gz\n", "Downloading https://files.rcsb.org/download/1l0n.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1l0n.pdb.gz\n", "Downloading https://files.rcsb.org/download/1ntk.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1ntk.pdb.gz\n", "Downloading https://files.rcsb.org/download/1ntm.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1ntm.pdb.gz\n", "Downloading https://files.rcsb.org/download/1ntz.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1ntz.pdb.gz\n", "Downloading https://files.rcsb.org/download/1nu1.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1nu1.pdb.gz\n", "Downloading https://files.rcsb.org/download/1p84.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1p84.pdb.gz\n", "Downloading https://files.rcsb.org/download/1pp9.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1pp9.pdb.gz\n", "Downloading https://files.rcsb.org/download/1ppj.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1ppj.pdb.gz\n", "Downloading https://files.rcsb.org/download/1sqb.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1sqb.pdb.gz\n", "Downloading https://files.rcsb.org/download/1sqp.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1sqp.pdb.gz\n", "Downloading https://files.rcsb.org/download/1sqq.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1sqq.pdb.gz\n", "Downloading https://files.rcsb.org/download/1sqv.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1sqv.pdb.gz\n", "Downloading https://files.rcsb.org/download/1sqx.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1sqx.pdb.gz\n", "Downloading https://files.rcsb.org/download/1zrt.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1zrt.pdb.gz\n", "Downloading https://files.rcsb.org/download/2a06.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/2a06.pdb.gz\n", "Downloading https://files.rcsb.org/download/2bcc.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/2bcc.pdb.gz\n", "Downloading https://files.rcsb.org/download/2fyn.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/2fyn.pdb.gz\n", "Downloading https://files.rcsb.org/download/2fyu.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/2fyu.pdb.gz\n", "Downloading https://files.rcsb.org/download/2ibz.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/2ibz.pdb.gz\n", "Downloading https://files.rcsb.org/download/2qjp.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/2qjp.pdb.gz\n", "Downloading https://files.rcsb.org/download/2qjy.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/2qjy.pdb.gz\n", "Downloading https://files.rcsb.org/download/2yiu.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/2yiu.pdb.gz\n", "Downloading https://files.rcsb.org/download/3bcc.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3bcc.pdb.gz\n", "Downloading https://files.rcsb.org/download/3cwb.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3cwb.pdb.gz\n", "Downloading https://files.rcsb.org/download/3cx5.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3cx5.pdb.gz\n", "Downloading https://files.rcsb.org/download/3cxh.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3cxh.pdb.gz\n", "Downloading https://files.rcsb.org/download/3h1h.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3h1h.pdb.gz\n", "Downloading https://files.rcsb.org/download/3h1i.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3h1i.pdb.gz\n", "Downloading https://files.rcsb.org/download/3h1j.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3h1j.pdb.gz\n", "Downloading https://files.rcsb.org/download/3h1k.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3h1k.pdb.gz\n", "Downloading https://files.rcsb.org/download/3h1l.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3h1l.pdb.gz\n", "Downloading https://files.rcsb.org/download/3l70.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3l70.pdb.gz\n", "Downloading https://files.rcsb.org/download/3l71.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3l71.pdb.gz\n", "Downloading https://files.rcsb.org/download/3l72.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3l72.pdb.gz\n", "Downloading https://files.rcsb.org/download/3l73.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3l73.pdb.gz\n", "Downloading https://files.rcsb.org/download/3l74.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3l74.pdb.gz\n", "Downloading https://files.rcsb.org/download/3l75.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3l75.pdb.gz\n", "Downloading https://files.rcsb.org/download/3tgu.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3tgu.pdb.gz\n", "Downloading https://files.rcsb.org/download/4d6t.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4d6t.pdb.gz\n", "Downloading https://files.rcsb.org/download/4d6u.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4d6u.pdb.gz\n", "Downloading https://files.rcsb.org/download/4pd4.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4pd4.pdb.gz\n", "Downloading https://files.rcsb.org/download/4u3f.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4u3f.pdb.gz\n", "Downloading https://files.rcsb.org/download/5j8k.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5j8k.pdb.gz\n", "Failed to download https://files.rcsb.org/download/5j8k.pdb.gz\n", "Downloading https://files.rcsb.org/download/5kkz.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5kkz.pdb.gz\n", "Downloading https://files.rcsb.org/download/5kli.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5kli.pdb.gz\n", "Downloading https://files.rcsb.org/download/5klv.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5klv.pdb.gz\n", "Downloading https://files.rcsb.org/download/5nmi.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5nmi.pdb.gz\n", "Downloading https://files.rcsb.org/download/5okd.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5okd.pdb.gz\n", "Downloading https://files.rcsb.org/download/5xte.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5xte.pdb.gz\n", "Downloading https://files.rcsb.org/download/6fo0.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6fo0.pdb.gz\n", "Downloading https://files.rcsb.org/download/6fo2.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6fo2.pdb.gz\n", "Downloading https://files.rcsb.org/download/6fo6.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6fo6.pdb.gz\n", "Downloading https://files.rcsb.org/download/6haw.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6haw.pdb.gz\n", "Downloading https://files.rcsb.org/download/6nhg.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6nhg.pdb.gz\n", "Downloading https://files.rcsb.org/download/6nhh.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6nhh.pdb.gz\n", "Downloading https://files.rcsb.org/download/6nin.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6nin.pdb.gz\n", "Downloading https://files.rcsb.org/download/6q9e.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6q9e.pdb.gz\n", "Failed to download https://files.rcsb.org/download/6q9e.pdb.gz\n", "Downloading https://files.rcsb.org/download/6xi0.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6xi0.pdb.gz\n", "Downloading https://files.rcsb.org/download/6xkt.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6xkt.pdb.gz\n", "Downloading https://files.rcsb.org/download/6xku.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6xku.pdb.gz\n", "Downloading https://files.rcsb.org/download/6xkv.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6xkv.pdb.gz\n", "Downloading https://files.rcsb.org/download/6xkw.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6xkw.pdb.gz\n", "Downloading https://files.rcsb.org/download/6xkx.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6xkx.pdb.gz\n", "Downloading https://files.rcsb.org/download/6xkz.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6xkz.pdb.gz\n", "Downloading https://files.rcsb.org/download/6zft.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6zft.pdb.gz\n", "Downloading https://files.rcsb.org/download/6zfu.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6zfu.pdb.gz\n", "Downloading https://files.rcsb.org/download/7jrg.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7jrg.pdb.gz\n", "Downloading https://files.rcsb.org/download/7o3h.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7o3h.pdb.gz\n", "Downloading https://files.rcsb.org/download/1qcr.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1qcr.pdb.gz\n", "Downloading https://files.rcsb.org/download/6zfs.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6zfs.pdb.gz\n", "Downloading https://files.rcsb.org/download/4he8.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4he8.pdb.gz\n", "Downloading https://files.rcsb.org/download/3rko.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3rko.pdb.gz\n", "Downloading https://files.rcsb.org/download/6xvf.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6xvf.pdb.gz\n", "Downloading https://files.rcsb.org/download/6z16.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6z16.pdb.gz\n", "Downloading https://files.rcsb.org/download/7d3u.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7d3u.pdb.gz\n", "Downloading https://files.rcsb.org/download/1bbj.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1bbj.pdb.gz\n", "Downloading https://files.rcsb.org/download/1d5i.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1d5i.pdb.gz\n", "Downloading https://files.rcsb.org/download/1d6v.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1d6v.pdb.gz\n", "Downloading https://files.rcsb.org/download/1i7z.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1i7z.pdb.gz\n", "Downloading https://files.rcsb.org/download/1iqd.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1iqd.pdb.gz\n", "Downloading https://files.rcsb.org/download/1n0x.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1n0x.pdb.gz\n", "Downloading https://files.rcsb.org/download/1ngx.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1ngx.pdb.gz\n", "Downloading https://files.rcsb.org/download/1rz8.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1rz8.pdb.gz\n", "Downloading https://files.rcsb.org/download/1tjg.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1tjg.pdb.gz\n", "Downloading https://files.rcsb.org/download/1tjh.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1tjh.pdb.gz\n", "Downloading https://files.rcsb.org/download/1tji.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1tji.pdb.gz\n", "Downloading https://files.rcsb.org/download/1u8h.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1u8h.pdb.gz\n", "Downloading https://files.rcsb.org/download/1u8i.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1u8i.pdb.gz\n", "Downloading https://files.rcsb.org/download/1u8j.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1u8j.pdb.gz\n", "Downloading https://files.rcsb.org/download/1u8k.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1u8k.pdb.gz\n", "Downloading https://files.rcsb.org/download/1u8l.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1u8l.pdb.gz\n", "Downloading https://files.rcsb.org/download/1u8m.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1u8m.pdb.gz\n", "Downloading https://files.rcsb.org/download/1u8n.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1u8n.pdb.gz\n", "Downloading https://files.rcsb.org/download/1u8o.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1u8o.pdb.gz\n", "Downloading https://files.rcsb.org/download/1u8p.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1u8p.pdb.gz\n", "Downloading https://files.rcsb.org/download/1u8q.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1u8q.pdb.gz\n", "Downloading https://files.rcsb.org/download/1u91.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1u91.pdb.gz\n", "Downloading https://files.rcsb.org/download/1u92.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1u92.pdb.gz\n", "Downloading https://files.rcsb.org/download/1u93.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1u93.pdb.gz\n", "Downloading https://files.rcsb.org/download/1u95.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1u95.pdb.gz\n", "Downloading https://files.rcsb.org/download/1yy8.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1yy8.pdb.gz\n", "Downloading https://files.rcsb.org/download/2f5a.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/2f5a.pdb.gz\n", "Downloading https://files.rcsb.org/download/2f5b.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/2f5b.pdb.gz\n", "Downloading https://files.rcsb.org/download/2p8l.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/2p8l.pdb.gz\n", "Downloading https://files.rcsb.org/download/2p8m.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/2p8m.pdb.gz\n", "Downloading https://files.rcsb.org/download/2p8p.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/2p8p.pdb.gz\n", "Downloading https://files.rcsb.org/download/2pr4.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/2pr4.pdb.gz\n", "Downloading https://files.rcsb.org/download/2pw1.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/2pw1.pdb.gz\n", "Downloading https://files.rcsb.org/download/2pw2.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/2pw2.pdb.gz\n", "Downloading https://files.rcsb.org/download/2xa8.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/2xa8.pdb.gz\n", "Downloading https://files.rcsb.org/download/2xza.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/2xza.pdb.gz\n", "Downloading https://files.rcsb.org/download/2xzc.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/2xzc.pdb.gz\n", "Downloading https://files.rcsb.org/download/3bqu.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3bqu.pdb.gz\n", "Downloading https://files.rcsb.org/download/3c5s.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3c5s.pdb.gz\n", "Downloading https://files.rcsb.org/download/3d0l.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3d0l.pdb.gz\n", "Downloading https://files.rcsb.org/download/3d0v.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3d0v.pdb.gz\n", "Downloading https://files.rcsb.org/download/3dro.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3dro.pdb.gz\n", "Downloading https://files.rcsb.org/download/3drq.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3drq.pdb.gz\n", "Downloading https://files.rcsb.org/download/3drt.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3drt.pdb.gz\n", "Downloading https://files.rcsb.org/download/3egs.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3egs.pdb.gz\n", "Downloading https://files.rcsb.org/download/3eoa.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3eoa.pdb.gz\n", "Downloading https://files.rcsb.org/download/3eyf.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3eyf.pdb.gz\n", "Downloading https://files.rcsb.org/download/3eyo.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3eyo.pdb.gz\n", "Downloading https://files.rcsb.org/download/3hr5.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3hr5.pdb.gz\n", "Downloading https://files.rcsb.org/download/3idg.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3idg.pdb.gz\n", "Downloading https://files.rcsb.org/download/3idi.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3idi.pdb.gz\n", "Downloading https://files.rcsb.org/download/3idj.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3idj.pdb.gz\n", "Downloading https://files.rcsb.org/download/3idm.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3idm.pdb.gz\n", "Downloading https://files.rcsb.org/download/3idn.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3idn.pdb.gz\n", "Downloading https://files.rcsb.org/download/3l5w.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3l5w.pdb.gz\n", "Downloading https://files.rcsb.org/download/3l5x.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3l5x.pdb.gz\n", "Downloading https://files.rcsb.org/download/3lev.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3lev.pdb.gz\n", "Downloading https://files.rcsb.org/download/3moa.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3moa.pdb.gz\n", "Downloading https://files.rcsb.org/download/3mob.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3mob.pdb.gz\n", "Downloading https://files.rcsb.org/download/3mod.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3mod.pdb.gz\n", "Downloading https://files.rcsb.org/download/3nfs.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3nfs.pdb.gz\n", "Downloading https://files.rcsb.org/download/3o2d.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3o2d.pdb.gz\n", "Downloading https://files.rcsb.org/download/3qnx.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3qnx.pdb.gz\n", "Downloading https://files.rcsb.org/download/3qny.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3qny.pdb.gz\n", "Downloading https://files.rcsb.org/download/3qnz.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3qnz.pdb.gz\n", "Downloading https://files.rcsb.org/download/3qo0.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3qo0.pdb.gz\n", "Downloading https://files.rcsb.org/download/3qo1.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3qo1.pdb.gz\n", "Downloading https://files.rcsb.org/download/3qq9.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3qq9.pdb.gz\n", "Downloading https://files.rcsb.org/download/3s34.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3s34.pdb.gz\n", "Downloading https://files.rcsb.org/download/3s36.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3s36.pdb.gz\n", "Downloading https://files.rcsb.org/download/3s37.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3s37.pdb.gz\n", "Downloading https://files.rcsb.org/download/3u0t.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3u0t.pdb.gz\n", "Downloading https://files.rcsb.org/download/3u0w.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3u0w.pdb.gz\n", "Downloading https://files.rcsb.org/download/3u30.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3u30.pdb.gz\n", "Downloading https://files.rcsb.org/download/3w9e.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3w9e.pdb.gz\n", "Downloading https://files.rcsb.org/download/3x3g.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3x3g.pdb.gz\n", "Downloading https://files.rcsb.org/download/4dgy.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4dgy.pdb.gz\n", "Downloading https://files.rcsb.org/download/4dtg.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4dtg.pdb.gz\n", "Downloading https://files.rcsb.org/download/4edw.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4edw.pdb.gz\n", "Downloading https://files.rcsb.org/download/4g80.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4g80.pdb.gz\n", "Downloading https://files.rcsb.org/download/4gw1.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4gw1.pdb.gz\n", "Downloading https://files.rcsb.org/download/4gw5.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4gw5.pdb.gz\n", "Downloading https://files.rcsb.org/download/4hie.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4hie.pdb.gz\n", "Downloading https://files.rcsb.org/download/4hih.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4hih.pdb.gz\n", "Downloading https://files.rcsb.org/download/4hii.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4hii.pdb.gz\n", "Downloading https://files.rcsb.org/download/4hij.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4hij.pdb.gz\n", "Downloading https://files.rcsb.org/download/4i18.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4i18.pdb.gz\n", "Downloading https://files.rcsb.org/download/4i77.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4i77.pdb.gz\n", "Downloading https://files.rcsb.org/download/4imk.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4imk.pdb.gz\n", "Downloading https://files.rcsb.org/download/4jpv.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4jpv.pdb.gz\n", "Downloading https://files.rcsb.org/download/4kxz.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4kxz.pdb.gz\n", "Downloading https://files.rcsb.org/download/4mxw.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4mxw.pdb.gz\n", "Downloading https://files.rcsb.org/download/4n9g.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4n9g.pdb.gz\n", "Downloading https://files.rcsb.org/download/4o51.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4o51.pdb.gz\n", "Downloading https://files.rcsb.org/download/4ps4.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4ps4.pdb.gz\n", "Downloading https://files.rcsb.org/download/4x7s.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4x7s.pdb.gz\n", "Downloading https://files.rcsb.org/download/4x7t.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4x7t.pdb.gz\n", "Downloading https://files.rcsb.org/download/4zs6.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4zs6.pdb.gz\n", "Downloading https://files.rcsb.org/download/5ado.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5ado.pdb.gz\n", "Downloading https://files.rcsb.org/download/5adp.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5adp.pdb.gz\n", "Downloading https://files.rcsb.org/download/5cma.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5cma.pdb.gz\n", "Downloading https://files.rcsb.org/download/5csz.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5csz.pdb.gz\n", "Downloading https://files.rcsb.org/download/5d6c.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5d6c.pdb.gz\n", "Downloading https://files.rcsb.org/download/5dmg.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5dmg.pdb.gz\n", "Downloading https://files.rcsb.org/download/5e08.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5e08.pdb.gz\n", "Downloading https://files.rcsb.org/download/5ea0.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5ea0.pdb.gz\n", "Downloading https://files.rcsb.org/download/5eii.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5eii.pdb.gz\n", "Downloading https://files.rcsb.org/download/5esq.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5esq.pdb.gz\n", "Downloading https://files.rcsb.org/download/5etu.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5etu.pdb.gz\n", "Downloading https://files.rcsb.org/download/5euk.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5euk.pdb.gz\n", "Downloading https://files.rcsb.org/download/5f88.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5f88.pdb.gz\n", "Downloading https://files.rcsb.org/download/5fb8.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5fb8.pdb.gz\n", "Downloading https://files.rcsb.org/download/5ff6.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5ff6.pdb.gz\n", "Downloading https://files.rcsb.org/download/5gz0.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5gz0.pdb.gz\n", "Downloading https://files.rcsb.org/download/5hpm.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5hpm.pdb.gz\n", "Downloading https://files.rcsb.org/download/5hyq.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5hyq.pdb.gz\n", "Downloading https://files.rcsb.org/download/5i1a.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5i1a.pdb.gz\n", "Downloading https://files.rcsb.org/download/5i1d.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5i1d.pdb.gz\n", "Downloading https://files.rcsb.org/download/5i2i.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5i2i.pdb.gz\n", "Downloading https://files.rcsb.org/download/5i76.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5i76.pdb.gz\n", "Downloading https://files.rcsb.org/download/5i8k.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5i8k.pdb.gz\n", "Downloading https://files.rcsb.org/download/5i8o.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5i8o.pdb.gz\n", "Downloading https://files.rcsb.org/download/5icx.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5icx.pdb.gz\n", "Downloading https://files.rcsb.org/download/5icy.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5icy.pdb.gz\n", "Downloading https://files.rcsb.org/download/5icz.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5icz.pdb.gz\n", "Downloading https://files.rcsb.org/download/5id0.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5id0.pdb.gz\n", "Downloading https://files.rcsb.org/download/5id1.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5id1.pdb.gz\n", "Downloading https://files.rcsb.org/download/5iop.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5iop.pdb.gz\n", "Downloading https://files.rcsb.org/download/5ir1.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5ir1.pdb.gz\n", "Downloading https://files.rcsb.org/download/5itf.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5itf.pdb.gz\n", "Downloading https://files.rcsb.org/download/5iv2.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5iv2.pdb.gz\n", "Downloading https://files.rcsb.org/download/5ivz.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5ivz.pdb.gz\n", "Downloading https://files.rcsb.org/download/5kn5.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5kn5.pdb.gz\n", "Downloading https://files.rcsb.org/download/5n4g.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5n4g.pdb.gz\n", "Downloading https://files.rcsb.org/download/5nb5.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5nb5.pdb.gz\n", "Downloading https://files.rcsb.org/download/5nmv.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5nmv.pdb.gz\n", "Downloading https://files.rcsb.org/download/5sx4.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5sx4.pdb.gz\n", "Downloading https://files.rcsb.org/download/5sx5.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5sx5.pdb.gz\n", "Downloading https://files.rcsb.org/download/5t1k.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5t1k.pdb.gz\n", "Downloading https://files.rcsb.org/download/5t1l.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5t1l.pdb.gz\n", "Downloading https://files.rcsb.org/download/5t1m.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5t1m.pdb.gz\n", "Downloading https://files.rcsb.org/download/5te4.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5te4.pdb.gz\n", "Downloading https://files.rcsb.org/download/5te6.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5te6.pdb.gz\n", "Downloading https://files.rcsb.org/download/5te7.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5te7.pdb.gz\n", "Downloading https://files.rcsb.org/download/5th2.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5th2.pdb.gz\n", "Downloading https://files.rcsb.org/download/5tjd.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5tjd.pdb.gz\n", "Downloading https://files.rcsb.org/download/5u3j.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5u3j.pdb.gz\n", "Downloading https://files.rcsb.org/download/5u3m.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5u3m.pdb.gz\n", "Downloading https://files.rcsb.org/download/5u3o.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5u3o.pdb.gz\n", "Downloading https://files.rcsb.org/download/5uy3.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5uy3.pdb.gz\n", "Downloading https://files.rcsb.org/download/5v7u.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5v7u.pdb.gz\n", "Downloading https://files.rcsb.org/download/5w3p.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5w3p.pdb.gz\n", "Downloading https://files.rcsb.org/download/5wk2.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5wk2.pdb.gz\n", "Downloading https://files.rcsb.org/download/5wna.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5wna.pdb.gz\n", "Downloading https://files.rcsb.org/download/5wuv.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5wuv.pdb.gz\n", "Downloading https://files.rcsb.org/download/5x5x.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5x5x.pdb.gz\n", "Downloading https://files.rcsb.org/download/6al5.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6al5.pdb.gz\n", "Downloading https://files.rcsb.org/download/6amm.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6amm.pdb.gz\n", "Downloading https://files.rcsb.org/download/6arp.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6arp.pdb.gz\n", "Downloading https://files.rcsb.org/download/6att.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6att.pdb.gz\n", "Downloading https://files.rcsb.org/download/6au5.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6au5.pdb.gz\n", "Downloading https://files.rcsb.org/download/6axl.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6axl.pdb.gz\n", "Downloading https://files.rcsb.org/download/6axp.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6axp.pdb.gz\n", "Downloading https://files.rcsb.org/download/6ayn.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6ayn.pdb.gz\n", "Downloading https://files.rcsb.org/download/6azk.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6azk.pdb.gz\n", "Downloading https://files.rcsb.org/download/6azl.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6azl.pdb.gz\n", "Downloading https://files.rcsb.org/download/6bkb.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6bkb.pdb.gz\n", "Downloading https://files.rcsb.org/download/6bli.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6bli.pdb.gz\n", "Downloading https://files.rcsb.org/download/6cnr.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6cnr.pdb.gz\n", "Downloading https://files.rcsb.org/download/6co3.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6co3.pdb.gz\n", "Downloading https://files.rcsb.org/download/6dc9.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6dc9.pdb.gz\n", "Downloading https://files.rcsb.org/download/6dkj.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6dkj.pdb.gz\n", "Downloading https://files.rcsb.org/download/6dwa.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6dwa.pdb.gz\n", "Downloading https://files.rcsb.org/download/6dwc.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6dwc.pdb.gz\n", "Downloading https://files.rcsb.org/download/6fg2.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6fg2.pdb.gz\n", "Downloading https://files.rcsb.org/download/6hig.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6hig.pdb.gz\n", "Downloading https://files.rcsb.org/download/6iuv.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6iuv.pdb.gz\n", "Downloading https://files.rcsb.org/download/6ln2.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6ln2.pdb.gz\n", "Downloading https://files.rcsb.org/download/6mxr.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6mxr.pdb.gz\n", "Downloading https://files.rcsb.org/download/6mxs.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6mxs.pdb.gz\n", "Downloading https://files.rcsb.org/download/6my4.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6my4.pdb.gz\n", "Downloading https://files.rcsb.org/download/6my5.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6my5.pdb.gz\n", "Downloading https://files.rcsb.org/download/6n7u.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6n7u.pdb.gz\n", "Downloading https://files.rcsb.org/download/6nha.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6nha.pdb.gz\n", "Downloading https://files.rcsb.org/download/6o23.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6o23.pdb.gz\n", "Downloading https://files.rcsb.org/download/6o26.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6o26.pdb.gz\n", "Downloading https://files.rcsb.org/download/6o2a.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6o2a.pdb.gz\n", "Downloading https://files.rcsb.org/download/6o2b.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6o2b.pdb.gz\n", "Downloading https://files.rcsb.org/download/6sne.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6sne.pdb.gz\n", "Downloading https://files.rcsb.org/download/6t9d.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6t9d.pdb.gz\n", "Failed to download https://files.rcsb.org/download/6t9d.pdb.gz\n", "Downloading https://files.rcsb.org/download/6tcm.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6tcm.pdb.gz\n", "Downloading https://files.rcsb.org/download/6tcn.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6tcn.pdb.gz\n", "Downloading https://files.rcsb.org/download/6ule.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6ule.pdb.gz\n", "Downloading https://files.rcsb.org/download/6v4q.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6v4q.pdb.gz\n", "Downloading https://files.rcsb.org/download/6vbo.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6vbo.pdb.gz\n", "Downloading https://files.rcsb.org/download/6vl8.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6vl8.pdb.gz\n", "Downloading https://files.rcsb.org/download/6vlw.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6vlw.pdb.gz\n", "Downloading https://files.rcsb.org/download/6vry.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6vry.pdb.gz\n", "Downloading https://files.rcsb.org/download/6w05.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6w05.pdb.gz\n", "Downloading https://files.rcsb.org/download/6w7y.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6w7y.pdb.gz\n", "Downloading https://files.rcsb.org/download/6wgb.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6wgb.pdb.gz\n", "Downloading https://files.rcsb.org/download/6wo4.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6wo4.pdb.gz\n", "Downloading https://files.rcsb.org/download/6wzj.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6wzj.pdb.gz\n", "Downloading https://files.rcsb.org/download/6wzk.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6wzk.pdb.gz\n", "Downloading https://files.rcsb.org/download/6wzl.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6wzl.pdb.gz\n", "Downloading https://files.rcsb.org/download/6wzm.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6wzm.pdb.gz\n", "Downloading https://files.rcsb.org/download/6xud.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6xud.pdb.gz\n", "Downloading https://files.rcsb.org/download/6xuk.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6xuk.pdb.gz\n", "Downloading https://files.rcsb.org/download/6xy2.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6xy2.pdb.gz\n", "Downloading https://files.rcsb.org/download/6y1k.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6y1k.pdb.gz\n", "Downloading https://files.rcsb.org/download/6y1l.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6y1l.pdb.gz\n", "Downloading https://files.rcsb.org/download/6y1m.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6y1m.pdb.gz\n", "Downloading https://files.rcsb.org/download/6y49.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6y49.pdb.gz\n", "Downloading https://files.rcsb.org/download/6ywc.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6ywc.pdb.gz\n", "Downloading https://files.rcsb.org/download/7bxa.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7bxa.pdb.gz\n", "Downloading https://files.rcsb.org/download/7kzc.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7kzc.pdb.gz\n", "Downloading https://files.rcsb.org/download/7lk9.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7lk9.pdb.gz\n", "Downloading https://files.rcsb.org/download/7lka.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7lka.pdb.gz\n", "Downloading https://files.rcsb.org/download/1ad0.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1ad0.pdb.gz\n", "Downloading https://files.rcsb.org/download/1c1e.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1c1e.pdb.gz\n", "Downloading https://files.rcsb.org/download/1c5b.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1c5b.pdb.gz\n", "Downloading https://files.rcsb.org/download/1c5c.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1c5c.pdb.gz\n", "Downloading https://files.rcsb.org/download/1f4w.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1f4w.pdb.gz\n", "Downloading https://files.rcsb.org/download/1f4x.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1f4x.pdb.gz\n", "Downloading https://files.rcsb.org/download/1f4y.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1f4y.pdb.gz\n", "Downloading https://files.rcsb.org/download/1flr.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1flr.pdb.gz\n", "Downloading https://files.rcsb.org/download/1ghf.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1ghf.pdb.gz\n", "Downloading https://files.rcsb.org/download/1igi.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1igi.pdb.gz\n", "Downloading https://files.rcsb.org/download/1igj.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1igj.pdb.gz\n", "Downloading https://files.rcsb.org/download/1kel.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1kel.pdb.gz\n", "Downloading https://files.rcsb.org/download/1kem.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1kem.pdb.gz\n", "Downloading https://files.rcsb.org/download/1nbv.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1nbv.pdb.gz\n", "Downloading https://files.rcsb.org/download/1ngz.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1ngz.pdb.gz\n", "Downloading https://files.rcsb.org/download/1q0x.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1q0x.pdb.gz\n", "Downloading https://files.rcsb.org/download/1q0y.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1q0y.pdb.gz\n", "Downloading https://files.rcsb.org/download/1qkz.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1qkz.pdb.gz\n", "Downloading https://files.rcsb.org/download/1xgy.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1xgy.pdb.gz\n", "Downloading https://files.rcsb.org/download/2h1p.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/2h1p.pdb.gz\n", "Downloading https://files.rcsb.org/download/2hkf.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/2hkf.pdb.gz\n", "Downloading https://files.rcsb.org/download/2hkh.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/2hkh.pdb.gz\n", "Downloading https://files.rcsb.org/download/2ipt.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/2ipt.pdb.gz\n", "Downloading https://files.rcsb.org/download/2ipu.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/2ipu.pdb.gz\n", "Downloading https://files.rcsb.org/download/2iq9.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/2iq9.pdb.gz\n", "Downloading https://files.rcsb.org/download/2qqn.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/2qqn.pdb.gz\n", "Downloading https://files.rcsb.org/download/2r0w.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/2r0w.pdb.gz\n", "Downloading https://files.rcsb.org/download/2r0z.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/2r0z.pdb.gz\n", "Downloading https://files.rcsb.org/download/2vxt.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/2vxt.pdb.gz\n", "Downloading https://files.rcsb.org/download/2xzq.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/2xzq.pdb.gz\n", "Downloading https://files.rcsb.org/download/2y06.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/2y06.pdb.gz\n", "Downloading https://files.rcsb.org/download/2y07.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/2y07.pdb.gz\n", "Downloading https://files.rcsb.org/download/2y36.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/2y36.pdb.gz\n", "Downloading https://files.rcsb.org/download/3eys.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3eys.pdb.gz\n", "Downloading https://files.rcsb.org/download/3eyu.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3eyu.pdb.gz\n", "Downloading https://files.rcsb.org/download/3ifl.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3ifl.pdb.gz\n", "Downloading https://files.rcsb.org/download/3ifn.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3ifn.pdb.gz\n", "Downloading https://files.rcsb.org/download/3uc0.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3uc0.pdb.gz\n", "Downloading https://files.rcsb.org/download/4amk.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4amk.pdb.gz\n", "Downloading https://files.rcsb.org/download/4dgv.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4dgv.pdb.gz\n", "Downloading https://files.rcsb.org/download/4fab.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4fab.pdb.gz\n", "Downloading https://files.rcsb.org/download/4m43.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4m43.pdb.gz\n", "Downloading https://files.rcsb.org/download/4ocs.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4ocs.pdb.gz\n", "Downloading https://files.rcsb.org/download/4pub.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4pub.pdb.gz\n", "Downloading https://files.rcsb.org/download/4q2z.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4q2z.pdb.gz\n", "Downloading https://files.rcsb.org/download/4trp.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4trp.pdb.gz\n", "Downloading https://files.rcsb.org/download/4tuj.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4tuj.pdb.gz\n", "Downloading https://files.rcsb.org/download/4tuk.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4tuk.pdb.gz\n", "Downloading https://files.rcsb.org/download/4tul.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4tul.pdb.gz\n", "Downloading https://files.rcsb.org/download/4tuo.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4tuo.pdb.gz\n", "Downloading https://files.rcsb.org/download/5f3h.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5f3h.pdb.gz\n", "Downloading https://files.rcsb.org/download/5itb.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5itb.pdb.gz\n", "Downloading https://files.rcsb.org/download/5jue.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5jue.pdb.gz\n", "Downloading https://files.rcsb.org/download/5my4.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5my4.pdb.gz\n", "Downloading https://files.rcsb.org/download/5myk.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5myk.pdb.gz\n", "Downloading https://files.rcsb.org/download/5vzy.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5vzy.pdb.gz\n", "Downloading https://files.rcsb.org/download/5xqw.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5xqw.pdb.gz\n", "Downloading https://files.rcsb.org/download/6o9i.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6o9i.pdb.gz\n", "Downloading https://files.rcsb.org/download/6plh.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6plh.pdb.gz\n", "Downloading https://files.rcsb.org/download/6pxr.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6pxr.pdb.gz\n", "Downloading https://files.rcsb.org/download/6wfy.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6wfy.pdb.gz\n", "Downloading https://files.rcsb.org/download/6xzw.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6xzw.pdb.gz\n", "Downloading https://files.rcsb.org/download/7c94.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7c94.pdb.gz\n", "Downloading https://files.rcsb.org/download/1s3k.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1s3k.pdb.gz\n", "Downloading https://files.rcsb.org/download/1uwe.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1uwe.pdb.gz\n", "Downloading https://files.rcsb.org/download/2hh0.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/2hh0.pdb.gz\n", "Downloading https://files.rcsb.org/download/2o5x.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/2o5x.pdb.gz\n", "Downloading https://files.rcsb.org/download/2o5y.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/2o5y.pdb.gz\n", "Downloading https://files.rcsb.org/download/2o5z.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/2o5z.pdb.gz\n", "Downloading https://files.rcsb.org/download/3inu.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3inu.pdb.gz\n", "Downloading https://files.rcsb.org/download/3mnv.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3mnv.pdb.gz\n", "Downloading https://files.rcsb.org/download/3o2v.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3o2v.pdb.gz\n", "Downloading https://files.rcsb.org/download/3o2w.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3o2w.pdb.gz\n", "Downloading https://files.rcsb.org/download/3so3.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3so3.pdb.gz\n", "Downloading https://files.rcsb.org/download/3ulu.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3ulu.pdb.gz\n", "Downloading https://files.rcsb.org/download/3ulv.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3ulv.pdb.gz\n", "Downloading https://files.rcsb.org/download/3utz.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3utz.pdb.gz\n", "Downloading https://files.rcsb.org/download/4j1u.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4j1u.pdb.gz\n", "Downloading https://files.rcsb.org/download/4jzn.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4jzn.pdb.gz\n", "Downloading https://files.rcsb.org/download/4kq4.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4kq4.pdb.gz\n", "Downloading https://files.rcsb.org/download/4kuz.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4kuz.pdb.gz\n", "Downloading https://files.rcsb.org/download/4uv4.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4uv4.pdb.gz\n", "Downloading https://files.rcsb.org/download/4xmk.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4xmk.pdb.gz\n", "Downloading https://files.rcsb.org/download/4yhp.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4yhp.pdb.gz\n", "Downloading https://files.rcsb.org/download/4yhz.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4yhz.pdb.gz\n", "Downloading https://files.rcsb.org/download/5bmf.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5bmf.pdb.gz\n", "Downloading https://files.rcsb.org/download/5fuz.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5fuz.pdb.gz\n", "Downloading https://files.rcsb.org/download/5i15.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5i15.pdb.gz\n", "Downloading https://files.rcsb.org/download/5i1i.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5i1i.pdb.gz\n", "Downloading https://files.rcsb.org/download/5jrp.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5jrp.pdb.gz\n", "Downloading https://files.rcsb.org/download/5nyx.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5nyx.pdb.gz\n", "Downloading https://files.rcsb.org/download/5w1k.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5w1k.pdb.gz\n", "Downloading https://files.rcsb.org/download/5weq.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5weq.pdb.gz\n", "Downloading https://files.rcsb.org/download/5wux.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5wux.pdb.gz\n", "Downloading https://files.rcsb.org/download/6ev1.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6ev1.pdb.gz\n", "Downloading https://files.rcsb.org/download/6fax.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6fax.pdb.gz\n", "Downloading https://files.rcsb.org/download/6ogx.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6ogx.pdb.gz\n", "Downloading https://files.rcsb.org/download/6pe9.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6pe9.pdb.gz\n", "Downloading https://files.rcsb.org/download/6phb.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6phb.pdb.gz\n", "Downloading https://files.rcsb.org/download/6ug9.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6ug9.pdb.gz\n", "Downloading https://files.rcsb.org/download/6uvo.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6uvo.pdb.gz\n", "Downloading https://files.rcsb.org/download/6v4r.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6v4r.pdb.gz\n", "Downloading https://files.rcsb.org/download/6wla.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6wla.pdb.gz\n", "Failed to download https://files.rcsb.org/download/6wla.pdb.gz\n", "Downloading https://files.rcsb.org/download/6ywd.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6ywd.pdb.gz\n", "Downloading https://files.rcsb.org/download/1ay1.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1ay1.pdb.gz\n", "Downloading https://files.rcsb.org/download/1baf.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1baf.pdb.gz\n", "Downloading https://files.rcsb.org/download/1bog.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1bog.pdb.gz\n", "Downloading https://files.rcsb.org/download/1cfn.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1cfn.pdb.gz\n", "Downloading https://files.rcsb.org/download/1cft.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1cft.pdb.gz\n", "Downloading https://files.rcsb.org/download/1f8t.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1f8t.pdb.gz\n", "Downloading https://files.rcsb.org/download/1f90.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1f90.pdb.gz\n", "Downloading https://files.rcsb.org/download/1hh6.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1hh6.pdb.gz\n", "Downloading https://files.rcsb.org/download/1hh9.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1hh9.pdb.gz\n", "Downloading https://files.rcsb.org/download/1hi6.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1hi6.pdb.gz\n", "Downloading https://files.rcsb.org/download/1hq4.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1hq4.pdb.gz\n", "Downloading https://files.rcsb.org/download/1kcr.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1kcr.pdb.gz\n", "Downloading https://files.rcsb.org/download/2ddq.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/2ddq.pdb.gz\n", "Downloading https://files.rcsb.org/download/2v17.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/2v17.pdb.gz\n", "Downloading https://files.rcsb.org/download/32c2.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/32c2.pdb.gz\n", "Downloading https://files.rcsb.org/download/3cfd.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3cfd.pdb.gz\n", "Downloading https://files.rcsb.org/download/3cfe.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3cfe.pdb.gz\n", "Downloading https://files.rcsb.org/download/3g5v.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3g5v.pdb.gz\n", "Downloading https://files.rcsb.org/download/3g5y.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3g5y.pdb.gz\n", "Downloading https://files.rcsb.org/download/3lex.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3lex.pdb.gz\n", "Downloading https://files.rcsb.org/download/3ley.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3ley.pdb.gz\n", "Downloading https://files.rcsb.org/download/3rvt.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3rvt.pdb.gz\n", "Downloading https://files.rcsb.org/download/4xxd.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4xxd.pdb.gz\n", "Downloading https://files.rcsb.org/download/5gis.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5gis.pdb.gz\n", "Downloading https://files.rcsb.org/download/5kvg.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5kvg.pdb.gz\n", "Downloading https://files.rcsb.org/download/5niv.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5niv.pdb.gz\n", "Downloading https://files.rcsb.org/download/5nph.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5nph.pdb.gz\n", "Downloading https://files.rcsb.org/download/5tkk.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5tkk.pdb.gz\n", "Downloading https://files.rcsb.org/download/6ct7.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6ct7.pdb.gz\n", "Downloading https://files.rcsb.org/download/6nfn.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6nfn.pdb.gz\n", "Downloading https://files.rcsb.org/download/6phg.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6phg.pdb.gz\n", "Downloading https://files.rcsb.org/download/6vbq.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6vbq.pdb.gz\n", "Downloading https://files.rcsb.org/download/6xmi.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6xmi.pdb.gz\n", "Downloading https://files.rcsb.org/download/6xqw.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6xqw.pdb.gz\n", "Downloading https://files.rcsb.org/download/1eap.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1eap.pdb.gz\n", "Downloading https://files.rcsb.org/download/1mhp.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1mhp.pdb.gz\n", "Downloading https://files.rcsb.org/download/1mim.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1mim.pdb.gz\n", "Downloading https://files.rcsb.org/download/1pkq.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1pkq.pdb.gz\n", "Downloading https://files.rcsb.org/download/2fr4.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/2fr4.pdb.gz\n", "Downloading https://files.rcsb.org/download/3bkc.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3bkc.pdb.gz\n", "Downloading https://files.rcsb.org/download/3nps.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3nps.pdb.gz\n", "Downloading https://files.rcsb.org/download/4hcr.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4hcr.pdb.gz\n", "Downloading https://files.rcsb.org/download/4qxg.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4qxg.pdb.gz\n", "Downloading https://files.rcsb.org/download/4z0b.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4z0b.pdb.gz\n", "Downloading https://files.rcsb.org/download/5aze.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5aze.pdb.gz\n", "Downloading https://files.rcsb.org/download/5dd5.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5dd5.pdb.gz\n", "Downloading https://files.rcsb.org/download/5i1l.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5i1l.pdb.gz\n", "Downloading https://files.rcsb.org/download/5wk3.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5wk3.pdb.gz\n", "Downloading https://files.rcsb.org/download/6bkc.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6bkc.pdb.gz\n", "Downloading https://files.rcsb.org/download/6bkd.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6bkd.pdb.gz\n", "Downloading https://files.rcsb.org/download/6c6x.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6c6x.pdb.gz\n", "Downloading https://files.rcsb.org/download/6lkt.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6lkt.pdb.gz\n", "Downloading https://files.rcsb.org/download/6u9s.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6u9s.pdb.gz\n", "Downloading https://files.rcsb.org/download/6vi2.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6vi2.pdb.gz\n", "Downloading https://files.rcsb.org/download/1vge.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1vge.pdb.gz\n", "Downloading https://files.rcsb.org/download/2h9g.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/2h9g.pdb.gz\n", "Downloading https://files.rcsb.org/download/4hix.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4hix.pdb.gz\n", "Downloading https://files.rcsb.org/download/4isv.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4isv.pdb.gz\n", "Downloading https://files.rcsb.org/download/4lex.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4lex.pdb.gz\n", "Downloading https://files.rcsb.org/download/4lkc.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4lkc.pdb.gz\n", "Downloading https://files.rcsb.org/download/4o4y.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4o4y.pdb.gz\n", "Downloading https://files.rcsb.org/download/4ojf.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4ojf.pdb.gz\n", "Downloading https://files.rcsb.org/download/5chn.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5chn.pdb.gz\n", "Downloading https://files.rcsb.org/download/5e2v.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5e2v.pdb.gz\n", "Downloading https://files.rcsb.org/download/5e2w.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5e2w.pdb.gz\n", "Downloading https://files.rcsb.org/download/5ewi.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5ewi.pdb.gz\n", "Downloading https://files.rcsb.org/download/5j3d.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5j3d.pdb.gz\n", "Downloading https://files.rcsb.org/download/5mp1.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5mp1.pdb.gz\n", "Downloading https://files.rcsb.org/download/5mp3.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5mp3.pdb.gz\n", "Downloading https://files.rcsb.org/download/5mp5.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5mp5.pdb.gz\n", "Downloading https://files.rcsb.org/download/5mvj.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5mvj.pdb.gz\n", "Downloading https://files.rcsb.org/download/5tf1.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5tf1.pdb.gz\n", "Downloading https://files.rcsb.org/download/5v6m.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5v6m.pdb.gz\n", "Downloading https://files.rcsb.org/download/6e4y.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6e4y.pdb.gz\n", "Downloading https://files.rcsb.org/download/6e4z.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6e4z.pdb.gz\n", "Downloading https://files.rcsb.org/download/6ias.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6ias.pdb.gz\n", "Downloading https://files.rcsb.org/download/6mv5.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6mv5.pdb.gz\n", "Downloading https://files.rcsb.org/download/6otc.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6otc.pdb.gz\n", "Downloading https://files.rcsb.org/download/6xtg.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6xtg.pdb.gz\n", "Downloading https://files.rcsb.org/download/1a5f.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1a5f.pdb.gz\n", "Downloading https://files.rcsb.org/download/1e6j.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1e6j.pdb.gz\n", "Downloading https://files.rcsb.org/download/1gaf.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1gaf.pdb.gz\n", "Downloading https://files.rcsb.org/download/1hkl.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1hkl.pdb.gz\n", "Downloading https://files.rcsb.org/download/1qbl.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1qbl.pdb.gz\n", "Downloading https://files.rcsb.org/download/1qbm.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1qbm.pdb.gz\n", "Downloading https://files.rcsb.org/download/2w60.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/2w60.pdb.gz\n", "Downloading https://files.rcsb.org/download/3g04.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3g04.pdb.gz\n", "Downloading https://files.rcsb.org/download/3mnw.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3mnw.pdb.gz\n", "Downloading https://files.rcsb.org/download/3pp3.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3pp3.pdb.gz\n", "Downloading https://files.rcsb.org/download/4cmh.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4cmh.pdb.gz\n", "Downloading https://files.rcsb.org/download/4hha.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4hha.pdb.gz\n", "Downloading https://files.rcsb.org/download/4jfz.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4jfz.pdb.gz\n", "Downloading https://files.rcsb.org/download/4jg0.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4jg0.pdb.gz\n", "Downloading https://files.rcsb.org/download/4jg1.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4jg1.pdb.gz\n", "Downloading https://files.rcsb.org/download/5w05.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5w05.pdb.gz\n", "Downloading https://files.rcsb.org/download/5xli.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5xli.pdb.gz\n", "Downloading https://files.rcsb.org/download/6e62.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6e62.pdb.gz\n", "Downloading https://files.rcsb.org/download/6ko5.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6ko5.pdb.gz\n", "Downloading https://files.rcsb.org/download/6ubi.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6ubi.pdb.gz\n", "Downloading https://files.rcsb.org/download/1aj7.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1aj7.pdb.gz\n", "Downloading https://files.rcsb.org/download/1um4.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1um4.pdb.gz\n", "Downloading https://files.rcsb.org/download/1um5.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1um5.pdb.gz\n", "Downloading https://files.rcsb.org/download/1um6.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1um6.pdb.gz\n", "Downloading https://files.rcsb.org/download/1ynk.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1ynk.pdb.gz\n", "Downloading https://files.rcsb.org/download/1ynl.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1ynl.pdb.gz\n", "Downloading https://files.rcsb.org/download/2ajx.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/2ajx.pdb.gz\n", "Downloading https://files.rcsb.org/download/2ajz.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/2ajz.pdb.gz\n", "Downloading https://files.rcsb.org/download/3l95.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3l95.pdb.gz\n", "Downloading https://files.rcsb.org/download/3mcl.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3mcl.pdb.gz\n", "Downloading https://files.rcsb.org/download/3r1g.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3r1g.pdb.gz\n", "Downloading https://files.rcsb.org/download/4k23.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4k23.pdb.gz\n", "Downloading https://files.rcsb.org/download/4z5r.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4z5r.pdb.gz\n", "Downloading https://files.rcsb.org/download/5cp7.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5cp7.pdb.gz\n", "Downloading https://files.rcsb.org/download/5kzp.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5kzp.pdb.gz\n", "Downloading https://files.rcsb.org/download/6c5j.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6c5j.pdb.gz\n", "Downloading https://files.rcsb.org/download/6mto.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6mto.pdb.gz\n", "Downloading https://files.rcsb.org/download/6wo3.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6wo3.pdb.gz\n", "Downloading https://files.rcsb.org/download/6wwc.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6wwc.pdb.gz\n", "Downloading https://files.rcsb.org/download/1axt.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1axt.pdb.gz\n", "Downloading https://files.rcsb.org/download/1bln.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1bln.pdb.gz\n", "Downloading https://files.rcsb.org/download/1ct8.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1ct8.pdb.gz\n", "Downloading https://files.rcsb.org/download/1nc2.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1nc2.pdb.gz\n", "Downloading https://files.rcsb.org/download/1nc4.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1nc4.pdb.gz\n", "Downloading https://files.rcsb.org/download/1nd0.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1nd0.pdb.gz\n", "Downloading https://files.rcsb.org/download/1yed.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1yed.pdb.gz\n", "Downloading https://files.rcsb.org/download/2dtm.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/2dtm.pdb.gz\n", "Downloading https://files.rcsb.org/download/2pcp.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/2pcp.pdb.gz\n", "Downloading https://files.rcsb.org/download/3nz8.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3nz8.pdb.gz\n", "Downloading https://files.rcsb.org/download/3pho.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3pho.pdb.gz\n", "Downloading https://files.rcsb.org/download/4m61.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4m61.pdb.gz\n", "Downloading https://files.rcsb.org/download/4odw.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4odw.pdb.gz\n", "Downloading https://files.rcsb.org/download/4poz.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4poz.pdb.gz\n", "Downloading https://files.rcsb.org/download/5dlm.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5dlm.pdb.gz\n", "Downloading https://files.rcsb.org/download/5t6p.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5t6p.pdb.gz\n", "Downloading https://files.rcsb.org/download/6d11.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6d11.pdb.gz\n", "Downloading https://files.rcsb.org/download/6dc8.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6dc8.pdb.gz\n", "Downloading https://files.rcsb.org/download/6x5e.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6x5e.pdb.gz\n", "Downloading https://files.rcsb.org/download/1iai.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1iai.pdb.gz\n", "Downloading https://files.rcsb.org/download/1t2q.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1t2q.pdb.gz\n", "Downloading https://files.rcsb.org/download/2d03.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/2d03.pdb.gz\n", "Downloading https://files.rcsb.org/download/4zyp.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4zyp.pdb.gz\n", "Downloading https://files.rcsb.org/download/3i2c.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3i2c.pdb.gz\n", "Downloading https://files.rcsb.org/download/3sgd.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3sgd.pdb.gz\n", "Downloading https://files.rcsb.org/download/3sge.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3sge.pdb.gz\n", "Downloading https://files.rcsb.org/download/5d1z.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5d1z.pdb.gz\n", "Downloading https://files.rcsb.org/download/5i18.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5i18.pdb.gz\n", "Downloading https://files.rcsb.org/download/5mu0.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5mu0.pdb.gz\n", "Downloading https://files.rcsb.org/download/5mu2.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5mu2.pdb.gz\n", "Downloading https://files.rcsb.org/download/5mub.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5mub.pdb.gz\n", "Downloading https://files.rcsb.org/download/5mv3.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5mv3.pdb.gz\n", "Downloading https://files.rcsb.org/download/5mv4.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5mv4.pdb.gz\n", "Downloading https://files.rcsb.org/download/6o9h.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6o9h.pdb.gz\n", "Downloading https://files.rcsb.org/download/6s3d.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6s3d.pdb.gz\n", "Downloading https://files.rcsb.org/download/1mj8.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1mj8.pdb.gz\n", "Downloading https://files.rcsb.org/download/1vpo.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1vpo.pdb.gz\n", "Downloading https://files.rcsb.org/download/2aj3.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/2aj3.pdb.gz\n", "Downloading https://files.rcsb.org/download/2xqy.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/2xqy.pdb.gz\n", "Downloading https://files.rcsb.org/download/3b9k.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3b9k.pdb.gz\n", "Downloading https://files.rcsb.org/download/4jan.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4jan.pdb.gz\n", "Downloading https://files.rcsb.org/download/4k94.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4k94.pdb.gz\n", "Downloading https://files.rcsb.org/download/5drz.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5drz.pdb.gz\n", "Downloading https://files.rcsb.org/download/7jn5.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7jn5.pdb.gz\n", "Downloading https://files.rcsb.org/download/7kzb.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7kzb.pdb.gz\n", "Downloading https://files.rcsb.org/download/12e8.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/12e8.pdb.gz\n", "Downloading https://files.rcsb.org/download/5ifh.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5ifh.pdb.gz\n", "Downloading https://files.rcsb.org/download/5ucb.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5ucb.pdb.gz\n", "Downloading https://files.rcsb.org/download/5uek.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5uek.pdb.gz\n", "Downloading https://files.rcsb.org/download/5wtt.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5wtt.pdb.gz\n", "Downloading https://files.rcsb.org/download/6ddm.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6ddm.pdb.gz\n", "Downloading https://files.rcsb.org/download/6ddr.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6ddr.pdb.gz\n", "Downloading https://files.rcsb.org/download/1l7i.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1l7i.pdb.gz\n", "Downloading https://files.rcsb.org/download/1v7m.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1v7m.pdb.gz\n", "Downloading https://files.rcsb.org/download/2r56.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/2r56.pdb.gz\n", "Downloading https://files.rcsb.org/download/3tnn.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3tnn.pdb.gz\n", "Downloading https://files.rcsb.org/download/4ncc.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4ncc.pdb.gz\n", "Downloading https://files.rcsb.org/download/4tsa.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4tsa.pdb.gz\n", "Downloading https://files.rcsb.org/download/5dfv.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5dfv.pdb.gz\n", "Downloading https://files.rcsb.org/download/5mes.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5mes.pdb.gz\n", "Downloading https://files.rcsb.org/download/5mev.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5mev.pdb.gz\n", "Downloading https://files.rcsb.org/download/6db5.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6db5.pdb.gz\n", "Downloading https://files.rcsb.org/download/7bsc.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7bsc.pdb.gz\n", "Downloading https://files.rcsb.org/download/1egj.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1egj.pdb.gz\n", "Downloading https://files.rcsb.org/download/1sbs.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1sbs.pdb.gz\n", "Downloading https://files.rcsb.org/download/3q6g.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3q6g.pdb.gz\n", "Downloading https://files.rcsb.org/download/4jam.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4jam.pdb.gz\n", "Downloading https://files.rcsb.org/download/4uv7.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4uv7.pdb.gz\n", "Downloading https://files.rcsb.org/download/5dr5.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5dr5.pdb.gz\n", "Downloading https://files.rcsb.org/download/5wcd.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5wcd.pdb.gz\n", "Downloading https://files.rcsb.org/download/6tcp.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6tcp.pdb.gz\n", "Downloading https://files.rcsb.org/download/1q9w.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1q9w.pdb.gz\n", "Downloading https://files.rcsb.org/download/3qrg.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3qrg.pdb.gz\n", "Downloading https://files.rcsb.org/download/4ma3.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4ma3.pdb.gz\n", "Downloading https://files.rcsb.org/download/5i66.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5i66.pdb.gz\n", "Downloading https://files.rcsb.org/download/5vsh.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5vsh.pdb.gz\n", "Downloading https://files.rcsb.org/download/6azx.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6azx.pdb.gz\n", "Downloading https://files.rcsb.org/download/6ldx.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6ldx.pdb.gz\n", "Downloading https://files.rcsb.org/download/6mvl.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6mvl.pdb.gz\n", "Downloading https://files.rcsb.org/download/6weq.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6weq.pdb.gz\n", "Downloading https://files.rcsb.org/download/1q9k.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1q9k.pdb.gz\n", "Downloading https://files.rcsb.org/download/1q9l.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1q9l.pdb.gz\n", "Downloading https://files.rcsb.org/download/2a77.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/2a77.pdb.gz\n", "Downloading https://files.rcsb.org/download/2ai0.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/2ai0.pdb.gz\n", "Downloading https://files.rcsb.org/download/3gnm.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3gnm.pdb.gz\n", "Downloading https://files.rcsb.org/download/5dyo.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5dyo.pdb.gz\n", "Downloading https://files.rcsb.org/download/5x4g.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5x4g.pdb.gz\n", "Downloading https://files.rcsb.org/download/6nuy.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6nuy.pdb.gz\n", "Downloading https://files.rcsb.org/download/1uz6.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1uz6.pdb.gz\n", "Downloading https://files.rcsb.org/download/1uz8.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1uz8.pdb.gz\n", "Downloading https://files.rcsb.org/download/3bz4.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3bz4.pdb.gz\n", "Downloading https://files.rcsb.org/download/3c6s.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3c6s.pdb.gz\n", "Downloading https://files.rcsb.org/download/3cfj.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3cfj.pdb.gz\n", "Downloading https://files.rcsb.org/download/3cfk.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3cfk.pdb.gz\n", "Downloading https://files.rcsb.org/download/3ggw.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3ggw.pdb.gz\n", "Downloading https://files.rcsb.org/download/5cey.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5cey.pdb.gz\n", "Downloading https://files.rcsb.org/download/5d9q.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5d9q.pdb.gz\n", "Downloading https://files.rcsb.org/download/3mj8.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3mj8.pdb.gz\n", "Downloading https://files.rcsb.org/download/3wii.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3wii.pdb.gz\n", "Downloading https://files.rcsb.org/download/4hh9.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4hh9.pdb.gz\n", "Downloading https://files.rcsb.org/download/4hxa.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4hxa.pdb.gz\n", "Downloading https://files.rcsb.org/download/5f89.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5f89.pdb.gz\n", "Downloading https://files.rcsb.org/download/5udd.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5udd.pdb.gz\n", "Downloading https://files.rcsb.org/download/6o3a.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6o3a.pdb.gz\n", "Downloading https://files.rcsb.org/download/1fl3.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1fl3.pdb.gz\n", "Downloading https://files.rcsb.org/download/1ub5.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1ub5.pdb.gz\n", "Downloading https://files.rcsb.org/download/1ub6.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1ub6.pdb.gz\n", "Downloading https://files.rcsb.org/download/1z3g.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1z3g.pdb.gz\n", "Downloading https://files.rcsb.org/download/2a1w.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/2a1w.pdb.gz\n", "Downloading https://files.rcsb.org/download/3cfb.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3cfb.pdb.gz\n", "Downloading https://files.rcsb.org/download/6pxh.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6pxh.pdb.gz\n", "Downloading https://files.rcsb.org/download/1ck0.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1ck0.pdb.gz\n", "Downloading https://files.rcsb.org/download/2ck0.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/2ck0.pdb.gz\n", "Downloading https://files.rcsb.org/download/3ck0.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3ck0.pdb.gz\n", "Downloading https://files.rcsb.org/download/3ixt.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3ixt.pdb.gz\n", "Downloading https://files.rcsb.org/download/6dzn.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6dzn.pdb.gz\n", "Downloading https://files.rcsb.org/download/7jxd.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7jxd.pdb.gz\n", "Downloading https://files.rcsb.org/download/1lk3.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1lk3.pdb.gz\n", "Downloading https://files.rcsb.org/download/3r06.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3r06.pdb.gz\n", "Downloading https://files.rcsb.org/download/4d3c.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4d3c.pdb.gz\n", "Downloading https://files.rcsb.org/download/4hfw.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4hfw.pdb.gz\n", "Downloading https://files.rcsb.org/download/4q6i.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4q6i.pdb.gz\n", "Downloading https://files.rcsb.org/download/5c8j.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5c8j.pdb.gz\n", "Downloading https://files.rcsb.org/download/2fb4.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/2fb4.pdb.gz\n", "Downloading https://files.rcsb.org/download/3qpq.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3qpq.pdb.gz\n", "Downloading https://files.rcsb.org/download/5b71.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5b71.pdb.gz\n", "Downloading https://files.rcsb.org/download/5bvj.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5bvj.pdb.gz\n", "Downloading https://files.rcsb.org/download/5sy8.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5sy8.pdb.gz\n", "Downloading https://files.rcsb.org/download/5x8m.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5x8m.pdb.gz\n", "Downloading https://files.rcsb.org/download/1kcs.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1kcs.pdb.gz\n", "Downloading https://files.rcsb.org/download/1kcv.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1kcv.pdb.gz\n", "Downloading https://files.rcsb.org/download/4g5z.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4g5z.pdb.gz\n", "Downloading https://files.rcsb.org/download/6b0w.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6b0w.pdb.gz\n", "Downloading https://files.rcsb.org/download/6wyt.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6wyt.pdb.gz\n", "Downloading https://files.rcsb.org/download/3hc0.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3hc0.pdb.gz\n", "Downloading https://files.rcsb.org/download/4at6.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4at6.pdb.gz\n", "Downloading https://files.rcsb.org/download/4jn1.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4jn1.pdb.gz\n", "Downloading https://files.rcsb.org/download/4yr6.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4yr6.pdb.gz\n", "Downloading https://files.rcsb.org/download/5cex.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5cex.pdb.gz\n", "Downloading https://files.rcsb.org/download/5lsp.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5lsp.pdb.gz\n", "Downloading https://files.rcsb.org/download/1cic.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1cic.pdb.gz\n", "Downloading https://files.rcsb.org/download/3dgg.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3dgg.pdb.gz\n", "Downloading https://files.rcsb.org/download/5w24.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5w24.pdb.gz\n", "Downloading https://files.rcsb.org/download/6foe.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6foe.pdb.gz\n", "Downloading https://files.rcsb.org/download/1ztx.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1ztx.pdb.gz\n", "Downloading https://files.rcsb.org/download/2brr.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/2brr.pdb.gz\n", "Downloading https://files.rcsb.org/download/2orb.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/2orb.pdb.gz\n", "Downloading https://files.rcsb.org/download/5myo.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5myo.pdb.gz\n", "Downloading https://files.rcsb.org/download/6dc7.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6dc7.pdb.gz\n", "Downloading https://files.rcsb.org/download/7c95.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7c95.pdb.gz\n", "Downloading https://files.rcsb.org/download/7jwq.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7jwq.pdb.gz\n", "Downloading https://files.rcsb.org/download/3j7y.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3j7y.pdb.gz\n", "Downloading https://files.rcsb.org/download/3j9m.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3j9m.pdb.gz\n", "Failed to download https://files.rcsb.org/download/3j9m.pdb.gz\n", "Downloading https://files.rcsb.org/download/4v1a.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4v1a.pdb.gz\n", "Downloading https://files.rcsb.org/download/5aj4.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5aj4.pdb.gz\n", "Failed to download https://files.rcsb.org/download/5aj4.pdb.gz\n", "Downloading https://files.rcsb.org/download/6gaw.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6gaw.pdb.gz\n", "Failed to download https://files.rcsb.org/download/6gaw.pdb.gz\n", "Downloading https://files.rcsb.org/download/6gb2.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6gb2.pdb.gz\n", "Failed to download https://files.rcsb.org/download/6gb2.pdb.gz\n", "Downloading https://files.rcsb.org/download/6nu2.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6nu2.pdb.gz\n", "Failed to download https://files.rcsb.org/download/6nu2.pdb.gz\n", "Downloading https://files.rcsb.org/download/6nu3.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6nu3.pdb.gz\n", "Failed to download https://files.rcsb.org/download/6nu3.pdb.gz\n", "Downloading https://files.rcsb.org/download/6vlz.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6vlz.pdb.gz\n", "Failed to download https://files.rcsb.org/download/6vlz.pdb.gz\n", "Downloading https://files.rcsb.org/download/6vmi.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6vmi.pdb.gz\n", "Failed to download https://files.rcsb.org/download/6vmi.pdb.gz\n", "Downloading https://files.rcsb.org/download/6ydp.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6ydp.pdb.gz\n", "Failed to download https://files.rcsb.org/download/6ydp.pdb.gz\n", "Downloading https://files.rcsb.org/download/6ydw.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6ydw.pdb.gz\n", "Failed to download https://files.rcsb.org/download/6ydw.pdb.gz\n", "Downloading https://files.rcsb.org/download/6zm5.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6zm5.pdb.gz\n", "Failed to download https://files.rcsb.org/download/6zm5.pdb.gz\n", "Downloading https://files.rcsb.org/download/6zm6.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6zm6.pdb.gz\n", "Failed to download https://files.rcsb.org/download/6zm6.pdb.gz\n", "Downloading https://files.rcsb.org/download/6zs9.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6zs9.pdb.gz\n", "Failed to download https://files.rcsb.org/download/6zs9.pdb.gz\n", "Downloading https://files.rcsb.org/download/6zsb.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6zsb.pdb.gz\n", "Failed to download https://files.rcsb.org/download/6zsb.pdb.gz\n", "Downloading https://files.rcsb.org/download/6zsc.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6zsc.pdb.gz\n", "Failed to download https://files.rcsb.org/download/6zsc.pdb.gz\n", "Downloading https://files.rcsb.org/download/6zsd.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6zsd.pdb.gz\n", "Failed to download https://files.rcsb.org/download/6zsd.pdb.gz\n", "Downloading https://files.rcsb.org/download/6zse.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6zse.pdb.gz\n", "Failed to download https://files.rcsb.org/download/6zse.pdb.gz\n", "Downloading https://files.rcsb.org/download/6zsg.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6zsg.pdb.gz\n", "Failed to download https://files.rcsb.org/download/6zsg.pdb.gz\n", "Downloading https://files.rcsb.org/download/7a5f.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7a5f.pdb.gz\n", "Failed to download https://files.rcsb.org/download/7a5f.pdb.gz\n", "Downloading https://files.rcsb.org/download/7a5g.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7a5g.pdb.gz\n", "Failed to download https://files.rcsb.org/download/7a5g.pdb.gz\n", "Downloading https://files.rcsb.org/download/7a5i.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7a5i.pdb.gz\n", "Failed to download https://files.rcsb.org/download/7a5i.pdb.gz\n", "Downloading https://files.rcsb.org/download/7a5k.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7a5k.pdb.gz\n", "Failed to download https://files.rcsb.org/download/7a5k.pdb.gz\n", "Downloading https://files.rcsb.org/download/3jd5.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3jd5.pdb.gz\n", "Downloading https://files.rcsb.org/download/5aj3.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5aj3.pdb.gz\n", "Downloading https://files.rcsb.org/download/6gaz.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6gaz.pdb.gz\n", "Failed to download https://files.rcsb.org/download/6gaz.pdb.gz\n", "Downloading https://files.rcsb.org/download/6neq.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6neq.pdb.gz\n", "Downloading https://files.rcsb.org/download/6nf8.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6nf8.pdb.gz\n", "Downloading https://files.rcsb.org/download/6rw4.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6rw4.pdb.gz\n", "Failed to download https://files.rcsb.org/download/6rw4.pdb.gz\n", "Downloading https://files.rcsb.org/download/6rw5.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6rw5.pdb.gz\n", "Failed to download https://files.rcsb.org/download/6rw5.pdb.gz\n", "Downloading https://files.rcsb.org/download/6zsa.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6zsa.pdb.gz\n", "Failed to download https://files.rcsb.org/download/6zsa.pdb.gz\n", "Downloading https://files.rcsb.org/download/5mrc.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5mrc.pdb.gz\n", "Failed to download https://files.rcsb.org/download/5mrc.pdb.gz\n", "Downloading https://files.rcsb.org/download/5mre.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5mre.pdb.gz\n", "Failed to download https://files.rcsb.org/download/5mre.pdb.gz\n", "Downloading https://files.rcsb.org/download/5mrf.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5mrf.pdb.gz\n", "Failed to download https://files.rcsb.org/download/5mrf.pdb.gz\n", "Downloading https://files.rcsb.org/download/6yw5.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6yw5.pdb.gz\n", "Failed to download https://files.rcsb.org/download/6yw5.pdb.gz\n", "Downloading https://files.rcsb.org/download/6ywe.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6ywe.pdb.gz\n", "Failed to download https://files.rcsb.org/download/6ywe.pdb.gz\n", "Downloading https://files.rcsb.org/download/6ywx.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6ywx.pdb.gz\n", "Failed to download https://files.rcsb.org/download/6ywx.pdb.gz\n", "Downloading https://files.rcsb.org/download/6ywy.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6ywy.pdb.gz\n", "Failed to download https://files.rcsb.org/download/6ywy.pdb.gz\n", "Downloading https://files.rcsb.org/download/6hiv.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6hiv.pdb.gz\n", "Failed to download https://files.rcsb.org/download/6hiv.pdb.gz\n", "Downloading https://files.rcsb.org/download/6hiw.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6hiw.pdb.gz\n", "Failed to download https://files.rcsb.org/download/6hiw.pdb.gz\n", "Downloading https://files.rcsb.org/download/6hiz.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6hiz.pdb.gz\n", "Failed to download https://files.rcsb.org/download/6hiz.pdb.gz\n", "Downloading https://files.rcsb.org/download/6sg9.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6sg9.pdb.gz\n", "Failed to download https://files.rcsb.org/download/6sg9.pdb.gz\n", "Downloading https://files.rcsb.org/download/6sgb.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6sgb.pdb.gz\n", "Failed to download https://files.rcsb.org/download/6sgb.pdb.gz\n", "Downloading https://files.rcsb.org/download/6xyw.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6xyw.pdb.gz\n", "Failed to download https://files.rcsb.org/download/6xyw.pdb.gz\n", "Downloading https://files.rcsb.org/download/3j6b.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3j6b.pdb.gz\n", "Failed to download https://files.rcsb.org/download/3j6b.pdb.gz\n", "Downloading https://files.rcsb.org/download/4ce4.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4ce4.pdb.gz\n", "Downloading https://files.rcsb.org/download/6yws.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6yws.pdb.gz\n", "Failed to download https://files.rcsb.org/download/6yws.pdb.gz\n", "Downloading https://files.rcsb.org/download/6ywv.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6ywv.pdb.gz\n", "Failed to download https://files.rcsb.org/download/6ywv.pdb.gz\n", "Downloading https://files.rcsb.org/download/6z1p.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6z1p.pdb.gz\n", "Failed to download https://files.rcsb.org/download/6z1p.pdb.gz\n", "Downloading https://files.rcsb.org/download/4v19.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4v19.pdb.gz\n", "Downloading https://files.rcsb.org/download/6hix.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6hix.pdb.gz\n", "Failed to download https://files.rcsb.org/download/6hix.pdb.gz\n", "Downloading https://files.rcsb.org/download/6yxx.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6yxx.pdb.gz\n", "Failed to download https://files.rcsb.org/download/6yxx.pdb.gz\n", "Downloading https://files.rcsb.org/download/7aoi.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7aoi.pdb.gz\n", "Failed to download https://files.rcsb.org/download/7aoi.pdb.gz\n", "Downloading https://files.rcsb.org/download/7nsj.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7nsj.pdb.gz\n", "Failed to download https://files.rcsb.org/download/7nsj.pdb.gz\n", "Downloading https://files.rcsb.org/download/1fjg.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1fjg.pdb.gz\n", "Downloading https://files.rcsb.org/download/1hnw.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1hnw.pdb.gz\n", "Downloading https://files.rcsb.org/download/1hnx.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1hnx.pdb.gz\n", "Downloading https://files.rcsb.org/download/1hnz.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1hnz.pdb.gz\n", "Downloading https://files.rcsb.org/download/1hr0.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1hr0.pdb.gz\n", "Downloading https://files.rcsb.org/download/1ibk.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1ibk.pdb.gz\n", "Downloading https://files.rcsb.org/download/1ibl.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1ibl.pdb.gz\n", "Downloading https://files.rcsb.org/download/1ibm.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1ibm.pdb.gz\n", "Downloading https://files.rcsb.org/download/1j5e.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1j5e.pdb.gz\n", "Downloading https://files.rcsb.org/download/1n32.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1n32.pdb.gz\n", "Downloading https://files.rcsb.org/download/1n33.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1n33.pdb.gz\n", "Downloading https://files.rcsb.org/download/1n36.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1n36.pdb.gz\n", "Downloading https://files.rcsb.org/download/1vvj.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1vvj.pdb.gz\n", "Failed to download https://files.rcsb.org/download/1vvj.pdb.gz\n", "Downloading https://files.rcsb.org/download/1vy4.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1vy4.pdb.gz\n", "Failed to download https://files.rcsb.org/download/1vy4.pdb.gz\n", "Downloading https://files.rcsb.org/download/1vy5.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1vy5.pdb.gz\n", "Failed to download https://files.rcsb.org/download/1vy5.pdb.gz\n", "Downloading https://files.rcsb.org/download/1vy6.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1vy6.pdb.gz\n", "Failed to download https://files.rcsb.org/download/1vy6.pdb.gz\n", "Downloading https://files.rcsb.org/download/1vy7.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1vy7.pdb.gz\n", "Failed to download https://files.rcsb.org/download/1vy7.pdb.gz\n", "Downloading https://files.rcsb.org/download/1xmo.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1xmo.pdb.gz\n", "Downloading https://files.rcsb.org/download/1xmq.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1xmq.pdb.gz\n", "Downloading https://files.rcsb.org/download/1xnq.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1xnq.pdb.gz\n", "Downloading https://files.rcsb.org/download/1xnr.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1xnr.pdb.gz\n", "Downloading https://files.rcsb.org/download/2f4v.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/2f4v.pdb.gz\n", "Downloading https://files.rcsb.org/download/2uu9.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/2uu9.pdb.gz\n", "Downloading https://files.rcsb.org/download/2uua.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/2uua.pdb.gz\n", "Downloading https://files.rcsb.org/download/2uuc.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/2uuc.pdb.gz\n", "Downloading https://files.rcsb.org/download/2uxc.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/2uxc.pdb.gz\n", "Downloading https://files.rcsb.org/download/2uxd.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/2uxd.pdb.gz\n", "Downloading https://files.rcsb.org/download/2vqe.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/2vqe.pdb.gz\n", "Downloading https://files.rcsb.org/download/2vqf.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/2vqf.pdb.gz\n", "Downloading https://files.rcsb.org/download/2ykr.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/2ykr.pdb.gz\n", "Downloading https://files.rcsb.org/download/3j9y.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3j9y.pdb.gz\n", "Failed to download https://files.rcsb.org/download/3j9y.pdb.gz\n", "Downloading https://files.rcsb.org/download/3j9z.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3j9z.pdb.gz\n", "Failed to download https://files.rcsb.org/download/3j9z.pdb.gz\n", "Downloading https://files.rcsb.org/download/3jbv.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3jbv.pdb.gz\n", "Failed to download https://files.rcsb.org/download/3jbv.pdb.gz\n", "Downloading https://files.rcsb.org/download/3jcd.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3jcd.pdb.gz\n", "Failed to download https://files.rcsb.org/download/3jcd.pdb.gz\n", "Downloading https://files.rcsb.org/download/3jce.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3jce.pdb.gz\n", "Failed to download https://files.rcsb.org/download/3jce.pdb.gz\n", "Downloading https://files.rcsb.org/download/3jcj.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3jcj.pdb.gz\n", "Failed to download https://files.rcsb.org/download/3jcj.pdb.gz\n", "Downloading https://files.rcsb.org/download/3jcn.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3jcn.pdb.gz\n", "Failed to download https://files.rcsb.org/download/3jcn.pdb.gz\n", "Downloading https://files.rcsb.org/download/3t1h.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3t1h.pdb.gz\n", "Downloading https://files.rcsb.org/download/3t1y.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3t1y.pdb.gz\n", "Downloading https://files.rcsb.org/download/4a2i.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4a2i.pdb.gz\n", "Downloading https://files.rcsb.org/download/4adv.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4adv.pdb.gz\n", "Downloading https://files.rcsb.org/download/4aqy.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4aqy.pdb.gz\n", "Downloading https://files.rcsb.org/download/4dr1.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4dr1.pdb.gz\n", "Downloading https://files.rcsb.org/download/4dr2.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4dr2.pdb.gz\n", "Downloading https://files.rcsb.org/download/4dr4.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4dr4.pdb.gz\n", "Downloading https://files.rcsb.org/download/4dr5.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4dr5.pdb.gz\n", "Downloading https://files.rcsb.org/download/4dr6.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4dr6.pdb.gz\n", "Downloading https://files.rcsb.org/download/4dr7.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4dr7.pdb.gz\n", "Downloading https://files.rcsb.org/download/4duy.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4duy.pdb.gz\n", "Downloading https://files.rcsb.org/download/4dv4.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4dv4.pdb.gz\n", "Downloading https://files.rcsb.org/download/4dv6.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4dv6.pdb.gz\n", "Downloading https://files.rcsb.org/download/4gkj.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4gkj.pdb.gz\n", "Downloading https://files.rcsb.org/download/4gkk.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4gkk.pdb.gz\n", "Downloading https://files.rcsb.org/download/4ji0.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4ji0.pdb.gz\n", "Downloading https://files.rcsb.org/download/4ji2.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4ji2.pdb.gz\n", "Downloading https://files.rcsb.org/download/4ji4.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4ji4.pdb.gz\n", "Downloading https://files.rcsb.org/download/4ji5.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4ji5.pdb.gz\n", "Downloading https://files.rcsb.org/download/4ji6.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4ji6.pdb.gz\n", "Downloading https://files.rcsb.org/download/4ji7.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4ji7.pdb.gz\n", "Downloading https://files.rcsb.org/download/4ji8.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4ji8.pdb.gz\n", "Downloading https://files.rcsb.org/download/4jv5.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4jv5.pdb.gz\n", "Downloading https://files.rcsb.org/download/4jya.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4jya.pdb.gz\n", "Downloading https://files.rcsb.org/download/4khp.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4khp.pdb.gz\n", "Downloading https://files.rcsb.org/download/4l47.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4l47.pdb.gz\n", "Failed to download https://files.rcsb.org/download/4l47.pdb.gz\n", "Downloading https://files.rcsb.org/download/4l71.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4l71.pdb.gz\n", "Failed to download https://files.rcsb.org/download/4l71.pdb.gz\n", "Downloading https://files.rcsb.org/download/4lel.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4lel.pdb.gz\n", "Failed to download https://files.rcsb.org/download/4lel.pdb.gz\n", "Downloading https://files.rcsb.org/download/4lf4.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4lf4.pdb.gz\n", "Downloading https://files.rcsb.org/download/4lf5.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4lf5.pdb.gz\n", "Downloading https://files.rcsb.org/download/4lf6.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4lf6.pdb.gz\n", "Downloading https://files.rcsb.org/download/4lf7.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4lf7.pdb.gz\n", "Downloading https://files.rcsb.org/download/4lf8.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4lf8.pdb.gz\n", "Downloading https://files.rcsb.org/download/4lf9.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4lf9.pdb.gz\n", "Downloading https://files.rcsb.org/download/4lfa.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4lfa.pdb.gz\n", "Downloading https://files.rcsb.org/download/4lfb.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4lfb.pdb.gz\n", "Downloading https://files.rcsb.org/download/4lfc.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4lfc.pdb.gz\n", "Downloading https://files.rcsb.org/download/4lfz.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4lfz.pdb.gz\n", "Failed to download https://files.rcsb.org/download/4lfz.pdb.gz\n", "Downloading https://files.rcsb.org/download/4lnt.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4lnt.pdb.gz\n", "Failed to download https://files.rcsb.org/download/4lnt.pdb.gz\n", "Downloading https://files.rcsb.org/download/4lsk.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4lsk.pdb.gz\n", "Failed to download https://files.rcsb.org/download/4lsk.pdb.gz\n", "Downloading https://files.rcsb.org/download/4lt8.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4lt8.pdb.gz\n", "Failed to download https://files.rcsb.org/download/4lt8.pdb.gz\n", "Downloading https://files.rcsb.org/download/4nxm.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4nxm.pdb.gz\n", "Downloading https://files.rcsb.org/download/4ox9.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4ox9.pdb.gz\n", "Downloading https://files.rcsb.org/download/4p6f.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4p6f.pdb.gz\n", "Failed to download https://files.rcsb.org/download/4p6f.pdb.gz\n", "Downloading https://files.rcsb.org/download/4p70.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4p70.pdb.gz\n", "Failed to download https://files.rcsb.org/download/4p70.pdb.gz\n", "Downloading https://files.rcsb.org/download/4tua.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4tua.pdb.gz\n", "Failed to download https://files.rcsb.org/download/4tua.pdb.gz\n", "Downloading https://files.rcsb.org/download/4tub.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4tub.pdb.gz\n", "Failed to download https://files.rcsb.org/download/4tub.pdb.gz\n", "Downloading https://files.rcsb.org/download/4tuc.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4tuc.pdb.gz\n", "Failed to download https://files.rcsb.org/download/4tuc.pdb.gz\n", "Downloading https://files.rcsb.org/download/4tud.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4tud.pdb.gz\n", "Failed to download https://files.rcsb.org/download/4tud.pdb.gz\n", "Downloading https://files.rcsb.org/download/4tue.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4tue.pdb.gz\n", "Failed to download https://files.rcsb.org/download/4tue.pdb.gz\n", "Downloading https://files.rcsb.org/download/4u1u.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4u1u.pdb.gz\n", "Failed to download https://files.rcsb.org/download/4u1u.pdb.gz\n", "Downloading https://files.rcsb.org/download/4u1v.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4u1v.pdb.gz\n", "Failed to download https://files.rcsb.org/download/4u1v.pdb.gz\n", "Downloading https://files.rcsb.org/download/4u20.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4u20.pdb.gz\n", "Failed to download https://files.rcsb.org/download/4u20.pdb.gz\n", "Downloading https://files.rcsb.org/download/4u24.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4u24.pdb.gz\n", "Failed to download https://files.rcsb.org/download/4u24.pdb.gz\n", "Downloading https://files.rcsb.org/download/4u25.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4u25.pdb.gz\n", "Failed to download https://files.rcsb.org/download/4u25.pdb.gz\n", "Downloading https://files.rcsb.org/download/4u26.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4u26.pdb.gz\n", "Failed to download https://files.rcsb.org/download/4u26.pdb.gz\n", "Downloading https://files.rcsb.org/download/4u27.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4u27.pdb.gz\n", "Failed to download https://files.rcsb.org/download/4u27.pdb.gz\n", "Downloading https://files.rcsb.org/download/4v4g.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4v4g.pdb.gz\n", "Failed to download https://files.rcsb.org/download/4v4g.pdb.gz\n", "Downloading https://files.rcsb.org/download/4v4h.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4v4h.pdb.gz\n", "Failed to download https://files.rcsb.org/download/4v4h.pdb.gz\n", "Downloading https://files.rcsb.org/download/4v4r.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4v4r.pdb.gz\n", "Failed to download https://files.rcsb.org/download/4v4r.pdb.gz\n", "Downloading https://files.rcsb.org/download/4v4s.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4v4s.pdb.gz\n", "Failed to download https://files.rcsb.org/download/4v4s.pdb.gz\n", "Downloading https://files.rcsb.org/download/4v4t.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4v4t.pdb.gz\n", "Failed to download https://files.rcsb.org/download/4v4t.pdb.gz\n", "Downloading https://files.rcsb.org/download/4v4x.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4v4x.pdb.gz\n", "Failed to download https://files.rcsb.org/download/4v4x.pdb.gz\n", "Downloading https://files.rcsb.org/download/4v4y.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4v4y.pdb.gz\n", "Failed to download https://files.rcsb.org/download/4v4y.pdb.gz\n", "Downloading https://files.rcsb.org/download/4v4z.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4v4z.pdb.gz\n", "Failed to download https://files.rcsb.org/download/4v4z.pdb.gz\n", "Downloading https://files.rcsb.org/download/4v51.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4v51.pdb.gz\n", "Failed to download https://files.rcsb.org/download/4v51.pdb.gz\n", "Downloading https://files.rcsb.org/download/4v5a.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4v5a.pdb.gz\n", "Failed to download https://files.rcsb.org/download/4v5a.pdb.gz\n", "Downloading https://files.rcsb.org/download/4v5b.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4v5b.pdb.gz\n", "Failed to download https://files.rcsb.org/download/4v5b.pdb.gz\n", "Downloading https://files.rcsb.org/download/4v5c.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4v5c.pdb.gz\n", "Failed to download https://files.rcsb.org/download/4v5c.pdb.gz\n", "Downloading https://files.rcsb.org/download/4v5d.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4v5d.pdb.gz\n", "Failed to download https://files.rcsb.org/download/4v5d.pdb.gz\n", "Downloading https://files.rcsb.org/download/4v5e.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4v5e.pdb.gz\n", "Failed to download https://files.rcsb.org/download/4v5e.pdb.gz\n", "Downloading https://files.rcsb.org/download/4v5f.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4v5f.pdb.gz\n", "Failed to download https://files.rcsb.org/download/4v5f.pdb.gz\n", "Downloading https://files.rcsb.org/download/4v5g.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4v5g.pdb.gz\n", "Failed to download https://files.rcsb.org/download/4v5g.pdb.gz\n", "Downloading https://files.rcsb.org/download/4v5h.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4v5h.pdb.gz\n", "Failed to download https://files.rcsb.org/download/4v5h.pdb.gz\n", "Downloading https://files.rcsb.org/download/4v5j.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4v5j.pdb.gz\n", "Failed to download https://files.rcsb.org/download/4v5j.pdb.gz\n", "Downloading https://files.rcsb.org/download/4v5k.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4v5k.pdb.gz\n", "Failed to download https://files.rcsb.org/download/4v5k.pdb.gz\n", "Downloading https://files.rcsb.org/download/4v5l.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4v5l.pdb.gz\n", "Failed to download https://files.rcsb.org/download/4v5l.pdb.gz\n", "Downloading https://files.rcsb.org/download/4v5m.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4v5m.pdb.gz\n", "Failed to download https://files.rcsb.org/download/4v5m.pdb.gz\n", "Downloading https://files.rcsb.org/download/4v5n.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4v5n.pdb.gz\n", "Failed to download https://files.rcsb.org/download/4v5n.pdb.gz\n", "Downloading https://files.rcsb.org/download/4v5p.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4v5p.pdb.gz\n", "Failed to download https://files.rcsb.org/download/4v5p.pdb.gz\n", "Downloading https://files.rcsb.org/download/4v5q.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4v5q.pdb.gz\n", "Failed to download https://files.rcsb.org/download/4v5q.pdb.gz\n", "Downloading https://files.rcsb.org/download/4v5r.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4v5r.pdb.gz\n", "Failed to download https://files.rcsb.org/download/4v5r.pdb.gz\n", "Downloading https://files.rcsb.org/download/4v5s.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4v5s.pdb.gz\n", "Failed to download https://files.rcsb.org/download/4v5s.pdb.gz\n", "Downloading https://files.rcsb.org/download/4v63.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4v63.pdb.gz\n", "Failed to download https://files.rcsb.org/download/4v63.pdb.gz\n", "Downloading https://files.rcsb.org/download/4v67.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4v67.pdb.gz\n", "Failed to download https://files.rcsb.org/download/4v67.pdb.gz\n", "Downloading https://files.rcsb.org/download/4v68.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4v68.pdb.gz\n", "Failed to download https://files.rcsb.org/download/4v68.pdb.gz\n", "Downloading https://files.rcsb.org/download/4v69.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4v69.pdb.gz\n", "Failed to download https://files.rcsb.org/download/4v69.pdb.gz\n", "Downloading https://files.rcsb.org/download/4v6a.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4v6a.pdb.gz\n", "Failed to download https://files.rcsb.org/download/4v6a.pdb.gz\n", "Downloading https://files.rcsb.org/download/4v6f.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4v6f.pdb.gz\n", "Failed to download https://files.rcsb.org/download/4v6f.pdb.gz\n", "Downloading https://files.rcsb.org/download/4v6g.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4v6g.pdb.gz\n", "Failed to download https://files.rcsb.org/download/4v6g.pdb.gz\n", "Downloading https://files.rcsb.org/download/4v6k.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4v6k.pdb.gz\n", "Failed to download https://files.rcsb.org/download/4v6k.pdb.gz\n", "Downloading https://files.rcsb.org/download/4v6l.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4v6l.pdb.gz\n", "Failed to download https://files.rcsb.org/download/4v6l.pdb.gz\n", "Downloading https://files.rcsb.org/download/4v6n.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4v6n.pdb.gz\n", "Failed to download https://files.rcsb.org/download/4v6n.pdb.gz\n", "Downloading https://files.rcsb.org/download/4v6o.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4v6o.pdb.gz\n", "Failed to download https://files.rcsb.org/download/4v6o.pdb.gz\n", "Downloading https://files.rcsb.org/download/4v6p.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4v6p.pdb.gz\n", "Failed to download https://files.rcsb.org/download/4v6p.pdb.gz\n", "Downloading https://files.rcsb.org/download/4v6q.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4v6q.pdb.gz\n", "Failed to download https://files.rcsb.org/download/4v6q.pdb.gz\n", "Downloading https://files.rcsb.org/download/4v6r.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4v6r.pdb.gz\n", "Failed to download https://files.rcsb.org/download/4v6r.pdb.gz\n", "Downloading https://files.rcsb.org/download/4v6s.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4v6s.pdb.gz\n", "Failed to download https://files.rcsb.org/download/4v6s.pdb.gz\n", "Downloading https://files.rcsb.org/download/4v6t.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4v6t.pdb.gz\n", "Failed to download https://files.rcsb.org/download/4v6t.pdb.gz\n", "Downloading https://files.rcsb.org/download/4v6v.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4v6v.pdb.gz\n", "Failed to download https://files.rcsb.org/download/4v6v.pdb.gz\n", "Downloading https://files.rcsb.org/download/4v6y.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4v6y.pdb.gz\n", "Failed to download https://files.rcsb.org/download/4v6y.pdb.gz\n", "Downloading https://files.rcsb.org/download/4v70.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4v70.pdb.gz\n", "Failed to download https://files.rcsb.org/download/4v70.pdb.gz\n", "Downloading https://files.rcsb.org/download/4v74.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4v74.pdb.gz\n", "Failed to download https://files.rcsb.org/download/4v74.pdb.gz\n", "Downloading https://files.rcsb.org/download/4v75.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4v75.pdb.gz\n", "Failed to download https://files.rcsb.org/download/4v75.pdb.gz\n", "Downloading https://files.rcsb.org/download/4v76.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4v76.pdb.gz\n", "Failed to download https://files.rcsb.org/download/4v76.pdb.gz\n", "Downloading https://files.rcsb.org/download/4v77.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4v77.pdb.gz\n", "Failed to download https://files.rcsb.org/download/4v77.pdb.gz\n", "Downloading https://files.rcsb.org/download/4v78.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4v78.pdb.gz\n", "Failed to download https://files.rcsb.org/download/4v78.pdb.gz\n", "Downloading https://files.rcsb.org/download/4v7a.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4v7a.pdb.gz\n", "Failed to download https://files.rcsb.org/download/4v7a.pdb.gz\n", "Downloading https://files.rcsb.org/download/4v7b.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4v7b.pdb.gz\n", "Failed to download https://files.rcsb.org/download/4v7b.pdb.gz\n", "Downloading https://files.rcsb.org/download/4v7l.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4v7l.pdb.gz\n", "Failed to download https://files.rcsb.org/download/4v7l.pdb.gz\n", "Downloading https://files.rcsb.org/download/4v7s.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4v7s.pdb.gz\n", "Failed to download https://files.rcsb.org/download/4v7s.pdb.gz\n", "Downloading https://files.rcsb.org/download/4v7t.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4v7t.pdb.gz\n", "Failed to download https://files.rcsb.org/download/4v7t.pdb.gz\n", "Downloading https://files.rcsb.org/download/4v7u.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4v7u.pdb.gz\n", "Failed to download https://files.rcsb.org/download/4v7u.pdb.gz\n", "Downloading https://files.rcsb.org/download/4v7v.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4v7v.pdb.gz\n", "Failed to download https://files.rcsb.org/download/4v7v.pdb.gz\n", "Downloading https://files.rcsb.org/download/4v7w.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4v7w.pdb.gz\n", "Failed to download https://files.rcsb.org/download/4v7w.pdb.gz\n", "Downloading https://files.rcsb.org/download/4v7x.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4v7x.pdb.gz\n", "Failed to download https://files.rcsb.org/download/4v7x.pdb.gz\n", "Downloading https://files.rcsb.org/download/4v7y.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4v7y.pdb.gz\n", "Failed to download https://files.rcsb.org/download/4v7y.pdb.gz\n", "Downloading https://files.rcsb.org/download/4v7z.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4v7z.pdb.gz\n", "Failed to download https://files.rcsb.org/download/4v7z.pdb.gz\n", "Downloading https://files.rcsb.org/download/4v83.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4v83.pdb.gz\n", "Failed to download https://files.rcsb.org/download/4v83.pdb.gz\n", "Downloading https://files.rcsb.org/download/4v84.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4v84.pdb.gz\n", "Failed to download https://files.rcsb.org/download/4v84.pdb.gz\n", "Downloading https://files.rcsb.org/download/4v85.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4v85.pdb.gz\n", "Failed to download https://files.rcsb.org/download/4v85.pdb.gz\n", "Downloading https://files.rcsb.org/download/4v87.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4v87.pdb.gz\n", "Failed to download https://files.rcsb.org/download/4v87.pdb.gz\n", "Downloading https://files.rcsb.org/download/4v89.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4v89.pdb.gz\n", "Failed to download https://files.rcsb.org/download/4v89.pdb.gz\n", "Downloading https://files.rcsb.org/download/4v8a.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4v8a.pdb.gz\n", "Failed to download https://files.rcsb.org/download/4v8a.pdb.gz\n", "Downloading https://files.rcsb.org/download/4v8b.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4v8b.pdb.gz\n", "Failed to download https://files.rcsb.org/download/4v8b.pdb.gz\n", "Downloading https://files.rcsb.org/download/4v8c.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4v8c.pdb.gz\n", "Failed to download https://files.rcsb.org/download/4v8c.pdb.gz\n", "Downloading https://files.rcsb.org/download/4v8d.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4v8d.pdb.gz\n", "Failed to download https://files.rcsb.org/download/4v8d.pdb.gz\n", "Downloading https://files.rcsb.org/download/4v8e.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4v8e.pdb.gz\n", "Failed to download https://files.rcsb.org/download/4v8e.pdb.gz\n", "Downloading https://files.rcsb.org/download/4v8f.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4v8f.pdb.gz\n", "Failed to download https://files.rcsb.org/download/4v8f.pdb.gz\n", "Downloading https://files.rcsb.org/download/4v8g.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4v8g.pdb.gz\n", "Failed to download https://files.rcsb.org/download/4v8g.pdb.gz\n", "Downloading https://files.rcsb.org/download/4v8h.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4v8h.pdb.gz\n", "Failed to download https://files.rcsb.org/download/4v8h.pdb.gz\n", "Downloading https://files.rcsb.org/download/4v8i.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4v8i.pdb.gz\n", "Failed to download https://files.rcsb.org/download/4v8i.pdb.gz\n", "Downloading https://files.rcsb.org/download/4v8j.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4v8j.pdb.gz\n", "Failed to download https://files.rcsb.org/download/4v8j.pdb.gz\n", "Downloading https://files.rcsb.org/download/4v8q.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4v8q.pdb.gz\n", "Failed to download https://files.rcsb.org/download/4v8q.pdb.gz\n", "Downloading https://files.rcsb.org/download/4v8u.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4v8u.pdb.gz\n", "Failed to download https://files.rcsb.org/download/4v8u.pdb.gz\n", "Downloading https://files.rcsb.org/download/4v8x.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4v8x.pdb.gz\n", "Failed to download https://files.rcsb.org/download/4v8x.pdb.gz\n", "Downloading https://files.rcsb.org/download/4v90.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4v90.pdb.gz\n", "Failed to download https://files.rcsb.org/download/4v90.pdb.gz\n", "Downloading https://files.rcsb.org/download/4v95.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4v95.pdb.gz\n", "Failed to download https://files.rcsb.org/download/4v95.pdb.gz\n", "Downloading https://files.rcsb.org/download/4v97.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4v97.pdb.gz\n", "Failed to download https://files.rcsb.org/download/4v97.pdb.gz\n", "Downloading https://files.rcsb.org/download/4v9a.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4v9a.pdb.gz\n", "Failed to download https://files.rcsb.org/download/4v9a.pdb.gz\n", "Downloading https://files.rcsb.org/download/4v9b.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4v9b.pdb.gz\n", "Failed to download https://files.rcsb.org/download/4v9b.pdb.gz\n", "Downloading https://files.rcsb.org/download/4v9c.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4v9c.pdb.gz\n", "Failed to download https://files.rcsb.org/download/4v9c.pdb.gz\n", "Downloading https://files.rcsb.org/download/4v9d.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4v9d.pdb.gz\n", "Failed to download https://files.rcsb.org/download/4v9d.pdb.gz\n", "Downloading https://files.rcsb.org/download/4v9h.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4v9h.pdb.gz\n", "Failed to download https://files.rcsb.org/download/4v9h.pdb.gz\n", "Downloading https://files.rcsb.org/download/4v9i.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4v9i.pdb.gz\n", "Failed to download https://files.rcsb.org/download/4v9i.pdb.gz\n", "Downloading https://files.rcsb.org/download/4v9j.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4v9j.pdb.gz\n", "Failed to download https://files.rcsb.org/download/4v9j.pdb.gz\n", "Downloading https://files.rcsb.org/download/4v9k.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4v9k.pdb.gz\n", "Failed to download https://files.rcsb.org/download/4v9k.pdb.gz\n", "Downloading https://files.rcsb.org/download/4v9l.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4v9l.pdb.gz\n", "Failed to download https://files.rcsb.org/download/4v9l.pdb.gz\n", "Downloading https://files.rcsb.org/download/4v9m.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4v9m.pdb.gz\n", "Failed to download https://files.rcsb.org/download/4v9m.pdb.gz\n", "Downloading https://files.rcsb.org/download/4v9o.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4v9o.pdb.gz\n", "Failed to download https://files.rcsb.org/download/4v9o.pdb.gz\n", "Downloading https://files.rcsb.org/download/4v9p.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4v9p.pdb.gz\n", "Failed to download https://files.rcsb.org/download/4v9p.pdb.gz\n", "Downloading https://files.rcsb.org/download/4v9r.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4v9r.pdb.gz\n", "Failed to download https://files.rcsb.org/download/4v9r.pdb.gz\n", "Downloading https://files.rcsb.org/download/4v9s.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4v9s.pdb.gz\n", "Failed to download https://files.rcsb.org/download/4v9s.pdb.gz\n", "Downloading https://files.rcsb.org/download/4w2e.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4w2e.pdb.gz\n", "Failed to download https://files.rcsb.org/download/4w2e.pdb.gz\n", "Downloading https://files.rcsb.org/download/4w2f.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4w2f.pdb.gz\n", "Failed to download https://files.rcsb.org/download/4w2f.pdb.gz\n", "Downloading https://files.rcsb.org/download/4w2g.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4w2g.pdb.gz\n", "Failed to download https://files.rcsb.org/download/4w2g.pdb.gz\n", "Downloading https://files.rcsb.org/download/4w2h.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4w2h.pdb.gz\n", "Failed to download https://files.rcsb.org/download/4w2h.pdb.gz\n", "Downloading https://files.rcsb.org/download/4w2i.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4w2i.pdb.gz\n", "Failed to download https://files.rcsb.org/download/4w2i.pdb.gz\n", "Downloading https://files.rcsb.org/download/4w4g.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4w4g.pdb.gz\n", "Failed to download https://files.rcsb.org/download/4w4g.pdb.gz\n", "Downloading https://files.rcsb.org/download/4wf1.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4wf1.pdb.gz\n", "Failed to download https://files.rcsb.org/download/4wf1.pdb.gz\n", "Downloading https://files.rcsb.org/download/4woi.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4woi.pdb.gz\n", "Failed to download https://files.rcsb.org/download/4woi.pdb.gz\n", "Downloading https://files.rcsb.org/download/4wpo.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4wpo.pdb.gz\n", "Failed to download https://files.rcsb.org/download/4wpo.pdb.gz\n", "Downloading https://files.rcsb.org/download/4wq1.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4wq1.pdb.gz\n", "Failed to download https://files.rcsb.org/download/4wq1.pdb.gz\n", "Downloading https://files.rcsb.org/download/4wqf.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4wqf.pdb.gz\n", "Failed to download https://files.rcsb.org/download/4wqf.pdb.gz\n", "Downloading https://files.rcsb.org/download/4wqr.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4wqr.pdb.gz\n", "Failed to download https://files.rcsb.org/download/4wqr.pdb.gz\n", "Downloading https://files.rcsb.org/download/4wqu.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4wqu.pdb.gz\n", "Failed to download https://files.rcsb.org/download/4wqu.pdb.gz\n", "Downloading https://files.rcsb.org/download/4wqy.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4wqy.pdb.gz\n", "Failed to download https://files.rcsb.org/download/4wqy.pdb.gz\n", "Downloading https://files.rcsb.org/download/4wr6.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4wr6.pdb.gz\n", "Failed to download https://files.rcsb.org/download/4wr6.pdb.gz\n", "Downloading https://files.rcsb.org/download/4wra.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4wra.pdb.gz\n", "Failed to download https://files.rcsb.org/download/4wra.pdb.gz\n", "Downloading https://files.rcsb.org/download/4wro.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4wro.pdb.gz\n", "Failed to download https://files.rcsb.org/download/4wro.pdb.gz\n", "Downloading https://files.rcsb.org/download/4wsd.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4wsd.pdb.gz\n", "Failed to download https://files.rcsb.org/download/4wsd.pdb.gz\n", "Downloading https://files.rcsb.org/download/4wsm.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4wsm.pdb.gz\n", "Failed to download https://files.rcsb.org/download/4wsm.pdb.gz\n", "Downloading https://files.rcsb.org/download/4wt1.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4wt1.pdb.gz\n", "Failed to download https://files.rcsb.org/download/4wt1.pdb.gz\n", "Downloading https://files.rcsb.org/download/4wt8.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4wt8.pdb.gz\n", "Failed to download https://files.rcsb.org/download/4wt8.pdb.gz\n", "Downloading https://files.rcsb.org/download/4wu1.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4wu1.pdb.gz\n", "Failed to download https://files.rcsb.org/download/4wu1.pdb.gz\n", "Downloading https://files.rcsb.org/download/4www.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4www.pdb.gz\n", "Failed to download https://files.rcsb.org/download/4www.pdb.gz\n", "Downloading https://files.rcsb.org/download/4wzd.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4wzd.pdb.gz\n", "Failed to download https://files.rcsb.org/download/4wzd.pdb.gz\n", "Downloading https://files.rcsb.org/download/4wzo.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4wzo.pdb.gz\n", "Failed to download https://files.rcsb.org/download/4wzo.pdb.gz\n", "Downloading https://files.rcsb.org/download/4xej.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4xej.pdb.gz\n", "Failed to download https://files.rcsb.org/download/4xej.pdb.gz\n", "Downloading https://files.rcsb.org/download/4y4o.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4y4o.pdb.gz\n", "Failed to download https://files.rcsb.org/download/4y4o.pdb.gz\n", "Downloading https://files.rcsb.org/download/4y4p.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4y4p.pdb.gz\n", "Failed to download https://files.rcsb.org/download/4y4p.pdb.gz\n", "Downloading https://files.rcsb.org/download/4ybb.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4ybb.pdb.gz\n", "Failed to download https://files.rcsb.org/download/4ybb.pdb.gz\n", "Downloading https://files.rcsb.org/download/4ypb.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4ypb.pdb.gz\n", "Failed to download https://files.rcsb.org/download/4ypb.pdb.gz\n", "Downloading https://files.rcsb.org/download/4yy3.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4yy3.pdb.gz\n", "Downloading https://files.rcsb.org/download/4yzv.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4yzv.pdb.gz\n", "Failed to download https://files.rcsb.org/download/4yzv.pdb.gz\n", "Downloading https://files.rcsb.org/download/4z3s.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4z3s.pdb.gz\n", "Failed to download https://files.rcsb.org/download/4z3s.pdb.gz\n", "Downloading https://files.rcsb.org/download/4z8c.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4z8c.pdb.gz\n", "Failed to download https://files.rcsb.org/download/4z8c.pdb.gz\n", "Downloading https://files.rcsb.org/download/4zsn.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4zsn.pdb.gz\n", "Failed to download https://files.rcsb.org/download/4zsn.pdb.gz\n", "Downloading https://files.rcsb.org/download/5afi.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5afi.pdb.gz\n", "Failed to download https://files.rcsb.org/download/5afi.pdb.gz\n", "Downloading https://files.rcsb.org/download/5br8.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5br8.pdb.gz\n", "Downloading https://files.rcsb.org/download/5czp.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5czp.pdb.gz\n", "Failed to download https://files.rcsb.org/download/5czp.pdb.gz\n", "Downloading https://files.rcsb.org/download/5d8b.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5d8b.pdb.gz\n", "Failed to download https://files.rcsb.org/download/5d8b.pdb.gz\n", "Downloading https://files.rcsb.org/download/5dfe.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5dfe.pdb.gz\n", "Failed to download https://files.rcsb.org/download/5dfe.pdb.gz\n", "Downloading https://files.rcsb.org/download/5dox.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5dox.pdb.gz\n", "Failed to download https://files.rcsb.org/download/5dox.pdb.gz\n", "Downloading https://files.rcsb.org/download/5doy.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5doy.pdb.gz\n", "Failed to download https://files.rcsb.org/download/5doy.pdb.gz\n", "Downloading https://files.rcsb.org/download/5e7k.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5e7k.pdb.gz\n", "Failed to download https://files.rcsb.org/download/5e7k.pdb.gz\n", "Downloading https://files.rcsb.org/download/5e81.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5e81.pdb.gz\n", "Failed to download https://files.rcsb.org/download/5e81.pdb.gz\n", "Downloading https://files.rcsb.org/download/5el4.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5el4.pdb.gz\n", "Failed to download https://files.rcsb.org/download/5el4.pdb.gz\n", "Downloading https://files.rcsb.org/download/5el5.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5el5.pdb.gz\n", "Failed to download https://files.rcsb.org/download/5el5.pdb.gz\n", "Downloading https://files.rcsb.org/download/5el6.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5el6.pdb.gz\n", "Failed to download https://files.rcsb.org/download/5el6.pdb.gz\n", "Downloading https://files.rcsb.org/download/5el7.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5el7.pdb.gz\n", "Failed to download https://files.rcsb.org/download/5el7.pdb.gz\n", "Downloading https://files.rcsb.org/download/5fdu.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5fdu.pdb.gz\n", "Failed to download https://files.rcsb.org/download/5fdu.pdb.gz\n", "Downloading https://files.rcsb.org/download/5fdv.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5fdv.pdb.gz\n", "Failed to download https://files.rcsb.org/download/5fdv.pdb.gz\n", "Downloading https://files.rcsb.org/download/5h5u.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5h5u.pdb.gz\n", "Failed to download https://files.rcsb.org/download/5h5u.pdb.gz\n", "Downloading https://files.rcsb.org/download/5hau.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5hau.pdb.gz\n", "Failed to download https://files.rcsb.org/download/5hau.pdb.gz\n", "Downloading https://files.rcsb.org/download/5hcp.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5hcp.pdb.gz\n", "Failed to download https://files.rcsb.org/download/5hcp.pdb.gz\n", "Downloading https://files.rcsb.org/download/5hcq.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5hcq.pdb.gz\n", "Failed to download https://files.rcsb.org/download/5hcq.pdb.gz\n", "Downloading https://files.rcsb.org/download/5hcr.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5hcr.pdb.gz\n", "Failed to download https://files.rcsb.org/download/5hcr.pdb.gz\n", "Downloading https://files.rcsb.org/download/5hd1.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5hd1.pdb.gz\n", "Failed to download https://files.rcsb.org/download/5hd1.pdb.gz\n", "Downloading https://files.rcsb.org/download/5ib7.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5ib7.pdb.gz\n", "Failed to download https://files.rcsb.org/download/5ib7.pdb.gz\n", "Downloading https://files.rcsb.org/download/5ib8.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5ib8.pdb.gz\n", "Failed to download https://files.rcsb.org/download/5ib8.pdb.gz\n", "Downloading https://files.rcsb.org/download/5ibb.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5ibb.pdb.gz\n", "Failed to download https://files.rcsb.org/download/5ibb.pdb.gz\n", "Downloading https://files.rcsb.org/download/5imq.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5imq.pdb.gz\n", "Failed to download https://files.rcsb.org/download/5imq.pdb.gz\n", "Downloading https://files.rcsb.org/download/5iqr.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5iqr.pdb.gz\n", "Failed to download https://files.rcsb.org/download/5iqr.pdb.gz\n", "Downloading https://files.rcsb.org/download/5it8.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5it8.pdb.gz\n", "Failed to download https://files.rcsb.org/download/5it8.pdb.gz\n", "Downloading https://files.rcsb.org/download/5j30.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5j30.pdb.gz\n", "Failed to download https://files.rcsb.org/download/5j30.pdb.gz\n", "Downloading https://files.rcsb.org/download/5j3c.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5j3c.pdb.gz\n", "Failed to download https://files.rcsb.org/download/5j3c.pdb.gz\n", "Downloading https://files.rcsb.org/download/5j4b.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5j4b.pdb.gz\n", "Failed to download https://files.rcsb.org/download/5j4b.pdb.gz\n", "Downloading https://files.rcsb.org/download/5j4c.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5j4c.pdb.gz\n", "Failed to download https://files.rcsb.org/download/5j4c.pdb.gz\n", "Downloading https://files.rcsb.org/download/5j4d.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5j4d.pdb.gz\n", "Failed to download https://files.rcsb.org/download/5j4d.pdb.gz\n", "Downloading https://files.rcsb.org/download/5j5b.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5j5b.pdb.gz\n", "Failed to download https://files.rcsb.org/download/5j5b.pdb.gz\n", "Downloading https://files.rcsb.org/download/5j7l.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5j7l.pdb.gz\n", "Failed to download https://files.rcsb.org/download/5j7l.pdb.gz\n", "Downloading https://files.rcsb.org/download/5j88.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5j88.pdb.gz\n", "Failed to download https://files.rcsb.org/download/5j88.pdb.gz\n", "Downloading https://files.rcsb.org/download/5j8a.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5j8a.pdb.gz\n", "Failed to download https://files.rcsb.org/download/5j8a.pdb.gz\n", "Downloading https://files.rcsb.org/download/5j8b.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5j8b.pdb.gz\n", "Failed to download https://files.rcsb.org/download/5j8b.pdb.gz\n", "Downloading https://files.rcsb.org/download/5j91.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5j91.pdb.gz\n", "Failed to download https://files.rcsb.org/download/5j91.pdb.gz\n", "Downloading https://files.rcsb.org/download/5jc9.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5jc9.pdb.gz\n", "Failed to download https://files.rcsb.org/download/5jc9.pdb.gz\n", "Downloading https://files.rcsb.org/download/5jte.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5jte.pdb.gz\n", "Failed to download https://files.rcsb.org/download/5jte.pdb.gz\n", "Downloading https://files.rcsb.org/download/5ju8.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5ju8.pdb.gz\n", "Failed to download https://files.rcsb.org/download/5ju8.pdb.gz\n", "Downloading https://files.rcsb.org/download/5kcr.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5kcr.pdb.gz\n", "Failed to download https://files.rcsb.org/download/5kcr.pdb.gz\n", "Downloading https://files.rcsb.org/download/5kcs.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5kcs.pdb.gz\n", "Failed to download https://files.rcsb.org/download/5kcs.pdb.gz\n", "Downloading https://files.rcsb.org/download/5kps.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5kps.pdb.gz\n", "Failed to download https://files.rcsb.org/download/5kps.pdb.gz\n", "Downloading https://files.rcsb.org/download/5kpv.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5kpv.pdb.gz\n", "Failed to download https://files.rcsb.org/download/5kpv.pdb.gz\n", "Downloading https://files.rcsb.org/download/5kpw.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5kpw.pdb.gz\n", "Failed to download https://files.rcsb.org/download/5kpw.pdb.gz\n", "Downloading https://files.rcsb.org/download/5kpx.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5kpx.pdb.gz\n", "Failed to download https://files.rcsb.org/download/5kpx.pdb.gz\n", "Downloading https://files.rcsb.org/download/5l3p.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5l3p.pdb.gz\n", "Failed to download https://files.rcsb.org/download/5l3p.pdb.gz\n", "Downloading https://files.rcsb.org/download/5li0.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5li0.pdb.gz\n", "Failed to download https://files.rcsb.org/download/5li0.pdb.gz\n", "Downloading https://files.rcsb.org/download/5lmn.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5lmn.pdb.gz\n", "Downloading https://files.rcsb.org/download/5lmo.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5lmo.pdb.gz\n", "Downloading https://files.rcsb.org/download/5lmp.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5lmp.pdb.gz\n", "Downloading https://files.rcsb.org/download/5lmq.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5lmq.pdb.gz\n", "Downloading https://files.rcsb.org/download/5lmr.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5lmr.pdb.gz\n", "Downloading https://files.rcsb.org/download/5lmt.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5lmt.pdb.gz\n", "Downloading https://files.rcsb.org/download/5lmu.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5lmu.pdb.gz\n", "Downloading https://files.rcsb.org/download/5lmv.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5lmv.pdb.gz\n", "Downloading https://files.rcsb.org/download/5lza.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5lza.pdb.gz\n", "Failed to download https://files.rcsb.org/download/5lza.pdb.gz\n", "Downloading https://files.rcsb.org/download/5lzc.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5lzc.pdb.gz\n", "Failed to download https://files.rcsb.org/download/5lzc.pdb.gz\n", "Downloading https://files.rcsb.org/download/5lzd.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5lzd.pdb.gz\n", "Failed to download https://files.rcsb.org/download/5lzd.pdb.gz\n", "Downloading https://files.rcsb.org/download/5lze.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5lze.pdb.gz\n", "Failed to download https://files.rcsb.org/download/5lze.pdb.gz\n", "Downloading https://files.rcsb.org/download/5mdv.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5mdv.pdb.gz\n", "Failed to download https://files.rcsb.org/download/5mdv.pdb.gz\n", "Downloading https://files.rcsb.org/download/5mdw.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5mdw.pdb.gz\n", "Failed to download https://files.rcsb.org/download/5mdw.pdb.gz\n", "Downloading https://files.rcsb.org/download/5mdy.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5mdy.pdb.gz\n", "Failed to download https://files.rcsb.org/download/5mdy.pdb.gz\n", "Downloading https://files.rcsb.org/download/5mdz.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5mdz.pdb.gz\n", "Failed to download https://files.rcsb.org/download/5mdz.pdb.gz\n", "Downloading https://files.rcsb.org/download/5me0.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5me0.pdb.gz\n", "Downloading https://files.rcsb.org/download/5me1.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5me1.pdb.gz\n", "Downloading https://files.rcsb.org/download/5mgp.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5mgp.pdb.gz\n", "Failed to download https://files.rcsb.org/download/5mgp.pdb.gz\n", "Downloading https://files.rcsb.org/download/5mmj.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5mmj.pdb.gz\n", "Downloading https://files.rcsb.org/download/5mmm.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5mmm.pdb.gz\n", "Failed to download https://files.rcsb.org/download/5mmm.pdb.gz\n", "Downloading https://files.rcsb.org/download/5my1.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5my1.pdb.gz\n", "Downloading https://files.rcsb.org/download/5myj.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5myj.pdb.gz\n", "Failed to download https://files.rcsb.org/download/5myj.pdb.gz\n", "Downloading https://files.rcsb.org/download/5ndj.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5ndj.pdb.gz\n", "Failed to download https://files.rcsb.org/download/5ndj.pdb.gz\n", "Downloading https://files.rcsb.org/download/5ndk.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5ndk.pdb.gz\n", "Failed to download https://files.rcsb.org/download/5ndk.pdb.gz\n", "Downloading https://files.rcsb.org/download/5ngm.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5ngm.pdb.gz\n", "Failed to download https://files.rcsb.org/download/5ngm.pdb.gz\n", "Downloading https://files.rcsb.org/download/5np6.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5np6.pdb.gz\n", "Failed to download https://files.rcsb.org/download/5np6.pdb.gz\n", "Downloading https://files.rcsb.org/download/5nwy.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5nwy.pdb.gz\n", "Failed to download https://files.rcsb.org/download/5nwy.pdb.gz\n", "Downloading https://files.rcsb.org/download/5o2r.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5o2r.pdb.gz\n", "Failed to download https://files.rcsb.org/download/5o2r.pdb.gz\n", "Downloading https://files.rcsb.org/download/5o5j.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5o5j.pdb.gz\n", "Downloading https://files.rcsb.org/download/5o61.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5o61.pdb.gz\n", "Failed to download https://files.rcsb.org/download/5o61.pdb.gz\n", "Downloading https://files.rcsb.org/download/5ot7.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5ot7.pdb.gz\n", "Failed to download https://files.rcsb.org/download/5ot7.pdb.gz\n", "Downloading https://files.rcsb.org/download/5t7v.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5t7v.pdb.gz\n", "Failed to download https://files.rcsb.org/download/5t7v.pdb.gz\n", "Downloading https://files.rcsb.org/download/5u4i.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5u4i.pdb.gz\n", "Failed to download https://files.rcsb.org/download/5u4i.pdb.gz\n", "Downloading https://files.rcsb.org/download/5u9f.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5u9f.pdb.gz\n", "Failed to download https://files.rcsb.org/download/5u9f.pdb.gz\n", "Downloading https://files.rcsb.org/download/5u9g.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5u9g.pdb.gz\n", "Failed to download https://files.rcsb.org/download/5u9g.pdb.gz\n", "Downloading https://files.rcsb.org/download/5uq7.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5uq7.pdb.gz\n", "Failed to download https://files.rcsb.org/download/5uq7.pdb.gz\n", "Downloading https://files.rcsb.org/download/5uq8.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5uq8.pdb.gz\n", "Failed to download https://files.rcsb.org/download/5uq8.pdb.gz\n", "Downloading https://files.rcsb.org/download/5uyk.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5uyk.pdb.gz\n", "Failed to download https://files.rcsb.org/download/5uyk.pdb.gz\n", "Downloading https://files.rcsb.org/download/5uyl.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5uyl.pdb.gz\n", "Failed to download https://files.rcsb.org/download/5uyl.pdb.gz\n", "Downloading https://files.rcsb.org/download/5uym.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5uym.pdb.gz\n", "Failed to download https://files.rcsb.org/download/5uym.pdb.gz\n", "Downloading https://files.rcsb.org/download/5uyn.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5uyn.pdb.gz\n", "Failed to download https://files.rcsb.org/download/5uyn.pdb.gz\n", "Downloading https://files.rcsb.org/download/5uyp.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5uyp.pdb.gz\n", "Failed to download https://files.rcsb.org/download/5uyp.pdb.gz\n", "Downloading https://files.rcsb.org/download/5uyq.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5uyq.pdb.gz\n", "Failed to download https://files.rcsb.org/download/5uyq.pdb.gz\n", "Downloading https://files.rcsb.org/download/5vp2.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5vp2.pdb.gz\n", "Failed to download https://files.rcsb.org/download/5vp2.pdb.gz\n", "Downloading https://files.rcsb.org/download/5vpo.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5vpo.pdb.gz\n", "Failed to download https://files.rcsb.org/download/5vpo.pdb.gz\n", "Downloading https://files.rcsb.org/download/5vpp.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5vpp.pdb.gz\n", "Failed to download https://files.rcsb.org/download/5vpp.pdb.gz\n", "Downloading https://files.rcsb.org/download/5w4k.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5w4k.pdb.gz\n", "Failed to download https://files.rcsb.org/download/5w4k.pdb.gz\n", "Downloading https://files.rcsb.org/download/5wdt.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5wdt.pdb.gz\n", "Failed to download https://files.rcsb.org/download/5wdt.pdb.gz\n", "Downloading https://files.rcsb.org/download/5we4.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5we4.pdb.gz\n", "Failed to download https://files.rcsb.org/download/5we4.pdb.gz\n", "Downloading https://files.rcsb.org/download/5we6.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5we6.pdb.gz\n", "Failed to download https://files.rcsb.org/download/5we6.pdb.gz\n", "Downloading https://files.rcsb.org/download/5wf0.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5wf0.pdb.gz\n", "Failed to download https://files.rcsb.org/download/5wf0.pdb.gz\n", "Downloading https://files.rcsb.org/download/5wfk.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5wfk.pdb.gz\n", "Failed to download https://files.rcsb.org/download/5wfk.pdb.gz\n", "Downloading https://files.rcsb.org/download/5wfs.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5wfs.pdb.gz\n", "Failed to download https://files.rcsb.org/download/5wfs.pdb.gz\n", "Downloading https://files.rcsb.org/download/5wis.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5wis.pdb.gz\n", "Failed to download https://files.rcsb.org/download/5wis.pdb.gz\n", "Downloading https://files.rcsb.org/download/5wit.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5wit.pdb.gz\n", "Failed to download https://files.rcsb.org/download/5wit.pdb.gz\n", "Downloading https://files.rcsb.org/download/5x8p.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5x8p.pdb.gz\n", "Failed to download https://files.rcsb.org/download/5x8p.pdb.gz\n", "Downloading https://files.rcsb.org/download/5x8r.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5x8r.pdb.gz\n", "Downloading https://files.rcsb.org/download/5xyu.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5xyu.pdb.gz\n", "Downloading https://files.rcsb.org/download/6awb.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6awb.pdb.gz\n", "Failed to download https://files.rcsb.org/download/6awb.pdb.gz\n", "Downloading https://files.rcsb.org/download/6awc.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6awc.pdb.gz\n", "Failed to download https://files.rcsb.org/download/6awc.pdb.gz\n", "Downloading https://files.rcsb.org/download/6awd.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6awd.pdb.gz\n", "Failed to download https://files.rcsb.org/download/6awd.pdb.gz\n", "Downloading https://files.rcsb.org/download/6b4v.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6b4v.pdb.gz\n", "Failed to download https://files.rcsb.org/download/6b4v.pdb.gz\n", "Downloading https://files.rcsb.org/download/6boh.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6boh.pdb.gz\n", "Failed to download https://files.rcsb.org/download/6boh.pdb.gz\n", "Downloading https://files.rcsb.org/download/6bok.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6bok.pdb.gz\n", "Failed to download https://files.rcsb.org/download/6bok.pdb.gz\n", "Downloading https://files.rcsb.org/download/6bu8.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6bu8.pdb.gz\n", "Failed to download https://files.rcsb.org/download/6bu8.pdb.gz\n", "Downloading https://files.rcsb.org/download/6buw.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6buw.pdb.gz\n", "Failed to download https://files.rcsb.org/download/6buw.pdb.gz\n", "Downloading https://files.rcsb.org/download/6bz6.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6bz6.pdb.gz\n", "Failed to download https://files.rcsb.org/download/6bz6.pdb.gz\n", "Downloading https://files.rcsb.org/download/6bz7.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6bz7.pdb.gz\n", "Failed to download https://files.rcsb.org/download/6bz7.pdb.gz\n", "Downloading https://files.rcsb.org/download/6bz8.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6bz8.pdb.gz\n", "Failed to download https://files.rcsb.org/download/6bz8.pdb.gz\n", "Downloading https://files.rcsb.org/download/6c4i.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6c4i.pdb.gz\n", "Failed to download https://files.rcsb.org/download/6c4i.pdb.gz\n", "Downloading https://files.rcsb.org/download/6c5l.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6c5l.pdb.gz\n", "Failed to download https://files.rcsb.org/download/6c5l.pdb.gz\n", "Downloading https://files.rcsb.org/download/6cae.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6cae.pdb.gz\n", "Failed to download https://files.rcsb.org/download/6cae.pdb.gz\n", "Downloading https://files.rcsb.org/download/6cao.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6cao.pdb.gz\n", "Downloading https://files.rcsb.org/download/6caq.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6caq.pdb.gz\n", "Downloading https://files.rcsb.org/download/6car.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6car.pdb.gz\n", "Downloading https://files.rcsb.org/download/6cas.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6cas.pdb.gz\n", "Downloading https://files.rcsb.org/download/6cfj.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6cfj.pdb.gz\n", "Failed to download https://files.rcsb.org/download/6cfj.pdb.gz\n", "Downloading https://files.rcsb.org/download/6cfk.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6cfk.pdb.gz\n", "Failed to download https://files.rcsb.org/download/6cfk.pdb.gz\n", "Downloading https://files.rcsb.org/download/6cfl.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6cfl.pdb.gz\n", "Failed to download https://files.rcsb.org/download/6cfl.pdb.gz\n", "Downloading https://files.rcsb.org/download/6dnc.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6dnc.pdb.gz\n", "Failed to download https://files.rcsb.org/download/6dnc.pdb.gz\n", "Downloading https://files.rcsb.org/download/6dti.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6dti.pdb.gz\n", "Downloading https://files.rcsb.org/download/6dzi.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6dzi.pdb.gz\n", "Failed to download https://files.rcsb.org/download/6dzi.pdb.gz\n", "Downloading https://files.rcsb.org/download/6dzk.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6dzk.pdb.gz\n", "Downloading https://files.rcsb.org/download/6enf.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6enf.pdb.gz\n", "Failed to download https://files.rcsb.org/download/6enf.pdb.gz\n", "Downloading https://files.rcsb.org/download/6enj.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6enj.pdb.gz\n", "Failed to download https://files.rcsb.org/download/6enj.pdb.gz\n", "Downloading https://files.rcsb.org/download/6enu.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6enu.pdb.gz\n", "Failed to download https://files.rcsb.org/download/6enu.pdb.gz\n", "Downloading https://files.rcsb.org/download/6eri.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6eri.pdb.gz\n", "Failed to download https://files.rcsb.org/download/6eri.pdb.gz\n", "Downloading https://files.rcsb.org/download/6fkr.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6fkr.pdb.gz\n", "Failed to download https://files.rcsb.org/download/6fkr.pdb.gz\n", "Downloading https://files.rcsb.org/download/6fxc.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6fxc.pdb.gz\n", "Failed to download https://files.rcsb.org/download/6fxc.pdb.gz\n", "Downloading https://files.rcsb.org/download/6gsj.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6gsj.pdb.gz\n", "Failed to download https://files.rcsb.org/download/6gsj.pdb.gz\n", "Downloading https://files.rcsb.org/download/6gsk.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6gsk.pdb.gz\n", "Failed to download https://files.rcsb.org/download/6gsk.pdb.gz\n", "Downloading https://files.rcsb.org/download/6gsl.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6gsl.pdb.gz\n", "Failed to download https://files.rcsb.org/download/6gsl.pdb.gz\n", "Downloading https://files.rcsb.org/download/6gwt.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6gwt.pdb.gz\n", "Failed to download https://files.rcsb.org/download/6gwt.pdb.gz\n", "Downloading https://files.rcsb.org/download/6gxm.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6gxm.pdb.gz\n", "Failed to download https://files.rcsb.org/download/6gxm.pdb.gz\n", "Downloading https://files.rcsb.org/download/6gxn.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6gxn.pdb.gz\n", "Failed to download https://files.rcsb.org/download/6gxn.pdb.gz\n", "Downloading https://files.rcsb.org/download/6gxo.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6gxo.pdb.gz\n", "Failed to download https://files.rcsb.org/download/6gxo.pdb.gz\n", "Downloading https://files.rcsb.org/download/6h4n.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6h4n.pdb.gz\n", "Failed to download https://files.rcsb.org/download/6h4n.pdb.gz\n", "Downloading https://files.rcsb.org/download/6h58.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6h58.pdb.gz\n", "Failed to download https://files.rcsb.org/download/6h58.pdb.gz\n", "Downloading https://files.rcsb.org/download/6ha1.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6ha1.pdb.gz\n", "Failed to download https://files.rcsb.org/download/6ha1.pdb.gz\n", "Downloading https://files.rcsb.org/download/6ha8.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6ha8.pdb.gz\n", "Failed to download https://files.rcsb.org/download/6ha8.pdb.gz\n", "Downloading https://files.rcsb.org/download/6hrm.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6hrm.pdb.gz\n", "Failed to download https://files.rcsb.org/download/6hrm.pdb.gz\n", "Downloading https://files.rcsb.org/download/6htq.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6htq.pdb.gz\n", "Failed to download https://files.rcsb.org/download/6htq.pdb.gz\n", "Downloading https://files.rcsb.org/download/6lkq.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6lkq.pdb.gz\n", "Failed to download https://files.rcsb.org/download/6lkq.pdb.gz\n", "Downloading https://files.rcsb.org/download/6mkn.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6mkn.pdb.gz\n", "Downloading https://files.rcsb.org/download/6mpi.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6mpi.pdb.gz\n", "Downloading https://files.rcsb.org/download/6n9e.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6n9e.pdb.gz\n", "Failed to download https://files.rcsb.org/download/6n9e.pdb.gz\n", "Downloading https://files.rcsb.org/download/6n9f.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6n9f.pdb.gz\n", "Failed to download https://files.rcsb.org/download/6n9f.pdb.gz\n", "Downloading https://files.rcsb.org/download/6nd5.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6nd5.pdb.gz\n", "Failed to download https://files.rcsb.org/download/6nd5.pdb.gz\n", "Downloading https://files.rcsb.org/download/6nd6.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6nd6.pdb.gz\n", "Failed to download https://files.rcsb.org/download/6nd6.pdb.gz\n", "Downloading https://files.rcsb.org/download/6ndk.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6ndk.pdb.gz\n", "Failed to download https://files.rcsb.org/download/6ndk.pdb.gz\n", "Downloading https://files.rcsb.org/download/6nsh.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6nsh.pdb.gz\n", "Failed to download https://files.rcsb.org/download/6nsh.pdb.gz\n", "Downloading https://files.rcsb.org/download/6nta.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6nta.pdb.gz\n", "Failed to download https://files.rcsb.org/download/6nta.pdb.gz\n", "Downloading https://files.rcsb.org/download/6nuo.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6nuo.pdb.gz\n", "Failed to download https://files.rcsb.org/download/6nuo.pdb.gz\n", "Downloading https://files.rcsb.org/download/6nwy.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6nwy.pdb.gz\n", "Failed to download https://files.rcsb.org/download/6nwy.pdb.gz\n", "Downloading https://files.rcsb.org/download/6ny6.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6ny6.pdb.gz\n", "Downloading https://files.rcsb.org/download/6o3m.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6o3m.pdb.gz\n", "Failed to download https://files.rcsb.org/download/6o3m.pdb.gz\n", "Downloading https://files.rcsb.org/download/6o7k.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6o7k.pdb.gz\n", "Downloading https://files.rcsb.org/download/6o8w.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6o8w.pdb.gz\n", "Failed to download https://files.rcsb.org/download/6o8w.pdb.gz\n", "Downloading https://files.rcsb.org/download/6o8x.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6o8x.pdb.gz\n", "Failed to download https://files.rcsb.org/download/6o8x.pdb.gz\n", "Downloading https://files.rcsb.org/download/6o8y.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6o8y.pdb.gz\n", "Failed to download https://files.rcsb.org/download/6o8y.pdb.gz\n", "Downloading https://files.rcsb.org/download/6o90.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6o90.pdb.gz\n", "Failed to download https://files.rcsb.org/download/6o90.pdb.gz\n", "Downloading https://files.rcsb.org/download/6o97.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6o97.pdb.gz\n", "Failed to download https://files.rcsb.org/download/6o97.pdb.gz\n", "Downloading https://files.rcsb.org/download/6o9j.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6o9j.pdb.gz\n", "Failed to download https://files.rcsb.org/download/6o9j.pdb.gz\n", "Downloading https://files.rcsb.org/download/6o9k.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6o9k.pdb.gz\n", "Failed to download https://files.rcsb.org/download/6o9k.pdb.gz\n", "Downloading https://files.rcsb.org/download/6of1.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6of1.pdb.gz\n", "Failed to download https://files.rcsb.org/download/6of1.pdb.gz\n", "Downloading https://files.rcsb.org/download/6of6.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6of6.pdb.gz\n", "Failed to download https://files.rcsb.org/download/6of6.pdb.gz\n", "Downloading https://files.rcsb.org/download/6ofx.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6ofx.pdb.gz\n", "Failed to download https://files.rcsb.org/download/6ofx.pdb.gz\n", "Downloading https://files.rcsb.org/download/6og7.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6og7.pdb.gz\n", "Failed to download https://files.rcsb.org/download/6og7.pdb.gz\n", "Downloading https://files.rcsb.org/download/6oj2.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6oj2.pdb.gz\n", "Failed to download https://files.rcsb.org/download/6oj2.pdb.gz\n", "Downloading https://files.rcsb.org/download/6ope.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6ope.pdb.gz\n", "Failed to download https://files.rcsb.org/download/6ope.pdb.gz\n", "Downloading https://files.rcsb.org/download/6ord.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6ord.pdb.gz\n", "Failed to download https://files.rcsb.org/download/6ord.pdb.gz\n", "Downloading https://files.rcsb.org/download/6ore.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6ore.pdb.gz\n", "Failed to download https://files.rcsb.org/download/6ore.pdb.gz\n", "Downloading https://files.rcsb.org/download/6osi.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6osi.pdb.gz\n", "Failed to download https://files.rcsb.org/download/6osi.pdb.gz\n", "Downloading https://files.rcsb.org/download/6osk.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6osk.pdb.gz\n", "Failed to download https://files.rcsb.org/download/6osk.pdb.gz\n", "Downloading https://files.rcsb.org/download/6osq.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6osq.pdb.gz\n", "Failed to download https://files.rcsb.org/download/6osq.pdb.gz\n", "Downloading https://files.rcsb.org/download/6ost.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6ost.pdb.gz\n", "Failed to download https://files.rcsb.org/download/6ost.pdb.gz\n", "Downloading https://files.rcsb.org/download/6otr.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6otr.pdb.gz\n", "Failed to download https://files.rcsb.org/download/6otr.pdb.gz\n", "Downloading https://files.rcsb.org/download/6oxa.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6oxa.pdb.gz\n", "Failed to download https://files.rcsb.org/download/6oxa.pdb.gz\n", "Downloading https://files.rcsb.org/download/6oxi.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6oxi.pdb.gz\n", "Failed to download https://files.rcsb.org/download/6oxi.pdb.gz\n", "Downloading https://files.rcsb.org/download/6q95.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6q95.pdb.gz\n", "Failed to download https://files.rcsb.org/download/6q95.pdb.gz\n", "Downloading https://files.rcsb.org/download/6q97.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6q97.pdb.gz\n", "Failed to download https://files.rcsb.org/download/6q97.pdb.gz\n", "Downloading https://files.rcsb.org/download/6q98.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6q98.pdb.gz\n", "Failed to download https://files.rcsb.org/download/6q98.pdb.gz\n", "Downloading https://files.rcsb.org/download/6q9a.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6q9a.pdb.gz\n", "Failed to download https://files.rcsb.org/download/6q9a.pdb.gz\n", "Downloading https://files.rcsb.org/download/6qnq.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6qnq.pdb.gz\n", "Failed to download https://files.rcsb.org/download/6qnq.pdb.gz\n", "Downloading https://files.rcsb.org/download/6qnr.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6qnr.pdb.gz\n", "Failed to download https://files.rcsb.org/download/6qnr.pdb.gz\n", "Downloading https://files.rcsb.org/download/6s0x.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6s0x.pdb.gz\n", "Failed to download https://files.rcsb.org/download/6s0x.pdb.gz\n", "Downloading https://files.rcsb.org/download/6spe.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6spe.pdb.gz\n", "Downloading https://files.rcsb.org/download/6spf.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6spf.pdb.gz\n", "Failed to download https://files.rcsb.org/download/6spf.pdb.gz\n", "Downloading https://files.rcsb.org/download/6spg.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6spg.pdb.gz\n", "Failed to download https://files.rcsb.org/download/6spg.pdb.gz\n", "Downloading https://files.rcsb.org/download/6szs.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6szs.pdb.gz\n", "Failed to download https://files.rcsb.org/download/6szs.pdb.gz\n", "Downloading https://files.rcsb.org/download/6tbv.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6tbv.pdb.gz\n", "Failed to download https://files.rcsb.org/download/6tbv.pdb.gz\n", "Downloading https://files.rcsb.org/download/6tc3.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6tc3.pdb.gz\n", "Failed to download https://files.rcsb.org/download/6tc3.pdb.gz\n", "Downloading https://files.rcsb.org/download/6ucq.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6ucq.pdb.gz\n", "Failed to download https://files.rcsb.org/download/6ucq.pdb.gz\n", "Downloading https://files.rcsb.org/download/6uo1.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6uo1.pdb.gz\n", "Failed to download https://files.rcsb.org/download/6uo1.pdb.gz\n", "Downloading https://files.rcsb.org/download/6vu3.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6vu3.pdb.gz\n", "Failed to download https://files.rcsb.org/download/6vu3.pdb.gz\n", "Downloading https://files.rcsb.org/download/6vwl.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6vwl.pdb.gz\n", "Failed to download https://files.rcsb.org/download/6vwl.pdb.gz\n", "Downloading https://files.rcsb.org/download/6vwm.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6vwm.pdb.gz\n", "Failed to download https://files.rcsb.org/download/6vwm.pdb.gz\n", "Downloading https://files.rcsb.org/download/6vwn.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6vwn.pdb.gz\n", "Failed to download https://files.rcsb.org/download/6vwn.pdb.gz\n", "Downloading https://files.rcsb.org/download/6vyq.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6vyq.pdb.gz\n", "Failed to download https://files.rcsb.org/download/6vyq.pdb.gz\n", "Downloading https://files.rcsb.org/download/6vyr.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6vyr.pdb.gz\n", "Failed to download https://files.rcsb.org/download/6vyr.pdb.gz\n", "Downloading https://files.rcsb.org/download/6vys.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6vys.pdb.gz\n", "Failed to download https://files.rcsb.org/download/6vys.pdb.gz\n", "Downloading https://files.rcsb.org/download/6vyt.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6vyt.pdb.gz\n", "Failed to download https://files.rcsb.org/download/6vyt.pdb.gz\n", "Downloading https://files.rcsb.org/download/6vyu.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6vyu.pdb.gz\n", "Failed to download https://files.rcsb.org/download/6vyu.pdb.gz\n", "Downloading https://files.rcsb.org/download/6vyw.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6vyw.pdb.gz\n", "Failed to download https://files.rcsb.org/download/6vyw.pdb.gz\n", "Downloading https://files.rcsb.org/download/6vyx.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6vyx.pdb.gz\n", "Failed to download https://files.rcsb.org/download/6vyx.pdb.gz\n", "Downloading https://files.rcsb.org/download/6vyy.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6vyy.pdb.gz\n", "Failed to download https://files.rcsb.org/download/6vyy.pdb.gz\n", "Downloading https://files.rcsb.org/download/6vyz.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6vyz.pdb.gz\n", "Failed to download https://files.rcsb.org/download/6vyz.pdb.gz\n", "Downloading https://files.rcsb.org/download/6vz2.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6vz2.pdb.gz\n", "Failed to download https://files.rcsb.org/download/6vz2.pdb.gz\n", "Downloading https://files.rcsb.org/download/6vz3.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6vz3.pdb.gz\n", "Failed to download https://files.rcsb.org/download/6vz3.pdb.gz\n", "Downloading https://files.rcsb.org/download/6vz5.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6vz5.pdb.gz\n", "Failed to download https://files.rcsb.org/download/6vz5.pdb.gz\n", "Downloading https://files.rcsb.org/download/6vz7.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6vz7.pdb.gz\n", "Failed to download https://files.rcsb.org/download/6vz7.pdb.gz\n", "Downloading https://files.rcsb.org/download/6vzj.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6vzj.pdb.gz\n", "Failed to download https://files.rcsb.org/download/6vzj.pdb.gz\n", "Downloading https://files.rcsb.org/download/6w6p.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6w6p.pdb.gz\n", "Failed to download https://files.rcsb.org/download/6w6p.pdb.gz\n", "Downloading https://files.rcsb.org/download/6w77.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6w77.pdb.gz\n", "Downloading https://files.rcsb.org/download/6w7m.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6w7m.pdb.gz\n", "Downloading https://files.rcsb.org/download/6w7n.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6w7n.pdb.gz\n", "Downloading https://files.rcsb.org/download/6w7w.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6w7w.pdb.gz\n", "Downloading https://files.rcsb.org/download/6wd0.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6wd0.pdb.gz\n", "Failed to download https://files.rcsb.org/download/6wd0.pdb.gz\n", "Downloading https://files.rcsb.org/download/6wd1.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6wd1.pdb.gz\n", "Failed to download https://files.rcsb.org/download/6wd1.pdb.gz\n", "Downloading https://files.rcsb.org/download/6wd2.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6wd2.pdb.gz\n", "Failed to download https://files.rcsb.org/download/6wd2.pdb.gz\n", "Downloading https://files.rcsb.org/download/6wd3.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6wd3.pdb.gz\n", "Failed to download https://files.rcsb.org/download/6wd3.pdb.gz\n", "Downloading https://files.rcsb.org/download/6wd4.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6wd4.pdb.gz\n", "Failed to download https://files.rcsb.org/download/6wd4.pdb.gz\n", "Downloading https://files.rcsb.org/download/6wd5.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6wd5.pdb.gz\n", "Failed to download https://files.rcsb.org/download/6wd5.pdb.gz\n", "Downloading https://files.rcsb.org/download/6wd6.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6wd6.pdb.gz\n", "Failed to download https://files.rcsb.org/download/6wd6.pdb.gz\n", "Downloading https://files.rcsb.org/download/6wd7.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6wd7.pdb.gz\n", "Failed to download https://files.rcsb.org/download/6wd7.pdb.gz\n", "Downloading https://files.rcsb.org/download/6wd8.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6wd8.pdb.gz\n", "Failed to download https://files.rcsb.org/download/6wd8.pdb.gz\n", "Downloading https://files.rcsb.org/download/6wd9.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6wd9.pdb.gz\n", "Failed to download https://files.rcsb.org/download/6wd9.pdb.gz\n", "Downloading https://files.rcsb.org/download/6wdd.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6wdd.pdb.gz\n", "Failed to download https://files.rcsb.org/download/6wdd.pdb.gz\n", "Downloading https://files.rcsb.org/download/6wde.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6wde.pdb.gz\n", "Failed to download https://files.rcsb.org/download/6wde.pdb.gz\n", "Downloading https://files.rcsb.org/download/6wdf.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6wdf.pdb.gz\n", "Failed to download https://files.rcsb.org/download/6wdf.pdb.gz\n", "Downloading https://files.rcsb.org/download/6wdh.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6wdh.pdb.gz\n", "Failed to download https://files.rcsb.org/download/6wdh.pdb.gz\n", "Downloading https://files.rcsb.org/download/6wdj.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6wdj.pdb.gz\n", "Failed to download https://files.rcsb.org/download/6wdj.pdb.gz\n", "Downloading https://files.rcsb.org/download/6wdk.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6wdk.pdb.gz\n", "Failed to download https://files.rcsb.org/download/6wdk.pdb.gz\n", "Downloading https://files.rcsb.org/download/6wdl.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6wdl.pdb.gz\n", "Failed to download https://files.rcsb.org/download/6wdl.pdb.gz\n", "Downloading https://files.rcsb.org/download/6wdm.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6wdm.pdb.gz\n", "Failed to download https://files.rcsb.org/download/6wdm.pdb.gz\n", "Downloading https://files.rcsb.org/download/6wnv.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6wnv.pdb.gz\n", "Failed to download https://files.rcsb.org/download/6wnv.pdb.gz\n", "Downloading https://files.rcsb.org/download/6wnw.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6wnw.pdb.gz\n", "Failed to download https://files.rcsb.org/download/6wnw.pdb.gz\n", "Downloading https://files.rcsb.org/download/6x6t.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6x6t.pdb.gz\n", "Failed to download https://files.rcsb.org/download/6x6t.pdb.gz\n", "Downloading https://files.rcsb.org/download/6x7f.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6x7f.pdb.gz\n", "Failed to download https://files.rcsb.org/download/6x7f.pdb.gz\n", "Downloading https://files.rcsb.org/download/6x7k.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6x7k.pdb.gz\n", "Failed to download https://files.rcsb.org/download/6x7k.pdb.gz\n", "Downloading https://files.rcsb.org/download/6x9q.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6x9q.pdb.gz\n", "Failed to download https://files.rcsb.org/download/6x9q.pdb.gz\n", "Downloading https://files.rcsb.org/download/6xdq.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6xdq.pdb.gz\n", "Failed to download https://files.rcsb.org/download/6xdq.pdb.gz\n", "Downloading https://files.rcsb.org/download/6xdr.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6xdr.pdb.gz\n", "Failed to download https://files.rcsb.org/download/6xdr.pdb.gz\n", "Downloading https://files.rcsb.org/download/6xe0.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6xe0.pdb.gz\n", "Downloading https://files.rcsb.org/download/6xgf.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6xgf.pdb.gz\n", "Failed to download https://files.rcsb.org/download/6xgf.pdb.gz\n", "Downloading https://files.rcsb.org/download/6xhv.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6xhv.pdb.gz\n", "Failed to download https://files.rcsb.org/download/6xhv.pdb.gz\n", "Downloading https://files.rcsb.org/download/6xhw.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6xhw.pdb.gz\n", "Failed to download https://files.rcsb.org/download/6xhw.pdb.gz\n", "Downloading https://files.rcsb.org/download/6xhx.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6xhx.pdb.gz\n", "Failed to download https://files.rcsb.org/download/6xhx.pdb.gz\n", "Downloading https://files.rcsb.org/download/6xhy.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6xhy.pdb.gz\n", "Failed to download https://files.rcsb.org/download/6xhy.pdb.gz\n", "Downloading https://files.rcsb.org/download/6xii.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6xii.pdb.gz\n", "Failed to download https://files.rcsb.org/download/6xii.pdb.gz\n", "Downloading https://files.rcsb.org/download/6xij.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6xij.pdb.gz\n", "Failed to download https://files.rcsb.org/download/6xij.pdb.gz\n", "Downloading https://files.rcsb.org/download/6xqd.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6xqd.pdb.gz\n", "Failed to download https://files.rcsb.org/download/6xqd.pdb.gz\n", "Downloading https://files.rcsb.org/download/6xqe.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6xqe.pdb.gz\n", "Failed to download https://files.rcsb.org/download/6xqe.pdb.gz\n", "Downloading https://files.rcsb.org/download/6xza.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6xza.pdb.gz\n", "Failed to download https://files.rcsb.org/download/6xza.pdb.gz\n", "Downloading https://files.rcsb.org/download/6xzb.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6xzb.pdb.gz\n", "Failed to download https://files.rcsb.org/download/6xzb.pdb.gz\n", "Downloading https://files.rcsb.org/download/6y69.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6y69.pdb.gz\n", "Failed to download https://files.rcsb.org/download/6y69.pdb.gz\n", "Downloading https://files.rcsb.org/download/6ypu.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6ypu.pdb.gz\n", "Downloading https://files.rcsb.org/download/6ysr.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6ysr.pdb.gz\n", "Failed to download https://files.rcsb.org/download/6ysr.pdb.gz\n", "Downloading https://files.rcsb.org/download/6yss.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6yss.pdb.gz\n", "Failed to download https://files.rcsb.org/download/6yss.pdb.gz\n", "Downloading https://files.rcsb.org/download/6yst.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6yst.pdb.gz\n", "Failed to download https://files.rcsb.org/download/6yst.pdb.gz\n", "Downloading https://files.rcsb.org/download/6ysu.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6ysu.pdb.gz\n", "Failed to download https://files.rcsb.org/download/6ysu.pdb.gz\n", "Downloading https://files.rcsb.org/download/6yt9.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6yt9.pdb.gz\n", "Downloading https://files.rcsb.org/download/6ztj.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6ztj.pdb.gz\n", "Failed to download https://files.rcsb.org/download/6ztj.pdb.gz\n", "Downloading https://files.rcsb.org/download/6ztm.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6ztm.pdb.gz\n", "Failed to download https://files.rcsb.org/download/6ztm.pdb.gz\n", "Downloading https://files.rcsb.org/download/6ztn.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6ztn.pdb.gz\n", "Failed to download https://files.rcsb.org/download/6ztn.pdb.gz\n", "Downloading https://files.rcsb.org/download/6zto.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6zto.pdb.gz\n", "Failed to download https://files.rcsb.org/download/6zto.pdb.gz\n", "Downloading https://files.rcsb.org/download/6ztp.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6ztp.pdb.gz\n", "Failed to download https://files.rcsb.org/download/6ztp.pdb.gz\n", "Downloading https://files.rcsb.org/download/6zu1.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6zu1.pdb.gz\n", "Failed to download https://files.rcsb.org/download/6zu1.pdb.gz\n", "Downloading https://files.rcsb.org/download/7b5k.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7b5k.pdb.gz\n", "Failed to download https://files.rcsb.org/download/7b5k.pdb.gz\n", "Downloading https://files.rcsb.org/download/7boe.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7boe.pdb.gz\n", "Downloading https://files.rcsb.org/download/7cpj.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7cpj.pdb.gz\n", "Failed to download https://files.rcsb.org/download/7cpj.pdb.gz\n", "Downloading https://files.rcsb.org/download/7duk.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7duk.pdb.gz\n", "Downloading https://files.rcsb.org/download/7jql.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7jql.pdb.gz\n", "Failed to download https://files.rcsb.org/download/7jql.pdb.gz\n", "Downloading https://files.rcsb.org/download/7jqm.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7jqm.pdb.gz\n", "Failed to download https://files.rcsb.org/download/7jqm.pdb.gz\n", "Downloading https://files.rcsb.org/download/7jss.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7jss.pdb.gz\n", "Failed to download https://files.rcsb.org/download/7jss.pdb.gz\n", "Downloading https://files.rcsb.org/download/7jsz.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7jsz.pdb.gz\n", "Failed to download https://files.rcsb.org/download/7jsz.pdb.gz\n", "Downloading https://files.rcsb.org/download/7jt2.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7jt2.pdb.gz\n", "Failed to download https://files.rcsb.org/download/7jt2.pdb.gz\n", "Downloading https://files.rcsb.org/download/7k00.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7k00.pdb.gz\n", "Failed to download https://files.rcsb.org/download/7k00.pdb.gz\n", "Downloading https://files.rcsb.org/download/7kwg.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7kwg.pdb.gz\n", "Downloading https://files.rcsb.org/download/7lh5.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7lh5.pdb.gz\n", "Failed to download https://files.rcsb.org/download/7lh5.pdb.gz\n", "Downloading https://files.rcsb.org/download/7md7.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7md7.pdb.gz\n", "Failed to download https://files.rcsb.org/download/7md7.pdb.gz\n", "Downloading https://files.rcsb.org/download/7n1p.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7n1p.pdb.gz\n", "Failed to download https://files.rcsb.org/download/7n1p.pdb.gz\n", "Downloading https://files.rcsb.org/download/7n2u.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7n2u.pdb.gz\n", "Failed to download https://files.rcsb.org/download/7n2u.pdb.gz\n", "Downloading https://files.rcsb.org/download/7n30.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7n30.pdb.gz\n", "Failed to download https://files.rcsb.org/download/7n30.pdb.gz\n", "Downloading https://files.rcsb.org/download/7n31.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7n31.pdb.gz\n", "Failed to download https://files.rcsb.org/download/7n31.pdb.gz\n", "Downloading https://files.rcsb.org/download/7nar.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7nar.pdb.gz\n", "Downloading https://files.rcsb.org/download/7nax.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7nax.pdb.gz\n", "Downloading https://files.rcsb.org/download/7nhk.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7nhk.pdb.gz\n", "Failed to download https://files.rcsb.org/download/7nhk.pdb.gz\n", "Downloading https://files.rcsb.org/download/7nso.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7nso.pdb.gz\n", "Failed to download https://files.rcsb.org/download/7nso.pdb.gz\n", "Downloading https://files.rcsb.org/download/7nsp.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7nsp.pdb.gz\n", "Failed to download https://files.rcsb.org/download/7nsp.pdb.gz\n", "Downloading https://files.rcsb.org/download/7nsq.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7nsq.pdb.gz\n", "Failed to download https://files.rcsb.org/download/7nsq.pdb.gz\n", "Downloading https://files.rcsb.org/download/7pjs.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7pjs.pdb.gz\n", "Failed to download https://files.rcsb.org/download/7pjs.pdb.gz\n", "Downloading https://files.rcsb.org/download/7pju.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7pju.pdb.gz\n", "Failed to download https://files.rcsb.org/download/7pju.pdb.gz\n", "Downloading https://files.rcsb.org/download/7rq8.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7rq8.pdb.gz\n", "Failed to download https://files.rcsb.org/download/7rq8.pdb.gz\n", "Downloading https://files.rcsb.org/download/7rq9.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7rq9.pdb.gz\n", "Failed to download https://files.rcsb.org/download/7rq9.pdb.gz\n", "Downloading https://files.rcsb.org/download/7s1g.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7s1g.pdb.gz\n", "Failed to download https://files.rcsb.org/download/7s1g.pdb.gz\n", "Downloading https://files.rcsb.org/download/3ja1.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3ja1.pdb.gz\n", "Failed to download https://files.rcsb.org/download/3ja1.pdb.gz\n", "Downloading https://files.rcsb.org/download/4v7h.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4v7h.pdb.gz\n", "Failed to download https://files.rcsb.org/download/4v7h.pdb.gz\n", "Downloading https://files.rcsb.org/download/5ady.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5ady.pdb.gz\n", "Downloading https://files.rcsb.org/download/5imr.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5imr.pdb.gz\n", "Failed to download https://files.rcsb.org/download/5imr.pdb.gz\n", "Downloading https://files.rcsb.org/download/6gxp.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6gxp.pdb.gz\n", "Failed to download https://files.rcsb.org/download/6gxp.pdb.gz\n", "Downloading https://files.rcsb.org/download/6wnt.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6wnt.pdb.gz\n", "Downloading https://files.rcsb.org/download/7nwt.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7nwt.pdb.gz\n", "Failed to download https://files.rcsb.org/download/7nwt.pdb.gz\n", "Downloading https://files.rcsb.org/download/7nql.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7nql.pdb.gz\n", "Failed to download https://files.rcsb.org/download/7nql.pdb.gz\n", "Downloading https://files.rcsb.org/download/6i9r.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6i9r.pdb.gz\n", "Failed to download https://files.rcsb.org/download/6i9r.pdb.gz\n", "Downloading https://files.rcsb.org/download/2j28.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/2j28.pdb.gz\n", "Downloading https://files.rcsb.org/download/2zjp.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/2zjp.pdb.gz\n", "Downloading https://files.rcsb.org/download/2zjq.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/2zjq.pdb.gz\n", "Downloading https://files.rcsb.org/download/2zjr.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/2zjr.pdb.gz\n", "Downloading https://files.rcsb.org/download/3cf5.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3cf5.pdb.gz\n", "Downloading https://files.rcsb.org/download/3dll.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3dll.pdb.gz\n", "Downloading https://files.rcsb.org/download/3j3v.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3j3v.pdb.gz\n", "Downloading https://files.rcsb.org/download/3j3w.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3j3w.pdb.gz\n", "Downloading https://files.rcsb.org/download/3j5l.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3j5l.pdb.gz\n", "Downloading https://files.rcsb.org/download/3j7z.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3j7z.pdb.gz\n", "Downloading https://files.rcsb.org/download/3j8g.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3j8g.pdb.gz\n", "Downloading https://files.rcsb.org/download/3j9w.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3j9w.pdb.gz\n", "Failed to download https://files.rcsb.org/download/3j9w.pdb.gz\n", "Downloading https://files.rcsb.org/download/3jbu.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3jbu.pdb.gz\n", "Failed to download https://files.rcsb.org/download/3jbu.pdb.gz\n", "Downloading https://files.rcsb.org/download/3pio.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3pio.pdb.gz\n", "Downloading https://files.rcsb.org/download/3pip.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3pip.pdb.gz\n", "Downloading https://files.rcsb.org/download/4csu.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4csu.pdb.gz\n", "Downloading https://files.rcsb.org/download/4io9.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4io9.pdb.gz\n", "Downloading https://files.rcsb.org/download/4ioa.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4ioa.pdb.gz\n", "Downloading https://files.rcsb.org/download/4ioc.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4ioc.pdb.gz\n", "Downloading https://files.rcsb.org/download/4uy8.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4uy8.pdb.gz\n", "Downloading https://files.rcsb.org/download/4v4i.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4v4i.pdb.gz\n", "Failed to download https://files.rcsb.org/download/4v4i.pdb.gz\n", "Downloading https://files.rcsb.org/download/4v4q.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4v4q.pdb.gz\n", "Failed to download https://files.rcsb.org/download/4v4q.pdb.gz\n", "Downloading https://files.rcsb.org/download/4v50.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4v50.pdb.gz\n", "Failed to download https://files.rcsb.org/download/4v50.pdb.gz\n", "Downloading https://files.rcsb.org/download/4v52.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4v52.pdb.gz\n", "Failed to download https://files.rcsb.org/download/4v52.pdb.gz\n", "Downloading https://files.rcsb.org/download/4v53.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4v53.pdb.gz\n", "Failed to download https://files.rcsb.org/download/4v53.pdb.gz\n", "Downloading https://files.rcsb.org/download/4v54.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4v54.pdb.gz\n", "Failed to download https://files.rcsb.org/download/4v54.pdb.gz\n", "Downloading https://files.rcsb.org/download/4v55.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4v55.pdb.gz\n", "Failed to download https://files.rcsb.org/download/4v55.pdb.gz\n", "Downloading https://files.rcsb.org/download/4v56.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4v56.pdb.gz\n", "Failed to download https://files.rcsb.org/download/4v56.pdb.gz\n", "Downloading https://files.rcsb.org/download/4v57.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4v57.pdb.gz\n", "Failed to download https://files.rcsb.org/download/4v57.pdb.gz\n", "Downloading https://files.rcsb.org/download/4v5y.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4v5y.pdb.gz\n", "Failed to download https://files.rcsb.org/download/4v5y.pdb.gz\n", "Downloading https://files.rcsb.org/download/4v61.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4v61.pdb.gz\n", "Failed to download https://files.rcsb.org/download/4v61.pdb.gz\n", "Downloading https://files.rcsb.org/download/4v64.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4v64.pdb.gz\n", "Failed to download https://files.rcsb.org/download/4v64.pdb.gz\n", "Downloading https://files.rcsb.org/download/4v65.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4v65.pdb.gz\n", "Failed to download https://files.rcsb.org/download/4v65.pdb.gz\n", "Downloading https://files.rcsb.org/download/4v66.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4v66.pdb.gz\n", "Failed to download https://files.rcsb.org/download/4v66.pdb.gz\n", "Downloading https://files.rcsb.org/download/4v6c.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4v6c.pdb.gz\n", "Failed to download https://files.rcsb.org/download/4v6c.pdb.gz\n", "Downloading https://files.rcsb.org/download/4v6d.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4v6d.pdb.gz\n", "Failed to download https://files.rcsb.org/download/4v6d.pdb.gz\n", "Downloading https://files.rcsb.org/download/4v6e.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4v6e.pdb.gz\n", "Failed to download https://files.rcsb.org/download/4v6e.pdb.gz\n", "Downloading https://files.rcsb.org/download/4v6m.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4v6m.pdb.gz\n", "Failed to download https://files.rcsb.org/download/4v6m.pdb.gz\n", "Downloading https://files.rcsb.org/download/4v6z.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4v6z.pdb.gz\n", "Failed to download https://files.rcsb.org/download/4v6z.pdb.gz\n", "Downloading https://files.rcsb.org/download/4v71.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4v71.pdb.gz\n", "Failed to download https://files.rcsb.org/download/4v71.pdb.gz\n", "Downloading https://files.rcsb.org/download/4v72.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4v72.pdb.gz\n", "Failed to download https://files.rcsb.org/download/4v72.pdb.gz\n", "Downloading https://files.rcsb.org/download/4v73.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4v73.pdb.gz\n", "Failed to download https://files.rcsb.org/download/4v73.pdb.gz\n", "Downloading https://files.rcsb.org/download/4v79.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4v79.pdb.gz\n", "Failed to download https://files.rcsb.org/download/4v79.pdb.gz\n", "Downloading https://files.rcsb.org/download/4v7c.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4v7c.pdb.gz\n", "Failed to download https://files.rcsb.org/download/4v7c.pdb.gz\n", "Downloading https://files.rcsb.org/download/4v7d.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4v7d.pdb.gz\n", "Failed to download https://files.rcsb.org/download/4v7d.pdb.gz\n", "Downloading https://files.rcsb.org/download/4v7i.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4v7i.pdb.gz\n", "Failed to download https://files.rcsb.org/download/4v7i.pdb.gz\n", "Downloading https://files.rcsb.org/download/4v7m.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4v7m.pdb.gz\n", "Failed to download https://files.rcsb.org/download/4v7m.pdb.gz\n", "Downloading https://files.rcsb.org/download/4v8n.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4v8n.pdb.gz\n", "Failed to download https://files.rcsb.org/download/4v8n.pdb.gz\n", "Downloading https://files.rcsb.org/download/4v8o.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4v8o.pdb.gz\n", "Failed to download https://files.rcsb.org/download/4v8o.pdb.gz\n", "Downloading https://files.rcsb.org/download/4v9q.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4v9q.pdb.gz\n", "Failed to download https://files.rcsb.org/download/4v9q.pdb.gz\n", "Downloading https://files.rcsb.org/download/4wce.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4wce.pdb.gz\n", "Downloading https://files.rcsb.org/download/4wf9.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4wf9.pdb.gz\n", "Downloading https://files.rcsb.org/download/4wfa.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4wfa.pdb.gz\n", "Downloading https://files.rcsb.org/download/4wfb.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4wfb.pdb.gz\n", "Downloading https://files.rcsb.org/download/4zer.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4zer.pdb.gz\n", "Failed to download https://files.rcsb.org/download/4zer.pdb.gz\n", "Downloading https://files.rcsb.org/download/5a9z.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5a9z.pdb.gz\n", "Failed to download https://files.rcsb.org/download/5a9z.pdb.gz\n", "Downloading https://files.rcsb.org/download/5aa0.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5aa0.pdb.gz\n", "Failed to download https://files.rcsb.org/download/5aa0.pdb.gz\n", "Downloading https://files.rcsb.org/download/5aka.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5aka.pdb.gz\n", "Downloading https://files.rcsb.org/download/5dm6.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5dm6.pdb.gz\n", "Downloading https://files.rcsb.org/download/5dm7.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5dm7.pdb.gz\n", "Downloading https://files.rcsb.org/download/5f8k.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5f8k.pdb.gz\n", "Failed to download https://files.rcsb.org/download/5f8k.pdb.gz\n", "Downloading https://files.rcsb.org/download/5gad.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5gad.pdb.gz\n", "Downloading https://files.rcsb.org/download/5gae.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5gae.pdb.gz\n", "Downloading https://files.rcsb.org/download/5gaf.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5gaf.pdb.gz\n", "Downloading https://files.rcsb.org/download/5gag.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5gag.pdb.gz\n", "Downloading https://files.rcsb.org/download/5gah.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5gah.pdb.gz\n", "Downloading https://files.rcsb.org/download/5h1s.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5h1s.pdb.gz\n", "Downloading https://files.rcsb.org/download/5hkv.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5hkv.pdb.gz\n", "Downloading https://files.rcsb.org/download/5hl7.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5hl7.pdb.gz\n", "Downloading https://files.rcsb.org/download/5jvg.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5jvg.pdb.gz\n", "Downloading https://files.rcsb.org/download/5lzb.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5lzb.pdb.gz\n", "Failed to download https://files.rcsb.org/download/5lzb.pdb.gz\n", "Downloading https://files.rcsb.org/download/5lzf.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5lzf.pdb.gz\n", "Failed to download https://files.rcsb.org/download/5lzf.pdb.gz\n", "Downloading https://files.rcsb.org/download/5mlc.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5mlc.pdb.gz\n", "Downloading https://files.rcsb.org/download/5mmi.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5mmi.pdb.gz\n", "Downloading https://files.rcsb.org/download/5nco.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5nco.pdb.gz\n", "Failed to download https://files.rcsb.org/download/5nco.pdb.gz\n", "Downloading https://files.rcsb.org/download/5nd8.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5nd8.pdb.gz\n", "Failed to download https://files.rcsb.org/download/5nd8.pdb.gz\n", "Downloading https://files.rcsb.org/download/5nd9.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5nd9.pdb.gz\n", "Failed to download https://files.rcsb.org/download/5nd9.pdb.gz\n", "Downloading https://files.rcsb.org/download/5njt.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5njt.pdb.gz\n", "Failed to download https://files.rcsb.org/download/5njt.pdb.gz\n", "Downloading https://files.rcsb.org/download/5nrg.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5nrg.pdb.gz\n", "Downloading https://files.rcsb.org/download/5o60.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5o60.pdb.gz\n", "Downloading https://files.rcsb.org/download/5tcu.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5tcu.pdb.gz\n", "Failed to download https://files.rcsb.org/download/5tcu.pdb.gz\n", "Downloading https://files.rcsb.org/download/5v7q.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5v7q.pdb.gz\n", "Downloading https://files.rcsb.org/download/5v8i.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5v8i.pdb.gz\n", "Failed to download https://files.rcsb.org/download/5v8i.pdb.gz\n", "Downloading https://files.rcsb.org/download/5v93.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5v93.pdb.gz\n", "Failed to download https://files.rcsb.org/download/5v93.pdb.gz\n", "Downloading https://files.rcsb.org/download/5x8t.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5x8t.pdb.gz\n", "Downloading https://files.rcsb.org/download/5xym.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5xym.pdb.gz\n", "Downloading https://files.rcsb.org/download/5zeb.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5zeb.pdb.gz\n", "Failed to download https://files.rcsb.org/download/5zeb.pdb.gz\n", "Downloading https://files.rcsb.org/download/5zep.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5zep.pdb.gz\n", "Failed to download https://files.rcsb.org/download/5zep.pdb.gz\n", "Downloading https://files.rcsb.org/download/5zet.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5zet.pdb.gz\n", "Downloading https://files.rcsb.org/download/5zlu.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5zlu.pdb.gz\n", "Failed to download https://files.rcsb.org/download/5zlu.pdb.gz\n", "Downloading https://files.rcsb.org/download/6by1.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6by1.pdb.gz\n", "Failed to download https://files.rcsb.org/download/6by1.pdb.gz\n", "Downloading https://files.rcsb.org/download/6czr.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6czr.pdb.gz\n", "Failed to download https://files.rcsb.org/download/6czr.pdb.gz\n", "Downloading https://files.rcsb.org/download/6ddd.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6ddd.pdb.gz\n", "Downloading https://files.rcsb.org/download/6ddg.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6ddg.pdb.gz\n", "Downloading https://files.rcsb.org/download/6dzp.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6dzp.pdb.gz\n", "Downloading https://files.rcsb.org/download/6gbz.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6gbz.pdb.gz\n", "Downloading https://files.rcsb.org/download/6gc0.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6gc0.pdb.gz\n", "Downloading https://files.rcsb.org/download/6gc4.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6gc4.pdb.gz\n", "Downloading https://files.rcsb.org/download/6gc6.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6gc6.pdb.gz\n", "Downloading https://files.rcsb.org/download/6gc7.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6gc7.pdb.gz\n", "Downloading https://files.rcsb.org/download/6gc8.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6gc8.pdb.gz\n", "Downloading https://files.rcsb.org/download/6gzq.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6gzq.pdb.gz\n", "Failed to download https://files.rcsb.org/download/6gzq.pdb.gz\n", "Downloading https://files.rcsb.org/download/6gzx.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6gzx.pdb.gz\n", "Failed to download https://files.rcsb.org/download/6gzx.pdb.gz\n", "Downloading https://files.rcsb.org/download/6gzz.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6gzz.pdb.gz\n", "Failed to download https://files.rcsb.org/download/6gzz.pdb.gz\n", "Downloading https://files.rcsb.org/download/6hma.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6hma.pdb.gz\n", "Downloading https://files.rcsb.org/download/6i0y.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6i0y.pdb.gz\n", "Downloading https://files.rcsb.org/download/6n1d.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6n1d.pdb.gz\n", "Failed to download https://files.rcsb.org/download/6n1d.pdb.gz\n", "Downloading https://files.rcsb.org/download/6o8z.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6o8z.pdb.gz\n", "Failed to download https://files.rcsb.org/download/6o8z.pdb.gz\n", "Downloading https://files.rcsb.org/download/6ogf.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6ogf.pdb.gz\n", "Failed to download https://files.rcsb.org/download/6ogf.pdb.gz\n", "Downloading https://files.rcsb.org/download/6ogg.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6ogg.pdb.gz\n", "Failed to download https://files.rcsb.org/download/6ogg.pdb.gz\n", "Downloading https://files.rcsb.org/download/6ogi.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6ogi.pdb.gz\n", "Failed to download https://files.rcsb.org/download/6ogi.pdb.gz\n", "Downloading https://files.rcsb.org/download/6om6.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6om6.pdb.gz\n", "Failed to download https://files.rcsb.org/download/6om6.pdb.gz\n", "Downloading https://files.rcsb.org/download/6orl.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6orl.pdb.gz\n", "Failed to download https://files.rcsb.org/download/6orl.pdb.gz\n", "Downloading https://files.rcsb.org/download/6ot3.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6ot3.pdb.gz\n", "Failed to download https://files.rcsb.org/download/6ot3.pdb.gz\n", "Downloading https://files.rcsb.org/download/6ouo.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6ouo.pdb.gz\n", "Failed to download https://files.rcsb.org/download/6ouo.pdb.gz\n", "Downloading https://files.rcsb.org/download/6pj6.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6pj6.pdb.gz\n", "Failed to download https://files.rcsb.org/download/6pj6.pdb.gz\n", "Downloading https://files.rcsb.org/download/6ppf.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6ppf.pdb.gz\n", "Downloading https://files.rcsb.org/download/6ppk.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6ppk.pdb.gz\n", "Downloading https://files.rcsb.org/download/6pvk.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6pvk.pdb.gz\n", "Downloading https://files.rcsb.org/download/6qdw.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6qdw.pdb.gz\n", "Downloading https://files.rcsb.org/download/6qul.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6qul.pdb.gz\n", "Downloading https://files.rcsb.org/download/6s0k.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6s0k.pdb.gz\n", "Downloading https://files.rcsb.org/download/6s0z.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6s0z.pdb.gz\n", "Failed to download https://files.rcsb.org/download/6s0z.pdb.gz\n", "Downloading https://files.rcsb.org/download/6s12.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6s12.pdb.gz\n", "Failed to download https://files.rcsb.org/download/6s12.pdb.gz\n", "Downloading https://files.rcsb.org/download/6s13.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6s13.pdb.gz\n", "Failed to download https://files.rcsb.org/download/6s13.pdb.gz\n", "Downloading https://files.rcsb.org/download/6sj6.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6sj6.pdb.gz\n", "Downloading https://files.rcsb.org/download/6spb.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6spb.pdb.gz\n", "Downloading https://files.rcsb.org/download/6spd.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6spd.pdb.gz\n", "Downloading https://files.rcsb.org/download/6tnn.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6tnn.pdb.gz\n", "Downloading https://files.rcsb.org/download/6tpq.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6tpq.pdb.gz\n", "Downloading https://files.rcsb.org/download/6u48.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6u48.pdb.gz\n", "Failed to download https://files.rcsb.org/download/6u48.pdb.gz\n", "Downloading https://files.rcsb.org/download/6v39.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6v39.pdb.gz\n", "Failed to download https://files.rcsb.org/download/6v39.pdb.gz\n", "Downloading https://files.rcsb.org/download/6v3a.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6v3a.pdb.gz\n", "Failed to download https://files.rcsb.org/download/6v3a.pdb.gz\n", "Downloading https://files.rcsb.org/download/6v3b.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6v3b.pdb.gz\n", "Failed to download https://files.rcsb.org/download/6v3b.pdb.gz\n", "Downloading https://files.rcsb.org/download/6v3d.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6v3d.pdb.gz\n", "Failed to download https://files.rcsb.org/download/6v3d.pdb.gz\n", "Downloading https://files.rcsb.org/download/6wda.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6wda.pdb.gz\n", "Failed to download https://files.rcsb.org/download/6wda.pdb.gz\n", "Downloading https://files.rcsb.org/download/6wdb.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6wdb.pdb.gz\n", "Failed to download https://files.rcsb.org/download/6wdb.pdb.gz\n", "Downloading https://files.rcsb.org/download/6wdc.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6wdc.pdb.gz\n", "Failed to download https://files.rcsb.org/download/6wdc.pdb.gz\n", "Downloading https://files.rcsb.org/download/6wdg.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6wdg.pdb.gz\n", "Failed to download https://files.rcsb.org/download/6wdg.pdb.gz\n", "Downloading https://files.rcsb.org/download/6wdi.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6wdi.pdb.gz\n", "Failed to download https://files.rcsb.org/download/6wdi.pdb.gz\n", "Downloading https://files.rcsb.org/download/6wqn.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6wqn.pdb.gz\n", "Downloading https://files.rcsb.org/download/6wqq.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6wqq.pdb.gz\n", "Downloading https://files.rcsb.org/download/6wrs.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6wrs.pdb.gz\n", "Downloading https://files.rcsb.org/download/6wru.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6wru.pdb.gz\n", "Downloading https://files.rcsb.org/download/6xz7.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6xz7.pdb.gz\n", "Downloading https://files.rcsb.org/download/6yhs.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6yhs.pdb.gz\n", "Downloading https://files.rcsb.org/download/6ys3.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6ys3.pdb.gz\n", "Downloading https://files.rcsb.org/download/6ysi.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6ysi.pdb.gz\n", "Downloading https://files.rcsb.org/download/6ztl.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6ztl.pdb.gz\n", "Failed to download https://files.rcsb.org/download/6ztl.pdb.gz\n", "Downloading https://files.rcsb.org/download/7a0r.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7a0r.pdb.gz\n", "Downloading https://files.rcsb.org/download/7a0s.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7a0s.pdb.gz\n", "Downloading https://files.rcsb.org/download/7a18.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7a18.pdb.gz\n", "Downloading https://files.rcsb.org/download/7aqc.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7aqc.pdb.gz\n", "Downloading https://files.rcsb.org/download/7aqd.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7aqd.pdb.gz\n", "Downloading https://files.rcsb.org/download/7as8.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7as8.pdb.gz\n", "Downloading https://files.rcsb.org/download/7as9.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7as9.pdb.gz\n", "Downloading https://files.rcsb.org/download/7asm.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7asm.pdb.gz\n", "Downloading https://files.rcsb.org/download/7bv8.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7bv8.pdb.gz\n", "Downloading https://files.rcsb.org/download/7jsw.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7jsw.pdb.gz\n", "Failed to download https://files.rcsb.org/download/7jsw.pdb.gz\n", "Downloading https://files.rcsb.org/download/7jt1.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7jt1.pdb.gz\n", "Failed to download https://files.rcsb.org/download/7jt1.pdb.gz\n", "Downloading https://files.rcsb.org/download/7jt3.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7jt3.pdb.gz\n", "Failed to download https://files.rcsb.org/download/7jt3.pdb.gz\n", "Downloading https://files.rcsb.org/download/7ope.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7ope.pdb.gz\n", "Downloading https://files.rcsb.org/download/7pjt.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7pjt.pdb.gz\n", "Failed to download https://files.rcsb.org/download/7pjt.pdb.gz\n", "Downloading https://files.rcsb.org/download/7nsi.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7nsi.pdb.gz\n", "Failed to download https://files.rcsb.org/download/7nsi.pdb.gz\n", "Downloading https://files.rcsb.org/download/1jj2.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1jj2.pdb.gz\n", "Downloading https://files.rcsb.org/download/1k73.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1k73.pdb.gz\n", "Downloading https://files.rcsb.org/download/1k8a.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1k8a.pdb.gz\n", "Downloading https://files.rcsb.org/download/1k9m.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1k9m.pdb.gz\n", "Downloading https://files.rcsb.org/download/1kc8.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1kc8.pdb.gz\n", "Downloading https://files.rcsb.org/download/1kd1.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1kd1.pdb.gz\n", "Downloading https://files.rcsb.org/download/1kqs.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1kqs.pdb.gz\n", "Downloading https://files.rcsb.org/download/1m1k.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1m1k.pdb.gz\n", "Downloading https://files.rcsb.org/download/1m90.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1m90.pdb.gz\n", "Downloading https://files.rcsb.org/download/1n8r.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1n8r.pdb.gz\n", "Downloading https://files.rcsb.org/download/1nji.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1nji.pdb.gz\n", "Downloading https://files.rcsb.org/download/1q7y.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1q7y.pdb.gz\n", "Downloading https://files.rcsb.org/download/1q81.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1q81.pdb.gz\n", "Downloading https://files.rcsb.org/download/1q82.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1q82.pdb.gz\n", "Downloading https://files.rcsb.org/download/1q86.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1q86.pdb.gz\n", "Downloading https://files.rcsb.org/download/1qvf.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1qvf.pdb.gz\n", "Downloading https://files.rcsb.org/download/1qvg.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1qvg.pdb.gz\n", "Downloading https://files.rcsb.org/download/1s72.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1s72.pdb.gz\n", "Downloading https://files.rcsb.org/download/1vq4.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1vq4.pdb.gz\n", "Downloading https://files.rcsb.org/download/1vq5.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1vq5.pdb.gz\n", "Downloading https://files.rcsb.org/download/1vq6.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1vq6.pdb.gz\n", "Downloading https://files.rcsb.org/download/1vq7.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1vq7.pdb.gz\n", "Downloading https://files.rcsb.org/download/1vq8.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1vq8.pdb.gz\n", "Downloading https://files.rcsb.org/download/1vq9.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1vq9.pdb.gz\n", "Downloading https://files.rcsb.org/download/1vqk.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1vqk.pdb.gz\n", "Downloading https://files.rcsb.org/download/1vql.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1vql.pdb.gz\n", "Downloading https://files.rcsb.org/download/1vqm.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1vqm.pdb.gz\n", "Downloading https://files.rcsb.org/download/1vqn.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1vqn.pdb.gz\n", "Downloading https://files.rcsb.org/download/1vqo.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1vqo.pdb.gz\n", "Downloading https://files.rcsb.org/download/1vqp.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1vqp.pdb.gz\n", "Downloading https://files.rcsb.org/download/1w2b.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1w2b.pdb.gz\n", "Downloading https://files.rcsb.org/download/1yhq.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1yhq.pdb.gz\n", "Downloading https://files.rcsb.org/download/1yi2.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1yi2.pdb.gz\n", "Downloading https://files.rcsb.org/download/1yij.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1yij.pdb.gz\n", "Downloading https://files.rcsb.org/download/1yit.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1yit.pdb.gz\n", "Downloading https://files.rcsb.org/download/1yj9.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1yj9.pdb.gz\n", "Downloading https://files.rcsb.org/download/1yjn.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1yjn.pdb.gz\n", "Downloading https://files.rcsb.org/download/1yjw.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1yjw.pdb.gz\n", "Downloading https://files.rcsb.org/download/2otj.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/2otj.pdb.gz\n", "Downloading https://files.rcsb.org/download/2otl.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/2otl.pdb.gz\n", "Downloading https://files.rcsb.org/download/2qa4.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/2qa4.pdb.gz\n", "Downloading https://files.rcsb.org/download/2qex.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/2qex.pdb.gz\n", "Downloading https://files.rcsb.org/download/3cc2.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3cc2.pdb.gz\n", "Downloading https://files.rcsb.org/download/3cc4.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3cc4.pdb.gz\n", "Downloading https://files.rcsb.org/download/3cc7.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3cc7.pdb.gz\n", "Downloading https://files.rcsb.org/download/3cce.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3cce.pdb.gz\n", "Downloading https://files.rcsb.org/download/3ccj.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3ccj.pdb.gz\n", "Downloading https://files.rcsb.org/download/3ccl.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3ccl.pdb.gz\n", "Downloading https://files.rcsb.org/download/3ccm.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3ccm.pdb.gz\n", "Downloading https://files.rcsb.org/download/3ccq.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3ccq.pdb.gz\n", "Downloading https://files.rcsb.org/download/3ccr.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3ccr.pdb.gz\n", "Downloading https://files.rcsb.org/download/3ccs.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3ccs.pdb.gz\n", "Downloading https://files.rcsb.org/download/3ccu.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3ccu.pdb.gz\n", "Downloading https://files.rcsb.org/download/3ccv.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3ccv.pdb.gz\n", "Downloading https://files.rcsb.org/download/3cd6.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3cd6.pdb.gz\n", "Downloading https://files.rcsb.org/download/3cma.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3cma.pdb.gz\n", "Downloading https://files.rcsb.org/download/3cme.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3cme.pdb.gz\n", "Downloading https://files.rcsb.org/download/3cpw.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3cpw.pdb.gz\n", "Downloading https://files.rcsb.org/download/3cxc.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3cxc.pdb.gz\n", "Downloading https://files.rcsb.org/download/3g4s.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3g4s.pdb.gz\n", "Downloading https://files.rcsb.org/download/3g6e.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3g6e.pdb.gz\n", "Downloading https://files.rcsb.org/download/3g71.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3g71.pdb.gz\n", "Downloading https://files.rcsb.org/download/3i55.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3i55.pdb.gz\n", "Downloading https://files.rcsb.org/download/3i56.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3i56.pdb.gz\n", "Downloading https://files.rcsb.org/download/3j6x.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3j6x.pdb.gz\n", "Failed to download https://files.rcsb.org/download/3j6x.pdb.gz\n", "Downloading https://files.rcsb.org/download/3j6y.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3j6y.pdb.gz\n", "Failed to download https://files.rcsb.org/download/3j6y.pdb.gz\n", "Downloading https://files.rcsb.org/download/3j77.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3j77.pdb.gz\n", "Failed to download https://files.rcsb.org/download/3j77.pdb.gz\n", "Downloading https://files.rcsb.org/download/3j78.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3j78.pdb.gz\n", "Failed to download https://files.rcsb.org/download/3j78.pdb.gz\n", "Downloading https://files.rcsb.org/download/3j79.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3j79.pdb.gz\n", "Failed to download https://files.rcsb.org/download/3j79.pdb.gz\n", "Downloading https://files.rcsb.org/download/3j7o.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3j7o.pdb.gz\n", "Failed to download https://files.rcsb.org/download/3j7o.pdb.gz\n", "Downloading https://files.rcsb.org/download/3j7p.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3j7p.pdb.gz\n", "Failed to download https://files.rcsb.org/download/3j7p.pdb.gz\n", "Downloading https://files.rcsb.org/download/3j7q.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3j7q.pdb.gz\n", "Failed to download https://files.rcsb.org/download/3j7q.pdb.gz\n", "Downloading https://files.rcsb.org/download/3j7r.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3j7r.pdb.gz\n", "Failed to download https://files.rcsb.org/download/3j7r.pdb.gz\n", "Downloading https://files.rcsb.org/download/3j92.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3j92.pdb.gz\n", "Failed to download https://files.rcsb.org/download/3j92.pdb.gz\n", "Downloading https://files.rcsb.org/download/3jag.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3jag.pdb.gz\n", "Failed to download https://files.rcsb.org/download/3jag.pdb.gz\n", "Downloading https://files.rcsb.org/download/3jah.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3jah.pdb.gz\n", "Failed to download https://files.rcsb.org/download/3jah.pdb.gz\n", "Downloading https://files.rcsb.org/download/3jai.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3jai.pdb.gz\n", "Failed to download https://files.rcsb.org/download/3jai.pdb.gz\n", "Downloading https://files.rcsb.org/download/3jaj.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3jaj.pdb.gz\n", "Failed to download https://files.rcsb.org/download/3jaj.pdb.gz\n", "Downloading https://files.rcsb.org/download/3jan.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3jan.pdb.gz\n", "Failed to download https://files.rcsb.org/download/3jan.pdb.gz\n", "Downloading https://files.rcsb.org/download/3jbn.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3jbn.pdb.gz\n", "Failed to download https://files.rcsb.org/download/3jbn.pdb.gz\n", "Downloading https://files.rcsb.org/download/3jbo.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3jbo.pdb.gz\n", "Failed to download https://files.rcsb.org/download/3jbo.pdb.gz\n", "Downloading https://files.rcsb.org/download/3jbp.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3jbp.pdb.gz\n", "Failed to download https://files.rcsb.org/download/3jbp.pdb.gz\n", "Downloading https://files.rcsb.org/download/3jcs.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3jcs.pdb.gz\n", "Failed to download https://files.rcsb.org/download/3jcs.pdb.gz\n", "Downloading https://files.rcsb.org/download/3jct.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3jct.pdb.gz\n", "Failed to download https://files.rcsb.org/download/3jct.pdb.gz\n", "Downloading https://files.rcsb.org/download/3ow2.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3ow2.pdb.gz\n", "Downloading https://files.rcsb.org/download/4d5y.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4d5y.pdb.gz\n", "Failed to download https://files.rcsb.org/download/4d5y.pdb.gz\n", "Downloading https://files.rcsb.org/download/4d67.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4d67.pdb.gz\n", "Failed to download https://files.rcsb.org/download/4d67.pdb.gz\n", "Downloading https://files.rcsb.org/download/4u3m.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4u3m.pdb.gz\n", "Failed to download https://files.rcsb.org/download/4u3m.pdb.gz\n", "Downloading https://files.rcsb.org/download/4u3n.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4u3n.pdb.gz\n", "Failed to download https://files.rcsb.org/download/4u3n.pdb.gz\n", "Downloading https://files.rcsb.org/download/4u3u.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4u3u.pdb.gz\n", "Failed to download https://files.rcsb.org/download/4u3u.pdb.gz\n", "Downloading https://files.rcsb.org/download/4u4n.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4u4n.pdb.gz\n", "Failed to download https://files.rcsb.org/download/4u4n.pdb.gz\n", "Downloading https://files.rcsb.org/download/4u4o.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4u4o.pdb.gz\n", "Failed to download https://files.rcsb.org/download/4u4o.pdb.gz\n", "Downloading https://files.rcsb.org/download/4u4q.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4u4q.pdb.gz\n", "Failed to download https://files.rcsb.org/download/4u4q.pdb.gz\n", "Downloading https://files.rcsb.org/download/4u4r.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4u4r.pdb.gz\n", "Failed to download https://files.rcsb.org/download/4u4r.pdb.gz\n", "Downloading https://files.rcsb.org/download/4u4u.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4u4u.pdb.gz\n", "Failed to download https://files.rcsb.org/download/4u4u.pdb.gz\n", "Downloading https://files.rcsb.org/download/4u4y.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4u4y.pdb.gz\n", "Failed to download https://files.rcsb.org/download/4u4y.pdb.gz\n", "Downloading https://files.rcsb.org/download/4u4z.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4u4z.pdb.gz\n", "Failed to download https://files.rcsb.org/download/4u4z.pdb.gz\n", "Downloading https://files.rcsb.org/download/4u50.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4u50.pdb.gz\n", "Failed to download https://files.rcsb.org/download/4u50.pdb.gz\n", "Downloading https://files.rcsb.org/download/4u51.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4u51.pdb.gz\n", "Failed to download https://files.rcsb.org/download/4u51.pdb.gz\n", "Downloading https://files.rcsb.org/download/4u52.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4u52.pdb.gz\n", "Failed to download https://files.rcsb.org/download/4u52.pdb.gz\n", "Downloading https://files.rcsb.org/download/4u53.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4u53.pdb.gz\n", "Failed to download https://files.rcsb.org/download/4u53.pdb.gz\n", "Downloading https://files.rcsb.org/download/4u55.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4u55.pdb.gz\n", "Failed to download https://files.rcsb.org/download/4u55.pdb.gz\n", "Downloading https://files.rcsb.org/download/4u56.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4u56.pdb.gz\n", "Failed to download https://files.rcsb.org/download/4u56.pdb.gz\n", "Downloading https://files.rcsb.org/download/4u6f.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4u6f.pdb.gz\n", "Failed to download https://files.rcsb.org/download/4u6f.pdb.gz\n", "Downloading https://files.rcsb.org/download/4ug0.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4ug0.pdb.gz\n", "Failed to download https://files.rcsb.org/download/4ug0.pdb.gz\n", "Downloading https://files.rcsb.org/download/4ujc.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4ujc.pdb.gz\n", "Failed to download https://files.rcsb.org/download/4ujc.pdb.gz\n", "Downloading https://files.rcsb.org/download/4ujd.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4ujd.pdb.gz\n", "Failed to download https://files.rcsb.org/download/4ujd.pdb.gz\n", "Downloading https://files.rcsb.org/download/4uje.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4uje.pdb.gz\n", "Failed to download https://files.rcsb.org/download/4uje.pdb.gz\n", "Downloading https://files.rcsb.org/download/4v3p.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4v3p.pdb.gz\n", "Failed to download https://files.rcsb.org/download/4v3p.pdb.gz\n", "Downloading https://files.rcsb.org/download/4v4n.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4v4n.pdb.gz\n", "Failed to download https://files.rcsb.org/download/4v4n.pdb.gz\n", "Downloading https://files.rcsb.org/download/4v6i.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4v6i.pdb.gz\n", "Failed to download https://files.rcsb.org/download/4v6i.pdb.gz\n", "Downloading https://files.rcsb.org/download/4v6u.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4v6u.pdb.gz\n", "Failed to download https://files.rcsb.org/download/4v6u.pdb.gz\n", "Downloading https://files.rcsb.org/download/4v6w.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4v6w.pdb.gz\n", "Failed to download https://files.rcsb.org/download/4v6w.pdb.gz\n", "Downloading https://files.rcsb.org/download/4v6x.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4v6x.pdb.gz\n", "Failed to download https://files.rcsb.org/download/4v6x.pdb.gz\n", "Downloading https://files.rcsb.org/download/4v7e.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4v7e.pdb.gz\n", "Failed to download https://files.rcsb.org/download/4v7e.pdb.gz\n", "Downloading https://files.rcsb.org/download/4v8m.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4v8m.pdb.gz\n", "Failed to download https://files.rcsb.org/download/4v8m.pdb.gz\n", "Downloading https://files.rcsb.org/download/4v8p.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4v8p.pdb.gz\n", "Failed to download https://files.rcsb.org/download/4v8p.pdb.gz\n", "Downloading https://files.rcsb.org/download/4v8t.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4v8t.pdb.gz\n", "Failed to download https://files.rcsb.org/download/4v8t.pdb.gz\n", "Downloading https://files.rcsb.org/download/4v8y.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4v8y.pdb.gz\n", "Failed to download https://files.rcsb.org/download/4v8y.pdb.gz\n", "Downloading https://files.rcsb.org/download/4v8z.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4v8z.pdb.gz\n", "Failed to download https://files.rcsb.org/download/4v8z.pdb.gz\n", "Downloading https://files.rcsb.org/download/4v9f.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4v9f.pdb.gz\n", "Failed to download https://files.rcsb.org/download/4v9f.pdb.gz\n", "Downloading https://files.rcsb.org/download/5aj0.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5aj0.pdb.gz\n", "Failed to download https://files.rcsb.org/download/5aj0.pdb.gz\n", "Downloading https://files.rcsb.org/download/5apn.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5apn.pdb.gz\n", "Failed to download https://files.rcsb.org/download/5apn.pdb.gz\n", "Downloading https://files.rcsb.org/download/5apo.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5apo.pdb.gz\n", "Failed to download https://files.rcsb.org/download/5apo.pdb.gz\n", "Downloading https://files.rcsb.org/download/5dat.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5dat.pdb.gz\n", "Failed to download https://files.rcsb.org/download/5dat.pdb.gz\n", "Downloading https://files.rcsb.org/download/5dc3.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5dc3.pdb.gz\n", "Failed to download https://files.rcsb.org/download/5dc3.pdb.gz\n", "Downloading https://files.rcsb.org/download/5dgf.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5dgf.pdb.gz\n", "Failed to download https://files.rcsb.org/download/5dgf.pdb.gz\n", "Downloading https://files.rcsb.org/download/5dgv.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5dgv.pdb.gz\n", "Failed to download https://files.rcsb.org/download/5dgv.pdb.gz\n", "Downloading https://files.rcsb.org/download/5fci.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5fci.pdb.gz\n", "Failed to download https://files.rcsb.org/download/5fci.pdb.gz\n", "Downloading https://files.rcsb.org/download/5fcj.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5fcj.pdb.gz\n", "Failed to download https://files.rcsb.org/download/5fcj.pdb.gz\n", "Downloading https://files.rcsb.org/download/5gak.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5gak.pdb.gz\n", "Failed to download https://files.rcsb.org/download/5gak.pdb.gz\n", "Downloading https://files.rcsb.org/download/5h4p.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5h4p.pdb.gz\n", "Failed to download https://files.rcsb.org/download/5h4p.pdb.gz\n", "Downloading https://files.rcsb.org/download/5i4l.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5i4l.pdb.gz\n", "Failed to download https://files.rcsb.org/download/5i4l.pdb.gz\n", "Downloading https://files.rcsb.org/download/5it7.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5it7.pdb.gz\n", "Failed to download https://files.rcsb.org/download/5it7.pdb.gz\n", "Downloading https://files.rcsb.org/download/5juo.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5juo.pdb.gz\n", "Failed to download https://files.rcsb.org/download/5juo.pdb.gz\n", "Downloading https://files.rcsb.org/download/5jup.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5jup.pdb.gz\n", "Failed to download https://files.rcsb.org/download/5jup.pdb.gz\n", "Downloading https://files.rcsb.org/download/5jus.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5jus.pdb.gz\n", "Failed to download https://files.rcsb.org/download/5jus.pdb.gz\n", "Downloading https://files.rcsb.org/download/5jut.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5jut.pdb.gz\n", "Failed to download https://files.rcsb.org/download/5jut.pdb.gz\n", "Downloading https://files.rcsb.org/download/5juu.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5juu.pdb.gz\n", "Failed to download https://files.rcsb.org/download/5juu.pdb.gz\n", "Downloading https://files.rcsb.org/download/5lks.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5lks.pdb.gz\n", "Failed to download https://files.rcsb.org/download/5lks.pdb.gz\n", "Downloading https://files.rcsb.org/download/5lyb.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5lyb.pdb.gz\n", "Failed to download https://files.rcsb.org/download/5lyb.pdb.gz\n", "Downloading https://files.rcsb.org/download/5lzs.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5lzs.pdb.gz\n", "Failed to download https://files.rcsb.org/download/5lzs.pdb.gz\n", "Downloading https://files.rcsb.org/download/5lzt.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5lzt.pdb.gz\n", "Failed to download https://files.rcsb.org/download/5lzt.pdb.gz\n", "Downloading https://files.rcsb.org/download/5lzu.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5lzu.pdb.gz\n", "Failed to download https://files.rcsb.org/download/5lzu.pdb.gz\n", "Downloading https://files.rcsb.org/download/5lzv.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5lzv.pdb.gz\n", "Failed to download https://files.rcsb.org/download/5lzv.pdb.gz\n", "Downloading https://files.rcsb.org/download/5lzw.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5lzw.pdb.gz\n", "Failed to download https://files.rcsb.org/download/5lzw.pdb.gz\n", "Downloading https://files.rcsb.org/download/5lzx.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5lzx.pdb.gz\n", "Failed to download https://files.rcsb.org/download/5lzx.pdb.gz\n", "Downloading https://files.rcsb.org/download/5lzy.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5lzy.pdb.gz\n", "Failed to download https://files.rcsb.org/download/5lzy.pdb.gz\n", "Downloading https://files.rcsb.org/download/5lzz.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5lzz.pdb.gz\n", "Failed to download https://files.rcsb.org/download/5lzz.pdb.gz\n", "Downloading https://files.rcsb.org/download/5m1j.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5m1j.pdb.gz\n", "Failed to download https://files.rcsb.org/download/5m1j.pdb.gz\n", "Downloading https://files.rcsb.org/download/5mc6.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5mc6.pdb.gz\n", "Failed to download https://files.rcsb.org/download/5mc6.pdb.gz\n", "Downloading https://files.rcsb.org/download/5mei.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5mei.pdb.gz\n", "Failed to download https://files.rcsb.org/download/5mei.pdb.gz\n", "Downloading https://files.rcsb.org/download/5ndg.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5ndg.pdb.gz\n", "Failed to download https://files.rcsb.org/download/5ndg.pdb.gz\n", "Downloading https://files.rcsb.org/download/5ndv.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5ndv.pdb.gz\n", "Failed to download https://files.rcsb.org/download/5ndv.pdb.gz\n", "Downloading https://files.rcsb.org/download/5ndw.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5ndw.pdb.gz\n", "Failed to download https://files.rcsb.org/download/5ndw.pdb.gz\n", "Downloading https://files.rcsb.org/download/5obm.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5obm.pdb.gz\n", "Failed to download https://files.rcsb.org/download/5obm.pdb.gz\n", "Downloading https://files.rcsb.org/download/5on6.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5on6.pdb.gz\n", "Failed to download https://files.rcsb.org/download/5on6.pdb.gz\n", "Downloading https://files.rcsb.org/download/5t2a.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5t2a.pdb.gz\n", "Failed to download https://files.rcsb.org/download/5t2a.pdb.gz\n", "Downloading https://files.rcsb.org/download/5t2c.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5t2c.pdb.gz\n", "Failed to download https://files.rcsb.org/download/5t2c.pdb.gz\n", "Downloading https://files.rcsb.org/download/5t5h.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5t5h.pdb.gz\n", "Failed to download https://files.rcsb.org/download/5t5h.pdb.gz\n", "Downloading https://files.rcsb.org/download/5t62.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5t62.pdb.gz\n", "Failed to download https://files.rcsb.org/download/5t62.pdb.gz\n", "Downloading https://files.rcsb.org/download/5t6r.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5t6r.pdb.gz\n", "Failed to download https://files.rcsb.org/download/5t6r.pdb.gz\n", "Downloading https://files.rcsb.org/download/5tbw.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5tbw.pdb.gz\n", "Failed to download https://files.rcsb.org/download/5tbw.pdb.gz\n", "Downloading https://files.rcsb.org/download/5tga.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5tga.pdb.gz\n", "Failed to download https://files.rcsb.org/download/5tga.pdb.gz\n", "Downloading https://files.rcsb.org/download/5umd.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5umd.pdb.gz\n", "Failed to download https://files.rcsb.org/download/5umd.pdb.gz\n", "Downloading https://files.rcsb.org/download/5xxb.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5xxb.pdb.gz\n", "Failed to download https://files.rcsb.org/download/5xxb.pdb.gz\n", "Downloading https://files.rcsb.org/download/5xy3.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5xy3.pdb.gz\n", "Failed to download https://files.rcsb.org/download/5xy3.pdb.gz\n", "Downloading https://files.rcsb.org/download/6az3.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6az3.pdb.gz\n", "Failed to download https://files.rcsb.org/download/6az3.pdb.gz\n", "Downloading https://files.rcsb.org/download/6c0f.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6c0f.pdb.gz\n", "Downloading https://files.rcsb.org/download/6d90.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6d90.pdb.gz\n", "Failed to download https://files.rcsb.org/download/6d90.pdb.gz\n", "Downloading https://files.rcsb.org/download/6d9j.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6d9j.pdb.gz\n", "Failed to download https://files.rcsb.org/download/6d9j.pdb.gz\n", "Downloading https://files.rcsb.org/download/6frk.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6frk.pdb.gz\n", "Failed to download https://files.rcsb.org/download/6frk.pdb.gz\n", "Downloading https://files.rcsb.org/download/6ft6.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6ft6.pdb.gz\n", "Failed to download https://files.rcsb.org/download/6ft6.pdb.gz\n", "Downloading https://files.rcsb.org/download/6ftg.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6ftg.pdb.gz\n", "Failed to download https://files.rcsb.org/download/6ftg.pdb.gz\n", "Downloading https://files.rcsb.org/download/6fti.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6fti.pdb.gz\n", "Failed to download https://files.rcsb.org/download/6fti.pdb.gz\n", "Downloading https://files.rcsb.org/download/6ftj.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6ftj.pdb.gz\n", "Failed to download https://files.rcsb.org/download/6ftj.pdb.gz\n", "Downloading https://files.rcsb.org/download/6gq1.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6gq1.pdb.gz\n", "Failed to download https://files.rcsb.org/download/6gq1.pdb.gz\n", "Downloading https://files.rcsb.org/download/6gqb.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6gqb.pdb.gz\n", "Failed to download https://files.rcsb.org/download/6gqb.pdb.gz\n", "Downloading https://files.rcsb.org/download/6gqv.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6gqv.pdb.gz\n", "Failed to download https://files.rcsb.org/download/6gqv.pdb.gz\n", "Downloading https://files.rcsb.org/download/6gz3.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6gz3.pdb.gz\n", "Failed to download https://files.rcsb.org/download/6gz3.pdb.gz\n", "Downloading https://files.rcsb.org/download/6gz4.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6gz4.pdb.gz\n", "Failed to download https://files.rcsb.org/download/6gz4.pdb.gz\n", "Downloading https://files.rcsb.org/download/6gz5.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6gz5.pdb.gz\n", "Failed to download https://files.rcsb.org/download/6gz5.pdb.gz\n", "Downloading https://files.rcsb.org/download/6hcf.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6hcf.pdb.gz\n", "Failed to download https://files.rcsb.org/download/6hcf.pdb.gz\n", "Downloading https://files.rcsb.org/download/6hcj.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6hcj.pdb.gz\n", "Failed to download https://files.rcsb.org/download/6hcj.pdb.gz\n", "Downloading https://files.rcsb.org/download/6hcm.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6hcm.pdb.gz\n", "Failed to download https://files.rcsb.org/download/6hcm.pdb.gz\n", "Downloading https://files.rcsb.org/download/6hcq.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6hcq.pdb.gz\n", "Failed to download https://files.rcsb.org/download/6hcq.pdb.gz\n", "Downloading https://files.rcsb.org/download/6hd7.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6hd7.pdb.gz\n", "Failed to download https://files.rcsb.org/download/6hd7.pdb.gz\n", "Downloading https://files.rcsb.org/download/6hhq.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6hhq.pdb.gz\n", "Failed to download https://files.rcsb.org/download/6hhq.pdb.gz\n", "Downloading https://files.rcsb.org/download/6i7o.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6i7o.pdb.gz\n", "Failed to download https://files.rcsb.org/download/6i7o.pdb.gz\n", "Downloading https://files.rcsb.org/download/6ip5.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6ip5.pdb.gz\n", "Failed to download https://files.rcsb.org/download/6ip5.pdb.gz\n", "Downloading https://files.rcsb.org/download/6ip6.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6ip6.pdb.gz\n", "Failed to download https://files.rcsb.org/download/6ip6.pdb.gz\n", "Downloading https://files.rcsb.org/download/6ip8.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6ip8.pdb.gz\n", "Failed to download https://files.rcsb.org/download/6ip8.pdb.gz\n", "Downloading https://files.rcsb.org/download/6lqm.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6lqm.pdb.gz\n", "Failed to download https://files.rcsb.org/download/6lqm.pdb.gz\n", "Downloading https://files.rcsb.org/download/6lsr.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6lsr.pdb.gz\n", "Failed to download https://files.rcsb.org/download/6lsr.pdb.gz\n", "Downloading https://files.rcsb.org/download/6lss.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6lss.pdb.gz\n", "Failed to download https://files.rcsb.org/download/6lss.pdb.gz\n", "Downloading https://files.rcsb.org/download/6lu8.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6lu8.pdb.gz\n", "Failed to download https://files.rcsb.org/download/6lu8.pdb.gz\n", "Downloading https://files.rcsb.org/download/6m62.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6m62.pdb.gz\n", "Failed to download https://files.rcsb.org/download/6m62.pdb.gz\n", "Downloading https://files.rcsb.org/download/6mtb.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6mtb.pdb.gz\n", "Failed to download https://files.rcsb.org/download/6mtb.pdb.gz\n", "Downloading https://files.rcsb.org/download/6mtc.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6mtc.pdb.gz\n", "Failed to download https://files.rcsb.org/download/6mtc.pdb.gz\n", "Downloading https://files.rcsb.org/download/6mtd.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6mtd.pdb.gz\n", "Failed to download https://files.rcsb.org/download/6mtd.pdb.gz\n", "Downloading https://files.rcsb.org/download/6mte.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6mte.pdb.gz\n", "Failed to download https://files.rcsb.org/download/6mte.pdb.gz\n", "Downloading https://files.rcsb.org/download/6n8j.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6n8j.pdb.gz\n", "Failed to download https://files.rcsb.org/download/6n8j.pdb.gz\n", "Downloading https://files.rcsb.org/download/6n8k.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6n8k.pdb.gz\n", "Failed to download https://files.rcsb.org/download/6n8k.pdb.gz\n", "Downloading https://files.rcsb.org/download/6n8l.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6n8l.pdb.gz\n", "Failed to download https://files.rcsb.org/download/6n8l.pdb.gz\n", "Downloading https://files.rcsb.org/download/6n8m.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6n8m.pdb.gz\n", "Failed to download https://files.rcsb.org/download/6n8m.pdb.gz\n", "Downloading https://files.rcsb.org/download/6n8n.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6n8n.pdb.gz\n", "Failed to download https://files.rcsb.org/download/6n8n.pdb.gz\n", "Downloading https://files.rcsb.org/download/6n8o.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6n8o.pdb.gz\n", "Failed to download https://files.rcsb.org/download/6n8o.pdb.gz\n", "Downloading https://files.rcsb.org/download/6ole.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6ole.pdb.gz\n", "Failed to download https://files.rcsb.org/download/6ole.pdb.gz\n", "Downloading https://files.rcsb.org/download/6olf.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6olf.pdb.gz\n", "Failed to download https://files.rcsb.org/download/6olf.pdb.gz\n", "Downloading https://files.rcsb.org/download/6olg.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6olg.pdb.gz\n", "Failed to download https://files.rcsb.org/download/6olg.pdb.gz\n", "Downloading https://files.rcsb.org/download/6oli.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6oli.pdb.gz\n", "Failed to download https://files.rcsb.org/download/6oli.pdb.gz\n", "Downloading https://files.rcsb.org/download/6olz.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6olz.pdb.gz\n", "Failed to download https://files.rcsb.org/download/6olz.pdb.gz\n", "Downloading https://files.rcsb.org/download/6om0.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6om0.pdb.gz\n", "Failed to download https://files.rcsb.org/download/6om0.pdb.gz\n", "Downloading https://files.rcsb.org/download/6om7.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6om7.pdb.gz\n", "Failed to download https://files.rcsb.org/download/6om7.pdb.gz\n", "Downloading https://files.rcsb.org/download/6p5i.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6p5i.pdb.gz\n", "Failed to download https://files.rcsb.org/download/6p5i.pdb.gz\n", "Downloading https://files.rcsb.org/download/6p5j.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6p5j.pdb.gz\n", "Failed to download https://files.rcsb.org/download/6p5j.pdb.gz\n", "Downloading https://files.rcsb.org/download/6p5k.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6p5k.pdb.gz\n", "Failed to download https://files.rcsb.org/download/6p5k.pdb.gz\n", "Downloading https://files.rcsb.org/download/6p5n.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6p5n.pdb.gz\n", "Failed to download https://files.rcsb.org/download/6p5n.pdb.gz\n", "Downloading https://files.rcsb.org/download/6q8y.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6q8y.pdb.gz\n", "Failed to download https://files.rcsb.org/download/6q8y.pdb.gz\n", "Downloading https://files.rcsb.org/download/6qik.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6qik.pdb.gz\n", "Failed to download https://files.rcsb.org/download/6qik.pdb.gz\n", "Downloading https://files.rcsb.org/download/6qt0.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6qt0.pdb.gz\n", "Failed to download https://files.rcsb.org/download/6qt0.pdb.gz\n", "Downloading https://files.rcsb.org/download/6qtz.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6qtz.pdb.gz\n", "Failed to download https://files.rcsb.org/download/6qtz.pdb.gz\n", "Downloading https://files.rcsb.org/download/6r5q.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6r5q.pdb.gz\n", "Failed to download https://files.rcsb.org/download/6r5q.pdb.gz\n", "Downloading https://files.rcsb.org/download/6r6g.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6r6g.pdb.gz\n", "Failed to download https://files.rcsb.org/download/6r6g.pdb.gz\n", "Downloading https://files.rcsb.org/download/6r6p.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6r6p.pdb.gz\n", "Failed to download https://files.rcsb.org/download/6r6p.pdb.gz\n", "Downloading https://files.rcsb.org/download/6r7q.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6r7q.pdb.gz\n", "Failed to download https://files.rcsb.org/download/6r7q.pdb.gz\n", "Downloading https://files.rcsb.org/download/6r84.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6r84.pdb.gz\n", "Failed to download https://files.rcsb.org/download/6r84.pdb.gz\n", "Downloading https://files.rcsb.org/download/6r86.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6r86.pdb.gz\n", "Failed to download https://files.rcsb.org/download/6r86.pdb.gz\n", "Downloading https://files.rcsb.org/download/6r87.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6r87.pdb.gz\n", "Failed to download https://files.rcsb.org/download/6r87.pdb.gz\n", "Downloading https://files.rcsb.org/download/6ri5.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6ri5.pdb.gz\n", "Failed to download https://files.rcsb.org/download/6ri5.pdb.gz\n", "Downloading https://files.rcsb.org/download/6rm3.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6rm3.pdb.gz\n", "Failed to download https://files.rcsb.org/download/6rm3.pdb.gz\n", "Downloading https://files.rcsb.org/download/6rzz.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6rzz.pdb.gz\n", "Failed to download https://files.rcsb.org/download/6rzz.pdb.gz\n", "Downloading https://files.rcsb.org/download/6s05.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6s05.pdb.gz\n", "Failed to download https://files.rcsb.org/download/6s05.pdb.gz\n", "Downloading https://files.rcsb.org/download/6s47.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6s47.pdb.gz\n", "Failed to download https://files.rcsb.org/download/6s47.pdb.gz\n", "Downloading https://files.rcsb.org/download/6sgc.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6sgc.pdb.gz\n", "Failed to download https://files.rcsb.org/download/6sgc.pdb.gz\n", "Downloading https://files.rcsb.org/download/6skf.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6skf.pdb.gz\n", "Failed to download https://files.rcsb.org/download/6skf.pdb.gz\n", "Downloading https://files.rcsb.org/download/6skg.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6skg.pdb.gz\n", "Failed to download https://files.rcsb.org/download/6skg.pdb.gz\n", "Downloading https://files.rcsb.org/download/6snt.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6snt.pdb.gz\n", "Failed to download https://files.rcsb.org/download/6snt.pdb.gz\n", "Downloading https://files.rcsb.org/download/6sv4.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6sv4.pdb.gz\n", "Failed to download https://files.rcsb.org/download/6sv4.pdb.gz\n", "Downloading https://files.rcsb.org/download/6swa.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6swa.pdb.gz\n", "Failed to download https://files.rcsb.org/download/6swa.pdb.gz\n", "Downloading https://files.rcsb.org/download/6t4q.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6t4q.pdb.gz\n", "Failed to download https://files.rcsb.org/download/6t4q.pdb.gz\n", "Downloading https://files.rcsb.org/download/6t59.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6t59.pdb.gz\n", "Failed to download https://files.rcsb.org/download/6t59.pdb.gz\n", "Downloading https://files.rcsb.org/download/6t7i.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6t7i.pdb.gz\n", "Failed to download https://files.rcsb.org/download/6t7i.pdb.gz\n", "Downloading https://files.rcsb.org/download/6t7t.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6t7t.pdb.gz\n", "Failed to download https://files.rcsb.org/download/6t7t.pdb.gz\n", "Downloading https://files.rcsb.org/download/6t83.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6t83.pdb.gz\n", "Failed to download https://files.rcsb.org/download/6t83.pdb.gz\n", "Downloading https://files.rcsb.org/download/6tb3.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6tb3.pdb.gz\n", "Failed to download https://files.rcsb.org/download/6tb3.pdb.gz\n", "Downloading https://files.rcsb.org/download/6th6.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6th6.pdb.gz\n", "Failed to download https://files.rcsb.org/download/6th6.pdb.gz\n", "Downloading https://files.rcsb.org/download/6tnu.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6tnu.pdb.gz\n", "Failed to download https://files.rcsb.org/download/6tnu.pdb.gz\n", "Downloading https://files.rcsb.org/download/6uz7.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6uz7.pdb.gz\n", "Failed to download https://files.rcsb.org/download/6uz7.pdb.gz\n", "Downloading https://files.rcsb.org/download/6w6l.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6w6l.pdb.gz\n", "Failed to download https://files.rcsb.org/download/6w6l.pdb.gz\n", "Downloading https://files.rcsb.org/download/6woo.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6woo.pdb.gz\n", "Failed to download https://files.rcsb.org/download/6woo.pdb.gz\n", "Downloading https://files.rcsb.org/download/6xa1.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6xa1.pdb.gz\n", "Failed to download https://files.rcsb.org/download/6xa1.pdb.gz\n", "Downloading https://files.rcsb.org/download/6xiq.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6xiq.pdb.gz\n", "Failed to download https://files.rcsb.org/download/6xiq.pdb.gz\n", "Downloading https://files.rcsb.org/download/6xir.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6xir.pdb.gz\n", "Failed to download https://files.rcsb.org/download/6xir.pdb.gz\n", "Downloading https://files.rcsb.org/download/6y0g.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6y0g.pdb.gz\n", "Failed to download https://files.rcsb.org/download/6y0g.pdb.gz\n", "Downloading https://files.rcsb.org/download/6y2l.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6y2l.pdb.gz\n", "Failed to download https://files.rcsb.org/download/6y2l.pdb.gz\n", "Downloading https://files.rcsb.org/download/6y57.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6y57.pdb.gz\n", "Failed to download https://files.rcsb.org/download/6y57.pdb.gz\n", "Downloading https://files.rcsb.org/download/6y6x.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6y6x.pdb.gz\n", "Failed to download https://files.rcsb.org/download/6y6x.pdb.gz\n", "Downloading https://files.rcsb.org/download/6ylg.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6ylg.pdb.gz\n", "Failed to download https://files.rcsb.org/download/6ylg.pdb.gz\n", "Downloading https://files.rcsb.org/download/6ylh.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6ylh.pdb.gz\n", "Failed to download https://files.rcsb.org/download/6ylh.pdb.gz\n", "Downloading https://files.rcsb.org/download/6ylx.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6ylx.pdb.gz\n", "Failed to download https://files.rcsb.org/download/6ylx.pdb.gz\n", "Downloading https://files.rcsb.org/download/6yly.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6yly.pdb.gz\n", "Failed to download https://files.rcsb.org/download/6yly.pdb.gz\n", "Downloading https://files.rcsb.org/download/6z6j.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6z6j.pdb.gz\n", "Failed to download https://files.rcsb.org/download/6z6j.pdb.gz\n", "Downloading https://files.rcsb.org/download/6z6k.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6z6k.pdb.gz\n", "Failed to download https://files.rcsb.org/download/6z6k.pdb.gz\n", "Downloading https://files.rcsb.org/download/6z6l.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6z6l.pdb.gz\n", "Failed to download https://files.rcsb.org/download/6z6l.pdb.gz\n", "Downloading https://files.rcsb.org/download/6z6m.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6z6m.pdb.gz\n", "Failed to download https://files.rcsb.org/download/6z6m.pdb.gz\n", "Downloading https://files.rcsb.org/download/6z6n.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6z6n.pdb.gz\n", "Failed to download https://files.rcsb.org/download/6z6n.pdb.gz\n", "Downloading https://files.rcsb.org/download/6zj3.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6zj3.pdb.gz\n", "Failed to download https://files.rcsb.org/download/6zj3.pdb.gz\n", "Downloading https://files.rcsb.org/download/6zm7.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6zm7.pdb.gz\n", "Failed to download https://files.rcsb.org/download/6zm7.pdb.gz\n", "Downloading https://files.rcsb.org/download/6zme.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6zme.pdb.gz\n", "Failed to download https://files.rcsb.org/download/6zme.pdb.gz\n", "Downloading https://files.rcsb.org/download/6zmi.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6zmi.pdb.gz\n", "Failed to download https://files.rcsb.org/download/6zmi.pdb.gz\n", "Downloading https://files.rcsb.org/download/6zmo.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6zmo.pdb.gz\n", "Failed to download https://files.rcsb.org/download/6zmo.pdb.gz\n", "Downloading https://files.rcsb.org/download/6zu5.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6zu5.pdb.gz\n", "Failed to download https://files.rcsb.org/download/6zu5.pdb.gz\n", "Downloading https://files.rcsb.org/download/6zvk.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6zvk.pdb.gz\n", "Failed to download https://files.rcsb.org/download/6zvk.pdb.gz\n", "Downloading https://files.rcsb.org/download/7a01.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7a01.pdb.gz\n", "Failed to download https://files.rcsb.org/download/7a01.pdb.gz\n", "Downloading https://files.rcsb.org/download/7b7d.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7b7d.pdb.gz\n", "Failed to download https://files.rcsb.org/download/7b7d.pdb.gz\n", "Downloading https://files.rcsb.org/download/7bt6.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7bt6.pdb.gz\n", "Failed to download https://files.rcsb.org/download/7bt6.pdb.gz\n", "Downloading https://files.rcsb.org/download/7btb.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7btb.pdb.gz\n", "Failed to download https://files.rcsb.org/download/7btb.pdb.gz\n", "Downloading https://files.rcsb.org/download/3bbx.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3bbx.pdb.gz\n", "Downloading https://files.rcsb.org/download/4u67.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4u67.pdb.gz\n", "Downloading https://files.rcsb.org/download/4v4j.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4v4j.pdb.gz\n", "Failed to download https://files.rcsb.org/download/4v4j.pdb.gz\n", "Downloading https://files.rcsb.org/download/4v4v.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4v4v.pdb.gz\n", "Failed to download https://files.rcsb.org/download/4v4v.pdb.gz\n", "Downloading https://files.rcsb.org/download/4v4w.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4v4w.pdb.gz\n", "Failed to download https://files.rcsb.org/download/4v4w.pdb.gz\n", "Downloading https://files.rcsb.org/download/4v7p.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4v7p.pdb.gz\n", "Failed to download https://files.rcsb.org/download/4v7p.pdb.gz\n", "Downloading https://files.rcsb.org/download/4v9n.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4v9n.pdb.gz\n", "Failed to download https://files.rcsb.org/download/4v9n.pdb.gz\n", "Downloading https://files.rcsb.org/download/4w29.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4w29.pdb.gz\n", "Failed to download https://files.rcsb.org/download/4w29.pdb.gz\n", "Downloading https://files.rcsb.org/download/4wfn.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4wfn.pdb.gz\n", "Downloading https://files.rcsb.org/download/5jvh.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5jvh.pdb.gz\n", "Downloading https://files.rcsb.org/download/4v4b.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4v4b.pdb.gz\n", "Failed to download https://files.rcsb.org/download/4v4b.pdb.gz\n", "Downloading https://files.rcsb.org/download/4v5z.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4v5z.pdb.gz\n", "Failed to download https://files.rcsb.org/download/4v5z.pdb.gz\n", "Downloading https://files.rcsb.org/download/4v91.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4v91.pdb.gz\n", "Failed to download https://files.rcsb.org/download/4v91.pdb.gz\n", "Downloading https://files.rcsb.org/download/5an9.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5an9.pdb.gz\n", "Downloading https://files.rcsb.org/download/5anb.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5anb.pdb.gz\n", "Downloading https://files.rcsb.org/download/5anc.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5anc.pdb.gz\n", "Downloading https://files.rcsb.org/download/6elz.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6elz.pdb.gz\n", "Failed to download https://files.rcsb.org/download/6elz.pdb.gz\n", "Downloading https://files.rcsb.org/download/6em1.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6em1.pdb.gz\n", "Failed to download https://files.rcsb.org/download/6em1.pdb.gz\n", "Downloading https://files.rcsb.org/download/6qkl.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6qkl.pdb.gz\n", "Downloading https://files.rcsb.org/download/4v4p.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4v4p.pdb.gz\n", "Failed to download https://files.rcsb.org/download/4v4p.pdb.gz\n", "Downloading https://files.rcsb.org/download/6pc5.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6pc5.pdb.gz\n", "Downloading https://files.rcsb.org/download/6pc6.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6pc6.pdb.gz\n", "Downloading https://files.rcsb.org/download/6pc7.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6pc7.pdb.gz\n", "Downloading https://files.rcsb.org/download/6pc8.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6pc8.pdb.gz\n", "Downloading https://files.rcsb.org/download/6pch.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6pch.pdb.gz\n", "Downloading https://files.rcsb.org/download/6pcq.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6pcq.pdb.gz\n", "Downloading https://files.rcsb.org/download/6pcr.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6pcr.pdb.gz\n", "Downloading https://files.rcsb.org/download/6pcs.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6pcs.pdb.gz\n", "Downloading https://files.rcsb.org/download/6pct.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6pct.pdb.gz\n", "Downloading https://files.rcsb.org/download/6wyv.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6wyv.pdb.gz\n", "Downloading https://files.rcsb.org/download/1i94.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1i94.pdb.gz\n", "Downloading https://files.rcsb.org/download/1i95.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1i95.pdb.gz\n", "Downloading https://files.rcsb.org/download/1i97.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1i97.pdb.gz\n", "Downloading https://files.rcsb.org/download/1n34.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1n34.pdb.gz\n", "Downloading https://files.rcsb.org/download/2e5l.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/2e5l.pdb.gz\n", "Downloading https://files.rcsb.org/download/2hhh.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/2hhh.pdb.gz\n", "Downloading https://files.rcsb.org/download/2uub.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/2uub.pdb.gz\n", "Downloading https://files.rcsb.org/download/2uxb.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/2uxb.pdb.gz\n", "Downloading https://files.rcsb.org/download/2zm6.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/2zm6.pdb.gz\n", "Downloading https://files.rcsb.org/download/3j7a.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3j7a.pdb.gz\n", "Downloading https://files.rcsb.org/download/3j80.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3j80.pdb.gz\n", "Downloading https://files.rcsb.org/download/3j81.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3j81.pdb.gz\n", "Downloading https://files.rcsb.org/download/3jam.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3jam.pdb.gz\n", "Downloading https://files.rcsb.org/download/3jap.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3jap.pdb.gz\n", "Downloading https://files.rcsb.org/download/3jaq.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3jaq.pdb.gz\n", "Downloading https://files.rcsb.org/download/3oto.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3oto.pdb.gz\n", "Downloading https://files.rcsb.org/download/4b3m.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4b3m.pdb.gz\n", "Downloading https://files.rcsb.org/download/4b3r.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4b3r.pdb.gz\n", "Downloading https://files.rcsb.org/download/4b3s.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4b3s.pdb.gz\n", "Downloading https://files.rcsb.org/download/4b3t.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4b3t.pdb.gz\n", "Downloading https://files.rcsb.org/download/4bts.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4bts.pdb.gz\n", "Failed to download https://files.rcsb.org/download/4bts.pdb.gz\n", "Downloading https://files.rcsb.org/download/4d5l.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4d5l.pdb.gz\n", "Downloading https://files.rcsb.org/download/4d61.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4d61.pdb.gz\n", "Downloading https://files.rcsb.org/download/4dr3.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4dr3.pdb.gz\n", "Downloading https://files.rcsb.org/download/4duz.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4duz.pdb.gz\n", "Downloading https://files.rcsb.org/download/4dv0.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4dv0.pdb.gz\n", "Downloading https://files.rcsb.org/download/4dv1.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4dv1.pdb.gz\n", "Downloading https://files.rcsb.org/download/4dv2.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4dv2.pdb.gz\n", "Downloading https://files.rcsb.org/download/4dv3.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4dv3.pdb.gz\n", "Downloading https://files.rcsb.org/download/4dv5.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4dv5.pdb.gz\n", "Downloading https://files.rcsb.org/download/4dv7.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4dv7.pdb.gz\n", "Downloading https://files.rcsb.org/download/4ji1.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4ji1.pdb.gz\n", "Downloading https://files.rcsb.org/download/4ji3.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4ji3.pdb.gz\n", "Downloading https://files.rcsb.org/download/4k0k.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4k0k.pdb.gz\n", "Downloading https://files.rcsb.org/download/4kvb.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4kvb.pdb.gz\n", "Downloading https://files.rcsb.org/download/4kzx.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4kzx.pdb.gz\n", "Downloading https://files.rcsb.org/download/4kzy.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4kzy.pdb.gz\n", "Downloading https://files.rcsb.org/download/4kzz.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4kzz.pdb.gz\n", "Downloading https://files.rcsb.org/download/4nxn.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4nxn.pdb.gz\n", "Downloading https://files.rcsb.org/download/4uer.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4uer.pdb.gz\n", "Downloading https://files.rcsb.org/download/4v49.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4v49.pdb.gz\n", "Failed to download https://files.rcsb.org/download/4v49.pdb.gz\n", "Downloading https://files.rcsb.org/download/4v4a.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4v4a.pdb.gz\n", "Failed to download https://files.rcsb.org/download/4v4a.pdb.gz\n", "Downloading https://files.rcsb.org/download/4v5o.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4v5o.pdb.gz\n", "Failed to download https://files.rcsb.org/download/4v5o.pdb.gz\n", "Downloading https://files.rcsb.org/download/4v92.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4v92.pdb.gz\n", "Failed to download https://files.rcsb.org/download/4v92.pdb.gz\n", "Downloading https://files.rcsb.org/download/5a2q.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5a2q.pdb.gz\n", "Downloading https://files.rcsb.org/download/5flx.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5flx.pdb.gz\n", "Downloading https://files.rcsb.org/download/5it9.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5it9.pdb.gz\n", "Downloading https://files.rcsb.org/download/5iwa.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5iwa.pdb.gz\n", "Downloading https://files.rcsb.org/download/5jb3.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5jb3.pdb.gz\n", "Downloading https://files.rcsb.org/download/5jbh.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5jbh.pdb.gz\n", "Downloading https://files.rcsb.org/download/5k0y.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5k0y.pdb.gz\n", "Downloading https://files.rcsb.org/download/5lms.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5lms.pdb.gz\n", "Downloading https://files.rcsb.org/download/5no2.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5no2.pdb.gz\n", "Downloading https://files.rcsb.org/download/5no3.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5no3.pdb.gz\n", "Downloading https://files.rcsb.org/download/5no4.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5no4.pdb.gz\n", "Downloading https://files.rcsb.org/download/5oa3.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5oa3.pdb.gz\n", "Downloading https://files.rcsb.org/download/5opt.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5opt.pdb.gz\n", "Downloading https://files.rcsb.org/download/5uz4.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5uz4.pdb.gz\n", "Downloading https://files.rcsb.org/download/5vyc.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5vyc.pdb.gz\n", "Failed to download https://files.rcsb.org/download/5vyc.pdb.gz\n", "Downloading https://files.rcsb.org/download/5xxu.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5xxu.pdb.gz\n", "Downloading https://files.rcsb.org/download/5xyi.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5xyi.pdb.gz\n", "Downloading https://files.rcsb.org/download/5zeu.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5zeu.pdb.gz\n", "Downloading https://files.rcsb.org/download/6az1.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6az1.pdb.gz\n", "Downloading https://files.rcsb.org/download/6fai.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6fai.pdb.gz\n", "Downloading https://files.rcsb.org/download/6fec.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6fec.pdb.gz\n", "Failed to download https://files.rcsb.org/download/6fec.pdb.gz\n", "Downloading https://files.rcsb.org/download/6fyx.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6fyx.pdb.gz\n", "Failed to download https://files.rcsb.org/download/6fyx.pdb.gz\n", "Downloading https://files.rcsb.org/download/6fyy.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6fyy.pdb.gz\n", "Failed to download https://files.rcsb.org/download/6fyy.pdb.gz\n", "Downloading https://files.rcsb.org/download/6g5h.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6g5h.pdb.gz\n", "Downloading https://files.rcsb.org/download/6g5i.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6g5i.pdb.gz\n", "Downloading https://files.rcsb.org/download/6nqb.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6nqb.pdb.gz\n", "Downloading https://files.rcsb.org/download/6okk.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6okk.pdb.gz\n", "Downloading https://files.rcsb.org/download/6p4g.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6p4g.pdb.gz\n", "Downloading https://files.rcsb.org/download/6p4h.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6p4h.pdb.gz\n", "Downloading https://files.rcsb.org/download/6rbd.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6rbd.pdb.gz\n", "Downloading https://files.rcsb.org/download/6rbe.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6rbe.pdb.gz\n", "Downloading https://files.rcsb.org/download/6spc.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6spc.pdb.gz\n", "Downloading https://files.rcsb.org/download/6sw9.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6sw9.pdb.gz\n", "Downloading https://files.rcsb.org/download/6swc.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6swc.pdb.gz\n", "Downloading https://files.rcsb.org/download/6swe.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6swe.pdb.gz\n", "Downloading https://files.rcsb.org/download/6tmf.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6tmf.pdb.gz\n", "Downloading https://files.rcsb.org/download/6v3e.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6v3e.pdb.gz\n", "Failed to download https://files.rcsb.org/download/6v3e.pdb.gz\n", "Downloading https://files.rcsb.org/download/6w2s.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6w2s.pdb.gz\n", "Failed to download https://files.rcsb.org/download/6w2s.pdb.gz\n", "Downloading https://files.rcsb.org/download/6w2t.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6w2t.pdb.gz\n", "Failed to download https://files.rcsb.org/download/6w2t.pdb.gz\n", "Downloading https://files.rcsb.org/download/6w6k.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6w6k.pdb.gz\n", "Downloading https://files.rcsb.org/download/6wua.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6wua.pdb.gz\n", "Downloading https://files.rcsb.org/download/6yal.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6yal.pdb.gz\n", "Downloading https://files.rcsb.org/download/6yam.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6yam.pdb.gz\n", "Failed to download https://files.rcsb.org/download/6yam.pdb.gz\n", "Downloading https://files.rcsb.org/download/6yan.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6yan.pdb.gz\n", "Downloading https://files.rcsb.org/download/6ybs.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6ybs.pdb.gz\n", "Downloading https://files.rcsb.org/download/6ys5.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6ys5.pdb.gz\n", "Downloading https://files.rcsb.org/download/6ytf.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6ytf.pdb.gz\n", "Downloading https://files.rcsb.org/download/6zlw.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6zlw.pdb.gz\n", "Downloading https://files.rcsb.org/download/6zmt.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6zmt.pdb.gz\n", "Downloading https://files.rcsb.org/download/6zmw.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6zmw.pdb.gz\n", "Failed to download https://files.rcsb.org/download/6zmw.pdb.gz\n", "Downloading https://files.rcsb.org/download/6zn5.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6zn5.pdb.gz\n", "Downloading https://files.rcsb.org/download/6zoj.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6zoj.pdb.gz\n", "Downloading https://files.rcsb.org/download/6zol.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6zol.pdb.gz\n", "Downloading https://files.rcsb.org/download/6zon.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6zon.pdb.gz\n", "Failed to download https://files.rcsb.org/download/6zon.pdb.gz\n", "Downloading https://files.rcsb.org/download/6zp4.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6zp4.pdb.gz\n", "Failed to download https://files.rcsb.org/download/6zp4.pdb.gz\n", "Downloading https://files.rcsb.org/download/6zvh.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6zvh.pdb.gz\n", "Downloading https://files.rcsb.org/download/6zvi.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6zvi.pdb.gz\n", "Downloading https://files.rcsb.org/download/6zvj.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6zvj.pdb.gz\n", "Failed to download https://files.rcsb.org/download/6zvj.pdb.gz\n", "Downloading https://files.rcsb.org/download/6zxd.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6zxd.pdb.gz\n", "Downloading https://files.rcsb.org/download/6zxe.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6zxe.pdb.gz\n", "Downloading https://files.rcsb.org/download/6zxf.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6zxf.pdb.gz\n", "Downloading https://files.rcsb.org/download/6zxg.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6zxg.pdb.gz\n", "Downloading https://files.rcsb.org/download/6zxh.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6zxh.pdb.gz\n", "Downloading https://files.rcsb.org/download/7a09.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7a09.pdb.gz\n", "Failed to download https://files.rcsb.org/download/7a09.pdb.gz\n", "Downloading https://files.rcsb.org/download/7a1g.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7a1g.pdb.gz\n", "Downloading https://files.rcsb.org/download/7dug.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7dug.pdb.gz\n", "Downloading https://files.rcsb.org/download/7dui.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7dui.pdb.gz\n", "Downloading https://files.rcsb.org/download/7duj.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7duj.pdb.gz\n", "Downloading https://files.rcsb.org/download/7k5i.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7k5i.pdb.gz\n", "Downloading https://files.rcsb.org/download/6hiy.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6hiy.pdb.gz\n", "Failed to download https://files.rcsb.org/download/6hiy.pdb.gz\n", "Downloading https://files.rcsb.org/download/4yhh.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4yhh.pdb.gz\n", "Downloading https://files.rcsb.org/download/6mpf.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6mpf.pdb.gz\n", "Downloading https://files.rcsb.org/download/6sga.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6sga.pdb.gz\n", "Failed to download https://files.rcsb.org/download/6sga.pdb.gz\n", "Downloading https://files.rcsb.org/download/1g1x.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1g1x.pdb.gz\n", "Downloading https://files.rcsb.org/download/5ll6.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5ll6.pdb.gz\n", "Downloading https://files.rcsb.org/download/6eml.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6eml.pdb.gz\n", "Downloading https://files.rcsb.org/download/6swd.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6swd.pdb.gz\n", "Downloading https://files.rcsb.org/download/6y7c.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6y7c.pdb.gz\n", "Downloading https://files.rcsb.org/download/5oql.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5oql.pdb.gz\n", "Failed to download https://files.rcsb.org/download/5oql.pdb.gz\n", "Downloading https://files.rcsb.org/download/5tzs.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5tzs.pdb.gz\n", "Downloading https://files.rcsb.org/download/5wlc.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5wlc.pdb.gz\n", "Failed to download https://files.rcsb.org/download/5wlc.pdb.gz\n", "Downloading https://files.rcsb.org/download/5wyj.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5wyj.pdb.gz\n", "Failed to download https://files.rcsb.org/download/5wyj.pdb.gz\n", "Downloading https://files.rcsb.org/download/5wyk.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5wyk.pdb.gz\n", "Failed to download https://files.rcsb.org/download/5wyk.pdb.gz\n", "Downloading https://files.rcsb.org/download/6g18.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6g18.pdb.gz\n", "Downloading https://files.rcsb.org/download/6ke6.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6ke6.pdb.gz\n", "Failed to download https://files.rcsb.org/download/6ke6.pdb.gz\n", "Downloading https://files.rcsb.org/download/6lqp.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6lqp.pdb.gz\n", "Failed to download https://files.rcsb.org/download/6lqp.pdb.gz\n", "Downloading https://files.rcsb.org/download/6lqq.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6lqq.pdb.gz\n", "Failed to download https://files.rcsb.org/download/6lqq.pdb.gz\n", "Downloading https://files.rcsb.org/download/6lqr.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6lqr.pdb.gz\n", "Failed to download https://files.rcsb.org/download/6lqr.pdb.gz\n", "Downloading https://files.rcsb.org/download/6lqs.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6lqs.pdb.gz\n", "Failed to download https://files.rcsb.org/download/6lqs.pdb.gz\n", "Downloading https://files.rcsb.org/download/6lqt.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6lqt.pdb.gz\n", "Failed to download https://files.rcsb.org/download/6lqt.pdb.gz\n", "Downloading https://files.rcsb.org/download/6lqu.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6lqu.pdb.gz\n", "Failed to download https://files.rcsb.org/download/6lqu.pdb.gz\n", "Downloading https://files.rcsb.org/download/6lqv.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6lqv.pdb.gz\n", "Failed to download https://files.rcsb.org/download/6lqv.pdb.gz\n", "Downloading https://files.rcsb.org/download/6rxt.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6rxt.pdb.gz\n", "Failed to download https://files.rcsb.org/download/6rxt.pdb.gz\n", "Downloading https://files.rcsb.org/download/6rxu.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6rxu.pdb.gz\n", "Failed to download https://files.rcsb.org/download/6rxu.pdb.gz\n", "Downloading https://files.rcsb.org/download/6rxv.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6rxv.pdb.gz\n", "Failed to download https://files.rcsb.org/download/6rxv.pdb.gz\n", "Downloading https://files.rcsb.org/download/6rxx.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6rxx.pdb.gz\n", "Failed to download https://files.rcsb.org/download/6rxx.pdb.gz\n", "Downloading https://files.rcsb.org/download/6rxy.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6rxy.pdb.gz\n", "Failed to download https://files.rcsb.org/download/6rxy.pdb.gz\n", "Downloading https://files.rcsb.org/download/6rxz.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6rxz.pdb.gz\n", "Failed to download https://files.rcsb.org/download/6rxz.pdb.gz\n", "Downloading https://files.rcsb.org/download/6zce.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6zce.pdb.gz\n", "Downloading https://files.rcsb.org/download/6zqa.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6zqa.pdb.gz\n", "Failed to download https://files.rcsb.org/download/6zqa.pdb.gz\n", "Downloading https://files.rcsb.org/download/6zqb.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6zqb.pdb.gz\n", "Failed to download https://files.rcsb.org/download/6zqb.pdb.gz\n", "Downloading https://files.rcsb.org/download/6zqc.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6zqc.pdb.gz\n", "Failed to download https://files.rcsb.org/download/6zqc.pdb.gz\n", "Downloading https://files.rcsb.org/download/6zqd.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6zqd.pdb.gz\n", "Failed to download https://files.rcsb.org/download/6zqd.pdb.gz\n", "Downloading https://files.rcsb.org/download/6zqe.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6zqe.pdb.gz\n", "Failed to download https://files.rcsb.org/download/6zqe.pdb.gz\n", "Downloading https://files.rcsb.org/download/6zqg.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6zqg.pdb.gz\n", "Failed to download https://files.rcsb.org/download/6zqg.pdb.gz\n", "Downloading https://files.rcsb.org/download/6zu9.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6zu9.pdb.gz\n", "Downloading https://files.rcsb.org/download/7ajt.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7ajt.pdb.gz\n", "Failed to download https://files.rcsb.org/download/7ajt.pdb.gz\n", "Downloading https://files.rcsb.org/download/7aju.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7aju.pdb.gz\n", "Failed to download https://files.rcsb.org/download/7aju.pdb.gz\n", "Downloading https://files.rcsb.org/download/7jqb.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7jqb.pdb.gz\n", "Downloading https://files.rcsb.org/download/7jqc.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7jqc.pdb.gz\n", "Downloading https://files.rcsb.org/download/5g53.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5g53.pdb.gz\n", "Downloading https://files.rcsb.org/download/6d9h.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6d9h.pdb.gz\n", "Downloading https://files.rcsb.org/download/6dde.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6dde.pdb.gz\n", "Downloading https://files.rcsb.org/download/6ddf.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6ddf.pdb.gz\n", "Downloading https://files.rcsb.org/download/6g79.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6g79.pdb.gz\n", "Downloading https://files.rcsb.org/download/6kpf.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6kpf.pdb.gz\n", "Downloading https://files.rcsb.org/download/6lfm.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6lfm.pdb.gz\n", "Downloading https://files.rcsb.org/download/6lfo.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6lfo.pdb.gz\n", "Downloading https://files.rcsb.org/download/6li3.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6li3.pdb.gz\n", "Downloading https://files.rcsb.org/download/6n4b.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6n4b.pdb.gz\n", "Downloading https://files.rcsb.org/download/6oij.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6oij.pdb.gz\n", "Downloading https://files.rcsb.org/download/6oik.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6oik.pdb.gz\n", "Downloading https://files.rcsb.org/download/6os9.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6os9.pdb.gz\n", "Downloading https://files.rcsb.org/download/6osa.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6osa.pdb.gz\n", "Downloading https://files.rcsb.org/download/6pt0.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6pt0.pdb.gz\n", "Downloading https://files.rcsb.org/download/7aue.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7aue.pdb.gz\n", "Downloading https://files.rcsb.org/download/7bz2.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7bz2.pdb.gz\n", "Downloading https://files.rcsb.org/download/7cfm.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7cfm.pdb.gz\n", "Downloading https://files.rcsb.org/download/7cfn.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7cfn.pdb.gz\n", "Downloading https://files.rcsb.org/download/7ckw.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7ckw.pdb.gz\n", "Downloading https://files.rcsb.org/download/7ckx.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7ckx.pdb.gz\n", "Downloading https://files.rcsb.org/download/7cky.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7cky.pdb.gz\n", "Downloading https://files.rcsb.org/download/7ckz.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7ckz.pdb.gz\n", "Downloading https://files.rcsb.org/download/7crh.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7crh.pdb.gz\n", "Downloading https://files.rcsb.org/download/7db6.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7db6.pdb.gz\n", "Downloading https://files.rcsb.org/download/7dfl.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7dfl.pdb.gz\n", "Downloading https://files.rcsb.org/download/7dhi.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7dhi.pdb.gz\n", "Downloading https://files.rcsb.org/download/7dhr.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7dhr.pdb.gz\n", "Downloading https://files.rcsb.org/download/7eo2.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7eo2.pdb.gz\n", "Downloading https://files.rcsb.org/download/7eo4.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7eo4.pdb.gz\n", "Downloading https://files.rcsb.org/download/7ew1.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7ew1.pdb.gz\n", "Downloading https://files.rcsb.org/download/7ew2.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7ew2.pdb.gz\n", "Downloading https://files.rcsb.org/download/7ew3.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7ew3.pdb.gz\n", "Downloading https://files.rcsb.org/download/7ew4.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7ew4.pdb.gz\n", "Downloading https://files.rcsb.org/download/7f1s.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7f1s.pdb.gz\n", "Downloading https://files.rcsb.org/download/7f55.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7f55.pdb.gz\n", "Downloading https://files.rcsb.org/download/7f58.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7f58.pdb.gz\n", "Downloading https://files.rcsb.org/download/7f8w.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7f8w.pdb.gz\n", "Downloading https://files.rcsb.org/download/7jv5.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7jv5.pdb.gz\n", "Downloading https://files.rcsb.org/download/7jvp.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7jvp.pdb.gz\n", "Downloading https://files.rcsb.org/download/7jvq.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7jvq.pdb.gz\n", "Downloading https://files.rcsb.org/download/7l0p.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7l0p.pdb.gz\n", "Downloading https://files.rcsb.org/download/7l0q.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7l0q.pdb.gz\n", "Downloading https://files.rcsb.org/download/7l0r.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7l0r.pdb.gz\n", "Downloading https://files.rcsb.org/download/7l0s.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7l0s.pdb.gz\n", "Downloading https://files.rcsb.org/download/7l1u.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7l1u.pdb.gz\n", "Downloading https://files.rcsb.org/download/7l1v.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7l1v.pdb.gz\n", "Downloading https://files.rcsb.org/download/7ld3.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7ld3.pdb.gz\n", "Downloading https://files.rcsb.org/download/7ld4.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7ld4.pdb.gz\n", "Downloading https://files.rcsb.org/download/7ljc.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7ljc.pdb.gz\n", "Downloading https://files.rcsb.org/download/7ljd.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7ljd.pdb.gz\n", "Downloading https://files.rcsb.org/download/7na8.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7na8.pdb.gz\n", "Downloading https://files.rcsb.org/download/7rmi.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7rmi.pdb.gz\n", "Downloading https://files.rcsb.org/download/7wf7.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7wf7.pdb.gz\n", "Downloading https://files.rcsb.org/download/7cx2.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7cx2.pdb.gz\n", "Downloading https://files.rcsb.org/download/7cx3.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7cx3.pdb.gz\n", "Downloading https://files.rcsb.org/download/7cx4.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7cx4.pdb.gz\n", "Downloading https://files.rcsb.org/download/7vdh.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7vdh.pdb.gz\n", "Downloading https://files.rcsb.org/download/7vuy.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7vuy.pdb.gz\n", "Downloading https://files.rcsb.org/download/7vuz.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7vuz.pdb.gz\n", "Downloading https://files.rcsb.org/download/7vv3.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7vv3.pdb.gz\n", "Downloading https://files.rcsb.org/download/7vv5.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7vv5.pdb.gz\n", "Downloading https://files.rcsb.org/download/6crk.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6crk.pdb.gz\n", "Downloading https://files.rcsb.org/download/6k41.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6k41.pdb.gz\n", "Downloading https://files.rcsb.org/download/6k42.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6k42.pdb.gz\n", "Downloading https://files.rcsb.org/download/6kpg.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6kpg.pdb.gz\n", "Downloading https://files.rcsb.org/download/6lml.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6lml.pdb.gz\n", "Downloading https://files.rcsb.org/download/6omm.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6omm.pdb.gz\n", "Downloading https://files.rcsb.org/download/6vms.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6vms.pdb.gz\n", "Downloading https://files.rcsb.org/download/6wwz.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6wwz.pdb.gz\n", "Downloading https://files.rcsb.org/download/6xbj.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6xbj.pdb.gz\n", "Downloading https://files.rcsb.org/download/6xbk.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6xbk.pdb.gz\n", "Downloading https://files.rcsb.org/download/6xbl.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6xbl.pdb.gz\n", "Downloading https://files.rcsb.org/download/6xbm.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6xbm.pdb.gz\n", "Downloading https://files.rcsb.org/download/6xox.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6xox.pdb.gz\n", "Downloading https://files.rcsb.org/download/7d77.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7d77.pdb.gz\n", "Downloading https://files.rcsb.org/download/7evy.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7evy.pdb.gz\n", "Downloading https://files.rcsb.org/download/7evz.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7evz.pdb.gz\n", "Downloading https://files.rcsb.org/download/7ew0.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7ew0.pdb.gz\n", "Downloading https://files.rcsb.org/download/7ew7.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7ew7.pdb.gz\n", "Downloading https://files.rcsb.org/download/7jvr.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7jvr.pdb.gz\n", "Downloading https://files.rcsb.org/download/7s8o.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7s8o.pdb.gz\n", "Downloading https://files.rcsb.org/download/1gg2.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1gg2.pdb.gz\n", "Downloading https://files.rcsb.org/download/5kdo.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5kdo.pdb.gz\n", "Downloading https://files.rcsb.org/download/6b3j.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6b3j.pdb.gz\n", "Downloading https://files.rcsb.org/download/6e3y.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6e3y.pdb.gz\n", "Downloading https://files.rcsb.org/download/6eg8.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6eg8.pdb.gz\n", "Downloading https://files.rcsb.org/download/6gdg.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6gdg.pdb.gz\n", "Downloading https://files.rcsb.org/download/6m1h.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6m1h.pdb.gz\n", "Downloading https://files.rcsb.org/download/6m1i.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6m1i.pdb.gz\n", "Downloading https://files.rcsb.org/download/6ni3.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6ni3.pdb.gz\n", "Downloading https://files.rcsb.org/download/6niy.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6niy.pdb.gz\n", "Downloading https://files.rcsb.org/download/6orv.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6orv.pdb.gz\n", "Failed to download https://files.rcsb.org/download/6orv.pdb.gz\n", "Downloading https://files.rcsb.org/download/6oy9.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6oy9.pdb.gz\n", "Downloading https://files.rcsb.org/download/6oya.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6oya.pdb.gz\n", "Downloading https://files.rcsb.org/download/6p9x.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6p9x.pdb.gz\n", "Downloading https://files.rcsb.org/download/6p9y.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6p9y.pdb.gz\n", "Downloading https://files.rcsb.org/download/6qno.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6qno.pdb.gz\n", "Downloading https://files.rcsb.org/download/6uun.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6uun.pdb.gz\n", "Downloading https://files.rcsb.org/download/6uus.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6uus.pdb.gz\n", "Downloading https://files.rcsb.org/download/6uva.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6uva.pdb.gz\n", "Downloading https://files.rcsb.org/download/6vcb.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6vcb.pdb.gz\n", "Downloading https://files.rcsb.org/download/6whc.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6whc.pdb.gz\n", "Downloading https://files.rcsb.org/download/6wi9.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6wi9.pdb.gz\n", "Downloading https://files.rcsb.org/download/6wpw.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6wpw.pdb.gz\n", "Downloading https://files.rcsb.org/download/6wzg.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6wzg.pdb.gz\n", "Downloading https://files.rcsb.org/download/6x18.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6x18.pdb.gz\n", "Downloading https://files.rcsb.org/download/6x19.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6x19.pdb.gz\n", "Downloading https://files.rcsb.org/download/6x1a.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6x1a.pdb.gz\n", "Downloading https://files.rcsb.org/download/7bw0.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7bw0.pdb.gz\n", "Downloading https://files.rcsb.org/download/7c2e.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7c2e.pdb.gz\n", "Downloading https://files.rcsb.org/download/7d76.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7d76.pdb.gz\n", "Downloading https://files.rcsb.org/download/7d7m.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7d7m.pdb.gz\n", "Downloading https://files.rcsb.org/download/7jjo.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7jjo.pdb.gz\n", "Downloading https://files.rcsb.org/download/7ki1.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7ki1.pdb.gz\n", "Downloading https://files.rcsb.org/download/7lly.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7lly.pdb.gz\n", "Downloading https://files.rcsb.org/download/7rtb.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7rtb.pdb.gz\n", "Downloading https://files.rcsb.org/download/7s1m.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7s1m.pdb.gz\n", "Downloading https://files.rcsb.org/download/1b9x.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1b9x.pdb.gz\n", "Downloading https://files.rcsb.org/download/1b9y.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1b9y.pdb.gz\n", "Downloading https://files.rcsb.org/download/2trc.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/2trc.pdb.gz\n", "Downloading https://files.rcsb.org/download/5he0.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5he0.pdb.gz\n", "Downloading https://files.rcsb.org/download/5he1.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5he1.pdb.gz\n", "Downloading https://files.rcsb.org/download/5he2.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5he2.pdb.gz\n", "Downloading https://files.rcsb.org/download/5he3.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5he3.pdb.gz\n", "Downloading https://files.rcsb.org/download/5ukk.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5ukk.pdb.gz\n", "Downloading https://files.rcsb.org/download/5ukl.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5ukl.pdb.gz\n", "Downloading https://files.rcsb.org/download/6pcv.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6pcv.pdb.gz\n", "Downloading https://files.rcsb.org/download/6rmv.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6rmv.pdb.gz\n", "Downloading https://files.rcsb.org/download/6u7c.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6u7c.pdb.gz\n", "Downloading https://files.rcsb.org/download/6wha.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6wha.pdb.gz\n", "Downloading https://files.rcsb.org/download/7k7l.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7k7l.pdb.gz\n", "Downloading https://files.rcsb.org/download/7k7z.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7k7z.pdb.gz\n", "Downloading https://files.rcsb.org/download/7pwd.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7pwd.pdb.gz\n", "Downloading https://files.rcsb.org/download/7s8p.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7s8p.pdb.gz\n", "Downloading https://files.rcsb.org/download/1got.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1got.pdb.gz\n", "Downloading https://files.rcsb.org/download/1gp2.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1gp2.pdb.gz\n", "Downloading https://files.rcsb.org/download/3ah8.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3ah8.pdb.gz\n", "Downloading https://files.rcsb.org/download/5tdh.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5tdh.pdb.gz\n", "Downloading https://files.rcsb.org/download/1a0r.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1a0r.pdb.gz\n", "Downloading https://files.rcsb.org/download/1tbg.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1tbg.pdb.gz\n", "Downloading https://files.rcsb.org/download/1xhm.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1xhm.pdb.gz\n", "Downloading https://files.rcsb.org/download/2bcj.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/2bcj.pdb.gz\n", "Downloading https://files.rcsb.org/download/3cik.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3cik.pdb.gz\n", "Downloading https://files.rcsb.org/download/3krw.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3krw.pdb.gz\n", "Downloading https://files.rcsb.org/download/3krx.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3krx.pdb.gz\n", "Downloading https://files.rcsb.org/download/3psc.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3psc.pdb.gz\n", "Downloading https://files.rcsb.org/download/3pvu.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3pvu.pdb.gz\n", "Downloading https://files.rcsb.org/download/3pvw.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3pvw.pdb.gz\n", "Downloading https://files.rcsb.org/download/3uzs.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3uzs.pdb.gz\n", "Downloading https://files.rcsb.org/download/3v5w.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3v5w.pdb.gz\n", "Downloading https://files.rcsb.org/download/4kfm.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4kfm.pdb.gz\n", "Downloading https://files.rcsb.org/download/4mk0.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4mk0.pdb.gz\n", "Downloading https://files.rcsb.org/download/4pnk.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4pnk.pdb.gz\n", "Downloading https://files.rcsb.org/download/5ukm.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5ukm.pdb.gz\n", "Downloading https://files.rcsb.org/download/5wg3.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5wg3.pdb.gz\n", "Downloading https://files.rcsb.org/download/5wg4.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5wg4.pdb.gz\n", "Downloading https://files.rcsb.org/download/5wg5.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5wg5.pdb.gz\n", "Downloading https://files.rcsb.org/download/6b20.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6b20.pdb.gz\n", "Downloading https://files.rcsb.org/download/6m8s.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6m8s.pdb.gz\n", "Downloading https://files.rcsb.org/download/3sn6.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3sn6.pdb.gz\n", "Downloading https://files.rcsb.org/download/5uz7.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5uz7.pdb.gz\n", "Downloading https://files.rcsb.org/download/5vai.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5vai.pdb.gz\n", "Downloading https://files.rcsb.org/download/6lmk.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6lmk.pdb.gz\n", "Downloading https://files.rcsb.org/download/6lpb.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6lpb.pdb.gz\n", "Downloading https://files.rcsb.org/download/6nbf.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6nbf.pdb.gz\n", "Downloading https://files.rcsb.org/download/6nbh.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6nbh.pdb.gz\n", "Downloading https://files.rcsb.org/download/6nbi.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6nbi.pdb.gz\n", "Downloading https://files.rcsb.org/download/6pb0.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6pb0.pdb.gz\n", "Downloading https://files.rcsb.org/download/6pb1.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6pb1.pdb.gz\n", "Downloading https://files.rcsb.org/download/6vn7.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6vn7.pdb.gz\n", "Downloading https://files.rcsb.org/download/7cz5.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7cz5.pdb.gz\n", "Downloading https://files.rcsb.org/download/7d3s.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7d3s.pdb.gz\n", "Downloading https://files.rcsb.org/download/7d68.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7d68.pdb.gz\n", "Downloading https://files.rcsb.org/download/7dty.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7dty.pdb.gz\n", "Downloading https://files.rcsb.org/download/7duq.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7duq.pdb.gz\n", "Downloading https://files.rcsb.org/download/7dur.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7dur.pdb.gz\n", "Downloading https://files.rcsb.org/download/7e14.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7e14.pdb.gz\n", "Downloading https://files.rcsb.org/download/7evm.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7evm.pdb.gz\n", "Downloading https://files.rcsb.org/download/6cmo.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6cmo.pdb.gz\n", "Downloading https://files.rcsb.org/download/6ot0.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6ot0.pdb.gz\n", "Downloading https://files.rcsb.org/download/1g9n.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1g9n.pdb.gz\n", "Downloading https://files.rcsb.org/download/1gc1.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1gc1.pdb.gz\n", "Downloading https://files.rcsb.org/download/1rzk.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1rzk.pdb.gz\n", "Downloading https://files.rcsb.org/download/2b4c.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/2b4c.pdb.gz\n", "Downloading https://files.rcsb.org/download/2nxy.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/2nxy.pdb.gz\n", "Downloading https://files.rcsb.org/download/2nxz.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/2nxz.pdb.gz\n", "Downloading https://files.rcsb.org/download/2ny0.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/2ny0.pdb.gz\n", "Downloading https://files.rcsb.org/download/2ny1.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/2ny1.pdb.gz\n", "Downloading https://files.rcsb.org/download/2ny2.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/2ny2.pdb.gz\n", "Downloading https://files.rcsb.org/download/2ny3.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/2ny3.pdb.gz\n", "Downloading https://files.rcsb.org/download/2ny4.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/2ny4.pdb.gz\n", "Downloading https://files.rcsb.org/download/2ny5.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/2ny5.pdb.gz\n", "Downloading https://files.rcsb.org/download/2ny6.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/2ny6.pdb.gz\n", "Downloading https://files.rcsb.org/download/2qad.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/2qad.pdb.gz\n", "Downloading https://files.rcsb.org/download/3j70.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3j70.pdb.gz\n", "Downloading https://files.rcsb.org/download/3jcb.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3jcb.pdb.gz\n", "Downloading https://files.rcsb.org/download/3jcc.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3jcc.pdb.gz\n", "Downloading https://files.rcsb.org/download/3jwd.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3jwd.pdb.gz\n", "Downloading https://files.rcsb.org/download/3jwo.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3jwo.pdb.gz\n", "Downloading https://files.rcsb.org/download/4h8w.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4h8w.pdb.gz\n", "Downloading https://files.rcsb.org/download/4jm2.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4jm2.pdb.gz\n", "Downloading https://files.rcsb.org/download/4r2g.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4r2g.pdb.gz\n", "Downloading https://files.rcsb.org/download/4r4h.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4r4h.pdb.gz\n", "Downloading https://files.rcsb.org/download/4rqs.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4rqs.pdb.gz\n", "Downloading https://files.rcsb.org/download/5a7x.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5a7x.pdb.gz\n", "Downloading https://files.rcsb.org/download/5a8h.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5a8h.pdb.gz\n", "Downloading https://files.rcsb.org/download/5cay.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5cay.pdb.gz\n", "Downloading https://files.rcsb.org/download/5thr.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5thr.pdb.gz\n", "Downloading https://files.rcsb.org/download/5vn3.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5vn3.pdb.gz\n", "Downloading https://files.rcsb.org/download/6cm3.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6cm3.pdb.gz\n", "Downloading https://files.rcsb.org/download/6edu.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6edu.pdb.gz\n", "Downloading https://files.rcsb.org/download/6l1y.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6l1y.pdb.gz\n", "Downloading https://files.rcsb.org/download/6meo.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6meo.pdb.gz\n", "Downloading https://files.rcsb.org/download/6opn.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6opn.pdb.gz\n", "Downloading https://files.rcsb.org/download/6opo.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6opo.pdb.gz\n", "Downloading https://files.rcsb.org/download/6opp.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6opp.pdb.gz\n", "Downloading https://files.rcsb.org/download/6opq.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6opq.pdb.gz\n", "Downloading https://files.rcsb.org/download/6tyb.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6tyb.pdb.gz\n", "Downloading https://files.rcsb.org/download/6u0l.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6u0l.pdb.gz\n", "Downloading https://files.rcsb.org/download/6u0n.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6u0n.pdb.gz\n", "Downloading https://files.rcsb.org/download/6x5b.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6x5b.pdb.gz\n", "Downloading https://files.rcsb.org/download/6x5c.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6x5c.pdb.gz\n", "Downloading https://files.rcsb.org/download/4fq1.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4fq1.pdb.gz\n", "Downloading https://files.rcsb.org/download/4fqc.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4fqc.pdb.gz\n", "Downloading https://files.rcsb.org/download/4jy4.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4jy4.pdb.gz\n", "Downloading https://files.rcsb.org/download/4r26.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4r26.pdb.gz\n", "Downloading https://files.rcsb.org/download/4s1d.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4s1d.pdb.gz\n", "Downloading https://files.rcsb.org/download/5t3s.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5t3s.pdb.gz\n", "Downloading https://files.rcsb.org/download/5um8.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5um8.pdb.gz\n", "Downloading https://files.rcsb.org/download/5yfi.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5yfi.pdb.gz\n", "Downloading https://files.rcsb.org/download/5yhl.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5yhl.pdb.gz\n", "Downloading https://files.rcsb.org/download/5ywy.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5ywy.pdb.gz\n", "Downloading https://files.rcsb.org/download/6ce0.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6ce0.pdb.gz\n", "Downloading https://files.rcsb.org/download/6ieq.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6ieq.pdb.gz\n", "Downloading https://files.rcsb.org/download/6mco.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6mco.pdb.gz\n", "Downloading https://files.rcsb.org/download/6mdt.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6mdt.pdb.gz\n", "Downloading https://files.rcsb.org/download/6wzt.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6wzt.pdb.gz\n", "Downloading https://files.rcsb.org/download/7kmd.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7kmd.pdb.gz\n", "Downloading https://files.rcsb.org/download/2d3o.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/2d3o.pdb.gz\n", "Downloading https://files.rcsb.org/download/3j45.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3j45.pdb.gz\n", "Downloading https://files.rcsb.org/download/3j46.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3j46.pdb.gz\n", "Downloading https://files.rcsb.org/download/2j37.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/2j37.pdb.gz\n", "Downloading https://files.rcsb.org/download/3iyx.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3iyx.pdb.gz\n", "Downloading https://files.rcsb.org/download/2go5.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/2go5.pdb.gz\n", "Downloading https://files.rcsb.org/download/2ww9.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/2ww9.pdb.gz\n", "Downloading https://files.rcsb.org/download/2wwa.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/2wwa.pdb.gz\n", "Downloading https://files.rcsb.org/download/2wwb.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/2wwb.pdb.gz\n", "Downloading https://files.rcsb.org/download/6cb1.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6cb1.pdb.gz\n", "Downloading https://files.rcsb.org/download/6sxo.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6sxo.pdb.gz\n", "Failed to download https://files.rcsb.org/download/6sxo.pdb.gz\n", "Downloading https://files.rcsb.org/download/1okk.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1okk.pdb.gz\n", "Downloading https://files.rcsb.org/download/1rj9.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1rj9.pdb.gz\n", "Downloading https://files.rcsb.org/download/2cnw.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/2cnw.pdb.gz\n", "Downloading https://files.rcsb.org/download/2j7p.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/2j7p.pdb.gz\n", "Downloading https://files.rcsb.org/download/4c7o.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4c7o.pdb.gz\n", "Downloading https://files.rcsb.org/download/5l3r.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5l3r.pdb.gz\n", "Downloading https://files.rcsb.org/download/1e8o.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1e8o.pdb.gz\n", "Downloading https://files.rcsb.org/download/1e8s.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1e8s.pdb.gz\n", "Downloading https://files.rcsb.org/download/1ry1.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1ry1.pdb.gz\n", "Downloading https://files.rcsb.org/download/4ue5.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4ue5.pdb.gz\n", "Downloading https://files.rcsb.org/download/4uyj.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4uyj.pdb.gz\n", "Downloading https://files.rcsb.org/download/4uyk.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4uyk.pdb.gz\n", "Downloading https://files.rcsb.org/download/5aox.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5aox.pdb.gz\n", "Downloading https://files.rcsb.org/download/1b5f.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1b5f.pdb.gz\n", "Downloading https://files.rcsb.org/download/1lya.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1lya.pdb.gz\n", "Downloading https://files.rcsb.org/download/1lyb.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1lyb.pdb.gz\n", "Downloading https://files.rcsb.org/download/1lyw.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1lyw.pdb.gz\n", "Downloading https://files.rcsb.org/download/3o9l.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3o9l.pdb.gz\n", "Downloading https://files.rcsb.org/download/3oad.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3oad.pdb.gz\n", "Downloading https://files.rcsb.org/download/3oag.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3oag.pdb.gz\n", "Downloading https://files.rcsb.org/download/4obz.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4obz.pdb.gz\n", "Downloading https://files.rcsb.org/download/4oc6.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4oc6.pdb.gz\n", "Downloading https://files.rcsb.org/download/4od9.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4od9.pdb.gz\n", "Downloading https://files.rcsb.org/download/6qbg.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6qbg.pdb.gz\n", "Downloading https://files.rcsb.org/download/6qbh.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6qbh.pdb.gz\n", "Downloading https://files.rcsb.org/download/6qcb.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6qcb.pdb.gz\n", "Downloading https://files.rcsb.org/download/2a74.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/2a74.pdb.gz\n", "Downloading https://files.rcsb.org/download/2ice.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/2ice.pdb.gz\n", "Downloading https://files.rcsb.org/download/2qki.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/2qki.pdb.gz\n", "Downloading https://files.rcsb.org/download/3frp.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3frp.pdb.gz\n", "Downloading https://files.rcsb.org/download/3hrz.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3hrz.pdb.gz\n", "Downloading https://files.rcsb.org/download/3hs0.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3hs0.pdb.gz\n", "Downloading https://files.rcsb.org/download/3l3o.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3l3o.pdb.gz\n", "Downloading https://files.rcsb.org/download/3nms.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3nms.pdb.gz\n", "Downloading https://files.rcsb.org/download/3ohx.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3ohx.pdb.gz\n", "Downloading https://files.rcsb.org/download/3t4a.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3t4a.pdb.gz\n", "Downloading https://files.rcsb.org/download/4xam.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4xam.pdb.gz\n", "Downloading https://files.rcsb.org/download/5jtw.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5jtw.pdb.gz\n", "Downloading https://files.rcsb.org/download/1ab9.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1ab9.pdb.gz\n", "Downloading https://files.rcsb.org/download/1afq.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1afq.pdb.gz\n", "Downloading https://files.rcsb.org/download/1aks.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1aks.pdb.gz\n", "Downloading https://files.rcsb.org/download/1bbr.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1bbr.pdb.gz\n", "Downloading https://files.rcsb.org/download/1bhx.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1bhx.pdb.gz\n", "Downloading https://files.rcsb.org/download/1ca0.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1ca0.pdb.gz\n", "Downloading https://files.rcsb.org/download/1cbw.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1cbw.pdb.gz\n", "Downloading https://files.rcsb.org/download/1cho.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1cho.pdb.gz\n", "Downloading https://files.rcsb.org/download/1ept.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1ept.pdb.gz\n", "Downloading https://files.rcsb.org/download/1gct.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1gct.pdb.gz\n", "Downloading https://files.rcsb.org/download/1gg6.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1gg6.pdb.gz\n", "Downloading https://files.rcsb.org/download/1ggd.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1ggd.pdb.gz\n", "Downloading https://files.rcsb.org/download/1gha.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1gha.pdb.gz\n", "Downloading https://files.rcsb.org/download/1ghb.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1ghb.pdb.gz\n", "Downloading https://files.rcsb.org/download/1gmc.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1gmc.pdb.gz\n", "Downloading https://files.rcsb.org/download/1gmd.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1gmd.pdb.gz\n", "Downloading https://files.rcsb.org/download/1gmh.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1gmh.pdb.gz\n", "Downloading https://files.rcsb.org/download/1hia.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1hia.pdb.gz\n", "Downloading https://files.rcsb.org/download/1hja.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1hja.pdb.gz\n", "Downloading https://files.rcsb.org/download/1kdq.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1kdq.pdb.gz\n", "Downloading https://files.rcsb.org/download/1mtn.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1mtn.pdb.gz\n", "Downloading https://files.rcsb.org/download/1n8o.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1n8o.pdb.gz\n", "Downloading https://files.rcsb.org/download/1riw.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1riw.pdb.gz\n", "Downloading https://files.rcsb.org/download/1ucy.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1ucy.pdb.gz\n", "Downloading https://files.rcsb.org/download/1uhb.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1uhb.pdb.gz\n", "Downloading https://files.rcsb.org/download/1vgc.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1vgc.pdb.gz\n", "Downloading https://files.rcsb.org/download/1vit.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1vit.pdb.gz\n", "Downloading https://files.rcsb.org/download/1ycp.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1ycp.pdb.gz\n", "Downloading https://files.rcsb.org/download/1yph.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1yph.pdb.gz\n", "Downloading https://files.rcsb.org/download/2cha.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/2cha.pdb.gz\n", "Downloading https://files.rcsb.org/download/2gch.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/2gch.pdb.gz\n", "Downloading https://files.rcsb.org/download/2gct.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/2gct.pdb.gz\n", "Downloading https://files.rcsb.org/download/2gmt.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/2gmt.pdb.gz\n", "Downloading https://files.rcsb.org/download/2hnt.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/2hnt.pdb.gz\n", "Downloading https://files.rcsb.org/download/2jet.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/2jet.pdb.gz\n", "Downloading https://files.rcsb.org/download/2kai.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/2kai.pdb.gz\n", "Downloading https://files.rcsb.org/download/2p8o.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/2p8o.pdb.gz\n", "Downloading https://files.rcsb.org/download/2pka.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/2pka.pdb.gz\n", "Downloading https://files.rcsb.org/download/2pks.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/2pks.pdb.gz\n", "Downloading https://files.rcsb.org/download/2vgc.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/2vgc.pdb.gz\n", "Downloading https://files.rcsb.org/download/3bg4.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3bg4.pdb.gz\n", "Downloading https://files.rcsb.org/download/3gch.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3gch.pdb.gz\n", "Downloading https://files.rcsb.org/download/3gct.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3gct.pdb.gz\n", "Downloading https://files.rcsb.org/download/3po1.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3po1.pdb.gz\n", "Downloading https://files.rcsb.org/download/3ru4.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3ru4.pdb.gz\n", "Downloading https://files.rcsb.org/download/3vgc.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3vgc.pdb.gz\n", "Downloading https://files.rcsb.org/download/4cha.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4cha.pdb.gz\n", "Downloading https://files.rcsb.org/download/4gch.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4gch.pdb.gz\n", "Downloading https://files.rcsb.org/download/4vgc.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4vgc.pdb.gz\n", "Downloading https://files.rcsb.org/download/5cha.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5cha.pdb.gz\n", "Downloading https://files.rcsb.org/download/5gch.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5gch.pdb.gz\n", "Downloading https://files.rcsb.org/download/5r42.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5r42.pdb.gz\n", "Downloading https://files.rcsb.org/download/5r43.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5r43.pdb.gz\n", "Downloading https://files.rcsb.org/download/5r44.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5r44.pdb.gz\n", "Downloading https://files.rcsb.org/download/5r45.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5r45.pdb.gz\n", "Downloading https://files.rcsb.org/download/5r46.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5r46.pdb.gz\n", "Downloading https://files.rcsb.org/download/5r47.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5r47.pdb.gz\n", "Downloading https://files.rcsb.org/download/5r48.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5r48.pdb.gz\n", "Downloading https://files.rcsb.org/download/5r49.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5r49.pdb.gz\n", "Downloading https://files.rcsb.org/download/5r4a.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5r4a.pdb.gz\n", "Downloading https://files.rcsb.org/download/5r4b.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5r4b.pdb.gz\n", "Downloading https://files.rcsb.org/download/5r4c.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5r4c.pdb.gz\n", "Downloading https://files.rcsb.org/download/5r4d.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5r4d.pdb.gz\n", "Downloading https://files.rcsb.org/download/5xw1.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5xw1.pdb.gz\n", "Downloading https://files.rcsb.org/download/5xw8.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5xw8.pdb.gz\n", "Downloading https://files.rcsb.org/download/5xw9.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5xw9.pdb.gz\n", "Downloading https://files.rcsb.org/download/5xwa.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5xwa.pdb.gz\n", "Downloading https://files.rcsb.org/download/6cha.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6cha.pdb.gz\n", "Downloading https://files.rcsb.org/download/6di8.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6di8.pdb.gz\n", "Downloading https://files.rcsb.org/download/6gch.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6gch.pdb.gz\n", "Downloading https://files.rcsb.org/download/7gch.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7gch.pdb.gz\n", "Downloading https://files.rcsb.org/download/8gch.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/8gch.pdb.gz\n", "Downloading https://files.rcsb.org/download/2qy0.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/2qy0.pdb.gz\n", "Downloading https://files.rcsb.org/download/3gov.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3gov.pdb.gz\n", "Downloading https://files.rcsb.org/download/4djz.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4djz.pdb.gz\n", "Downloading https://files.rcsb.org/download/4fxg.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4fxg.pdb.gz\n", "Downloading https://files.rcsb.org/download/5jpm.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5jpm.pdb.gz\n", "Downloading https://files.rcsb.org/download/5ubm.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5ubm.pdb.gz\n", "Downloading https://files.rcsb.org/download/7arx.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7arx.pdb.gz\n", "Downloading https://files.rcsb.org/download/6irs.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6irs.pdb.gz\n", "Downloading https://files.rcsb.org/download/6irt.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6irt.pdb.gz\n", "Downloading https://files.rcsb.org/download/6jmq.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6jmq.pdb.gz\n", "Downloading https://files.rcsb.org/download/7cmh.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7cmh.pdb.gz\n", "Downloading https://files.rcsb.org/download/7cmi.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7cmi.pdb.gz\n", "Downloading https://files.rcsb.org/download/7dsk.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7dsk.pdb.gz\n", "Downloading https://files.rcsb.org/download/7dsl.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7dsl.pdb.gz\n", "Downloading https://files.rcsb.org/download/7dsn.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7dsn.pdb.gz\n", "Downloading https://files.rcsb.org/download/7dsq.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7dsq.pdb.gz\n", "Downloading https://files.rcsb.org/download/1it9.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1it9.pdb.gz\n", "Downloading https://files.rcsb.org/download/1lo0.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1lo0.pdb.gz\n", "Downloading https://files.rcsb.org/download/1lo2.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1lo2.pdb.gz\n", "Downloading https://files.rcsb.org/download/1lo3.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1lo3.pdb.gz\n", "Downloading https://files.rcsb.org/download/1rhh.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1rhh.pdb.gz\n", "Downloading https://files.rcsb.org/download/1rzf.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1rzf.pdb.gz\n", "Downloading https://files.rcsb.org/download/1rzi.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1rzi.pdb.gz\n", "Downloading https://files.rcsb.org/download/1tzg.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1tzg.pdb.gz\n", "Downloading https://files.rcsb.org/download/2b0s.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/2b0s.pdb.gz\n", "Downloading https://files.rcsb.org/download/2b1a.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/2b1a.pdb.gz\n", "Downloading https://files.rcsb.org/download/2b1h.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/2b1h.pdb.gz\n", "Downloading https://files.rcsb.org/download/2fx7.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/2fx7.pdb.gz\n", "Downloading https://files.rcsb.org/download/2fx8.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/2fx8.pdb.gz\n", "Downloading https://files.rcsb.org/download/2fx9.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/2fx9.pdb.gz\n", "Downloading https://files.rcsb.org/download/2xqb.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/2xqb.pdb.gz\n", "Downloading https://files.rcsb.org/download/2xra.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/2xra.pdb.gz\n", "Downloading https://files.rcsb.org/download/3gk8.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3gk8.pdb.gz\n", "Downloading https://files.rcsb.org/download/3i9g.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3i9g.pdb.gz\n", "Downloading https://files.rcsb.org/download/3j3z.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3j3z.pdb.gz\n", "Downloading https://files.rcsb.org/download/3j5m.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3j5m.pdb.gz\n", "Downloading https://files.rcsb.org/download/3j93.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3j93.pdb.gz\n", "Downloading https://files.rcsb.org/download/3lrs.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3lrs.pdb.gz\n", "Downloading https://files.rcsb.org/download/3mlr.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3mlr.pdb.gz\n", "Downloading https://files.rcsb.org/download/3mls.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3mls.pdb.gz\n", "Downloading https://files.rcsb.org/download/3mlt.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3mlt.pdb.gz\n", "Downloading https://files.rcsb.org/download/3mlu.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3mlu.pdb.gz\n", "Downloading https://files.rcsb.org/download/3mlv.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3mlv.pdb.gz\n", "Downloading https://files.rcsb.org/download/3mme.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3mme.pdb.gz\n", "Downloading https://files.rcsb.org/download/3se8.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3se8.pdb.gz\n", "Downloading https://files.rcsb.org/download/3se9.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3se9.pdb.gz\n", "Downloading https://files.rcsb.org/download/3tcl.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3tcl.pdb.gz\n", "Downloading https://files.rcsb.org/download/3tv3.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3tv3.pdb.gz\n", "Downloading https://files.rcsb.org/download/3tyg.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3tyg.pdb.gz\n", "Downloading https://files.rcsb.org/download/3u1s.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3u1s.pdb.gz\n", "Downloading https://files.rcsb.org/download/3u2s.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3u2s.pdb.gz\n", "Downloading https://files.rcsb.org/download/3u36.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3u36.pdb.gz\n", "Downloading https://files.rcsb.org/download/3u46.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3u46.pdb.gz\n", "Downloading https://files.rcsb.org/download/3u4b.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3u4b.pdb.gz\n", "Downloading https://files.rcsb.org/download/3u4e.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3u4e.pdb.gz\n", "Downloading https://files.rcsb.org/download/3u7w.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3u7w.pdb.gz\n", "Downloading https://files.rcsb.org/download/3u7y.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3u7y.pdb.gz\n", "Downloading https://files.rcsb.org/download/3ubx.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3ubx.pdb.gz\n", "Downloading https://files.rcsb.org/download/3uji.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3uji.pdb.gz\n", "Downloading https://files.rcsb.org/download/4cc8.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4cc8.pdb.gz\n", "Downloading https://files.rcsb.org/download/4dcq.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4dcq.pdb.gz\n", "Downloading https://files.rcsb.org/download/4fqj.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4fqj.pdb.gz\n", "Downloading https://files.rcsb.org/download/4fqk.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4fqk.pdb.gz\n", "Downloading https://files.rcsb.org/download/4fql.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4fql.pdb.gz\n", "Downloading https://files.rcsb.org/download/4glr.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4glr.pdb.gz\n", "Downloading https://files.rcsb.org/download/4hbc.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4hbc.pdb.gz\n", "Downloading https://files.rcsb.org/download/4hkb.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4hkb.pdb.gz\n", "Downloading https://files.rcsb.org/download/4hkx.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4hkx.pdb.gz\n", "Downloading https://files.rcsb.org/download/4hpo.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4hpo.pdb.gz\n", "Downloading https://files.rcsb.org/download/4hqq.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4hqq.pdb.gz\n", "Downloading https://files.rcsb.org/download/4i3r.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4i3r.pdb.gz\n", "Downloading https://files.rcsb.org/download/4i3s.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4i3s.pdb.gz\n", "Downloading https://files.rcsb.org/download/4j6r.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4j6r.pdb.gz\n", "Downloading https://files.rcsb.org/download/4jb9.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4jb9.pdb.gz\n", "Downloading https://files.rcsb.org/download/4jkp.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4jkp.pdb.gz\n", "Downloading https://files.rcsb.org/download/4jm4.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4jm4.pdb.gz\n", "Downloading https://files.rcsb.org/download/4jpk.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4jpk.pdb.gz\n", "Downloading https://files.rcsb.org/download/4jpw.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4jpw.pdb.gz\n", "Downloading https://files.rcsb.org/download/4lsp.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4lsp.pdb.gz\n", "Downloading https://files.rcsb.org/download/4lsq.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4lsq.pdb.gz\n", "Downloading https://files.rcsb.org/download/4lsr.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4lsr.pdb.gz\n", "Downloading https://files.rcsb.org/download/4lsu.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4lsu.pdb.gz\n", "Downloading https://files.rcsb.org/download/4m5y.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4m5y.pdb.gz\n", "Downloading https://files.rcsb.org/download/4m5z.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4m5z.pdb.gz\n", "Downloading https://files.rcsb.org/download/4mwf.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4mwf.pdb.gz\n", "Downloading https://files.rcsb.org/download/4n0y.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4n0y.pdb.gz\n", "Downloading https://files.rcsb.org/download/4n8c.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4n8c.pdb.gz\n", "Downloading https://files.rcsb.org/download/4ngh.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4ngh.pdb.gz\n", "Downloading https://files.rcsb.org/download/4nhc.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4nhc.pdb.gz\n", "Downloading https://files.rcsb.org/download/4nhg.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4nhg.pdb.gz\n", "Downloading https://files.rcsb.org/download/4nrx.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4nrx.pdb.gz\n", "Downloading https://files.rcsb.org/download/4nry.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4nry.pdb.gz\n", "Downloading https://files.rcsb.org/download/4nrz.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4nrz.pdb.gz\n", "Downloading https://files.rcsb.org/download/4nzr.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4nzr.pdb.gz\n", "Downloading https://files.rcsb.org/download/4o58.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4o58.pdb.gz\n", "Downloading https://files.rcsb.org/download/4o5i.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4o5i.pdb.gz\n", "Downloading https://files.rcsb.org/download/4o5l.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4o5l.pdb.gz\n", "Downloading https://files.rcsb.org/download/4oaw.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4oaw.pdb.gz\n", "Downloading https://files.rcsb.org/download/4od3.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4od3.pdb.gz\n", "Downloading https://files.rcsb.org/download/4p9m.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4p9m.pdb.gz\n", "Downloading https://files.rcsb.org/download/4rgn.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4rgn.pdb.gz\n", "Downloading https://files.rcsb.org/download/4rgo.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4rgo.pdb.gz\n", "Downloading https://files.rcsb.org/download/4rir.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4rir.pdb.gz\n", "Downloading https://files.rcsb.org/download/4ris.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4ris.pdb.gz\n", "Downloading https://files.rcsb.org/download/4rnr.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4rnr.pdb.gz\n", "Downloading https://files.rcsb.org/download/4rqq.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4rqq.pdb.gz\n", "Downloading https://files.rcsb.org/download/4rwy.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4rwy.pdb.gz\n", "Downloading https://files.rcsb.org/download/4s1s.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4s1s.pdb.gz\n", "Downloading https://files.rcsb.org/download/4toy.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4toy.pdb.gz\n", "Downloading https://files.rcsb.org/download/4tvp.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4tvp.pdb.gz\n", "Downloading https://files.rcsb.org/download/4ut6.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4ut6.pdb.gz\n", "Downloading https://files.rcsb.org/download/4utb.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4utb.pdb.gz\n", "Downloading https://files.rcsb.org/download/4wy7.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4wy7.pdb.gz\n", "Downloading https://files.rcsb.org/download/4xak.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4xak.pdb.gz\n", "Downloading https://files.rcsb.org/download/4xaw.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4xaw.pdb.gz\n", "Downloading https://files.rcsb.org/download/4xbg.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4xbg.pdb.gz\n", "Downloading https://files.rcsb.org/download/4xbp.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4xbp.pdb.gz\n", "Downloading https://files.rcsb.org/download/4xc1.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4xc1.pdb.gz\n", "Downloading https://files.rcsb.org/download/4xc3.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4xc3.pdb.gz\n", "Downloading https://files.rcsb.org/download/4xcc.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4xcc.pdb.gz\n", "Downloading https://files.rcsb.org/download/4xce.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4xce.pdb.gz\n", "Downloading https://files.rcsb.org/download/4xcf.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4xcf.pdb.gz\n", "Downloading https://files.rcsb.org/download/4xcn.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4xcn.pdb.gz\n", "Downloading https://files.rcsb.org/download/4xcy.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4xcy.pdb.gz\n", "Downloading https://files.rcsb.org/download/4xmp.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4xmp.pdb.gz\n", "Downloading https://files.rcsb.org/download/4xny.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4xny.pdb.gz\n", "Downloading https://files.rcsb.org/download/4xnz.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4xnz.pdb.gz\n", "Downloading https://files.rcsb.org/download/4xvs.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4xvs.pdb.gz\n", "Downloading https://files.rcsb.org/download/4xvt.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4xvt.pdb.gz\n", "Downloading https://files.rcsb.org/download/4yaq.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4yaq.pdb.gz\n", "Downloading https://files.rcsb.org/download/4ydi.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4ydi.pdb.gz\n", "Downloading https://files.rcsb.org/download/4ydj.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4ydj.pdb.gz\n", "Downloading https://files.rcsb.org/download/4ydk.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4ydk.pdb.gz\n", "Downloading https://files.rcsb.org/download/4ydl.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4ydl.pdb.gz\n", "Downloading https://files.rcsb.org/download/4yfl.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4yfl.pdb.gz\n", "Downloading https://files.rcsb.org/download/4ywg.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4ywg.pdb.gz\n", "Downloading https://files.rcsb.org/download/4zd3.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4zd3.pdb.gz\n", "Downloading https://files.rcsb.org/download/5a3i.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5a3i.pdb.gz\n", "Downloading https://files.rcsb.org/download/5aco.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5aco.pdb.gz\n", "Failed to download https://files.rcsb.org/download/5aco.pdb.gz\n", "Downloading https://files.rcsb.org/download/5alb.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5alb.pdb.gz\n", "Downloading https://files.rcsb.org/download/5alc.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5alc.pdb.gz\n", "Downloading https://files.rcsb.org/download/5awn.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5awn.pdb.gz\n", "Downloading https://files.rcsb.org/download/5bzd.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5bzd.pdb.gz\n", "Downloading https://files.rcsb.org/download/5bzw.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5bzw.pdb.gz\n", "Downloading https://files.rcsb.org/download/5c7k.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5c7k.pdb.gz\n", "Downloading https://files.rcsb.org/download/5cck.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5cck.pdb.gz\n", "Downloading https://files.rcsb.org/download/5cd3.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5cd3.pdb.gz\n", "Downloading https://files.rcsb.org/download/5cd5.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5cd5.pdb.gz\n", "Downloading https://files.rcsb.org/download/5cez.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5cez.pdb.gz\n", "Downloading https://files.rcsb.org/download/5cil.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5cil.pdb.gz\n", "Downloading https://files.rcsb.org/download/5cin.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5cin.pdb.gz\n", "Downloading https://files.rcsb.org/download/5cip.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5cip.pdb.gz\n", "Downloading https://files.rcsb.org/download/5d1q.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5d1q.pdb.gz\n", "Downloading https://files.rcsb.org/download/5dd0.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5dd0.pdb.gz\n", "Downloading https://files.rcsb.org/download/5dd1.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5dd1.pdb.gz\n", "Downloading https://files.rcsb.org/download/5dd3.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5dd3.pdb.gz\n", "Downloading https://files.rcsb.org/download/5dd6.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5dd6.pdb.gz\n", "Downloading https://files.rcsb.org/download/5dmi.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5dmi.pdb.gz\n", "Downloading https://files.rcsb.org/download/5esv.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5esv.pdb.gz\n", "Downloading https://files.rcsb.org/download/5esz.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5esz.pdb.gz\n", "Downloading https://files.rcsb.org/download/5f96.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5f96.pdb.gz\n", "Downloading https://files.rcsb.org/download/5f9w.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5f9w.pdb.gz\n", "Downloading https://files.rcsb.org/download/5fha.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5fha.pdb.gz\n", "Downloading https://files.rcsb.org/download/5fhc.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5fhc.pdb.gz\n", "Downloading https://files.rcsb.org/download/5fyj.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5fyj.pdb.gz\n", "Downloading https://files.rcsb.org/download/5fyk.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5fyk.pdb.gz\n", "Downloading https://files.rcsb.org/download/5fyl.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5fyl.pdb.gz\n", "Downloading https://files.rcsb.org/download/5gmq.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5gmq.pdb.gz\n", "Downloading https://files.rcsb.org/download/5igx.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5igx.pdb.gz\n", "Downloading https://files.rcsb.org/download/5jof.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5jof.pdb.gz\n", "Downloading https://files.rcsb.org/download/5js9.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5js9.pdb.gz\n", "Downloading https://files.rcsb.org/download/5jsa.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5jsa.pdb.gz\n", "Downloading https://files.rcsb.org/download/5jxa.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5jxa.pdb.gz\n", "Downloading https://files.rcsb.org/download/5kan.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5kan.pdb.gz\n", "Downloading https://files.rcsb.org/download/5l6y.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5l6y.pdb.gz\n", "Downloading https://files.rcsb.org/download/5lcv.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5lcv.pdb.gz\n", "Downloading https://files.rcsb.org/download/5mhs.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5mhs.pdb.gz\n", "Downloading https://files.rcsb.org/download/5n09.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5n09.pdb.gz\n", "Downloading https://files.rcsb.org/download/5n0a.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5n0a.pdb.gz\n", "Downloading https://files.rcsb.org/download/5o14.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5o14.pdb.gz\n", "Downloading https://files.rcsb.org/download/5o4o.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5o4o.pdb.gz\n", "Downloading https://files.rcsb.org/download/5o7p.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5o7p.pdb.gz\n", "Downloading https://files.rcsb.org/download/5od8.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5od8.pdb.gz\n", "Downloading https://files.rcsb.org/download/5otj.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5otj.pdb.gz\n", "Downloading https://files.rcsb.org/download/5t3x.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5t3x.pdb.gz\n", "Downloading https://files.rcsb.org/download/5t3z.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5t3z.pdb.gz\n", "Downloading https://files.rcsb.org/download/5tgb.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5tgb.pdb.gz\n", "Downloading https://files.rcsb.org/download/5tpl.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5tpl.pdb.gz\n", "Downloading https://files.rcsb.org/download/5tpn.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5tpn.pdb.gz\n", "Downloading https://files.rcsb.org/download/5tpp.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5tpp.pdb.gz\n", "Downloading https://files.rcsb.org/download/5ty6.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5ty6.pdb.gz\n", "Downloading https://files.rcsb.org/download/5u1f.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5u1f.pdb.gz\n", "Downloading https://files.rcsb.org/download/5u3n.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5u3n.pdb.gz\n", "Downloading https://files.rcsb.org/download/5u3p.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5u3p.pdb.gz\n", "Downloading https://files.rcsb.org/download/5u7m.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5u7m.pdb.gz\n", "Downloading https://files.rcsb.org/download/5u7o.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5u7o.pdb.gz\n", "Downloading https://files.rcsb.org/download/5uem.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5uem.pdb.gz\n", "Downloading https://files.rcsb.org/download/5ur8.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5ur8.pdb.gz\n", "Downloading https://files.rcsb.org/download/5utf.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5utf.pdb.gz\n", "Downloading https://files.rcsb.org/download/5uty.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5uty.pdb.gz\n", "Downloading https://files.rcsb.org/download/5uxq.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5uxq.pdb.gz\n", "Downloading https://files.rcsb.org/download/5v7j.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5v7j.pdb.gz\n", "Downloading https://files.rcsb.org/download/5v8l.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5v8l.pdb.gz\n", "Downloading https://files.rcsb.org/download/5vj6.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5vj6.pdb.gz\n", "Downloading https://files.rcsb.org/download/5vod.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5vod.pdb.gz\n", "Downloading https://files.rcsb.org/download/5w08.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5w08.pdb.gz\n", "Downloading https://files.rcsb.org/download/5w0d.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5w0d.pdb.gz\n", "Downloading https://files.rcsb.org/download/5w1g.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5w1g.pdb.gz\n", "Downloading https://files.rcsb.org/download/5w42.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5w42.pdb.gz\n", "Downloading https://files.rcsb.org/download/5w6d.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5w6d.pdb.gz\n", "Downloading https://files.rcsb.org/download/5wdu.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5wdu.pdb.gz\n", "Downloading https://files.rcsb.org/download/5x08.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5x08.pdb.gz\n", "Downloading https://files.rcsb.org/download/5x2m.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5x2m.pdb.gz\n", "Downloading https://files.rcsb.org/download/5x2n.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5x2n.pdb.gz\n", "Downloading https://files.rcsb.org/download/5x2o.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5x2o.pdb.gz\n", "Downloading https://files.rcsb.org/download/5x2p.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5x2p.pdb.gz\n", "Downloading https://files.rcsb.org/download/5x2q.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5x2q.pdb.gz\n", "Downloading https://files.rcsb.org/download/5xrq.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5xrq.pdb.gz\n", "Downloading https://files.rcsb.org/download/5y11.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5y11.pdb.gz\n", "Downloading https://files.rcsb.org/download/5zv3.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5zv3.pdb.gz\n", "Downloading https://files.rcsb.org/download/6apd.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6apd.pdb.gz\n", "Downloading https://files.rcsb.org/download/6b3d.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6b3d.pdb.gz\n", "Downloading https://files.rcsb.org/download/6b3m.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6b3m.pdb.gz\n", "Downloading https://files.rcsb.org/download/6bck.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6bck.pdb.gz\n", "Downloading https://files.rcsb.org/download/6btj.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6btj.pdb.gz\n", "Downloading https://files.rcsb.org/download/6c08.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6c08.pdb.gz\n", "Downloading https://files.rcsb.org/download/6c6z.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6c6z.pdb.gz\n", "Downloading https://files.rcsb.org/download/6cbj.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6cbj.pdb.gz\n", "Downloading https://files.rcsb.org/download/6cde.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6cde.pdb.gz\n", "Failed to download https://files.rcsb.org/download/6cde.pdb.gz\n", "Downloading https://files.rcsb.org/download/6ch7.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6ch7.pdb.gz\n", "Downloading https://files.rcsb.org/download/6ch8.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6ch8.pdb.gz\n", "Downloading https://files.rcsb.org/download/6ch9.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6ch9.pdb.gz\n", "Downloading https://files.rcsb.org/download/6chb.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6chb.pdb.gz\n", "Downloading https://files.rcsb.org/download/6cmg.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6cmg.pdb.gz\n", "Downloading https://files.rcsb.org/download/6cmi.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6cmi.pdb.gz\n", "Downloading https://files.rcsb.org/download/6crq.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6crq.pdb.gz\n", "Downloading https://files.rcsb.org/download/6cwt.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6cwt.pdb.gz\n", "Downloading https://files.rcsb.org/download/6db7.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6db7.pdb.gz\n", "Downloading https://files.rcsb.org/download/6dc4.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6dc4.pdb.gz\n", "Downloading https://files.rcsb.org/download/6dc5.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6dc5.pdb.gz\n", "Downloading https://files.rcsb.org/download/6dcv.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6dcv.pdb.gz\n", "Downloading https://files.rcsb.org/download/6dcw.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6dcw.pdb.gz\n", "Downloading https://files.rcsb.org/download/6de7.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6de7.pdb.gz\n", "Downloading https://files.rcsb.org/download/6e3h.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6e3h.pdb.gz\n", "Downloading https://files.rcsb.org/download/6eay.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6eay.pdb.gz\n", "Downloading https://files.rcsb.org/download/6fy0.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6fy0.pdb.gz\n", "Downloading https://files.rcsb.org/download/6fy1.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6fy1.pdb.gz\n", "Downloading https://files.rcsb.org/download/6fy2.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6fy2.pdb.gz\n", "Downloading https://files.rcsb.org/download/6fy3.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6fy3.pdb.gz\n", "Downloading https://files.rcsb.org/download/6gk7.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6gk7.pdb.gz\n", "Downloading https://files.rcsb.org/download/6gk8.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6gk8.pdb.gz\n", "Downloading https://files.rcsb.org/download/6jep.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6jep.pdb.gz\n", "Downloading https://files.rcsb.org/download/6lxi.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6lxi.pdb.gz\n", "Downloading https://files.rcsb.org/download/6lxj.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6lxj.pdb.gz\n", "Downloading https://files.rcsb.org/download/6lxk.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6lxk.pdb.gz\n", "Downloading https://files.rcsb.org/download/6med.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6med.pdb.gz\n", "Downloading https://files.rcsb.org/download/6mee.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6mee.pdb.gz\n", "Downloading https://files.rcsb.org/download/6mef.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6mef.pdb.gz\n", "Downloading https://files.rcsb.org/download/6meh.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6meh.pdb.gz\n", "Downloading https://files.rcsb.org/download/6mei.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6mei.pdb.gz\n", "Downloading https://files.rcsb.org/download/6mej.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6mej.pdb.gz\n", "Downloading https://files.rcsb.org/download/6mek.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6mek.pdb.gz\n", "Downloading https://files.rcsb.org/download/6mft.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6mft.pdb.gz\n", "Downloading https://files.rcsb.org/download/6mhr.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6mhr.pdb.gz\n", "Downloading https://files.rcsb.org/download/6mlm.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6mlm.pdb.gz\n", "Downloading https://files.rcsb.org/download/6mqc.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6mqc.pdb.gz\n", "Downloading https://files.rcsb.org/download/6mtp.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6mtp.pdb.gz\n", "Downloading https://files.rcsb.org/download/6mtq.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6mtq.pdb.gz\n", "Downloading https://files.rcsb.org/download/6mtt.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6mtt.pdb.gz\n", "Downloading https://files.rcsb.org/download/6myy.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6myy.pdb.gz\n", "Downloading https://files.rcsb.org/download/6mzj.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6mzj.pdb.gz\n", "Downloading https://files.rcsb.org/download/6n8d.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6n8d.pdb.gz\n", "Downloading https://files.rcsb.org/download/6nf2.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6nf2.pdb.gz\n", "Failed to download https://files.rcsb.org/download/6nf2.pdb.gz\n", "Downloading https://files.rcsb.org/download/6nmt.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6nmt.pdb.gz\n", "Downloading https://files.rcsb.org/download/6o3d.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6o3d.pdb.gz\n", "Downloading https://files.rcsb.org/download/6o3g.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6o3g.pdb.gz\n", "Downloading https://files.rcsb.org/download/6o3j.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6o3j.pdb.gz\n", "Downloading https://files.rcsb.org/download/6o3k.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6o3k.pdb.gz\n", "Downloading https://files.rcsb.org/download/6o3l.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6o3l.pdb.gz\n", "Downloading https://files.rcsb.org/download/6o3u.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6o3u.pdb.gz\n", "Downloading https://files.rcsb.org/download/6o41.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6o41.pdb.gz\n", "Downloading https://files.rcsb.org/download/6o42.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6o42.pdb.gz\n", "Downloading https://files.rcsb.org/download/6oed.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6oed.pdb.gz\n", "Downloading https://files.rcsb.org/download/6ofi.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6ofi.pdb.gz\n", "Downloading https://files.rcsb.org/download/6opa.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6opa.pdb.gz\n", "Downloading https://files.rcsb.org/download/6osy.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6osy.pdb.gz\n", "Failed to download https://files.rcsb.org/download/6osy.pdb.gz\n", "Downloading https://files.rcsb.org/download/6ot1.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6ot1.pdb.gz\n", "Failed to download https://files.rcsb.org/download/6ot1.pdb.gz\n", "Downloading https://files.rcsb.org/download/6oz3.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6oz3.pdb.gz\n", "Downloading https://files.rcsb.org/download/6p8n.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6p8n.pdb.gz\n", "Downloading https://files.rcsb.org/download/6p9j.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6p9j.pdb.gz\n", "Downloading https://files.rcsb.org/download/6pdx.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6pdx.pdb.gz\n", "Downloading https://files.rcsb.org/download/6ppg.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6ppg.pdb.gz\n", "Downloading https://files.rcsb.org/download/6pwu.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6pwu.pdb.gz\n", "Downloading https://files.rcsb.org/download/6q1z.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6q1z.pdb.gz\n", "Downloading https://files.rcsb.org/download/6q23.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6q23.pdb.gz\n", "Downloading https://files.rcsb.org/download/6ulc.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6ulc.pdb.gz\n", "Downloading https://files.rcsb.org/download/6ur5.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6ur5.pdb.gz\n", "Downloading https://files.rcsb.org/download/6urh.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6urh.pdb.gz\n", "Downloading https://files.rcsb.org/download/6utk.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6utk.pdb.gz\n", "Downloading https://files.rcsb.org/download/6uuh.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6uuh.pdb.gz\n", "Downloading https://files.rcsb.org/download/6uul.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6uul.pdb.gz\n", "Downloading https://files.rcsb.org/download/6uum.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6uum.pdb.gz\n", "Downloading https://files.rcsb.org/download/6uyd.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6uyd.pdb.gz\n", "Downloading https://files.rcsb.org/download/6uym.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6uym.pdb.gz\n", "Downloading https://files.rcsb.org/download/6v4o.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6v4o.pdb.gz\n", "Downloading https://files.rcsb.org/download/6v6w.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6v6w.pdb.gz\n", "Downloading https://files.rcsb.org/download/6vgr.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6vgr.pdb.gz\n", "Downloading https://files.rcsb.org/download/6vjt.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6vjt.pdb.gz\n", "Downloading https://files.rcsb.org/download/6vo3.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6vo3.pdb.gz\n", "Downloading https://files.rcsb.org/download/6vrt.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6vrt.pdb.gz\n", "Downloading https://files.rcsb.org/download/6wg0.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6wg0.pdb.gz\n", "Downloading https://files.rcsb.org/download/6wo5.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6wo5.pdb.gz\n", "Downloading https://files.rcsb.org/download/6woq.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6woq.pdb.gz\n", "Downloading https://files.rcsb.org/download/6wor.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6wor.pdb.gz\n", "Downloading https://files.rcsb.org/download/6ws6.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6ws6.pdb.gz\n", "Downloading https://files.rcsb.org/download/6x1s.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6x1s.pdb.gz\n", "Downloading https://files.rcsb.org/download/6x1t.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6x1t.pdb.gz\n", "Downloading https://files.rcsb.org/download/6xja.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6xja.pdb.gz\n", "Downloading https://files.rcsb.org/download/7jtg.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7jtg.pdb.gz\n", "Downloading https://files.rcsb.org/download/7jx3.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7jx3.pdb.gz\n", "Downloading https://files.rcsb.org/download/7k8p.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7k8p.pdb.gz\n", "Downloading https://files.rcsb.org/download/7k8v.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7k8v.pdb.gz\n", "Downloading https://files.rcsb.org/download/7kqh.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7kqh.pdb.gz\n", "Downloading https://files.rcsb.org/download/7kqi.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7kqi.pdb.gz\n", "Downloading https://files.rcsb.org/download/7l0n.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7l0n.pdb.gz\n", "Downloading https://files.rcsb.org/download/7l3n.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7l3n.pdb.gz\n", "Downloading https://files.rcsb.org/download/7r6x.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7r6x.pdb.gz\n", "Downloading https://files.rcsb.org/download/1aa1.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1aa1.pdb.gz\n", "Downloading https://files.rcsb.org/download/1aus.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1aus.pdb.gz\n", "Downloading https://files.rcsb.org/download/1bwv.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1bwv.pdb.gz\n", "Downloading https://files.rcsb.org/download/1bxn.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1bxn.pdb.gz\n", "Downloading https://files.rcsb.org/download/1ej7.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1ej7.pdb.gz\n", "Downloading https://files.rcsb.org/download/1ir1.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1ir1.pdb.gz\n", "Downloading https://files.rcsb.org/download/1iwa.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1iwa.pdb.gz\n", "Downloading https://files.rcsb.org/download/1rbl.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1rbl.pdb.gz\n", "Downloading https://files.rcsb.org/download/1rbo.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1rbo.pdb.gz\n", "Downloading https://files.rcsb.org/download/1rco.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1rco.pdb.gz\n", "Downloading https://files.rcsb.org/download/1rcx.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1rcx.pdb.gz\n", "Downloading https://files.rcsb.org/download/1rlc.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1rlc.pdb.gz\n", "Downloading https://files.rcsb.org/download/1rld.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1rld.pdb.gz\n", "Downloading https://files.rcsb.org/download/1rsc.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1rsc.pdb.gz\n", "Downloading https://files.rcsb.org/download/1rxo.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1rxo.pdb.gz\n", "Downloading https://files.rcsb.org/download/1svd.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1svd.pdb.gz\n", "Downloading https://files.rcsb.org/download/1upm.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1upm.pdb.gz\n", "Downloading https://files.rcsb.org/download/1upp.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1upp.pdb.gz\n", "Downloading https://files.rcsb.org/download/1wdd.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1wdd.pdb.gz\n", "Downloading https://files.rcsb.org/download/2ybv.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/2ybv.pdb.gz\n", "Downloading https://files.rcsb.org/download/3axk.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3axk.pdb.gz\n", "Downloading https://files.rcsb.org/download/3axm.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3axm.pdb.gz\n", "Downloading https://files.rcsb.org/download/3rub.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3rub.pdb.gz\n", "Downloading https://files.rcsb.org/download/3zxw.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3zxw.pdb.gz\n", "Downloading https://files.rcsb.org/download/4f0h.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4f0h.pdb.gz\n", "Downloading https://files.rcsb.org/download/4f0k.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4f0k.pdb.gz\n", "Downloading https://files.rcsb.org/download/4f0m.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4f0m.pdb.gz\n", "Downloading https://files.rcsb.org/download/4hhh.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4hhh.pdb.gz\n", "Downloading https://files.rcsb.org/download/4mkv.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4mkv.pdb.gz\n", "Downloading https://files.rcsb.org/download/4rub.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4rub.pdb.gz\n", "Downloading https://files.rcsb.org/download/5mz2.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5mz2.pdb.gz\n", "Downloading https://files.rcsb.org/download/5n9z.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5n9z.pdb.gz\n", "Downloading https://files.rcsb.org/download/5nv3.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5nv3.pdb.gz\n", "Downloading https://files.rcsb.org/download/5oya.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5oya.pdb.gz\n", "Downloading https://files.rcsb.org/download/6ftl.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6ftl.pdb.gz\n", "Downloading https://files.rcsb.org/download/6hbc.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6hbc.pdb.gz\n", "Downloading https://files.rcsb.org/download/6lrr.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6lrr.pdb.gz\n", "Downloading https://files.rcsb.org/download/6lrs.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6lrs.pdb.gz\n", "Downloading https://files.rcsb.org/download/6uew.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6uew.pdb.gz\n", "Downloading https://files.rcsb.org/download/6z1g.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6z1g.pdb.gz\n", "Downloading https://files.rcsb.org/download/7jfo.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7jfo.pdb.gz\n", "Downloading https://files.rcsb.org/download/7jn4.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7jn4.pdb.gz\n", "Downloading https://files.rcsb.org/download/7jsx.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7jsx.pdb.gz\n", "Downloading https://files.rcsb.org/download/8ruc.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/8ruc.pdb.gz\n", "Downloading https://files.rcsb.org/download/4cr3.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4cr3.pdb.gz\n", "Downloading https://files.rcsb.org/download/5a5b.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5a5b.pdb.gz\n", "Downloading https://files.rcsb.org/download/6epd.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6epd.pdb.gz\n", "Downloading https://files.rcsb.org/download/6fvt.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6fvt.pdb.gz\n", "Failed to download https://files.rcsb.org/download/6fvt.pdb.gz\n", "Downloading https://files.rcsb.org/download/6fvu.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6fvu.pdb.gz\n", "Failed to download https://files.rcsb.org/download/6fvu.pdb.gz\n", "Downloading https://files.rcsb.org/download/6fvv.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6fvv.pdb.gz\n", "Failed to download https://files.rcsb.org/download/6fvv.pdb.gz\n", "Downloading https://files.rcsb.org/download/3jco.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3jco.pdb.gz\n", "Failed to download https://files.rcsb.org/download/3jco.pdb.gz\n", "Downloading https://files.rcsb.org/download/3jcp.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3jcp.pdb.gz\n", "Failed to download https://files.rcsb.org/download/3jcp.pdb.gz\n", "Downloading https://files.rcsb.org/download/4cr2.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4cr2.pdb.gz\n", "Downloading https://files.rcsb.org/download/4cr4.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4cr4.pdb.gz\n", "Downloading https://files.rcsb.org/download/5gjq.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5gjq.pdb.gz\n", "Downloading https://files.rcsb.org/download/5gjr.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5gjr.pdb.gz\n", "Failed to download https://files.rcsb.org/download/5gjr.pdb.gz\n", "Downloading https://files.rcsb.org/download/5l4g.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5l4g.pdb.gz\n", "Failed to download https://files.rcsb.org/download/5l4g.pdb.gz\n", "Downloading https://files.rcsb.org/download/5ln3.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5ln3.pdb.gz\n", "Downloading https://files.rcsb.org/download/5m32.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5m32.pdb.gz\n", "Downloading https://files.rcsb.org/download/5mpb.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5mpb.pdb.gz\n", "Failed to download https://files.rcsb.org/download/5mpb.pdb.gz\n", "Downloading https://files.rcsb.org/download/5mpc.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5mpc.pdb.gz\n", "Failed to download https://files.rcsb.org/download/5mpc.pdb.gz\n", "Downloading https://files.rcsb.org/download/5t0c.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5t0c.pdb.gz\n", "Failed to download https://files.rcsb.org/download/5t0c.pdb.gz\n", "Downloading https://files.rcsb.org/download/5t0g.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5t0g.pdb.gz\n", "Downloading https://files.rcsb.org/download/5t0h.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5t0h.pdb.gz\n", "Downloading https://files.rcsb.org/download/5t0i.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5t0i.pdb.gz\n", "Downloading https://files.rcsb.org/download/5t0j.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5t0j.pdb.gz\n", "Downloading https://files.rcsb.org/download/5vfp.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5vfp.pdb.gz\n", "Failed to download https://files.rcsb.org/download/5vfp.pdb.gz\n", "Downloading https://files.rcsb.org/download/5vfq.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5vfq.pdb.gz\n", "Failed to download https://files.rcsb.org/download/5vfq.pdb.gz\n", "Downloading https://files.rcsb.org/download/5vfr.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5vfr.pdb.gz\n", "Downloading https://files.rcsb.org/download/5vfs.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5vfs.pdb.gz\n", "Failed to download https://files.rcsb.org/download/5vfs.pdb.gz\n", "Downloading https://files.rcsb.org/download/5vft.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5vft.pdb.gz\n", "Downloading https://files.rcsb.org/download/5vfu.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5vfu.pdb.gz\n", "Failed to download https://files.rcsb.org/download/5vfu.pdb.gz\n", "Downloading https://files.rcsb.org/download/5vhf.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5vhf.pdb.gz\n", "Downloading https://files.rcsb.org/download/5vhh.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5vhh.pdb.gz\n", "Downloading https://files.rcsb.org/download/5vhi.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5vhi.pdb.gz\n", "Downloading https://files.rcsb.org/download/5vhs.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5vhs.pdb.gz\n", "Downloading https://files.rcsb.org/download/5wvi.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5wvi.pdb.gz\n", "Failed to download https://files.rcsb.org/download/5wvi.pdb.gz\n", "Downloading https://files.rcsb.org/download/5wvk.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5wvk.pdb.gz\n", "Failed to download https://files.rcsb.org/download/5wvk.pdb.gz\n", "Downloading https://files.rcsb.org/download/6ef3.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6ef3.pdb.gz\n", "Downloading https://files.rcsb.org/download/6epc.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6epc.pdb.gz\n", "Downloading https://files.rcsb.org/download/6epe.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6epe.pdb.gz\n", "Downloading https://files.rcsb.org/download/6epf.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6epf.pdb.gz\n", "Downloading https://files.rcsb.org/download/6fvw.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6fvw.pdb.gz\n", "Failed to download https://files.rcsb.org/download/6fvw.pdb.gz\n", "Downloading https://files.rcsb.org/download/6fvx.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6fvx.pdb.gz\n", "Failed to download https://files.rcsb.org/download/6fvx.pdb.gz\n", "Downloading https://files.rcsb.org/download/6fvy.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6fvy.pdb.gz\n", "Failed to download https://files.rcsb.org/download/6fvy.pdb.gz\n", "Downloading https://files.rcsb.org/download/6j2c.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6j2c.pdb.gz\n", "Failed to download https://files.rcsb.org/download/6j2c.pdb.gz\n", "Downloading https://files.rcsb.org/download/6j2n.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6j2n.pdb.gz\n", "Failed to download https://files.rcsb.org/download/6j2n.pdb.gz\n", "Downloading https://files.rcsb.org/download/6j2q.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6j2q.pdb.gz\n", "Failed to download https://files.rcsb.org/download/6j2q.pdb.gz\n", "Downloading https://files.rcsb.org/download/6j2x.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6j2x.pdb.gz\n", "Failed to download https://files.rcsb.org/download/6j2x.pdb.gz\n", "Downloading https://files.rcsb.org/download/6j30.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6j30.pdb.gz\n", "Failed to download https://files.rcsb.org/download/6j30.pdb.gz\n", "Downloading https://files.rcsb.org/download/6msb.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6msb.pdb.gz\n", "Failed to download https://files.rcsb.org/download/6msb.pdb.gz\n", "Downloading https://files.rcsb.org/download/6msd.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6msd.pdb.gz\n", "Failed to download https://files.rcsb.org/download/6msd.pdb.gz\n", "Downloading https://files.rcsb.org/download/6mse.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6mse.pdb.gz\n", "Failed to download https://files.rcsb.org/download/6mse.pdb.gz\n", "Downloading https://files.rcsb.org/download/6msg.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6msg.pdb.gz\n", "Failed to download https://files.rcsb.org/download/6msg.pdb.gz\n", "Downloading https://files.rcsb.org/download/6msh.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6msh.pdb.gz\n", "Failed to download https://files.rcsb.org/download/6msh.pdb.gz\n", "Downloading https://files.rcsb.org/download/6msj.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6msj.pdb.gz\n", "Failed to download https://files.rcsb.org/download/6msj.pdb.gz\n", "Downloading https://files.rcsb.org/download/6msk.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6msk.pdb.gz\n", "Failed to download https://files.rcsb.org/download/6msk.pdb.gz\n", "Downloading https://files.rcsb.org/download/6wjd.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6wjd.pdb.gz\n", "Failed to download https://files.rcsb.org/download/6wjd.pdb.gz\n", "Downloading https://files.rcsb.org/download/6wjn.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6wjn.pdb.gz\n", "Downloading https://files.rcsb.org/download/5mp9.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5mp9.pdb.gz\n", "Downloading https://files.rcsb.org/download/5mpa.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5mpa.pdb.gz\n", "Downloading https://files.rcsb.org/download/6he8.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6he8.pdb.gz\n", "Downloading https://files.rcsb.org/download/6hec.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6hec.pdb.gz\n", "Downloading https://files.rcsb.org/download/6hed.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6hed.pdb.gz\n", "Downloading https://files.rcsb.org/download/1fnt.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1fnt.pdb.gz\n", "Downloading https://files.rcsb.org/download/1g0u.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1g0u.pdb.gz\n", "Downloading https://files.rcsb.org/download/1g65.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1g65.pdb.gz\n", "Downloading https://files.rcsb.org/download/1iru.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1iru.pdb.gz\n", "Downloading https://files.rcsb.org/download/1jd2.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1jd2.pdb.gz\n", "Downloading https://files.rcsb.org/download/1ryp.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1ryp.pdb.gz\n", "Downloading https://files.rcsb.org/download/2f16.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/2f16.pdb.gz\n", "Downloading https://files.rcsb.org/download/2fak.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/2fak.pdb.gz\n", "Downloading https://files.rcsb.org/download/2gpl.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/2gpl.pdb.gz\n", "Downloading https://files.rcsb.org/download/2zcy.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/2zcy.pdb.gz\n", "Downloading https://files.rcsb.org/download/3bdm.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3bdm.pdb.gz\n", "Downloading https://files.rcsb.org/download/3d29.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3d29.pdb.gz\n", "Downloading https://files.rcsb.org/download/3dy3.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3dy3.pdb.gz\n", "Downloading https://files.rcsb.org/download/3dy4.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3dy4.pdb.gz\n", "Downloading https://files.rcsb.org/download/3e47.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3e47.pdb.gz\n", "Downloading https://files.rcsb.org/download/3gpj.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3gpj.pdb.gz\n", "Downloading https://files.rcsb.org/download/3gpt.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3gpt.pdb.gz\n", "Downloading https://files.rcsb.org/download/3gpw.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3gpw.pdb.gz\n", "Downloading https://files.rcsb.org/download/3hye.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3hye.pdb.gz\n", "Downloading https://files.rcsb.org/download/3mg0.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3mg0.pdb.gz\n", "Downloading https://files.rcsb.org/download/3mg4.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3mg4.pdb.gz\n", "Downloading https://files.rcsb.org/download/3mg6.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3mg6.pdb.gz\n", "Downloading https://files.rcsb.org/download/3mg8.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3mg8.pdb.gz\n", "Downloading https://files.rcsb.org/download/3nzj.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3nzj.pdb.gz\n", "Downloading https://files.rcsb.org/download/3nzw.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3nzw.pdb.gz\n", "Downloading https://files.rcsb.org/download/3nzx.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3nzx.pdb.gz\n", "Downloading https://files.rcsb.org/download/3oeu.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3oeu.pdb.gz\n", "Downloading https://files.rcsb.org/download/3oev.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3oev.pdb.gz\n", "Downloading https://files.rcsb.org/download/3okj.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3okj.pdb.gz\n", "Downloading https://files.rcsb.org/download/3sdi.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3sdi.pdb.gz\n", "Downloading https://files.rcsb.org/download/3sdk.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3sdk.pdb.gz\n", "Downloading https://files.rcsb.org/download/3shj.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3shj.pdb.gz\n", "Downloading https://files.rcsb.org/download/3tdd.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3tdd.pdb.gz\n", "Downloading https://files.rcsb.org/download/3un4.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3un4.pdb.gz\n", "Downloading https://files.rcsb.org/download/3un8.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3un8.pdb.gz\n", "Downloading https://files.rcsb.org/download/3unb.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3unb.pdb.gz\n", "Downloading https://files.rcsb.org/download/3une.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3une.pdb.gz\n", "Downloading https://files.rcsb.org/download/3unf.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3unf.pdb.gz\n", "Downloading https://files.rcsb.org/download/3unh.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3unh.pdb.gz\n", "Downloading https://files.rcsb.org/download/4eu2.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4eu2.pdb.gz\n", "Downloading https://files.rcsb.org/download/4fzc.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4fzc.pdb.gz\n", "Downloading https://files.rcsb.org/download/4fzg.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4fzg.pdb.gz\n", "Downloading https://files.rcsb.org/download/4g4s.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4g4s.pdb.gz\n", "Downloading https://files.rcsb.org/download/4gk7.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4gk7.pdb.gz\n", "Downloading https://files.rcsb.org/download/4hnp.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4hnp.pdb.gz\n", "Downloading https://files.rcsb.org/download/4hrc.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4hrc.pdb.gz\n", "Downloading https://files.rcsb.org/download/4hrd.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4hrd.pdb.gz\n", "Downloading https://files.rcsb.org/download/4inr.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4inr.pdb.gz\n", "Downloading https://files.rcsb.org/download/4int.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4int.pdb.gz\n", "Downloading https://files.rcsb.org/download/4inu.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4inu.pdb.gz\n", "Downloading https://files.rcsb.org/download/4j70.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4j70.pdb.gz\n", "Downloading https://files.rcsb.org/download/4jsq.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4jsq.pdb.gz\n", "Downloading https://files.rcsb.org/download/4jsu.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4jsu.pdb.gz\n", "Downloading https://files.rcsb.org/download/4jt0.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4jt0.pdb.gz\n", "Downloading https://files.rcsb.org/download/4lqi.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4lqi.pdb.gz\n", "Downloading https://files.rcsb.org/download/4ltc.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4ltc.pdb.gz\n", "Downloading https://files.rcsb.org/download/4nnn.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4nnn.pdb.gz\n", "Downloading https://files.rcsb.org/download/4nnw.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4nnw.pdb.gz\n", "Downloading https://files.rcsb.org/download/4no1.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4no1.pdb.gz\n", "Downloading https://files.rcsb.org/download/4no6.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4no6.pdb.gz\n", "Downloading https://files.rcsb.org/download/4no8.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4no8.pdb.gz\n", "Downloading https://files.rcsb.org/download/4no9.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4no9.pdb.gz\n", "Downloading https://files.rcsb.org/download/4q1s.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4q1s.pdb.gz\n", "Downloading https://files.rcsb.org/download/4qby.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4qby.pdb.gz\n", "Downloading https://files.rcsb.org/download/4qlq.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4qlq.pdb.gz\n", "Downloading https://files.rcsb.org/download/4qls.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4qls.pdb.gz\n", "Downloading https://files.rcsb.org/download/4qlt.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4qlt.pdb.gz\n", "Downloading https://files.rcsb.org/download/4qlu.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4qlu.pdb.gz\n", "Downloading https://files.rcsb.org/download/4qlv.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4qlv.pdb.gz\n", "Downloading https://files.rcsb.org/download/4qux.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4qux.pdb.gz\n", "Downloading https://files.rcsb.org/download/4quy.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4quy.pdb.gz\n", "Downloading https://files.rcsb.org/download/4qv0.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4qv0.pdb.gz\n", "Downloading https://files.rcsb.org/download/4qv1.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4qv1.pdb.gz\n", "Downloading https://files.rcsb.org/download/4qv3.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4qv3.pdb.gz\n", "Downloading https://files.rcsb.org/download/4qv4.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4qv4.pdb.gz\n", "Downloading https://files.rcsb.org/download/4qv5.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4qv5.pdb.gz\n", "Downloading https://files.rcsb.org/download/4qv6.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4qv6.pdb.gz\n", "Downloading https://files.rcsb.org/download/4qv7.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4qv7.pdb.gz\n", "Downloading https://files.rcsb.org/download/4qv8.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4qv8.pdb.gz\n", "Downloading https://files.rcsb.org/download/4qv9.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4qv9.pdb.gz\n", "Downloading https://files.rcsb.org/download/4qvl.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4qvl.pdb.gz\n", "Downloading https://files.rcsb.org/download/4qvm.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4qvm.pdb.gz\n", "Downloading https://files.rcsb.org/download/4qvn.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4qvn.pdb.gz\n", "Downloading https://files.rcsb.org/download/4qvp.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4qvp.pdb.gz\n", "Downloading https://files.rcsb.org/download/4qvq.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4qvq.pdb.gz\n", "Downloading https://files.rcsb.org/download/4qvv.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4qvv.pdb.gz\n", "Downloading https://files.rcsb.org/download/4qvw.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4qvw.pdb.gz\n", "Downloading https://files.rcsb.org/download/4qvy.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4qvy.pdb.gz\n", "Downloading https://files.rcsb.org/download/4qw0.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4qw0.pdb.gz\n", "Downloading https://files.rcsb.org/download/4qw1.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4qw1.pdb.gz\n", "Downloading https://files.rcsb.org/download/4qw3.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4qw3.pdb.gz\n", "Downloading https://files.rcsb.org/download/4qw4.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4qw4.pdb.gz\n", "Downloading https://files.rcsb.org/download/4qw5.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4qw5.pdb.gz\n", "Downloading https://files.rcsb.org/download/4qw6.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4qw6.pdb.gz\n", "Downloading https://files.rcsb.org/download/4qw7.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4qw7.pdb.gz\n", "Downloading https://files.rcsb.org/download/4qwf.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4qwf.pdb.gz\n", "Downloading https://files.rcsb.org/download/4qwg.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4qwg.pdb.gz\n", "Downloading https://files.rcsb.org/download/4qwi.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4qwi.pdb.gz\n", "Downloading https://files.rcsb.org/download/4qwj.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4qwj.pdb.gz\n", "Downloading https://files.rcsb.org/download/4qwk.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4qwk.pdb.gz\n", "Downloading https://files.rcsb.org/download/4qwl.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4qwl.pdb.gz\n", "Downloading https://files.rcsb.org/download/4qwr.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4qwr.pdb.gz\n", "Downloading https://files.rcsb.org/download/4qws.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4qws.pdb.gz\n", "Downloading https://files.rcsb.org/download/4qwu.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4qwu.pdb.gz\n", "Downloading https://files.rcsb.org/download/4qwx.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4qwx.pdb.gz\n", "Downloading https://files.rcsb.org/download/4qxj.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4qxj.pdb.gz\n", "Downloading https://files.rcsb.org/download/4qz0.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4qz0.pdb.gz\n", "Downloading https://files.rcsb.org/download/4qz1.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4qz1.pdb.gz\n", "Downloading https://files.rcsb.org/download/4qz2.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4qz2.pdb.gz\n", "Downloading https://files.rcsb.org/download/4qz3.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4qz3.pdb.gz\n", "Downloading https://files.rcsb.org/download/4qz4.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4qz4.pdb.gz\n", "Downloading https://files.rcsb.org/download/4qz5.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4qz5.pdb.gz\n", "Downloading https://files.rcsb.org/download/4qz6.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4qz6.pdb.gz\n", "Downloading https://files.rcsb.org/download/4qz7.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4qz7.pdb.gz\n", "Downloading https://files.rcsb.org/download/4qzw.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4qzw.pdb.gz\n", "Downloading https://files.rcsb.org/download/4qzx.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4qzx.pdb.gz\n", "Downloading https://files.rcsb.org/download/4qzz.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4qzz.pdb.gz\n", "Downloading https://files.rcsb.org/download/4r00.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4r00.pdb.gz\n", "Downloading https://files.rcsb.org/download/4r02.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4r02.pdb.gz\n", "Downloading https://files.rcsb.org/download/4r17.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4r17.pdb.gz\n", "Downloading https://files.rcsb.org/download/4r18.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4r18.pdb.gz\n", "Downloading https://files.rcsb.org/download/4r3o.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4r3o.pdb.gz\n", "Downloading https://files.rcsb.org/download/4r67.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4r67.pdb.gz\n", "Downloading https://files.rcsb.org/download/4rur.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4rur.pdb.gz\n", "Downloading https://files.rcsb.org/download/4v7o.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4v7o.pdb.gz\n", "Failed to download https://files.rcsb.org/download/4v7o.pdb.gz\n", "Downloading https://files.rcsb.org/download/4x6z.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4x6z.pdb.gz\n", "Downloading https://files.rcsb.org/download/4y69.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4y69.pdb.gz\n", "Downloading https://files.rcsb.org/download/4y6a.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4y6a.pdb.gz\n", "Downloading https://files.rcsb.org/download/4y6v.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4y6v.pdb.gz\n", "Downloading https://files.rcsb.org/download/4y6z.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4y6z.pdb.gz\n", "Downloading https://files.rcsb.org/download/4y70.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4y70.pdb.gz\n", "Downloading https://files.rcsb.org/download/4y74.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4y74.pdb.gz\n", "Downloading https://files.rcsb.org/download/4y75.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4y75.pdb.gz\n", "Downloading https://files.rcsb.org/download/4y77.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4y77.pdb.gz\n", "Downloading https://files.rcsb.org/download/4y78.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4y78.pdb.gz\n", "Downloading https://files.rcsb.org/download/4y7w.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4y7w.pdb.gz\n", "Downloading https://files.rcsb.org/download/4y7x.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4y7x.pdb.gz\n", "Downloading https://files.rcsb.org/download/4y7y.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4y7y.pdb.gz\n", "Downloading https://files.rcsb.org/download/4y80.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4y80.pdb.gz\n", "Downloading https://files.rcsb.org/download/4y81.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4y81.pdb.gz\n", "Downloading https://files.rcsb.org/download/4y82.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4y82.pdb.gz\n", "Downloading https://files.rcsb.org/download/4y84.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4y84.pdb.gz\n", "Downloading https://files.rcsb.org/download/4y8g.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4y8g.pdb.gz\n", "Downloading https://files.rcsb.org/download/4y8h.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4y8h.pdb.gz\n", "Downloading https://files.rcsb.org/download/4y8i.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4y8i.pdb.gz\n", "Downloading https://files.rcsb.org/download/4y8j.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4y8j.pdb.gz\n", "Downloading https://files.rcsb.org/download/4y8k.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4y8k.pdb.gz\n", "Downloading https://files.rcsb.org/download/4y8l.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4y8l.pdb.gz\n", "Downloading https://files.rcsb.org/download/4y8m.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4y8m.pdb.gz\n", "Downloading https://files.rcsb.org/download/4y8n.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4y8n.pdb.gz\n", "Downloading https://files.rcsb.org/download/4y8o.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4y8o.pdb.gz\n", "Downloading https://files.rcsb.org/download/4y8p.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4y8p.pdb.gz\n", "Downloading https://files.rcsb.org/download/4y8q.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4y8q.pdb.gz\n", "Downloading https://files.rcsb.org/download/4y8r.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4y8r.pdb.gz\n", "Downloading https://files.rcsb.org/download/4y8s.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4y8s.pdb.gz\n", "Downloading https://files.rcsb.org/download/4y8t.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4y8t.pdb.gz\n", "Downloading https://files.rcsb.org/download/4y8u.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4y8u.pdb.gz\n", "Downloading https://files.rcsb.org/download/4y9y.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4y9y.pdb.gz\n", "Downloading https://files.rcsb.org/download/4y9z.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4y9z.pdb.gz\n", "Downloading https://files.rcsb.org/download/4ya0.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4ya0.pdb.gz\n", "Downloading https://files.rcsb.org/download/4ya1.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4ya1.pdb.gz\n", "Downloading https://files.rcsb.org/download/4ya2.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4ya2.pdb.gz\n", "Downloading https://files.rcsb.org/download/4ya3.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4ya3.pdb.gz\n", "Downloading https://files.rcsb.org/download/4ya4.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4ya4.pdb.gz\n", "Downloading https://files.rcsb.org/download/4ya5.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4ya5.pdb.gz\n", "Downloading https://files.rcsb.org/download/4ya7.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4ya7.pdb.gz\n", "Downloading https://files.rcsb.org/download/4ya9.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4ya9.pdb.gz\n", "Downloading https://files.rcsb.org/download/4z1l.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4z1l.pdb.gz\n", "Downloading https://files.rcsb.org/download/5a0q.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5a0q.pdb.gz\n", "Downloading https://files.rcsb.org/download/5ahj.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5ahj.pdb.gz\n", "Downloading https://files.rcsb.org/download/5bou.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5bou.pdb.gz\n", "Downloading https://files.rcsb.org/download/5bxl.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5bxl.pdb.gz\n", "Downloading https://files.rcsb.org/download/5bxn.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5bxn.pdb.gz\n", "Downloading https://files.rcsb.org/download/5cgf.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5cgf.pdb.gz\n", "Downloading https://files.rcsb.org/download/5cgg.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5cgg.pdb.gz\n", "Downloading https://files.rcsb.org/download/5cgh.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5cgh.pdb.gz\n", "Downloading https://files.rcsb.org/download/5cgi.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5cgi.pdb.gz\n", "Downloading https://files.rcsb.org/download/5cz4.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5cz4.pdb.gz\n", "Downloading https://files.rcsb.org/download/5cz5.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5cz5.pdb.gz\n", "Downloading https://files.rcsb.org/download/5cz6.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5cz6.pdb.gz\n", "Downloading https://files.rcsb.org/download/5cz7.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5cz7.pdb.gz\n", "Downloading https://files.rcsb.org/download/5cz8.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5cz8.pdb.gz\n", "Downloading https://files.rcsb.org/download/5cz9.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5cz9.pdb.gz\n", "Downloading https://files.rcsb.org/download/5cza.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5cza.pdb.gz\n", "Downloading https://files.rcsb.org/download/5d0s.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5d0s.pdb.gz\n", "Downloading https://files.rcsb.org/download/5d0t.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5d0t.pdb.gz\n", "Downloading https://files.rcsb.org/download/5d0v.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5d0v.pdb.gz\n", "Downloading https://files.rcsb.org/download/5d0w.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5d0w.pdb.gz\n", "Downloading https://files.rcsb.org/download/5d0x.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5d0x.pdb.gz\n", "Downloading https://files.rcsb.org/download/5d0z.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5d0z.pdb.gz\n", "Downloading https://files.rcsb.org/download/5dki.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5dki.pdb.gz\n", "Downloading https://files.rcsb.org/download/5dkj.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5dkj.pdb.gz\n", "Downloading https://files.rcsb.org/download/5fg7.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5fg7.pdb.gz\n", "Downloading https://files.rcsb.org/download/5fg9.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5fg9.pdb.gz\n", "Downloading https://files.rcsb.org/download/5fga.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5fga.pdb.gz\n", "Downloading https://files.rcsb.org/download/5fgd.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5fgd.pdb.gz\n", "Downloading https://files.rcsb.org/download/5fge.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5fge.pdb.gz\n", "Downloading https://files.rcsb.org/download/5fgf.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5fgf.pdb.gz\n", "Downloading https://files.rcsb.org/download/5fgg.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5fgg.pdb.gz\n", "Downloading https://files.rcsb.org/download/5fgh.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5fgh.pdb.gz\n", "Downloading https://files.rcsb.org/download/5fgi.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5fgi.pdb.gz\n", "Downloading https://files.rcsb.org/download/5fhs.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5fhs.pdb.gz\n", "Downloading https://files.rcsb.org/download/5fmg.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5fmg.pdb.gz\n", "Downloading https://files.rcsb.org/download/5jhr.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5jhr.pdb.gz\n", "Downloading https://files.rcsb.org/download/5jhs.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5jhs.pdb.gz\n", "Downloading https://files.rcsb.org/download/5l52.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5l52.pdb.gz\n", "Downloading https://files.rcsb.org/download/5l54.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5l54.pdb.gz\n", "Downloading https://files.rcsb.org/download/5l55.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5l55.pdb.gz\n", "Downloading https://files.rcsb.org/download/5l5a.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5l5a.pdb.gz\n", "Downloading https://files.rcsb.org/download/5l5b.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5l5b.pdb.gz\n", "Downloading https://files.rcsb.org/download/5l5d.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5l5d.pdb.gz\n", "Downloading https://files.rcsb.org/download/5l5e.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5l5e.pdb.gz\n", "Downloading https://files.rcsb.org/download/5l5f.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5l5f.pdb.gz\n", "Downloading https://files.rcsb.org/download/5l5h.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5l5h.pdb.gz\n", "Downloading https://files.rcsb.org/download/5l5i.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5l5i.pdb.gz\n", "Downloading https://files.rcsb.org/download/5l5j.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5l5j.pdb.gz\n", "Downloading https://files.rcsb.org/download/5l5o.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5l5o.pdb.gz\n", "Downloading https://files.rcsb.org/download/5l5p.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5l5p.pdb.gz\n", "Downloading https://files.rcsb.org/download/5l5q.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5l5q.pdb.gz\n", "Downloading https://files.rcsb.org/download/5l5r.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5l5r.pdb.gz\n", "Downloading https://files.rcsb.org/download/5l5s.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5l5s.pdb.gz\n", "Downloading https://files.rcsb.org/download/5l5t.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5l5t.pdb.gz\n", "Downloading https://files.rcsb.org/download/5l5u.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5l5u.pdb.gz\n", "Downloading https://files.rcsb.org/download/5l5v.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5l5v.pdb.gz\n", "Downloading https://files.rcsb.org/download/5l5w.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5l5w.pdb.gz\n", "Downloading https://files.rcsb.org/download/5l5x.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5l5x.pdb.gz\n", "Downloading https://files.rcsb.org/download/5l5y.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5l5y.pdb.gz\n", "Downloading https://files.rcsb.org/download/5l5z.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5l5z.pdb.gz\n", "Downloading https://files.rcsb.org/download/5l60.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5l60.pdb.gz\n", "Downloading https://files.rcsb.org/download/5l61.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5l61.pdb.gz\n", "Downloading https://files.rcsb.org/download/5l62.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5l62.pdb.gz\n", "Downloading https://files.rcsb.org/download/5l63.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5l63.pdb.gz\n", "Downloading https://files.rcsb.org/download/5l64.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5l64.pdb.gz\n", "Downloading https://files.rcsb.org/download/5l65.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5l65.pdb.gz\n", "Downloading https://files.rcsb.org/download/5l66.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5l66.pdb.gz\n", "Downloading https://files.rcsb.org/download/5l67.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5l67.pdb.gz\n", "Downloading https://files.rcsb.org/download/5l68.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5l68.pdb.gz\n", "Downloading https://files.rcsb.org/download/5l69.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5l69.pdb.gz\n", "Downloading https://files.rcsb.org/download/5l6a.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5l6a.pdb.gz\n", "Downloading https://files.rcsb.org/download/5l6b.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5l6b.pdb.gz\n", "Downloading https://files.rcsb.org/download/5l6c.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5l6c.pdb.gz\n", "Downloading https://files.rcsb.org/download/5lai.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5lai.pdb.gz\n", "Downloading https://files.rcsb.org/download/5laj.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5laj.pdb.gz\n", "Downloading https://files.rcsb.org/download/5le5.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5le5.pdb.gz\n", "Downloading https://files.rcsb.org/download/5lex.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5lex.pdb.gz\n", "Downloading https://files.rcsb.org/download/5ley.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5ley.pdb.gz\n", "Downloading https://files.rcsb.org/download/5lez.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5lez.pdb.gz\n", "Downloading https://files.rcsb.org/download/5lf0.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5lf0.pdb.gz\n", "Downloading https://files.rcsb.org/download/5lf1.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5lf1.pdb.gz\n", "Downloading https://files.rcsb.org/download/5lf3.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5lf3.pdb.gz\n", "Downloading https://files.rcsb.org/download/5lf4.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5lf4.pdb.gz\n", "Downloading https://files.rcsb.org/download/5lf6.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5lf6.pdb.gz\n", "Downloading https://files.rcsb.org/download/5lf7.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5lf7.pdb.gz\n", "Downloading https://files.rcsb.org/download/5ltt.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5ltt.pdb.gz\n", "Downloading https://files.rcsb.org/download/5m2b.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5m2b.pdb.gz\n", "Downloading https://files.rcsb.org/download/5nif.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5nif.pdb.gz\n", "Downloading https://files.rcsb.org/download/5vfo.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5vfo.pdb.gz\n", "Downloading https://files.rcsb.org/download/6avo.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6avo.pdb.gz\n", "Downloading https://files.rcsb.org/download/6g7f.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6g7f.pdb.gz\n", "Downloading https://files.rcsb.org/download/6g8m.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6g8m.pdb.gz\n", "Downloading https://files.rcsb.org/download/6g8n.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6g8n.pdb.gz\n", "Downloading https://files.rcsb.org/download/6gop.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6gop.pdb.gz\n", "Downloading https://files.rcsb.org/download/6h39.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6h39.pdb.gz\n", "Downloading https://files.rcsb.org/download/6htb.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6htb.pdb.gz\n", "Downloading https://files.rcsb.org/download/6htc.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6htc.pdb.gz\n", "Downloading https://files.rcsb.org/download/6htd.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6htd.pdb.gz\n", "Downloading https://files.rcsb.org/download/6htp.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6htp.pdb.gz\n", "Downloading https://files.rcsb.org/download/6htr.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6htr.pdb.gz\n", "Downloading https://files.rcsb.org/download/6hub.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6hub.pdb.gz\n", "Downloading https://files.rcsb.org/download/6huc.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6huc.pdb.gz\n", "Downloading https://files.rcsb.org/download/6huq.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6huq.pdb.gz\n", "Downloading https://files.rcsb.org/download/6huu.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6huu.pdb.gz\n", "Downloading https://files.rcsb.org/download/6huv.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6huv.pdb.gz\n", "Downloading https://files.rcsb.org/download/6hvx.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6hvx.pdb.gz\n", "Downloading https://files.rcsb.org/download/6hvy.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6hvy.pdb.gz\n", "Downloading https://files.rcsb.org/download/6hw0.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6hw0.pdb.gz\n", "Downloading https://files.rcsb.org/download/6hw3.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6hw3.pdb.gz\n", "Downloading https://files.rcsb.org/download/6hw4.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6hw4.pdb.gz\n", "Downloading https://files.rcsb.org/download/6hw5.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6hw5.pdb.gz\n", "Downloading https://files.rcsb.org/download/6hw6.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6hw6.pdb.gz\n", "Downloading https://files.rcsb.org/download/6hw7.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6hw7.pdb.gz\n", "Downloading https://files.rcsb.org/download/6hw8.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6hw8.pdb.gz\n", "Downloading https://files.rcsb.org/download/6hw9.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6hw9.pdb.gz\n", "Downloading https://files.rcsb.org/download/6hwa.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6hwa.pdb.gz\n", "Downloading https://files.rcsb.org/download/6hwb.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6hwb.pdb.gz\n", "Downloading https://files.rcsb.org/download/6hwc.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6hwc.pdb.gz\n", "Downloading https://files.rcsb.org/download/6hwd.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6hwd.pdb.gz\n", "Downloading https://files.rcsb.org/download/6hwe.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6hwe.pdb.gz\n", "Downloading https://files.rcsb.org/download/6hwf.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6hwf.pdb.gz\n", "Downloading https://files.rcsb.org/download/6kwy.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6kwy.pdb.gz\n", "Downloading https://files.rcsb.org/download/6muv.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6muv.pdb.gz\n", "Downloading https://files.rcsb.org/download/6muw.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6muw.pdb.gz\n", "Downloading https://files.rcsb.org/download/6mux.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6mux.pdb.gz\n", "Downloading https://files.rcsb.org/download/6qm7.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6qm7.pdb.gz\n", "Downloading https://files.rcsb.org/download/6qm8.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6qm8.pdb.gz\n", "Downloading https://files.rcsb.org/download/6r70.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6r70.pdb.gz\n", "Downloading https://files.rcsb.org/download/6rey.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6rey.pdb.gz\n", "Downloading https://files.rcsb.org/download/6rgq.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6rgq.pdb.gz\n", "Downloading https://files.rcsb.org/download/6tcz.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6tcz.pdb.gz\n", "Downloading https://files.rcsb.org/download/6td5.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6td5.pdb.gz\n", "Downloading https://files.rcsb.org/download/6tu3.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6tu3.pdb.gz\n", "Downloading https://files.rcsb.org/download/6xmj.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6xmj.pdb.gz\n", "Downloading https://files.rcsb.org/download/6zou.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6zou.pdb.gz\n", "Downloading https://files.rcsb.org/download/6zp6.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6zp6.pdb.gz\n", "Downloading https://files.rcsb.org/download/6zp8.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6zp8.pdb.gz\n", "Downloading https://files.rcsb.org/download/7awe.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7awe.pdb.gz\n", "Downloading https://files.rcsb.org/download/7b12.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7b12.pdb.gz\n", "Downloading https://files.rcsb.org/download/7dr6.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7dr6.pdb.gz\n", "Downloading https://files.rcsb.org/download/7dr7.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7dr7.pdb.gz\n", "Downloading https://files.rcsb.org/download/7drw.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7drw.pdb.gz\n", "Downloading https://files.rcsb.org/download/7ls5.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7ls5.pdb.gz\n", "Downloading https://files.rcsb.org/download/7nht.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7nht.pdb.gz\n", "Downloading https://files.rcsb.org/download/3mg7.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3mg7.pdb.gz\n", "Downloading https://files.rcsb.org/download/1j2q.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1j2q.pdb.gz\n", "Downloading https://files.rcsb.org/download/1pma.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1pma.pdb.gz\n", "Downloading https://files.rcsb.org/download/3c91.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3c91.pdb.gz\n", "Downloading https://files.rcsb.org/download/3c92.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3c92.pdb.gz\n", "Downloading https://files.rcsb.org/download/3h4p.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3h4p.pdb.gz\n", "Downloading https://files.rcsb.org/download/3j9i.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3j9i.pdb.gz\n", "Downloading https://files.rcsb.org/download/3wxr.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3wxr.pdb.gz\n", "Downloading https://files.rcsb.org/download/5vy3.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5vy3.pdb.gz\n", "Downloading https://files.rcsb.org/download/5vy4.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5vy4.pdb.gz\n", "Downloading https://files.rcsb.org/download/6bdf.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6bdf.pdb.gz\n", "Downloading https://files.rcsb.org/download/6e5b.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6e5b.pdb.gz\n", "Downloading https://files.rcsb.org/download/6he5.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6he5.pdb.gz\n", "Downloading https://files.rcsb.org/download/6he7.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6he7.pdb.gz\n", "Downloading https://files.rcsb.org/download/6he9.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6he9.pdb.gz\n", "Downloading https://files.rcsb.org/download/6hea.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6hea.pdb.gz\n", "Downloading https://files.rcsb.org/download/6hv3.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6hv3.pdb.gz\n", "Downloading https://files.rcsb.org/download/6hv4.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6hv4.pdb.gz\n", "Downloading https://files.rcsb.org/download/6hv5.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6hv5.pdb.gz\n", "Downloading https://files.rcsb.org/download/6hv7.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6hv7.pdb.gz\n", "Downloading https://files.rcsb.org/download/6hva.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6hva.pdb.gz\n", "Downloading https://files.rcsb.org/download/6hvr.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6hvr.pdb.gz\n", "Downloading https://files.rcsb.org/download/6hvs.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6hvs.pdb.gz\n", "Downloading https://files.rcsb.org/download/6hvt.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6hvt.pdb.gz\n", "Downloading https://files.rcsb.org/download/6hvu.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6hvu.pdb.gz\n", "Downloading https://files.rcsb.org/download/6hvv.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6hvv.pdb.gz\n", "Downloading https://files.rcsb.org/download/6hvw.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6hvw.pdb.gz\n", "Downloading https://files.rcsb.org/download/6utf.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6utf.pdb.gz\n", "Downloading https://files.rcsb.org/download/6utg.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6utg.pdb.gz\n", "Downloading https://files.rcsb.org/download/6uth.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6uth.pdb.gz\n", "Downloading https://files.rcsb.org/download/6uti.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6uti.pdb.gz\n", "Downloading https://files.rcsb.org/download/6utj.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6utj.pdb.gz\n", "Downloading https://files.rcsb.org/download/6z46.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6z46.pdb.gz\n", "Downloading https://files.rcsb.org/download/4xgc.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4xgc.pdb.gz\n", "Downloading https://files.rcsb.org/download/5uj7.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5uj7.pdb.gz\n", "Downloading https://files.rcsb.org/download/7jpo.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7jpo.pdb.gz\n", "Downloading https://files.rcsb.org/download/7jpp.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7jpp.pdb.gz\n", "Downloading https://files.rcsb.org/download/7jpr.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7jpr.pdb.gz\n", "Downloading https://files.rcsb.org/download/7jps.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7jps.pdb.gz\n", "Downloading https://files.rcsb.org/download/5ujm.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5ujm.pdb.gz\n", "Downloading https://files.rcsb.org/download/5v8f.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5v8f.pdb.gz\n", "Downloading https://files.rcsb.org/download/5zr1.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5zr1.pdb.gz\n", "Downloading https://files.rcsb.org/download/6rqc.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6rqc.pdb.gz\n", "Failed to download https://files.rcsb.org/download/6rqc.pdb.gz\n", "Downloading https://files.rcsb.org/download/6wgc.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6wgc.pdb.gz\n", "Downloading https://files.rcsb.org/download/6wgg.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6wgg.pdb.gz\n", "Downloading https://files.rcsb.org/download/6wgi.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6wgi.pdb.gz\n", "Downloading https://files.rcsb.org/download/7cte.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7cte.pdb.gz\n", "Downloading https://files.rcsb.org/download/7ctf.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7ctf.pdb.gz\n", "Downloading https://files.rcsb.org/download/7ctg.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7ctg.pdb.gz\n", "Downloading https://files.rcsb.org/download/7jgr.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7jgr.pdb.gz\n", "Downloading https://files.rcsb.org/download/7jgs.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7jgs.pdb.gz\n", "Downloading https://files.rcsb.org/download/7jk2.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7jk2.pdb.gz\n", "Downloading https://files.rcsb.org/download/7jk3.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7jk3.pdb.gz\n", "Downloading https://files.rcsb.org/download/7jk4.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7jk4.pdb.gz\n", "Downloading https://files.rcsb.org/download/7jk5.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7jk5.pdb.gz\n", "Downloading https://files.rcsb.org/download/7jk6.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7jk6.pdb.gz\n", "Downloading https://files.rcsb.org/download/7jpq.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7jpq.pdb.gz\n", "Downloading https://files.rcsb.org/download/5uj8.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5uj8.pdb.gz\n", "Downloading https://files.rcsb.org/download/3jb9.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3jb9.pdb.gz\n", "Downloading https://files.rcsb.org/download/5mqf.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5mqf.pdb.gz\n", "Downloading https://files.rcsb.org/download/5xjc.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5xjc.pdb.gz\n", "Failed to download https://files.rcsb.org/download/5xjc.pdb.gz\n", "Downloading https://files.rcsb.org/download/5yzg.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5yzg.pdb.gz\n", "Failed to download https://files.rcsb.org/download/5yzg.pdb.gz\n", "Downloading https://files.rcsb.org/download/5z56.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5z56.pdb.gz\n", "Failed to download https://files.rcsb.org/download/5z56.pdb.gz\n", "Downloading https://files.rcsb.org/download/5z57.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5z57.pdb.gz\n", "Failed to download https://files.rcsb.org/download/5z57.pdb.gz\n", "Downloading https://files.rcsb.org/download/6icz.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6icz.pdb.gz\n", "Downloading https://files.rcsb.org/download/6id0.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6id0.pdb.gz\n", "Downloading https://files.rcsb.org/download/6id1.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6id1.pdb.gz\n", "Downloading https://files.rcsb.org/download/6qdv.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6qdv.pdb.gz\n", "Failed to download https://files.rcsb.org/download/6qdv.pdb.gz\n", "Downloading https://files.rcsb.org/download/7a5p.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7a5p.pdb.gz\n", "Downloading https://files.rcsb.org/download/5z58.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5z58.pdb.gz\n", "Downloading https://files.rcsb.org/download/6ff4.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6ff4.pdb.gz\n", "Downloading https://files.rcsb.org/download/6zym.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6zym.pdb.gz\n", "Downloading https://files.rcsb.org/download/5gmk.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5gmk.pdb.gz\n", "Downloading https://files.rcsb.org/download/5lj3.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5lj3.pdb.gz\n", "Downloading https://files.rcsb.org/download/5mps.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5mps.pdb.gz\n", "Downloading https://files.rcsb.org/download/5mq0.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5mq0.pdb.gz\n", "Downloading https://files.rcsb.org/download/5wsg.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5wsg.pdb.gz\n", "Downloading https://files.rcsb.org/download/5y88.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5y88.pdb.gz\n", "Downloading https://files.rcsb.org/download/5ylz.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5ylz.pdb.gz\n", "Downloading https://files.rcsb.org/download/6bk8.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6bk8.pdb.gz\n", "Downloading https://files.rcsb.org/download/6exn.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6exn.pdb.gz\n", "Downloading https://files.rcsb.org/download/6ff7.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6ff7.pdb.gz\n", "Downloading https://files.rcsb.org/download/6j6g.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6j6g.pdb.gz\n", "Downloading https://files.rcsb.org/download/6j6h.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6j6h.pdb.gz\n", "Downloading https://files.rcsb.org/download/6j6n.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6j6n.pdb.gz\n", "Downloading https://files.rcsb.org/download/6j6q.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6j6q.pdb.gz\n", "Downloading https://files.rcsb.org/download/7aav.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7aav.pdb.gz\n", "Downloading https://files.rcsb.org/download/7abi.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7abi.pdb.gz\n", "Downloading https://files.rcsb.org/download/3jcm.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3jcm.pdb.gz\n", "Downloading https://files.rcsb.org/download/3jcr.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3jcr.pdb.gz\n", "Downloading https://files.rcsb.org/download/5gam.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5gam.pdb.gz\n", "Downloading https://files.rcsb.org/download/5gan.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5gan.pdb.gz\n", "Downloading https://files.rcsb.org/download/5gm6.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5gm6.pdb.gz\n", "Failed to download https://files.rcsb.org/download/5gm6.pdb.gz\n", "Downloading https://files.rcsb.org/download/5lj5.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5lj5.pdb.gz\n", "Downloading https://files.rcsb.org/download/5nrl.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5nrl.pdb.gz\n", "Failed to download https://files.rcsb.org/download/5nrl.pdb.gz\n", "Downloading https://files.rcsb.org/download/5o9z.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5o9z.pdb.gz\n", "Downloading https://files.rcsb.org/download/5zwm.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5zwm.pdb.gz\n", "Failed to download https://files.rcsb.org/download/5zwm.pdb.gz\n", "Downloading https://files.rcsb.org/download/5zwo.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5zwo.pdb.gz\n", "Downloading https://files.rcsb.org/download/6qw6.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6qw6.pdb.gz\n", "Failed to download https://files.rcsb.org/download/6qw6.pdb.gz\n", "Downloading https://files.rcsb.org/download/6qx9.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6qx9.pdb.gz\n", "Failed to download https://files.rcsb.org/download/6qx9.pdb.gz\n", "Downloading https://files.rcsb.org/download/7abg.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7abg.pdb.gz\n", "Failed to download https://files.rcsb.org/download/7abg.pdb.gz\n", "Downloading https://files.rcsb.org/download/7b9v.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7b9v.pdb.gz\n", "Failed to download https://files.rcsb.org/download/7b9v.pdb.gz\n", "Downloading https://files.rcsb.org/download/5lqw.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5lqw.pdb.gz\n", "Downloading https://files.rcsb.org/download/6ah0.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6ah0.pdb.gz\n", "Downloading https://files.rcsb.org/download/7abf.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7abf.pdb.gz\n", "Failed to download https://files.rcsb.org/download/7abf.pdb.gz\n", "Downloading https://files.rcsb.org/download/6g90.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6g90.pdb.gz\n", "Downloading https://files.rcsb.org/download/1a9n.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1a9n.pdb.gz\n", "Downloading https://files.rcsb.org/download/6f4g.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6f4g.pdb.gz\n", "Downloading https://files.rcsb.org/download/6f4j.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6f4j.pdb.gz\n", "Downloading https://files.rcsb.org/download/7dco.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7dco.pdb.gz\n", "Failed to download https://files.rcsb.org/download/7dco.pdb.gz\n", "Downloading https://files.rcsb.org/download/1hl6.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1hl6.pdb.gz\n", "Downloading https://files.rcsb.org/download/1oo0.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1oo0.pdb.gz\n", "Downloading https://files.rcsb.org/download/1p27.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1p27.pdb.gz\n", "Downloading https://files.rcsb.org/download/1rk8.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1rk8.pdb.gz\n", "Downloading https://files.rcsb.org/download/2hyi.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/2hyi.pdb.gz\n", "Downloading https://files.rcsb.org/download/2j0q.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/2j0q.pdb.gz\n", "Downloading https://files.rcsb.org/download/2j0s.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/2j0s.pdb.gz\n", "Downloading https://files.rcsb.org/download/2x1g.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/2x1g.pdb.gz\n", "Downloading https://files.rcsb.org/download/2xb2.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/2xb2.pdb.gz\n", "Downloading https://files.rcsb.org/download/3ex7.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3ex7.pdb.gz\n", "Downloading https://files.rcsb.org/download/2mkc.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/2mkc.pdb.gz\n", "Downloading https://files.rcsb.org/download/2my2.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/2my2.pdb.gz\n", "Downloading https://files.rcsb.org/download/4uqt.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4uqt.pdb.gz\n", "Downloading https://files.rcsb.org/download/5ife.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5ife.pdb.gz\n", "Downloading https://files.rcsb.org/download/5zya.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5zya.pdb.gz\n", "Downloading https://files.rcsb.org/download/6en4.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6en4.pdb.gz\n", "Downloading https://files.rcsb.org/download/6y50.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6y50.pdb.gz\n", "Downloading https://files.rcsb.org/download/7abh.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7abh.pdb.gz\n", "Downloading https://files.rcsb.org/download/7b0i.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7b0i.pdb.gz\n", "Downloading https://files.rcsb.org/download/7b91.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7b91.pdb.gz\n", "Downloading https://files.rcsb.org/download/7b92.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7b92.pdb.gz\n", "Downloading https://files.rcsb.org/download/7b9c.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7b9c.pdb.gz\n", "Downloading https://files.rcsb.org/download/7omf.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7omf.pdb.gz\n", "Downloading https://files.rcsb.org/download/7opi.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7opi.pdb.gz\n", "Downloading https://files.rcsb.org/download/6ahd.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6ahd.pdb.gz\n", "Failed to download https://files.rcsb.org/download/6ahd.pdb.gz\n", "Downloading https://files.rcsb.org/download/6y5q.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6y5q.pdb.gz\n", "Downloading https://files.rcsb.org/download/5hy7.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5hy7.pdb.gz\n", "Downloading https://files.rcsb.org/download/3ja8.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3ja8.pdb.gz\n", "Downloading https://files.rcsb.org/download/3jc5.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3jc5.pdb.gz\n", "Downloading https://files.rcsb.org/download/3jc6.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3jc6.pdb.gz\n", "Downloading https://files.rcsb.org/download/3jc7.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3jc7.pdb.gz\n", "Downloading https://files.rcsb.org/download/5bk4.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5bk4.pdb.gz\n", "Downloading https://files.rcsb.org/download/5u8s.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5u8s.pdb.gz\n", "Downloading https://files.rcsb.org/download/5u8t.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5u8t.pdb.gz\n", "Downloading https://files.rcsb.org/download/5xf8.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5xf8.pdb.gz\n", "Downloading https://files.rcsb.org/download/6eyc.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6eyc.pdb.gz\n", "Downloading https://files.rcsb.org/download/6f0l.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6f0l.pdb.gz\n", "Downloading https://files.rcsb.org/download/6hv9.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6hv9.pdb.gz\n", "Downloading https://files.rcsb.org/download/6ptj.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6ptj.pdb.gz\n", "Downloading https://files.rcsb.org/download/6ptn.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6ptn.pdb.gz\n", "Downloading https://files.rcsb.org/download/6pto.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6pto.pdb.gz\n", "Failed to download https://files.rcsb.org/download/6pto.pdb.gz\n", "Downloading https://files.rcsb.org/download/6raw.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6raw.pdb.gz\n", "Downloading https://files.rcsb.org/download/6rax.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6rax.pdb.gz\n", "Downloading https://files.rcsb.org/download/6ray.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6ray.pdb.gz\n", "Downloading https://files.rcsb.org/download/6raz.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6raz.pdb.gz\n", "Downloading https://files.rcsb.org/download/6skl.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6skl.pdb.gz\n", "Failed to download https://files.rcsb.org/download/6skl.pdb.gz\n", "Downloading https://files.rcsb.org/download/6sko.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6sko.pdb.gz\n", "Downloading https://files.rcsb.org/download/6wgf.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6wgf.pdb.gz\n", "Downloading https://files.rcsb.org/download/6xtx.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6xtx.pdb.gz\n", "Downloading https://files.rcsb.org/download/6xty.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6xty.pdb.gz\n", "Downloading https://files.rcsb.org/download/6jcx.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6jcx.pdb.gz\n", "Downloading https://files.rcsb.org/download/6kon.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6kon.pdb.gz\n", "Downloading https://files.rcsb.org/download/6koo.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6koo.pdb.gz\n", "Downloading https://files.rcsb.org/download/6kop.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6kop.pdb.gz\n", "Downloading https://files.rcsb.org/download/6koq.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6koq.pdb.gz\n", "Downloading https://files.rcsb.org/download/6tye.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6tye.pdb.gz\n", "Downloading https://files.rcsb.org/download/6tyf.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6tyf.pdb.gz\n", "Downloading https://files.rcsb.org/download/6tyg.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6tyg.pdb.gz\n", "Downloading https://files.rcsb.org/download/6vvs.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6vvs.pdb.gz\n", "Downloading https://files.rcsb.org/download/6vvt.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6vvt.pdb.gz\n", "Downloading https://files.rcsb.org/download/6vvv.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6vvv.pdb.gz\n", "Downloading https://files.rcsb.org/download/6vvx.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6vvx.pdb.gz\n", "Downloading https://files.rcsb.org/download/6vvy.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6vvy.pdb.gz\n", "Downloading https://files.rcsb.org/download/6vvz.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6vvz.pdb.gz\n", "Downloading https://files.rcsb.org/download/6vw0.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6vw0.pdb.gz\n", "Downloading https://files.rcsb.org/download/6z11.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6z11.pdb.gz\n", "Downloading https://files.rcsb.org/download/7kin.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7kin.pdb.gz\n", "Downloading https://files.rcsb.org/download/5tw1.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5tw1.pdb.gz\n", "Downloading https://files.rcsb.org/download/5uh5.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5uh5.pdb.gz\n", "Downloading https://files.rcsb.org/download/5uh6.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5uh6.pdb.gz\n", "Downloading https://files.rcsb.org/download/5uh8.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5uh8.pdb.gz\n", "Downloading https://files.rcsb.org/download/5uh9.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5uh9.pdb.gz\n", "Downloading https://files.rcsb.org/download/5uha.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5uha.pdb.gz\n", "Downloading https://files.rcsb.org/download/5uhb.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5uhb.pdb.gz\n", "Downloading https://files.rcsb.org/download/5uhc.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5uhc.pdb.gz\n", "Downloading https://files.rcsb.org/download/5uhd.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5uhd.pdb.gz\n", "Downloading https://files.rcsb.org/download/5uhe.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5uhe.pdb.gz\n", "Downloading https://files.rcsb.org/download/5uhf.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5uhf.pdb.gz\n", "Downloading https://files.rcsb.org/download/5uhg.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5uhg.pdb.gz\n", "Downloading https://files.rcsb.org/download/5vi5.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5vi5.pdb.gz\n", "Downloading https://files.rcsb.org/download/5vi8.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5vi8.pdb.gz\n", "Downloading https://files.rcsb.org/download/6cce.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6cce.pdb.gz\n", "Downloading https://files.rcsb.org/download/6ccv.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6ccv.pdb.gz\n", "Downloading https://files.rcsb.org/download/6dcf.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6dcf.pdb.gz\n", "Downloading https://files.rcsb.org/download/6dv9.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6dv9.pdb.gz\n", "Downloading https://files.rcsb.org/download/6dvb.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6dvb.pdb.gz\n", "Downloading https://files.rcsb.org/download/6dvc.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6dvc.pdb.gz\n", "Downloading https://files.rcsb.org/download/6dvd.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6dvd.pdb.gz\n", "Downloading https://files.rcsb.org/download/6dve.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6dve.pdb.gz\n", "Downloading https://files.rcsb.org/download/6eyd.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6eyd.pdb.gz\n", "Downloading https://files.rcsb.org/download/6f6w.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6f6w.pdb.gz\n", "Downloading https://files.rcsb.org/download/6fbv.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6fbv.pdb.gz\n", "Downloading https://files.rcsb.org/download/6yxu.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6yxu.pdb.gz\n", "Downloading https://files.rcsb.org/download/6yys.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6yys.pdb.gz\n", "Downloading https://files.rcsb.org/download/4jk1.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4jk1.pdb.gz\n", "Downloading https://files.rcsb.org/download/4jk2.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4jk2.pdb.gz\n", "Downloading https://files.rcsb.org/download/4jkr.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4jkr.pdb.gz\n", "Downloading https://files.rcsb.org/download/4kmu.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4kmu.pdb.gz\n", "Downloading https://files.rcsb.org/download/4kn4.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4kn4.pdb.gz\n", "Downloading https://files.rcsb.org/download/4kn7.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4kn7.pdb.gz\n", "Downloading https://files.rcsb.org/download/4mex.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4mex.pdb.gz\n", "Downloading https://files.rcsb.org/download/4mey.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4mey.pdb.gz\n", "Downloading https://files.rcsb.org/download/4s20.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4s20.pdb.gz\n", "Downloading https://files.rcsb.org/download/4yfk.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4yfk.pdb.gz\n", "Downloading https://files.rcsb.org/download/4yfn.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4yfn.pdb.gz\n", "Downloading https://files.rcsb.org/download/4yfx.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4yfx.pdb.gz\n", "Downloading https://files.rcsb.org/download/4yg2.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4yg2.pdb.gz\n", "Downloading https://files.rcsb.org/download/4zh2.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4zh2.pdb.gz\n", "Downloading https://files.rcsb.org/download/4zh3.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4zh3.pdb.gz\n", "Downloading https://files.rcsb.org/download/4zh4.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4zh4.pdb.gz\n", "Downloading https://files.rcsb.org/download/5nsr.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5nsr.pdb.gz\n", "Downloading https://files.rcsb.org/download/5nss.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5nss.pdb.gz\n", "Downloading https://files.rcsb.org/download/5nwt.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5nwt.pdb.gz\n", "Downloading https://files.rcsb.org/download/5uac.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5uac.pdb.gz\n", "Downloading https://files.rcsb.org/download/5uag.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5uag.pdb.gz\n", "Downloading https://files.rcsb.org/download/5uah.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5uah.pdb.gz\n", "Downloading https://files.rcsb.org/download/5uaj.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5uaj.pdb.gz\n", "Downloading https://files.rcsb.org/download/5ual.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5ual.pdb.gz\n", "Downloading https://files.rcsb.org/download/5uaq.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5uaq.pdb.gz\n", "Downloading https://files.rcsb.org/download/5ui8.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5ui8.pdb.gz\n", "Downloading https://files.rcsb.org/download/5vsw.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5vsw.pdb.gz\n", "Downloading https://files.rcsb.org/download/5w1s.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5w1s.pdb.gz\n", "Downloading https://files.rcsb.org/download/5w1t.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5w1t.pdb.gz\n", "Downloading https://files.rcsb.org/download/5zx2.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5zx2.pdb.gz\n", "Downloading https://files.rcsb.org/download/5zx3.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5zx3.pdb.gz\n", "Downloading https://files.rcsb.org/download/6b6h.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6b6h.pdb.gz\n", "Downloading https://files.rcsb.org/download/6byu.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6byu.pdb.gz\n", "Downloading https://files.rcsb.org/download/6bzo.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6bzo.pdb.gz\n", "Downloading https://files.rcsb.org/download/6c04.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6c04.pdb.gz\n", "Downloading https://files.rcsb.org/download/6c05.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6c05.pdb.gz\n", "Downloading https://files.rcsb.org/download/6c06.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6c06.pdb.gz\n", "Downloading https://files.rcsb.org/download/6c9y.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6c9y.pdb.gz\n", "Downloading https://files.rcsb.org/download/6ca0.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6ca0.pdb.gz\n", "Downloading https://files.rcsb.org/download/6cux.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6cux.pdb.gz\n", "Downloading https://files.rcsb.org/download/6edt.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6edt.pdb.gz\n", "Downloading https://files.rcsb.org/download/6ee8.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6ee8.pdb.gz\n", "Downloading https://files.rcsb.org/download/6eec.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6eec.pdb.gz\n", "Downloading https://files.rcsb.org/download/6flp.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6flp.pdb.gz\n", "Downloading https://files.rcsb.org/download/6flq.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6flq.pdb.gz\n", "Downloading https://files.rcsb.org/download/6gfw.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6gfw.pdb.gz\n", "Downloading https://files.rcsb.org/download/6gh5.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6gh5.pdb.gz\n", "Downloading https://files.rcsb.org/download/6gh6.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6gh6.pdb.gz\n", "Downloading https://files.rcsb.org/download/6gov.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6gov.pdb.gz\n", "Downloading https://files.rcsb.org/download/6j9e.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6j9e.pdb.gz\n", "Downloading https://files.rcsb.org/download/6j9f.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6j9f.pdb.gz\n", "Downloading https://files.rcsb.org/download/6jbq.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6jbq.pdb.gz\n", "Downloading https://files.rcsb.org/download/6jcy.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6jcy.pdb.gz\n", "Downloading https://files.rcsb.org/download/6jnx.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6jnx.pdb.gz\n", "Downloading https://files.rcsb.org/download/6k4y.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6k4y.pdb.gz\n", "Downloading https://files.rcsb.org/download/6kj6.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6kj6.pdb.gz\n", "Downloading https://files.rcsb.org/download/6ldi.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6ldi.pdb.gz\n", "Downloading https://files.rcsb.org/download/6m7j.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6m7j.pdb.gz\n", "Downloading https://files.rcsb.org/download/6n4c.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6n4c.pdb.gz\n", "Downloading https://files.rcsb.org/download/6n57.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6n57.pdb.gz\n", "Downloading https://files.rcsb.org/download/6n58.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6n58.pdb.gz\n", "Downloading https://files.rcsb.org/download/6oul.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6oul.pdb.gz\n", "Downloading https://files.rcsb.org/download/6p18.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6p18.pdb.gz\n", "Downloading https://files.rcsb.org/download/6p19.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6p19.pdb.gz\n", "Downloading https://files.rcsb.org/download/6p1k.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6p1k.pdb.gz\n", "Downloading https://files.rcsb.org/download/6pb4.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6pb4.pdb.gz\n", "Downloading https://files.rcsb.org/download/6pb5.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6pb5.pdb.gz\n", "Downloading https://files.rcsb.org/download/6pb6.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6pb6.pdb.gz\n", "Downloading https://files.rcsb.org/download/6pmi.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6pmi.pdb.gz\n", "Downloading https://files.rcsb.org/download/6pmj.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6pmj.pdb.gz\n", "Downloading https://files.rcsb.org/download/6psq.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6psq.pdb.gz\n", "Downloading https://files.rcsb.org/download/6psr.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6psr.pdb.gz\n", "Downloading https://files.rcsb.org/download/6pss.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6pss.pdb.gz\n", "Downloading https://files.rcsb.org/download/6pst.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6pst.pdb.gz\n", "Downloading https://files.rcsb.org/download/6psu.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6psu.pdb.gz\n", "Downloading https://files.rcsb.org/download/6psv.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6psv.pdb.gz\n", "Downloading https://files.rcsb.org/download/6psw.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6psw.pdb.gz\n", "Downloading https://files.rcsb.org/download/6r9b.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6r9b.pdb.gz\n", "Downloading https://files.rcsb.org/download/6r9g.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6r9g.pdb.gz\n", "Downloading https://files.rcsb.org/download/6rh3.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6rh3.pdb.gz\n", "Downloading https://files.rcsb.org/download/6ri7.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6ri7.pdb.gz\n", "Downloading https://files.rcsb.org/download/6ri9.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6ri9.pdb.gz\n", "Downloading https://files.rcsb.org/download/6rin.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6rin.pdb.gz\n", "Downloading https://files.rcsb.org/download/6rip.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6rip.pdb.gz\n", "Downloading https://files.rcsb.org/download/6tqn.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6tqn.pdb.gz\n", "Downloading https://files.rcsb.org/download/6tqo.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6tqo.pdb.gz\n", "Downloading https://files.rcsb.org/download/6vjs.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6vjs.pdb.gz\n", "Downloading https://files.rcsb.org/download/6wmu.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6wmu.pdb.gz\n", "Downloading https://files.rcsb.org/download/6wvj.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6wvj.pdb.gz\n", "Downloading https://files.rcsb.org/download/6wvk.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6wvk.pdb.gz\n", "Downloading https://files.rcsb.org/download/6x26.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6x26.pdb.gz\n", "Downloading https://files.rcsb.org/download/6x2f.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6x2f.pdb.gz\n", "Downloading https://files.rcsb.org/download/6x2n.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6x2n.pdb.gz\n", "Downloading https://files.rcsb.org/download/6x43.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6x43.pdb.gz\n", "Downloading https://files.rcsb.org/download/6x4w.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6x4w.pdb.gz\n", "Downloading https://files.rcsb.org/download/6x4y.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6x4y.pdb.gz\n", "Downloading https://files.rcsb.org/download/6x50.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6x50.pdb.gz\n", "Downloading https://files.rcsb.org/download/6xas.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6xas.pdb.gz\n", "Downloading https://files.rcsb.org/download/6xav.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6xav.pdb.gz\n", "Downloading https://files.rcsb.org/download/6xll.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6xll.pdb.gz\n", "Downloading https://files.rcsb.org/download/6xlm.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6xlm.pdb.gz\n", "Downloading https://files.rcsb.org/download/6z9p.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6z9p.pdb.gz\n", "Downloading https://files.rcsb.org/download/6z9q.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6z9q.pdb.gz\n", "Downloading https://files.rcsb.org/download/6z9r.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6z9r.pdb.gz\n", "Downloading https://files.rcsb.org/download/6z9s.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6z9s.pdb.gz\n", "Downloading https://files.rcsb.org/download/6z9t.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6z9t.pdb.gz\n", "Downloading https://files.rcsb.org/download/6zca.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6zca.pdb.gz\n", "Downloading https://files.rcsb.org/download/6zfb.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6zfb.pdb.gz\n", "Downloading https://files.rcsb.org/download/7adb.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7adb.pdb.gz\n", "Downloading https://files.rcsb.org/download/7adc.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7adc.pdb.gz\n", "Downloading https://files.rcsb.org/download/7add.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7add.pdb.gz\n", "Downloading https://files.rcsb.org/download/7ade.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7ade.pdb.gz\n", "Downloading https://files.rcsb.org/download/7c17.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7c17.pdb.gz\n", "Downloading https://files.rcsb.org/download/7c97.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7c97.pdb.gz\n", "Downloading https://files.rcsb.org/download/7chw.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7chw.pdb.gz\n", "Downloading https://files.rcsb.org/download/7ckq.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7ckq.pdb.gz\n", "Downloading https://files.rcsb.org/download/7d7c.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7d7c.pdb.gz\n", "Downloading https://files.rcsb.org/download/7d7d.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7d7d.pdb.gz\n", "Downloading https://files.rcsb.org/download/7khb.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7khb.pdb.gz\n", "Downloading https://files.rcsb.org/download/7khc.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7khc.pdb.gz\n", "Downloading https://files.rcsb.org/download/7mkd.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7mkd.pdb.gz\n", "Downloading https://files.rcsb.org/download/7mke.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7mke.pdb.gz\n", "Downloading https://files.rcsb.org/download/7mki.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7mki.pdb.gz\n", "Downloading https://files.rcsb.org/download/7mkj.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7mkj.pdb.gz\n", "Downloading https://files.rcsb.org/download/3iyd.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3iyd.pdb.gz\n", "Downloading https://files.rcsb.org/download/5ms0.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5ms0.pdb.gz\n", "Downloading https://files.rcsb.org/download/6utv.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6utv.pdb.gz\n", "Failed to download https://files.rcsb.org/download/6utv.pdb.gz\n", "Downloading https://files.rcsb.org/download/6utw.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6utw.pdb.gz\n", "Failed to download https://files.rcsb.org/download/6utw.pdb.gz\n", "Downloading https://files.rcsb.org/download/6utx.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6utx.pdb.gz\n", "Failed to download https://files.rcsb.org/download/6utx.pdb.gz\n", "Downloading https://files.rcsb.org/download/6uty.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6uty.pdb.gz\n", "Failed to download https://files.rcsb.org/download/6uty.pdb.gz\n", "Downloading https://files.rcsb.org/download/6utz.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6utz.pdb.gz\n", "Failed to download https://files.rcsb.org/download/6utz.pdb.gz\n", "Downloading https://files.rcsb.org/download/6uu0.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6uu0.pdb.gz\n", "Failed to download https://files.rcsb.org/download/6uu0.pdb.gz\n", "Downloading https://files.rcsb.org/download/6uu1.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6uu1.pdb.gz\n", "Failed to download https://files.rcsb.org/download/6uu1.pdb.gz\n", "Downloading https://files.rcsb.org/download/6uu2.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6uu2.pdb.gz\n", "Failed to download https://files.rcsb.org/download/6uu2.pdb.gz\n", "Downloading https://files.rcsb.org/download/6uu3.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6uu3.pdb.gz\n", "Failed to download https://files.rcsb.org/download/6uu3.pdb.gz\n", "Downloading https://files.rcsb.org/download/6uu4.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6uu4.pdb.gz\n", "Failed to download https://files.rcsb.org/download/6uu4.pdb.gz\n", "Downloading https://files.rcsb.org/download/6uu5.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6uu5.pdb.gz\n", "Failed to download https://files.rcsb.org/download/6uu5.pdb.gz\n", "Downloading https://files.rcsb.org/download/6uu6.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6uu6.pdb.gz\n", "Failed to download https://files.rcsb.org/download/6uu6.pdb.gz\n", "Downloading https://files.rcsb.org/download/6uu7.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6uu7.pdb.gz\n", "Failed to download https://files.rcsb.org/download/6uu7.pdb.gz\n", "Downloading https://files.rcsb.org/download/6uu8.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6uu8.pdb.gz\n", "Failed to download https://files.rcsb.org/download/6uu8.pdb.gz\n", "Downloading https://files.rcsb.org/download/6uu9.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6uu9.pdb.gz\n", "Failed to download https://files.rcsb.org/download/6uu9.pdb.gz\n", "Downloading https://files.rcsb.org/download/6uua.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6uua.pdb.gz\n", "Failed to download https://files.rcsb.org/download/6uua.pdb.gz\n", "Downloading https://files.rcsb.org/download/6uub.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6uub.pdb.gz\n", "Failed to download https://files.rcsb.org/download/6uub.pdb.gz\n", "Downloading https://files.rcsb.org/download/6uuc.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6uuc.pdb.gz\n", "Failed to download https://files.rcsb.org/download/6uuc.pdb.gz\n", "Downloading https://files.rcsb.org/download/7khe.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7khe.pdb.gz\n", "Downloading https://files.rcsb.org/download/7khi.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7khi.pdb.gz\n", "Downloading https://files.rcsb.org/download/2x7n.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/2x7n.pdb.gz\n", "Downloading https://files.rcsb.org/download/5z3g.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5z3g.pdb.gz\n", "Downloading https://files.rcsb.org/download/7bhp.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7bhp.pdb.gz\n", "Failed to download https://files.rcsb.org/download/7bhp.pdb.gz\n", "Downloading https://files.rcsb.org/download/4v7f.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4v7f.pdb.gz\n", "Downloading https://files.rcsb.org/download/5fl8.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5fl8.pdb.gz\n", "Failed to download https://files.rcsb.org/download/5fl8.pdb.gz\n", "Downloading https://files.rcsb.org/download/5jcs.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5jcs.pdb.gz\n", "Failed to download https://files.rcsb.org/download/5jcs.pdb.gz\n", "Downloading https://files.rcsb.org/download/6em3.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6em3.pdb.gz\n", "Downloading https://files.rcsb.org/download/6em4.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6em4.pdb.gz\n", "Downloading https://files.rcsb.org/download/6em5.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6em5.pdb.gz\n", "Downloading https://files.rcsb.org/download/4v7r.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4v7r.pdb.gz\n", "Failed to download https://files.rcsb.org/download/4v7r.pdb.gz\n", "Downloading https://files.rcsb.org/download/1ffk.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1ffk.pdb.gz\n", "Downloading https://files.rcsb.org/download/4v88.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4v88.pdb.gz\n", "Failed to download https://files.rcsb.org/download/4v88.pdb.gz\n", "Downloading https://files.rcsb.org/download/5dge.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5dge.pdb.gz\n", "Failed to download https://files.rcsb.org/download/5dge.pdb.gz\n", "Downloading https://files.rcsb.org/download/5tgm.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5tgm.pdb.gz\n", "Failed to download https://files.rcsb.org/download/5tgm.pdb.gz\n", "Downloading https://files.rcsb.org/download/6nd4.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6nd4.pdb.gz\n", "Downloading https://files.rcsb.org/download/4x62.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4x62.pdb.gz\n", "Downloading https://files.rcsb.org/download/4x64.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4x64.pdb.gz\n", "Downloading https://files.rcsb.org/download/4x65.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4x65.pdb.gz\n", "Downloading https://files.rcsb.org/download/4x66.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4x66.pdb.gz\n", "Downloading https://files.rcsb.org/download/5wnp.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5wnp.pdb.gz\n", "Downloading https://files.rcsb.org/download/5wnq.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5wnq.pdb.gz\n", "Downloading https://files.rcsb.org/download/5wnr.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5wnr.pdb.gz\n", "Downloading https://files.rcsb.org/download/5wns.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5wns.pdb.gz\n", "Downloading https://files.rcsb.org/download/5wnt.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5wnt.pdb.gz\n", "Downloading https://files.rcsb.org/download/5wnu.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5wnu.pdb.gz\n", "Downloading https://files.rcsb.org/download/5wnv.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5wnv.pdb.gz\n", "Downloading https://files.rcsb.org/download/6cap.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6cap.pdb.gz\n", "Downloading https://files.rcsb.org/download/6g51.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6g51.pdb.gz\n", "Downloading https://files.rcsb.org/download/6g53.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6g53.pdb.gz\n", "Downloading https://files.rcsb.org/download/6ybw.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6ybw.pdb.gz\n", "Downloading https://files.rcsb.org/download/6zok.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6zok.pdb.gz\n", "Downloading https://files.rcsb.org/download/3j0l.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3j0l.pdb.gz\n", "Downloading https://files.rcsb.org/download/3j0o.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3j0o.pdb.gz\n", "Downloading https://files.rcsb.org/download/3j0p.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3j0p.pdb.gz\n", "Downloading https://files.rcsb.org/download/3j0q.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3j0q.pdb.gz\n", "Downloading https://files.rcsb.org/download/6ybd.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6ybd.pdb.gz\n", "Downloading https://files.rcsb.org/download/6ek0.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6ek0.pdb.gz\n", "Failed to download https://files.rcsb.org/download/6ek0.pdb.gz\n", "Downloading https://files.rcsb.org/download/6gsn.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6gsn.pdb.gz\n", "Failed to download https://files.rcsb.org/download/6gsn.pdb.gz\n", "Downloading https://files.rcsb.org/download/6qzp.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6qzp.pdb.gz\n", "Failed to download https://files.rcsb.org/download/6qzp.pdb.gz\n", "Downloading https://files.rcsb.org/download/6g4s.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6g4s.pdb.gz\n", "Downloading https://files.rcsb.org/download/6g4w.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6g4w.pdb.gz\n", "Downloading https://files.rcsb.org/download/6zqf.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6zqf.pdb.gz\n", "Failed to download https://files.rcsb.org/download/6zqf.pdb.gz\n", "Downloading https://files.rcsb.org/download/5jpq.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5jpq.pdb.gz\n", "Downloading https://files.rcsb.org/download/6gsm.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6gsm.pdb.gz\n", "Failed to download https://files.rcsb.org/download/6gsm.pdb.gz\n", "Downloading https://files.rcsb.org/download/4m5d.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4m5d.pdb.gz\n", "Downloading https://files.rcsb.org/download/2wp8.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/2wp8.pdb.gz\n", "Downloading https://files.rcsb.org/download/4ifd.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4ifd.pdb.gz\n", "Downloading https://files.rcsb.org/download/5c0w.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5c0w.pdb.gz\n", "Downloading https://files.rcsb.org/download/5c0x.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5c0x.pdb.gz\n", "Downloading https://files.rcsb.org/download/5g06.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5g06.pdb.gz\n", "Downloading https://files.rcsb.org/download/5jea.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5jea.pdb.gz\n", "Downloading https://files.rcsb.org/download/5k36.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5k36.pdb.gz\n", "Downloading https://files.rcsb.org/download/5vzj.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5vzj.pdb.gz\n", "Downloading https://files.rcsb.org/download/6d6q.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6d6q.pdb.gz\n", "Downloading https://files.rcsb.org/download/6d6r.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6d6r.pdb.gz\n", "Downloading https://files.rcsb.org/download/6fsz.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6fsz.pdb.gz\n", "Failed to download https://files.rcsb.org/download/6fsz.pdb.gz\n", "Downloading https://files.rcsb.org/download/6h25.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6h25.pdb.gz\n", "Downloading https://files.rcsb.org/download/2nn6.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/2nn6.pdb.gz\n", "Downloading https://files.rcsb.org/download/4oo1.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4oo1.pdb.gz\n", "Downloading https://files.rcsb.org/download/5okz.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5okz.pdb.gz\n", "Downloading https://files.rcsb.org/download/1l7v.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1l7v.pdb.gz\n", "Downloading https://files.rcsb.org/download/2nq2.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/2nq2.pdb.gz\n", "Downloading https://files.rcsb.org/download/2qi9.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/2qi9.pdb.gz\n", "Downloading https://files.rcsb.org/download/4dbl.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4dbl.pdb.gz\n", "Downloading https://files.rcsb.org/download/4fi3.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4fi3.pdb.gz\n", "Downloading https://files.rcsb.org/download/4r9u.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4r9u.pdb.gz\n", "Downloading https://files.rcsb.org/download/5b57.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5b57.pdb.gz\n", "Downloading https://files.rcsb.org/download/5b58.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5b58.pdb.gz\n", "Downloading https://files.rcsb.org/download/6xbd.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6xbd.pdb.gz\n", "Downloading https://files.rcsb.org/download/6xgy.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6xgy.pdb.gz\n", "Downloading https://files.rcsb.org/download/6xgz.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6xgz.pdb.gz\n", "Downloading https://files.rcsb.org/download/6zy2.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6zy2.pdb.gz\n", "Downloading https://files.rcsb.org/download/6zy3.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6zy3.pdb.gz\n", "Downloading https://files.rcsb.org/download/6zy4.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6zy4.pdb.gz\n", "Downloading https://files.rcsb.org/download/6zy9.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6zy9.pdb.gz\n", "Downloading https://files.rcsb.org/download/7cge.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7cge.pdb.gz\n", "Downloading https://files.rcsb.org/download/7cgn.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7cgn.pdb.gz\n", "Downloading https://files.rcsb.org/download/7ch0.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7ch0.pdb.gz\n", "Downloading https://files.rcsb.org/download/7ch8.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7ch8.pdb.gz\n", "Downloading https://files.rcsb.org/download/7ch9.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7ch9.pdb.gz\n", "Downloading https://files.rcsb.org/download/7cha.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7cha.pdb.gz\n", "Downloading https://files.rcsb.org/download/6z5u.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6z5u.pdb.gz\n", "Downloading https://files.rcsb.org/download/7d06.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7d06.pdb.gz\n", "Downloading https://files.rcsb.org/download/7d08.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7d08.pdb.gz\n", "Downloading https://files.rcsb.org/download/7d09.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7d09.pdb.gz\n", "Downloading https://files.rcsb.org/download/7d0a.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7d0a.pdb.gz\n", "Downloading https://files.rcsb.org/download/5l75.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5l75.pdb.gz\n", "Downloading https://files.rcsb.org/download/5x5y.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5x5y.pdb.gz\n", "Downloading https://files.rcsb.org/download/6mhu.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6mhu.pdb.gz\n", "Downloading https://files.rcsb.org/download/6mi7.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6mi7.pdb.gz\n", "Downloading https://files.rcsb.org/download/6mit.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6mit.pdb.gz\n", "Downloading https://files.rcsb.org/download/6mjp.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6mjp.pdb.gz\n", "Downloading https://files.rcsb.org/download/6s8h.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6s8h.pdb.gz\n", "Downloading https://files.rcsb.org/download/6s8n.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6s8n.pdb.gz\n", "Downloading https://files.rcsb.org/download/6mhz.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6mhz.pdb.gz\n", "Downloading https://files.rcsb.org/download/6mi8.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6mi8.pdb.gz\n", "Downloading https://files.rcsb.org/download/6s8g.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6s8g.pdb.gz\n", "Downloading https://files.rcsb.org/download/5ng5.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5ng5.pdb.gz\n", "Downloading https://files.rcsb.org/download/5nik.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5nik.pdb.gz\n", "Downloading https://files.rcsb.org/download/5nil.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5nil.pdb.gz\n", "Downloading https://files.rcsb.org/download/5o66.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5o66.pdb.gz\n", "Downloading https://files.rcsb.org/download/6iok.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6iok.pdb.gz\n", "Downloading https://files.rcsb.org/download/6iol.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6iol.pdb.gz\n", "Downloading https://files.rcsb.org/download/6ta5.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6ta5.pdb.gz\n", "Downloading https://files.rcsb.org/download/6ta6.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6ta6.pdb.gz\n", "Downloading https://files.rcsb.org/download/2r6g.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/2r6g.pdb.gz\n", "Downloading https://files.rcsb.org/download/3d31.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3d31.pdb.gz\n", "Downloading https://files.rcsb.org/download/3fh6.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3fh6.pdb.gz\n", "Downloading https://files.rcsb.org/download/3puv.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3puv.pdb.gz\n", "Downloading https://files.rcsb.org/download/3puw.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3puw.pdb.gz\n", "Downloading https://files.rcsb.org/download/3pux.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3pux.pdb.gz\n", "Downloading https://files.rcsb.org/download/3puy.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3puy.pdb.gz\n", "Downloading https://files.rcsb.org/download/3puz.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3puz.pdb.gz\n", "Downloading https://files.rcsb.org/download/3pv0.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3pv0.pdb.gz\n", "Downloading https://files.rcsb.org/download/3rlf.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3rlf.pdb.gz\n", "Downloading https://files.rcsb.org/download/4jbw.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4jbw.pdb.gz\n", "Downloading https://files.rcsb.org/download/4khz.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4khz.pdb.gz\n", "Downloading https://files.rcsb.org/download/4ki0.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4ki0.pdb.gz\n", "Downloading https://files.rcsb.org/download/4tqu.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4tqu.pdb.gz\n", "Downloading https://files.rcsb.org/download/4tqv.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4tqv.pdb.gz\n", "Downloading https://files.rcsb.org/download/4xig.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4xig.pdb.gz\n", "Downloading https://files.rcsb.org/download/4xtc.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4xtc.pdb.gz\n", "Downloading https://files.rcsb.org/download/3d85.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3d85.pdb.gz\n", "Downloading https://files.rcsb.org/download/3d87.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3d87.pdb.gz\n", "Downloading https://files.rcsb.org/download/3duh.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3duh.pdb.gz\n", "Downloading https://files.rcsb.org/download/3qwr.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3qwr.pdb.gz\n", "Downloading https://files.rcsb.org/download/4grw.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4grw.pdb.gz\n", "Downloading https://files.rcsb.org/download/5mj3.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5mj3.pdb.gz\n", "Downloading https://files.rcsb.org/download/5mj4.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5mj4.pdb.gz\n", "Downloading https://files.rcsb.org/download/5mxa.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5mxa.pdb.gz\n", "Downloading https://files.rcsb.org/download/5mzv.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5mzv.pdb.gz\n", "Downloading https://files.rcsb.org/download/5njd.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5njd.pdb.gz\n", "Downloading https://files.rcsb.org/download/6uib.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6uib.pdb.gz\n", "Downloading https://files.rcsb.org/download/1v4w.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1v4w.pdb.gz\n", "Downloading https://files.rcsb.org/download/1x9f.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1x9f.pdb.gz\n", "Downloading https://files.rcsb.org/download/1yhu.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1yhu.pdb.gz\n", "Downloading https://files.rcsb.org/download/2d2m.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/2d2m.pdb.gz\n", "Downloading https://files.rcsb.org/download/2d2n.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/2d2n.pdb.gz\n", "Downloading https://files.rcsb.org/download/2gtl.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/2gtl.pdb.gz\n", "Downloading https://files.rcsb.org/download/2zfo.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/2zfo.pdb.gz\n", "Downloading https://files.rcsb.org/download/2zs0.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/2zs0.pdb.gz\n", "Downloading https://files.rcsb.org/download/2zs1.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/2zs1.pdb.gz\n", "Downloading https://files.rcsb.org/download/3wct.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3wct.pdb.gz\n", "Downloading https://files.rcsb.org/download/3wcu.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3wcu.pdb.gz\n", "Downloading https://files.rcsb.org/download/3wcv.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3wcv.pdb.gz\n", "Downloading https://files.rcsb.org/download/3wcw.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3wcw.pdb.gz\n", "Downloading https://files.rcsb.org/download/4u8u.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4u8u.pdb.gz\n", "Downloading https://files.rcsb.org/download/4v93.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4v93.pdb.gz\n", "Failed to download https://files.rcsb.org/download/4v93.pdb.gz\n", "Downloading https://files.rcsb.org/download/5m3l.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5m3l.pdb.gz\n", "Downloading https://files.rcsb.org/download/7e96.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7e96.pdb.gz\n", "Downloading https://files.rcsb.org/download/7e97.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7e97.pdb.gz\n", "Downloading https://files.rcsb.org/download/7e98.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7e98.pdb.gz\n", "Downloading https://files.rcsb.org/download/7e99.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7e99.pdb.gz\n", "Downloading https://files.rcsb.org/download/1bmf.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1bmf.pdb.gz\n", "Downloading https://files.rcsb.org/download/1cow.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1cow.pdb.gz\n", "Downloading https://files.rcsb.org/download/1e1q.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1e1q.pdb.gz\n", "Downloading https://files.rcsb.org/download/1e1r.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1e1r.pdb.gz\n", "Downloading https://files.rcsb.org/download/1e79.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1e79.pdb.gz\n", "Downloading https://files.rcsb.org/download/1efr.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1efr.pdb.gz\n", "Downloading https://files.rcsb.org/download/1h8e.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1h8e.pdb.gz\n", "Downloading https://files.rcsb.org/download/1h8h.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1h8h.pdb.gz\n", "Downloading https://files.rcsb.org/download/1mab.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1mab.pdb.gz\n", "Downloading https://files.rcsb.org/download/1nbm.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1nbm.pdb.gz\n", "Downloading https://files.rcsb.org/download/1ohh.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1ohh.pdb.gz\n", "Downloading https://files.rcsb.org/download/1w0j.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1w0j.pdb.gz\n", "Downloading https://files.rcsb.org/download/1w0k.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1w0k.pdb.gz\n", "Downloading https://files.rcsb.org/download/2ck3.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/2ck3.pdb.gz\n", "Downloading https://files.rcsb.org/download/2f43.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/2f43.pdb.gz\n", "Downloading https://files.rcsb.org/download/2hld.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/2hld.pdb.gz\n", "Downloading https://files.rcsb.org/download/2jdi.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/2jdi.pdb.gz\n", "Downloading https://files.rcsb.org/download/2jiz.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/2jiz.pdb.gz\n", "Downloading https://files.rcsb.org/download/2jj1.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/2jj1.pdb.gz\n", "Downloading https://files.rcsb.org/download/2jj2.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/2jj2.pdb.gz\n", "Downloading https://files.rcsb.org/download/2v7q.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/2v7q.pdb.gz\n", "Downloading https://files.rcsb.org/download/2w6e.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/2w6e.pdb.gz\n", "Downloading https://files.rcsb.org/download/2w6g.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/2w6g.pdb.gz\n", "Downloading https://files.rcsb.org/download/2w6h.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/2w6h.pdb.gz\n", "Downloading https://files.rcsb.org/download/2w6i.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/2w6i.pdb.gz\n", "Downloading https://files.rcsb.org/download/2w6j.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/2w6j.pdb.gz\n", "Downloading https://files.rcsb.org/download/2wpd.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/2wpd.pdb.gz\n", "Downloading https://files.rcsb.org/download/2wss.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/2wss.pdb.gz\n", "Downloading https://files.rcsb.org/download/2xnd.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/2xnd.pdb.gz\n", "Downloading https://files.rcsb.org/download/2xok.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/2xok.pdb.gz\n", "Downloading https://files.rcsb.org/download/3fks.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3fks.pdb.gz\n", "Downloading https://files.rcsb.org/download/3oaa.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3oaa.pdb.gz\n", "Downloading https://files.rcsb.org/download/3oe7.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3oe7.pdb.gz\n", "Downloading https://files.rcsb.org/download/3oee.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3oee.pdb.gz\n", "Downloading https://files.rcsb.org/download/3oeh.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3oeh.pdb.gz\n", "Downloading https://files.rcsb.org/download/3ofn.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3ofn.pdb.gz\n", "Downloading https://files.rcsb.org/download/3zia.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3zia.pdb.gz\n", "Downloading https://files.rcsb.org/download/3zry.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3zry.pdb.gz\n", "Downloading https://files.rcsb.org/download/4asu.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4asu.pdb.gz\n", "Downloading https://files.rcsb.org/download/4b2q.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4b2q.pdb.gz\n", "Downloading https://files.rcsb.org/download/4tsf.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4tsf.pdb.gz\n", "Downloading https://files.rcsb.org/download/4tt3.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4tt3.pdb.gz\n", "Downloading https://files.rcsb.org/download/4xd7.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4xd7.pdb.gz\n", "Downloading https://files.rcsb.org/download/4yxw.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4yxw.pdb.gz\n", "Downloading https://files.rcsb.org/download/4z1m.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4z1m.pdb.gz\n", "Downloading https://files.rcsb.org/download/5dn6.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5dn6.pdb.gz\n", "Downloading https://files.rcsb.org/download/5fl7.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5fl7.pdb.gz\n", "Downloading https://files.rcsb.org/download/5hkk.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5hkk.pdb.gz\n", "Downloading https://files.rcsb.org/download/5ik2.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5ik2.pdb.gz\n", "Downloading https://files.rcsb.org/download/6b8h.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6b8h.pdb.gz\n", "Downloading https://files.rcsb.org/download/6cp3.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6cp3.pdb.gz\n", "Downloading https://files.rcsb.org/download/6cp6.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6cp6.pdb.gz\n", "Downloading https://files.rcsb.org/download/6f5d.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6f5d.pdb.gz\n", "Downloading https://files.rcsb.org/download/6fkf.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6fkf.pdb.gz\n", "Downloading https://files.rcsb.org/download/6fkh.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6fkh.pdb.gz\n", "Downloading https://files.rcsb.org/download/6fki.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6fki.pdb.gz\n", "Downloading https://files.rcsb.org/download/6foc.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6foc.pdb.gz\n", "Downloading https://files.rcsb.org/download/6j5i.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6j5i.pdb.gz\n", "Downloading https://files.rcsb.org/download/6j5j.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6j5j.pdb.gz\n", "Downloading https://files.rcsb.org/download/6j5k.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6j5k.pdb.gz\n", "Failed to download https://files.rcsb.org/download/6j5k.pdb.gz\n", "Downloading https://files.rcsb.org/download/6n2y.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6n2y.pdb.gz\n", "Failed to download https://files.rcsb.org/download/6n2y.pdb.gz\n", "Downloading https://files.rcsb.org/download/6n2z.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6n2z.pdb.gz\n", "Failed to download https://files.rcsb.org/download/6n2z.pdb.gz\n", "Downloading https://files.rcsb.org/download/6n30.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6n30.pdb.gz\n", "Failed to download https://files.rcsb.org/download/6n30.pdb.gz\n", "Downloading https://files.rcsb.org/download/6oqr.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6oqr.pdb.gz\n", "Downloading https://files.rcsb.org/download/6oqs.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6oqs.pdb.gz\n", "Downloading https://files.rcsb.org/download/6oqt.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6oqt.pdb.gz\n", "Downloading https://files.rcsb.org/download/6oqu.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6oqu.pdb.gz\n", "Downloading https://files.rcsb.org/download/6oqv.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6oqv.pdb.gz\n", "Downloading https://files.rcsb.org/download/6oqw.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6oqw.pdb.gz\n", "Downloading https://files.rcsb.org/download/6pqv.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6pqv.pdb.gz\n", "Downloading https://files.rcsb.org/download/6q45.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6q45.pdb.gz\n", "Downloading https://files.rcsb.org/download/6rd4.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6rd4.pdb.gz\n", "Downloading https://files.rcsb.org/download/6rd9.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6rd9.pdb.gz\n", "Downloading https://files.rcsb.org/download/6rdb.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6rdb.pdb.gz\n", "Downloading https://files.rcsb.org/download/6rdc.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6rdc.pdb.gz\n", "Downloading https://files.rcsb.org/download/6rde.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6rde.pdb.gz\n", "Downloading https://files.rcsb.org/download/6rdg.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6rdg.pdb.gz\n", "Downloading https://files.rcsb.org/download/6rdh.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6rdh.pdb.gz\n", "Downloading https://files.rcsb.org/download/6rdi.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6rdi.pdb.gz\n", "Downloading https://files.rcsb.org/download/6rdj.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6rdj.pdb.gz\n", "Downloading https://files.rcsb.org/download/6rdk.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6rdk.pdb.gz\n", "Downloading https://files.rcsb.org/download/6rdl.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6rdl.pdb.gz\n", "Downloading https://files.rcsb.org/download/6rdm.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6rdm.pdb.gz\n", "Downloading https://files.rcsb.org/download/6rdn.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6rdn.pdb.gz\n", "Downloading https://files.rcsb.org/download/6rdo.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6rdo.pdb.gz\n", "Downloading https://files.rcsb.org/download/6rdp.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6rdp.pdb.gz\n", "Downloading https://files.rcsb.org/download/6rdq.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6rdq.pdb.gz\n", "Downloading https://files.rcsb.org/download/6rdr.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6rdr.pdb.gz\n", "Downloading https://files.rcsb.org/download/6rds.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6rds.pdb.gz\n", "Downloading https://files.rcsb.org/download/6rdt.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6rdt.pdb.gz\n", "Downloading https://files.rcsb.org/download/6rdu.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6rdu.pdb.gz\n", "Downloading https://files.rcsb.org/download/6rdv.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6rdv.pdb.gz\n", "Downloading https://files.rcsb.org/download/6rdw.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6rdw.pdb.gz\n", "Downloading https://files.rcsb.org/download/6rdx.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6rdx.pdb.gz\n", "Downloading https://files.rcsb.org/download/6rdy.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6rdy.pdb.gz\n", "Downloading https://files.rcsb.org/download/6rdz.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6rdz.pdb.gz\n", "Downloading https://files.rcsb.org/download/6re0.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6re0.pdb.gz\n", "Downloading https://files.rcsb.org/download/6re1.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6re1.pdb.gz\n", "Downloading https://files.rcsb.org/download/6re2.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6re2.pdb.gz\n", "Downloading https://files.rcsb.org/download/6re3.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6re3.pdb.gz\n", "Downloading https://files.rcsb.org/download/6re4.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6re4.pdb.gz\n", "Downloading https://files.rcsb.org/download/6re5.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6re5.pdb.gz\n", "Downloading https://files.rcsb.org/download/6re6.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6re6.pdb.gz\n", "Downloading https://files.rcsb.org/download/6re7.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6re7.pdb.gz\n", "Downloading https://files.rcsb.org/download/6re8.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6re8.pdb.gz\n", "Downloading https://files.rcsb.org/download/6re9.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6re9.pdb.gz\n", "Downloading https://files.rcsb.org/download/6rea.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6rea.pdb.gz\n", "Downloading https://files.rcsb.org/download/6reb.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6reb.pdb.gz\n", "Downloading https://files.rcsb.org/download/6rec.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6rec.pdb.gz\n", "Downloading https://files.rcsb.org/download/6red.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6red.pdb.gz\n", "Downloading https://files.rcsb.org/download/6ree.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6ree.pdb.gz\n", "Downloading https://files.rcsb.org/download/6ref.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6ref.pdb.gz\n", "Downloading https://files.rcsb.org/download/6rep.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6rep.pdb.gz\n", "Downloading https://files.rcsb.org/download/6rer.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6rer.pdb.gz\n", "Downloading https://files.rcsb.org/download/6res.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6res.pdb.gz\n", "Downloading https://files.rcsb.org/download/6ret.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6ret.pdb.gz\n", "Downloading https://files.rcsb.org/download/6reu.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6reu.pdb.gz\n", "Downloading https://files.rcsb.org/download/6tdu.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6tdu.pdb.gz\n", "Failed to download https://files.rcsb.org/download/6tdu.pdb.gz\n", "Downloading https://files.rcsb.org/download/6tdy.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6tdy.pdb.gz\n", "Downloading https://files.rcsb.org/download/6tdz.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6tdz.pdb.gz\n", "Downloading https://files.rcsb.org/download/6te0.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6te0.pdb.gz\n", "Downloading https://files.rcsb.org/download/6tmh.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6tmh.pdb.gz\n", "Downloading https://files.rcsb.org/download/6tmk.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6tmk.pdb.gz\n", "Failed to download https://files.rcsb.org/download/6tmk.pdb.gz\n", "Downloading https://files.rcsb.org/download/6tml.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6tml.pdb.gz\n", "Failed to download https://files.rcsb.org/download/6tml.pdb.gz\n", "Downloading https://files.rcsb.org/download/6tt7.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6tt7.pdb.gz\n", "Downloading https://files.rcsb.org/download/6vmb.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6vmb.pdb.gz\n", "Downloading https://files.rcsb.org/download/6vmd.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6vmd.pdb.gz\n", "Downloading https://files.rcsb.org/download/6vmg.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6vmg.pdb.gz\n", "Downloading https://files.rcsb.org/download/6vof.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6vof.pdb.gz\n", "Downloading https://files.rcsb.org/download/6vog.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6vog.pdb.gz\n", "Downloading https://files.rcsb.org/download/6voh.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6voh.pdb.gz\n", "Downloading https://files.rcsb.org/download/6voi.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6voi.pdb.gz\n", "Downloading https://files.rcsb.org/download/6voj.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6voj.pdb.gz\n", "Downloading https://files.rcsb.org/download/6vok.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6vok.pdb.gz\n", "Downloading https://files.rcsb.org/download/6vol.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6vol.pdb.gz\n", "Downloading https://files.rcsb.org/download/6vom.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6vom.pdb.gz\n", "Downloading https://files.rcsb.org/download/6von.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6von.pdb.gz\n", "Downloading https://files.rcsb.org/download/6voo.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6voo.pdb.gz\n", "Downloading https://files.rcsb.org/download/6wnq.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6wnq.pdb.gz\n", "Downloading https://files.rcsb.org/download/6wnr.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6wnr.pdb.gz\n", "Downloading https://files.rcsb.org/download/6yny.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6yny.pdb.gz\n", "Failed to download https://files.rcsb.org/download/6yny.pdb.gz\n", "Downloading https://files.rcsb.org/download/6ynz.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6ynz.pdb.gz\n", "Failed to download https://files.rcsb.org/download/6ynz.pdb.gz\n", "Downloading https://files.rcsb.org/download/6yo0.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6yo0.pdb.gz\n", "Failed to download https://files.rcsb.org/download/6yo0.pdb.gz\n", "Downloading https://files.rcsb.org/download/6yy0.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6yy0.pdb.gz\n", "Downloading https://files.rcsb.org/download/6z1r.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6z1r.pdb.gz\n", "Downloading https://files.rcsb.org/download/6z1u.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6z1u.pdb.gz\n", "Downloading https://files.rcsb.org/download/6zpo.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6zpo.pdb.gz\n", "Downloading https://files.rcsb.org/download/6zqm.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6zqm.pdb.gz\n", "Downloading https://files.rcsb.org/download/6zqn.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6zqn.pdb.gz\n", "Downloading https://files.rcsb.org/download/7jg5.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7jg5.pdb.gz\n", "Downloading https://files.rcsb.org/download/7jga.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7jga.pdb.gz\n", "Downloading https://files.rcsb.org/download/7njk.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7njk.pdb.gz\n", "Downloading https://files.rcsb.org/download/7njl.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7njl.pdb.gz\n", "Downloading https://files.rcsb.org/download/7njn.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7njn.pdb.gz\n", "Downloading https://files.rcsb.org/download/7njo.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7njo.pdb.gz\n", "Downloading https://files.rcsb.org/download/7njp.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7njp.pdb.gz\n", "Downloading https://files.rcsb.org/download/7njq.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7njq.pdb.gz\n", "Downloading https://files.rcsb.org/download/7njr.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7njr.pdb.gz\n", "Downloading https://files.rcsb.org/download/7njs.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7njs.pdb.gz\n", "Downloading https://files.rcsb.org/download/7nk7.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7nk7.pdb.gz\n", "Downloading https://files.rcsb.org/download/7nkh.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7nkh.pdb.gz\n", "Downloading https://files.rcsb.org/download/7nkj.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7nkj.pdb.gz\n", "Downloading https://files.rcsb.org/download/7jg6.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7jg6.pdb.gz\n", "Downloading https://files.rcsb.org/download/7jg7.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7jg7.pdb.gz\n", "Downloading https://files.rcsb.org/download/7jg8.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7jg8.pdb.gz\n", "Downloading https://files.rcsb.org/download/7jg9.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7jg9.pdb.gz\n", "Downloading https://files.rcsb.org/download/2qe7.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/2qe7.pdb.gz\n", "Downloading https://files.rcsb.org/download/6tdx.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6tdx.pdb.gz\n", "Downloading https://files.rcsb.org/download/6tmj.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6tmj.pdb.gz\n", "Failed to download https://files.rcsb.org/download/6tmj.pdb.gz\n", "Downloading https://files.rcsb.org/download/6zg7.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6zg7.pdb.gz\n", "Downloading https://files.rcsb.org/download/6zg8.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6zg8.pdb.gz\n", "Downloading https://files.rcsb.org/download/6zik.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6zik.pdb.gz\n", "Downloading https://files.rcsb.org/download/7ajb.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7ajb.pdb.gz\n", "Failed to download https://files.rcsb.org/download/7ajb.pdb.gz\n", "Downloading https://files.rcsb.org/download/7ajc.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7ajc.pdb.gz\n", "Failed to download https://files.rcsb.org/download/7ajc.pdb.gz\n", "Downloading https://files.rcsb.org/download/7ajd.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7ajd.pdb.gz\n", "Failed to download https://files.rcsb.org/download/7ajd.pdb.gz\n", "Downloading https://files.rcsb.org/download/7aje.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7aje.pdb.gz\n", "Failed to download https://files.rcsb.org/download/7aje.pdb.gz\n", "Downloading https://files.rcsb.org/download/7ajf.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7ajf.pdb.gz\n", "Failed to download https://files.rcsb.org/download/7ajf.pdb.gz\n", "Downloading https://files.rcsb.org/download/7ajg.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7ajg.pdb.gz\n", "Failed to download https://files.rcsb.org/download/7ajg.pdb.gz\n", "Downloading https://files.rcsb.org/download/7ajh.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7ajh.pdb.gz\n", "Failed to download https://files.rcsb.org/download/7ajh.pdb.gz\n", "Downloading https://files.rcsb.org/download/7aji.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7aji.pdb.gz\n", "Failed to download https://files.rcsb.org/download/7aji.pdb.gz\n", "Downloading https://files.rcsb.org/download/7ajj.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7ajj.pdb.gz\n", "Failed to download https://files.rcsb.org/download/7ajj.pdb.gz\n", "Downloading https://files.rcsb.org/download/1fx0.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1fx0.pdb.gz\n", "Downloading https://files.rcsb.org/download/1kmh.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1kmh.pdb.gz\n", "Downloading https://files.rcsb.org/download/1qo1.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1qo1.pdb.gz\n", "Downloading https://files.rcsb.org/download/1sky.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1sky.pdb.gz\n", "Downloading https://files.rcsb.org/download/5ara.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5ara.pdb.gz\n", "Downloading https://files.rcsb.org/download/5are.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5are.pdb.gz\n", "Downloading https://files.rcsb.org/download/5arh.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5arh.pdb.gz\n", "Downloading https://files.rcsb.org/download/5ari.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5ari.pdb.gz\n", "Downloading https://files.rcsb.org/download/5cdf.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5cdf.pdb.gz\n", "Downloading https://files.rcsb.org/download/5fij.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5fij.pdb.gz\n", "Downloading https://files.rcsb.org/download/5fik.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5fik.pdb.gz\n", "Downloading https://files.rcsb.org/download/5fil.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5fil.pdb.gz\n", "Downloading https://files.rcsb.org/download/5lqx.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5lqx.pdb.gz\n", "Downloading https://files.rcsb.org/download/5lqy.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5lqy.pdb.gz\n", "Downloading https://files.rcsb.org/download/5lqz.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5lqz.pdb.gz\n", "Downloading https://files.rcsb.org/download/5t4o.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5t4o.pdb.gz\n", "Downloading https://files.rcsb.org/download/5t4p.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5t4p.pdb.gz\n", "Downloading https://files.rcsb.org/download/5t4q.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5t4q.pdb.gz\n", "Downloading https://files.rcsb.org/download/6vm1.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6vm1.pdb.gz\n", "Downloading https://files.rcsb.org/download/6vm4.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6vm4.pdb.gz\n", "Downloading https://files.rcsb.org/download/6rd6.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6rd6.pdb.gz\n", "Downloading https://files.rcsb.org/download/6rda.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6rda.pdb.gz\n", "Downloading https://files.rcsb.org/download/6rdd.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6rdd.pdb.gz\n", "Downloading https://files.rcsb.org/download/6rdf.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6rdf.pdb.gz\n", "Downloading https://files.rcsb.org/download/6tmi.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6tmi.pdb.gz\n", "Downloading https://files.rcsb.org/download/6ziq.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6ziq.pdb.gz\n", "Downloading https://files.rcsb.org/download/6zit.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6zit.pdb.gz\n", "Downloading https://files.rcsb.org/download/6ziu.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6ziu.pdb.gz\n", "Downloading https://files.rcsb.org/download/6ynw.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6ynw.pdb.gz\n", "Downloading https://files.rcsb.org/download/3wee.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3wee.pdb.gz\n", "Downloading https://files.rcsb.org/download/4i6m.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4i6m.pdb.gz\n", "Downloading https://files.rcsb.org/download/5i9e.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5i9e.pdb.gz\n", "Downloading https://files.rcsb.org/download/5nbl.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5nbl.pdb.gz\n", "Downloading https://files.rcsb.org/download/5nbm.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5nbm.pdb.gz\n", "Downloading https://files.rcsb.org/download/5nbn.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5nbn.pdb.gz\n", "Downloading https://files.rcsb.org/download/5tgc.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5tgc.pdb.gz\n", "Downloading https://files.rcsb.org/download/5y81.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5y81.pdb.gz\n", "Downloading https://files.rcsb.org/download/6kw3.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6kw3.pdb.gz\n", "Downloading https://files.rcsb.org/download/6kw4.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6kw4.pdb.gz\n", "Downloading https://files.rcsb.org/download/6kw5.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6kw5.pdb.gz\n", "Downloading https://files.rcsb.org/download/6tda.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6tda.pdb.gz\n", "Downloading https://files.rcsb.org/download/6uxw.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6uxw.pdb.gz\n", "Downloading https://files.rcsb.org/download/6v92.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6v92.pdb.gz\n", "Downloading https://files.rcsb.org/download/6vz4.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6vz4.pdb.gz\n", "Downloading https://files.rcsb.org/download/6vzg.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6vzg.pdb.gz\n", "Downloading https://files.rcsb.org/download/7c4j.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7c4j.pdb.gz\n", "Downloading https://files.rcsb.org/download/1k8k.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1k8k.pdb.gz\n", "Downloading https://files.rcsb.org/download/1tyq.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1tyq.pdb.gz\n", "Downloading https://files.rcsb.org/download/1u2v.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1u2v.pdb.gz\n", "Downloading https://files.rcsb.org/download/2p9i.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/2p9i.pdb.gz\n", "Downloading https://files.rcsb.org/download/2p9k.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/2p9k.pdb.gz\n", "Downloading https://files.rcsb.org/download/2p9l.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/2p9l.pdb.gz\n", "Downloading https://files.rcsb.org/download/2p9n.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/2p9n.pdb.gz\n", "Downloading https://files.rcsb.org/download/2p9p.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/2p9p.pdb.gz\n", "Downloading https://files.rcsb.org/download/2p9s.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/2p9s.pdb.gz\n", "Downloading https://files.rcsb.org/download/2p9u.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/2p9u.pdb.gz\n", "Downloading https://files.rcsb.org/download/3dxk.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3dxk.pdb.gz\n", "Downloading https://files.rcsb.org/download/3dxm.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3dxm.pdb.gz\n", "Downloading https://files.rcsb.org/download/3rse.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3rse.pdb.gz\n", "Downloading https://files.rcsb.org/download/3ukr.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3ukr.pdb.gz\n", "Downloading https://files.rcsb.org/download/3uku.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3uku.pdb.gz\n", "Downloading https://files.rcsb.org/download/3ule.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3ule.pdb.gz\n", "Downloading https://files.rcsb.org/download/4jd2.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4jd2.pdb.gz\n", "Downloading https://files.rcsb.org/download/4xei.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4xei.pdb.gz\n", "Downloading https://files.rcsb.org/download/4xf2.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4xf2.pdb.gz\n", "Downloading https://files.rcsb.org/download/6dec.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6dec.pdb.gz\n", "Downloading https://files.rcsb.org/download/6uhc.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6uhc.pdb.gz\n", "Downloading https://files.rcsb.org/download/6w18.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6w18.pdb.gz\n", "Downloading https://files.rcsb.org/download/6yw6.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6yw6.pdb.gz\n", "Downloading https://files.rcsb.org/download/1i3q.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1i3q.pdb.gz\n", "Downloading https://files.rcsb.org/download/1i50.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1i50.pdb.gz\n", "Downloading https://files.rcsb.org/download/1i6h.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1i6h.pdb.gz\n", "Downloading https://files.rcsb.org/download/1k83.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1k83.pdb.gz\n", "Downloading https://files.rcsb.org/download/1nik.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1nik.pdb.gz\n", "Downloading https://files.rcsb.org/download/1nt9.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1nt9.pdb.gz\n", "Downloading https://files.rcsb.org/download/1r5u.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1r5u.pdb.gz\n", "Downloading https://files.rcsb.org/download/1r9s.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1r9s.pdb.gz\n", "Downloading https://files.rcsb.org/download/1r9t.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1r9t.pdb.gz\n", "Downloading https://files.rcsb.org/download/1sfo.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1sfo.pdb.gz\n", "Downloading https://files.rcsb.org/download/1twa.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1twa.pdb.gz\n", "Downloading https://files.rcsb.org/download/1twc.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1twc.pdb.gz\n", "Downloading https://files.rcsb.org/download/1twf.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1twf.pdb.gz\n", "Downloading https://files.rcsb.org/download/1twg.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1twg.pdb.gz\n", "Downloading https://files.rcsb.org/download/1twh.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1twh.pdb.gz\n", "Downloading https://files.rcsb.org/download/1wcm.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1wcm.pdb.gz\n", "Downloading https://files.rcsb.org/download/1y1v.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1y1v.pdb.gz\n", "Downloading https://files.rcsb.org/download/1y1w.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1y1w.pdb.gz\n", "Downloading https://files.rcsb.org/download/1y1y.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1y1y.pdb.gz\n", "Downloading https://files.rcsb.org/download/1y77.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1y77.pdb.gz\n", "Downloading https://files.rcsb.org/download/2b63.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/2b63.pdb.gz\n", "Downloading https://files.rcsb.org/download/2b8k.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/2b8k.pdb.gz\n", "Downloading https://files.rcsb.org/download/2e2h.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/2e2h.pdb.gz\n", "Downloading https://files.rcsb.org/download/2e2i.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/2e2i.pdb.gz\n", "Downloading https://files.rcsb.org/download/2e2j.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/2e2j.pdb.gz\n", "Downloading https://files.rcsb.org/download/2ja5.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/2ja5.pdb.gz\n", "Downloading https://files.rcsb.org/download/2ja6.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/2ja6.pdb.gz\n", "Downloading https://files.rcsb.org/download/2ja7.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/2ja7.pdb.gz\n", "Downloading https://files.rcsb.org/download/2ja8.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/2ja8.pdb.gz\n", "Downloading https://files.rcsb.org/download/2nvq.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/2nvq.pdb.gz\n", "Downloading https://files.rcsb.org/download/2nvt.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/2nvt.pdb.gz\n", "Downloading https://files.rcsb.org/download/2nvx.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/2nvx.pdb.gz\n", "Downloading https://files.rcsb.org/download/2nvy.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/2nvy.pdb.gz\n", "Downloading https://files.rcsb.org/download/2nvz.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/2nvz.pdb.gz\n", "Downloading https://files.rcsb.org/download/2r7z.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/2r7z.pdb.gz\n", "Downloading https://files.rcsb.org/download/2r92.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/2r92.pdb.gz\n", "Downloading https://files.rcsb.org/download/2r93.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/2r93.pdb.gz\n", "Downloading https://files.rcsb.org/download/2vum.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/2vum.pdb.gz\n", "Downloading https://files.rcsb.org/download/2yu9.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/2yu9.pdb.gz\n", "Downloading https://files.rcsb.org/download/3cqz.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3cqz.pdb.gz\n", "Downloading https://files.rcsb.org/download/3fki.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3fki.pdb.gz\n", "Downloading https://files.rcsb.org/download/3gtg.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3gtg.pdb.gz\n", "Downloading https://files.rcsb.org/download/3gtj.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3gtj.pdb.gz\n", "Downloading https://files.rcsb.org/download/3gtk.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3gtk.pdb.gz\n", "Downloading https://files.rcsb.org/download/3gtl.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3gtl.pdb.gz\n", "Downloading https://files.rcsb.org/download/3gtm.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3gtm.pdb.gz\n", "Downloading https://files.rcsb.org/download/3gto.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3gto.pdb.gz\n", "Downloading https://files.rcsb.org/download/3gtp.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3gtp.pdb.gz\n", "Downloading https://files.rcsb.org/download/3gtq.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3gtq.pdb.gz\n", "Downloading https://files.rcsb.org/download/3h0g.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3h0g.pdb.gz\n", "Downloading https://files.rcsb.org/download/3h3v.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3h3v.pdb.gz\n", "Downloading https://files.rcsb.org/download/3hou.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3hou.pdb.gz\n", "Downloading https://files.rcsb.org/download/3hov.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3hov.pdb.gz\n", "Downloading https://files.rcsb.org/download/3j0k.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3j0k.pdb.gz\n", "Downloading https://files.rcsb.org/download/3j1n.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3j1n.pdb.gz\n", "Downloading https://files.rcsb.org/download/3k1f.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3k1f.pdb.gz\n", "Downloading https://files.rcsb.org/download/3k7a.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3k7a.pdb.gz\n", "Downloading https://files.rcsb.org/download/3m3y.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3m3y.pdb.gz\n", "Downloading https://files.rcsb.org/download/3m4o.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3m4o.pdb.gz\n", "Downloading https://files.rcsb.org/download/3po2.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3po2.pdb.gz\n", "Downloading https://files.rcsb.org/download/3po3.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3po3.pdb.gz\n", "Downloading https://files.rcsb.org/download/3qt1.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3qt1.pdb.gz\n", "Downloading https://files.rcsb.org/download/3rzd.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3rzd.pdb.gz\n", "Downloading https://files.rcsb.org/download/3rzo.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3rzo.pdb.gz\n", "Downloading https://files.rcsb.org/download/3s14.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3s14.pdb.gz\n", "Downloading https://files.rcsb.org/download/3s15.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3s15.pdb.gz\n", "Downloading https://files.rcsb.org/download/3s16.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3s16.pdb.gz\n", "Downloading https://files.rcsb.org/download/3s17.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3s17.pdb.gz\n", "Downloading https://files.rcsb.org/download/3s1m.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3s1m.pdb.gz\n", "Downloading https://files.rcsb.org/download/3s1n.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3s1n.pdb.gz\n", "Downloading https://files.rcsb.org/download/3s1q.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3s1q.pdb.gz\n", "Downloading https://files.rcsb.org/download/3s1r.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3s1r.pdb.gz\n", "Downloading https://files.rcsb.org/download/3s2d.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3s2d.pdb.gz\n", "Downloading https://files.rcsb.org/download/3s2h.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3s2h.pdb.gz\n", "Downloading https://files.rcsb.org/download/4a3b.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4a3b.pdb.gz\n", "Downloading https://files.rcsb.org/download/4a3c.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4a3c.pdb.gz\n", "Downloading https://files.rcsb.org/download/4a3d.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4a3d.pdb.gz\n", "Downloading https://files.rcsb.org/download/4a3e.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4a3e.pdb.gz\n", "Downloading https://files.rcsb.org/download/4a3f.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4a3f.pdb.gz\n", "Downloading https://files.rcsb.org/download/4a3g.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4a3g.pdb.gz\n", "Downloading https://files.rcsb.org/download/4a3i.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4a3i.pdb.gz\n", "Downloading https://files.rcsb.org/download/4a3j.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4a3j.pdb.gz\n", "Downloading https://files.rcsb.org/download/4a3k.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4a3k.pdb.gz\n", "Downloading https://files.rcsb.org/download/4a3l.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4a3l.pdb.gz\n", "Downloading https://files.rcsb.org/download/4a3m.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4a3m.pdb.gz\n", "Downloading https://files.rcsb.org/download/4a93.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4a93.pdb.gz\n", "Downloading https://files.rcsb.org/download/4bbr.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4bbr.pdb.gz\n", "Downloading https://files.rcsb.org/download/4bbs.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4bbs.pdb.gz\n", "Downloading https://files.rcsb.org/download/4bxx.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4bxx.pdb.gz\n", "Downloading https://files.rcsb.org/download/4bxz.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4bxz.pdb.gz\n", "Downloading https://files.rcsb.org/download/4by1.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4by1.pdb.gz\n", "Downloading https://files.rcsb.org/download/4by7.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4by7.pdb.gz\n", "Downloading https://files.rcsb.org/download/4c2m.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4c2m.pdb.gz\n", "Downloading https://files.rcsb.org/download/4c3h.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4c3h.pdb.gz\n", "Downloading https://files.rcsb.org/download/4c3i.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4c3i.pdb.gz\n", "Downloading https://files.rcsb.org/download/4c3j.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4c3j.pdb.gz\n", "Downloading https://files.rcsb.org/download/4v1m.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4v1m.pdb.gz\n", "Downloading https://files.rcsb.org/download/4v1n.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4v1n.pdb.gz\n", "Downloading https://files.rcsb.org/download/4v1o.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4v1o.pdb.gz\n", "Downloading https://files.rcsb.org/download/4x67.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4x67.pdb.gz\n", "Downloading https://files.rcsb.org/download/4x6a.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4x6a.pdb.gz\n", "Downloading https://files.rcsb.org/download/4y52.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4y52.pdb.gz\n", "Downloading https://files.rcsb.org/download/4y7n.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4y7n.pdb.gz\n", "Downloading https://files.rcsb.org/download/4ym7.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4ym7.pdb.gz\n", "Failed to download https://files.rcsb.org/download/4ym7.pdb.gz\n", "Downloading https://files.rcsb.org/download/5c3e.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5c3e.pdb.gz\n", "Downloading https://files.rcsb.org/download/5c44.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5c44.pdb.gz\n", "Downloading https://files.rcsb.org/download/5c4a.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5c4a.pdb.gz\n", "Downloading https://files.rcsb.org/download/5c4j.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5c4j.pdb.gz\n", "Downloading https://files.rcsb.org/download/5c4x.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5c4x.pdb.gz\n", "Downloading https://files.rcsb.org/download/5fj8.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5fj8.pdb.gz\n", "Downloading https://files.rcsb.org/download/5fj9.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5fj9.pdb.gz\n", "Downloading https://files.rcsb.org/download/5fja.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5fja.pdb.gz\n", "Downloading https://files.rcsb.org/download/5flm.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5flm.pdb.gz\n", "Downloading https://files.rcsb.org/download/5fmf.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5fmf.pdb.gz\n", "Downloading https://files.rcsb.org/download/5fyw.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5fyw.pdb.gz\n", "Downloading https://files.rcsb.org/download/5fz5.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5fz5.pdb.gz\n", "Downloading https://files.rcsb.org/download/5g5l.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5g5l.pdb.gz\n", "Downloading https://files.rcsb.org/download/5iy6.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5iy6.pdb.gz\n", "Downloading https://files.rcsb.org/download/5iy7.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5iy7.pdb.gz\n", "Downloading https://files.rcsb.org/download/5iy8.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5iy8.pdb.gz\n", "Downloading https://files.rcsb.org/download/5iy9.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5iy9.pdb.gz\n", "Downloading https://files.rcsb.org/download/5iya.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5iya.pdb.gz\n", "Downloading https://files.rcsb.org/download/5iyb.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5iyb.pdb.gz\n", "Downloading https://files.rcsb.org/download/5iyc.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5iyc.pdb.gz\n", "Downloading https://files.rcsb.org/download/5iyd.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5iyd.pdb.gz\n", "Downloading https://files.rcsb.org/download/5lmx.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5lmx.pdb.gz\n", "Downloading https://files.rcsb.org/download/5m3f.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5m3f.pdb.gz\n", "Downloading https://files.rcsb.org/download/5m3m.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5m3m.pdb.gz\n", "Downloading https://files.rcsb.org/download/5m5w.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5m5w.pdb.gz\n", "Downloading https://files.rcsb.org/download/5m5x.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5m5x.pdb.gz\n", "Downloading https://files.rcsb.org/download/5m64.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5m64.pdb.gz\n", "Downloading https://files.rcsb.org/download/5n5z.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5n5z.pdb.gz\n", "Downloading https://files.rcsb.org/download/5n61.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5n61.pdb.gz\n", "Downloading https://files.rcsb.org/download/5oa1.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5oa1.pdb.gz\n", "Downloading https://files.rcsb.org/download/5oik.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5oik.pdb.gz\n", "Downloading https://files.rcsb.org/download/5oqj.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5oqj.pdb.gz\n", "Downloading https://files.rcsb.org/download/5oqm.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5oqm.pdb.gz\n", "Downloading https://files.rcsb.org/download/5ot2.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5ot2.pdb.gz\n", "Downloading https://files.rcsb.org/download/5sva.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5sva.pdb.gz\n", "Downloading https://files.rcsb.org/download/5u0s.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5u0s.pdb.gz\n", "Downloading https://files.rcsb.org/download/5u5q.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5u5q.pdb.gz\n", "Downloading https://files.rcsb.org/download/5vvr.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5vvr.pdb.gz\n", "Downloading https://files.rcsb.org/download/5vvs.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5vvs.pdb.gz\n", "Downloading https://files.rcsb.org/download/5w4u.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5w4u.pdb.gz\n", "Downloading https://files.rcsb.org/download/5w51.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5w51.pdb.gz\n", "Downloading https://files.rcsb.org/download/5w5y.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5w5y.pdb.gz\n", "Downloading https://files.rcsb.org/download/5w64.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5w64.pdb.gz\n", "Downloading https://files.rcsb.org/download/5w65.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5w65.pdb.gz\n", "Downloading https://files.rcsb.org/download/5w66.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5w66.pdb.gz\n", "Downloading https://files.rcsb.org/download/5x4z.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5x4z.pdb.gz\n", "Downloading https://files.rcsb.org/download/5x50.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5x50.pdb.gz\n", "Downloading https://files.rcsb.org/download/5x51.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5x51.pdb.gz\n", "Downloading https://files.rcsb.org/download/5xog.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5xog.pdb.gz\n", "Downloading https://files.rcsb.org/download/5xon.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5xon.pdb.gz\n", "Downloading https://files.rcsb.org/download/6a5l.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6a5l.pdb.gz\n", "Downloading https://files.rcsb.org/download/6a5o.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6a5o.pdb.gz\n", "Downloading https://files.rcsb.org/download/6a5p.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6a5p.pdb.gz\n", "Downloading https://files.rcsb.org/download/6a5r.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6a5r.pdb.gz\n", "Downloading https://files.rcsb.org/download/6a5t.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6a5t.pdb.gz\n", "Downloading https://files.rcsb.org/download/6a5u.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6a5u.pdb.gz\n", "Downloading https://files.rcsb.org/download/6blo.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6blo.pdb.gz\n", "Downloading https://files.rcsb.org/download/6blp.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6blp.pdb.gz\n", "Downloading https://files.rcsb.org/download/6bm2.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6bm2.pdb.gz\n", "Downloading https://files.rcsb.org/download/6bm4.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6bm4.pdb.gz\n", "Downloading https://files.rcsb.org/download/6bqf.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6bqf.pdb.gz\n", "Downloading https://files.rcsb.org/download/6cnb.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6cnb.pdb.gz\n", "Downloading https://files.rcsb.org/download/6cnd.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6cnd.pdb.gz\n", "Downloading https://files.rcsb.org/download/6cnf.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6cnf.pdb.gz\n", "Downloading https://files.rcsb.org/download/6drd.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6drd.pdb.gz\n", "Downloading https://files.rcsb.org/download/6eu0.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6eu0.pdb.gz\n", "Downloading https://files.rcsb.org/download/6eu1.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6eu1.pdb.gz\n", "Downloading https://files.rcsb.org/download/6eu2.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6eu2.pdb.gz\n", "Downloading https://files.rcsb.org/download/6eu3.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6eu3.pdb.gz\n", "Downloading https://files.rcsb.org/download/6exv.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6exv.pdb.gz\n", "Downloading https://files.rcsb.org/download/6f41.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6f41.pdb.gz\n", "Downloading https://files.rcsb.org/download/6f44.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6f44.pdb.gz\n", "Downloading https://files.rcsb.org/download/6gmh.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6gmh.pdb.gz\n", "Downloading https://files.rcsb.org/download/6gml.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6gml.pdb.gz\n", "Downloading https://files.rcsb.org/download/6gyk.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6gyk.pdb.gz\n", "Downloading https://files.rcsb.org/download/6gyl.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6gyl.pdb.gz\n", "Downloading https://files.rcsb.org/download/6gym.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6gym.pdb.gz\n", "Downloading https://files.rcsb.org/download/6h67.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6h67.pdb.gz\n", "Downloading https://files.rcsb.org/download/6h68.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6h68.pdb.gz\n", "Downloading https://files.rcsb.org/download/6hko.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6hko.pdb.gz\n", "Downloading https://files.rcsb.org/download/6hlq.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6hlq.pdb.gz\n", "Downloading https://files.rcsb.org/download/6hlr.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6hlr.pdb.gz\n", "Downloading https://files.rcsb.org/download/6hls.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6hls.pdb.gz\n", "Downloading https://files.rcsb.org/download/6i84.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6i84.pdb.gz\n", "Downloading https://files.rcsb.org/download/6inq.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6inq.pdb.gz\n", "Downloading https://files.rcsb.org/download/6ir9.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6ir9.pdb.gz\n", "Downloading https://files.rcsb.org/download/6j4w.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6j4w.pdb.gz\n", "Downloading https://files.rcsb.org/download/6j4x.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6j4x.pdb.gz\n", "Downloading https://files.rcsb.org/download/6j4y.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6j4y.pdb.gz\n", "Downloading https://files.rcsb.org/download/6j4z.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6j4z.pdb.gz\n", "Downloading https://files.rcsb.org/download/6j50.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6j50.pdb.gz\n", "Downloading https://files.rcsb.org/download/6j51.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6j51.pdb.gz\n", "Downloading https://files.rcsb.org/download/6o6c.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6o6c.pdb.gz\n", "Downloading https://files.rcsb.org/download/6o9l.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6o9l.pdb.gz\n", "Downloading https://files.rcsb.org/download/6rqh.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6rqh.pdb.gz\n", "Downloading https://files.rcsb.org/download/6rql.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6rql.pdb.gz\n", "Downloading https://files.rcsb.org/download/6rqt.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6rqt.pdb.gz\n", "Downloading https://files.rcsb.org/download/6rrd.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6rrd.pdb.gz\n", "Downloading https://files.rcsb.org/download/6rui.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6rui.pdb.gz\n", "Downloading https://files.rcsb.org/download/6ruo.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6ruo.pdb.gz\n", "Downloading https://files.rcsb.org/download/6rwe.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6rwe.pdb.gz\n", "Downloading https://files.rcsb.org/download/6ted.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6ted.pdb.gz\n", "Downloading https://files.rcsb.org/download/6tps.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6tps.pdb.gz\n", "Downloading https://files.rcsb.org/download/6tut.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6tut.pdb.gz\n", "Downloading https://files.rcsb.org/download/6upx.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6upx.pdb.gz\n", "Downloading https://files.rcsb.org/download/6upy.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6upy.pdb.gz\n", "Downloading https://files.rcsb.org/download/6upz.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6upz.pdb.gz\n", "Downloading https://files.rcsb.org/download/6uq0.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6uq0.pdb.gz\n", "Downloading https://files.rcsb.org/download/6uq1.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6uq1.pdb.gz\n", "Downloading https://files.rcsb.org/download/6uq2.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6uq2.pdb.gz\n", "Downloading https://files.rcsb.org/download/6uq3.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6uq3.pdb.gz\n", "Downloading https://files.rcsb.org/download/7aoc.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7aoc.pdb.gz\n", "Downloading https://files.rcsb.org/download/7aod.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7aod.pdb.gz\n", "Downloading https://files.rcsb.org/download/7aoe.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7aoe.pdb.gz\n", "Downloading https://files.rcsb.org/download/7b0y.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7b0y.pdb.gz\n", "Downloading https://files.rcsb.org/download/7ked.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7ked.pdb.gz\n", "Downloading https://files.rcsb.org/download/7kee.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7kee.pdb.gz\n", "Downloading https://files.rcsb.org/download/7kef.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7kef.pdb.gz\n", "Downloading https://files.rcsb.org/download/7nvs.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7nvs.pdb.gz\n", "Downloading https://files.rcsb.org/download/7nvt.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7nvt.pdb.gz\n", "Downloading https://files.rcsb.org/download/7nvu.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7nvu.pdb.gz\n", "Downloading https://files.rcsb.org/download/7ozn.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7ozn.pdb.gz\n", "Downloading https://files.rcsb.org/download/7ozo.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7ozo.pdb.gz\n", "Downloading https://files.rcsb.org/download/7ozp.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7ozp.pdb.gz\n", "Downloading https://files.rcsb.org/download/7rim.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7rim.pdb.gz\n", "Downloading https://files.rcsb.org/download/7rip.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7rip.pdb.gz\n", "Downloading https://files.rcsb.org/download/7riq.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7riq.pdb.gz\n", "Downloading https://files.rcsb.org/download/7riw.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7riw.pdb.gz\n", "Downloading https://files.rcsb.org/download/7rix.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7rix.pdb.gz\n", "Downloading https://files.rcsb.org/download/7riy.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7riy.pdb.gz\n", "Downloading https://files.rcsb.org/download/6kf4.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6kf4.pdb.gz\n", "Downloading https://files.rcsb.org/download/6kf9.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6kf9.pdb.gz\n", "Downloading https://files.rcsb.org/download/7ok0.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7ok0.pdb.gz\n", "Downloading https://files.rcsb.org/download/7oq4.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7oq4.pdb.gz\n", "Downloading https://files.rcsb.org/download/3how.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3how.pdb.gz\n", "Downloading https://files.rcsb.org/download/3hox.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3hox.pdb.gz\n", "Downloading https://files.rcsb.org/download/3hoy.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3hoy.pdb.gz\n", "Downloading https://files.rcsb.org/download/3hoz.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3hoz.pdb.gz\n", "Downloading https://files.rcsb.org/download/3i4m.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3i4m.pdb.gz\n", "Downloading https://files.rcsb.org/download/3i4n.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3i4n.pdb.gz\n", "Downloading https://files.rcsb.org/download/4qiw.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4qiw.pdb.gz\n", "Downloading https://files.rcsb.org/download/5ip7.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5ip7.pdb.gz\n", "Downloading https://files.rcsb.org/download/5ip9.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5ip9.pdb.gz\n", "Downloading https://files.rcsb.org/download/7a6h.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7a6h.pdb.gz\n", "Downloading https://files.rcsb.org/download/7ae1.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7ae1.pdb.gz\n", "Downloading https://files.rcsb.org/download/7ae3.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7ae3.pdb.gz\n", "Downloading https://files.rcsb.org/download/7aea.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7aea.pdb.gz\n", "Downloading https://files.rcsb.org/download/7ast.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7ast.pdb.gz\n", "Downloading https://files.rcsb.org/download/7d58.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7d58.pdb.gz\n", "Downloading https://files.rcsb.org/download/7d59.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7d59.pdb.gz\n", "Downloading https://files.rcsb.org/download/7dn3.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7dn3.pdb.gz\n", "Downloading https://files.rcsb.org/download/7du2.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7du2.pdb.gz\n", "Downloading https://files.rcsb.org/download/7fji.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7fji.pdb.gz\n", "Downloading https://files.rcsb.org/download/7fjj.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7fjj.pdb.gz\n", "Downloading https://files.rcsb.org/download/1pqv.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1pqv.pdb.gz\n", "Downloading https://files.rcsb.org/download/1go3.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1go3.pdb.gz\n", "Downloading https://files.rcsb.org/download/1y14.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1y14.pdb.gz\n", "Downloading https://files.rcsb.org/download/2c35.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/2c35.pdb.gz\n", "Downloading https://files.rcsb.org/download/2pmz.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/2pmz.pdb.gz\n", "Downloading https://files.rcsb.org/download/2wb1.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/2wb1.pdb.gz\n", "Downloading https://files.rcsb.org/download/2y0s.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/2y0s.pdb.gz\n", "Downloading https://files.rcsb.org/download/3hkz.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3hkz.pdb.gz\n", "Downloading https://files.rcsb.org/download/4ayb.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4ayb.pdb.gz\n", "Downloading https://files.rcsb.org/download/4qjf.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4qjf.pdb.gz\n", "Downloading https://files.rcsb.org/download/4v8s.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4v8s.pdb.gz\n", "Failed to download https://files.rcsb.org/download/4v8s.pdb.gz\n", "Downloading https://files.rcsb.org/download/6kf3.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6kf3.pdb.gz\n", "Downloading https://files.rcsb.org/download/1nh2.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1nh2.pdb.gz\n", "Downloading https://files.rcsb.org/download/1nvp.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1nvp.pdb.gz\n", "Downloading https://files.rcsb.org/download/1rm1.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1rm1.pdb.gz\n", "Downloading https://files.rcsb.org/download/1ytf.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1ytf.pdb.gz\n", "Downloading https://files.rcsb.org/download/5gpy.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5gpy.pdb.gz\n", "Downloading https://files.rcsb.org/download/2j8s.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/2j8s.pdb.gz\n", "Downloading https://files.rcsb.org/download/4c48.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4c48.pdb.gz\n", "Downloading https://files.rcsb.org/download/4dx5.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4dx5.pdb.gz\n", "Downloading https://files.rcsb.org/download/4dx6.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4dx6.pdb.gz\n", "Downloading https://files.rcsb.org/download/4dx7.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4dx7.pdb.gz\n", "Downloading https://files.rcsb.org/download/4u8v.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4u8v.pdb.gz\n", "Downloading https://files.rcsb.org/download/4u8y.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4u8y.pdb.gz\n", "Downloading https://files.rcsb.org/download/4u95.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4u95.pdb.gz\n", "Downloading https://files.rcsb.org/download/4u96.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4u96.pdb.gz\n", "Downloading https://files.rcsb.org/download/5en5.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5en5.pdb.gz\n", "Downloading https://files.rcsb.org/download/5eno.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5eno.pdb.gz\n", "Downloading https://files.rcsb.org/download/5enp.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5enp.pdb.gz\n", "Downloading https://files.rcsb.org/download/5enq.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5enq.pdb.gz\n", "Downloading https://files.rcsb.org/download/5enr.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5enr.pdb.gz\n", "Downloading https://files.rcsb.org/download/5ens.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5ens.pdb.gz\n", "Downloading https://files.rcsb.org/download/5ent.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5ent.pdb.gz\n", "Downloading https://files.rcsb.org/download/5jmn.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5jmn.pdb.gz\n", "Downloading https://files.rcsb.org/download/5nc5.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5nc5.pdb.gz\n", "Downloading https://files.rcsb.org/download/6q4n.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6q4n.pdb.gz\n", "Downloading https://files.rcsb.org/download/6q4o.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6q4o.pdb.gz\n", "Downloading https://files.rcsb.org/download/6q4p.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6q4p.pdb.gz\n", "Downloading https://files.rcsb.org/download/6sgr.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6sgr.pdb.gz\n", "Downloading https://files.rcsb.org/download/6sgs.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6sgs.pdb.gz\n", "Downloading https://files.rcsb.org/download/6sgt.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6sgt.pdb.gz\n", "Downloading https://files.rcsb.org/download/6sgu.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6sgu.pdb.gz\n", "Downloading https://files.rcsb.org/download/6zo5.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6zo5.pdb.gz\n", "Downloading https://files.rcsb.org/download/6zo6.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6zo6.pdb.gz\n", "Downloading https://files.rcsb.org/download/6zo7.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6zo7.pdb.gz\n", "Downloading https://files.rcsb.org/download/6zo8.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6zo8.pdb.gz\n", "Downloading https://files.rcsb.org/download/6zo9.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6zo9.pdb.gz\n", "Downloading https://files.rcsb.org/download/6zoa.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6zoa.pdb.gz\n", "Downloading https://files.rcsb.org/download/6zob.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6zob.pdb.gz\n", "Downloading https://files.rcsb.org/download/6zoc.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6zoc.pdb.gz\n", "Downloading https://files.rcsb.org/download/6zod.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6zod.pdb.gz\n", "Downloading https://files.rcsb.org/download/6zoe.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6zoe.pdb.gz\n", "Downloading https://files.rcsb.org/download/6zof.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6zof.pdb.gz\n", "Downloading https://files.rcsb.org/download/6zog.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6zog.pdb.gz\n", "Downloading https://files.rcsb.org/download/6zoh.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6zoh.pdb.gz\n", "Downloading https://files.rcsb.org/download/7b8r.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7b8r.pdb.gz\n", "Downloading https://files.rcsb.org/download/7b8s.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7b8s.pdb.gz\n", "Downloading https://files.rcsb.org/download/7b8t.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7b8t.pdb.gz\n", "Downloading https://files.rcsb.org/download/7ouk.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7ouk.pdb.gz\n", "Downloading https://files.rcsb.org/download/7oul.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7oul.pdb.gz\n", "Downloading https://files.rcsb.org/download/7oum.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7oum.pdb.gz\n", "Downloading https://files.rcsb.org/download/5v5s.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5v5s.pdb.gz\n", "Downloading https://files.rcsb.org/download/6w17.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6w17.pdb.gz\n", "Downloading https://files.rcsb.org/download/3dwl.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3dwl.pdb.gz\n", "Downloading https://files.rcsb.org/download/7aqk.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7aqk.pdb.gz\n", "Downloading https://files.rcsb.org/download/6yw7.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6yw7.pdb.gz\n", "Downloading https://files.rcsb.org/download/5adx.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5adx.pdb.gz\n", "Downloading https://files.rcsb.org/download/5afu.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5afu.pdb.gz\n", "Downloading https://files.rcsb.org/download/5nw4.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5nw4.pdb.gz\n", "Downloading https://files.rcsb.org/download/6f1t.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6f1t.pdb.gz\n", "Downloading https://files.rcsb.org/download/6f3a.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6f3a.pdb.gz\n", "Downloading https://files.rcsb.org/download/6znl.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6znl.pdb.gz\n", "Downloading https://files.rcsb.org/download/7ccc.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7ccc.pdb.gz\n", "Downloading https://files.rcsb.org/download/6f1u.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6f1u.pdb.gz\n", "Downloading https://files.rcsb.org/download/6f38.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6f38.pdb.gz\n", "Downloading https://files.rcsb.org/download/1izn.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1izn.pdb.gz\n", "Downloading https://files.rcsb.org/download/2kxp.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/2kxp.pdb.gz\n", "Downloading https://files.rcsb.org/download/2kz7.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/2kz7.pdb.gz\n", "Downloading https://files.rcsb.org/download/3aa0.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3aa0.pdb.gz\n", "Downloading https://files.rcsb.org/download/3aa1.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3aa1.pdb.gz\n", "Downloading https://files.rcsb.org/download/3aa6.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3aa6.pdb.gz\n", "Downloading https://files.rcsb.org/download/3aa7.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3aa7.pdb.gz\n", "Downloading https://files.rcsb.org/download/3aaa.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3aaa.pdb.gz\n", "Downloading https://files.rcsb.org/download/3aae.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3aae.pdb.gz\n", "Downloading https://files.rcsb.org/download/3lk2.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3lk2.pdb.gz\n", "Downloading https://files.rcsb.org/download/3lk3.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3lk3.pdb.gz\n", "Downloading https://files.rcsb.org/download/3lk4.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3lk4.pdb.gz\n", "Downloading https://files.rcsb.org/download/4akr.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4akr.pdb.gz\n", "Downloading https://files.rcsb.org/download/7ds2.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7ds2.pdb.gz\n", "Downloading https://files.rcsb.org/download/7ds3.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7ds3.pdb.gz\n", "Downloading https://files.rcsb.org/download/7ds4.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7ds4.pdb.gz\n", "Downloading https://files.rcsb.org/download/7ds6.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7ds6.pdb.gz\n", "Downloading https://files.rcsb.org/download/7ds8.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7ds8.pdb.gz\n", "Downloading https://files.rcsb.org/download/7dsa.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7dsa.pdb.gz\n", "Downloading https://files.rcsb.org/download/7dsb.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7dsb.pdb.gz\n", "Downloading https://files.rcsb.org/download/1aoi.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1aoi.pdb.gz\n", "Downloading https://files.rcsb.org/download/1eqz.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1eqz.pdb.gz\n", "Downloading https://files.rcsb.org/download/1f66.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1f66.pdb.gz\n", "Downloading https://files.rcsb.org/download/1hio.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1hio.pdb.gz\n", "Downloading https://files.rcsb.org/download/1hq3.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1hq3.pdb.gz\n", "Downloading https://files.rcsb.org/download/1kx3.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1kx3.pdb.gz\n", "Downloading https://files.rcsb.org/download/1kx4.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1kx4.pdb.gz\n", "Downloading https://files.rcsb.org/download/1kx5.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1kx5.pdb.gz\n", "Downloading https://files.rcsb.org/download/1m18.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1m18.pdb.gz\n", "Downloading https://files.rcsb.org/download/1m19.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1m19.pdb.gz\n", "Downloading https://files.rcsb.org/download/1m1a.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1m1a.pdb.gz\n", "Downloading https://files.rcsb.org/download/1p34.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1p34.pdb.gz\n", "Downloading https://files.rcsb.org/download/1p3a.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1p3a.pdb.gz\n", "Downloading https://files.rcsb.org/download/1p3b.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1p3b.pdb.gz\n", "Downloading https://files.rcsb.org/download/1p3f.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1p3f.pdb.gz\n", "Downloading https://files.rcsb.org/download/1p3g.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1p3g.pdb.gz\n", "Downloading https://files.rcsb.org/download/1p3i.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1p3i.pdb.gz\n", "Downloading https://files.rcsb.org/download/1p3k.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1p3k.pdb.gz\n", "Downloading https://files.rcsb.org/download/1p3l.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1p3l.pdb.gz\n", "Downloading https://files.rcsb.org/download/1p3m.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1p3m.pdb.gz\n", "Downloading https://files.rcsb.org/download/1p3o.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1p3o.pdb.gz\n", "Downloading https://files.rcsb.org/download/1p3p.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1p3p.pdb.gz\n", "Downloading https://files.rcsb.org/download/1s32.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1s32.pdb.gz\n", "Downloading https://files.rcsb.org/download/1tzy.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1tzy.pdb.gz\n", "Downloading https://files.rcsb.org/download/1zbb.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1zbb.pdb.gz\n", "Downloading https://files.rcsb.org/download/2aro.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/2aro.pdb.gz\n", "Downloading https://files.rcsb.org/download/2f8n.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/2f8n.pdb.gz\n", "Downloading https://files.rcsb.org/download/2fj7.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/2fj7.pdb.gz\n", "Downloading https://files.rcsb.org/download/2nzd.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/2nzd.pdb.gz\n", "Downloading https://files.rcsb.org/download/2pyo.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/2pyo.pdb.gz\n", "Downloading https://files.rcsb.org/download/2rvq.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/2rvq.pdb.gz\n", "Downloading https://files.rcsb.org/download/2xql.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/2xql.pdb.gz\n", "Downloading https://files.rcsb.org/download/3a6n.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3a6n.pdb.gz\n", "Downloading https://files.rcsb.org/download/3afa.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3afa.pdb.gz\n", "Downloading https://files.rcsb.org/download/3an2.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3an2.pdb.gz\n", "Downloading https://files.rcsb.org/download/3av1.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3av1.pdb.gz\n", "Downloading https://files.rcsb.org/download/3av2.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3av2.pdb.gz\n", "Downloading https://files.rcsb.org/download/3ayw.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3ayw.pdb.gz\n", "Downloading https://files.rcsb.org/download/3aze.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3aze.pdb.gz\n", "Downloading https://files.rcsb.org/download/3azf.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3azf.pdb.gz\n", "Downloading https://files.rcsb.org/download/3azg.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3azg.pdb.gz\n", "Downloading https://files.rcsb.org/download/3azh.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3azh.pdb.gz\n", "Downloading https://files.rcsb.org/download/3azi.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3azi.pdb.gz\n", "Downloading https://files.rcsb.org/download/3azj.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3azj.pdb.gz\n", "Downloading https://files.rcsb.org/download/3azk.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3azk.pdb.gz\n", "Downloading https://files.rcsb.org/download/3azl.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3azl.pdb.gz\n", "Downloading https://files.rcsb.org/download/3azm.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3azm.pdb.gz\n", "Downloading https://files.rcsb.org/download/3azn.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3azn.pdb.gz\n", "Downloading https://files.rcsb.org/download/3b6f.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3b6f.pdb.gz\n", "Downloading https://files.rcsb.org/download/3b6g.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3b6g.pdb.gz\n", "Downloading https://files.rcsb.org/download/3c1b.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3c1b.pdb.gz\n", "Downloading https://files.rcsb.org/download/3c1c.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3c1c.pdb.gz\n", "Downloading https://files.rcsb.org/download/3c9k.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3c9k.pdb.gz\n", "Downloading https://files.rcsb.org/download/3kuy.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3kuy.pdb.gz\n", "Downloading https://files.rcsb.org/download/3kxb.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3kxb.pdb.gz\n", "Downloading https://files.rcsb.org/download/3lel.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3lel.pdb.gz\n", "Downloading https://files.rcsb.org/download/3lja.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3lja.pdb.gz\n", "Downloading https://files.rcsb.org/download/3lz0.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3lz0.pdb.gz\n", "Downloading https://files.rcsb.org/download/3lz1.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3lz1.pdb.gz\n", "Downloading https://files.rcsb.org/download/3mgp.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3mgp.pdb.gz\n", "Downloading https://files.rcsb.org/download/3mgq.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3mgq.pdb.gz\n", "Downloading https://files.rcsb.org/download/3mgr.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3mgr.pdb.gz\n", "Downloading https://files.rcsb.org/download/3mgs.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3mgs.pdb.gz\n", "Downloading https://files.rcsb.org/download/3mnn.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3mnn.pdb.gz\n", "Downloading https://files.rcsb.org/download/3mvd.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3mvd.pdb.gz\n", "Downloading https://files.rcsb.org/download/3o62.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3o62.pdb.gz\n", "Downloading https://files.rcsb.org/download/3reh.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3reh.pdb.gz\n", "Downloading https://files.rcsb.org/download/3rei.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3rei.pdb.gz\n", "Downloading https://files.rcsb.org/download/3tu4.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3tu4.pdb.gz\n", "Downloading https://files.rcsb.org/download/3ut9.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3ut9.pdb.gz\n", "Downloading https://files.rcsb.org/download/3uta.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3uta.pdb.gz\n", "Downloading https://files.rcsb.org/download/3utb.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3utb.pdb.gz\n", "Downloading https://files.rcsb.org/download/3w96.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3w96.pdb.gz\n", "Downloading https://files.rcsb.org/download/3w97.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3w97.pdb.gz\n", "Downloading https://files.rcsb.org/download/3w98.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3w98.pdb.gz\n", "Downloading https://files.rcsb.org/download/3w99.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3w99.pdb.gz\n", "Downloading https://files.rcsb.org/download/3wa9.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3wa9.pdb.gz\n", "Downloading https://files.rcsb.org/download/3waa.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3waa.pdb.gz\n", "Downloading https://files.rcsb.org/download/3wtp.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3wtp.pdb.gz\n", "Downloading https://files.rcsb.org/download/3x1s.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3x1s.pdb.gz\n", "Downloading https://files.rcsb.org/download/3x1t.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3x1t.pdb.gz\n", "Downloading https://files.rcsb.org/download/3x1u.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3x1u.pdb.gz\n", "Downloading https://files.rcsb.org/download/4cay.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4cay.pdb.gz\n", "Downloading https://files.rcsb.org/download/4j8u.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4j8u.pdb.gz\n", "Downloading https://files.rcsb.org/download/4j8v.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4j8v.pdb.gz\n", "Downloading https://files.rcsb.org/download/4j8w.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4j8w.pdb.gz\n", "Downloading https://files.rcsb.org/download/4j8x.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4j8x.pdb.gz\n", "Downloading https://files.rcsb.org/download/4jjn.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4jjn.pdb.gz\n", "Downloading https://files.rcsb.org/download/4kgc.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4kgc.pdb.gz\n", "Downloading https://files.rcsb.org/download/4kud.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4kud.pdb.gz\n", "Downloading https://files.rcsb.org/download/4ld9.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4ld9.pdb.gz\n", "Downloading https://files.rcsb.org/download/4qlc.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4qlc.pdb.gz\n", "Downloading https://files.rcsb.org/download/4r8p.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4r8p.pdb.gz\n", "Downloading https://files.rcsb.org/download/4wnn.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4wnn.pdb.gz\n", "Downloading https://files.rcsb.org/download/4wu8.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4wu8.pdb.gz\n", "Downloading https://files.rcsb.org/download/4wu9.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4wu9.pdb.gz\n", "Downloading https://files.rcsb.org/download/4x23.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4x23.pdb.gz\n", "Downloading https://files.rcsb.org/download/4xuj.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4xuj.pdb.gz\n", "Downloading https://files.rcsb.org/download/4ym5.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4ym5.pdb.gz\n", "Downloading https://files.rcsb.org/download/4ym6.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4ym6.pdb.gz\n", "Downloading https://files.rcsb.org/download/4z5t.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4z5t.pdb.gz\n", "Downloading https://files.rcsb.org/download/4z66.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4z66.pdb.gz\n", "Downloading https://files.rcsb.org/download/4zux.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4zux.pdb.gz\n", "Downloading https://files.rcsb.org/download/5av5.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5av5.pdb.gz\n", "Downloading https://files.rcsb.org/download/5av6.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5av6.pdb.gz\n", "Downloading https://files.rcsb.org/download/5av8.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5av8.pdb.gz\n", "Downloading https://files.rcsb.org/download/5av9.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5av9.pdb.gz\n", "Downloading https://files.rcsb.org/download/5avb.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5avb.pdb.gz\n", "Downloading https://files.rcsb.org/download/5avc.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5avc.pdb.gz\n", "Downloading https://files.rcsb.org/download/5ay8.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5ay8.pdb.gz\n", "Downloading https://files.rcsb.org/download/5b0y.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5b0y.pdb.gz\n", "Downloading https://files.rcsb.org/download/5b0z.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5b0z.pdb.gz\n", "Downloading https://files.rcsb.org/download/5b1l.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5b1l.pdb.gz\n", "Downloading https://files.rcsb.org/download/5b1m.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5b1m.pdb.gz\n", "Downloading https://files.rcsb.org/download/5b24.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5b24.pdb.gz\n", "Downloading https://files.rcsb.org/download/5b2i.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5b2i.pdb.gz\n", "Downloading https://files.rcsb.org/download/5b2j.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5b2j.pdb.gz\n", "Downloading https://files.rcsb.org/download/5b31.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5b31.pdb.gz\n", "Downloading https://files.rcsb.org/download/5b32.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5b32.pdb.gz\n", "Downloading https://files.rcsb.org/download/5b33.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5b33.pdb.gz\n", "Downloading https://files.rcsb.org/download/5b40.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5b40.pdb.gz\n", "Downloading https://files.rcsb.org/download/5bt1.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5bt1.pdb.gz\n", "Downloading https://files.rcsb.org/download/5cp6.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5cp6.pdb.gz\n", "Downloading https://files.rcsb.org/download/5cpi.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5cpi.pdb.gz\n", "Downloading https://files.rcsb.org/download/5cpj.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5cpj.pdb.gz\n", "Downloading https://files.rcsb.org/download/5cpk.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5cpk.pdb.gz\n", "Downloading https://files.rcsb.org/download/5dnm.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5dnm.pdb.gz\n", "Downloading https://files.rcsb.org/download/5dnn.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5dnn.pdb.gz\n", "Downloading https://files.rcsb.org/download/5fug.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5fug.pdb.gz\n", "Downloading https://files.rcsb.org/download/5g2e.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5g2e.pdb.gz\n", "Downloading https://files.rcsb.org/download/5gse.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5gse.pdb.gz\n", "Downloading https://files.rcsb.org/download/5gsu.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5gsu.pdb.gz\n", "Downloading https://files.rcsb.org/download/5gt3.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5gt3.pdb.gz\n", "Downloading https://files.rcsb.org/download/5gtc.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5gtc.pdb.gz\n", "Downloading https://files.rcsb.org/download/5gxq.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5gxq.pdb.gz\n", "Downloading https://files.rcsb.org/download/5hq2.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5hq2.pdb.gz\n", "Downloading https://files.rcsb.org/download/5jrg.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5jrg.pdb.gz\n", "Downloading https://files.rcsb.org/download/5kgf.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5kgf.pdb.gz\n", "Downloading https://files.rcsb.org/download/5mlu.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5mlu.pdb.gz\n", "Downloading https://files.rcsb.org/download/5o9g.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5o9g.pdb.gz\n", "Downloading https://files.rcsb.org/download/5omx.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5omx.pdb.gz\n", "Downloading https://files.rcsb.org/download/5ong.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5ong.pdb.gz\n", "Downloading https://files.rcsb.org/download/5onw.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5onw.pdb.gz\n", "Downloading https://files.rcsb.org/download/5wcu.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5wcu.pdb.gz\n", "Downloading https://files.rcsb.org/download/5x0x.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5x0x.pdb.gz\n", "Downloading https://files.rcsb.org/download/5x0y.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5x0y.pdb.gz\n", "Downloading https://files.rcsb.org/download/5x7x.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5x7x.pdb.gz\n", "Downloading https://files.rcsb.org/download/5xf3.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5xf3.pdb.gz\n", "Downloading https://files.rcsb.org/download/5xf4.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5xf4.pdb.gz\n", "Downloading https://files.rcsb.org/download/5xf5.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5xf5.pdb.gz\n", "Downloading https://files.rcsb.org/download/5xf6.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5xf6.pdb.gz\n", "Downloading https://files.rcsb.org/download/5xm0.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5xm0.pdb.gz\n", "Downloading https://files.rcsb.org/download/5xm1.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5xm1.pdb.gz\n", "Downloading https://files.rcsb.org/download/5y0c.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5y0c.pdb.gz\n", "Downloading https://files.rcsb.org/download/5y0d.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5y0d.pdb.gz\n", "Downloading https://files.rcsb.org/download/5z30.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5z30.pdb.gz\n", "Downloading https://files.rcsb.org/download/5z3l.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5z3l.pdb.gz\n", "Downloading https://files.rcsb.org/download/5z3o.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5z3o.pdb.gz\n", "Downloading https://files.rcsb.org/download/5z3u.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5z3u.pdb.gz\n", "Downloading https://files.rcsb.org/download/5z3v.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5z3v.pdb.gz\n", "Downloading https://files.rcsb.org/download/5zbx.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5zbx.pdb.gz\n", "Downloading https://files.rcsb.org/download/6buz.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6buz.pdb.gz\n", "Downloading https://files.rcsb.org/download/6c0w.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6c0w.pdb.gz\n", "Downloading https://files.rcsb.org/download/6dzt.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6dzt.pdb.gz\n", "Downloading https://files.rcsb.org/download/6e0c.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6e0c.pdb.gz\n", "Downloading https://files.rcsb.org/download/6e0p.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6e0p.pdb.gz\n", "Downloading https://files.rcsb.org/download/6esf.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6esf.pdb.gz\n", "Downloading https://files.rcsb.org/download/6esg.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6esg.pdb.gz\n", "Downloading https://files.rcsb.org/download/6esh.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6esh.pdb.gz\n", "Downloading https://files.rcsb.org/download/6esi.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6esi.pdb.gz\n", "Downloading https://files.rcsb.org/download/6fml.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6fml.pdb.gz\n", "Downloading https://files.rcsb.org/download/6fq5.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6fq5.pdb.gz\n", "Downloading https://files.rcsb.org/download/6fq6.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6fq6.pdb.gz\n", "Downloading https://files.rcsb.org/download/6fq8.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6fq8.pdb.gz\n", "Downloading https://files.rcsb.org/download/6ftx.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6ftx.pdb.gz\n", "Downloading https://files.rcsb.org/download/6g0l.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6g0l.pdb.gz\n", "Downloading https://files.rcsb.org/download/6gej.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6gej.pdb.gz\n", "Downloading https://files.rcsb.org/download/6gen.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6gen.pdb.gz\n", "Downloading https://files.rcsb.org/download/6hkt.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6hkt.pdb.gz\n", "Downloading https://files.rcsb.org/download/6hts.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6hts.pdb.gz\n", "Downloading https://files.rcsb.org/download/6ipu.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6ipu.pdb.gz\n", "Downloading https://files.rcsb.org/download/6iq4.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6iq4.pdb.gz\n", "Downloading https://files.rcsb.org/download/6iro.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6iro.pdb.gz\n", "Downloading https://files.rcsb.org/download/6iy2.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6iy2.pdb.gz\n", "Downloading https://files.rcsb.org/download/6iy3.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6iy3.pdb.gz\n", "Downloading https://files.rcsb.org/download/6j99.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6j99.pdb.gz\n", "Downloading https://files.rcsb.org/download/6jm9.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6jm9.pdb.gz\n", "Downloading https://files.rcsb.org/download/6jma.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6jma.pdb.gz\n", "Downloading https://files.rcsb.org/download/6jou.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6jou.pdb.gz\n", "Downloading https://files.rcsb.org/download/6jr0.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6jr0.pdb.gz\n", "Downloading https://files.rcsb.org/download/6jr1.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6jr1.pdb.gz\n", "Downloading https://files.rcsb.org/download/6jxd.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6jxd.pdb.gz\n", "Downloading https://files.rcsb.org/download/6jyl.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6jyl.pdb.gz\n", "Downloading https://files.rcsb.org/download/6k01.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6k01.pdb.gz\n", "Downloading https://files.rcsb.org/download/6k1i.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6k1i.pdb.gz\n", "Downloading https://files.rcsb.org/download/6k1k.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6k1k.pdb.gz\n", "Downloading https://files.rcsb.org/download/6k1p.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6k1p.pdb.gz\n", "Downloading https://files.rcsb.org/download/6kbb.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6kbb.pdb.gz\n", "Downloading https://files.rcsb.org/download/6kiu.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6kiu.pdb.gz\n", "Downloading https://files.rcsb.org/download/6kiv.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6kiv.pdb.gz\n", "Downloading https://files.rcsb.org/download/6kiw.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6kiw.pdb.gz\n", "Downloading https://files.rcsb.org/download/6kix.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6kix.pdb.gz\n", "Downloading https://files.rcsb.org/download/6kiz.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6kiz.pdb.gz\n", "Downloading https://files.rcsb.org/download/6kvd.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6kvd.pdb.gz\n", "Downloading https://files.rcsb.org/download/6kxv.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6kxv.pdb.gz\n", "Downloading https://files.rcsb.org/download/6l49.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6l49.pdb.gz\n", "Downloading https://files.rcsb.org/download/6l4a.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6l4a.pdb.gz\n", "Downloading https://files.rcsb.org/download/6l9z.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6l9z.pdb.gz\n", "Downloading https://files.rcsb.org/download/6la2.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6la2.pdb.gz\n", "Downloading https://files.rcsb.org/download/6la8.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6la8.pdb.gz\n", "Downloading https://files.rcsb.org/download/6la9.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6la9.pdb.gz\n", "Downloading https://files.rcsb.org/download/6lab.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6lab.pdb.gz\n", "Downloading https://files.rcsb.org/download/6ler.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6ler.pdb.gz\n", "Downloading https://files.rcsb.org/download/6m2m.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6m2m.pdb.gz\n", "Downloading https://files.rcsb.org/download/6m3v.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6m3v.pdb.gz\n", "Downloading https://files.rcsb.org/download/6m44.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6m44.pdb.gz\n", "Downloading https://files.rcsb.org/download/6m4d.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6m4d.pdb.gz\n", "Downloading https://files.rcsb.org/download/6m4g.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6m4g.pdb.gz\n", "Downloading https://files.rcsb.org/download/6m4h.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6m4h.pdb.gz\n", "Downloading https://files.rcsb.org/download/6muo.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6muo.pdb.gz\n", "Downloading https://files.rcsb.org/download/6mup.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6mup.pdb.gz\n", "Downloading https://files.rcsb.org/download/6n1z.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6n1z.pdb.gz\n", "Downloading https://files.rcsb.org/download/6ne3.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6ne3.pdb.gz\n", "Downloading https://files.rcsb.org/download/6nj9.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6nj9.pdb.gz\n", "Downloading https://files.rcsb.org/download/6nn6.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6nn6.pdb.gz\n", "Downloading https://files.rcsb.org/download/6nog.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6nog.pdb.gz\n", "Downloading https://files.rcsb.org/download/6nqa.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6nqa.pdb.gz\n", "Downloading https://files.rcsb.org/download/6o1d.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6o1d.pdb.gz\n", "Downloading https://files.rcsb.org/download/6o96.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6o96.pdb.gz\n", "Downloading https://files.rcsb.org/download/6om3.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6om3.pdb.gz\n", "Downloading https://files.rcsb.org/download/6pa7.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6pa7.pdb.gz\n", "Downloading https://files.rcsb.org/download/6pwe.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6pwe.pdb.gz\n", "Downloading https://files.rcsb.org/download/6pwf.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6pwf.pdb.gz\n", "Downloading https://files.rcsb.org/download/6pwv.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6pwv.pdb.gz\n", "Downloading https://files.rcsb.org/download/6pww.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6pww.pdb.gz\n", "Downloading https://files.rcsb.org/download/6pwx.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6pwx.pdb.gz\n", "Downloading https://files.rcsb.org/download/6qld.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6qld.pdb.gz\n", "Downloading https://files.rcsb.org/download/6r0c.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6r0c.pdb.gz\n", "Downloading https://files.rcsb.org/download/6r1t.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6r1t.pdb.gz\n", "Downloading https://files.rcsb.org/download/6r1u.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6r1u.pdb.gz\n", "Downloading https://files.rcsb.org/download/6r25.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6r25.pdb.gz\n", "Downloading https://files.rcsb.org/download/6r8y.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6r8y.pdb.gz\n", "Downloading https://files.rcsb.org/download/6r8z.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6r8z.pdb.gz\n", "Downloading https://files.rcsb.org/download/6r90.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6r90.pdb.gz\n", "Downloading https://files.rcsb.org/download/6r91.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6r91.pdb.gz\n", "Downloading https://files.rcsb.org/download/6r92.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6r92.pdb.gz\n", "Downloading https://files.rcsb.org/download/6r93.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6r93.pdb.gz\n", "Downloading https://files.rcsb.org/download/6r94.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6r94.pdb.gz\n", "Downloading https://files.rcsb.org/download/6rny.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6rny.pdb.gz\n", "Downloading https://files.rcsb.org/download/6ryr.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6ryr.pdb.gz\n", "Downloading https://files.rcsb.org/download/6ryu.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6ryu.pdb.gz\n", "Downloading https://files.rcsb.org/download/6s01.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6s01.pdb.gz\n", "Downloading https://files.rcsb.org/download/6se0.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6se0.pdb.gz\n", "Downloading https://files.rcsb.org/download/6se6.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6se6.pdb.gz\n", "Downloading https://files.rcsb.org/download/6see.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6see.pdb.gz\n", "Downloading https://files.rcsb.org/download/6sef.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6sef.pdb.gz\n", "Downloading https://files.rcsb.org/download/6seg.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6seg.pdb.gz\n", "Downloading https://files.rcsb.org/download/6t79.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6t79.pdb.gz\n", "Downloading https://files.rcsb.org/download/6t7a.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6t7a.pdb.gz\n", "Downloading https://files.rcsb.org/download/6t7b.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6t7b.pdb.gz\n", "Downloading https://files.rcsb.org/download/6t7c.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6t7c.pdb.gz\n", "Downloading https://files.rcsb.org/download/6t7d.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6t7d.pdb.gz\n", "Downloading https://files.rcsb.org/download/6t90.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6t90.pdb.gz\n", "Downloading https://files.rcsb.org/download/6t93.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6t93.pdb.gz\n", "Downloading https://files.rcsb.org/download/6t9l.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6t9l.pdb.gz\n", "Downloading https://files.rcsb.org/download/6tem.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6tem.pdb.gz\n", "Downloading https://files.rcsb.org/download/6ugm.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6ugm.pdb.gz\n", "Downloading https://files.rcsb.org/download/6uh5.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6uh5.pdb.gz\n", "Downloading https://files.rcsb.org/download/6uph.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6uph.pdb.gz\n", "Downloading https://files.rcsb.org/download/6upk.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6upk.pdb.gz\n", "Downloading https://files.rcsb.org/download/6upl.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6upl.pdb.gz\n", "Downloading https://files.rcsb.org/download/6usj.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6usj.pdb.gz\n", "Downloading https://files.rcsb.org/download/6v2k.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6v2k.pdb.gz\n", "Downloading https://files.rcsb.org/download/6ven.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6ven.pdb.gz\n", "Downloading https://files.rcsb.org/download/6vyp.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6vyp.pdb.gz\n", "Downloading https://files.rcsb.org/download/6w5i.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6w5i.pdb.gz\n", "Downloading https://files.rcsb.org/download/6wkr.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6wkr.pdb.gz\n", "Downloading https://files.rcsb.org/download/6wz5.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6wz5.pdb.gz\n", "Downloading https://files.rcsb.org/download/6wz9.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6wz9.pdb.gz\n", "Downloading https://files.rcsb.org/download/6x0n.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6x0n.pdb.gz\n", "Downloading https://files.rcsb.org/download/6x59.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6x59.pdb.gz\n", "Downloading https://files.rcsb.org/download/6x5a.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6x5a.pdb.gz\n", "Downloading https://files.rcsb.org/download/6xjd.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6xjd.pdb.gz\n", "Downloading https://files.rcsb.org/download/6y5d.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6y5d.pdb.gz\n", "Downloading https://files.rcsb.org/download/6y5e.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6y5e.pdb.gz\n", "Downloading https://files.rcsb.org/download/6yn1.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6yn1.pdb.gz\n", "Downloading https://files.rcsb.org/download/6yov.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6yov.pdb.gz\n", "Downloading https://files.rcsb.org/download/6z6p.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6z6p.pdb.gz\n", "Downloading https://files.rcsb.org/download/6zhx.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6zhx.pdb.gz\n", "Downloading https://files.rcsb.org/download/6zhy.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6zhy.pdb.gz\n", "Downloading https://files.rcsb.org/download/7a08.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7a08.pdb.gz\n", "Downloading https://files.rcsb.org/download/7at8.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7at8.pdb.gz\n", "Downloading https://files.rcsb.org/download/7bp2.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7bp2.pdb.gz\n", "Downloading https://files.rcsb.org/download/7bp4.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7bp4.pdb.gz\n", "Downloading https://files.rcsb.org/download/7bp5.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7bp5.pdb.gz\n", "Downloading https://files.rcsb.org/download/7bp6.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7bp6.pdb.gz\n", "Downloading https://files.rcsb.org/download/7bwd.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7bwd.pdb.gz\n", "Downloading https://files.rcsb.org/download/7bxt.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7bxt.pdb.gz\n", "Downloading https://files.rcsb.org/download/7by0.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7by0.pdb.gz\n", "Downloading https://files.rcsb.org/download/7c0m.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7c0m.pdb.gz\n", "Downloading https://files.rcsb.org/download/7c7x.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7c7x.pdb.gz\n", "Downloading https://files.rcsb.org/download/7ccq.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7ccq.pdb.gz\n", "Downloading https://files.rcsb.org/download/7ccr.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7ccr.pdb.gz\n", "Downloading https://files.rcsb.org/download/7cro.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7cro.pdb.gz\n", "Downloading https://files.rcsb.org/download/7crp.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7crp.pdb.gz\n", "Downloading https://files.rcsb.org/download/7crq.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7crq.pdb.gz\n", "Downloading https://files.rcsb.org/download/7crr.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7crr.pdb.gz\n", "Downloading https://files.rcsb.org/download/7d1z.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7d1z.pdb.gz\n", "Downloading https://files.rcsb.org/download/7d20.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7d20.pdb.gz\n", "Downloading https://files.rcsb.org/download/7dbp.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7dbp.pdb.gz\n", "Downloading https://files.rcsb.org/download/7enn.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7enn.pdb.gz\n", "Downloading https://files.rcsb.org/download/7jo9.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7jo9.pdb.gz\n", "Downloading https://files.rcsb.org/download/7joa.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7joa.pdb.gz\n", "Downloading https://files.rcsb.org/download/7jzv.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7jzv.pdb.gz\n", "Downloading https://files.rcsb.org/download/7k5x.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7k5x.pdb.gz\n", "Downloading https://files.rcsb.org/download/7k5y.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7k5y.pdb.gz\n", "Downloading https://files.rcsb.org/download/7k60.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7k60.pdb.gz\n", "Downloading https://files.rcsb.org/download/7k61.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7k61.pdb.gz\n", "Downloading https://files.rcsb.org/download/7k63.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7k63.pdb.gz\n", "Downloading https://files.rcsb.org/download/7k6p.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7k6p.pdb.gz\n", "Downloading https://files.rcsb.org/download/7k6q.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7k6q.pdb.gz\n", "Downloading https://files.rcsb.org/download/7k78.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7k78.pdb.gz\n", "Downloading https://files.rcsb.org/download/7kbd.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7kbd.pdb.gz\n", "Downloading https://files.rcsb.org/download/7kbe.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7kbe.pdb.gz\n", "Downloading https://files.rcsb.org/download/7kbf.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7kbf.pdb.gz\n", "Downloading https://files.rcsb.org/download/7ktq.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7ktq.pdb.gz\n", "Downloading https://files.rcsb.org/download/7mbm.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7mbm.pdb.gz\n", "Downloading https://files.rcsb.org/download/7mbn.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7mbn.pdb.gz\n", "Downloading https://files.rcsb.org/download/7otq.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7otq.pdb.gz\n", "Downloading https://files.rcsb.org/download/7pj1.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7pj1.pdb.gz\n", "Downloading https://files.rcsb.org/download/1id3.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1id3.pdb.gz\n", "Downloading https://files.rcsb.org/download/1zla.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1zla.pdb.gz\n", "Downloading https://files.rcsb.org/download/2cv5.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/2cv5.pdb.gz\n", "Downloading https://files.rcsb.org/download/2hio.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/2hio.pdb.gz\n", "Downloading https://files.rcsb.org/download/2hue.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/2hue.pdb.gz\n", "Downloading https://files.rcsb.org/download/2io5.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/2io5.pdb.gz\n", "Downloading https://files.rcsb.org/download/2yfw.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/2yfw.pdb.gz\n", "Downloading https://files.rcsb.org/download/3nqj.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3nqj.pdb.gz\n", "Downloading https://files.rcsb.org/download/3nqu.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3nqu.pdb.gz\n", "Downloading https://files.rcsb.org/download/3r45.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3r45.pdb.gz\n", "Downloading https://files.rcsb.org/download/3x1v.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3x1v.pdb.gz\n", "Downloading https://files.rcsb.org/download/4eo5.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4eo5.pdb.gz\n", "Downloading https://files.rcsb.org/download/4h9n.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4h9n.pdb.gz\n", "Downloading https://files.rcsb.org/download/4h9o.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4h9o.pdb.gz\n", "Downloading https://files.rcsb.org/download/4h9p.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4h9p.pdb.gz\n", "Downloading https://files.rcsb.org/download/4h9q.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4h9q.pdb.gz\n", "Downloading https://files.rcsb.org/download/4h9r.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4h9r.pdb.gz\n", "Downloading https://files.rcsb.org/download/4h9s.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4h9s.pdb.gz\n", "Downloading https://files.rcsb.org/download/4hga.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4hga.pdb.gz\n", "Downloading https://files.rcsb.org/download/4uuz.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4uuz.pdb.gz\n", "Downloading https://files.rcsb.org/download/4z2m.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4z2m.pdb.gz\n", "Downloading https://files.rcsb.org/download/4zbj.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4zbj.pdb.gz\n", "Downloading https://files.rcsb.org/download/5bnv.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5bnv.pdb.gz\n", "Downloading https://files.rcsb.org/download/5bnx.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5bnx.pdb.gz\n", "Downloading https://files.rcsb.org/download/5bo0.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5bo0.pdb.gz\n", "Downloading https://files.rcsb.org/download/5bs7.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5bs7.pdb.gz\n", "Downloading https://files.rcsb.org/download/5bsa.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5bsa.pdb.gz\n", "Downloading https://files.rcsb.org/download/5c3i.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5c3i.pdb.gz\n", "Downloading https://files.rcsb.org/download/5e5a.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5e5a.pdb.gz\n", "Downloading https://files.rcsb.org/download/5f99.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5f99.pdb.gz\n", "Downloading https://files.rcsb.org/download/5gt0.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5gt0.pdb.gz\n", "Downloading https://files.rcsb.org/download/5ja4.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5ja4.pdb.gz\n", "Downloading https://files.rcsb.org/download/5kdm.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5kdm.pdb.gz\n", "Downloading https://files.rcsb.org/download/5nl0.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5nl0.pdb.gz\n", "Downloading https://files.rcsb.org/download/5oxv.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5oxv.pdb.gz\n", "Downloading https://files.rcsb.org/download/5oy7.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5oy7.pdb.gz\n", "Downloading https://files.rcsb.org/download/5z23.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5z23.pdb.gz\n", "Downloading https://files.rcsb.org/download/5zba.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5zba.pdb.gz\n", "Downloading https://files.rcsb.org/download/5zbb.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5zbb.pdb.gz\n", "Downloading https://files.rcsb.org/download/6nzo.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6nzo.pdb.gz\n", "Downloading https://files.rcsb.org/download/6o22.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6o22.pdb.gz\n", "Downloading https://files.rcsb.org/download/6px1.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6px1.pdb.gz\n", "Downloading https://files.rcsb.org/download/6px3.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6px3.pdb.gz\n", "Downloading https://files.rcsb.org/download/6xws.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6xws.pdb.gz\n", "Downloading https://files.rcsb.org/download/6xwt.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6xwt.pdb.gz\n", "Downloading https://files.rcsb.org/download/7ciz.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7ciz.pdb.gz\n", "Downloading https://files.rcsb.org/download/7cj0.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7cj0.pdb.gz\n", "Downloading https://files.rcsb.org/download/3daw.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3daw.pdb.gz\n", "Downloading https://files.rcsb.org/download/3j0s.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3j0s.pdb.gz\n", "Downloading https://files.rcsb.org/download/5yu8.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5yu8.pdb.gz\n", "Downloading https://files.rcsb.org/download/6rsw.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6rsw.pdb.gz\n", "Downloading https://files.rcsb.org/download/6yp9.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6yp9.pdb.gz\n", "Downloading https://files.rcsb.org/download/6uby.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6uby.pdb.gz\n", "Downloading https://files.rcsb.org/download/6uc0.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6uc0.pdb.gz\n", "Downloading https://files.rcsb.org/download/6uc4.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6uc4.pdb.gz\n", "Downloading https://files.rcsb.org/download/6vao.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6vao.pdb.gz\n", "Downloading https://files.rcsb.org/download/6k15.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6k15.pdb.gz\n", "Downloading https://files.rcsb.org/download/6v8o.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6v8o.pdb.gz\n", "Downloading https://files.rcsb.org/download/2dyp.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/2dyp.pdb.gz\n", "Downloading https://files.rcsb.org/download/3d2u.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3d2u.pdb.gz\n", "Downloading https://files.rcsb.org/download/1dfk.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1dfk.pdb.gz\n", "Downloading https://files.rcsb.org/download/1dfl.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1dfl.pdb.gz\n", "Downloading https://files.rcsb.org/download/1kk8.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1kk8.pdb.gz\n", "Downloading https://files.rcsb.org/download/2mys.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/2mys.pdb.gz\n", "Downloading https://files.rcsb.org/download/2w4a.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/2w4a.pdb.gz\n", "Downloading https://files.rcsb.org/download/2w4g.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/2w4g.pdb.gz\n", "Downloading https://files.rcsb.org/download/2w4h.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/2w4h.pdb.gz\n", "Downloading https://files.rcsb.org/download/2w4t.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/2w4t.pdb.gz\n", "Downloading https://files.rcsb.org/download/2w4v.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/2w4v.pdb.gz\n", "Downloading https://files.rcsb.org/download/2w4w.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/2w4w.pdb.gz\n", "Downloading https://files.rcsb.org/download/5h53.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5h53.pdb.gz\n", "Downloading https://files.rcsb.org/download/4byf.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4byf.pdb.gz\n", "Downloading https://files.rcsb.org/download/4l79.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4l79.pdb.gz\n", "Downloading https://files.rcsb.org/download/5v7x.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5v7x.pdb.gz\n", "Downloading https://files.rcsb.org/download/6c1d.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6c1d.pdb.gz\n", "Downloading https://files.rcsb.org/download/6c1g.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6c1g.pdb.gz\n", "Downloading https://files.rcsb.org/download/6c1h.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6c1h.pdb.gz\n", "Downloading https://files.rcsb.org/download/6ui4.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6ui4.pdb.gz\n", "Downloading https://files.rcsb.org/download/6bih.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6bih.pdb.gz\n", "Downloading https://files.rcsb.org/download/6bnp.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6bnp.pdb.gz\n", "Downloading https://files.rcsb.org/download/6bnq.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6bnq.pdb.gz\n", "Downloading https://files.rcsb.org/download/6bnv.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6bnv.pdb.gz\n", "Downloading https://files.rcsb.org/download/6bnw.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6bnw.pdb.gz\n", "Downloading https://files.rcsb.org/download/7kch.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7kch.pdb.gz\n", "Downloading https://files.rcsb.org/download/1d4x.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1d4x.pdb.gz\n", "Downloading https://files.rcsb.org/download/1esv.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1esv.pdb.gz\n", "Downloading https://files.rcsb.org/download/1mdu.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1mdu.pdb.gz\n", "Downloading https://files.rcsb.org/download/1nlv.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1nlv.pdb.gz\n", "Downloading https://files.rcsb.org/download/1nm1.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1nm1.pdb.gz\n", "Downloading https://files.rcsb.org/download/1nmd.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1nmd.pdb.gz\n", "Downloading https://files.rcsb.org/download/1p8z.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1p8z.pdb.gz\n", "Downloading https://files.rcsb.org/download/1yag.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1yag.pdb.gz\n", "Downloading https://files.rcsb.org/download/1yvn.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1yvn.pdb.gz\n", "Downloading https://files.rcsb.org/download/2ff3.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/2ff3.pdb.gz\n", "Downloading https://files.rcsb.org/download/2ff6.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/2ff6.pdb.gz\n", "Downloading https://files.rcsb.org/download/3a5l.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3a5l.pdb.gz\n", "Downloading https://files.rcsb.org/download/3a5o.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3a5o.pdb.gz\n", "Downloading https://files.rcsb.org/download/3ci5.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3ci5.pdb.gz\n", "Downloading https://files.rcsb.org/download/3cip.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3cip.pdb.gz\n", "Downloading https://files.rcsb.org/download/3cjb.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3cjb.pdb.gz\n", "Downloading https://files.rcsb.org/download/3cjc.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3cjc.pdb.gz\n", "Downloading https://files.rcsb.org/download/4cbu.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4cbu.pdb.gz\n", "Downloading https://files.rcsb.org/download/4cbw.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4cbw.pdb.gz\n", "Downloading https://files.rcsb.org/download/4cbx.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4cbx.pdb.gz\n", "Downloading https://files.rcsb.org/download/4pkg.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4pkg.pdb.gz\n", "Downloading https://files.rcsb.org/download/4pkh.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4pkh.pdb.gz\n", "Downloading https://files.rcsb.org/download/4z94.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4z94.pdb.gz\n", "Downloading https://files.rcsb.org/download/5mvv.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5mvv.pdb.gz\n", "Downloading https://files.rcsb.org/download/5ubo.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5ubo.pdb.gz\n", "Downloading https://files.rcsb.org/download/6i4d.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6i4d.pdb.gz\n", "Downloading https://files.rcsb.org/download/6i4e.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6i4e.pdb.gz\n", "Downloading https://files.rcsb.org/download/6i4f.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6i4f.pdb.gz\n", "Downloading https://files.rcsb.org/download/6i4g.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6i4g.pdb.gz\n", "Downloading https://files.rcsb.org/download/6i4h.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6i4h.pdb.gz\n", "Downloading https://files.rcsb.org/download/6i4i.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6i4i.pdb.gz\n", "Downloading https://files.rcsb.org/download/6i4j.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6i4j.pdb.gz\n", "Downloading https://files.rcsb.org/download/6i4k.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6i4k.pdb.gz\n", "Downloading https://files.rcsb.org/download/6i4l.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6i4l.pdb.gz\n", "Downloading https://files.rcsb.org/download/6i4m.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6i4m.pdb.gz\n", "Downloading https://files.rcsb.org/download/2a3z.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/2a3z.pdb.gz\n", "Downloading https://files.rcsb.org/download/2a40.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/2a40.pdb.gz\n", "Downloading https://files.rcsb.org/download/2a41.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/2a41.pdb.gz\n", "Downloading https://files.rcsb.org/download/2d1k.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/2d1k.pdb.gz\n", "Downloading https://files.rcsb.org/download/3m1f.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3m1f.pdb.gz\n", "Downloading https://files.rcsb.org/download/3mn5.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3mn5.pdb.gz\n", "Downloading https://files.rcsb.org/download/3ue5.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3ue5.pdb.gz\n", "Downloading https://files.rcsb.org/download/4efh.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4efh.pdb.gz\n", "Downloading https://files.rcsb.org/download/6jbk.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6jbk.pdb.gz\n", "Downloading https://files.rcsb.org/download/6jh8.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6jh8.pdb.gz\n", "Downloading https://files.rcsb.org/download/6jh9.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6jh9.pdb.gz\n", "Downloading https://files.rcsb.org/download/5flz.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5flz.pdb.gz\n", "Downloading https://files.rcsb.org/download/5fm1.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5fm1.pdb.gz\n", "Downloading https://files.rcsb.org/download/6tf9.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6tf9.pdb.gz\n", "Failed to download https://files.rcsb.org/download/6tf9.pdb.gz\n", "Downloading https://files.rcsb.org/download/6v6b.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6v6b.pdb.gz\n", "Downloading https://files.rcsb.org/download/6v6s.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6v6s.pdb.gz\n", "Failed to download https://files.rcsb.org/download/6v6s.pdb.gz\n", "Downloading https://files.rcsb.org/download/7as4.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7as4.pdb.gz\n", "Failed to download https://files.rcsb.org/download/7as4.pdb.gz\n", "Downloading https://files.rcsb.org/download/7m2z.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7m2z.pdb.gz\n", "Downloading https://files.rcsb.org/download/7anz.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7anz.pdb.gz\n", "Downloading https://files.rcsb.org/download/4a7f.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4a7f.pdb.gz\n", "Downloading https://files.rcsb.org/download/4a7h.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4a7h.pdb.gz\n", "Downloading https://files.rcsb.org/download/4a7l.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4a7l.pdb.gz\n", "Downloading https://files.rcsb.org/download/6tu7.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6tu7.pdb.gz\n", "Failed to download https://files.rcsb.org/download/6tu7.pdb.gz\n", "Downloading https://files.rcsb.org/download/7aln.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7aln.pdb.gz\n", "Downloading https://files.rcsb.org/download/7r91.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7r91.pdb.gz\n", "Downloading https://files.rcsb.org/download/7rb8.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7rb8.pdb.gz\n", "Downloading https://files.rcsb.org/download/7rb9.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7rb9.pdb.gz\n", "Downloading https://files.rcsb.org/download/2v51.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/2v51.pdb.gz\n", "Downloading https://files.rcsb.org/download/2v52.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/2v52.pdb.gz\n", "Downloading https://files.rcsb.org/download/4b1u.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4b1u.pdb.gz\n", "Downloading https://files.rcsb.org/download/4b1v.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4b1v.pdb.gz\n", "Downloading https://files.rcsb.org/download/4b1w.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4b1w.pdb.gz\n", "Downloading https://files.rcsb.org/download/4b1x.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4b1x.pdb.gz\n", "Downloading https://files.rcsb.org/download/4b1y.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4b1y.pdb.gz\n", "Downloading https://files.rcsb.org/download/1es7.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1es7.pdb.gz\n", "Downloading https://files.rcsb.org/download/1rew.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1rew.pdb.gz\n", "Downloading https://files.rcsb.org/download/2goo.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/2goo.pdb.gz\n", "Downloading https://files.rcsb.org/download/2h62.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/2h62.pdb.gz\n", "Downloading https://files.rcsb.org/download/2h64.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/2h64.pdb.gz\n", "Downloading https://files.rcsb.org/download/2pjy.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/2pjy.pdb.gz\n", "Downloading https://files.rcsb.org/download/2qj9.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/2qj9.pdb.gz\n", "Downloading https://files.rcsb.org/download/2qja.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/2qja.pdb.gz\n", "Downloading https://files.rcsb.org/download/2qjb.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/2qjb.pdb.gz\n", "Downloading https://files.rcsb.org/download/3evs.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3evs.pdb.gz\n", "Downloading https://files.rcsb.org/download/3kfd.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3kfd.pdb.gz\n", "Downloading https://files.rcsb.org/download/3qb4.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3qb4.pdb.gz\n", "Downloading https://files.rcsb.org/download/4fao.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4fao.pdb.gz\n", "Downloading https://files.rcsb.org/download/6mac.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6mac.pdb.gz\n", "Downloading https://files.rcsb.org/download/6sf1.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6sf1.pdb.gz\n", "Downloading https://files.rcsb.org/download/6sf2.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6sf2.pdb.gz\n", "Downloading https://files.rcsb.org/download/6sf3.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6sf3.pdb.gz\n", "Downloading https://files.rcsb.org/download/1lx5.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1lx5.pdb.gz\n", "Downloading https://files.rcsb.org/download/1nys.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1nys.pdb.gz\n", "Downloading https://files.rcsb.org/download/1nyu.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1nyu.pdb.gz\n", "Downloading https://files.rcsb.org/download/1s4y.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1s4y.pdb.gz\n", "Downloading https://files.rcsb.org/download/7l0j.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7l0j.pdb.gz\n", "Downloading https://files.rcsb.org/download/1efp.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1efp.pdb.gz\n", "Downloading https://files.rcsb.org/download/1efv.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1efv.pdb.gz\n", "Downloading https://files.rcsb.org/download/1o94.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1o94.pdb.gz\n", "Downloading https://files.rcsb.org/download/1o95.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1o95.pdb.gz\n", "Downloading https://files.rcsb.org/download/1o96.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1o96.pdb.gz\n", "Downloading https://files.rcsb.org/download/1o97.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1o97.pdb.gz\n", "Downloading https://files.rcsb.org/download/1t9g.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1t9g.pdb.gz\n", "Downloading https://files.rcsb.org/download/2a1t.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/2a1t.pdb.gz\n", "Downloading https://files.rcsb.org/download/2a1u.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/2a1u.pdb.gz\n", "Downloading https://files.rcsb.org/download/3clr.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3clr.pdb.gz\n", "Downloading https://files.rcsb.org/download/3cls.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3cls.pdb.gz\n", "Downloading https://files.rcsb.org/download/3clt.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3clt.pdb.gz\n", "Downloading https://files.rcsb.org/download/3clu.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3clu.pdb.gz\n", "Downloading https://files.rcsb.org/download/4kpu.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4kpu.pdb.gz\n", "Downloading https://files.rcsb.org/download/4l2i.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4l2i.pdb.gz\n", "Downloading https://files.rcsb.org/download/5ol2.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5ol2.pdb.gz\n", "Downloading https://files.rcsb.org/download/5ow0.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5ow0.pdb.gz\n", "Downloading https://files.rcsb.org/download/7koe.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7koe.pdb.gz\n", "Downloading https://files.rcsb.org/download/3m99.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3m99.pdb.gz\n", "Downloading https://files.rcsb.org/download/3mhh.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3mhh.pdb.gz\n", "Downloading https://files.rcsb.org/download/3mhs.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3mhs.pdb.gz\n", "Downloading https://files.rcsb.org/download/4fip.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4fip.pdb.gz\n", "Downloading https://files.rcsb.org/download/4fjc.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4fjc.pdb.gz\n", "Downloading https://files.rcsb.org/download/4fk5.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4fk5.pdb.gz\n", "Downloading https://files.rcsb.org/download/4w4u.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4w4u.pdb.gz\n", "Downloading https://files.rcsb.org/download/4wa6.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4wa6.pdb.gz\n", "Downloading https://files.rcsb.org/download/6aqr.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6aqr.pdb.gz\n", "Downloading https://files.rcsb.org/download/6tbm.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6tbm.pdb.gz\n", "Downloading https://files.rcsb.org/download/6hqa.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6hqa.pdb.gz\n", "Downloading https://files.rcsb.org/download/6mzc.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6mzc.pdb.gz\n", "Downloading https://files.rcsb.org/download/6mzd.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6mzd.pdb.gz\n", "Downloading https://files.rcsb.org/download/6mzl.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6mzl.pdb.gz\n", "Downloading https://files.rcsb.org/download/6mzm.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6mzm.pdb.gz\n", "Downloading https://files.rcsb.org/download/6t9i.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6t9i.pdb.gz\n", "Downloading https://files.rcsb.org/download/6t9k.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6t9k.pdb.gz\n", "Downloading https://files.rcsb.org/download/6tb4.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6tb4.pdb.gz\n", "Downloading https://files.rcsb.org/download/1w63.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1w63.pdb.gz\n", "Downloading https://files.rcsb.org/download/2jkr.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/2jkr.pdb.gz\n", "Downloading https://files.rcsb.org/download/2jkt.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/2jkt.pdb.gz\n", "Downloading https://files.rcsb.org/download/2vgl.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/2vgl.pdb.gz\n", "Downloading https://files.rcsb.org/download/2xa7.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/2xa7.pdb.gz\n", "Downloading https://files.rcsb.org/download/4hmy.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4hmy.pdb.gz\n", "Downloading https://files.rcsb.org/download/4p6z.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4p6z.pdb.gz\n", "Downloading https://files.rcsb.org/download/4uqi.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4uqi.pdb.gz\n", "Downloading https://files.rcsb.org/download/6cm9.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6cm9.pdb.gz\n", "Downloading https://files.rcsb.org/download/6cri.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6cri.pdb.gz\n", "Downloading https://files.rcsb.org/download/6d83.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6d83.pdb.gz\n", "Downloading https://files.rcsb.org/download/6d84.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6d84.pdb.gz\n", "Downloading https://files.rcsb.org/download/6dff.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6dff.pdb.gz\n", "Downloading https://files.rcsb.org/download/6owo.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6owo.pdb.gz\n", "Downloading https://files.rcsb.org/download/6oxl.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6oxl.pdb.gz\n", "Downloading https://files.rcsb.org/download/6qh5.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6qh5.pdb.gz\n", "Downloading https://files.rcsb.org/download/6qh6.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6qh6.pdb.gz\n", "Downloading https://files.rcsb.org/download/6qh7.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6qh7.pdb.gz\n", "Downloading https://files.rcsb.org/download/6uri.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6uri.pdb.gz\n", "Downloading https://files.rcsb.org/download/6yae.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6yae.pdb.gz\n", "Downloading https://files.rcsb.org/download/7p3x.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7p3x.pdb.gz\n", "Downloading https://files.rcsb.org/download/3tjz.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3tjz.pdb.gz\n", "Downloading https://files.rcsb.org/download/4nee.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4nee.pdb.gz\n", "Downloading https://files.rcsb.org/download/5mu7.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5mu7.pdb.gz\n", "Downloading https://files.rcsb.org/download/6yaf.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6yaf.pdb.gz\n", "Downloading https://files.rcsb.org/download/6yah.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6yah.pdb.gz\n", "Downloading https://files.rcsb.org/download/7p3y.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7p3y.pdb.gz\n", "Downloading https://files.rcsb.org/download/7p3z.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7p3z.pdb.gz\n", "Downloading https://files.rcsb.org/download/1bii.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1bii.pdb.gz\n", "Downloading https://files.rcsb.org/download/1s7q.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1s7q.pdb.gz\n", "Downloading https://files.rcsb.org/download/1s7r.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1s7r.pdb.gz\n", "Downloading https://files.rcsb.org/download/1s7s.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1s7s.pdb.gz\n", "Downloading https://files.rcsb.org/download/1s7t.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1s7t.pdb.gz\n", "Downloading https://files.rcsb.org/download/1s7u.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1s7u.pdb.gz\n", "Downloading https://files.rcsb.org/download/1s7v.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1s7v.pdb.gz\n", "Downloading https://files.rcsb.org/download/1s7w.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1s7w.pdb.gz\n", "Downloading https://files.rcsb.org/download/1s7x.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1s7x.pdb.gz\n", "Downloading https://files.rcsb.org/download/6at5.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6at5.pdb.gz\n", "Downloading https://files.rcsb.org/download/6avf.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6avf.pdb.gz\n", "Downloading https://files.rcsb.org/download/6avg.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6avg.pdb.gz\n", "Downloading https://files.rcsb.org/download/6eny.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6eny.pdb.gz\n", "Downloading https://files.rcsb.org/download/6gb5.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6gb5.pdb.gz\n", "Downloading https://files.rcsb.org/download/6gb7.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6gb7.pdb.gz\n", "Downloading https://files.rcsb.org/download/6h6d.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6h6d.pdb.gz\n", "Downloading https://files.rcsb.org/download/6h6h.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6h6h.pdb.gz\n", "Downloading https://files.rcsb.org/download/3zif.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3zif.pdb.gz\n", "Downloading https://files.rcsb.org/download/4v4u.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4v4u.pdb.gz\n", "Failed to download https://files.rcsb.org/download/4v4u.pdb.gz\n", "Downloading https://files.rcsb.org/download/5tx1.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5tx1.pdb.gz\n", "Failed to download https://files.rcsb.org/download/5tx1.pdb.gz\n", "Downloading https://files.rcsb.org/download/6b1t.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6b1t.pdb.gz\n", "Failed to download https://files.rcsb.org/download/6b1t.pdb.gz\n", "Downloading https://files.rcsb.org/download/6yba.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6yba.pdb.gz\n", "Downloading https://files.rcsb.org/download/6z7n.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6z7n.pdb.gz\n", "Downloading https://files.rcsb.org/download/7rd1.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7rd1.pdb.gz\n", "Failed to download https://files.rcsb.org/download/7rd1.pdb.gz\n", "Downloading https://files.rcsb.org/download/7s78.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7s78.pdb.gz\n", "Failed to download https://files.rcsb.org/download/7s78.pdb.gz\n", "Downloading https://files.rcsb.org/download/6cgv.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6cgv.pdb.gz\n", "Downloading https://files.rcsb.org/download/2oox.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/2oox.pdb.gz\n", "Downloading https://files.rcsb.org/download/2ooy.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/2ooy.pdb.gz\n", "Downloading https://files.rcsb.org/download/2qr1.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/2qr1.pdb.gz\n", "Downloading https://files.rcsb.org/download/2qrc.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/2qrc.pdb.gz\n", "Downloading https://files.rcsb.org/download/2qrd.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/2qrd.pdb.gz\n", "Downloading https://files.rcsb.org/download/2qre.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/2qre.pdb.gz\n", "Downloading https://files.rcsb.org/download/2v8q.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/2v8q.pdb.gz\n", "Downloading https://files.rcsb.org/download/2v92.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/2v92.pdb.gz\n", "Downloading https://files.rcsb.org/download/2v9j.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/2v9j.pdb.gz\n", "Downloading https://files.rcsb.org/download/2y8l.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/2y8l.pdb.gz\n", "Downloading https://files.rcsb.org/download/2y8q.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/2y8q.pdb.gz\n", "Downloading https://files.rcsb.org/download/2ya3.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/2ya3.pdb.gz\n", "Downloading https://files.rcsb.org/download/3t4n.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3t4n.pdb.gz\n", "Downloading https://files.rcsb.org/download/3tdh.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3tdh.pdb.gz\n", "Downloading https://files.rcsb.org/download/3te5.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3te5.pdb.gz\n", "Downloading https://files.rcsb.org/download/4eag.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4eag.pdb.gz\n", "Downloading https://files.rcsb.org/download/4eai.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4eai.pdb.gz\n", "Downloading https://files.rcsb.org/download/4eaj.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4eaj.pdb.gz\n", "Downloading https://files.rcsb.org/download/4eak.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4eak.pdb.gz\n", "Downloading https://files.rcsb.org/download/4eal.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4eal.pdb.gz\n", "Downloading https://files.rcsb.org/download/4bcf.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4bcf.pdb.gz\n", "Downloading https://files.rcsb.org/download/5l1z.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5l1z.pdb.gz\n", "Downloading https://files.rcsb.org/download/6cyt.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6cyt.pdb.gz\n", "Downloading https://files.rcsb.org/download/7jv7.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7jv7.pdb.gz\n", "Downloading https://files.rcsb.org/download/7kpv.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7kpv.pdb.gz\n", "Downloading https://files.rcsb.org/download/7kpx.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7kpx.pdb.gz\n", "Downloading https://files.rcsb.org/download/3ovu.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3ovu.pdb.gz\n", "Downloading https://files.rcsb.org/download/3s48.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3s48.pdb.gz\n", "Downloading https://files.rcsb.org/download/3szk.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3szk.pdb.gz\n", "Downloading https://files.rcsb.org/download/4fc3.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4fc3.pdb.gz\n", "Downloading https://files.rcsb.org/download/4wjg.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4wjg.pdb.gz\n", "Downloading https://files.rcsb.org/download/5vmm.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5vmm.pdb.gz\n", "Downloading https://files.rcsb.org/download/3j4q.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3j4q.pdb.gz\n", "Downloading https://files.rcsb.org/download/3j4r.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3j4r.pdb.gz\n", "Downloading https://files.rcsb.org/download/3tnp.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3tnp.pdb.gz\n", "Downloading https://files.rcsb.org/download/3tnq.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3tnq.pdb.gz\n", "Downloading https://files.rcsb.org/download/4din.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4din.pdb.gz\n", "Downloading https://files.rcsb.org/download/4wbb.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4wbb.pdb.gz\n", "Downloading https://files.rcsb.org/download/4x6q.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4x6q.pdb.gz\n", "Downloading https://files.rcsb.org/download/6bys.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6bys.pdb.gz\n", "Downloading https://files.rcsb.org/download/6no7.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6no7.pdb.gz\n", "Downloading https://files.rcsb.org/download/1hzz.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1hzz.pdb.gz\n", "Downloading https://files.rcsb.org/download/1nm5.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1nm5.pdb.gz\n", "Downloading https://files.rcsb.org/download/1ptj.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1ptj.pdb.gz\n", "Downloading https://files.rcsb.org/download/1u28.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1u28.pdb.gz\n", "Downloading https://files.rcsb.org/download/1u2d.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1u2d.pdb.gz\n", "Downloading https://files.rcsb.org/download/1u2g.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1u2g.pdb.gz\n", "Downloading https://files.rcsb.org/download/1xlt.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1xlt.pdb.gz\n", "Downloading https://files.rcsb.org/download/2bru.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/2bru.pdb.gz\n", "Downloading https://files.rcsb.org/download/2fr8.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/2fr8.pdb.gz\n", "Downloading https://files.rcsb.org/download/2frd.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/2frd.pdb.gz\n", "Downloading https://files.rcsb.org/download/2fsv.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/2fsv.pdb.gz\n", "Downloading https://files.rcsb.org/download/2oo5.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/2oo5.pdb.gz\n", "Downloading https://files.rcsb.org/download/2oor.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/2oor.pdb.gz\n", "Downloading https://files.rcsb.org/download/4j16.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4j16.pdb.gz\n", "Downloading https://files.rcsb.org/download/4j1t.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4j1t.pdb.gz\n", "Downloading https://files.rcsb.org/download/4o9u.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4o9u.pdb.gz\n", "Downloading https://files.rcsb.org/download/3iab.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3iab.pdb.gz\n", "Downloading https://files.rcsb.org/download/6agb.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6agb.pdb.gz\n", "Downloading https://files.rcsb.org/download/6ah3.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6ah3.pdb.gz\n", "Downloading https://files.rcsb.org/download/6ahr.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6ahr.pdb.gz\n", "Downloading https://files.rcsb.org/download/6ahu.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6ahu.pdb.gz\n", "Downloading https://files.rcsb.org/download/6cwx.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6cwx.pdb.gz\n", "Downloading https://files.rcsb.org/download/6lt7.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6lt7.pdb.gz\n", "Downloading https://files.rcsb.org/download/6w6v.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6w6v.pdb.gz\n", "Downloading https://files.rcsb.org/download/7c79.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7c79.pdb.gz\n", "Downloading https://files.rcsb.org/download/7c7a.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7c7a.pdb.gz\n", "Downloading https://files.rcsb.org/download/2czv.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/2czv.pdb.gz\n", "Downloading https://files.rcsb.org/download/3wz0.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3wz0.pdb.gz\n", "Downloading https://files.rcsb.org/download/6k0a.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6k0a.pdb.gz\n", "Downloading https://files.rcsb.org/download/6k0b.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6k0b.pdb.gz\n", "Downloading https://files.rcsb.org/download/2ki7.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/2ki7.pdb.gz\n", "Downloading https://files.rcsb.org/download/2zae.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/2zae.pdb.gz\n", "Downloading https://files.rcsb.org/download/1ffu.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1ffu.pdb.gz\n", "Downloading https://files.rcsb.org/download/1ffv.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1ffv.pdb.gz\n", "Downloading https://files.rcsb.org/download/1fiq.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1fiq.pdb.gz\n", "Downloading https://files.rcsb.org/download/1n5w.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1n5w.pdb.gz\n", "Downloading https://files.rcsb.org/download/1n60.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1n60.pdb.gz\n", "Downloading https://files.rcsb.org/download/1n61.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1n61.pdb.gz\n", "Downloading https://files.rcsb.org/download/1n62.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1n62.pdb.gz\n", "Downloading https://files.rcsb.org/download/1n63.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1n63.pdb.gz\n", "Downloading https://files.rcsb.org/download/1rm6.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1rm6.pdb.gz\n", "Downloading https://files.rcsb.org/download/1sb3.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1sb3.pdb.gz\n", "Downloading https://files.rcsb.org/download/1t3q.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1t3q.pdb.gz\n", "Downloading https://files.rcsb.org/download/1zxi.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1zxi.pdb.gz\n", "Downloading https://files.rcsb.org/download/3b9j.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3b9j.pdb.gz\n", "Downloading https://files.rcsb.org/download/3etr.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3etr.pdb.gz\n", "Downloading https://files.rcsb.org/download/3eub.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3eub.pdb.gz\n", "Downloading https://files.rcsb.org/download/3nrz.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3nrz.pdb.gz\n", "Downloading https://files.rcsb.org/download/3ns1.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3ns1.pdb.gz\n", "Downloading https://files.rcsb.org/download/3nvv.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3nvv.pdb.gz\n", "Downloading https://files.rcsb.org/download/3nvw.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3nvw.pdb.gz\n", "Downloading https://files.rcsb.org/download/3nvy.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3nvy.pdb.gz\n", "Downloading https://files.rcsb.org/download/3nvz.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3nvz.pdb.gz\n", "Downloading https://files.rcsb.org/download/3sr6.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3sr6.pdb.gz\n", "Downloading https://files.rcsb.org/download/4zoh.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4zoh.pdb.gz\n", "Downloading https://files.rcsb.org/download/5g5g.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5g5g.pdb.gz\n", "Downloading https://files.rcsb.org/download/5g5h.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5g5h.pdb.gz\n", "Downloading https://files.rcsb.org/download/5y6q.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5y6q.pdb.gz\n", "Downloading https://files.rcsb.org/download/3hrd.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3hrd.pdb.gz\n", "Downloading https://files.rcsb.org/download/2r9r.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/2r9r.pdb.gz\n", "Downloading https://files.rcsb.org/download/3lnm.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3lnm.pdb.gz\n", "Downloading https://files.rcsb.org/download/4jta.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4jta.pdb.gz\n", "Downloading https://files.rcsb.org/download/4jtc.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4jtc.pdb.gz\n", "Downloading https://files.rcsb.org/download/4jtd.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4jtd.pdb.gz\n", "Downloading https://files.rcsb.org/download/6ebk.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6ebk.pdb.gz\n", "Downloading https://files.rcsb.org/download/6ebl.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6ebl.pdb.gz\n", "Downloading https://files.rcsb.org/download/7ej1.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7ej1.pdb.gz\n", "Downloading https://files.rcsb.org/download/7ej2.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7ej2.pdb.gz\n", "Downloading https://files.rcsb.org/download/2xfb.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/2xfb.pdb.gz\n", "Downloading https://files.rcsb.org/download/3j2w.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3j2w.pdb.gz\n", "Downloading https://files.rcsb.org/download/3n41.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3n41.pdb.gz\n", "Downloading https://files.rcsb.org/download/3n42.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3n42.pdb.gz\n", "Downloading https://files.rcsb.org/download/3n43.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3n43.pdb.gz\n", "Downloading https://files.rcsb.org/download/3n44.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3n44.pdb.gz\n", "Downloading https://files.rcsb.org/download/5any.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5any.pdb.gz\n", "Downloading https://files.rcsb.org/download/6vyv.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6vyv.pdb.gz\n", "Downloading https://files.rcsb.org/download/6w09.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6w09.pdb.gz\n", "Downloading https://files.rcsb.org/download/6w1c.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6w1c.pdb.gz\n", "Downloading https://files.rcsb.org/download/6w2u.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6w2u.pdb.gz\n", "Downloading https://files.rcsb.org/download/7cvy.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7cvy.pdb.gz\n", "Downloading https://files.rcsb.org/download/7cvz.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7cvz.pdb.gz\n", "Downloading https://files.rcsb.org/download/7cw0.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7cw0.pdb.gz\n", "Downloading https://files.rcsb.org/download/7cw2.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7cw2.pdb.gz\n", "Downloading https://files.rcsb.org/download/7cw3.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7cw3.pdb.gz\n", "Downloading https://files.rcsb.org/download/2xfc.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/2xfc.pdb.gz\n", "Downloading https://files.rcsb.org/download/2yew.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/2yew.pdb.gz\n", "Downloading https://files.rcsb.org/download/3j0c.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3j0c.pdb.gz\n", "Downloading https://files.rcsb.org/download/3j0f.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3j0f.pdb.gz\n", "Downloading https://files.rcsb.org/download/5vu2.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5vu2.pdb.gz\n", "Downloading https://files.rcsb.org/download/6imm.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6imm.pdb.gz\n", "Downloading https://files.rcsb.org/download/6mui.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6mui.pdb.gz\n", "Downloading https://files.rcsb.org/download/6mw9.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6mw9.pdb.gz\n", "Downloading https://files.rcsb.org/download/6mwc.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6mwc.pdb.gz\n", "Downloading https://files.rcsb.org/download/6mwv.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6mwv.pdb.gz\n", "Downloading https://files.rcsb.org/download/6mwx.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6mwx.pdb.gz\n", "Downloading https://files.rcsb.org/download/6mx4.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6mx4.pdb.gz\n", "Downloading https://files.rcsb.org/download/6nk5.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6nk5.pdb.gz\n", "Downloading https://files.rcsb.org/download/6nk6.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6nk6.pdb.gz\n", "Downloading https://files.rcsb.org/download/6nk7.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6nk7.pdb.gz\n", "Downloading https://files.rcsb.org/download/6odf.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6odf.pdb.gz\n", "Downloading https://files.rcsb.org/download/6xo4.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6xo4.pdb.gz\n", "Downloading https://files.rcsb.org/download/6xob.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6xob.pdb.gz\n", "Downloading https://files.rcsb.org/download/7ko8.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7ko8.pdb.gz\n", "Downloading https://files.rcsb.org/download/1bqp.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1bqp.pdb.gz\n", "Downloading https://files.rcsb.org/download/1hkd.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1hkd.pdb.gz\n", "Downloading https://files.rcsb.org/download/1lem.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1lem.pdb.gz\n", "Downloading https://files.rcsb.org/download/1len.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1len.pdb.gz\n", "Downloading https://files.rcsb.org/download/1les.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1les.pdb.gz\n", "Downloading https://files.rcsb.org/download/1lgb.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1lgb.pdb.gz\n", "Downloading https://files.rcsb.org/download/1lgc.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1lgc.pdb.gz\n", "Downloading https://files.rcsb.org/download/1loa.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1loa.pdb.gz\n", "Downloading https://files.rcsb.org/download/1lob.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1lob.pdb.gz\n", "Downloading https://files.rcsb.org/download/1loc.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1loc.pdb.gz\n", "Downloading https://files.rcsb.org/download/1lod.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1lod.pdb.gz\n", "Downloading https://files.rcsb.org/download/1loe.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1loe.pdb.gz\n", "Downloading https://files.rcsb.org/download/1lof.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1lof.pdb.gz\n", "Downloading https://files.rcsb.org/download/1log.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1log.pdb.gz\n", "Downloading https://files.rcsb.org/download/1ofs.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1ofs.pdb.gz\n", "Downloading https://files.rcsb.org/download/1qmo.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1qmo.pdb.gz\n", "Downloading https://files.rcsb.org/download/1rin.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1rin.pdb.gz\n", "Downloading https://files.rcsb.org/download/2b7y.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/2b7y.pdb.gz\n", "Downloading https://files.rcsb.org/download/2lal.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/2lal.pdb.gz\n", "Downloading https://files.rcsb.org/download/2ltn.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/2ltn.pdb.gz\n", "Downloading https://files.rcsb.org/download/3lvl.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3lvl.pdb.gz\n", "Downloading https://files.rcsb.org/download/4eb5.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4eb5.pdb.gz\n", "Downloading https://files.rcsb.org/download/4eb7.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4eb7.pdb.gz\n", "Downloading https://files.rcsb.org/download/5xt5.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5xt5.pdb.gz\n", "Downloading https://files.rcsb.org/download/5xt6.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5xt6.pdb.gz\n", "Downloading https://files.rcsb.org/download/4ui9.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4ui9.pdb.gz\n", "Downloading https://files.rcsb.org/download/5a31.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5a31.pdb.gz\n", "Downloading https://files.rcsb.org/download/5g04.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5g04.pdb.gz\n", "Downloading https://files.rcsb.org/download/5g05.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5g05.pdb.gz\n", "Downloading https://files.rcsb.org/download/5lcw.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5lcw.pdb.gz\n", "Downloading https://files.rcsb.org/download/6q6g.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6q6g.pdb.gz\n", "Downloading https://files.rcsb.org/download/6q6h.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6q6h.pdb.gz\n", "Downloading https://files.rcsb.org/download/6tlj.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6tlj.pdb.gz\n", "Downloading https://files.rcsb.org/download/6tm5.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6tm5.pdb.gz\n", "Downloading https://files.rcsb.org/download/6tnt.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6tnt.pdb.gz\n", "Downloading https://files.rcsb.org/download/5l9u.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5l9u.pdb.gz\n", "Downloading https://files.rcsb.org/download/1j7d.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1j7d.pdb.gz\n", "Downloading https://files.rcsb.org/download/1jat.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1jat.pdb.gz\n", "Downloading https://files.rcsb.org/download/2c2v.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/2c2v.pdb.gz\n", "Downloading https://files.rcsb.org/download/2gmi.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/2gmi.pdb.gz\n", "Downloading https://files.rcsb.org/download/3e95.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3e95.pdb.gz\n", "Downloading https://files.rcsb.org/download/3von.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3von.pdb.gz\n", "Downloading https://files.rcsb.org/download/4nr3.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4nr3.pdb.gz\n", "Downloading https://files.rcsb.org/download/4nrg.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4nrg.pdb.gz\n", "Downloading https://files.rcsb.org/download/4nri.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4nri.pdb.gz\n", "Downloading https://files.rcsb.org/download/4onl.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4onl.pdb.gz\n", "Downloading https://files.rcsb.org/download/4onm.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4onm.pdb.gz\n", "Downloading https://files.rcsb.org/download/4onn.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4onn.pdb.gz\n", "Downloading https://files.rcsb.org/download/4orh.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4orh.pdb.gz\n", "Downloading https://files.rcsb.org/download/5ait.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5ait.pdb.gz\n", "Downloading https://files.rcsb.org/download/5ojw.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5ojw.pdb.gz\n", "Downloading https://files.rcsb.org/download/6d6i.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6d6i.pdb.gz\n", "Downloading https://files.rcsb.org/download/6zm3.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6zm3.pdb.gz\n", "Failed to download https://files.rcsb.org/download/6zm3.pdb.gz\n", "Downloading https://files.rcsb.org/download/7bbd.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7bbd.pdb.gz\n", "Downloading https://files.rcsb.org/download/7bbf.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7bbf.pdb.gz\n", "Downloading https://files.rcsb.org/download/1fxt.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1fxt.pdb.gz\n", "Downloading https://files.rcsb.org/download/3zni.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3zni.pdb.gz\n", "Downloading https://files.rcsb.org/download/4ap4.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4ap4.pdb.gz\n", "Downloading https://files.rcsb.org/download/4auq.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4auq.pdb.gz\n", "Downloading https://files.rcsb.org/download/4mdk.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4mdk.pdb.gz\n", "Downloading https://files.rcsb.org/download/4p5o.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4p5o.pdb.gz\n", "Downloading https://files.rcsb.org/download/4v3k.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4v3k.pdb.gz\n", "Downloading https://files.rcsb.org/download/4v3l.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4v3l.pdb.gz\n", "Downloading https://files.rcsb.org/download/4whv.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4whv.pdb.gz\n", "Downloading https://files.rcsb.org/download/5aiu.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5aiu.pdb.gz\n", "Downloading https://files.rcsb.org/download/5d0m.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5d0m.pdb.gz\n", "Downloading https://files.rcsb.org/download/5eya.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5eya.pdb.gz\n", "Downloading https://files.rcsb.org/download/5fer.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5fer.pdb.gz\n", "Downloading https://files.rcsb.org/download/5h7s.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5h7s.pdb.gz\n", "Downloading https://files.rcsb.org/download/5mnj.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5mnj.pdb.gz\n", "Downloading https://files.rcsb.org/download/5vnz.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5vnz.pdb.gz\n", "Downloading https://files.rcsb.org/download/5vo0.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5vo0.pdb.gz\n", "Downloading https://files.rcsb.org/download/5vzw.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5vzw.pdb.gz\n", "Downloading https://files.rcsb.org/download/6hpr.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6hpr.pdb.gz\n", "Downloading https://files.rcsb.org/download/6s53.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6s53.pdb.gz\n", "Downloading https://files.rcsb.org/download/6sqo.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6sqo.pdb.gz\n", "Downloading https://files.rcsb.org/download/6sqr.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6sqr.pdb.gz\n", "Downloading https://files.rcsb.org/download/6sqs.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6sqs.pdb.gz\n", "Downloading https://files.rcsb.org/download/6t7f.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6t7f.pdb.gz\n", "Downloading https://files.rcsb.org/download/6ttu.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6ttu.pdb.gz\n", "Downloading https://files.rcsb.org/download/6w9d.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6w9d.pdb.gz\n", "Downloading https://files.rcsb.org/download/7ahz.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7ahz.pdb.gz\n", "Failed to download https://files.rcsb.org/download/7ahz.pdb.gz\n", "Downloading https://files.rcsb.org/download/7ai1.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7ai1.pdb.gz\n", "Failed to download https://files.rcsb.org/download/7ai1.pdb.gz\n", "Downloading https://files.rcsb.org/download/7k5j.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7k5j.pdb.gz\n", "Downloading https://files.rcsb.org/download/7m2k.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7m2k.pdb.gz\n", "Downloading https://files.rcsb.org/download/2kjh.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/2kjh.pdb.gz\n", "Downloading https://files.rcsb.org/download/3a33.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3a33.pdb.gz\n", "Downloading https://files.rcsb.org/download/3jvz.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3jvz.pdb.gz\n", "Downloading https://files.rcsb.org/download/3jw0.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3jw0.pdb.gz\n", "Downloading https://files.rcsb.org/download/4bvu.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4bvu.pdb.gz\n", "Downloading https://files.rcsb.org/download/4q5e.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4q5e.pdb.gz\n", "Downloading https://files.rcsb.org/download/4q5h.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4q5h.pdb.gz\n", "Downloading https://files.rcsb.org/download/4r62.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4r62.pdb.gz\n", "Downloading https://files.rcsb.org/download/5edv.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5edv.pdb.gz\n", "Downloading https://files.rcsb.org/download/5ifr.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5ifr.pdb.gz\n", "Downloading https://files.rcsb.org/download/5tte.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5tte.pdb.gz\n", "Downloading https://files.rcsb.org/download/5tut.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5tut.pdb.gz\n", "Downloading https://files.rcsb.org/download/5ulf.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5ulf.pdb.gz\n", "Downloading https://files.rcsb.org/download/5zbu.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5zbu.pdb.gz\n", "Downloading https://files.rcsb.org/download/6n13.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6n13.pdb.gz\n", "Downloading https://files.rcsb.org/download/6p5b.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6p5b.pdb.gz\n", "Downloading https://files.rcsb.org/download/6ulh.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6ulh.pdb.gz\n", "Downloading https://files.rcsb.org/download/6ump.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6ump.pdb.gz\n", "Downloading https://files.rcsb.org/download/6ums.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6ums.pdb.gz\n", "Downloading https://files.rcsb.org/download/1zgu.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1zgu.pdb.gz\n", "Downloading https://files.rcsb.org/download/2fuh.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/2fuh.pdb.gz\n", "Downloading https://files.rcsb.org/download/3oj4.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3oj4.pdb.gz\n", "Downloading https://files.rcsb.org/download/3ptf.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3ptf.pdb.gz\n", "Downloading https://files.rcsb.org/download/5ulh.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5ulh.pdb.gz\n", "Downloading https://files.rcsb.org/download/5ulk.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5ulk.pdb.gz\n", "Downloading https://files.rcsb.org/download/6d4p.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6d4p.pdb.gz\n", "Downloading https://files.rcsb.org/download/6d68.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6d68.pdb.gz\n", "Downloading https://files.rcsb.org/download/2e9x.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/2e9x.pdb.gz\n", "Downloading https://files.rcsb.org/download/2eho.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/2eho.pdb.gz\n", "Downloading https://files.rcsb.org/download/2q9q.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/2q9q.pdb.gz\n", "Downloading https://files.rcsb.org/download/6u0m.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6u0m.pdb.gz\n", "Downloading https://files.rcsb.org/download/5vot.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5vot.pdb.gz\n", "Downloading https://files.rcsb.org/download/5vou.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5vou.pdb.gz\n", "Downloading https://files.rcsb.org/download/5vov.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5vov.pdb.gz\n", "Downloading https://files.rcsb.org/download/6qkc.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6qkc.pdb.gz\n", "Downloading https://files.rcsb.org/download/7oca.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7oca.pdb.gz\n", "Downloading https://files.rcsb.org/download/7oce.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7oce.pdb.gz\n", "Downloading https://files.rcsb.org/download/7ocf.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7ocf.pdb.gz\n", "Downloading https://files.rcsb.org/download/6ira.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6ira.pdb.gz\n", "Downloading https://files.rcsb.org/download/6irf.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6irf.pdb.gz\n", "Downloading https://files.rcsb.org/download/6irg.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6irg.pdb.gz\n", "Downloading https://files.rcsb.org/download/6irh.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6irh.pdb.gz\n", "Downloading https://files.rcsb.org/download/7eoq.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7eoq.pdb.gz\n", "Downloading https://files.rcsb.org/download/7eor.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7eor.pdb.gz\n", "Downloading https://files.rcsb.org/download/7eos.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7eos.pdb.gz\n", "Downloading https://files.rcsb.org/download/7eot.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7eot.pdb.gz\n", "Downloading https://files.rcsb.org/download/7eou.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7eou.pdb.gz\n", "Downloading https://files.rcsb.org/download/7eu8.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7eu8.pdb.gz\n", "Downloading https://files.rcsb.org/download/1f9e.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1f9e.pdb.gz\n", "Downloading https://files.rcsb.org/download/1gfw.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1gfw.pdb.gz\n", "Downloading https://files.rcsb.org/download/1i3o.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1i3o.pdb.gz\n", "Downloading https://files.rcsb.org/download/1i51.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1i51.pdb.gz\n", "Downloading https://files.rcsb.org/download/1ice.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1ice.pdb.gz\n", "Downloading https://files.rcsb.org/download/1pyo.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1pyo.pdb.gz\n", "Downloading https://files.rcsb.org/download/1qdu.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1qdu.pdb.gz\n", "Downloading https://files.rcsb.org/download/1qtn.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1qtn.pdb.gz\n", "Downloading https://files.rcsb.org/download/2c2z.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/2c2z.pdb.gz\n", "Downloading https://files.rcsb.org/download/2p2c.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/2p2c.pdb.gz\n", "Downloading https://files.rcsb.org/download/2ql5.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/2ql5.pdb.gz\n", "Downloading https://files.rcsb.org/download/2ql7.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/2ql7.pdb.gz\n", "Downloading https://files.rcsb.org/download/2ql9.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/2ql9.pdb.gz\n", "Downloading https://files.rcsb.org/download/2qlb.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/2qlb.pdb.gz\n", "Downloading https://files.rcsb.org/download/2qlf.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/2qlf.pdb.gz\n", "Downloading https://files.rcsb.org/download/2qlj.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/2qlj.pdb.gz\n", "Downloading https://files.rcsb.org/download/2xzd.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/2xzd.pdb.gz\n", "Downloading https://files.rcsb.org/download/2xzt.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/2xzt.pdb.gz\n", "Downloading https://files.rcsb.org/download/2y0b.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/2y0b.pdb.gz\n", "Downloading https://files.rcsb.org/download/2y1l.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/2y1l.pdb.gz\n", "Downloading https://files.rcsb.org/download/3kjn.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3kjn.pdb.gz\n", "Downloading https://files.rcsb.org/download/3kjq.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3kjq.pdb.gz\n", "Downloading https://files.rcsb.org/download/3p45.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3p45.pdb.gz\n", "Downloading https://files.rcsb.org/download/3p4u.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3p4u.pdb.gz\n", "Downloading https://files.rcsb.org/download/3qnw.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3qnw.pdb.gz\n", "Downloading https://files.rcsb.org/download/3r5j.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3r5j.pdb.gz\n", "Downloading https://files.rcsb.org/download/3r6g.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3r6g.pdb.gz\n", "Downloading https://files.rcsb.org/download/3r6l.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3r6l.pdb.gz\n", "Downloading https://files.rcsb.org/download/3r7b.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3r7b.pdb.gz\n", "Downloading https://files.rcsb.org/download/3r7n.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3r7n.pdb.gz\n", "Downloading https://files.rcsb.org/download/3r7s.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3r7s.pdb.gz\n", "Downloading https://files.rcsb.org/download/3rjm.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3rjm.pdb.gz\n", "Downloading https://files.rcsb.org/download/3sip.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3sip.pdb.gz\n", "Downloading https://files.rcsb.org/download/4jb8.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4jb8.pdb.gz\n", "Downloading https://files.rcsb.org/download/4lsz.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4lsz.pdb.gz\n", "Downloading https://files.rcsb.org/download/4zvo.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4zvo.pdb.gz\n", "Downloading https://files.rcsb.org/download/4zvp.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4zvp.pdb.gz\n", "Downloading https://files.rcsb.org/download/4zvq.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4zvq.pdb.gz\n", "Downloading https://files.rcsb.org/download/4zvr.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4zvr.pdb.gz\n", "Downloading https://files.rcsb.org/download/4zvs.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4zvs.pdb.gz\n", "Downloading https://files.rcsb.org/download/4zvt.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4zvt.pdb.gz\n", "Downloading https://files.rcsb.org/download/4zvu.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4zvu.pdb.gz\n", "Downloading https://files.rcsb.org/download/5ic4.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5ic4.pdb.gz\n", "Downloading https://files.rcsb.org/download/5ic6.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5ic6.pdb.gz\n", "Downloading https://files.rcsb.org/download/5k20.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5k20.pdb.gz\n", "Downloading https://files.rcsb.org/download/6cl1.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6cl1.pdb.gz\n", "Downloading https://files.rcsb.org/download/6cl2.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6cl2.pdb.gz\n", "Downloading https://files.rcsb.org/download/6kmu.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6kmu.pdb.gz\n", "Downloading https://files.rcsb.org/download/6kmv.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6kmv.pdb.gz\n", "Downloading https://files.rcsb.org/download/6kmz.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6kmz.pdb.gz\n", "Downloading https://files.rcsb.org/download/6kn0.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6kn0.pdb.gz\n", "Downloading https://files.rcsb.org/download/6kn1.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6kn1.pdb.gz\n", "Downloading https://files.rcsb.org/download/6pdq.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6pdq.pdb.gz\n", "Downloading https://files.rcsb.org/download/6ppm.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6ppm.pdb.gz\n", "Downloading https://files.rcsb.org/download/6vie.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6vie.pdb.gz\n", "Downloading https://files.rcsb.org/download/6x8i.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6x8i.pdb.gz\n", "Downloading https://files.rcsb.org/download/6x8j.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6x8j.pdb.gz\n", "Downloading https://files.rcsb.org/download/6x8k.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6x8k.pdb.gz\n", "Downloading https://files.rcsb.org/download/6x8l.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6x8l.pdb.gz\n", "Downloading https://files.rcsb.org/download/7jl7.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7jl7.pdb.gz\n", "Downloading https://files.rcsb.org/download/7rn7.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7rn7.pdb.gz\n", "Downloading https://files.rcsb.org/download/7rn8.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7rn8.pdb.gz\n", "Downloading https://files.rcsb.org/download/7rn9.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7rn9.pdb.gz\n", "Downloading https://files.rcsb.org/download/7rnb.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7rnb.pdb.gz\n", "Downloading https://files.rcsb.org/download/7rnd.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7rnd.pdb.gz\n", "Downloading https://files.rcsb.org/download/7rnf.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7rnf.pdb.gz\n", "Downloading https://files.rcsb.org/download/2hxf.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/2hxf.pdb.gz\n", "Downloading https://files.rcsb.org/download/2hxh.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/2hxh.pdb.gz\n", "Downloading https://files.rcsb.org/download/2p4n.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/2p4n.pdb.gz\n", "Downloading https://files.rcsb.org/download/3edl.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3edl.pdb.gz\n", "Downloading https://files.rcsb.org/download/3j2u.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3j2u.pdb.gz\n", "Downloading https://files.rcsb.org/download/3j8x.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3j8x.pdb.gz\n", "Downloading https://files.rcsb.org/download/3j8y.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3j8y.pdb.gz\n", "Downloading https://files.rcsb.org/download/4atx.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4atx.pdb.gz\n", "Downloading https://files.rcsb.org/download/4hna.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4hna.pdb.gz\n", "Downloading https://files.rcsb.org/download/4lnu.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4lnu.pdb.gz\n", "Downloading https://files.rcsb.org/download/5hnx.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5hnx.pdb.gz\n", "Downloading https://files.rcsb.org/download/5mlv.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5mlv.pdb.gz\n", "Downloading https://files.rcsb.org/download/5mm4.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5mm4.pdb.gz\n", "Downloading https://files.rcsb.org/download/5mm7.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5mm7.pdb.gz\n", "Downloading https://files.rcsb.org/download/5nd2.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5nd2.pdb.gz\n", "Downloading https://files.rcsb.org/download/5nd3.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5nd3.pdb.gz\n", "Downloading https://files.rcsb.org/download/5nd4.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5nd4.pdb.gz\n", "Downloading https://files.rcsb.org/download/5nd7.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5nd7.pdb.gz\n", "Downloading https://files.rcsb.org/download/5ogc.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5ogc.pdb.gz\n", "Downloading https://files.rcsb.org/download/6b0c.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6b0c.pdb.gz\n", "Downloading https://files.rcsb.org/download/6b0i.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6b0i.pdb.gz\n", "Downloading https://files.rcsb.org/download/6b0l.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6b0l.pdb.gz\n", "Downloading https://files.rcsb.org/download/6bbn.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6bbn.pdb.gz\n", "Downloading https://files.rcsb.org/download/6mlq.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6mlq.pdb.gz\n", "Downloading https://files.rcsb.org/download/6mlr.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6mlr.pdb.gz\n", "Downloading https://files.rcsb.org/download/6ojq.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6ojq.pdb.gz\n", "Downloading https://files.rcsb.org/download/6vpo.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6vpo.pdb.gz\n", "Downloading https://files.rcsb.org/download/6vpp.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6vpp.pdb.gz\n", "Downloading https://files.rcsb.org/download/6wwi.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6wwi.pdb.gz\n", "Downloading https://files.rcsb.org/download/6wwj.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6wwj.pdb.gz\n", "Downloading https://files.rcsb.org/download/6wwk.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6wwk.pdb.gz\n", "Downloading https://files.rcsb.org/download/6wwl.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6wwl.pdb.gz\n", "Downloading https://files.rcsb.org/download/6wwm.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6wwm.pdb.gz\n", "Downloading https://files.rcsb.org/download/6wwn.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6wwn.pdb.gz\n", "Downloading https://files.rcsb.org/download/6wwo.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6wwo.pdb.gz\n", "Downloading https://files.rcsb.org/download/6wwp.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6wwp.pdb.gz\n", "Downloading https://files.rcsb.org/download/6wwq.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6wwq.pdb.gz\n", "Downloading https://files.rcsb.org/download/6wwr.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6wwr.pdb.gz\n", "Downloading https://files.rcsb.org/download/6wws.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6wws.pdb.gz\n", "Downloading https://files.rcsb.org/download/6wwt.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6wwt.pdb.gz\n", "Downloading https://files.rcsb.org/download/6wwu.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6wwu.pdb.gz\n", "Downloading https://files.rcsb.org/download/6wwv.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6wwv.pdb.gz\n", "Downloading https://files.rcsb.org/download/6zpi.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6zpi.pdb.gz\n", "Downloading https://files.rcsb.org/download/7lvq.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7lvq.pdb.gz\n", "Downloading https://files.rcsb.org/download/7lvr.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7lvr.pdb.gz\n", "Downloading https://files.rcsb.org/download/7nb8.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7nb8.pdb.gz\n", "Downloading https://files.rcsb.org/download/7nba.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7nba.pdb.gz\n", "Downloading https://files.rcsb.org/download/2wbe.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/2wbe.pdb.gz\n", "Downloading https://files.rcsb.org/download/1sa0.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1sa0.pdb.gz\n", "Downloading https://files.rcsb.org/download/1sa1.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1sa1.pdb.gz\n", "Downloading https://files.rcsb.org/download/1z2b.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1z2b.pdb.gz\n", "Downloading https://files.rcsb.org/download/3du7.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3du7.pdb.gz\n", "Downloading https://files.rcsb.org/download/3e22.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3e22.pdb.gz\n", "Downloading https://files.rcsb.org/download/3hkb.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3hkb.pdb.gz\n", "Downloading https://files.rcsb.org/download/3hkc.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3hkc.pdb.gz\n", "Downloading https://files.rcsb.org/download/3hkd.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3hkd.pdb.gz\n", "Downloading https://files.rcsb.org/download/3hke.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3hke.pdb.gz\n", "Downloading https://files.rcsb.org/download/3n2g.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3n2g.pdb.gz\n", "Downloading https://files.rcsb.org/download/3n2k.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3n2k.pdb.gz\n", "Downloading https://files.rcsb.org/download/3ryc.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3ryc.pdb.gz\n", "Downloading https://files.rcsb.org/download/3ryf.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3ryf.pdb.gz\n", "Downloading https://files.rcsb.org/download/3ryh.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3ryh.pdb.gz\n", "Downloading https://files.rcsb.org/download/3ryi.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3ryi.pdb.gz\n", "Downloading https://files.rcsb.org/download/3ut5.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3ut5.pdb.gz\n", "Downloading https://files.rcsb.org/download/4eb6.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4eb6.pdb.gz\n", "Downloading https://files.rcsb.org/download/4f6r.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4f6r.pdb.gz\n", "Downloading https://files.rcsb.org/download/4i4t.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4i4t.pdb.gz\n", "Downloading https://files.rcsb.org/download/4i50.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4i50.pdb.gz\n", "Downloading https://files.rcsb.org/download/4i55.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4i55.pdb.gz\n", "Downloading https://files.rcsb.org/download/4ihj.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4ihj.pdb.gz\n", "Downloading https://files.rcsb.org/download/4iij.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4iij.pdb.gz\n", "Downloading https://files.rcsb.org/download/4o2a.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4o2a.pdb.gz\n", "Downloading https://files.rcsb.org/download/4o2b.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4o2b.pdb.gz\n", "Downloading https://files.rcsb.org/download/4o4h.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4o4h.pdb.gz\n", "Downloading https://files.rcsb.org/download/4o4i.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4o4i.pdb.gz\n", "Downloading https://files.rcsb.org/download/4o4j.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4o4j.pdb.gz\n", "Downloading https://files.rcsb.org/download/4o4l.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4o4l.pdb.gz\n", "Downloading https://files.rcsb.org/download/4tuy.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4tuy.pdb.gz\n", "Downloading https://files.rcsb.org/download/4tv8.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4tv8.pdb.gz\n", "Downloading https://files.rcsb.org/download/4tv9.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4tv9.pdb.gz\n", "Downloading https://files.rcsb.org/download/4x1i.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4x1i.pdb.gz\n", "Downloading https://files.rcsb.org/download/4x1k.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4x1k.pdb.gz\n", "Downloading https://files.rcsb.org/download/4x1y.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4x1y.pdb.gz\n", "Downloading https://files.rcsb.org/download/4x20.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4x20.pdb.gz\n", "Downloading https://files.rcsb.org/download/4yj2.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4yj2.pdb.gz\n", "Downloading https://files.rcsb.org/download/4yj3.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4yj3.pdb.gz\n", "Downloading https://files.rcsb.org/download/4zhq.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4zhq.pdb.gz\n", "Downloading https://files.rcsb.org/download/4zi7.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4zi7.pdb.gz\n", "Downloading https://files.rcsb.org/download/4zol.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4zol.pdb.gz\n", "Downloading https://files.rcsb.org/download/5bmv.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5bmv.pdb.gz\n", "Downloading https://files.rcsb.org/download/5c8y.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5c8y.pdb.gz\n", "Downloading https://files.rcsb.org/download/5ca0.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5ca0.pdb.gz\n", "Downloading https://files.rcsb.org/download/5ca1.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5ca1.pdb.gz\n", "Downloading https://files.rcsb.org/download/5cb4.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5cb4.pdb.gz\n", "Downloading https://files.rcsb.org/download/5ezy.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5ezy.pdb.gz\n", "Downloading https://files.rcsb.org/download/5fnv.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5fnv.pdb.gz\n", "Downloading https://files.rcsb.org/download/5gon.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5gon.pdb.gz\n", "Downloading https://files.rcsb.org/download/5h74.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5h74.pdb.gz\n", "Downloading https://files.rcsb.org/download/5h7o.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5h7o.pdb.gz\n", "Downloading https://files.rcsb.org/download/5iyz.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5iyz.pdb.gz\n", "Downloading https://files.rcsb.org/download/5j2t.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5j2t.pdb.gz\n", "Downloading https://files.rcsb.org/download/5j2u.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5j2u.pdb.gz\n", "Downloading https://files.rcsb.org/download/5jcb.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5jcb.pdb.gz\n", "Downloading https://files.rcsb.org/download/5jh7.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5jh7.pdb.gz\n", "Downloading https://files.rcsb.org/download/5jqg.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5jqg.pdb.gz\n", "Downloading https://files.rcsb.org/download/5jvd.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5jvd.pdb.gz\n", "Downloading https://files.rcsb.org/download/5kx5.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5kx5.pdb.gz\n", "Downloading https://files.rcsb.org/download/5la6.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5la6.pdb.gz\n", "Downloading https://files.rcsb.org/download/5lov.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5lov.pdb.gz\n", "Downloading https://files.rcsb.org/download/5lp6.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5lp6.pdb.gz\n", "Downloading https://files.rcsb.org/download/5lxs.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5lxs.pdb.gz\n", "Downloading https://files.rcsb.org/download/5lxt.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5lxt.pdb.gz\n", "Downloading https://files.rcsb.org/download/5lyj.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5lyj.pdb.gz\n", "Downloading https://files.rcsb.org/download/5m7e.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5m7e.pdb.gz\n", "Downloading https://files.rcsb.org/download/5m7g.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5m7g.pdb.gz\n", "Downloading https://files.rcsb.org/download/5m8d.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5m8d.pdb.gz\n", "Downloading https://files.rcsb.org/download/5m8g.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5m8g.pdb.gz\n", "Downloading https://files.rcsb.org/download/5mf4.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5mf4.pdb.gz\n", "Downloading https://files.rcsb.org/download/5nfz.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5nfz.pdb.gz\n", "Downloading https://files.rcsb.org/download/5ng1.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5ng1.pdb.gz\n", "Downloading https://files.rcsb.org/download/5njh.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5njh.pdb.gz\n", "Downloading https://files.rcsb.org/download/5o7a.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5o7a.pdb.gz\n", "Downloading https://files.rcsb.org/download/5osk.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5osk.pdb.gz\n", "Downloading https://files.rcsb.org/download/5ov7.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5ov7.pdb.gz\n", "Downloading https://files.rcsb.org/download/5s4l.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5s4l.pdb.gz\n", "Downloading https://files.rcsb.org/download/5s4m.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5s4m.pdb.gz\n", "Downloading https://files.rcsb.org/download/5s4n.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5s4n.pdb.gz\n", "Downloading https://files.rcsb.org/download/5s4o.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5s4o.pdb.gz\n", "Downloading https://files.rcsb.org/download/5s4p.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5s4p.pdb.gz\n", "Downloading https://files.rcsb.org/download/5s4q.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5s4q.pdb.gz\n", "Downloading https://files.rcsb.org/download/5s4r.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5s4r.pdb.gz\n", "Downloading https://files.rcsb.org/download/5s4s.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5s4s.pdb.gz\n", "Downloading https://files.rcsb.org/download/5s4t.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5s4t.pdb.gz\n", "Downloading https://files.rcsb.org/download/5s4u.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5s4u.pdb.gz\n", "Downloading https://files.rcsb.org/download/5s4v.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5s4v.pdb.gz\n", "Downloading https://files.rcsb.org/download/5s4w.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5s4w.pdb.gz\n", "Downloading https://files.rcsb.org/download/5s4x.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5s4x.pdb.gz\n", "Downloading https://files.rcsb.org/download/5s4y.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5s4y.pdb.gz\n", "Downloading https://files.rcsb.org/download/5s4z.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5s4z.pdb.gz\n", "Downloading https://files.rcsb.org/download/5s50.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5s50.pdb.gz\n", "Downloading https://files.rcsb.org/download/5s51.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5s51.pdb.gz\n", "Downloading https://files.rcsb.org/download/5s52.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5s52.pdb.gz\n", "Downloading https://files.rcsb.org/download/5s53.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5s53.pdb.gz\n", "Downloading https://files.rcsb.org/download/5s54.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5s54.pdb.gz\n", "Downloading https://files.rcsb.org/download/5s55.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5s55.pdb.gz\n", "Downloading https://files.rcsb.org/download/5s56.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5s56.pdb.gz\n", "Downloading https://files.rcsb.org/download/5s57.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5s57.pdb.gz\n", "Downloading https://files.rcsb.org/download/5s58.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5s58.pdb.gz\n", "Downloading https://files.rcsb.org/download/5s59.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5s59.pdb.gz\n", "Downloading https://files.rcsb.org/download/5s5a.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5s5a.pdb.gz\n", "Downloading https://files.rcsb.org/download/5s5b.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5s5b.pdb.gz\n", "Downloading https://files.rcsb.org/download/5s5c.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5s5c.pdb.gz\n", "Downloading https://files.rcsb.org/download/5s5d.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5s5d.pdb.gz\n", "Downloading https://files.rcsb.org/download/5s5e.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5s5e.pdb.gz\n", "Downloading https://files.rcsb.org/download/5s5f.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5s5f.pdb.gz\n", "Downloading https://files.rcsb.org/download/5s5g.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5s5g.pdb.gz\n", "Downloading https://files.rcsb.org/download/5s5h.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5s5h.pdb.gz\n", "Downloading https://files.rcsb.org/download/5s5i.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5s5i.pdb.gz\n", "Downloading https://files.rcsb.org/download/5s5j.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5s5j.pdb.gz\n", "Downloading https://files.rcsb.org/download/5s5k.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5s5k.pdb.gz\n", "Downloading https://files.rcsb.org/download/5s5l.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5s5l.pdb.gz\n", "Downloading https://files.rcsb.org/download/5s5m.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5s5m.pdb.gz\n", "Downloading https://files.rcsb.org/download/5s5n.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5s5n.pdb.gz\n", "Downloading https://files.rcsb.org/download/5s5o.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5s5o.pdb.gz\n", "Downloading https://files.rcsb.org/download/5s5p.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5s5p.pdb.gz\n", "Downloading https://files.rcsb.org/download/5s5q.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5s5q.pdb.gz\n", "Downloading https://files.rcsb.org/download/5s5r.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5s5r.pdb.gz\n", "Downloading https://files.rcsb.org/download/5s5s.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5s5s.pdb.gz\n", "Downloading https://files.rcsb.org/download/5s5t.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5s5t.pdb.gz\n", "Downloading https://files.rcsb.org/download/5s5u.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5s5u.pdb.gz\n", "Downloading https://files.rcsb.org/download/5s5v.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5s5v.pdb.gz\n", "Downloading https://files.rcsb.org/download/5s5w.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5s5w.pdb.gz\n", "Downloading https://files.rcsb.org/download/5s5x.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5s5x.pdb.gz\n", "Downloading https://files.rcsb.org/download/5s5y.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5s5y.pdb.gz\n", "Downloading https://files.rcsb.org/download/5s5z.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5s5z.pdb.gz\n", "Downloading https://files.rcsb.org/download/5s60.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5s60.pdb.gz\n", "Downloading https://files.rcsb.org/download/5s61.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5s61.pdb.gz\n", "Downloading https://files.rcsb.org/download/5s62.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5s62.pdb.gz\n", "Downloading https://files.rcsb.org/download/5s63.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5s63.pdb.gz\n", "Downloading https://files.rcsb.org/download/5s64.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5s64.pdb.gz\n", "Downloading https://files.rcsb.org/download/5s65.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5s65.pdb.gz\n", "Downloading https://files.rcsb.org/download/5s66.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5s66.pdb.gz\n", "Downloading https://files.rcsb.org/download/5s67.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5s67.pdb.gz\n", "Downloading https://files.rcsb.org/download/5sb8.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5sb8.pdb.gz\n", "Downloading https://files.rcsb.org/download/5sb9.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5sb9.pdb.gz\n", "Downloading https://files.rcsb.org/download/5sba.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5sba.pdb.gz\n", "Downloading https://files.rcsb.org/download/5sbb.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5sbb.pdb.gz\n", "Downloading https://files.rcsb.org/download/5sbc.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5sbc.pdb.gz\n", "Downloading https://files.rcsb.org/download/5sbd.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5sbd.pdb.gz\n", "Downloading https://files.rcsb.org/download/5sbe.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5sbe.pdb.gz\n", "Downloading https://files.rcsb.org/download/5xaf.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5xaf.pdb.gz\n", "Downloading https://files.rcsb.org/download/5xag.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5xag.pdb.gz\n", "Downloading https://files.rcsb.org/download/5xhc.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5xhc.pdb.gz\n", "Downloading https://files.rcsb.org/download/5xi5.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5xi5.pdb.gz\n", "Downloading https://files.rcsb.org/download/5xi7.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5xi7.pdb.gz\n", "Downloading https://files.rcsb.org/download/5xiw.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5xiw.pdb.gz\n", "Downloading https://files.rcsb.org/download/5xke.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5xke.pdb.gz\n", "Downloading https://files.rcsb.org/download/5xkf.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5xkf.pdb.gz\n", "Downloading https://files.rcsb.org/download/5xkg.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5xkg.pdb.gz\n", "Downloading https://files.rcsb.org/download/5xkh.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5xkh.pdb.gz\n", "Downloading https://files.rcsb.org/download/5xlt.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5xlt.pdb.gz\n", "Downloading https://files.rcsb.org/download/5xlz.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5xlz.pdb.gz\n", "Downloading https://files.rcsb.org/download/5xp3.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5xp3.pdb.gz\n", "Downloading https://files.rcsb.org/download/5yl2.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5yl2.pdb.gz\n", "Downloading https://files.rcsb.org/download/5yl4.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5yl4.pdb.gz\n", "Downloading https://files.rcsb.org/download/5ylj.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5ylj.pdb.gz\n", "Downloading https://files.rcsb.org/download/5yls.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5yls.pdb.gz\n", "Downloading https://files.rcsb.org/download/5yz3.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5yz3.pdb.gz\n", "Downloading https://files.rcsb.org/download/5z4p.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5z4p.pdb.gz\n", "Downloading https://files.rcsb.org/download/5z4u.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5z4u.pdb.gz\n", "Downloading https://files.rcsb.org/download/5zxh.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5zxh.pdb.gz\n", "Downloading https://files.rcsb.org/download/6agk.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6agk.pdb.gz\n", "Downloading https://files.rcsb.org/download/6br1.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6br1.pdb.gz\n", "Downloading https://files.rcsb.org/download/6brf.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6brf.pdb.gz\n", "Downloading https://files.rcsb.org/download/6bry.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6bry.pdb.gz\n", "Downloading https://files.rcsb.org/download/6bs2.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6bs2.pdb.gz\n", "Downloading https://files.rcsb.org/download/6d88.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6d88.pdb.gz\n", "Downloading https://files.rcsb.org/download/6eg5.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6eg5.pdb.gz\n", "Downloading https://files.rcsb.org/download/6f7c.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6f7c.pdb.gz\n", "Downloading https://files.rcsb.org/download/6fii.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6fii.pdb.gz\n", "Downloading https://files.rcsb.org/download/6fjf.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6fjf.pdb.gz\n", "Downloading https://files.rcsb.org/download/6fjm.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6fjm.pdb.gz\n", "Downloading https://files.rcsb.org/download/6fkj.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6fkj.pdb.gz\n", "Downloading https://files.rcsb.org/download/6fkl.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6fkl.pdb.gz\n", "Downloading https://files.rcsb.org/download/6gf3.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6gf3.pdb.gz\n", "Downloading https://files.rcsb.org/download/6gj4.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6gj4.pdb.gz\n", "Downloading https://files.rcsb.org/download/6gvm.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6gvm.pdb.gz\n", "Downloading https://files.rcsb.org/download/6gze.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6gze.pdb.gz\n", "Downloading https://files.rcsb.org/download/6h9b.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6h9b.pdb.gz\n", "Downloading https://files.rcsb.org/download/6hx8.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6hx8.pdb.gz\n", "Downloading https://files.rcsb.org/download/6i5c.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6i5c.pdb.gz\n", "Downloading https://files.rcsb.org/download/6jcj.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6jcj.pdb.gz\n", "Downloading https://files.rcsb.org/download/6k9v.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6k9v.pdb.gz\n", "Downloading https://files.rcsb.org/download/6knz.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6knz.pdb.gz\n", "Downloading https://files.rcsb.org/download/6kpp.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6kpp.pdb.gz\n", "Downloading https://files.rcsb.org/download/6ls4.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6ls4.pdb.gz\n", "Downloading https://files.rcsb.org/download/6lsm.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6lsm.pdb.gz\n", "Downloading https://files.rcsb.org/download/6lsn.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6lsn.pdb.gz\n", "Downloading https://files.rcsb.org/download/6n47.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6n47.pdb.gz\n", "Downloading https://files.rcsb.org/download/6nng.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6nng.pdb.gz\n", "Downloading https://files.rcsb.org/download/6o5m.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6o5m.pdb.gz\n", "Downloading https://files.rcsb.org/download/6o5n.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6o5n.pdb.gz\n", "Downloading https://files.rcsb.org/download/6o61.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6o61.pdb.gz\n", "Downloading https://files.rcsb.org/download/6pc4.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6pc4.pdb.gz\n", "Downloading https://files.rcsb.org/download/6qqn.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6qqn.pdb.gz\n", "Downloading https://files.rcsb.org/download/6qtn.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6qtn.pdb.gz\n", "Downloading https://files.rcsb.org/download/6s9e.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6s9e.pdb.gz\n", "Downloading https://files.rcsb.org/download/6ses.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6ses.pdb.gz\n", "Downloading https://files.rcsb.org/download/6tde.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6tde.pdb.gz\n", "Downloading https://files.rcsb.org/download/6th4.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6th4.pdb.gz\n", "Downloading https://files.rcsb.org/download/6tis.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6tis.pdb.gz\n", "Downloading https://files.rcsb.org/download/6tiu.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6tiu.pdb.gz\n", "Downloading https://files.rcsb.org/download/6tiy.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6tiy.pdb.gz\n", "Downloading https://files.rcsb.org/download/6tiz.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6tiz.pdb.gz\n", "Downloading https://files.rcsb.org/download/6x1c.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6x1c.pdb.gz\n", "Downloading https://files.rcsb.org/download/6x1e.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6x1e.pdb.gz\n", "Downloading https://files.rcsb.org/download/6x1f.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6x1f.pdb.gz\n", "Downloading https://files.rcsb.org/download/6xer.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6xer.pdb.gz\n", "Downloading https://files.rcsb.org/download/6xes.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6xes.pdb.gz\n", "Downloading https://files.rcsb.org/download/6xet.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6xet.pdb.gz\n", "Downloading https://files.rcsb.org/download/6y4m.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6y4m.pdb.gz\n", "Downloading https://files.rcsb.org/download/6y4n.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6y4n.pdb.gz\n", "Downloading https://files.rcsb.org/download/6y6d.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6y6d.pdb.gz\n", "Downloading https://files.rcsb.org/download/7au5.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7au5.pdb.gz\n", "Downloading https://files.rcsb.org/download/7cda.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7cda.pdb.gz\n", "Downloading https://files.rcsb.org/download/7ce6.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7ce6.pdb.gz\n", "Downloading https://files.rcsb.org/download/7ce8.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7ce8.pdb.gz\n", "Downloading https://files.rcsb.org/download/7cek.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7cek.pdb.gz\n", "Downloading https://files.rcsb.org/download/7cld.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7cld.pdb.gz\n", "Downloading https://files.rcsb.org/download/7cnm.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7cnm.pdb.gz\n", "Downloading https://files.rcsb.org/download/7cnn.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7cnn.pdb.gz\n", "Downloading https://files.rcsb.org/download/7cno.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7cno.pdb.gz\n", "Downloading https://files.rcsb.org/download/7dad.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7dad.pdb.gz\n", "Downloading https://files.rcsb.org/download/7dae.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7dae.pdb.gz\n", "Downloading https://files.rcsb.org/download/7daf.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7daf.pdb.gz\n", "Downloading https://files.rcsb.org/download/7db9.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7db9.pdb.gz\n", "Downloading https://files.rcsb.org/download/7dba.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7dba.pdb.gz\n", "Downloading https://files.rcsb.org/download/7dbb.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7dbb.pdb.gz\n", "Downloading https://files.rcsb.org/download/7dbc.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7dbc.pdb.gz\n", "Downloading https://files.rcsb.org/download/7dbd.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7dbd.pdb.gz\n", "Downloading https://files.rcsb.org/download/7dp8.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7dp8.pdb.gz\n", "Downloading https://files.rcsb.org/download/7e4q.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7e4q.pdb.gz\n", "Downloading https://files.rcsb.org/download/7e4r.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7e4r.pdb.gz\n", "Downloading https://files.rcsb.org/download/7e4z.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7e4z.pdb.gz\n", "Downloading https://files.rcsb.org/download/7jfr.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7jfr.pdb.gz\n", "Downloading https://files.rcsb.org/download/7l05.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7l05.pdb.gz\n", "Downloading https://files.rcsb.org/download/7lz7.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7lz7.pdb.gz\n", "Downloading https://files.rcsb.org/download/7lz8.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7lz8.pdb.gz\n", "Downloading https://files.rcsb.org/download/1csb.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1csb.pdb.gz\n", "Downloading https://files.rcsb.org/download/1huc.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1huc.pdb.gz\n", "Downloading https://files.rcsb.org/download/1icf.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1icf.pdb.gz\n", "Downloading https://files.rcsb.org/download/1k3b.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1k3b.pdb.gz\n", "Downloading https://files.rcsb.org/download/1mhw.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1mhw.pdb.gz\n", "Downloading https://files.rcsb.org/download/1sp4.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1sp4.pdb.gz\n", "Downloading https://files.rcsb.org/download/2djf.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/2djf.pdb.gz\n", "Downloading https://files.rcsb.org/download/2djg.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/2djg.pdb.gz\n", "Downloading https://files.rcsb.org/download/2ipp.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/2ipp.pdb.gz\n", "Downloading https://files.rcsb.org/download/4cdc.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4cdc.pdb.gz\n", "Downloading https://files.rcsb.org/download/4cdd.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4cdd.pdb.gz\n", "Downloading https://files.rcsb.org/download/4cde.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4cde.pdb.gz\n", "Downloading https://files.rcsb.org/download/4cdf.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4cdf.pdb.gz\n", "Downloading https://files.rcsb.org/download/5i4h.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5i4h.pdb.gz\n", "Downloading https://files.rcsb.org/download/6ic5.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6ic5.pdb.gz\n", "Downloading https://files.rcsb.org/download/6ic6.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6ic6.pdb.gz\n", "Downloading https://files.rcsb.org/download/6ic7.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6ic7.pdb.gz\n", "Downloading https://files.rcsb.org/download/6rn6.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6rn6.pdb.gz\n", "Downloading https://files.rcsb.org/download/6rn7.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6rn7.pdb.gz\n", "Downloading https://files.rcsb.org/download/6rn9.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6rn9.pdb.gz\n", "Downloading https://files.rcsb.org/download/6rne.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6rne.pdb.gz\n", "Downloading https://files.rcsb.org/download/6rni.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6rni.pdb.gz\n", "Downloading https://files.rcsb.org/download/1lm8.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1lm8.pdb.gz\n", "Downloading https://files.rcsb.org/download/1lqb.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1lqb.pdb.gz\n", "Downloading https://files.rcsb.org/download/2c9w.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/2c9w.pdb.gz\n", "Downloading https://files.rcsb.org/download/2fnj.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/2fnj.pdb.gz\n", "Downloading https://files.rcsb.org/download/2izv.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/2izv.pdb.gz\n", "Downloading https://files.rcsb.org/download/2jz3.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/2jz3.pdb.gz\n", "Downloading https://files.rcsb.org/download/2ma9.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/2ma9.pdb.gz\n", "Downloading https://files.rcsb.org/download/3dcg.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3dcg.pdb.gz\n", "Downloading https://files.rcsb.org/download/3zkj.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3zkj.pdb.gz\n", "Downloading https://files.rcsb.org/download/3zng.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3zng.pdb.gz\n", "Downloading https://files.rcsb.org/download/3zrc.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3zrc.pdb.gz\n", "Downloading https://files.rcsb.org/download/3zrf.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3zrf.pdb.gz\n", "Downloading https://files.rcsb.org/download/3ztc.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3ztc.pdb.gz\n", "Downloading https://files.rcsb.org/download/3ztd.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3ztd.pdb.gz\n", "Downloading https://files.rcsb.org/download/3zun.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3zun.pdb.gz\n", "Downloading https://files.rcsb.org/download/4ajy.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4ajy.pdb.gz\n", "Downloading https://files.rcsb.org/download/4awj.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4awj.pdb.gz\n", "Downloading https://files.rcsb.org/download/4b95.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4b95.pdb.gz\n", "Downloading https://files.rcsb.org/download/4b9k.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4b9k.pdb.gz\n", "Downloading https://files.rcsb.org/download/4bks.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4bks.pdb.gz\n", "Downloading https://files.rcsb.org/download/4bkt.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4bkt.pdb.gz\n", "Downloading https://files.rcsb.org/download/4jgh.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4jgh.pdb.gz\n", "Downloading https://files.rcsb.org/download/4n9f.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4n9f.pdb.gz\n", "Downloading https://files.rcsb.org/download/4w9c.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4w9c.pdb.gz\n", "Downloading https://files.rcsb.org/download/4w9d.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4w9d.pdb.gz\n", "Downloading https://files.rcsb.org/download/4w9e.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4w9e.pdb.gz\n", "Downloading https://files.rcsb.org/download/4w9f.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4w9f.pdb.gz\n", "Downloading https://files.rcsb.org/download/4w9g.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4w9g.pdb.gz\n", "Downloading https://files.rcsb.org/download/4w9h.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4w9h.pdb.gz\n", "Downloading https://files.rcsb.org/download/4w9i.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4w9i.pdb.gz\n", "Downloading https://files.rcsb.org/download/4w9j.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4w9j.pdb.gz\n", "Downloading https://files.rcsb.org/download/4w9k.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4w9k.pdb.gz\n", "Downloading https://files.rcsb.org/download/4w9l.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4w9l.pdb.gz\n", "Downloading https://files.rcsb.org/download/4wqo.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4wqo.pdb.gz\n", "Downloading https://files.rcsb.org/download/5bo4.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5bo4.pdb.gz\n", "Downloading https://files.rcsb.org/download/5lli.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5lli.pdb.gz\n", "Downloading https://files.rcsb.org/download/5n4w.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5n4w.pdb.gz\n", "Downloading https://files.rcsb.org/download/5nvv.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5nvv.pdb.gz\n", "Downloading https://files.rcsb.org/download/5nvw.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5nvw.pdb.gz\n", "Downloading https://files.rcsb.org/download/5nvx.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5nvx.pdb.gz\n", "Downloading https://files.rcsb.org/download/5nvy.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5nvy.pdb.gz\n", "Downloading https://files.rcsb.org/download/5nvz.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5nvz.pdb.gz\n", "Downloading https://files.rcsb.org/download/5nw0.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5nw0.pdb.gz\n", "Downloading https://files.rcsb.org/download/5nw1.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5nw1.pdb.gz\n", "Downloading https://files.rcsb.org/download/5nw2.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5nw2.pdb.gz\n", "Downloading https://files.rcsb.org/download/5t35.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5t35.pdb.gz\n", "Downloading https://files.rcsb.org/download/6bvb.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6bvb.pdb.gz\n", "Downloading https://files.rcsb.org/download/6c5x.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6c5x.pdb.gz\n", "Downloading https://files.rcsb.org/download/6fmi.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6fmi.pdb.gz\n", "Downloading https://files.rcsb.org/download/6fmj.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6fmj.pdb.gz\n", "Downloading https://files.rcsb.org/download/6fmk.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6fmk.pdb.gz\n", "Downloading https://files.rcsb.org/download/6gfx.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6gfx.pdb.gz\n", "Downloading https://files.rcsb.org/download/6gfy.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6gfy.pdb.gz\n", "Downloading https://files.rcsb.org/download/6gfz.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6gfz.pdb.gz\n", "Downloading https://files.rcsb.org/download/6gmn.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6gmn.pdb.gz\n", "Downloading https://files.rcsb.org/download/6gmq.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6gmq.pdb.gz\n", "Downloading https://files.rcsb.org/download/6gmr.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6gmr.pdb.gz\n", "Downloading https://files.rcsb.org/download/6gmx.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6gmx.pdb.gz\n", "Downloading https://files.rcsb.org/download/6hax.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6hax.pdb.gz\n", "Downloading https://files.rcsb.org/download/6hay.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6hay.pdb.gz\n", "Downloading https://files.rcsb.org/download/6hr2.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6hr2.pdb.gz\n", "Downloading https://files.rcsb.org/download/6i4x.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6i4x.pdb.gz\n", "Downloading https://files.rcsb.org/download/6i5j.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6i5j.pdb.gz\n", "Downloading https://files.rcsb.org/download/6i5n.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6i5n.pdb.gz\n", "Downloading https://files.rcsb.org/download/6i7q.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6i7q.pdb.gz\n", "Downloading https://files.rcsb.org/download/6i7r.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6i7r.pdb.gz\n", "Downloading https://files.rcsb.org/download/6p59.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6p59.pdb.gz\n", "Downloading https://files.rcsb.org/download/6r6h.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6r6h.pdb.gz\n", "Downloading https://files.rcsb.org/download/6r7f.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6r7f.pdb.gz\n", "Downloading https://files.rcsb.org/download/6r7h.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6r7h.pdb.gz\n", "Downloading https://files.rcsb.org/download/6r7i.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6r7i.pdb.gz\n", "Downloading https://files.rcsb.org/download/6r7n.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6r7n.pdb.gz\n", "Downloading https://files.rcsb.org/download/6sis.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6sis.pdb.gz\n", "Downloading https://files.rcsb.org/download/6v9h.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6v9h.pdb.gz\n", "Downloading https://files.rcsb.org/download/6zhc.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6zhc.pdb.gz\n", "Failed to download https://files.rcsb.org/download/6zhc.pdb.gz\n", "Downloading https://files.rcsb.org/download/7khh.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7khh.pdb.gz\n", "Downloading https://files.rcsb.org/download/7m6t.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7m6t.pdb.gz\n", "Downloading https://files.rcsb.org/download/3jck.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3jck.pdb.gz\n", "Downloading https://files.rcsb.org/download/5l4k.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5l4k.pdb.gz\n", "Downloading https://files.rcsb.org/download/5mpd.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5mpd.pdb.gz\n", "Downloading https://files.rcsb.org/download/5vgz.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5vgz.pdb.gz\n", "Downloading https://files.rcsb.org/download/5mpe.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5mpe.pdb.gz\n", "Downloading https://files.rcsb.org/download/4d10.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4d10.pdb.gz\n", "Downloading https://files.rcsb.org/download/4d18.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4d18.pdb.gz\n", "Downloading https://files.rcsb.org/download/4wsn.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4wsn.pdb.gz\n", "Failed to download https://files.rcsb.org/download/4wsn.pdb.gz\n", "Downloading https://files.rcsb.org/download/1a2c.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1a2c.pdb.gz\n", "Downloading https://files.rcsb.org/download/1a3e.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1a3e.pdb.gz\n", "Downloading https://files.rcsb.org/download/1a46.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1a46.pdb.gz\n", "Downloading https://files.rcsb.org/download/1a4w.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1a4w.pdb.gz\n", "Downloading https://files.rcsb.org/download/1a5g.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1a5g.pdb.gz\n", "Downloading https://files.rcsb.org/download/1a61.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1a61.pdb.gz\n", "Downloading https://files.rcsb.org/download/1abi.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1abi.pdb.gz\n", "Downloading https://files.rcsb.org/download/1abj.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1abj.pdb.gz\n", "Downloading https://files.rcsb.org/download/1ad8.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1ad8.pdb.gz\n", "Downloading https://files.rcsb.org/download/1ae8.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1ae8.pdb.gz\n", "Downloading https://files.rcsb.org/download/1afe.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1afe.pdb.gz\n", "Downloading https://files.rcsb.org/download/1aht.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1aht.pdb.gz\n", "Downloading https://files.rcsb.org/download/1avg.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1avg.pdb.gz\n", "Downloading https://files.rcsb.org/download/1awf.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1awf.pdb.gz\n", "Downloading https://files.rcsb.org/download/1awh.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1awh.pdb.gz\n", "Downloading https://files.rcsb.org/download/1ay6.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1ay6.pdb.gz\n", "Downloading https://files.rcsb.org/download/1b5g.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1b5g.pdb.gz\n", "Downloading https://files.rcsb.org/download/1b7x.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1b7x.pdb.gz\n", "Downloading https://files.rcsb.org/download/1ba8.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1ba8.pdb.gz\n", "Downloading https://files.rcsb.org/download/1bb0.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1bb0.pdb.gz\n", "Downloading https://files.rcsb.org/download/1bcu.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1bcu.pdb.gz\n", "Downloading https://files.rcsb.org/download/1bmm.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1bmm.pdb.gz\n", "Downloading https://files.rcsb.org/download/1bmn.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1bmn.pdb.gz\n", "Downloading https://files.rcsb.org/download/1bth.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1bth.pdb.gz\n", "Downloading https://files.rcsb.org/download/1c1u.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1c1u.pdb.gz\n", "Downloading https://files.rcsb.org/download/1c1v.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1c1v.pdb.gz\n", "Downloading https://files.rcsb.org/download/1c1w.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1c1w.pdb.gz\n", "Downloading https://files.rcsb.org/download/1c4u.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1c4u.pdb.gz\n", "Downloading https://files.rcsb.org/download/1c4v.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1c4v.pdb.gz\n", "Downloading https://files.rcsb.org/download/1c4y.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1c4y.pdb.gz\n", "Downloading https://files.rcsb.org/download/1c5l.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1c5l.pdb.gz\n", "Downloading https://files.rcsb.org/download/1c5n.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1c5n.pdb.gz\n", "Downloading https://files.rcsb.org/download/1c5o.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1c5o.pdb.gz\n", "Downloading https://files.rcsb.org/download/1ca8.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1ca8.pdb.gz\n", "Downloading https://files.rcsb.org/download/1d3d.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1d3d.pdb.gz\n", "Downloading https://files.rcsb.org/download/1d3p.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1d3p.pdb.gz\n", "Downloading https://files.rcsb.org/download/1d3q.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1d3q.pdb.gz\n", "Downloading https://files.rcsb.org/download/1d3t.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1d3t.pdb.gz\n", "Downloading https://files.rcsb.org/download/1d4p.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1d4p.pdb.gz\n", "Downloading https://files.rcsb.org/download/1de7.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1de7.pdb.gz\n", "Downloading https://files.rcsb.org/download/1dit.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1dit.pdb.gz\n", "Downloading https://files.rcsb.org/download/1dm4.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1dm4.pdb.gz\n", "Downloading https://files.rcsb.org/download/1dwb.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1dwb.pdb.gz\n", "Downloading https://files.rcsb.org/download/1dwc.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1dwc.pdb.gz\n", "Downloading https://files.rcsb.org/download/1dwd.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1dwd.pdb.gz\n", "Downloading https://files.rcsb.org/download/1dwe.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1dwe.pdb.gz\n", "Downloading https://files.rcsb.org/download/1dx5.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1dx5.pdb.gz\n", "Downloading https://files.rcsb.org/download/1e0f.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1e0f.pdb.gz\n", "Downloading https://files.rcsb.org/download/1eb1.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1eb1.pdb.gz\n", "Downloading https://files.rcsb.org/download/1etr.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1etr.pdb.gz\n", "Downloading https://files.rcsb.org/download/1ets.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1ets.pdb.gz\n", "Downloading https://files.rcsb.org/download/1ett.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1ett.pdb.gz\n", "Downloading https://files.rcsb.org/download/1fpc.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1fpc.pdb.gz\n", "Downloading https://files.rcsb.org/download/1fph.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1fph.pdb.gz\n", "Downloading https://files.rcsb.org/download/1g30.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1g30.pdb.gz\n", "Downloading https://files.rcsb.org/download/1g32.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1g32.pdb.gz\n", "Downloading https://files.rcsb.org/download/1ghv.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1ghv.pdb.gz\n", "Downloading https://files.rcsb.org/download/1ghw.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1ghw.pdb.gz\n", "Downloading https://files.rcsb.org/download/1ghx.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1ghx.pdb.gz\n", "Downloading https://files.rcsb.org/download/1ghy.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1ghy.pdb.gz\n", "Downloading https://files.rcsb.org/download/1gj4.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1gj4.pdb.gz\n", "Downloading https://files.rcsb.org/download/1gj5.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1gj5.pdb.gz\n", "Downloading https://files.rcsb.org/download/1h8d.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1h8d.pdb.gz\n", "Downloading https://files.rcsb.org/download/1h8i.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1h8i.pdb.gz\n", "Downloading https://files.rcsb.org/download/1hah.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1hah.pdb.gz\n", "Downloading https://files.rcsb.org/download/1hai.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1hai.pdb.gz\n", "Downloading https://files.rcsb.org/download/1hao.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1hao.pdb.gz\n", "Downloading https://files.rcsb.org/download/1hap.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1hap.pdb.gz\n", "Downloading https://files.rcsb.org/download/1hbt.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1hbt.pdb.gz\n", "Downloading https://files.rcsb.org/download/1hdt.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1hdt.pdb.gz\n", "Downloading https://files.rcsb.org/download/1hgt.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1hgt.pdb.gz\n", "Downloading https://files.rcsb.org/download/1hlt.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1hlt.pdb.gz\n", "Downloading https://files.rcsb.org/download/1hrt.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1hrt.pdb.gz\n", "Downloading https://files.rcsb.org/download/1hut.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1hut.pdb.gz\n", "Downloading https://files.rcsb.org/download/1hxe.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1hxe.pdb.gz\n", "Downloading https://files.rcsb.org/download/1hxf.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1hxf.pdb.gz\n", "Downloading https://files.rcsb.org/download/1ihs.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1ihs.pdb.gz\n", "Downloading https://files.rcsb.org/download/1iht.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1iht.pdb.gz\n", "Downloading https://files.rcsb.org/download/1jmo.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1jmo.pdb.gz\n", "Downloading https://files.rcsb.org/download/1jou.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1jou.pdb.gz\n", "Downloading https://files.rcsb.org/download/1lhc.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1lhc.pdb.gz\n", "Downloading https://files.rcsb.org/download/1lhd.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1lhd.pdb.gz\n", "Downloading https://files.rcsb.org/download/1lhe.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1lhe.pdb.gz\n", "Downloading https://files.rcsb.org/download/1lhf.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1lhf.pdb.gz\n", "Downloading https://files.rcsb.org/download/1lhg.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1lhg.pdb.gz\n", "Downloading https://files.rcsb.org/download/1mkw.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1mkw.pdb.gz\n", "Downloading https://files.rcsb.org/download/1mkx.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1mkx.pdb.gz\n", "Downloading https://files.rcsb.org/download/1mu6.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1mu6.pdb.gz\n", "Downloading https://files.rcsb.org/download/1mu8.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1mu8.pdb.gz\n", "Downloading https://files.rcsb.org/download/1mue.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1mue.pdb.gz\n", "Downloading https://files.rcsb.org/download/1no9.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1no9.pdb.gz\n", "Downloading https://files.rcsb.org/download/1nrn.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1nrn.pdb.gz\n", "Downloading https://files.rcsb.org/download/1nro.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1nro.pdb.gz\n", "Downloading https://files.rcsb.org/download/1nrp.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1nrp.pdb.gz\n", "Downloading https://files.rcsb.org/download/1nrq.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1nrq.pdb.gz\n", "Downloading https://files.rcsb.org/download/1nrr.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1nrr.pdb.gz\n", "Downloading https://files.rcsb.org/download/1nrs.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1nrs.pdb.gz\n", "Downloading https://files.rcsb.org/download/1nu7.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1nu7.pdb.gz\n", "Downloading https://files.rcsb.org/download/1ny2.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1ny2.pdb.gz\n", "Downloading https://files.rcsb.org/download/1nzq.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1nzq.pdb.gz\n", "Downloading https://files.rcsb.org/download/1o0d.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1o0d.pdb.gz\n", "Downloading https://files.rcsb.org/download/1o2g.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1o2g.pdb.gz\n", "Downloading https://files.rcsb.org/download/1o5g.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1o5g.pdb.gz\n", "Downloading https://files.rcsb.org/download/1ook.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1ook.pdb.gz\n", "Downloading https://files.rcsb.org/download/1oyt.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1oyt.pdb.gz\n", "Downloading https://files.rcsb.org/download/1ppb.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1ppb.pdb.gz\n", "Downloading https://files.rcsb.org/download/1qbv.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1qbv.pdb.gz\n", "Downloading https://files.rcsb.org/download/1qhr.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1qhr.pdb.gz\n", "Downloading https://files.rcsb.org/download/1qj1.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1qj1.pdb.gz\n", "Downloading https://files.rcsb.org/download/1qj6.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1qj6.pdb.gz\n", "Downloading https://files.rcsb.org/download/1qj7.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1qj7.pdb.gz\n", "Downloading https://files.rcsb.org/download/1qur.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1qur.pdb.gz\n", "Downloading https://files.rcsb.org/download/1rd3.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1rd3.pdb.gz\n", "Downloading https://files.rcsb.org/download/1sb1.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1sb1.pdb.gz\n", "Downloading https://files.rcsb.org/download/1sfq.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1sfq.pdb.gz\n", "Downloading https://files.rcsb.org/download/1sg8.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1sg8.pdb.gz\n", "Downloading https://files.rcsb.org/download/1sgi.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1sgi.pdb.gz\n", "Downloading https://files.rcsb.org/download/1shh.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1shh.pdb.gz\n", "Downloading https://files.rcsb.org/download/1sr5.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1sr5.pdb.gz\n", "Downloading https://files.rcsb.org/download/1t4u.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1t4u.pdb.gz\n", "Downloading https://files.rcsb.org/download/1t4v.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1t4v.pdb.gz\n", "Downloading https://files.rcsb.org/download/1tb6.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1tb6.pdb.gz\n", "Downloading https://files.rcsb.org/download/1tbq.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1tbq.pdb.gz\n", "Downloading https://files.rcsb.org/download/1tbr.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1tbr.pdb.gz\n", "Downloading https://files.rcsb.org/download/1tbz.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1tbz.pdb.gz\n", "Downloading https://files.rcsb.org/download/1thp.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1thp.pdb.gz\n", "Downloading https://files.rcsb.org/download/1thr.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1thr.pdb.gz\n", "Downloading https://files.rcsb.org/download/1ths.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1ths.pdb.gz\n", "Downloading https://files.rcsb.org/download/1tmb.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1tmb.pdb.gz\n", "Downloading https://files.rcsb.org/download/1tmt.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1tmt.pdb.gz\n", "Downloading https://files.rcsb.org/download/1tmu.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1tmu.pdb.gz\n", "Downloading https://files.rcsb.org/download/1toc.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1toc.pdb.gz\n", "Downloading https://files.rcsb.org/download/1tom.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1tom.pdb.gz\n", "Downloading https://files.rcsb.org/download/1tq0.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1tq0.pdb.gz\n", "Downloading https://files.rcsb.org/download/1twx.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1twx.pdb.gz\n", "Downloading https://files.rcsb.org/download/1uma.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1uma.pdb.gz\n", "Downloading https://files.rcsb.org/download/1uvs.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1uvs.pdb.gz\n", "Downloading https://files.rcsb.org/download/1uvt.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1uvt.pdb.gz\n", "Downloading https://files.rcsb.org/download/1uvu.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1uvu.pdb.gz\n", "Downloading https://files.rcsb.org/download/1vzq.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1vzq.pdb.gz\n", "Downloading https://files.rcsb.org/download/1w7g.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1w7g.pdb.gz\n", "Downloading https://files.rcsb.org/download/1way.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1way.pdb.gz\n", "Downloading https://files.rcsb.org/download/1wbg.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1wbg.pdb.gz\n", "Downloading https://files.rcsb.org/download/1xmn.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1xmn.pdb.gz\n", "Downloading https://files.rcsb.org/download/1ype.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1ype.pdb.gz\n", "Downloading https://files.rcsb.org/download/1ypg.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1ypg.pdb.gz\n", "Downloading https://files.rcsb.org/download/1ypj.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1ypj.pdb.gz\n", "Downloading https://files.rcsb.org/download/1ypk.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1ypk.pdb.gz\n", "Downloading https://files.rcsb.org/download/1ypl.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1ypl.pdb.gz\n", "Downloading https://files.rcsb.org/download/1ypm.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1ypm.pdb.gz\n", "Downloading https://files.rcsb.org/download/1z8i.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1z8i.pdb.gz\n", "Downloading https://files.rcsb.org/download/1z8j.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1z8j.pdb.gz\n", "Downloading https://files.rcsb.org/download/2a0q.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/2a0q.pdb.gz\n", "Downloading https://files.rcsb.org/download/2a1d.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/2a1d.pdb.gz\n", "Downloading https://files.rcsb.org/download/2a2x.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/2a2x.pdb.gz\n", "Downloading https://files.rcsb.org/download/2a45.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/2a45.pdb.gz\n", "Downloading https://files.rcsb.org/download/2afq.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/2afq.pdb.gz\n", "Downloading https://files.rcsb.org/download/2ank.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/2ank.pdb.gz\n", "Downloading https://files.rcsb.org/download/2anm.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/2anm.pdb.gz\n", "Downloading https://files.rcsb.org/download/2b5t.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/2b5t.pdb.gz\n", "Downloading https://files.rcsb.org/download/2bvr.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/2bvr.pdb.gz\n", "Downloading https://files.rcsb.org/download/2bvs.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/2bvs.pdb.gz\n", "Downloading https://files.rcsb.org/download/2bvx.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/2bvx.pdb.gz\n", "Downloading https://files.rcsb.org/download/2bxt.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/2bxt.pdb.gz\n", "Downloading https://files.rcsb.org/download/2bxu.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/2bxu.pdb.gz\n", "Downloading https://files.rcsb.org/download/2c8y.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/2c8y.pdb.gz\n", "Downloading https://files.rcsb.org/download/2c8z.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/2c8z.pdb.gz\n", "Downloading https://files.rcsb.org/download/2cf8.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/2cf8.pdb.gz\n", "Downloading https://files.rcsb.org/download/2cf9.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/2cf9.pdb.gz\n", "Downloading https://files.rcsb.org/download/2cn0.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/2cn0.pdb.gz\n", "Downloading https://files.rcsb.org/download/2feq.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/2feq.pdb.gz\n", "Downloading https://files.rcsb.org/download/2fes.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/2fes.pdb.gz\n", "Downloading https://files.rcsb.org/download/2gde.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/2gde.pdb.gz\n", "Downloading https://files.rcsb.org/download/2h9t.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/2h9t.pdb.gz\n", "Downloading https://files.rcsb.org/download/2hgt.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/2hgt.pdb.gz\n", "Downloading https://files.rcsb.org/download/2hpp.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/2hpp.pdb.gz\n", "Downloading https://files.rcsb.org/download/2hpq.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/2hpq.pdb.gz\n", "Downloading https://files.rcsb.org/download/2hwl.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/2hwl.pdb.gz\n", "Downloading https://files.rcsb.org/download/2jh5.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/2jh5.pdb.gz\n", "Downloading https://files.rcsb.org/download/2jh6.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/2jh6.pdb.gz\n", "Downloading https://files.rcsb.org/download/2ocv.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/2ocv.pdb.gz\n", "Downloading https://files.rcsb.org/download/2od3.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/2od3.pdb.gz\n", "Downloading https://files.rcsb.org/download/2ody.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/2ody.pdb.gz\n", "Downloading https://files.rcsb.org/download/2pgb.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/2pgb.pdb.gz\n", "Downloading https://files.rcsb.org/download/2pux.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/2pux.pdb.gz\n", "Downloading https://files.rcsb.org/download/2pv9.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/2pv9.pdb.gz\n", "Downloading https://files.rcsb.org/download/2pw8.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/2pw8.pdb.gz\n", "Downloading https://files.rcsb.org/download/2r2m.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/2r2m.pdb.gz\n", "Downloading https://files.rcsb.org/download/2thf.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/2thf.pdb.gz\n", "Downloading https://files.rcsb.org/download/2uuf.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/2uuf.pdb.gz\n", "Downloading https://files.rcsb.org/download/2uuk.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/2uuk.pdb.gz\n", "Downloading https://files.rcsb.org/download/2v3h.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/2v3h.pdb.gz\n", "Downloading https://files.rcsb.org/download/2v3o.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/2v3o.pdb.gz\n", "Downloading https://files.rcsb.org/download/2zc9.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/2zc9.pdb.gz\n", "Downloading https://files.rcsb.org/download/2zda.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/2zda.pdb.gz\n", "Downloading https://files.rcsb.org/download/2zdv.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/2zdv.pdb.gz\n", "Downloading https://files.rcsb.org/download/2zf0.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/2zf0.pdb.gz\n", "Downloading https://files.rcsb.org/download/2zfp.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/2zfp.pdb.gz\n", "Downloading https://files.rcsb.org/download/2zfq.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/2zfq.pdb.gz\n", "Downloading https://files.rcsb.org/download/2zfr.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/2zfr.pdb.gz\n", "Downloading https://files.rcsb.org/download/2zg0.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/2zg0.pdb.gz\n", "Downloading https://files.rcsb.org/download/2zgx.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/2zgx.pdb.gz\n", "Downloading https://files.rcsb.org/download/2zhe.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/2zhe.pdb.gz\n", "Downloading https://files.rcsb.org/download/2zhf.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/2zhf.pdb.gz\n", "Downloading https://files.rcsb.org/download/2zhq.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/2zhq.pdb.gz\n", "Downloading https://files.rcsb.org/download/2zhw.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/2zhw.pdb.gz\n", "Downloading https://files.rcsb.org/download/2zi2.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/2zi2.pdb.gz\n", "Downloading https://files.rcsb.org/download/2ziq.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/2ziq.pdb.gz\n", "Downloading https://files.rcsb.org/download/2znk.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/2znk.pdb.gz\n", "Downloading https://files.rcsb.org/download/3b23.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3b23.pdb.gz\n", "Downloading https://files.rcsb.org/download/3b9f.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3b9f.pdb.gz\n", "Downloading https://files.rcsb.org/download/3bef.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3bef.pdb.gz\n", "Downloading https://files.rcsb.org/download/3bei.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3bei.pdb.gz\n", "Downloading https://files.rcsb.org/download/3bf6.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3bf6.pdb.gz\n", "Downloading https://files.rcsb.org/download/3biu.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3biu.pdb.gz\n", "Downloading https://files.rcsb.org/download/3biv.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3biv.pdb.gz\n", "Downloading https://files.rcsb.org/download/3bv9.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3bv9.pdb.gz\n", "Downloading https://files.rcsb.org/download/3c27.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3c27.pdb.gz\n", "Downloading https://files.rcsb.org/download/3d49.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3d49.pdb.gz\n", "Downloading https://files.rcsb.org/download/3da9.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3da9.pdb.gz\n", "Downloading https://files.rcsb.org/download/3dd2.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3dd2.pdb.gz\n", "Downloading https://files.rcsb.org/download/3dux.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3dux.pdb.gz\n", "Downloading https://files.rcsb.org/download/3edx.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3edx.pdb.gz\n", "Downloading https://files.rcsb.org/download/3ee0.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3ee0.pdb.gz\n", "Downloading https://files.rcsb.org/download/3egk.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3egk.pdb.gz\n", "Downloading https://files.rcsb.org/download/3f68.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3f68.pdb.gz\n", "Downloading https://files.rcsb.org/download/3gic.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3gic.pdb.gz\n", "Downloading https://files.rcsb.org/download/3gis.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3gis.pdb.gz\n", "Downloading https://files.rcsb.org/download/3hat.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3hat.pdb.gz\n", "Downloading https://files.rcsb.org/download/3hk3.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3hk3.pdb.gz\n", "Downloading https://files.rcsb.org/download/3hk6.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3hk6.pdb.gz\n", "Downloading https://files.rcsb.org/download/3hki.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3hki.pdb.gz\n", "Downloading https://files.rcsb.org/download/3hkj.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3hkj.pdb.gz\n", "Downloading https://files.rcsb.org/download/3htc.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3htc.pdb.gz\n", "Downloading https://files.rcsb.org/download/3jz1.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3jz1.pdb.gz\n", "Downloading https://files.rcsb.org/download/3jz2.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3jz2.pdb.gz\n", "Downloading https://files.rcsb.org/download/3ldx.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3ldx.pdb.gz\n", "Downloading https://files.rcsb.org/download/3lu9.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3lu9.pdb.gz\n", "Downloading https://files.rcsb.org/download/3p6z.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3p6z.pdb.gz\n", "Downloading https://files.rcsb.org/download/3p70.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3p70.pdb.gz\n", "Downloading https://files.rcsb.org/download/3pma.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3pma.pdb.gz\n", "Downloading https://files.rcsb.org/download/3pmb.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3pmb.pdb.gz\n", "Downloading https://files.rcsb.org/download/3pmh.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3pmh.pdb.gz\n", "Downloading https://files.rcsb.org/download/3qdz.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3qdz.pdb.gz\n", "Downloading https://files.rcsb.org/download/3qgn.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3qgn.pdb.gz\n", "Downloading https://files.rcsb.org/download/3qlp.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3qlp.pdb.gz\n", "Downloading https://files.rcsb.org/download/3qwc.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3qwc.pdb.gz\n", "Downloading https://files.rcsb.org/download/3qx5.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3qx5.pdb.gz\n", "Downloading https://files.rcsb.org/download/3r3g.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3r3g.pdb.gz\n", "Downloading https://files.rcsb.org/download/3rlw.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3rlw.pdb.gz\n", "Downloading https://files.rcsb.org/download/3rly.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3rly.pdb.gz\n", "Downloading https://files.rcsb.org/download/3rm0.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3rm0.pdb.gz\n", "Downloading https://files.rcsb.org/download/3rmm.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3rmm.pdb.gz\n", "Downloading https://files.rcsb.org/download/3rmn.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3rmn.pdb.gz\n", "Downloading https://files.rcsb.org/download/3rmo.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3rmo.pdb.gz\n", "Downloading https://files.rcsb.org/download/3s7h.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3s7h.pdb.gz\n", "Downloading https://files.rcsb.org/download/3s7k.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3s7k.pdb.gz\n", "Downloading https://files.rcsb.org/download/3shc.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3shc.pdb.gz\n", "Downloading https://files.rcsb.org/download/3si4.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3si4.pdb.gz\n", "Downloading https://files.rcsb.org/download/3t5f.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3t5f.pdb.gz\n", "Downloading https://files.rcsb.org/download/3tu7.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3tu7.pdb.gz\n", "Downloading https://files.rcsb.org/download/3u69.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3u69.pdb.gz\n", "Downloading https://files.rcsb.org/download/3u8o.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3u8o.pdb.gz\n", "Downloading https://files.rcsb.org/download/3u8r.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3u8r.pdb.gz\n", "Downloading https://files.rcsb.org/download/3u8t.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3u8t.pdb.gz\n", "Downloading https://files.rcsb.org/download/3u98.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3u98.pdb.gz\n", "Downloading https://files.rcsb.org/download/3utu.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3utu.pdb.gz\n", "Downloading https://files.rcsb.org/download/3uwj.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3uwj.pdb.gz\n", "Downloading https://files.rcsb.org/download/3vxe.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3vxe.pdb.gz\n", "Downloading https://files.rcsb.org/download/3vxf.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3vxf.pdb.gz\n", "Downloading https://files.rcsb.org/download/4ax9.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4ax9.pdb.gz\n", "Downloading https://files.rcsb.org/download/4boh.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4boh.pdb.gz\n", "Downloading https://files.rcsb.org/download/4ch2.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4ch2.pdb.gz\n", "Downloading https://files.rcsb.org/download/4ch8.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4ch8.pdb.gz\n", "Downloading https://files.rcsb.org/download/4dih.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4dih.pdb.gz\n", "Downloading https://files.rcsb.org/download/4dii.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4dii.pdb.gz\n", "Downloading https://files.rcsb.org/download/4dt7.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4dt7.pdb.gz\n", "Downloading https://files.rcsb.org/download/4dy7.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4dy7.pdb.gz\n", "Downloading https://files.rcsb.org/download/4e05.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4e05.pdb.gz\n", "Downloading https://files.rcsb.org/download/4e06.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4e06.pdb.gz\n", "Downloading https://files.rcsb.org/download/4e7r.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4e7r.pdb.gz\n", "Downloading https://files.rcsb.org/download/4h6s.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4h6s.pdb.gz\n", "Downloading https://files.rcsb.org/download/4hfp.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4hfp.pdb.gz\n", "Downloading https://files.rcsb.org/download/4htc.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4htc.pdb.gz\n", "Downloading https://files.rcsb.org/download/4i7y.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4i7y.pdb.gz\n", "Downloading https://files.rcsb.org/download/4loy.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4loy.pdb.gz\n", "Downloading https://files.rcsb.org/download/4lxb.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4lxb.pdb.gz\n", "Downloading https://files.rcsb.org/download/4lz1.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4lz1.pdb.gz\n", "Downloading https://files.rcsb.org/download/4lz4.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4lz4.pdb.gz\n", "Downloading https://files.rcsb.org/download/4mlf.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4mlf.pdb.gz\n", "Downloading https://files.rcsb.org/download/4rkj.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4rkj.pdb.gz\n", "Downloading https://files.rcsb.org/download/4thn.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4thn.pdb.gz\n", "Downloading https://files.rcsb.org/download/4ud9.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4ud9.pdb.gz\n", "Downloading https://files.rcsb.org/download/4udw.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4udw.pdb.gz\n", "Downloading https://files.rcsb.org/download/4ue7.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4ue7.pdb.gz\n", "Downloading https://files.rcsb.org/download/4ueh.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4ueh.pdb.gz\n", "Downloading https://files.rcsb.org/download/4ufd.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4ufd.pdb.gz\n", "Downloading https://files.rcsb.org/download/4ufe.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4ufe.pdb.gz\n", "Downloading https://files.rcsb.org/download/4uff.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4uff.pdb.gz\n", "Downloading https://files.rcsb.org/download/4ufg.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4ufg.pdb.gz\n", "Downloading https://files.rcsb.org/download/4yes.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4yes.pdb.gz\n", "Downloading https://files.rcsb.org/download/5a2m.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5a2m.pdb.gz\n", "Downloading https://files.rcsb.org/download/5af9.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5af9.pdb.gz\n", "Downloading https://files.rcsb.org/download/5afy.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5afy.pdb.gz\n", "Downloading https://files.rcsb.org/download/5afz.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5afz.pdb.gz\n", "Downloading https://files.rcsb.org/download/5ahg.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5ahg.pdb.gz\n", "Downloading https://files.rcsb.org/download/5cmx.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5cmx.pdb.gz\n", "Downloading https://files.rcsb.org/download/5do4.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5do4.pdb.gz\n", "Downloading https://files.rcsb.org/download/5e8e.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5e8e.pdb.gz\n", "Downloading https://files.rcsb.org/download/5ew1.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5ew1.pdb.gz\n", "Downloading https://files.rcsb.org/download/5ew2.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5ew2.pdb.gz\n", "Downloading https://files.rcsb.org/download/5gds.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5gds.pdb.gz\n", "Downloading https://files.rcsb.org/download/5jdu.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5jdu.pdb.gz\n", "Downloading https://files.rcsb.org/download/5l6n.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5l6n.pdb.gz\n", "Downloading https://files.rcsb.org/download/5lpd.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5lpd.pdb.gz\n", "Downloading https://files.rcsb.org/download/5mls.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5mls.pdb.gz\n", "Downloading https://files.rcsb.org/download/5mm6.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5mm6.pdb.gz\n", "Downloading https://files.rcsb.org/download/5nhu.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5nhu.pdb.gz\n", "Downloading https://files.rcsb.org/download/6cym.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6cym.pdb.gz\n", "Downloading https://files.rcsb.org/download/6eo6.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6eo6.pdb.gz\n", "Downloading https://files.rcsb.org/download/6eo7.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6eo7.pdb.gz\n", "Downloading https://files.rcsb.org/download/6eo8.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6eo8.pdb.gz\n", "Downloading https://files.rcsb.org/download/6eo9.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6eo9.pdb.gz\n", "Downloading https://files.rcsb.org/download/6evv.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6evv.pdb.gz\n", "Downloading https://files.rcsb.org/download/6fjt.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6fjt.pdb.gz\n", "Downloading https://files.rcsb.org/download/6gn7.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6gn7.pdb.gz\n", "Downloading https://files.rcsb.org/download/6hsx.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6hsx.pdb.gz\n", "Downloading https://files.rcsb.org/download/6i51.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6i51.pdb.gz\n", "Downloading https://files.rcsb.org/download/6p9u.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6p9u.pdb.gz\n", "Downloading https://files.rcsb.org/download/6pxj.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6pxj.pdb.gz\n", "Downloading https://files.rcsb.org/download/6pxq.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6pxq.pdb.gz\n", "Downloading https://files.rcsb.org/download/6rot.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6rot.pdb.gz\n", "Downloading https://files.rcsb.org/download/6t3m.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6t3m.pdb.gz\n", "Downloading https://files.rcsb.org/download/6t52.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6t52.pdb.gz\n", "Downloading https://files.rcsb.org/download/6t54.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6t54.pdb.gz\n", "Downloading https://files.rcsb.org/download/6t55.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6t55.pdb.gz\n", "Downloading https://files.rcsb.org/download/6t56.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6t56.pdb.gz\n", "Downloading https://files.rcsb.org/download/6t57.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6t57.pdb.gz\n", "Downloading https://files.rcsb.org/download/6t7h.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6t7h.pdb.gz\n", "Downloading https://files.rcsb.org/download/6t89.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6t89.pdb.gz\n", "Downloading https://files.rcsb.org/download/6t8a.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6t8a.pdb.gz\n", "Downloading https://files.rcsb.org/download/6tkg.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6tkg.pdb.gz\n", "Downloading https://files.rcsb.org/download/6tkh.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6tkh.pdb.gz\n", "Downloading https://files.rcsb.org/download/6tki.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6tki.pdb.gz\n", "Downloading https://files.rcsb.org/download/6tkj.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6tkj.pdb.gz\n", "Downloading https://files.rcsb.org/download/6tkl.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6tkl.pdb.gz\n", "Downloading https://files.rcsb.org/download/6v64.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6v64.pdb.gz\n", "Downloading https://files.rcsb.org/download/6y9h.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6y9h.pdb.gz\n", "Downloading https://files.rcsb.org/download/6yb6.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6yb6.pdb.gz\n", "Downloading https://files.rcsb.org/download/6yhg.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6yhg.pdb.gz\n", "Downloading https://files.rcsb.org/download/6yhj.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6yhj.pdb.gz\n", "Downloading https://files.rcsb.org/download/6ymp.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6ymp.pdb.gz\n", "Downloading https://files.rcsb.org/download/6yn3.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6yn3.pdb.gz\n", "Downloading https://files.rcsb.org/download/6yqv.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6yqv.pdb.gz\n", "Downloading https://files.rcsb.org/download/6ysj.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6ysj.pdb.gz\n", "Downloading https://files.rcsb.org/download/6ysx.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6ysx.pdb.gz\n", "Downloading https://files.rcsb.org/download/6z8v.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6z8v.pdb.gz\n", "Downloading https://files.rcsb.org/download/6z8w.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6z8w.pdb.gz\n", "Downloading https://files.rcsb.org/download/6z8x.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6z8x.pdb.gz\n", "Downloading https://files.rcsb.org/download/6zgo.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6zgo.pdb.gz\n", "Downloading https://files.rcsb.org/download/6zug.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6zug.pdb.gz\n", "Downloading https://files.rcsb.org/download/6zuh.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6zuh.pdb.gz\n", "Downloading https://files.rcsb.org/download/6zux.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6zux.pdb.gz\n", "Downloading https://files.rcsb.org/download/6zv8.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6zv8.pdb.gz\n", "Downloading https://files.rcsb.org/download/7a0d.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7a0d.pdb.gz\n", "Failed to download https://files.rcsb.org/download/7a0d.pdb.gz\n", "Downloading https://files.rcsb.org/download/7a0e.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7a0e.pdb.gz\n", "Failed to download https://files.rcsb.org/download/7a0e.pdb.gz\n", "Downloading https://files.rcsb.org/download/7a0f.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7a0f.pdb.gz\n", "Failed to download https://files.rcsb.org/download/7a0f.pdb.gz\n", "Downloading https://files.rcsb.org/download/7ac9.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7ac9.pdb.gz\n", "Downloading https://files.rcsb.org/download/7kme.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7kme.pdb.gz\n", "Downloading https://files.rcsb.org/download/7mj5.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7mj5.pdb.gz\n", "Downloading https://files.rcsb.org/download/7ntu.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7ntu.pdb.gz\n", "Downloading https://files.rcsb.org/download/7phx.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7phx.pdb.gz\n", "Downloading https://files.rcsb.org/download/7sr9.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7sr9.pdb.gz\n", "Downloading https://files.rcsb.org/download/8kme.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/8kme.pdb.gz\n", "Downloading https://files.rcsb.org/download/1c9p.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1c9p.pdb.gz\n", "Downloading https://files.rcsb.org/download/1c9t.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1c9t.pdb.gz\n", "Downloading https://files.rcsb.org/download/1eja.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1eja.pdb.gz\n", "Downloading https://files.rcsb.org/download/1nbf.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1nbf.pdb.gz\n", "Downloading https://files.rcsb.org/download/2ayo.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/2ayo.pdb.gz\n", "Downloading https://files.rcsb.org/download/2hd5.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/2hd5.pdb.gz\n", "Downloading https://files.rcsb.org/download/2ibi.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/2ibi.pdb.gz\n", "Downloading https://files.rcsb.org/download/3i3t.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3i3t.pdb.gz\n", "Downloading https://files.rcsb.org/download/3mtn.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3mtn.pdb.gz\n", "Downloading https://files.rcsb.org/download/3nhe.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3nhe.pdb.gz\n", "Downloading https://files.rcsb.org/download/3v6c.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3v6c.pdb.gz\n", "Downloading https://files.rcsb.org/download/3v6e.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3v6e.pdb.gz\n", "Downloading https://files.rcsb.org/download/3wxg.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3wxg.pdb.gz\n", "Downloading https://files.rcsb.org/download/5cvm.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5cvm.pdb.gz\n", "Downloading https://files.rcsb.org/download/5cvn.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5cvn.pdb.gz\n", "Downloading https://files.rcsb.org/download/5cvo.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5cvo.pdb.gz\n", "Downloading https://files.rcsb.org/download/5gvi.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5gvi.pdb.gz\n", "Downloading https://files.rcsb.org/download/5jtj.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5jtj.pdb.gz\n", "Downloading https://files.rcsb.org/download/5kyc.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5kyc.pdb.gz\n", "Downloading https://files.rcsb.org/download/5kyd.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5kyd.pdb.gz\n", "Downloading https://files.rcsb.org/download/5kye.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5kye.pdb.gz\n", "Downloading https://files.rcsb.org/download/5kyf.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5kyf.pdb.gz\n", "Downloading https://files.rcsb.org/download/5l8h.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5l8h.pdb.gz\n", "Downloading https://files.rcsb.org/download/5l8w.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5l8w.pdb.gz\n", "Downloading https://files.rcsb.org/download/5ohk.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5ohk.pdb.gz\n", "Downloading https://files.rcsb.org/download/5ohn.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5ohn.pdb.gz\n", "Downloading https://files.rcsb.org/download/5ohp.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5ohp.pdb.gz\n", "Downloading https://files.rcsb.org/download/5txk.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5txk.pdb.gz\n", "Downloading https://files.rcsb.org/download/5xu8.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5xu8.pdb.gz\n", "Downloading https://files.rcsb.org/download/5xve.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5xve.pdb.gz\n", "Downloading https://files.rcsb.org/download/6dgf.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6dgf.pdb.gz\n", "Downloading https://files.rcsb.org/download/6h4h.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6h4h.pdb.gz\n", "Downloading https://files.rcsb.org/download/6hei.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6hei.pdb.gz\n", "Downloading https://files.rcsb.org/download/6hek.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6hek.pdb.gz\n", "Downloading https://files.rcsb.org/download/7ay2.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7ay2.pdb.gz\n", "Downloading https://files.rcsb.org/download/2zqp.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/2zqp.pdb.gz\n", "Downloading https://files.rcsb.org/download/3din.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3din.pdb.gz\n", "Downloading https://files.rcsb.org/download/5aww.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5aww.pdb.gz\n", "Downloading https://files.rcsb.org/download/5ch4.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5ch4.pdb.gz\n", "Downloading https://files.rcsb.org/download/5eul.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5eul.pdb.gz\n", "Downloading https://files.rcsb.org/download/6itc.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6itc.pdb.gz\n", "Downloading https://files.rcsb.org/download/1c1y.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1c1y.pdb.gz\n", "Downloading https://files.rcsb.org/download/2mse.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/2mse.pdb.gz\n", "Downloading https://files.rcsb.org/download/3kuc.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3kuc.pdb.gz\n", "Downloading https://files.rcsb.org/download/3kud.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3kud.pdb.gz\n", "Downloading https://files.rcsb.org/download/4g0n.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4g0n.pdb.gz\n", "Downloading https://files.rcsb.org/download/4g3x.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4g3x.pdb.gz\n", "Downloading https://files.rcsb.org/download/6ntc.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6ntc.pdb.gz\n", "Downloading https://files.rcsb.org/download/6ntd.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6ntd.pdb.gz\n", "Downloading https://files.rcsb.org/download/6vjj.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6vjj.pdb.gz\n", "Downloading https://files.rcsb.org/download/7bvc.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7bvc.pdb.gz\n", "Downloading https://files.rcsb.org/download/7bve.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7bve.pdb.gz\n", "Downloading https://files.rcsb.org/download/7bvf.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7bvf.pdb.gz\n", "Downloading https://files.rcsb.org/download/7bvg.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7bvg.pdb.gz\n", "Downloading https://files.rcsb.org/download/7bvh.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7bvh.pdb.gz\n", "Downloading https://files.rcsb.org/download/7bwr.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7bwr.pdb.gz\n", "Downloading https://files.rcsb.org/download/7bx8.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7bx8.pdb.gz\n", "Downloading https://files.rcsb.org/download/3mv9.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3mv9.pdb.gz\n", "Downloading https://files.rcsb.org/download/4prh.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4prh.pdb.gz\n", "Downloading https://files.rcsb.org/download/1fyt.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1fyt.pdb.gz\n", "Downloading https://files.rcsb.org/download/1j8h.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1j8h.pdb.gz\n", "Downloading https://files.rcsb.org/download/1kgc.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1kgc.pdb.gz\n", "Downloading https://files.rcsb.org/download/1nfd.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1nfd.pdb.gz\n", "Downloading https://files.rcsb.org/download/1tcr.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1tcr.pdb.gz\n", "Downloading https://files.rcsb.org/download/1ymm.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1ymm.pdb.gz\n", "Downloading https://files.rcsb.org/download/1zgl.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1zgl.pdb.gz\n", "Downloading https://files.rcsb.org/download/2bnu.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/2bnu.pdb.gz\n", "Downloading https://files.rcsb.org/download/2cde.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/2cde.pdb.gz\n", "Downloading https://files.rcsb.org/download/2cdf.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/2cdf.pdb.gz\n", "Downloading https://files.rcsb.org/download/2cdg.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/2cdg.pdb.gz\n", "Downloading https://files.rcsb.org/download/2eyr.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/2eyr.pdb.gz\n", "Downloading https://files.rcsb.org/download/2eys.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/2eys.pdb.gz\n", "Downloading https://files.rcsb.org/download/2eyt.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/2eyt.pdb.gz\n", "Downloading https://files.rcsb.org/download/2ial.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/2ial.pdb.gz\n", "Downloading https://files.rcsb.org/download/2iam.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/2iam.pdb.gz\n", "Downloading https://files.rcsb.org/download/2ian.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/2ian.pdb.gz\n", "Downloading https://files.rcsb.org/download/2nw2.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/2nw2.pdb.gz\n", "Downloading https://files.rcsb.org/download/2po6.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/2po6.pdb.gz\n", "Downloading https://files.rcsb.org/download/2pyf.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/2pyf.pdb.gz\n", "Downloading https://files.rcsb.org/download/2q86.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/2q86.pdb.gz\n", "Downloading https://files.rcsb.org/download/2vlm.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/2vlm.pdb.gz\n", "Downloading https://files.rcsb.org/download/2wbj.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/2wbj.pdb.gz\n", "Downloading https://files.rcsb.org/download/2xn9.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/2xn9.pdb.gz\n", "Downloading https://files.rcsb.org/download/2xna.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/2xna.pdb.gz\n", "Downloading https://files.rcsb.org/download/3arb.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3arb.pdb.gz\n", "Downloading https://files.rcsb.org/download/3ard.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3ard.pdb.gz\n", "Downloading https://files.rcsb.org/download/3are.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3are.pdb.gz\n", "Downloading https://files.rcsb.org/download/3arf.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3arf.pdb.gz\n", "Downloading https://files.rcsb.org/download/3arg.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3arg.pdb.gz\n", "Downloading https://files.rcsb.org/download/3axl.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3axl.pdb.gz\n", "Downloading https://files.rcsb.org/download/3c5z.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3c5z.pdb.gz\n", "Downloading https://files.rcsb.org/download/3c60.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3c60.pdb.gz\n", "Downloading https://files.rcsb.org/download/3c6l.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3c6l.pdb.gz\n", "Downloading https://files.rcsb.org/download/3dx9.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3dx9.pdb.gz\n", "Downloading https://files.rcsb.org/download/3he6.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3he6.pdb.gz\n", "Downloading https://files.rcsb.org/download/3he7.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3he7.pdb.gz\n", "Downloading https://files.rcsb.org/download/3huj.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3huj.pdb.gz\n", "Downloading https://files.rcsb.org/download/3mbe.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3mbe.pdb.gz\n", "Downloading https://files.rcsb.org/download/3mff.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3mff.pdb.gz\n", "Downloading https://files.rcsb.org/download/3o6f.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3o6f.pdb.gz\n", "Downloading https://files.rcsb.org/download/3o8x.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3o8x.pdb.gz\n", "Downloading https://files.rcsb.org/download/3o9w.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3o9w.pdb.gz\n", "Downloading https://files.rcsb.org/download/3pl6.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3pl6.pdb.gz\n", "Downloading https://files.rcsb.org/download/3qeu.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3qeu.pdb.gz\n", "Downloading https://files.rcsb.org/download/3qh3.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3qh3.pdb.gz\n", "Downloading https://files.rcsb.org/download/3qi9.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3qi9.pdb.gz\n", "Downloading https://files.rcsb.org/download/3qib.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3qib.pdb.gz\n", "Downloading https://files.rcsb.org/download/3qiu.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3qiu.pdb.gz\n", "Downloading https://files.rcsb.org/download/3qiw.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3qiw.pdb.gz\n", "Downloading https://files.rcsb.org/download/3qjf.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3qjf.pdb.gz\n", "Downloading https://files.rcsb.org/download/3qjh.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3qjh.pdb.gz\n", "Downloading https://files.rcsb.org/download/3qux.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3qux.pdb.gz\n", "Downloading https://files.rcsb.org/download/3quy.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3quy.pdb.gz\n", "Downloading https://files.rcsb.org/download/3quz.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3quz.pdb.gz\n", "Downloading https://files.rcsb.org/download/3rdt.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3rdt.pdb.gz\n", "Downloading https://files.rcsb.org/download/3rev.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3rev.pdb.gz\n", "Downloading https://files.rcsb.org/download/3rtq.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3rtq.pdb.gz\n", "Downloading https://files.rcsb.org/download/3rug.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3rug.pdb.gz\n", "Downloading https://files.rcsb.org/download/3rzc.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3rzc.pdb.gz\n", "Downloading https://files.rcsb.org/download/3scm.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3scm.pdb.gz\n", "Downloading https://files.rcsb.org/download/3sda.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3sda.pdb.gz\n", "Downloading https://files.rcsb.org/download/3sdc.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3sdc.pdb.gz\n", "Downloading https://files.rcsb.org/download/3sdd.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3sdd.pdb.gz\n", "Downloading https://files.rcsb.org/download/3sdx.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3sdx.pdb.gz\n", "Downloading https://files.rcsb.org/download/3skn.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3skn.pdb.gz\n", "Downloading https://files.rcsb.org/download/3t0e.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3t0e.pdb.gz\n", "Downloading https://files.rcsb.org/download/3ta3.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3ta3.pdb.gz\n", "Downloading https://files.rcsb.org/download/3tfk.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3tfk.pdb.gz\n", "Downloading https://files.rcsb.org/download/3tjh.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3tjh.pdb.gz\n", "Downloading https://files.rcsb.org/download/3tn0.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3tn0.pdb.gz\n", "Downloading https://files.rcsb.org/download/3to4.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3to4.pdb.gz\n", "Downloading https://files.rcsb.org/download/3tpu.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3tpu.pdb.gz\n", "Downloading https://files.rcsb.org/download/3tvm.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3tvm.pdb.gz\n", "Downloading https://files.rcsb.org/download/3tyf.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3tyf.pdb.gz\n", "Downloading https://files.rcsb.org/download/3tzv.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3tzv.pdb.gz\n", "Downloading https://files.rcsb.org/download/3utp.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3utp.pdb.gz\n", "Downloading https://files.rcsb.org/download/3vwj.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3vwj.pdb.gz\n", "Downloading https://files.rcsb.org/download/3vwk.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3vwk.pdb.gz\n", "Downloading https://files.rcsb.org/download/3vxq.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3vxq.pdb.gz\n", "Downloading https://files.rcsb.org/download/3vxt.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3vxt.pdb.gz\n", "Downloading https://files.rcsb.org/download/4apq.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4apq.pdb.gz\n", "Downloading https://files.rcsb.org/download/4c56.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4c56.pdb.gz\n", "Downloading https://files.rcsb.org/download/4dzb.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4dzb.pdb.gz\n", "Downloading https://files.rcsb.org/download/4e41.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4e41.pdb.gz\n", "Downloading https://files.rcsb.org/download/4e42.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4e42.pdb.gz\n", "Downloading https://files.rcsb.org/download/4ei5.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4ei5.pdb.gz\n", "Downloading https://files.rcsb.org/download/4ei6.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4ei6.pdb.gz\n", "Downloading https://files.rcsb.org/download/4elk.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4elk.pdb.gz\n", "Downloading https://files.rcsb.org/download/4elm.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4elm.pdb.gz\n", "Downloading https://files.rcsb.org/download/4en3.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4en3.pdb.gz\n", "Downloading https://files.rcsb.org/download/4g8e.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4g8e.pdb.gz\n", "Downloading https://files.rcsb.org/download/4g8f.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4g8f.pdb.gz\n", "Downloading https://files.rcsb.org/download/4gg6.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4gg6.pdb.gz\n", "Downloading https://files.rcsb.org/download/4gg8.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4gg8.pdb.gz\n", "Downloading https://files.rcsb.org/download/4gkz.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4gkz.pdb.gz\n", "Downloading https://files.rcsb.org/download/4grl.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4grl.pdb.gz\n", "Downloading https://files.rcsb.org/download/4grm.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4grm.pdb.gz\n", "Downloading https://files.rcsb.org/download/4iiq.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4iiq.pdb.gz\n", "Downloading https://files.rcsb.org/download/4irj.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4irj.pdb.gz\n", "Downloading https://files.rcsb.org/download/4irs.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4irs.pdb.gz\n", "Downloading https://files.rcsb.org/download/4jfh.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4jfh.pdb.gz\n", "Downloading https://files.rcsb.org/download/4l8s.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4l8s.pdb.gz\n", "Downloading https://files.rcsb.org/download/4l9l.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4l9l.pdb.gz\n", "Downloading https://files.rcsb.org/download/4lcc.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4lcc.pdb.gz\n", "Downloading https://files.rcsb.org/download/4may.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4may.pdb.gz\n", "Downloading https://files.rcsb.org/download/4mnh.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4mnh.pdb.gz\n", "Downloading https://files.rcsb.org/download/4ms8.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4ms8.pdb.gz\n", "Downloading https://files.rcsb.org/download/4mvb.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4mvb.pdb.gz\n", "Downloading https://files.rcsb.org/download/4mxq.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4mxq.pdb.gz\n", "Downloading https://files.rcsb.org/download/4n0c.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4n0c.pdb.gz\n", "Downloading https://files.rcsb.org/download/4n5e.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4n5e.pdb.gz\n", "Downloading https://files.rcsb.org/download/4ndm.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4ndm.pdb.gz\n", "Downloading https://files.rcsb.org/download/4nhu.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4nhu.pdb.gz\n", "Downloading https://files.rcsb.org/download/4onh.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4onh.pdb.gz\n", "Downloading https://files.rcsb.org/download/4ozf.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4ozf.pdb.gz\n", "Downloading https://files.rcsb.org/download/4ozg.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4ozg.pdb.gz\n", "Downloading https://files.rcsb.org/download/4ozh.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4ozh.pdb.gz\n", "Downloading https://files.rcsb.org/download/4ozi.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4ozi.pdb.gz\n", "Downloading https://files.rcsb.org/download/4p23.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4p23.pdb.gz\n", "Downloading https://files.rcsb.org/download/4p2o.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4p2o.pdb.gz\n", "Downloading https://files.rcsb.org/download/4p2q.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4p2q.pdb.gz\n", "Downloading https://files.rcsb.org/download/4p2r.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4p2r.pdb.gz\n", "Downloading https://files.rcsb.org/download/4p46.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4p46.pdb.gz\n", "Downloading https://files.rcsb.org/download/4p4k.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4p4k.pdb.gz\n", "Downloading https://files.rcsb.org/download/4p5t.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4p5t.pdb.gz\n", "Downloading https://files.rcsb.org/download/4udt.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4udt.pdb.gz\n", "Downloading https://files.rcsb.org/download/4udu.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4udu.pdb.gz\n", "Downloading https://files.rcsb.org/download/4wnq.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4wnq.pdb.gz\n", "Downloading https://files.rcsb.org/download/4wo4.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4wo4.pdb.gz\n", "Downloading https://files.rcsb.org/download/4ww1.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4ww1.pdb.gz\n", "Downloading https://files.rcsb.org/download/4ww2.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4ww2.pdb.gz\n", "Downloading https://files.rcsb.org/download/4wwk.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4wwk.pdb.gz\n", "Downloading https://files.rcsb.org/download/4x6b.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4x6b.pdb.gz\n", "Downloading https://files.rcsb.org/download/4x6c.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4x6c.pdb.gz\n", "Downloading https://files.rcsb.org/download/4x6d.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4x6d.pdb.gz\n", "Downloading https://files.rcsb.org/download/4y16.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4y16.pdb.gz\n", "Downloading https://files.rcsb.org/download/4y19.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4y19.pdb.gz\n", "Downloading https://files.rcsb.org/download/4y1a.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4y1a.pdb.gz\n", "Downloading https://files.rcsb.org/download/4y2d.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4y2d.pdb.gz\n", "Downloading https://files.rcsb.org/download/4y4f.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4y4f.pdb.gz\n", "Downloading https://files.rcsb.org/download/4y4h.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4y4h.pdb.gz\n", "Downloading https://files.rcsb.org/download/4y4k.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4y4k.pdb.gz\n", "Downloading https://files.rcsb.org/download/4z7u.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4z7u.pdb.gz\n", "Downloading https://files.rcsb.org/download/4z7v.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4z7v.pdb.gz\n", "Downloading https://files.rcsb.org/download/4z7w.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4z7w.pdb.gz\n", "Downloading https://files.rcsb.org/download/4zak.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4zak.pdb.gz\n", "Downloading https://files.rcsb.org/download/4zdh.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4zdh.pdb.gz\n", "Downloading https://files.rcsb.org/download/5d7k.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5d7k.pdb.gz\n", "Downloading https://files.rcsb.org/download/5fk9.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5fk9.pdb.gz\n", "Downloading https://files.rcsb.org/download/5fka.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5fka.pdb.gz\n", "Downloading https://files.rcsb.org/download/5iw1.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5iw1.pdb.gz\n", "Downloading https://files.rcsb.org/download/5ks9.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5ks9.pdb.gz\n", "Downloading https://files.rcsb.org/download/5ksa.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5ksa.pdb.gz\n", "Downloading https://files.rcsb.org/download/5ksb.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5ksb.pdb.gz\n", "Downloading https://files.rcsb.org/download/5l2k.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5l2k.pdb.gz\n", "Downloading https://files.rcsb.org/download/5nmd.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5nmd.pdb.gz\n", "Downloading https://files.rcsb.org/download/5vcj.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5vcj.pdb.gz\n", "Downloading https://files.rcsb.org/download/5wjo.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5wjo.pdb.gz\n", "Downloading https://files.rcsb.org/download/5wki.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5wki.pdb.gz\n", "Downloading https://files.rcsb.org/download/6at6.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6at6.pdb.gz\n", "Downloading https://files.rcsb.org/download/6bga.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6bga.pdb.gz\n", "Downloading https://files.rcsb.org/download/6bnk.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6bnk.pdb.gz\n", "Downloading https://files.rcsb.org/download/6bnl.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6bnl.pdb.gz\n", "Downloading https://files.rcsb.org/download/6c09.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6c09.pdb.gz\n", "Downloading https://files.rcsb.org/download/6c61.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6c61.pdb.gz\n", "Downloading https://files.rcsb.org/download/6c68.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6c68.pdb.gz\n", "Downloading https://files.rcsb.org/download/6cph.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6cph.pdb.gz\n", "Downloading https://files.rcsb.org/download/6cql.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6cql.pdb.gz\n", "Downloading https://files.rcsb.org/download/6cqn.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6cqn.pdb.gz\n", "Downloading https://files.rcsb.org/download/6cqq.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6cqq.pdb.gz\n", "Downloading https://files.rcsb.org/download/6cqr.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6cqr.pdb.gz\n", "Downloading https://files.rcsb.org/download/6cug.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6cug.pdb.gz\n", "Downloading https://files.rcsb.org/download/6cuh.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6cuh.pdb.gz\n", "Downloading https://files.rcsb.org/download/6cw6.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6cw6.pdb.gz\n", "Downloading https://files.rcsb.org/download/6cwb.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6cwb.pdb.gz\n", "Downloading https://files.rcsb.org/download/6cwe.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6cwe.pdb.gz\n", "Downloading https://files.rcsb.org/download/6cx5.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6cx5.pdb.gz\n", "Downloading https://files.rcsb.org/download/6cx7.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6cx7.pdb.gz\n", "Downloading https://files.rcsb.org/download/6cx9.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6cx9.pdb.gz\n", "Downloading https://files.rcsb.org/download/6cxa.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6cxa.pdb.gz\n", "Downloading https://files.rcsb.org/download/6cxe.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6cxe.pdb.gz\n", "Downloading https://files.rcsb.org/download/6cxf.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6cxf.pdb.gz\n", "Downloading https://files.rcsb.org/download/6d7g.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6d7g.pdb.gz\n", "Downloading https://files.rcsb.org/download/6dfq.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6dfq.pdb.gz\n", "Downloading https://files.rcsb.org/download/6dfs.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6dfs.pdb.gz\n", "Downloading https://files.rcsb.org/download/6dfv.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6dfv.pdb.gz\n", "Downloading https://files.rcsb.org/download/6dfw.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6dfw.pdb.gz\n", "Downloading https://files.rcsb.org/download/6dfx.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6dfx.pdb.gz\n", "Downloading https://files.rcsb.org/download/6eh4.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6eh4.pdb.gz\n", "Downloading https://files.rcsb.org/download/6eh5.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6eh5.pdb.gz\n", "Downloading https://files.rcsb.org/download/6eh6.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6eh6.pdb.gz\n", "Downloading https://files.rcsb.org/download/6eh7.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6eh7.pdb.gz\n", "Downloading https://files.rcsb.org/download/6eh8.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6eh8.pdb.gz\n", "Downloading https://files.rcsb.org/download/6eh9.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6eh9.pdb.gz\n", "Downloading https://files.rcsb.org/download/6fr3.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6fr3.pdb.gz\n", "Downloading https://files.rcsb.org/download/6fr4.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6fr4.pdb.gz\n", "Downloading https://files.rcsb.org/download/6fr5.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6fr5.pdb.gz\n", "Downloading https://files.rcsb.org/download/6fr6.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6fr6.pdb.gz\n", "Downloading https://files.rcsb.org/download/6fr7.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6fr7.pdb.gz\n", "Downloading https://files.rcsb.org/download/6fr8.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6fr8.pdb.gz\n", "Downloading https://files.rcsb.org/download/6fr9.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6fr9.pdb.gz\n", "Downloading https://files.rcsb.org/download/6fra.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6fra.pdb.gz\n", "Downloading https://files.rcsb.org/download/6frb.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6frb.pdb.gz\n", "Downloading https://files.rcsb.org/download/6frc.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6frc.pdb.gz\n", "Downloading https://files.rcsb.org/download/6fum.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6fum.pdb.gz\n", "Downloading https://files.rcsb.org/download/6fun.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6fun.pdb.gz\n", "Downloading https://files.rcsb.org/download/6fuo.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6fuo.pdb.gz\n", "Downloading https://files.rcsb.org/download/6fup.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6fup.pdb.gz\n", "Downloading https://files.rcsb.org/download/6fuq.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6fuq.pdb.gz\n", "Downloading https://files.rcsb.org/download/6fur.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6fur.pdb.gz\n", "Downloading https://files.rcsb.org/download/6jxr.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6jxr.pdb.gz\n", "Downloading https://files.rcsb.org/download/6l9l.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6l9l.pdb.gz\n", "Downloading https://files.rcsb.org/download/6miv.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6miv.pdb.gz\n", "Downloading https://files.rcsb.org/download/6miy.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6miy.pdb.gz\n", "Downloading https://files.rcsb.org/download/6mj4.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6mj4.pdb.gz\n", "Downloading https://files.rcsb.org/download/6mj6.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6mj6.pdb.gz\n", "Downloading https://files.rcsb.org/download/6mja.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6mja.pdb.gz\n", "Downloading https://files.rcsb.org/download/6mji.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6mji.pdb.gz\n", "Downloading https://files.rcsb.org/download/6mjj.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6mjj.pdb.gz\n", "Downloading https://files.rcsb.org/download/6mjq.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6mjq.pdb.gz\n", "Downloading https://files.rcsb.org/download/6mkd.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6mkd.pdb.gz\n", "Downloading https://files.rcsb.org/download/6mkr.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6mkr.pdb.gz\n", "Downloading https://files.rcsb.org/download/6mng.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6mng.pdb.gz\n", "Downloading https://files.rcsb.org/download/6mnm.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6mnm.pdb.gz\n", "Downloading https://files.rcsb.org/download/6mnn.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6mnn.pdb.gz\n", "Downloading https://files.rcsb.org/download/6mno.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6mno.pdb.gz\n", "Downloading https://files.rcsb.org/download/6mra.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6mra.pdb.gz\n", "Downloading https://files.rcsb.org/download/6mss.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6mss.pdb.gz\n", "Downloading https://files.rcsb.org/download/6omg.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6omg.pdb.gz\n", "Downloading https://files.rcsb.org/download/6ovn.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6ovn.pdb.gz\n", "Downloading https://files.rcsb.org/download/6ovo.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6ovo.pdb.gz\n", "Downloading https://files.rcsb.org/download/6px6.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6px6.pdb.gz\n", "Downloading https://files.rcsb.org/download/6py2.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6py2.pdb.gz\n", "Downloading https://files.rcsb.org/download/6r0e.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6r0e.pdb.gz\n", "Failed to download https://files.rcsb.org/download/6r0e.pdb.gz\n", "Downloading https://files.rcsb.org/download/6u3n.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6u3n.pdb.gz\n", "Downloading https://files.rcsb.org/download/6u3o.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6u3o.pdb.gz\n", "Downloading https://files.rcsb.org/download/6v0y.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6v0y.pdb.gz\n", "Downloading https://files.rcsb.org/download/6v13.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6v13.pdb.gz\n", "Downloading https://files.rcsb.org/download/6v15.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6v15.pdb.gz\n", "Downloading https://files.rcsb.org/download/6v18.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6v18.pdb.gz\n", "Downloading https://files.rcsb.org/download/6v19.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6v19.pdb.gz\n", "Downloading https://files.rcsb.org/download/6v1a.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6v1a.pdb.gz\n", "Downloading https://files.rcsb.org/download/6v80.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6v80.pdb.gz\n", "Downloading https://files.rcsb.org/download/6vtc.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6vtc.pdb.gz\n", "Downloading https://files.rcsb.org/download/6vth.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6vth.pdb.gz\n", "Downloading https://files.rcsb.org/download/6xc9.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6xc9.pdb.gz\n", "Downloading https://files.rcsb.org/download/6xco.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6xco.pdb.gz\n", "Downloading https://files.rcsb.org/download/6xcp.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6xcp.pdb.gz\n", "Downloading https://files.rcsb.org/download/6xng.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6xng.pdb.gz\n", "Downloading https://files.rcsb.org/download/6xqq.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6xqq.pdb.gz\n", "Downloading https://files.rcsb.org/download/7ea6.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7ea6.pdb.gz\n", "Downloading https://files.rcsb.org/download/7m72.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7m72.pdb.gz\n", "Downloading https://files.rcsb.org/download/7n1c.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7n1c.pdb.gz\n", "Downloading https://files.rcsb.org/download/7n1d.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7n1d.pdb.gz\n", "Downloading https://files.rcsb.org/download/1m2v.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1m2v.pdb.gz\n", "Downloading https://files.rcsb.org/download/2nup.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/2nup.pdb.gz\n", "Downloading https://files.rcsb.org/download/2nut.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/2nut.pdb.gz\n", "Downloading https://files.rcsb.org/download/3efo.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3efo.pdb.gz\n", "Downloading https://files.rcsb.org/download/3eg9.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3eg9.pdb.gz\n", "Downloading https://files.rcsb.org/download/3egd.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3egd.pdb.gz\n", "Downloading https://files.rcsb.org/download/3egx.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3egx.pdb.gz\n", "Downloading https://files.rcsb.org/download/4bzi.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4bzi.pdb.gz\n", "Downloading https://files.rcsb.org/download/5kyu.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5kyu.pdb.gz\n", "Downloading https://files.rcsb.org/download/5kyw.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5kyw.pdb.gz\n", "Downloading https://files.rcsb.org/download/5kyx.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5kyx.pdb.gz\n", "Downloading https://files.rcsb.org/download/5kyy.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5kyy.pdb.gz\n", "Downloading https://files.rcsb.org/download/5vne.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5vne.pdb.gz\n", "Downloading https://files.rcsb.org/download/5vnf.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5vnf.pdb.gz\n", "Downloading https://files.rcsb.org/download/5vng.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5vng.pdb.gz\n", "Downloading https://files.rcsb.org/download/5vnh.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5vnh.pdb.gz\n", "Downloading https://files.rcsb.org/download/5vni.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5vni.pdb.gz\n", "Downloading https://files.rcsb.org/download/5vnj.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5vnj.pdb.gz\n", "Downloading https://files.rcsb.org/download/5vnk.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5vnk.pdb.gz\n", "Downloading https://files.rcsb.org/download/5vnl.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5vnl.pdb.gz\n", "Downloading https://files.rcsb.org/download/5vnm.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5vnm.pdb.gz\n", "Downloading https://files.rcsb.org/download/5vnn.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5vnn.pdb.gz\n", "Downloading https://files.rcsb.org/download/5vno.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5vno.pdb.gz\n", "Downloading https://files.rcsb.org/download/6gni.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6gni.pdb.gz\n", "Downloading https://files.rcsb.org/download/6zga.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6zga.pdb.gz\n", "Downloading https://files.rcsb.org/download/5u4j.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5u4j.pdb.gz\n", "Downloading https://files.rcsb.org/download/6o24.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6o24.pdb.gz\n", "Downloading https://files.rcsb.org/download/6o25.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6o25.pdb.gz\n", "Downloading https://files.rcsb.org/download/6o28.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6o28.pdb.gz\n", "Downloading https://files.rcsb.org/download/6o29.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6o29.pdb.gz\n", "Downloading https://files.rcsb.org/download/6o2c.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6o2c.pdb.gz\n", "Downloading https://files.rcsb.org/download/6ulf.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6ulf.pdb.gz\n", "Downloading https://files.rcsb.org/download/6vln.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6vln.pdb.gz\n", "Downloading https://files.rcsb.org/download/6ww2.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6ww2.pdb.gz\n", "Downloading https://files.rcsb.org/download/7jkm.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7jkm.pdb.gz\n", "Downloading https://files.rcsb.org/download/7joo.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7joo.pdb.gz\n", "Downloading https://files.rcsb.org/download/7o31.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7o31.pdb.gz\n", "Downloading https://files.rcsb.org/download/7o4y.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7o4y.pdb.gz\n", "Downloading https://files.rcsb.org/download/1h2t.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1h2t.pdb.gz\n", "Downloading https://files.rcsb.org/download/1h2u.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1h2u.pdb.gz\n", "Downloading https://files.rcsb.org/download/1h2v.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1h2v.pdb.gz\n", "Downloading https://files.rcsb.org/download/1h6k.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1h6k.pdb.gz\n", "Downloading https://files.rcsb.org/download/1n52.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1n52.pdb.gz\n", "Downloading https://files.rcsb.org/download/1n54.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1n54.pdb.gz\n", "Downloading https://files.rcsb.org/download/3fex.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3fex.pdb.gz\n", "Downloading https://files.rcsb.org/download/3fey.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3fey.pdb.gz\n", "Downloading https://files.rcsb.org/download/5oo6.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5oo6.pdb.gz\n", "Downloading https://files.rcsb.org/download/5oob.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5oob.pdb.gz\n", "Downloading https://files.rcsb.org/download/6d0y.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6d0y.pdb.gz\n", "Downloading https://files.rcsb.org/download/6n7p.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6n7p.pdb.gz\n", "Downloading https://files.rcsb.org/download/3b2e.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3b2e.pdb.gz\n", "Downloading https://files.rcsb.org/download/3sja.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3sja.pdb.gz\n", "Downloading https://files.rcsb.org/download/3sjb.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3sjb.pdb.gz\n", "Downloading https://files.rcsb.org/download/3sjc.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3sjc.pdb.gz\n", "Downloading https://files.rcsb.org/download/3vlc.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3vlc.pdb.gz\n", "Downloading https://files.rcsb.org/download/3zs8.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3zs8.pdb.gz\n", "Downloading https://files.rcsb.org/download/6so5.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6so5.pdb.gz\n", "Downloading https://files.rcsb.org/download/1hqm.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1hqm.pdb.gz\n", "Downloading https://files.rcsb.org/download/1i6v.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1i6v.pdb.gz\n", "Downloading https://files.rcsb.org/download/3lu0.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3lu0.pdb.gz\n", "Downloading https://files.rcsb.org/download/4ljz.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4ljz.pdb.gz\n", "Downloading https://files.rcsb.org/download/4lk0.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4lk0.pdb.gz\n", "Downloading https://files.rcsb.org/download/4lk1.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4lk1.pdb.gz\n", "Downloading https://files.rcsb.org/download/4llg.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4llg.pdb.gz\n", "Downloading https://files.rcsb.org/download/4xsx.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4xsx.pdb.gz\n", "Downloading https://files.rcsb.org/download/4xsy.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4xsy.pdb.gz\n", "Downloading https://files.rcsb.org/download/4xsz.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4xsz.pdb.gz\n", "Downloading https://files.rcsb.org/download/4yln.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4yln.pdb.gz\n", "Downloading https://files.rcsb.org/download/4ylo.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4ylo.pdb.gz\n", "Downloading https://files.rcsb.org/download/4ylp.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4ylp.pdb.gz\n", "Downloading https://files.rcsb.org/download/5ezk.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5ezk.pdb.gz\n", "Downloading https://files.rcsb.org/download/5ipl.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5ipl.pdb.gz\n", "Downloading https://files.rcsb.org/download/5ipm.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5ipm.pdb.gz\n", "Downloading https://files.rcsb.org/download/5ipn.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5ipn.pdb.gz\n", "Downloading https://files.rcsb.org/download/5m5y.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5m5y.pdb.gz\n", "Downloading https://files.rcsb.org/download/5n5y.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5n5y.pdb.gz\n", "Downloading https://files.rcsb.org/download/5n60.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5n60.pdb.gz\n", "Downloading https://files.rcsb.org/download/5tjg.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5tjg.pdb.gz\n", "Downloading https://files.rcsb.org/download/5vt0.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5vt0.pdb.gz\n", "Downloading https://files.rcsb.org/download/6alf.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6alf.pdb.gz\n", "Downloading https://files.rcsb.org/download/6alg.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6alg.pdb.gz\n", "Downloading https://files.rcsb.org/download/6alh.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6alh.pdb.gz\n", "Downloading https://files.rcsb.org/download/6asx.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6asx.pdb.gz\n", "Downloading https://files.rcsb.org/download/6bjs.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6bjs.pdb.gz\n", "Downloading https://files.rcsb.org/download/6c6s.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6c6s.pdb.gz\n", "Downloading https://files.rcsb.org/download/6c6t.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6c6t.pdb.gz\n", "Downloading https://files.rcsb.org/download/6c6u.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6c6u.pdb.gz\n", "Downloading https://files.rcsb.org/download/6cnc.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6cnc.pdb.gz\n", "Downloading https://files.rcsb.org/download/6f40.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6f40.pdb.gz\n", "Downloading https://files.rcsb.org/download/6f42.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6f42.pdb.gz\n", "Downloading https://files.rcsb.org/download/6n60.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6n60.pdb.gz\n", "Downloading https://files.rcsb.org/download/6n61.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6n61.pdb.gz\n", "Downloading https://files.rcsb.org/download/6n62.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6n62.pdb.gz\n", "Downloading https://files.rcsb.org/download/6omf.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6omf.pdb.gz\n", "Downloading https://files.rcsb.org/download/6oy6.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6oy6.pdb.gz\n", "Downloading https://files.rcsb.org/download/6wmr.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6wmr.pdb.gz\n", "Downloading https://files.rcsb.org/download/6wox.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6wox.pdb.gz\n", "Downloading https://files.rcsb.org/download/6woy.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6woy.pdb.gz\n", "Downloading https://files.rcsb.org/download/1gl2.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1gl2.pdb.gz\n", "Downloading https://files.rcsb.org/download/1kil.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1kil.pdb.gz\n", "Downloading https://files.rcsb.org/download/1l4a.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1l4a.pdb.gz\n", "Downloading https://files.rcsb.org/download/1n7s.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1n7s.pdb.gz\n", "Downloading https://files.rcsb.org/download/1sfc.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1sfc.pdb.gz\n", "Downloading https://files.rcsb.org/download/2n1t.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/2n1t.pdb.gz\n", "Downloading https://files.rcsb.org/download/2nps.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/2nps.pdb.gz\n", "Downloading https://files.rcsb.org/download/3b5n.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3b5n.pdb.gz\n", "Downloading https://files.rcsb.org/download/3hd7.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3hd7.pdb.gz\n", "Downloading https://files.rcsb.org/download/3ipd.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3ipd.pdb.gz\n", "Downloading https://files.rcsb.org/download/3j96.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3j96.pdb.gz\n", "Downloading https://files.rcsb.org/download/3j97.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3j97.pdb.gz\n", "Downloading https://files.rcsb.org/download/3j98.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3j98.pdb.gz\n", "Downloading https://files.rcsb.org/download/3j99.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3j99.pdb.gz\n", "Downloading https://files.rcsb.org/download/3rk2.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3rk2.pdb.gz\n", "Downloading https://files.rcsb.org/download/3rk3.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3rk3.pdb.gz\n", "Downloading https://files.rcsb.org/download/3rl0.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3rl0.pdb.gz\n", "Downloading https://files.rcsb.org/download/4wy4.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4wy4.pdb.gz\n", "Downloading https://files.rcsb.org/download/5ccg.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5ccg.pdb.gz\n", "Downloading https://files.rcsb.org/download/5cch.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5cch.pdb.gz\n", "Downloading https://files.rcsb.org/download/5cci.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5cci.pdb.gz\n", "Downloading https://files.rcsb.org/download/5kj8.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5kj8.pdb.gz\n", "Downloading https://files.rcsb.org/download/5w5c.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5w5c.pdb.gz\n", "Downloading https://files.rcsb.org/download/5w5d.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5w5d.pdb.gz\n", "Downloading https://files.rcsb.org/download/6ip1.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6ip1.pdb.gz\n", "Downloading https://files.rcsb.org/download/6mdm.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6mdm.pdb.gz\n", "Downloading https://files.rcsb.org/download/6mdn.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6mdn.pdb.gz\n", "Downloading https://files.rcsb.org/download/6mti.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6mti.pdb.gz\n", "Downloading https://files.rcsb.org/download/6wvw.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6wvw.pdb.gz\n", "Downloading https://files.rcsb.org/download/6b2z.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6b2z.pdb.gz\n", "Downloading https://files.rcsb.org/download/6cp5.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6cp5.pdb.gz\n", "Downloading https://files.rcsb.org/download/6cp7.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6cp7.pdb.gz\n", "Downloading https://files.rcsb.org/download/6n2d.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6n2d.pdb.gz\n", "Failed to download https://files.rcsb.org/download/6n2d.pdb.gz\n", "Downloading https://files.rcsb.org/download/6rd7.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6rd7.pdb.gz\n", "Downloading https://files.rcsb.org/download/6vwk.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6vwk.pdb.gz\n", "Downloading https://files.rcsb.org/download/6wtd.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6wtd.pdb.gz\n", "Downloading https://files.rcsb.org/download/6za9.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6za9.pdb.gz\n", "Downloading https://files.rcsb.org/download/6zbb.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6zbb.pdb.gz\n", "Downloading https://files.rcsb.org/download/7jgb.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7jgb.pdb.gz\n", "Downloading https://files.rcsb.org/download/7jgc.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7jgc.pdb.gz\n", "Downloading https://files.rcsb.org/download/6j5a.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6j5a.pdb.gz\n", "Downloading https://files.rcsb.org/download/6rd8.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6rd8.pdb.gz\n", "Downloading https://files.rcsb.org/download/6j54.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6j54.pdb.gz\n", "Downloading https://files.rcsb.org/download/6f36.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6f36.pdb.gz\n", "Downloading https://files.rcsb.org/download/6zmr.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6zmr.pdb.gz\n", "Downloading https://files.rcsb.org/download/6zna.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6zna.pdb.gz\n", "Failed to download https://files.rcsb.org/download/6zna.pdb.gz\n", "Downloading https://files.rcsb.org/download/2cly.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/2cly.pdb.gz\n", "Downloading https://files.rcsb.org/download/5tj5.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5tj5.pdb.gz\n", "Downloading https://files.rcsb.org/download/6c6l.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6c6l.pdb.gz\n", "Downloading https://files.rcsb.org/download/6m0r.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6m0r.pdb.gz\n", "Downloading https://files.rcsb.org/download/6m0s.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6m0s.pdb.gz\n", "Downloading https://files.rcsb.org/download/6o7t.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6o7t.pdb.gz\n", "Downloading https://files.rcsb.org/download/6o7u.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6o7u.pdb.gz\n", "Downloading https://files.rcsb.org/download/6o7v.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6o7v.pdb.gz\n", "Downloading https://files.rcsb.org/download/6o7w.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6o7w.pdb.gz\n", "Downloading https://files.rcsb.org/download/6o7x.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6o7x.pdb.gz\n", "Downloading https://files.rcsb.org/download/6vq6.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6vq6.pdb.gz\n", "Downloading https://files.rcsb.org/download/6vq7.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6vq7.pdb.gz\n", "Downloading https://files.rcsb.org/download/6vq8.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6vq8.pdb.gz\n", "Downloading https://files.rcsb.org/download/6vqc.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6vqc.pdb.gz\n", "Downloading https://files.rcsb.org/download/6vqg.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6vqg.pdb.gz\n", "Downloading https://files.rcsb.org/download/6vqh.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6vqh.pdb.gz\n", "Downloading https://files.rcsb.org/download/6wlw.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6wlw.pdb.gz\n", "Downloading https://files.rcsb.org/download/6wm2.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6wm2.pdb.gz\n", "Downloading https://files.rcsb.org/download/6wm3.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6wm3.pdb.gz\n", "Downloading https://files.rcsb.org/download/6wm4.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6wm4.pdb.gz\n", "Downloading https://files.rcsb.org/download/6xbw.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6xbw.pdb.gz\n", "Downloading https://files.rcsb.org/download/7fda.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7fda.pdb.gz\n", "Downloading https://files.rcsb.org/download/7fdb.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7fdb.pdb.gz\n", "Downloading https://files.rcsb.org/download/7fdc.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7fdc.pdb.gz\n", "Downloading https://files.rcsb.org/download/7khr.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7khr.pdb.gz\n", "Downloading https://files.rcsb.org/download/5bw9.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5bw9.pdb.gz\n", "Downloading https://files.rcsb.org/download/5d80.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5d80.pdb.gz\n", "Downloading https://files.rcsb.org/download/5gar.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5gar.pdb.gz\n", "Downloading https://files.rcsb.org/download/5gas.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5gas.pdb.gz\n", "Downloading https://files.rcsb.org/download/5tsj.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5tsj.pdb.gz\n", "Downloading https://files.rcsb.org/download/5vox.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5vox.pdb.gz\n", "Downloading https://files.rcsb.org/download/5voy.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5voy.pdb.gz\n", "Downloading https://files.rcsb.org/download/5voz.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5voz.pdb.gz\n", "Downloading https://files.rcsb.org/download/6ly8.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6ly8.pdb.gz\n", "Downloading https://files.rcsb.org/download/6xby.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6xby.pdb.gz\n", "Downloading https://files.rcsb.org/download/3j9t.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3j9t.pdb.gz\n", "Downloading https://files.rcsb.org/download/3j9u.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3j9u.pdb.gz\n", "Downloading https://files.rcsb.org/download/3j9v.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3j9v.pdb.gz\n", "Downloading https://files.rcsb.org/download/3vr4.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3vr4.pdb.gz\n", "Downloading https://files.rcsb.org/download/3w3a.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3w3a.pdb.gz\n", "Downloading https://files.rcsb.org/download/5knb.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5knb.pdb.gz\n", "Downloading https://files.rcsb.org/download/5knc.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5knc.pdb.gz\n", "Downloading https://files.rcsb.org/download/5knd.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5knd.pdb.gz\n", "Downloading https://files.rcsb.org/download/5y5y.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5y5y.pdb.gz\n", "Downloading https://files.rcsb.org/download/6qum.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6qum.pdb.gz\n", "Downloading https://files.rcsb.org/download/6r0w.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6r0w.pdb.gz\n", "Downloading https://files.rcsb.org/download/6r0y.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6r0y.pdb.gz\n", "Downloading https://files.rcsb.org/download/6r0z.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6r0z.pdb.gz\n", "Downloading https://files.rcsb.org/download/6r10.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6r10.pdb.gz\n", "Downloading https://files.rcsb.org/download/6vq9.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6vq9.pdb.gz\n", "Downloading https://files.rcsb.org/download/6vqa.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6vqa.pdb.gz\n", "Downloading https://files.rcsb.org/download/6vqb.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6vqb.pdb.gz\n", "Downloading https://files.rcsb.org/download/6pe4.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6pe4.pdb.gz\n", "Downloading https://files.rcsb.org/download/6pe5.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6pe5.pdb.gz\n", "Downloading https://files.rcsb.org/download/3aon.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3aon.pdb.gz\n", "Downloading https://files.rcsb.org/download/3vr5.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3vr5.pdb.gz\n", "Downloading https://files.rcsb.org/download/3vr6.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3vr6.pdb.gz\n", "Downloading https://files.rcsb.org/download/4rnd.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4rnd.pdb.gz\n", "Downloading https://files.rcsb.org/download/5y5x.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5y5x.pdb.gz\n", "Downloading https://files.rcsb.org/download/5y5z.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5y5z.pdb.gz\n", "Downloading https://files.rcsb.org/download/5y60.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5y60.pdb.gz\n", "Downloading https://files.rcsb.org/download/6vqi.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6vqi.pdb.gz\n", "Downloading https://files.rcsb.org/download/4dl0.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4dl0.pdb.gz\n", "Downloading https://files.rcsb.org/download/4efa.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4efa.pdb.gz\n", "Downloading https://files.rcsb.org/download/6vqj.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6vqj.pdb.gz\n", "Downloading https://files.rcsb.org/download/6vqk.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6vqk.pdb.gz\n", "Downloading https://files.rcsb.org/download/3a5c.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3a5c.pdb.gz\n", "Downloading https://files.rcsb.org/download/3a5d.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3a5d.pdb.gz\n", "Downloading https://files.rcsb.org/download/3gqb.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3gqb.pdb.gz\n", "Downloading https://files.rcsb.org/download/3j0j.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3j0j.pdb.gz\n", "Downloading https://files.rcsb.org/download/3vr2.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3vr2.pdb.gz\n", "Downloading https://files.rcsb.org/download/3vr3.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3vr3.pdb.gz\n", "Downloading https://files.rcsb.org/download/5bn3.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5bn3.pdb.gz\n", "Downloading https://files.rcsb.org/download/5bn4.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5bn4.pdb.gz\n", "Downloading https://files.rcsb.org/download/5bn5.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5bn5.pdb.gz\n", "Downloading https://files.rcsb.org/download/5ze9.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5ze9.pdb.gz\n", "Downloading https://files.rcsb.org/download/5zea.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5zea.pdb.gz\n", "Downloading https://files.rcsb.org/download/6wlz.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6wlz.pdb.gz\n", "Downloading https://files.rcsb.org/download/1fs0.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1fs0.pdb.gz\n", "Downloading https://files.rcsb.org/download/5zwl.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5zwl.pdb.gz\n", "Downloading https://files.rcsb.org/download/2zxe.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/2zxe.pdb.gz\n", "Downloading https://files.rcsb.org/download/3a3y.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3a3y.pdb.gz\n", "Downloading https://files.rcsb.org/download/3wgu.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3wgu.pdb.gz\n", "Downloading https://files.rcsb.org/download/3wgv.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3wgv.pdb.gz\n", "Downloading https://files.rcsb.org/download/4hqj.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4hqj.pdb.gz\n", "Downloading https://files.rcsb.org/download/4hyt.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4hyt.pdb.gz\n", "Downloading https://files.rcsb.org/download/4res.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4res.pdb.gz\n", "Downloading https://files.rcsb.org/download/4ret.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4ret.pdb.gz\n", "Downloading https://files.rcsb.org/download/4xe5.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4xe5.pdb.gz\n", "Downloading https://files.rcsb.org/download/5avq.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5avq.pdb.gz\n", "Downloading https://files.rcsb.org/download/5avr.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5avr.pdb.gz\n", "Downloading https://files.rcsb.org/download/5avs.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5avs.pdb.gz\n", "Downloading https://files.rcsb.org/download/5avt.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5avt.pdb.gz\n", "Downloading https://files.rcsb.org/download/5avu.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5avu.pdb.gz\n", "Downloading https://files.rcsb.org/download/5avv.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5avv.pdb.gz\n", "Downloading https://files.rcsb.org/download/5avw.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5avw.pdb.gz\n", "Downloading https://files.rcsb.org/download/5avx.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5avx.pdb.gz\n", "Downloading https://files.rcsb.org/download/5avy.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5avy.pdb.gz\n", "Downloading https://files.rcsb.org/download/5avz.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5avz.pdb.gz\n", "Downloading https://files.rcsb.org/download/5aw0.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5aw0.pdb.gz\n", "Downloading https://files.rcsb.org/download/5aw1.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5aw1.pdb.gz\n", "Downloading https://files.rcsb.org/download/5aw2.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5aw2.pdb.gz\n", "Downloading https://files.rcsb.org/download/5aw3.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5aw3.pdb.gz\n", "Downloading https://files.rcsb.org/download/5aw4.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5aw4.pdb.gz\n", "Downloading https://files.rcsb.org/download/5aw5.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5aw5.pdb.gz\n", "Downloading https://files.rcsb.org/download/5aw6.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5aw6.pdb.gz\n", "Downloading https://files.rcsb.org/download/5aw7.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5aw7.pdb.gz\n", "Downloading https://files.rcsb.org/download/5aw8.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5aw8.pdb.gz\n", "Downloading https://files.rcsb.org/download/5aw9.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5aw9.pdb.gz\n", "Downloading https://files.rcsb.org/download/7d91.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7d91.pdb.gz\n", "Downloading https://files.rcsb.org/download/7d92.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7d92.pdb.gz\n", "Downloading https://files.rcsb.org/download/7d93.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7d93.pdb.gz\n", "Downloading https://files.rcsb.org/download/7d94.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7d94.pdb.gz\n", "Downloading https://files.rcsb.org/download/7ddf.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7ddf.pdb.gz\n", "Downloading https://files.rcsb.org/download/7ddg.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7ddg.pdb.gz\n", "Downloading https://files.rcsb.org/download/7ddh.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7ddh.pdb.gz\n", "Downloading https://files.rcsb.org/download/7ddi.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7ddi.pdb.gz\n", "Downloading https://files.rcsb.org/download/7ddj.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7ddj.pdb.gz\n", "Downloading https://files.rcsb.org/download/7ddk.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7ddk.pdb.gz\n", "Downloading https://files.rcsb.org/download/7ddl.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7ddl.pdb.gz\n", "Downloading https://files.rcsb.org/download/3b8e.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3b8e.pdb.gz\n", "Downloading https://files.rcsb.org/download/3kdp.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3kdp.pdb.gz\n", "Downloading https://files.rcsb.org/download/6jxh.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6jxh.pdb.gz\n", "Downloading https://files.rcsb.org/download/6jxi.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6jxi.pdb.gz\n", "Downloading https://files.rcsb.org/download/6jxj.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6jxj.pdb.gz\n", "Downloading https://files.rcsb.org/download/6jxk.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6jxk.pdb.gz\n", "Downloading https://files.rcsb.org/download/7efl.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7efl.pdb.gz\n", "Downloading https://files.rcsb.org/download/7efm.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7efm.pdb.gz\n", "Downloading https://files.rcsb.org/download/7et1.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7et1.pdb.gz\n", "Downloading https://files.rcsb.org/download/1cqi.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1cqi.pdb.gz\n", "Downloading https://files.rcsb.org/download/1cqj.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1cqj.pdb.gz\n", "Downloading https://files.rcsb.org/download/1jkj.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1jkj.pdb.gz\n", "Downloading https://files.rcsb.org/download/1jll.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1jll.pdb.gz\n", "Downloading https://files.rcsb.org/download/1scu.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1scu.pdb.gz\n", "Downloading https://files.rcsb.org/download/2fp4.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/2fp4.pdb.gz\n", "Downloading https://files.rcsb.org/download/2fpg.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/2fpg.pdb.gz\n", "Downloading https://files.rcsb.org/download/2fpi.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/2fpi.pdb.gz\n", "Downloading https://files.rcsb.org/download/2fpp.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/2fpp.pdb.gz\n", "Downloading https://files.rcsb.org/download/2nu6.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/2nu6.pdb.gz\n", "Downloading https://files.rcsb.org/download/2nu7.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/2nu7.pdb.gz\n", "Downloading https://files.rcsb.org/download/2nu8.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/2nu8.pdb.gz\n", "Downloading https://files.rcsb.org/download/2nu9.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/2nu9.pdb.gz\n", "Downloading https://files.rcsb.org/download/2nua.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/2nua.pdb.gz\n", "Downloading https://files.rcsb.org/download/2scu.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/2scu.pdb.gz\n", "Downloading https://files.rcsb.org/download/3ufx.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3ufx.pdb.gz\n", "Downloading https://files.rcsb.org/download/4xx0.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4xx0.pdb.gz\n", "Downloading https://files.rcsb.org/download/5cae.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5cae.pdb.gz\n", "Downloading https://files.rcsb.org/download/6g4q.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6g4q.pdb.gz\n", "Downloading https://files.rcsb.org/download/6mel.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6mel.pdb.gz\n", "Downloading https://files.rcsb.org/download/6mgg.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6mgg.pdb.gz\n", "Downloading https://files.rcsb.org/download/6pfn.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6pfn.pdb.gz\n", "Downloading https://files.rcsb.org/download/6wcv.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6wcv.pdb.gz\n", "Downloading https://files.rcsb.org/download/6xru.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6xru.pdb.gz\n", "Downloading https://files.rcsb.org/download/7jfp.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7jfp.pdb.gz\n", "Downloading https://files.rcsb.org/download/7jj0.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7jj0.pdb.gz\n", "Downloading https://files.rcsb.org/download/7jkr.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7jkr.pdb.gz\n", "Downloading https://files.rcsb.org/download/7jmk.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7jmk.pdb.gz\n", "Downloading https://files.rcsb.org/download/1hez.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1hez.pdb.gz\n", "Downloading https://files.rcsb.org/download/1mhh.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1mhh.pdb.gz\n", "Downloading https://files.rcsb.org/download/1xcq.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1xcq.pdb.gz\n", "Downloading https://files.rcsb.org/download/1xct.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1xct.pdb.gz\n", "Downloading https://files.rcsb.org/download/1xf5.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1xf5.pdb.gz\n", "Downloading https://files.rcsb.org/download/1ymh.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1ymh.pdb.gz\n", "Downloading https://files.rcsb.org/download/1ynt.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1ynt.pdb.gz\n", "Downloading https://files.rcsb.org/download/4hjg.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4hjg.pdb.gz\n", "Downloading https://files.rcsb.org/download/4hkz.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4hkz.pdb.gz\n", "Downloading https://files.rcsb.org/download/4ioi.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4ioi.pdb.gz\n", "Downloading https://files.rcsb.org/download/5u3d.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5u3d.pdb.gz\n", "Downloading https://files.rcsb.org/download/5u5f.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5u5f.pdb.gz\n", "Downloading https://files.rcsb.org/download/5u5m.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5u5m.pdb.gz\n", "Downloading https://files.rcsb.org/download/5u6a.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5u6a.pdb.gz\n", "Downloading https://files.rcsb.org/download/6b9y.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6b9y.pdb.gz\n", "Downloading https://files.rcsb.org/download/6b9z.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6b9z.pdb.gz\n", "Downloading https://files.rcsb.org/download/6bae.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6bae.pdb.gz\n", "Downloading https://files.rcsb.org/download/6bah.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6bah.pdb.gz\n", "Downloading https://files.rcsb.org/download/1fc2.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1fc2.pdb.gz\n", "Downloading https://files.rcsb.org/download/1l6x.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1l6x.pdb.gz\n", "Downloading https://files.rcsb.org/download/1oqo.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1oqo.pdb.gz\n", "Downloading https://files.rcsb.org/download/1oqx.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1oqx.pdb.gz\n", "Downloading https://files.rcsb.org/download/4nqs.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4nqs.pdb.gz\n", "Downloading https://files.rcsb.org/download/4wwi.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4wwi.pdb.gz\n", "Downloading https://files.rcsb.org/download/4znc.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4znc.pdb.gz\n", "Downloading https://files.rcsb.org/download/5u4y.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5u4y.pdb.gz\n", "Downloading https://files.rcsb.org/download/5u52.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5u52.pdb.gz\n", "Downloading https://files.rcsb.org/download/5ubx.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5ubx.pdb.gz\n", "Downloading https://files.rcsb.org/download/6fgo.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6fgo.pdb.gz\n", "Downloading https://files.rcsb.org/download/6krv.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6krv.pdb.gz\n", "Downloading https://files.rcsb.org/download/7lur.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7lur.pdb.gz\n", "Downloading https://files.rcsb.org/download/6f2d.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6f2d.pdb.gz\n", "Downloading https://files.rcsb.org/download/6pem.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6pem.pdb.gz\n", "Failed to download https://files.rcsb.org/download/6pem.pdb.gz\n", "Downloading https://files.rcsb.org/download/6pep.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6pep.pdb.gz\n", "Failed to download https://files.rcsb.org/download/6pep.pdb.gz\n", "Downloading https://files.rcsb.org/download/6q14.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6q14.pdb.gz\n", "Failed to download https://files.rcsb.org/download/6q14.pdb.gz\n", "Downloading https://files.rcsb.org/download/6q15.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6q15.pdb.gz\n", "Failed to download https://files.rcsb.org/download/6q15.pdb.gz\n", "Downloading https://files.rcsb.org/download/6q16.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6q16.pdb.gz\n", "Failed to download https://files.rcsb.org/download/6q16.pdb.gz\n", "Downloading https://files.rcsb.org/download/6r69.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6r69.pdb.gz\n", "Downloading https://files.rcsb.org/download/6r6b.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6r6b.pdb.gz\n", "Downloading https://files.rcsb.org/download/6rwy.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6rwy.pdb.gz\n", "Downloading https://files.rcsb.org/download/6s3l.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6s3l.pdb.gz\n", "Downloading https://files.rcsb.org/download/6s3r.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6s3r.pdb.gz\n", "Downloading https://files.rcsb.org/download/6s3s.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6s3s.pdb.gz\n", "Downloading https://files.rcsb.org/download/7ah9.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7ah9.pdb.gz\n", "Failed to download https://files.rcsb.org/download/7ah9.pdb.gz\n", "Downloading https://files.rcsb.org/download/7ahi.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7ahi.pdb.gz\n", "Failed to download https://files.rcsb.org/download/7ahi.pdb.gz\n", "Downloading https://files.rcsb.org/download/5tcp.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5tcp.pdb.gz\n", "Downloading https://files.rcsb.org/download/5tcr.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5tcr.pdb.gz\n", "Failed to download https://files.rcsb.org/download/5tcr.pdb.gz\n", "Downloading https://files.rcsb.org/download/6duz.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6duz.pdb.gz\n", "Downloading https://files.rcsb.org/download/6rwx.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6rwx.pdb.gz\n", "Downloading https://files.rcsb.org/download/6uot.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6uot.pdb.gz\n", "Downloading https://files.rcsb.org/download/6uov.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6uov.pdb.gz\n", "Downloading https://files.rcsb.org/download/1jb0.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1jb0.pdb.gz\n", "Downloading https://files.rcsb.org/download/3pcq.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3pcq.pdb.gz\n", "Downloading https://files.rcsb.org/download/4fe1.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4fe1.pdb.gz\n", "Downloading https://files.rcsb.org/download/4kt0.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4kt0.pdb.gz\n", "Downloading https://files.rcsb.org/download/4l6v.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4l6v.pdb.gz\n", "Downloading https://files.rcsb.org/download/5oy0.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5oy0.pdb.gz\n", "Downloading https://files.rcsb.org/download/5zf0.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5zf0.pdb.gz\n", "Failed to download https://files.rcsb.org/download/5zf0.pdb.gz\n", "Downloading https://files.rcsb.org/download/5zgb.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5zgb.pdb.gz\n", "Downloading https://files.rcsb.org/download/5zgh.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5zgh.pdb.gz\n", "Downloading https://files.rcsb.org/download/6fos.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6fos.pdb.gz\n", "Downloading https://files.rcsb.org/download/6hqb.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6hqb.pdb.gz\n", "Downloading https://files.rcsb.org/download/6ijj.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6ijj.pdb.gz\n", "Downloading https://files.rcsb.org/download/6ijo.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6ijo.pdb.gz\n", "Downloading https://files.rcsb.org/download/6jo5.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6jo5.pdb.gz\n", "Downloading https://files.rcsb.org/download/6jo6.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6jo6.pdb.gz\n", "Downloading https://files.rcsb.org/download/6k33.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6k33.pdb.gz\n", "Failed to download https://files.rcsb.org/download/6k33.pdb.gz\n", "Downloading https://files.rcsb.org/download/6kmw.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6kmw.pdb.gz\n", "Failed to download https://files.rcsb.org/download/6kmw.pdb.gz\n", "Downloading https://files.rcsb.org/download/6kmx.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6kmx.pdb.gz\n", "Failed to download https://files.rcsb.org/download/6kmx.pdb.gz\n", "Downloading https://files.rcsb.org/download/6l35.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6l35.pdb.gz\n", "Downloading https://files.rcsb.org/download/6lu1.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6lu1.pdb.gz\n", "Downloading https://files.rcsb.org/download/6nwa.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6nwa.pdb.gz\n", "Failed to download https://files.rcsb.org/download/6nwa.pdb.gz\n", "Downloading https://files.rcsb.org/download/6pfy.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6pfy.pdb.gz\n", "Downloading https://files.rcsb.org/download/6pgk.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6pgk.pdb.gz\n", "Downloading https://files.rcsb.org/download/6qwj.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6qwj.pdb.gz\n", "Downloading https://files.rcsb.org/download/6tra.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6tra.pdb.gz\n", "Downloading https://files.rcsb.org/download/6trc.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6trc.pdb.gz\n", "Downloading https://files.rcsb.org/download/6trd.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6trd.pdb.gz\n", "Downloading https://files.rcsb.org/download/6uzv.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6uzv.pdb.gz\n", "Downloading https://files.rcsb.org/download/7bgi.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7bgi.pdb.gz\n", "Downloading https://files.rcsb.org/download/7blx.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7blx.pdb.gz\n", "Downloading https://files.rcsb.org/download/7bw2.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7bw2.pdb.gz\n", "Downloading https://files.rcsb.org/download/7d0j.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7d0j.pdb.gz\n", "Downloading https://files.rcsb.org/download/7m75.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7m75.pdb.gz\n", "Downloading https://files.rcsb.org/download/7m76.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7m76.pdb.gz\n", "Downloading https://files.rcsb.org/download/7m78.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7m78.pdb.gz\n", "Downloading https://files.rcsb.org/download/7o01.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7o01.pdb.gz\n", "Downloading https://files.rcsb.org/download/2nl9.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/2nl9.pdb.gz\n", "Downloading https://files.rcsb.org/download/2v6q.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/2v6q.pdb.gz\n", "Downloading https://files.rcsb.org/download/2wh6.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/2wh6.pdb.gz\n", "Downloading https://files.rcsb.org/download/3d7v.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3d7v.pdb.gz\n", "Downloading https://files.rcsb.org/download/3io9.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3io9.pdb.gz\n", "Downloading https://files.rcsb.org/download/3kz0.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3kz0.pdb.gz\n", "Downloading https://files.rcsb.org/download/4b4s.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4b4s.pdb.gz\n", "Downloading https://files.rcsb.org/download/4zie.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4zie.pdb.gz\n", "Downloading https://files.rcsb.org/download/4zif.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4zif.pdb.gz\n", "Downloading https://files.rcsb.org/download/4zih.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4zih.pdb.gz\n", "Downloading https://files.rcsb.org/download/5vmo.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5vmo.pdb.gz\n", "Downloading https://files.rcsb.org/download/5vwv.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5vwv.pdb.gz\n", "Downloading https://files.rcsb.org/download/5vww.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5vww.pdb.gz\n", "Downloading https://files.rcsb.org/download/5vwx.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5vwx.pdb.gz\n", "Downloading https://files.rcsb.org/download/5vwy.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5vwy.pdb.gz\n", "Downloading https://files.rcsb.org/download/5vwz.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5vwz.pdb.gz\n", "Downloading https://files.rcsb.org/download/5vx0.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5vx0.pdb.gz\n", "Downloading https://files.rcsb.org/download/5vx2.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5vx2.pdb.gz\n", "Downloading https://files.rcsb.org/download/5w89.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5w89.pdb.gz\n", "Downloading https://files.rcsb.org/download/5w8f.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5w8f.pdb.gz\n", "Downloading https://files.rcsb.org/download/5wos.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5wos.pdb.gz\n", "Downloading https://files.rcsb.org/download/6ua3.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6ua3.pdb.gz\n", "Downloading https://files.rcsb.org/download/6uab.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6uab.pdb.gz\n", "Downloading https://files.rcsb.org/download/1bxl.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1bxl.pdb.gz\n", "Downloading https://files.rcsb.org/download/2lp8.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/2lp8.pdb.gz\n", "Downloading https://files.rcsb.org/download/2xa0.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/2xa0.pdb.gz\n", "Downloading https://files.rcsb.org/download/3pl7.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3pl7.pdb.gz\n", "Downloading https://files.rcsb.org/download/4cim.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4cim.pdb.gz\n", "Downloading https://files.rcsb.org/download/4cin.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4cin.pdb.gz\n", "Downloading https://files.rcsb.org/download/5fmj.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5fmj.pdb.gz\n", "Downloading https://files.rcsb.org/download/5fmk.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5fmk.pdb.gz\n", "Downloading https://files.rcsb.org/download/6yli.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6yli.pdb.gz\n", "Downloading https://files.rcsb.org/download/2kbw.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/2kbw.pdb.gz\n", "Downloading https://files.rcsb.org/download/2m5b.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/2m5b.pdb.gz\n", "Downloading https://files.rcsb.org/download/2voi.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/2voi.pdb.gz\n", "Downloading https://files.rcsb.org/download/4bd2.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4bd2.pdb.gz\n", "Downloading https://files.rcsb.org/download/4zig.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4zig.pdb.gz\n", "Downloading https://files.rcsb.org/download/4zii.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4zii.pdb.gz\n", "Downloading https://files.rcsb.org/download/5c3f.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5c3f.pdb.gz\n", "Downloading https://files.rcsb.org/download/5ua4.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5ua4.pdb.gz\n", "Downloading https://files.rcsb.org/download/7m5a.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7m5a.pdb.gz\n", "Downloading https://files.rcsb.org/download/7m5b.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7m5b.pdb.gz\n", "Downloading https://files.rcsb.org/download/1pq1.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1pq1.pdb.gz\n", "Downloading https://files.rcsb.org/download/2yq6.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/2yq6.pdb.gz\n", "Downloading https://files.rcsb.org/download/2yq7.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/2yq7.pdb.gz\n", "Downloading https://files.rcsb.org/download/3fdl.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3fdl.pdb.gz\n", "Downloading https://files.rcsb.org/download/3io8.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3io8.pdb.gz\n", "Downloading https://files.rcsb.org/download/4a1u.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4a1u.pdb.gz\n", "Downloading https://files.rcsb.org/download/4a1w.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4a1w.pdb.gz\n", "Downloading https://files.rcsb.org/download/4qvf.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4qvf.pdb.gz\n", "Downloading https://files.rcsb.org/download/4yj4.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4yj4.pdb.gz\n", "Downloading https://files.rcsb.org/download/4yk9.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4yk9.pdb.gz\n", "Downloading https://files.rcsb.org/download/5agw.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5agw.pdb.gz\n", "Downloading https://files.rcsb.org/download/5agx.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5agx.pdb.gz\n", "Downloading https://files.rcsb.org/download/5c3g.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5c3g.pdb.gz\n", "Downloading https://files.rcsb.org/download/5vx3.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5vx3.pdb.gz\n", "Downloading https://files.rcsb.org/download/3j16.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3j16.pdb.gz\n", "Downloading https://files.rcsb.org/download/3j8b.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3j8b.pdb.gz\n", "Downloading https://files.rcsb.org/download/3j8c.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3j8c.pdb.gz\n", "Downloading https://files.rcsb.org/download/4u1c.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4u1c.pdb.gz\n", "Downloading https://files.rcsb.org/download/5a5t.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5a5t.pdb.gz\n", "Downloading https://files.rcsb.org/download/2d74.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/2d74.pdb.gz\n", "Downloading https://files.rcsb.org/download/2dcu.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/2dcu.pdb.gz\n", "Downloading https://files.rcsb.org/download/2qmu.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/2qmu.pdb.gz\n", "Downloading https://files.rcsb.org/download/3cw2.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3cw2.pdb.gz\n", "Downloading https://files.rcsb.org/download/3v11.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3v11.pdb.gz\n", "Downloading https://files.rcsb.org/download/6k71.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6k71.pdb.gz\n", "Downloading https://files.rcsb.org/download/6qg0.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6qg0.pdb.gz\n", "Downloading https://files.rcsb.org/download/6qg1.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6qg1.pdb.gz\n", "Downloading https://files.rcsb.org/download/6qg2.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6qg2.pdb.gz\n", "Downloading https://files.rcsb.org/download/6qg3.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6qg3.pdb.gz\n", "Downloading https://files.rcsb.org/download/6qg5.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6qg5.pdb.gz\n", "Downloading https://files.rcsb.org/download/6qg6.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6qg6.pdb.gz\n", "Downloading https://files.rcsb.org/download/6ybv.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6ybv.pdb.gz\n", "Downloading https://files.rcsb.org/download/7d43.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7d43.pdb.gz\n", "Downloading https://files.rcsb.org/download/2aho.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/2aho.pdb.gz\n", "Downloading https://files.rcsb.org/download/6k72.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6k72.pdb.gz\n", "Downloading https://files.rcsb.org/download/6o81.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6o81.pdb.gz\n", "Downloading https://files.rcsb.org/download/6o85.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6o85.pdb.gz\n", "Downloading https://files.rcsb.org/download/6lzg.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6lzg.pdb.gz\n", "Downloading https://files.rcsb.org/download/6vw1.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6vw1.pdb.gz\n", "Downloading https://files.rcsb.org/download/7bh9.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7bh9.pdb.gz\n", "Downloading https://files.rcsb.org/download/7ddo.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7ddo.pdb.gz\n", "Downloading https://files.rcsb.org/download/7dhx.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7dhx.pdb.gz\n", "Downloading https://files.rcsb.org/download/7dmu.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7dmu.pdb.gz\n", "Downloading https://files.rcsb.org/download/7lo4.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7lo4.pdb.gz\n", "Downloading https://files.rcsb.org/download/7nxc.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7nxc.pdb.gz\n", "Downloading https://files.rcsb.org/download/7w9i.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7w9i.pdb.gz\n", "Downloading https://files.rcsb.org/download/6yla.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6yla.pdb.gz\n", "Downloading https://files.rcsb.org/download/6ym0.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6ym0.pdb.gz\n", "Downloading https://files.rcsb.org/download/6yz7.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6yz7.pdb.gz\n", "Failed to download https://files.rcsb.org/download/6yz7.pdb.gz\n", "Downloading https://files.rcsb.org/download/6z2m.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6z2m.pdb.gz\n", "Downloading https://files.rcsb.org/download/6zcz.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6zcz.pdb.gz\n", "Downloading https://files.rcsb.org/download/6zdg.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6zdg.pdb.gz\n", "Downloading https://files.rcsb.org/download/6zer.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6zer.pdb.gz\n", "Downloading https://files.rcsb.org/download/6zh9.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6zh9.pdb.gz\n", "Failed to download https://files.rcsb.org/download/6zh9.pdb.gz\n", "Downloading https://files.rcsb.org/download/7b3o.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7b3o.pdb.gz\n", "Downloading https://files.rcsb.org/download/7bei.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7bei.pdb.gz\n", "Downloading https://files.rcsb.org/download/7bek.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7bek.pdb.gz\n", "Downloading https://files.rcsb.org/download/7cdi.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7cdi.pdb.gz\n", "Downloading https://files.rcsb.org/download/7chp.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7chp.pdb.gz\n", "Downloading https://files.rcsb.org/download/7chs.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7chs.pdb.gz\n", "Downloading https://files.rcsb.org/download/7e5o.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7e5o.pdb.gz\n", "Downloading https://files.rcsb.org/download/7e86.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7e86.pdb.gz\n", "Downloading https://files.rcsb.org/download/7e88.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7e88.pdb.gz\n", "Downloading https://files.rcsb.org/download/7k8m.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7k8m.pdb.gz\n", "Downloading https://files.rcsb.org/download/7klg.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7klg.pdb.gz\n", "Downloading https://files.rcsb.org/download/7klh.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7klh.pdb.gz\n", "Downloading https://files.rcsb.org/download/7l7d.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7l7d.pdb.gz\n", "Downloading https://files.rcsb.org/download/7lq7.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7lq7.pdb.gz\n", "Downloading https://files.rcsb.org/download/7m6d.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7m6d.pdb.gz\n", "Downloading https://files.rcsb.org/download/7mzf.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7mzf.pdb.gz\n", "Downloading https://files.rcsb.org/download/7mzl.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7mzl.pdb.gz\n", "Downloading https://files.rcsb.org/download/7mzn.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7mzn.pdb.gz\n", "Downloading https://files.rcsb.org/download/7n3i.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7n3i.pdb.gz\n", "Downloading https://files.rcsb.org/download/7n4l.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7n4l.pdb.gz\n", "Downloading https://files.rcsb.org/download/7neh.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7neh.pdb.gz\n", "Downloading https://files.rcsb.org/download/7np1.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7np1.pdb.gz\n", "Downloading https://files.rcsb.org/download/7nx6.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7nx6.pdb.gz\n", "Downloading https://files.rcsb.org/download/7nx7.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7nx7.pdb.gz\n", "Downloading https://files.rcsb.org/download/7nx8.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7nx8.pdb.gz\n", "Downloading https://files.rcsb.org/download/7nx9.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7nx9.pdb.gz\n", "Downloading https://files.rcsb.org/download/7nxa.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7nxa.pdb.gz\n", "Downloading https://files.rcsb.org/download/7nxb.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7nxb.pdb.gz\n", "Downloading https://files.rcsb.org/download/7or9.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7or9.pdb.gz\n", "Downloading https://files.rcsb.org/download/7r8l.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7r8l.pdb.gz\n", "Downloading https://files.rcsb.org/download/7rku.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7rku.pdb.gz\n", "Downloading https://files.rcsb.org/download/7bej.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7bej.pdb.gz\n", "Downloading https://files.rcsb.org/download/7cho.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7cho.pdb.gz\n", "Downloading https://files.rcsb.org/download/7kmh.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7kmh.pdb.gz\n", "Downloading https://files.rcsb.org/download/7kmi.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7kmi.pdb.gz\n", "Downloading https://files.rcsb.org/download/7e3c.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7e3c.pdb.gz\n", "Downloading https://files.rcsb.org/download/6zfo.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6zfo.pdb.gz\n", "Downloading https://files.rcsb.org/download/7rks.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7rks.pdb.gz\n", "Downloading https://files.rcsb.org/download/7ben.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7ben.pdb.gz\n", "Downloading https://files.rcsb.org/download/7beo.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7beo.pdb.gz\n", "Downloading https://files.rcsb.org/download/7e39.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7e39.pdb.gz\n", "Downloading https://files.rcsb.org/download/7l7e.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7l7e.pdb.gz\n", "Downloading https://files.rcsb.org/download/7lrs.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7lrs.pdb.gz\n", "Downloading https://files.rcsb.org/download/7mlz.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7mlz.pdb.gz\n", "Downloading https://files.rcsb.org/download/7mzh.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7mzh.pdb.gz\n", "Downloading https://files.rcsb.org/download/7ora.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7ora.pdb.gz\n", "Downloading https://files.rcsb.org/download/7orb.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7orb.pdb.gz\n", "Downloading https://files.rcsb.org/download/7bep.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7bep.pdb.gz\n", "Downloading https://files.rcsb.org/download/7cdj.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7cdj.pdb.gz\n", "Downloading https://files.rcsb.org/download/7kmg.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7kmg.pdb.gz\n", "Downloading https://files.rcsb.org/download/7w9f.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7w9f.pdb.gz\n", "Downloading https://files.rcsb.org/download/6yor.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6yor.pdb.gz\n", "Downloading https://files.rcsb.org/download/6xdg.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6xdg.pdb.gz\n", "Downloading https://files.rcsb.org/download/7beh.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7beh.pdb.gz\n", "Downloading https://files.rcsb.org/download/7l5b.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7l5b.pdb.gz\n", "Downloading https://files.rcsb.org/download/7m42.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7m42.pdb.gz\n", "Downloading https://files.rcsb.org/download/7bel.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7bel.pdb.gz\n", "Downloading https://files.rcsb.org/download/7mzi.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7mzi.pdb.gz\n", "Downloading https://files.rcsb.org/download/7mzj.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7mzj.pdb.gz\n", "Downloading https://files.rcsb.org/download/7mzk.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7mzk.pdb.gz\n", "Downloading https://files.rcsb.org/download/1igt.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1igt.pdb.gz\n", "Downloading https://files.rcsb.org/download/1igy.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1igy.pdb.gz\n", "Downloading https://files.rcsb.org/download/1mco.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1mco.pdb.gz\n", "Downloading https://files.rcsb.org/download/1zvo.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1zvo.pdb.gz\n", "Downloading https://files.rcsb.org/download/2ig2.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/2ig2.pdb.gz\n", "Downloading https://files.rcsb.org/download/4web.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4web.pdb.gz\n", "Downloading https://files.rcsb.org/download/5dk3.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5dk3.pdb.gz\n", "Downloading https://files.rcsb.org/download/6cnj.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6cnj.pdb.gz\n", "Downloading https://files.rcsb.org/download/6cnk.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6cnk.pdb.gz\n", "Downloading https://files.rcsb.org/download/6d6t.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6d6t.pdb.gz\n", "Downloading https://files.rcsb.org/download/6d6u.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6d6u.pdb.gz\n", "Downloading https://files.rcsb.org/download/6gfe.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6gfe.pdb.gz\n", "Downloading https://files.rcsb.org/download/6rnn.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6rnn.pdb.gz\n", "Downloading https://files.rcsb.org/download/6s3t.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6s3t.pdb.gz\n", "Downloading https://files.rcsb.org/download/6x3s.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6x3s.pdb.gz\n", "Downloading https://files.rcsb.org/download/6x3t.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6x3t.pdb.gz\n", "Downloading https://files.rcsb.org/download/6x3u.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6x3u.pdb.gz\n", "Downloading https://files.rcsb.org/download/6x3v.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6x3v.pdb.gz\n", "Downloading https://files.rcsb.org/download/6x3w.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6x3w.pdb.gz\n", "Downloading https://files.rcsb.org/download/6x3x.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6x3x.pdb.gz\n", "Downloading https://files.rcsb.org/download/6x3z.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6x3z.pdb.gz\n", "Downloading https://files.rcsb.org/download/6x40.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6x40.pdb.gz\n", "Downloading https://files.rcsb.org/download/6ye3.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6ye3.pdb.gz\n", "Downloading https://files.rcsb.org/download/7c2l.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7c2l.pdb.gz\n", "Downloading https://files.rcsb.org/download/7cm4.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7cm4.pdb.gz\n", "Downloading https://files.rcsb.org/download/7czp.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7czp.pdb.gz\n", "Downloading https://files.rcsb.org/download/7czq.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7czq.pdb.gz\n", "Downloading https://files.rcsb.org/download/7czt.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7czt.pdb.gz\n", "Downloading https://files.rcsb.org/download/7czx.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7czx.pdb.gz\n", "Downloading https://files.rcsb.org/download/7czy.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7czy.pdb.gz\n", "Downloading https://files.rcsb.org/download/7czz.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7czz.pdb.gz\n", "Downloading https://files.rcsb.org/download/7e23.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7e23.pdb.gz\n", "Downloading https://files.rcsb.org/download/7e3b.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7e3b.pdb.gz\n", "Downloading https://files.rcsb.org/download/7ej4.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7ej4.pdb.gz\n", "Downloading https://files.rcsb.org/download/7ej5.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7ej5.pdb.gz\n", "Downloading https://files.rcsb.org/download/7f62.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7f62.pdb.gz\n", "Downloading https://files.rcsb.org/download/7f63.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7f63.pdb.gz\n", "Downloading https://files.rcsb.org/download/7fae.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7fae.pdb.gz\n", "Downloading https://files.rcsb.org/download/7faf.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7faf.pdb.gz\n", "Downloading https://files.rcsb.org/download/7kqb.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7kqb.pdb.gz\n", "Downloading https://files.rcsb.org/download/7kqe.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7kqe.pdb.gz\n", "Downloading https://files.rcsb.org/download/7ljr.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7ljr.pdb.gz\n", "Downloading https://files.rcsb.org/download/7m71.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7m71.pdb.gz\n", "Downloading https://files.rcsb.org/download/7m7b.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7m7b.pdb.gz\n", "Downloading https://files.rcsb.org/download/7w9e.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7w9e.pdb.gz\n", "Downloading https://files.rcsb.org/download/6w41.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6w41.pdb.gz\n", "Downloading https://files.rcsb.org/download/6xc2.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6xc2.pdb.gz\n", "Downloading https://files.rcsb.org/download/6xc3.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6xc3.pdb.gz\n", "Downloading https://files.rcsb.org/download/6xc4.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6xc4.pdb.gz\n", "Downloading https://files.rcsb.org/download/6xc7.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6xc7.pdb.gz\n", "Downloading https://files.rcsb.org/download/6xe1.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6xe1.pdb.gz\n", "Downloading https://files.rcsb.org/download/6xkq.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6xkq.pdb.gz\n", "Downloading https://files.rcsb.org/download/6zlr.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6zlr.pdb.gz\n", "Failed to download https://files.rcsb.org/download/6zlr.pdb.gz\n", "Downloading https://files.rcsb.org/download/7b0b.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7b0b.pdb.gz\n", "Downloading https://files.rcsb.org/download/7bz5.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7bz5.pdb.gz\n", "Downloading https://files.rcsb.org/download/7c01.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7c01.pdb.gz\n", "Downloading https://files.rcsb.org/download/7ch4.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7ch4.pdb.gz\n", "Downloading https://files.rcsb.org/download/7ch5.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7ch5.pdb.gz\n", "Downloading https://files.rcsb.org/download/7chc.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7chc.pdb.gz\n", "Downloading https://files.rcsb.org/download/7che.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7che.pdb.gz\n", "Downloading https://files.rcsb.org/download/7chf.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7chf.pdb.gz\n", "Downloading https://files.rcsb.org/download/7dpm.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7dpm.pdb.gz\n", "Downloading https://files.rcsb.org/download/7jmo.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7jmo.pdb.gz\n", "Downloading https://files.rcsb.org/download/7jmw.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7jmw.pdb.gz\n", "Downloading https://files.rcsb.org/download/7kfv.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7kfv.pdb.gz\n", "Downloading https://files.rcsb.org/download/7kfw.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7kfw.pdb.gz\n", "Downloading https://files.rcsb.org/download/7kfx.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7kfx.pdb.gz\n", "Downloading https://files.rcsb.org/download/7kfy.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7kfy.pdb.gz\n", "Downloading https://files.rcsb.org/download/7kn3.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7kn3.pdb.gz\n", "Downloading https://files.rcsb.org/download/7kn6.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7kn6.pdb.gz\n", "Downloading https://files.rcsb.org/download/7kn7.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7kn7.pdb.gz\n", "Downloading https://files.rcsb.org/download/7s4s.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7s4s.pdb.gz\n", "Downloading https://files.rcsb.org/download/7chb.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7chb.pdb.gz\n", "Downloading https://files.rcsb.org/download/7e5y.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7e5y.pdb.gz\n", "Downloading https://files.rcsb.org/download/7dk2.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7dk2.pdb.gz\n", "Downloading https://files.rcsb.org/download/7e7y.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7e7y.pdb.gz\n", "Downloading https://files.rcsb.org/download/7jmp.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7jmp.pdb.gz\n", "Downloading https://files.rcsb.org/download/7k9z.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7k9z.pdb.gz\n", "Downloading https://files.rcsb.org/download/7cwn.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7cwn.pdb.gz\n", "Downloading https://files.rcsb.org/download/7d0b.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7d0b.pdb.gz\n", "Downloading https://files.rcsb.org/download/7d0d.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7d0d.pdb.gz\n", "Downloading https://files.rcsb.org/download/7dk4.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7dk4.pdb.gz\n", "Downloading https://files.rcsb.org/download/7dk5.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7dk5.pdb.gz\n", "Downloading https://files.rcsb.org/download/7dk6.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7dk6.pdb.gz\n", "Downloading https://files.rcsb.org/download/7dk7.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7dk7.pdb.gz\n", "Downloading https://files.rcsb.org/download/7k8s.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7k8s.pdb.gz\n", "Downloading https://files.rcsb.org/download/7k8t.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7k8t.pdb.gz\n", "Downloading https://files.rcsb.org/download/7k8u.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7k8u.pdb.gz\n", "Downloading https://files.rcsb.org/download/7kmk.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7kmk.pdb.gz\n", "Downloading https://files.rcsb.org/download/7kml.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7kml.pdb.gz\n", "Downloading https://files.rcsb.org/download/7kxj.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7kxj.pdb.gz\n", "Downloading https://files.rcsb.org/download/7kxk.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7kxk.pdb.gz\n", "Downloading https://files.rcsb.org/download/7m6i.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7m6i.pdb.gz\n", "Downloading https://files.rcsb.org/download/7e3k.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7e3k.pdb.gz\n", "Downloading https://files.rcsb.org/download/7e3l.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7e3l.pdb.gz\n", "Downloading https://files.rcsb.org/download/7ey5.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7ey5.pdb.gz\n", "Downloading https://files.rcsb.org/download/7ezv.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7ezv.pdb.gz\n", "Downloading https://files.rcsb.org/download/7lrt.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7lrt.pdb.gz\n", "Downloading https://files.rcsb.org/download/7mm0.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7mm0.pdb.gz\n", "Downloading https://files.rcsb.org/download/6xcm.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6xcm.pdb.gz\n", "Downloading https://files.rcsb.org/download/6xcn.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6xcn.pdb.gz\n", "Downloading https://files.rcsb.org/download/7d0c.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7d0c.pdb.gz\n", "Downloading https://files.rcsb.org/download/7ey0.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7ey0.pdb.gz\n", "Failed to download https://files.rcsb.org/download/7ey0.pdb.gz\n", "Downloading https://files.rcsb.org/download/7ks9.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7ks9.pdb.gz\n", "Downloading https://files.rcsb.org/download/7m6f.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7m6f.pdb.gz\n", "Downloading https://files.rcsb.org/download/7mjj.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7mjj.pdb.gz\n", "Downloading https://files.rcsb.org/download/7mjk.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7mjk.pdb.gz\n", "Downloading https://files.rcsb.org/download/7mjl.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7mjl.pdb.gz\n", "Downloading https://files.rcsb.org/download/7nd3.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7nd3.pdb.gz\n", "Downloading https://files.rcsb.org/download/7nd5.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7nd5.pdb.gz\n", "Downloading https://files.rcsb.org/download/7nd6.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7nd6.pdb.gz\n", "Downloading https://files.rcsb.org/download/7k8x.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7k8x.pdb.gz\n", "Downloading https://files.rcsb.org/download/7k8y.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7k8y.pdb.gz\n", "Downloading https://files.rcsb.org/download/7m6h.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7m6h.pdb.gz\n", "Downloading https://files.rcsb.org/download/6acg.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6acg.pdb.gz\n", "Downloading https://files.rcsb.org/download/6acj.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6acj.pdb.gz\n", "Downloading https://files.rcsb.org/download/6ack.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6ack.pdb.gz\n", "Downloading https://files.rcsb.org/download/6cs2.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6cs2.pdb.gz\n", "Downloading https://files.rcsb.org/download/7kmb.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7kmb.pdb.gz\n", "Downloading https://files.rcsb.org/download/7vx9.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7vx9.pdb.gz\n", "Downloading https://files.rcsb.org/download/6xey.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6xey.pdb.gz\n", "Downloading https://files.rcsb.org/download/7k43.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7k43.pdb.gz\n", "Downloading https://files.rcsb.org/download/7k9h.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7k9h.pdb.gz\n", "Downloading https://files.rcsb.org/download/7kkk.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7kkk.pdb.gz\n", "Downloading https://files.rcsb.org/download/7kkl.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7kkl.pdb.gz\n", "Downloading https://files.rcsb.org/download/7l56.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7l56.pdb.gz\n", "Downloading https://files.rcsb.org/download/7l58.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7l58.pdb.gz\n", "Downloading https://files.rcsb.org/download/7lxy.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7lxy.pdb.gz\n", "Downloading https://files.rcsb.org/download/7lxz.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7lxz.pdb.gz\n", "Downloading https://files.rcsb.org/download/7ly2.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7ly2.pdb.gz\n", "Downloading https://files.rcsb.org/download/7n8h.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7n8h.pdb.gz\n", "Downloading https://files.rcsb.org/download/7so9.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7so9.pdb.gz\n", "Downloading https://files.rcsb.org/download/7tas.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7tas.pdb.gz\n", "Downloading https://files.rcsb.org/download/7tat.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7tat.pdb.gz\n", "Downloading https://files.rcsb.org/download/7mjh.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7mjh.pdb.gz\n", "Downloading https://files.rcsb.org/download/7jv2.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7jv2.pdb.gz\n", "Downloading https://files.rcsb.org/download/7my2.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7my2.pdb.gz\n", "Downloading https://files.rcsb.org/download/7n9c.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7n9c.pdb.gz\n", "Downloading https://files.rcsb.org/download/7p77.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7p77.pdb.gz\n", "Downloading https://files.rcsb.org/download/7p78.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7p78.pdb.gz\n", "Downloading https://files.rcsb.org/download/7p7a.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7p7a.pdb.gz\n", "Downloading https://files.rcsb.org/download/7ra8.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7ra8.pdb.gz\n", "Downloading https://files.rcsb.org/download/7ral.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7ral.pdb.gz\n", "Downloading https://files.rcsb.org/download/7cwl.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7cwl.pdb.gz\n", "Downloading https://files.rcsb.org/download/7cwm.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7cwm.pdb.gz\n", "Downloading https://files.rcsb.org/download/7cwo.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7cwo.pdb.gz\n", "Downloading https://files.rcsb.org/download/7cwu.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7cwu.pdb.gz\n", "Downloading https://files.rcsb.org/download/7k45.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7k45.pdb.gz\n", "Downloading https://files.rcsb.org/download/7r7n.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7r7n.pdb.gz\n", "Downloading https://files.rcsb.org/download/7lxw.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7lxw.pdb.gz\n", "Downloading https://files.rcsb.org/download/7lxx.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7lxx.pdb.gz\n", "Downloading https://files.rcsb.org/download/7ly0.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7ly0.pdb.gz\n", "Downloading https://files.rcsb.org/download/1ldj.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1ldj.pdb.gz\n", "Downloading https://files.rcsb.org/download/1ldk.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1ldk.pdb.gz\n", "Downloading https://files.rcsb.org/download/1u6g.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1u6g.pdb.gz\n", "Downloading https://files.rcsb.org/download/2hye.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/2hye.pdb.gz\n", "Downloading https://files.rcsb.org/download/3dpl.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3dpl.pdb.gz\n", "Downloading https://files.rcsb.org/download/3dqv.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3dqv.pdb.gz\n", "Downloading https://files.rcsb.org/download/3rtr.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3rtr.pdb.gz\n", "Downloading https://files.rcsb.org/download/4a0c.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4a0c.pdb.gz\n", "Downloading https://files.rcsb.org/download/4a0k.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4a0k.pdb.gz\n", "Downloading https://files.rcsb.org/download/4a0l.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4a0l.pdb.gz\n", "Downloading https://files.rcsb.org/download/7b5l.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7b5l.pdb.gz\n", "Downloading https://files.rcsb.org/download/7b5m.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7b5m.pdb.gz\n", "Downloading https://files.rcsb.org/download/7b5n.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7b5n.pdb.gz\n", "Downloading https://files.rcsb.org/download/7b5s.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7b5s.pdb.gz\n", "Downloading https://files.rcsb.org/download/1dtw.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1dtw.pdb.gz\n", "Downloading https://files.rcsb.org/download/1ni4.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1ni4.pdb.gz\n", "Downloading https://files.rcsb.org/download/1ols.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1ols.pdb.gz\n", "Downloading https://files.rcsb.org/download/1olu.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1olu.pdb.gz\n", "Downloading https://files.rcsb.org/download/1olx.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1olx.pdb.gz\n", "Downloading https://files.rcsb.org/download/1u5b.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1u5b.pdb.gz\n", "Downloading https://files.rcsb.org/download/1um9.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1um9.pdb.gz\n", "Downloading https://files.rcsb.org/download/1umb.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1umb.pdb.gz\n", "Downloading https://files.rcsb.org/download/1umc.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1umc.pdb.gz\n", "Downloading https://files.rcsb.org/download/1umd.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1umd.pdb.gz\n", "Downloading https://files.rcsb.org/download/1v11.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1v11.pdb.gz\n", "Downloading https://files.rcsb.org/download/1v16.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1v16.pdb.gz\n", "Downloading https://files.rcsb.org/download/1v1m.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1v1m.pdb.gz\n", "Downloading https://files.rcsb.org/download/1v1r.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1v1r.pdb.gz\n", "Downloading https://files.rcsb.org/download/1wci.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1wci.pdb.gz\n", "Downloading https://files.rcsb.org/download/1x7w.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1x7w.pdb.gz\n", "Downloading https://files.rcsb.org/download/1x7x.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1x7x.pdb.gz\n", "Downloading https://files.rcsb.org/download/1x7y.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1x7y.pdb.gz\n", "Downloading https://files.rcsb.org/download/1x7z.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1x7z.pdb.gz\n", "Downloading https://files.rcsb.org/download/1x80.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1x80.pdb.gz\n", "Downloading https://files.rcsb.org/download/2beu.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/2beu.pdb.gz\n", "Downloading https://files.rcsb.org/download/2bev.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/2bev.pdb.gz\n", "Downloading https://files.rcsb.org/download/2bew.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/2bew.pdb.gz\n", "Downloading https://files.rcsb.org/download/2bfb.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/2bfb.pdb.gz\n", "Downloading https://files.rcsb.org/download/2bfc.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/2bfc.pdb.gz\n", "Downloading https://files.rcsb.org/download/2bfd.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/2bfd.pdb.gz\n", "Downloading https://files.rcsb.org/download/2bfe.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/2bfe.pdb.gz\n", "Downloading https://files.rcsb.org/download/2bff.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/2bff.pdb.gz\n", "Downloading https://files.rcsb.org/download/2j9f.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/2j9f.pdb.gz\n", "Downloading https://files.rcsb.org/download/2ozl.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/2ozl.pdb.gz\n", "Downloading https://files.rcsb.org/download/3duf.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3duf.pdb.gz\n", "Downloading https://files.rcsb.org/download/3dv0.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3dv0.pdb.gz\n", "Downloading https://files.rcsb.org/download/3dva.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3dva.pdb.gz\n", "Downloading https://files.rcsb.org/download/3exe.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3exe.pdb.gz\n", "Downloading https://files.rcsb.org/download/3exf.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3exf.pdb.gz\n", "Downloading https://files.rcsb.org/download/3exg.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3exg.pdb.gz\n", "Downloading https://files.rcsb.org/download/3exi.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3exi.pdb.gz\n", "Downloading https://files.rcsb.org/download/6cer.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6cer.pdb.gz\n", "Downloading https://files.rcsb.org/download/6cfo.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6cfo.pdb.gz\n", "Downloading https://files.rcsb.org/download/5v74.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5v74.pdb.gz\n", "Failed to download https://files.rcsb.org/download/5v74.pdb.gz\n", "Downloading https://files.rcsb.org/download/6mzy.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6mzy.pdb.gz\n", "Failed to download https://files.rcsb.org/download/6mzy.pdb.gz\n", "Downloading https://files.rcsb.org/download/6n06.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6n06.pdb.gz\n", "Failed to download https://files.rcsb.org/download/6n06.pdb.gz\n", "Downloading https://files.rcsb.org/download/6n07.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6n07.pdb.gz\n", "Failed to download https://files.rcsb.org/download/6n07.pdb.gz\n", "Downloading https://files.rcsb.org/download/6n0f.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6n0f.pdb.gz\n", "Failed to download https://files.rcsb.org/download/6n0f.pdb.gz\n", "Downloading https://files.rcsb.org/download/6n0g.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6n0g.pdb.gz\n", "Failed to download https://files.rcsb.org/download/6n0g.pdb.gz\n", "Downloading https://files.rcsb.org/download/6owf.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6owf.pdb.gz\n", "Failed to download https://files.rcsb.org/download/6owf.pdb.gz\n", "Downloading https://files.rcsb.org/download/6owg.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6owg.pdb.gz\n", "Failed to download https://files.rcsb.org/download/6owg.pdb.gz\n", "Downloading https://files.rcsb.org/download/6qn1.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6qn1.pdb.gz\n", "Failed to download https://files.rcsb.org/download/6qn1.pdb.gz\n", "Downloading https://files.rcsb.org/download/7ckb.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7ckb.pdb.gz\n", "Failed to download https://files.rcsb.org/download/7ckb.pdb.gz\n", "Downloading https://files.rcsb.org/download/7ckc.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7ckc.pdb.gz\n", "Failed to download https://files.rcsb.org/download/7ckc.pdb.gz\n", "Downloading https://files.rcsb.org/download/1nt2.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1nt2.pdb.gz\n", "Downloading https://files.rcsb.org/download/2nnw.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/2nnw.pdb.gz\n", "Downloading https://files.rcsb.org/download/3id5.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3id5.pdb.gz\n", "Downloading https://files.rcsb.org/download/3id6.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3id6.pdb.gz\n", "Downloading https://files.rcsb.org/download/3nmu.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3nmu.pdb.gz\n", "Downloading https://files.rcsb.org/download/3nvk.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3nvk.pdb.gz\n", "Downloading https://files.rcsb.org/download/3nvm.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3nvm.pdb.gz\n", "Downloading https://files.rcsb.org/download/3pla.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3pla.pdb.gz\n", "Downloading https://files.rcsb.org/download/4by9.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4by9.pdb.gz\n", "Downloading https://files.rcsb.org/download/5gin.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5gin.pdb.gz\n", "Downloading https://files.rcsb.org/download/5gio.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5gio.pdb.gz\n", "Downloading https://files.rcsb.org/download/5gip.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5gip.pdb.gz\n", "Downloading https://files.rcsb.org/download/2ozb.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/2ozb.pdb.gz\n", "Downloading https://files.rcsb.org/download/3nvi.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3nvi.pdb.gz\n", "Downloading https://files.rcsb.org/download/3siu.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3siu.pdb.gz\n", "Downloading https://files.rcsb.org/download/3siv.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3siv.pdb.gz\n", "Downloading https://files.rcsb.org/download/4xd9.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4xd9.pdb.gz\n", "Downloading https://files.rcsb.org/download/5a53.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5a53.pdb.gz\n", "Downloading https://files.rcsb.org/download/5by8.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5by8.pdb.gz\n", "Downloading https://files.rcsb.org/download/5fur.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5fur.pdb.gz\n", "Downloading https://files.rcsb.org/download/4ci1.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4ci1.pdb.gz\n", "Downloading https://files.rcsb.org/download/4ci2.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4ci2.pdb.gz\n", "Downloading https://files.rcsb.org/download/4ci3.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4ci3.pdb.gz\n", "Downloading https://files.rcsb.org/download/4tz4.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4tz4.pdb.gz\n", "Downloading https://files.rcsb.org/download/5fqd.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5fqd.pdb.gz\n", "Downloading https://files.rcsb.org/download/5hxb.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5hxb.pdb.gz\n", "Downloading https://files.rcsb.org/download/5v3o.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5v3o.pdb.gz\n", "Downloading https://files.rcsb.org/download/6bn7.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6bn7.pdb.gz\n", "Downloading https://files.rcsb.org/download/6bn8.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6bn8.pdb.gz\n", "Downloading https://files.rcsb.org/download/6bn9.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6bn9.pdb.gz\n", "Downloading https://files.rcsb.org/download/6bnb.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6bnb.pdb.gz\n", "Downloading https://files.rcsb.org/download/6boy.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6boy.pdb.gz\n", "Downloading https://files.rcsb.org/download/6h0f.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6h0f.pdb.gz\n", "Downloading https://files.rcsb.org/download/6h0g.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6h0g.pdb.gz\n", "Downloading https://files.rcsb.org/download/6uml.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6uml.pdb.gz\n", "Downloading https://files.rcsb.org/download/6xk9.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6xk9.pdb.gz\n", "Downloading https://files.rcsb.org/download/7lps.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7lps.pdb.gz\n", "Downloading https://files.rcsb.org/download/5gap.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5gap.pdb.gz\n", "Downloading https://files.rcsb.org/download/4zmj.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4zmj.pdb.gz\n", "Downloading https://files.rcsb.org/download/5cjx.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5cjx.pdb.gz\n", "Downloading https://files.rcsb.org/download/5fuu.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5fuu.pdb.gz\n", "Failed to download https://files.rcsb.org/download/5fuu.pdb.gz\n", "Downloading https://files.rcsb.org/download/5i8h.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5i8h.pdb.gz\n", "Downloading https://files.rcsb.org/download/5v8m.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5v8m.pdb.gz\n", "Downloading https://files.rcsb.org/download/5viy.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5viy.pdb.gz\n", "Downloading https://files.rcsb.org/download/5vn8.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5vn8.pdb.gz\n", "Downloading https://files.rcsb.org/download/6ccb.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6ccb.pdb.gz\n", "Downloading https://files.rcsb.org/download/6cdi.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6cdi.pdb.gz\n", "Failed to download https://files.rcsb.org/download/6cdi.pdb.gz\n", "Downloading https://files.rcsb.org/download/6cue.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6cue.pdb.gz\n", "Failed to download https://files.rcsb.org/download/6cue.pdb.gz\n", "Downloading https://files.rcsb.org/download/6cuf.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6cuf.pdb.gz\n", "Failed to download https://files.rcsb.org/download/6cuf.pdb.gz\n", "Downloading https://files.rcsb.org/download/6dcq.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6dcq.pdb.gz\n", "Downloading https://files.rcsb.org/download/6dfg.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6dfg.pdb.gz\n", "Downloading https://files.rcsb.org/download/6dfh.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6dfh.pdb.gz\n", "Downloading https://files.rcsb.org/download/6did.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6did.pdb.gz\n", "Downloading https://files.rcsb.org/download/6e5p.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6e5p.pdb.gz\n", "Downloading https://files.rcsb.org/download/6mn7.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6mn7.pdb.gz\n", "Downloading https://files.rcsb.org/download/6mpg.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6mpg.pdb.gz\n", "Failed to download https://files.rcsb.org/download/6mpg.pdb.gz\n", "Downloading https://files.rcsb.org/download/6mph.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6mph.pdb.gz\n", "Failed to download https://files.rcsb.org/download/6mph.pdb.gz\n", "Downloading https://files.rcsb.org/download/6mtj.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6mtj.pdb.gz\n", "Downloading https://files.rcsb.org/download/6mtn.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6mtn.pdb.gz\n", "Downloading https://files.rcsb.org/download/6mu6.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6mu6.pdb.gz\n", "Downloading https://files.rcsb.org/download/6mu7.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6mu7.pdb.gz\n", "Downloading https://files.rcsb.org/download/6mu8.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6mu8.pdb.gz\n", "Downloading https://files.rcsb.org/download/6muf.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6muf.pdb.gz\n", "Downloading https://files.rcsb.org/download/6mug.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6mug.pdb.gz\n", "Downloading https://files.rcsb.org/download/6n1v.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6n1v.pdb.gz\n", "Failed to download https://files.rcsb.org/download/6n1v.pdb.gz\n", "Downloading https://files.rcsb.org/download/6n1w.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6n1w.pdb.gz\n", "Failed to download https://files.rcsb.org/download/6n1w.pdb.gz\n", "Downloading https://files.rcsb.org/download/6nc2.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6nc2.pdb.gz\n", "Downloading https://files.rcsb.org/download/6nc3.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6nc3.pdb.gz\n", "Failed to download https://files.rcsb.org/download/6nc3.pdb.gz\n", "Downloading https://files.rcsb.org/download/6nf5.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6nf5.pdb.gz\n", "Downloading https://files.rcsb.org/download/6nfc.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6nfc.pdb.gz\n", "Downloading https://files.rcsb.org/download/6nij.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6nij.pdb.gz\n", "Downloading https://files.rcsb.org/download/6nm6.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6nm6.pdb.gz\n", "Downloading https://files.rcsb.org/download/6nnf.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6nnf.pdb.gz\n", "Downloading https://files.rcsb.org/download/6nnj.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6nnj.pdb.gz\n", "Downloading https://files.rcsb.org/download/6nqd.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6nqd.pdb.gz\n", "Downloading https://files.rcsb.org/download/6ohy.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6ohy.pdb.gz\n", "Downloading https://files.rcsb.org/download/6okp.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6okp.pdb.gz\n", "Downloading https://files.rcsb.org/download/6olp.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6olp.pdb.gz\n", "Downloading https://files.rcsb.org/download/6orn.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6orn.pdb.gz\n", "Downloading https://files.rcsb.org/download/6oro.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6oro.pdb.gz\n", "Downloading https://files.rcsb.org/download/6orp.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6orp.pdb.gz\n", "Downloading https://files.rcsb.org/download/6orq.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6orq.pdb.gz\n", "Downloading https://files.rcsb.org/download/6oz4.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6oz4.pdb.gz\n", "Downloading https://files.rcsb.org/download/6ozc.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6ozc.pdb.gz\n", "Downloading https://files.rcsb.org/download/6pw6.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6pw6.pdb.gz\n", "Downloading https://files.rcsb.org/download/6u59.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6u59.pdb.gz\n", "Downloading https://files.rcsb.org/download/6uda.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6uda.pdb.gz\n", "Downloading https://files.rcsb.org/download/6udj.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6udj.pdb.gz\n", "Failed to download https://files.rcsb.org/download/6udj.pdb.gz\n", "Downloading https://files.rcsb.org/download/6udk.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6udk.pdb.gz\n", "Downloading https://files.rcsb.org/download/6um5.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6um5.pdb.gz\n", "Downloading https://files.rcsb.org/download/6um6.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6um6.pdb.gz\n", "Downloading https://files.rcsb.org/download/6um7.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6um7.pdb.gz\n", "Downloading https://files.rcsb.org/download/6v0r.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6v0r.pdb.gz\n", "Downloading https://files.rcsb.org/download/6v8x.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6v8x.pdb.gz\n", "Downloading https://files.rcsb.org/download/6v8z.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6v8z.pdb.gz\n", "Downloading https://files.rcsb.org/download/6vfl.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6vfl.pdb.gz\n", "Downloading https://files.rcsb.org/download/6vkn.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6vkn.pdb.gz\n", "Downloading https://files.rcsb.org/download/6vl5.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6vl5.pdb.gz\n", "Downloading https://files.rcsb.org/download/6vlr.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6vlr.pdb.gz\n", "Downloading https://files.rcsb.org/download/6vn0.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6vn0.pdb.gz\n", "Downloading https://files.rcsb.org/download/6vo0.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6vo0.pdb.gz\n", "Downloading https://files.rcsb.org/download/6vo1.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6vo1.pdb.gz\n", "Downloading https://files.rcsb.org/download/6vpx.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6vpx.pdb.gz\n", "Downloading https://files.rcsb.org/download/6vy2.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6vy2.pdb.gz\n", "Downloading https://files.rcsb.org/download/6x96.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6x96.pdb.gz\n", "Downloading https://files.rcsb.org/download/6x97.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6x97.pdb.gz\n", "Downloading https://files.rcsb.org/download/6x98.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6x98.pdb.gz\n", "Downloading https://files.rcsb.org/download/6x9r.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6x9r.pdb.gz\n", "Downloading https://files.rcsb.org/download/6x9s.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6x9s.pdb.gz\n", "Downloading https://files.rcsb.org/download/6x9t.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6x9t.pdb.gz\n", "Downloading https://files.rcsb.org/download/6x9u.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6x9u.pdb.gz\n", "Downloading https://files.rcsb.org/download/6x9v.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6x9v.pdb.gz\n", "Downloading https://files.rcsb.org/download/6xrt.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6xrt.pdb.gz\n", "Downloading https://files.rcsb.org/download/7kde.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7kde.pdb.gz\n", "Downloading https://files.rcsb.org/download/7l8s.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7l8s.pdb.gz\n", "Downloading https://files.rcsb.org/download/7lg6.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7lg6.pdb.gz\n", "Downloading https://files.rcsb.org/download/7ll1.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7ll1.pdb.gz\n", "Downloading https://files.rcsb.org/download/7ll2.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7ll2.pdb.gz\n", "Downloading https://files.rcsb.org/download/7lo6.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7lo6.pdb.gz\n", "Downloading https://files.rcsb.org/download/7mxe.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7mxe.pdb.gz\n", "Downloading https://files.rcsb.org/download/7rai.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7rai.pdb.gz\n", "Downloading https://files.rcsb.org/download/7rsn.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7rsn.pdb.gz\n", "Downloading https://files.rcsb.org/download/7rso.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7rso.pdb.gz\n", "Downloading https://files.rcsb.org/download/3ngb.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/3ngb.pdb.gz\n", "Downloading https://files.rcsb.org/download/4lss.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4lss.pdb.gz\n", "Downloading https://files.rcsb.org/download/4lst.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4lst.pdb.gz\n", "Downloading https://files.rcsb.org/download/4lsv.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4lsv.pdb.gz\n", "Downloading https://files.rcsb.org/download/4olu.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4olu.pdb.gz\n", "Downloading https://files.rcsb.org/download/4olv.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4olv.pdb.gz\n", "Downloading https://files.rcsb.org/download/4olw.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4olw.pdb.gz\n", "Downloading https://files.rcsb.org/download/4olx.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4olx.pdb.gz\n", "Downloading https://files.rcsb.org/download/4oly.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4oly.pdb.gz\n", "Downloading https://files.rcsb.org/download/4olz.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4olz.pdb.gz\n", "Downloading https://files.rcsb.org/download/4om0.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4om0.pdb.gz\n", "Downloading https://files.rcsb.org/download/4om1.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4om1.pdb.gz\n", "Downloading https://files.rcsb.org/download/4s1q.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4s1q.pdb.gz\n", "Downloading https://files.rcsb.org/download/4s1r.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4s1r.pdb.gz\n", "Downloading https://files.rcsb.org/download/5f9o.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5f9o.pdb.gz\n", "Downloading https://files.rcsb.org/download/5fec.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5fec.pdb.gz\n", "Downloading https://files.rcsb.org/download/5i9q.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5i9q.pdb.gz\n", "Downloading https://files.rcsb.org/download/5ies.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5ies.pdb.gz\n", "Downloading https://files.rcsb.org/download/5if0.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5if0.pdb.gz\n", "Downloading https://files.rcsb.org/download/5kzc.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5kzc.pdb.gz\n", "Downloading https://files.rcsb.org/download/5wb9.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/5wb9.pdb.gz\n", "Downloading https://files.rcsb.org/download/6d2p.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6d2p.pdb.gz\n", "Downloading https://files.rcsb.org/download/6p8m.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6p8m.pdb.gz\n", "Downloading https://files.rcsb.org/download/6xcj.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6xcj.pdb.gz\n", "Downloading https://files.rcsb.org/download/7jks.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7jks.pdb.gz\n", "Downloading https://files.rcsb.org/download/7jkt.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/7jkt.pdb.gz\n", "Downloading https://files.rcsb.org/download/4rx4.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4rx4.pdb.gz\n", "Downloading https://files.rcsb.org/download/6oz2.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/6oz2.pdb.gz\n", "Downloading https://files.rcsb.org/download/4nco.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/4nco.pdb.gz\n", "Downloading https://files.rcsb.org/download/1yyl.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1yyl.pdb.gz\n", "Downloading https://files.rcsb.org/download/1yym.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/1yym.pdb.gz\n", "Downloading https://files.rcsb.org/download/2i5y.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/2i5y.pdb.gz\n", "Downloading https://files.rcsb.org/download/2i60.pdb.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/2i60.pdb.gz\n" ] } ], "source": [ "!mkdir -p {DATA_DIR}/pdbs_from_rcsb\n", "!chmod +x batch_download.sh\n", "!sudo ./batch_download.sh -f {DATA_DIR}/list_files.txt -p -o {DATA_DIR}/pdbs_from_rcsb" ] }, { "cell_type": "code", "execution_count": 65, "id": "e59112cf", "metadata": {}, "outputs": [ { "data": { "text/plain": [ "11710" ] }, "execution_count": 65, "metadata": {}, "output_type": "execute_result" } ], "source": [ "downloaded_pdb_files = os.listdir(\n", " os.path.join(DATA_DIR, 'pdbs_from_rcsb')\n", ")\n", "downloaded_pdb_files = [x.split('.')[0] for x in downloaded_pdb_files]\n", "len(downloaded_pdb_files)" ] }, { "cell_type": "code", "execution_count": 66, "id": "451d9d08", "metadata": {}, "outputs": [ { "data": { "text/plain": [ "['6yw7',\n", " '7l0j',\n", " '4jm2',\n", " '3p73',\n", " '5u3p',\n", " '1afe',\n", " '1d3e',\n", " '6nzo',\n", " '4ucq',\n", " '1nyu']" ] }, "execution_count": 66, "metadata": {}, "output_type": "execute_result" } ], "source": [ "downloaded_pdb_files[:10]" ] }, { "cell_type": "code", "execution_count": 67, "id": "71c3c508", "metadata": {}, "outputs": [ { "data": { "text/plain": [ "1142" ] }, "execution_count": 67, "metadata": {}, "output_type": "execute_result" } ], "source": [ "missing_pdb_ids = set(interface_df['PdbID'].unique()) - set(downloaded_pdb_files)\n", "len(missing_pdb_ids)" ] }, { "cell_type": "code", "execution_count": 68, "id": "fd623a31", "metadata": {}, "outputs": [], "source": [ "# write list_files\n", "with open(os.path.join(DATA_DIR, 'list_files_missing.txt'), 'w') as out:\n", " out.write(','.join(list(missing_pdb_ids)))" ] }, { "cell_type": "code", "execution_count": null, "id": "b79c6370", "metadata": { "collapsed": true, "jupyter": { "outputs_hidden": true } }, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "Downloading https://files.rcsb.org/download/4v8o.cif.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/pdbs_from_rcsb/4v8o.cif.gz\n", "Downloading https://files.rcsb.org/download/5dgf.cif.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/pdbs_from_rcsb/5dgf.cif.gz\n", "Downloading https://files.rcsb.org/download/4v7t.cif.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/pdbs_from_rcsb/4v7t.cif.gz\n", "Downloading https://files.rcsb.org/download/4v79.cif.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/pdbs_from_rcsb/4v79.cif.gz\n", "Downloading https://files.rcsb.org/download/4v7o.cif.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/pdbs_from_rcsb/4v7o.cif.gz\n", "Downloading https://files.rcsb.org/download/6n8o.cif.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/pdbs_from_rcsb/6n8o.cif.gz\n", "Downloading https://files.rcsb.org/download/6q9a.cif.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/pdbs_from_rcsb/6q9a.cif.gz\n", "Downloading https://files.rcsb.org/download/7aoi.cif.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/pdbs_from_rcsb/7aoi.cif.gz\n", "Downloading https://files.rcsb.org/download/6uu8.cif.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/pdbs_from_rcsb/6uu8.cif.gz\n", "Downloading https://files.rcsb.org/download/5jup.cif.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/pdbs_from_rcsb/5jup.cif.gz\n", "Downloading https://files.rcsb.org/download/6qc5.cif.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/pdbs_from_rcsb/6qc5.cif.gz\n", "Downloading https://files.rcsb.org/download/4v8m.cif.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/pdbs_from_rcsb/4v8m.cif.gz\n", "Downloading https://files.rcsb.org/download/6gqb.cif.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/pdbs_from_rcsb/6gqb.cif.gz\n", "Downloading https://files.rcsb.org/download/6n2y.cif.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/pdbs_from_rcsb/6n2y.cif.gz\n", "Downloading https://files.rcsb.org/download/6gzz.cif.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/pdbs_from_rcsb/6gzz.cif.gz\n", "Downloading https://files.rcsb.org/download/6x7k.cif.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/pdbs_from_rcsb/6x7k.cif.gz\n", "Downloading https://files.rcsb.org/download/6tkz.cif.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/pdbs_from_rcsb/6tkz.cif.gz\n", "Downloading https://files.rcsb.org/download/6tb3.cif.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/pdbs_from_rcsb/6tb3.cif.gz\n", "Downloading https://files.rcsb.org/download/4z3s.cif.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/pdbs_from_rcsb/4z3s.cif.gz\n", "Downloading https://files.rcsb.org/download/4v63.cif.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/pdbs_from_rcsb/4v63.cif.gz\n", "Downloading https://files.rcsb.org/download/6vwm.cif.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/pdbs_from_rcsb/6vwm.cif.gz\n", "Downloading https://files.rcsb.org/download/4w2f.cif.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/pdbs_from_rcsb/4w2f.cif.gz\n", "Downloading https://files.rcsb.org/download/7ajd.cif.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/pdbs_from_rcsb/7ajd.cif.gz\n", "Downloading https://files.rcsb.org/download/4v5g.cif.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/pdbs_from_rcsb/4v5g.cif.gz\n", "Downloading https://files.rcsb.org/download/6pep.cif.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/pdbs_from_rcsb/6pep.cif.gz\n", "Downloading https://files.rcsb.org/download/4v4o.cif.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/pdbs_from_rcsb/4v4o.cif.gz\n", "Downloading https://files.rcsb.org/download/6olg.cif.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/pdbs_from_rcsb/6olg.cif.gz\n", "Downloading https://files.rcsb.org/download/5urw.cif.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/pdbs_from_rcsb/5urw.cif.gz\n", "Downloading https://files.rcsb.org/download/7jsw.cif.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/pdbs_from_rcsb/7jsw.cif.gz\n", "Downloading https://files.rcsb.org/download/5wf0.cif.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/pdbs_from_rcsb/5wf0.cif.gz\n", "Downloading https://files.rcsb.org/download/6d90.cif.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/pdbs_from_rcsb/6d90.cif.gz\n", "Downloading https://files.rcsb.org/download/6yws.cif.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/pdbs_from_rcsb/6yws.cif.gz\n", "Downloading https://files.rcsb.org/download/6y2l.cif.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/pdbs_from_rcsb/6y2l.cif.gz\n", "Downloading https://files.rcsb.org/download/5vfq.cif.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/pdbs_from_rcsb/5vfq.cif.gz\n", "Downloading https://files.rcsb.org/download/4v55.cif.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/pdbs_from_rcsb/4v55.cif.gz\n", "Downloading https://files.rcsb.org/download/6yx7.cif.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/pdbs_from_rcsb/6yx7.cif.gz\n", "Downloading https://files.rcsb.org/download/7bw6.cif.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/pdbs_from_rcsb/7bw6.cif.gz\n", "Downloading https://files.rcsb.org/download/7jt1.cif.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/pdbs_from_rcsb/7jt1.cif.gz\n", "Downloading https://files.rcsb.org/download/5lyb.cif.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/pdbs_from_rcsb/5lyb.cif.gz\n", "Downloading https://files.rcsb.org/download/7rf6.cif.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/pdbs_from_rcsb/7rf6.cif.gz\n", "Downloading https://files.rcsb.org/download/6wd8.cif.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/pdbs_from_rcsb/6wd8.cif.gz\n", "Downloading https://files.rcsb.org/download/4yuu.cif.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/pdbs_from_rcsb/4yuu.cif.gz\n", "Downloading https://files.rcsb.org/download/6bu8.cif.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/pdbs_from_rcsb/6bu8.cif.gz\n", "Downloading https://files.rcsb.org/download/7oj7.cif.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/pdbs_from_rcsb/7oj7.cif.gz\n", "Downloading https://files.rcsb.org/download/6spf.cif.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/pdbs_from_rcsb/6spf.cif.gz\n", "Downloading https://files.rcsb.org/download/6fec.cif.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/pdbs_from_rcsb/6fec.cif.gz\n", "Downloading https://files.rcsb.org/download/6wd1.cif.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/pdbs_from_rcsb/6wd1.cif.gz\n", "Downloading https://files.rcsb.org/download/6ope.cif.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/pdbs_from_rcsb/6ope.cif.gz\n", "Downloading https://files.rcsb.org/download/6qbx.cif.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/pdbs_from_rcsb/6qbx.cif.gz\n", "Downloading https://files.rcsb.org/download/6n8k.cif.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/pdbs_from_rcsb/6n8k.cif.gz\n", "Downloading https://files.rcsb.org/download/6ftg.cif.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/pdbs_from_rcsb/6ftg.cif.gz\n", "Downloading https://files.rcsb.org/download/6nc3.cif.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/pdbs_from_rcsb/6nc3.cif.gz\n", "Downloading https://files.rcsb.org/download/6n06.cif.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/pdbs_from_rcsb/6n06.cif.gz\n", "Downloading https://files.rcsb.org/download/5z57.cif.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/pdbs_from_rcsb/5z57.cif.gz\n", "Downloading https://files.rcsb.org/download/6bz8.cif.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/pdbs_from_rcsb/6bz8.cif.gz\n", "Downloading https://files.rcsb.org/download/4ujd.cif.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/pdbs_from_rcsb/4ujd.cif.gz\n", "Downloading https://files.rcsb.org/download/4wq1.cif.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/pdbs_from_rcsb/4wq1.cif.gz\n", "Downloading https://files.rcsb.org/download/6ogg.cif.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/pdbs_from_rcsb/6ogg.cif.gz\n", "Downloading https://files.rcsb.org/download/6fkr.cif.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/pdbs_from_rcsb/6fkr.cif.gz\n", "Downloading https://files.rcsb.org/download/7ahz.cif.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/pdbs_from_rcsb/7ahz.cif.gz\n", "Downloading https://files.rcsb.org/download/6n07.cif.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/pdbs_from_rcsb/6n07.cif.gz\n", "Downloading https://files.rcsb.org/download/6rxz.cif.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/pdbs_from_rcsb/6rxz.cif.gz\n", "Downloading https://files.rcsb.org/download/6qc6.cif.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/pdbs_from_rcsb/6qc6.cif.gz\n", "Downloading https://files.rcsb.org/download/6vz5.cif.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/pdbs_from_rcsb/6vz5.cif.gz\n", "Downloading https://files.rcsb.org/download/7rq8.cif.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/pdbs_from_rcsb/7rq8.cif.gz\n", "Downloading https://files.rcsb.org/download/5l4g.cif.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/pdbs_from_rcsb/5l4g.cif.gz\n", "Downloading https://files.rcsb.org/download/4v6i.cif.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/pdbs_from_rcsb/4v6i.cif.gz\n", "Downloading https://files.rcsb.org/download/6ydw.cif.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/pdbs_from_rcsb/6ydw.cif.gz\n", "Downloading https://files.rcsb.org/download/4tuc.cif.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/pdbs_from_rcsb/4tuc.cif.gz\n", "Downloading https://files.rcsb.org/download/7n1p.cif.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/pdbs_from_rcsb/7n1p.cif.gz\n", "Downloading https://files.rcsb.org/download/6m62.cif.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/pdbs_from_rcsb/6m62.cif.gz\n", "Downloading https://files.rcsb.org/download/5jus.cif.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/pdbs_from_rcsb/5jus.cif.gz\n", "Downloading https://files.rcsb.org/download/6xwk.cif.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/pdbs_from_rcsb/6xwk.cif.gz\n", "Downloading https://files.rcsb.org/download/6uz7.cif.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/pdbs_from_rcsb/6uz7.cif.gz\n", "Downloading https://files.rcsb.org/download/7ai1.cif.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/pdbs_from_rcsb/7ai1.cif.gz\n", "Downloading https://files.rcsb.org/download/6wd9.cif.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/pdbs_from_rcsb/6wd9.cif.gz\n", "Downloading https://files.rcsb.org/download/7ajh.cif.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/pdbs_from_rcsb/7ajh.cif.gz\n", "Downloading https://files.rcsb.org/download/4w29.cif.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/pdbs_from_rcsb/4w29.cif.gz\n", "Downloading https://files.rcsb.org/download/6rw5.cif.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/pdbs_from_rcsb/6rw5.cif.gz\n", "Downloading https://files.rcsb.org/download/4xej.cif.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/pdbs_from_rcsb/4xej.cif.gz\n", "Downloading https://files.rcsb.org/download/7nsj.cif.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/pdbs_from_rcsb/7nsj.cif.gz\n", "Downloading https://files.rcsb.org/download/6zm7.cif.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/pdbs_from_rcsb/6zm7.cif.gz\n", "Downloading https://files.rcsb.org/download/6xij.cif.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/pdbs_from_rcsb/6xij.cif.gz\n", "Downloading https://files.rcsb.org/download/4u3n.cif.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/pdbs_from_rcsb/4u3n.cif.gz\n", "Downloading https://files.rcsb.org/download/5hd1.cif.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/pdbs_from_rcsb/5hd1.cif.gz\n", "Downloading https://files.rcsb.org/download/6zp4.cif.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/pdbs_from_rcsb/6zp4.cif.gz\n", "Downloading https://files.rcsb.org/download/6qnr.cif.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/pdbs_from_rcsb/6qnr.cif.gz\n", "Downloading https://files.rcsb.org/download/5hcp.cif.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/pdbs_from_rcsb/5hcp.cif.gz\n", "Downloading https://files.rcsb.org/download/6yo0.cif.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/pdbs_from_rcsb/6yo0.cif.gz\n", "Downloading https://files.rcsb.org/download/4v9g.cif.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/pdbs_from_rcsb/4v9g.cif.gz\n", "Downloading https://files.rcsb.org/download/6fti.cif.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/pdbs_from_rcsb/6fti.cif.gz\n", "Downloading https://files.rcsb.org/download/6enu.cif.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/pdbs_from_rcsb/6enu.cif.gz\n", "Downloading https://files.rcsb.org/download/5w4k.cif.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/pdbs_from_rcsb/5w4k.cif.gz\n", "Downloading https://files.rcsb.org/download/3jcj.cif.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/pdbs_from_rcsb/3jcj.cif.gz\n", "Downloading https://files.rcsb.org/download/6woo.cif.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/pdbs_from_rcsb/6woo.cif.gz\n", "Downloading https://files.rcsb.org/download/4zsn.cif.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/pdbs_from_rcsb/4zsn.cif.gz\n", "Downloading https://files.rcsb.org/download/6o90.cif.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/pdbs_from_rcsb/6o90.cif.gz\n", "Downloading https://files.rcsb.org/download/4v90.cif.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/pdbs_from_rcsb/4v90.cif.gz\n", "Downloading https://files.rcsb.org/download/5hcq.cif.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/pdbs_from_rcsb/5hcq.cif.gz\n", "Downloading https://files.rcsb.org/download/6zm3.cif.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/pdbs_from_rcsb/6zm3.cif.gz\n", "Downloading https://files.rcsb.org/download/5el4.cif.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/pdbs_from_rcsb/5el4.cif.gz\n", "Downloading https://files.rcsb.org/download/6n0f.cif.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/pdbs_from_rcsb/6n0f.cif.gz\n", "Downloading https://files.rcsb.org/download/6vzj.cif.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/pdbs_from_rcsb/6vzj.cif.gz\n", "Downloading https://files.rcsb.org/download/3j7q.cif.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/pdbs_from_rcsb/3j7q.cif.gz\n", "Downloading https://files.rcsb.org/download/4lnt.cif.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/pdbs_from_rcsb/4lnt.cif.gz\n", "Downloading https://files.rcsb.org/download/4p70.cif.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/pdbs_from_rcsb/4p70.cif.gz\n", "Downloading https://files.rcsb.org/download/5j3c.cif.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/pdbs_from_rcsb/5j3c.cif.gz\n", "Downloading https://files.rcsb.org/download/4u4r.cif.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/pdbs_from_rcsb/4u4r.cif.gz\n", "Downloading https://files.rcsb.org/download/4v4g.cif.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/pdbs_from_rcsb/4v4g.cif.gz\n", "Downloading https://files.rcsb.org/download/4v5m.cif.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/pdbs_from_rcsb/4v5m.cif.gz\n", "Downloading https://files.rcsb.org/download/4v74.cif.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/pdbs_from_rcsb/4v74.cif.gz\n", "Downloading https://files.rcsb.org/download/6v6s.cif.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/pdbs_from_rcsb/6v6s.cif.gz\n", "Downloading https://files.rcsb.org/download/6wdf.cif.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/pdbs_from_rcsb/6wdf.cif.gz\n", "Downloading https://files.rcsb.org/download/6j3y.cif.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/pdbs_from_rcsb/6j3y.cif.gz\n", "Downloading https://files.rcsb.org/download/6t83.cif.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/pdbs_from_rcsb/6t83.cif.gz\n", "Downloading https://files.rcsb.org/download/4v3p.cif.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/pdbs_from_rcsb/4v3p.cif.gz\n", "Downloading https://files.rcsb.org/download/6n1d.cif.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/pdbs_from_rcsb/6n1d.cif.gz\n", "Downloading https://files.rcsb.org/download/7np7.cif.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/pdbs_from_rcsb/7np7.cif.gz\n", "Downloading https://files.rcsb.org/download/6i9r.cif.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/pdbs_from_rcsb/6i9r.cif.gz\n", "Downloading https://files.rcsb.org/download/6ywy.cif.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/pdbs_from_rcsb/6ywy.cif.gz\n", "Downloading https://files.rcsb.org/download/5njt.cif.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/pdbs_from_rcsb/5njt.cif.gz\n", "Downloading https://files.rcsb.org/download/6vyw.cif.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/pdbs_from_rcsb/6vyw.cif.gz\n", "Downloading https://files.rcsb.org/download/1vy7.cif.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/pdbs_from_rcsb/1vy7.cif.gz\n", "Downloading https://files.rcsb.org/download/6gz5.cif.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/pdbs_from_rcsb/6gz5.cif.gz\n", "Downloading https://files.rcsb.org/download/6ogi.cif.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/pdbs_from_rcsb/6ogi.cif.gz\n", "Downloading https://files.rcsb.org/download/5jc9.cif.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/pdbs_from_rcsb/5jc9.cif.gz\n", "Downloading https://files.rcsb.org/download/4v5k.cif.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/pdbs_from_rcsb/4v5k.cif.gz\n", "Downloading https://files.rcsb.org/download/5nd8.cif.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/pdbs_from_rcsb/5nd8.cif.gz\n", "Downloading https://files.rcsb.org/download/6xiq.cif.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/pdbs_from_rcsb/6xiq.cif.gz\n", "Downloading https://files.rcsb.org/download/7jqm.cif.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/pdbs_from_rcsb/7jqm.cif.gz\n", "Downloading https://files.rcsb.org/download/5mdy.cif.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/pdbs_from_rcsb/5mdy.cif.gz\n", "Downloading https://files.rcsb.org/download/6zsg.cif.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/pdbs_from_rcsb/6zsg.cif.gz\n", "Downloading https://files.rcsb.org/download/6uuc.cif.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/pdbs_from_rcsb/6uuc.cif.gz\n", "Downloading https://files.rcsb.org/download/5vfs.cif.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/pdbs_from_rcsb/5vfs.cif.gz\n", "Downloading https://files.rcsb.org/download/5t5h.cif.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/pdbs_from_rcsb/5t5h.cif.gz\n", "Downloading https://files.rcsb.org/download/6msj.cif.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/pdbs_from_rcsb/6msj.cif.gz\n", "Downloading https://files.rcsb.org/download/4v5j.cif.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/pdbs_from_rcsb/4v5j.cif.gz\n", "Downloading https://files.rcsb.org/download/6tcl.cif.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/pdbs_from_rcsb/6tcl.cif.gz\n", "Downloading https://files.rcsb.org/download/6j2c.cif.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/pdbs_from_rcsb/6j2c.cif.gz\n", "Downloading https://files.rcsb.org/download/6t59.cif.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/pdbs_from_rcsb/6t59.cif.gz\n", "Downloading https://files.rcsb.org/download/6b4v.cif.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/pdbs_from_rcsb/6b4v.cif.gz\n", "Downloading https://files.rcsb.org/download/5h5u.cif.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/pdbs_from_rcsb/5h5u.cif.gz\n", "Downloading https://files.rcsb.org/download/6mte.cif.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/pdbs_from_rcsb/6mte.cif.gz\n", "Downloading https://files.rcsb.org/download/4yzv.cif.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/pdbs_from_rcsb/4yzv.cif.gz\n", "Downloading https://files.rcsb.org/download/6xhv.cif.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/pdbs_from_rcsb/6xhv.cif.gz\n", "Downloading https://files.rcsb.org/download/6t7i.cif.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/pdbs_from_rcsb/6t7i.cif.gz\n", "Downloading https://files.rcsb.org/download/5fl8.cif.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/pdbs_from_rcsb/5fl8.cif.gz\n", "Downloading https://files.rcsb.org/download/4u3u.cif.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/pdbs_from_rcsb/4u3u.cif.gz\n", "Downloading https://files.rcsb.org/download/6q15.cif.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/pdbs_from_rcsb/6q15.cif.gz\n", "Downloading https://files.rcsb.org/download/3j92.cif.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/pdbs_from_rcsb/3j92.cif.gz\n", "Downloading https://files.rcsb.org/download/6bok.cif.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/pdbs_from_rcsb/6bok.cif.gz\n", "Downloading https://files.rcsb.org/download/7rf4.cif.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/pdbs_from_rcsb/7rf4.cif.gz\n", "Downloading https://files.rcsb.org/download/5mpc.cif.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/pdbs_from_rcsb/5mpc.cif.gz\n", "Downloading https://files.rcsb.org/download/7ckb.cif.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/pdbs_from_rcsb/7ckb.cif.gz\n", "Downloading https://files.rcsb.org/download/6zm5.cif.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/pdbs_from_rcsb/6zm5.cif.gz\n", "Downloading https://files.rcsb.org/download/6j3z.cif.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/pdbs_from_rcsb/6j3z.cif.gz\n", "Downloading https://files.rcsb.org/download/6t9d.cif.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/pdbs_from_rcsb/6t9d.cif.gz\n", "Downloading https://files.rcsb.org/download/6ost.cif.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/pdbs_from_rcsb/6ost.cif.gz\n", "Downloading https://files.rcsb.org/download/4v97.cif.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/pdbs_from_rcsb/4v97.cif.gz\n", "Downloading https://files.rcsb.org/download/7a5g.cif.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/pdbs_from_rcsb/7a5g.cif.gz\n", "Downloading https://files.rcsb.org/download/6frk.cif.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/pdbs_from_rcsb/6frk.cif.gz\n", "Downloading https://files.rcsb.org/download/5xti.cif.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/pdbs_from_rcsb/5xti.cif.gz\n", "Downloading https://files.rcsb.org/download/5kps.cif.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/pdbs_from_rcsb/5kps.cif.gz\n", "Downloading https://files.rcsb.org/download/6n2d.cif.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/pdbs_from_rcsb/6n2d.cif.gz\n", "Downloading https://files.rcsb.org/download/6oxa.cif.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/pdbs_from_rcsb/6oxa.cif.gz\n", "Downloading https://files.rcsb.org/download/7jql.cif.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/pdbs_from_rcsb/7jql.cif.gz\n", "Downloading https://files.rcsb.org/download/5aco.cif.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/pdbs_from_rcsb/5aco.cif.gz\n", "Downloading https://files.rcsb.org/download/6osy.cif.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/pdbs_from_rcsb/6osy.cif.gz\n", "Downloading https://files.rcsb.org/download/6xu7.cif.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/pdbs_from_rcsb/6xu7.cif.gz\n", "Downloading https://files.rcsb.org/download/6vwl.cif.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/pdbs_from_rcsb/6vwl.cif.gz\n", "Downloading https://files.rcsb.org/download/4w2g.cif.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/pdbs_from_rcsb/4w2g.cif.gz\n", "Downloading https://files.rcsb.org/download/6jeo.cif.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/pdbs_from_rcsb/6jeo.cif.gz\n", "Downloading https://files.rcsb.org/download/7k00.cif.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/pdbs_from_rcsb/7k00.cif.gz\n", "Downloading https://files.rcsb.org/download/4tvx.cif.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/pdbs_from_rcsb/4tvx.cif.gz\n", "Downloading https://files.rcsb.org/download/6qx9.cif.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/pdbs_from_rcsb/6qx9.cif.gz\n", "Downloading https://files.rcsb.org/download/7n30.cif.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/pdbs_from_rcsb/7n30.cif.gz\n", "Downloading https://files.rcsb.org/download/6n30.cif.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/pdbs_from_rcsb/6n30.cif.gz\n", "Downloading https://files.rcsb.org/download/6zqg.cif.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/pdbs_from_rcsb/6zqg.cif.gz\n", "Downloading https://files.rcsb.org/download/4v70.cif.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/pdbs_from_rcsb/4v70.cif.gz\n", "Downloading https://files.rcsb.org/download/6z1p.cif.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/pdbs_from_rcsb/6z1p.cif.gz\n", "Downloading https://files.rcsb.org/download/6rxv.cif.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/pdbs_from_rcsb/6rxv.cif.gz\n", "Downloading https://files.rcsb.org/download/4v8p.cif.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/pdbs_from_rcsb/4v8p.cif.gz\n", "Downloading https://files.rcsb.org/download/5nco.cif.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/pdbs_from_rcsb/5nco.cif.gz\n", "Downloading https://files.rcsb.org/download/6utv.cif.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/pdbs_from_rcsb/6utv.cif.gz\n", "Downloading https://files.rcsb.org/download/4wqy.cif.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/pdbs_from_rcsb/4wqy.cif.gz\n", "Downloading https://files.rcsb.org/download/4v5o.cif.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/pdbs_from_rcsb/4v5o.cif.gz\n", "Downloading https://files.rcsb.org/download/6ftj.cif.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/pdbs_from_rcsb/6ftj.cif.gz\n", "Downloading https://files.rcsb.org/download/6w2s.cif.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/pdbs_from_rcsb/6w2s.cif.gz\n", "Downloading https://files.rcsb.org/download/7pjs.cif.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/pdbs_from_rcsb/7pjs.cif.gz\n", "Downloading https://files.rcsb.org/download/6vyx.cif.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/pdbs_from_rcsb/6vyx.cif.gz\n", "Downloading https://files.rcsb.org/download/7aji.cif.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/pdbs_from_rcsb/7aji.cif.gz\n", "Downloading https://files.rcsb.org/download/6wdj.cif.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/pdbs_from_rcsb/6wdj.cif.gz\n", "Downloading https://files.rcsb.org/download/6mpg.cif.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/pdbs_from_rcsb/6mpg.cif.gz\n", "Downloading https://files.rcsb.org/download/7ah9.cif.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/pdbs_from_rcsb/7ah9.cif.gz\n", "Downloading https://files.rcsb.org/download/3j9z.cif.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/pdbs_from_rcsb/3j9z.cif.gz\n", "Downloading https://files.rcsb.org/download/3j6y.cif.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/pdbs_from_rcsb/3j6y.cif.gz\n", "Downloading https://files.rcsb.org/download/7ajj.cif.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/pdbs_from_rcsb/7ajj.cif.gz\n", "Downloading https://files.rcsb.org/download/4wu1.cif.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/pdbs_from_rcsb/4wu1.cif.gz\n", "Downloading https://files.rcsb.org/download/7rq9.cif.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/pdbs_from_rcsb/7rq9.cif.gz\n", "Downloading https://files.rcsb.org/download/3jai.cif.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/pdbs_from_rcsb/3jai.cif.gz\n", "Downloading https://files.rcsb.org/download/4v61.cif.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/pdbs_from_rcsb/4v61.cif.gz\n", "Downloading https://files.rcsb.org/download/4v6d.cif.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/pdbs_from_rcsb/4v6d.cif.gz\n", "Downloading https://files.rcsb.org/download/6o8z.cif.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/pdbs_from_rcsb/6o8z.cif.gz\n", "Downloading https://files.rcsb.org/download/5xy3.cif.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/pdbs_from_rcsb/5xy3.cif.gz\n", "Downloading https://files.rcsb.org/download/6zqc.cif.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/pdbs_from_rcsb/6zqc.cif.gz\n", "Downloading https://files.rcsb.org/download/5ju8.cif.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/pdbs_from_rcsb/5ju8.cif.gz\n", "Downloading https://files.rcsb.org/download/6wd3.cif.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/pdbs_from_rcsb/6wd3.cif.gz\n", "Downloading https://files.rcsb.org/download/4bts.cif.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/pdbs_from_rcsb/4bts.cif.gz\n", "Downloading https://files.rcsb.org/download/5vfu.cif.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/pdbs_from_rcsb/5vfu.cif.gz\n", "Downloading https://files.rcsb.org/download/6nuo.cif.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/pdbs_from_rcsb/6nuo.cif.gz\n", "Downloading https://files.rcsb.org/download/7a01.cif.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/pdbs_from_rcsb/7a01.cif.gz\n", "Downloading https://files.rcsb.org/download/7a09.cif.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/pdbs_from_rcsb/7a09.cif.gz\n", "Downloading https://files.rcsb.org/download/6spg.cif.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/pdbs_from_rcsb/6spg.cif.gz\n", "Downloading https://files.rcsb.org/download/5zlu.cif.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/pdbs_from_rcsb/5zlu.cif.gz\n", "Downloading https://files.rcsb.org/download/6osq.cif.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/pdbs_from_rcsb/6osq.cif.gz\n", "Downloading https://files.rcsb.org/download/7nhk.cif.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/pdbs_from_rcsb/7nhk.cif.gz\n", "Downloading https://files.rcsb.org/download/5li0.cif.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/pdbs_from_rcsb/5li0.cif.gz\n", "Downloading https://files.rcsb.org/download/6wnw.cif.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/pdbs_from_rcsb/6wnw.cif.gz\n", "Downloading https://files.rcsb.org/download/4v8h.cif.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/pdbs_from_rcsb/4v8h.cif.gz\n", "Downloading https://files.rcsb.org/download/4v91.cif.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/pdbs_from_rcsb/4v91.cif.gz\n", "Downloading https://files.rcsb.org/download/6fvv.cif.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/pdbs_from_rcsb/6fvv.cif.gz\n", "Downloading https://files.rcsb.org/download/6qzd.cif.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/pdbs_from_rcsb/6qzd.cif.gz\n", "Downloading https://files.rcsb.org/download/7pjt.cif.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/pdbs_from_rcsb/7pjt.cif.gz\n", "Downloading https://files.rcsb.org/download/5vfp.cif.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/pdbs_from_rcsb/5vfp.cif.gz\n", "Downloading https://files.rcsb.org/download/5lzs.cif.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/pdbs_from_rcsb/5lzs.cif.gz\n", "Downloading https://files.rcsb.org/download/7rf1.cif.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/pdbs_from_rcsb/7rf1.cif.gz\n", "Downloading https://files.rcsb.org/download/4v7i.cif.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/pdbs_from_rcsb/4v7i.cif.gz\n", "Downloading https://files.rcsb.org/download/4wpo.cif.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/pdbs_from_rcsb/4wpo.cif.gz\n", "Downloading https://files.rcsb.org/download/4v7d.cif.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/pdbs_from_rcsb/4v7d.cif.gz\n", "Downloading https://files.rcsb.org/download/4v7b.cif.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/pdbs_from_rcsb/4v7b.cif.gz\n", "Downloading https://files.rcsb.org/download/6nu3.cif.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/pdbs_from_rcsb/6nu3.cif.gz\n", "Downloading https://files.rcsb.org/download/5lzb.cif.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/pdbs_from_rcsb/5lzb.cif.gz\n", "Downloading https://files.rcsb.org/download/6ot1.cif.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/pdbs_from_rcsb/6ot1.cif.gz\n", "Downloading https://files.rcsb.org/download/4v67.cif.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/pdbs_from_rcsb/4v67.cif.gz\n", "Downloading https://files.rcsb.org/download/4v8i.cif.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/pdbs_from_rcsb/4v8i.cif.gz\n", "Downloading https://files.rcsb.org/download/1vy6.cif.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/pdbs_from_rcsb/1vy6.cif.gz\n", "Downloading https://files.rcsb.org/download/4v85.cif.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/pdbs_from_rcsb/4v85.cif.gz\n", "Downloading https://files.rcsb.org/download/6dhg.cif.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/pdbs_from_rcsb/6dhg.cif.gz\n", "Downloading https://files.rcsb.org/download/4v4i.cif.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/pdbs_from_rcsb/4v4i.cif.gz\n", "Downloading https://files.rcsb.org/download/6s12.cif.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/pdbs_from_rcsb/6s12.cif.gz\n", "Downloading https://files.rcsb.org/download/6nu2.cif.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/pdbs_from_rcsb/6nu2.cif.gz\n", "Downloading https://files.rcsb.org/download/5mrf.cif.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/pdbs_from_rcsb/5mrf.cif.gz\n", "Downloading https://files.rcsb.org/download/5mmm.cif.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/pdbs_from_rcsb/5mmm.cif.gz\n", "Downloading https://files.rcsb.org/download/6zmi.cif.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/pdbs_from_rcsb/6zmi.cif.gz\n", "Downloading https://files.rcsb.org/download/5oql.cif.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/pdbs_from_rcsb/5oql.cif.gz\n", "Downloading https://files.rcsb.org/download/6wdh.cif.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/pdbs_from_rcsb/6wdh.cif.gz\n", "Downloading https://files.rcsb.org/download/5u9g.cif.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/pdbs_from_rcsb/5u9g.cif.gz\n", "Downloading https://files.rcsb.org/download/4u4u.cif.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/pdbs_from_rcsb/4u4u.cif.gz\n", "Downloading https://files.rcsb.org/download/5lzw.cif.gz to /home/ec2-user/SageMaker/efs/data/ProtCID/pdbs_from_rcsb/5lzw.cif.gz\n" ] } ], "source": [ "!./batch_download.sh -f {DATA_DIR}/list_files_missing.txt -c -o {DATA_DIR}/pdbs_from_rcsb" ] }, { "cell_type": "markdown", "id": "7988ebb2", "metadata": {}, "source": [ "## Download FASTA from RCSB\n", "\n", "from https://ftp.wwpdb.org/pub/pdb/derived_data/pdb_seqres.txt.gz" ] }, { "cell_type": "code", "execution_count": 85, "id": "a9067405", "metadata": {}, "outputs": [ { "data": { "text/plain": [ "731589" ] }, "execution_count": 85, "metadata": {}, "output_type": "execute_result" } ], "source": [ "from Bio import SeqIO\n", "d_fasta = SeqIO.to_dict(\n", " SeqIO.parse(gunzip_to_ram(os.path.join(DATA_DIR, \"pdb_seqres.txt.gz\")), \n", " \"fasta\")\n", ")\n", "len(d_fasta)" ] }, { "cell_type": "code", "execution_count": 87, "id": "ead2c6a6", "metadata": {}, "outputs": [ { "data": { "text/plain": [ "[('100d_A',\n", " SeqRecord(seq=Seq('CCGGCGCCGG'), id='100d_A', name='100d_A', description=\"100d_A mol:na length:10 DNA/RNA (5'-R(*CP*)-D(*CP*GP*GP*CP*GP*CP*CP*GP*)-R(*G)-3')\", dbxrefs=[])),\n", " ('100d_B',\n", " SeqRecord(seq=Seq('CCGGCGCCGG'), id='100d_B', name='100d_B', description=\"100d_B mol:na length:10 DNA/RNA (5'-R(*CP*)-D(*CP*GP*GP*CP*GP*CP*CP*GP*)-R(*G)-3')\", dbxrefs=[])),\n", " ('101d_A',\n", " SeqRecord(seq=Seq('CGCGAATTCGCG'), id='101d_A', name='101d_A', description=\"101d_A mol:na length:12 DNA (5'-D(*CP*GP*CP*GP*AP*AP*TP*TP*(CBR)P*GP*CP*G)-3')\", dbxrefs=[])),\n", " ('101d_B',\n", " SeqRecord(seq=Seq('CGCGAATTCGCG'), id='101d_B', name='101d_B', description=\"101d_B mol:na length:12 DNA (5'-D(*CP*GP*CP*GP*AP*AP*TP*TP*(CBR)P*GP*CP*G)-3')\", dbxrefs=[])),\n", " ('101m_A',\n", " SeqRecord(seq=Seq('MVLSEGEWQLVLHVWAKVEADVAGHGQDILIRLFKSHPETLEKFDRVKHLKTEA...YQG'), id='101m_A', name='101m_A', description='101m_A mol:protein length:154 MYOGLOBIN', dbxrefs=[])),\n", " ('102d_A',\n", " SeqRecord(seq=Seq('CGCAAATTTGCG'), id='102d_A', name='102d_A', description=\"102d_A mol:na length:12 DNA (5'-D(*CP*GP*CP*AP*AP*AP*TP*TP*TP*GP*CP*G)-3')\", dbxrefs=[])),\n", " ('102d_B',\n", " SeqRecord(seq=Seq('CGCAAATTTGCG'), id='102d_B', name='102d_B', description=\"102d_B mol:na length:12 DNA (5'-D(*CP*GP*CP*AP*AP*AP*TP*TP*TP*GP*CP*G)-3')\", dbxrefs=[])),\n", " ('102l_A',\n", " SeqRecord(seq=Seq('MNIFEMLRIDEGLRLKIYKDTEGYYTIGIGHLLTKSPSLNAAAKSELDKAIGRN...KNL'), id='102l_A', name='102l_A', description='102l_A mol:protein length:165 T4 LYSOZYME', dbxrefs=[])),\n", " ('102m_A',\n", " SeqRecord(seq=Seq('MVLSEGEWQLVLHVWAKVEADVAGHGQDILIRLFKSHPETLEKFDRFKHLKTEA...YQG'), id='102m_A', name='102m_A', description='102m_A mol:protein length:154 MYOGLOBIN', dbxrefs=[])),\n", " ('103d_A',\n", " SeqRecord(seq=Seq('GTGGAATGGAAC'), id='103d_A', name='103d_A', description=\"103d_A mol:na length:12 DNA (5'-D(*GP*TP*GP*GP*AP*AP*TP*GP*GP*AP*AP*C)-3')\", dbxrefs=[]))]" ] }, "execution_count": 87, "metadata": {}, "output_type": "execute_result" } ], "source": [ "list(d_fasta.items())[:10]" ] }, { "cell_type": "code", "execution_count": 88, "id": "b113278c", "metadata": {}, "outputs": [ { "data": { "text/plain": [ "12852" ] }, "execution_count": 88, "metadata": {}, "output_type": "execute_result" } ], "source": [ "pdb_ids_in_protcid = set(interface_df['PdbID'].unique())\n", "len(pdb_ids_in_protcid)" ] }, { "cell_type": "code", "execution_count": 92, "id": "cfbce744", "metadata": {}, "outputs": [ { "data": { "text/plain": [ "ChainGroupID 17\n", "ClusterID 1\n", "PdbID 1a1m\n", "InterfaceID 1\n", "UnpCode B2MG_HUMAN;HLAB_HUMAN\n", "SurfaceArea 1247.9\n", "InAsu 1\n", "InPdb 1\n", "InPisa 1\n", "ASU ABC\n", "PDBBA ABC\n", "PdbBaID 1\n", "PISABA ABC\n", "PisaBaID 1\n", "Resolution 2.3\n", "Method X-RAY DIFFRACTION\n", "RfactorWork 0.205\n", "RfactorFree 0.0\n", "AsymChain1 B\n", "AuthChain1 B\n", "EntityID1 2\n", "SymmetryString1 1_555\n", "AsymChain2 A\n", "AuthChain2 A\n", "EntityID2 1\n", "SymmetryString2 1_555\n", "ChainPfamArch1 (C1-set)\n", "ChainPfamArch2 (MHC_I)_(C1-set)\n", "Name: 0, dtype: object" ] }, "execution_count": 92, "metadata": {}, "output_type": "execute_result" } ], "source": [ "interface_df.iloc[0]" ] }, { "cell_type": "code", "execution_count": 118, "id": "da6ba323", "metadata": {}, "outputs": [ { "data": { "text/plain": [ "4163" ] }, "execution_count": 118, "metadata": {}, "output_type": "execute_result" } ], "source": [ "# get obsolete PDB ids\n", "import urllib\n", "import urllib.request\n", "\n", "obs_dict = {}\n", "\n", "response = urllib.request.urlopen('ftp://ftp.wwpdb.org/pub/pdb/data/status/obsolete.dat')\n", "for line in response:\n", " line = line.decode('utf-8')\n", " entry = line.split()\n", " if len(entry) == 4:\n", " obs_dict[entry[2].lower()] = entry[3].lower()\n", " \n", "len(obs_dict)" ] }, { "cell_type": "code", "execution_count": 119, "id": "ad9a7474", "metadata": {}, "outputs": [ { "data": { "text/plain": [ "[('116l', '216l'),\n", " ('125d', '1aw6'),\n", " ('14ps', '1qjb'),\n", " ('151c', '251c'),\n", " ('156b', '256b')]" ] }, "execution_count": 119, "metadata": {}, "output_type": "execute_result" } ], "source": [ "list(obs_dict.items())[:5]" ] }, { "cell_type": "code", "execution_count": 120, "id": "bd49d42d", "metadata": {}, "outputs": [ { "data": { "text/plain": [ "'IQRTPKIQVYSRHPAENGKSNFLNCYVSGFHPSDIEVDLLKNGERIEKVEHSDLSFSKDWSFYLLYYTEFTPTEKDEYACRVNHVTLSQPKIVKWDRDM'" ] }, "execution_count": 120, "metadata": {}, "output_type": "execute_result" } ], "source": [ "row = interface_df.iloc[0]\n", "pdb_chain_id = row['PdbID'] + '_' + row['AuthChain1']\n", "str(d_fasta[pdb_chain_id].seq)" ] }, { "cell_type": "code", "execution_count": 121, "id": "02c5ead6", "metadata": {}, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "number of chains: 95830\n", "number of unique sequences 15779\n" ] } ], "source": [ "# subset the fasta to chains in ProtCID\n", "unmapped_pdb_chain_ids = []\n", "d_fasta_protcid = {}\n", "for _, row in interface_df.iterrows():\n", " pdb_id = obs_dict.get(row['PdbID'], row['PdbID'])\n", " \n", " if pd.isnull(row['AuthChain1']) or pd.isnull(row['AuthChain2']):\n", " continue\n", " pdb_chain_id1 = pdb_id + '_' + row['AuthChain1']\n", " pdb_chain_id2 = pdb_id + '_' + row['AuthChain2']\n", " \n", " try:\n", " d_fasta_protcid[pdb_chain_id1] = str(d_fasta[pdb_chain_id1].seq)\n", " d_fasta_protcid[pdb_chain_id2] = str(d_fasta[pdb_chain_id2].seq)\n", " except KeyError:\n", " unmapped_pdb_chain_ids.append(pdb_chain_id1)\n", " unmapped_pdb_chain_ids.append(pdb_chain_id2)\n", " \n", "print('number of chains:', len(d_fasta_protcid))\n", "print('number of unique sequences', len(set(d_fasta_protcid.values())))" ] }, { "cell_type": "code", "execution_count": 122, "id": "cea3db81", "metadata": {}, "outputs": [ { "data": { "text/plain": [ "42" ] }, "execution_count": 122, "metadata": {}, "output_type": "execute_result" } ], "source": [ "len(unmapped_pdb_chain_ids)" ] }, { "cell_type": "code", "execution_count": 123, "id": "e18683fa", "metadata": {}, "outputs": [], "source": [ "# write a fasta file for all PDBBind protein sequences\n", "with open(os.path.join(DATA_DIR, 'ProtCID_proteins.fasta'), 'w') as out:\n", " for pdb_chain_id, seq in d_fasta_protcid.items():\n", " out.write('>' + pdb_chain_id + '\\n')\n", " out.write(seq + '\\n')" ] }, { "cell_type": "code", "execution_count": 108, "id": "a9b30f17", "metadata": {}, "outputs": [], "source": [ "# d_fasta['6nuy_1']" ] }, { "cell_type": "markdown", "id": "c9db3506", "metadata": {}, "source": [ "## Parse protein sequences from PDB files" ] }, { "cell_type": "code", "execution_count": 77, "id": "07790000", "metadata": {}, "outputs": [], "source": [ "from ppi.data_utils import gunzip_to_ram, three_to_one_standard" ] }, { "cell_type": "code", "execution_count": 82, "id": "35728103", "metadata": {}, "outputs": [], "source": [ "from Bio.PDB import MMCIFParser, PDBParser\n", "from Bio.PDB.Polypeptide import three_to_one, is_aa\n", "\n", "def get_pdb_structure(data_dir, pdb_id):\n", " # parse a protein structure from a PDB file\n", " pdb_parser = PDBParser(\n", " QUIET=True,\n", " PERMISSIVE=True,\n", " )\n", " pdb_file = os.path.join(data_dir, f'{pdb_id}.pdb.gz')\n", " structure = pdb_parser.get_structure(pdb_id, gunzip_to_ram(pdb_file))\n", " return structure\n", "\n", "def get_cif_structure(data_dir, pdb_id):\n", " # parse a protein structure from a CIF file\n", " cif_parser = MMCIFParser(\n", " QUIET=True,\n", " )\n", " cif_file = os.path.join(data_dir, f'{pdb_id}.cif.gz')\n", " structure = cif_parser.get_structure(pdb_id, gunzip_to_ram(cif_file))\n", " return structure \n", "\n", "def get_chain_sequences(structure):\n", " result = {}\n", " ligands = []\n", " for chain in structure.get_chains():\n", " seq = \"\".join(\n", " [\n", " three_to_one_standard(res.get_resname())\n", " for res in chain.get_residues()\n", " if is_aa(res)\n", " ]\n", " )\n", " for res in chain.get_residues():\n", " if not is_aa(res) and res.id[0] != 'W':\n", " ligands.append(res.get_resname())\n", " result[chain.id] = seq\n", " return result, ligands" ] }, { "cell_type": "code", "execution_count": 83, "id": "13571b5e", "metadata": {}, "outputs": [ { "name": "stderr", "output_type": "stream", "text": [ " 18%|█▊ | 2321/12852 [1:25:11<6:26:32, 2.20s/it] \n" ] }, { "ename": "PDBConstructionException", "evalue": "Blank altlocs in duplicate residue ILE (' ', 105, ' ')", "output_type": "error", "traceback": [ "\u001b[0;31m---------------------------------------------------------------------------\u001b[0m", "\u001b[0;31mPDBConstructionException\u001b[0m Traceback (most recent call last)", "\u001b[0;32m/tmp/ipykernel_24342/2663522074.py\u001b[0m in \u001b[0;36m\u001b[0;34m()\u001b[0m\n\u001b[1;32m 9\u001b[0m \u001b[0mstructure\u001b[0m \u001b[0;34m=\u001b[0m \u001b[0mget_pdb_structure\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0mpdb_dir\u001b[0m\u001b[0;34m,\u001b[0m \u001b[0mpdb_id\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[1;32m 10\u001b[0m \u001b[0;32melse\u001b[0m\u001b[0;34m:\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0;32m---> 11\u001b[0;31m \u001b[0mstructure\u001b[0m \u001b[0;34m=\u001b[0m \u001b[0mget_cif_structure\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0mpdb_dir\u001b[0m\u001b[0;34m,\u001b[0m \u001b[0mpdb_id\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0m\u001b[1;32m 12\u001b[0m \u001b[0;34m\u001b[0m\u001b[0m\n\u001b[1;32m 13\u001b[0m \u001b[0mseqs\u001b[0m\u001b[0;34m,\u001b[0m \u001b[0mligands\u001b[0m \u001b[0;34m=\u001b[0m \u001b[0mget_chain_sequences\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0mstructure\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n", "\u001b[0;32m/tmp/ipykernel_24342/3799964370.py\u001b[0m in \u001b[0;36mget_cif_structure\u001b[0;34m(data_dir, pdb_id)\u001b[0m\n\u001b[1;32m 18\u001b[0m )\n\u001b[1;32m 19\u001b[0m \u001b[0mcif_file\u001b[0m \u001b[0;34m=\u001b[0m \u001b[0mos\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0mpath\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0mjoin\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0mdata_dir\u001b[0m\u001b[0;34m,\u001b[0m \u001b[0;34mf'{pdb_id}.cif.gz'\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0;32m---> 20\u001b[0;31m \u001b[0mstructure\u001b[0m \u001b[0;34m=\u001b[0m \u001b[0mcif_parser\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0mget_structure\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0mpdb_id\u001b[0m\u001b[0;34m,\u001b[0m \u001b[0mgunzip_to_ram\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0mcif_file\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0m\u001b[1;32m 21\u001b[0m \u001b[0;32mreturn\u001b[0m \u001b[0mstructure\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[1;32m 22\u001b[0m \u001b[0;34m\u001b[0m\u001b[0m\n", "\u001b[0;32m~/anaconda3/envs/pytorch_p38/lib/python3.8/site-packages/Bio/PDB/MMCIFParser.py\u001b[0m in \u001b[0;36mget_structure\u001b[0;34m(self, structure_id, filename)\u001b[0m\n\u001b[1;32m 60\u001b[0m \u001b[0mwarnings\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0mfilterwarnings\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0;34m\"ignore\"\u001b[0m\u001b[0;34m,\u001b[0m \u001b[0mcategory\u001b[0m\u001b[0;34m=\u001b[0m\u001b[0mPDBConstructionWarning\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[1;32m 61\u001b[0m \u001b[0mself\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0m_mmcif_dict\u001b[0m \u001b[0;34m=\u001b[0m \u001b[0mMMCIF2Dict\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0mfilename\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0;32m---> 62\u001b[0;31m \u001b[0mself\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0m_build_structure\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0mstructure_id\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0m\u001b[1;32m 63\u001b[0m \u001b[0mself\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0m_structure_builder\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0mset_header\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0mself\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0m_get_header\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[1;32m 64\u001b[0m \u001b[0;34m\u001b[0m\u001b[0m\n", "\u001b[0;32m~/anaconda3/envs/pytorch_p38/lib/python3.8/site-packages/Bio/PDB/MMCIFParser.py\u001b[0m in \u001b[0;36m_build_structure\u001b[0;34m(self, structure_id)\u001b[0m\n\u001b[1;32m 259\u001b[0m \u001b[0mcurrent_residue_id\u001b[0m \u001b[0;34m=\u001b[0m \u001b[0mresseq\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[1;32m 260\u001b[0m \u001b[0mcurrent_resname\u001b[0m \u001b[0;34m=\u001b[0m \u001b[0mresname\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0;32m--> 261\u001b[0;31m \u001b[0mstructure_builder\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0minit_residue\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0mresname\u001b[0m\u001b[0;34m,\u001b[0m \u001b[0mhetatm_flag\u001b[0m\u001b[0;34m,\u001b[0m \u001b[0mint_resseq\u001b[0m\u001b[0;34m,\u001b[0m \u001b[0micode\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0m\u001b[1;32m 262\u001b[0m \u001b[0;34m\u001b[0m\u001b[0m\n\u001b[1;32m 263\u001b[0m \u001b[0mcoord\u001b[0m \u001b[0;34m=\u001b[0m \u001b[0mnumpy\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0marray\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0mx\u001b[0m\u001b[0;34m,\u001b[0m \u001b[0my\u001b[0m\u001b[0;34m,\u001b[0m \u001b[0mz\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m,\u001b[0m \u001b[0;34m\"f\"\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n", "\u001b[0;32m~/anaconda3/envs/pytorch_p38/lib/python3.8/site-packages/Bio/PDB/StructureBuilder.py\u001b[0m in \u001b[0;36minit_residue\u001b[0;34m(self, resname, field, resseq, icode)\u001b[0m\n\u001b[1;32m 162\u001b[0m \u001b[0;31m# if this exception is ignored, a residue will be missing\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[1;32m 163\u001b[0m \u001b[0mself\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0mresidue\u001b[0m \u001b[0;34m=\u001b[0m \u001b[0;32mNone\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0;32m--> 164\u001b[0;31m raise PDBConstructionException(\n\u001b[0m\u001b[1;32m 165\u001b[0m \u001b[0;34m\"Blank altlocs in duplicate residue %s ('%s', %i, '%s')\"\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[1;32m 166\u001b[0m \u001b[0;34m%\u001b[0m \u001b[0;34m(\u001b[0m\u001b[0mresname\u001b[0m\u001b[0;34m,\u001b[0m \u001b[0mfield\u001b[0m\u001b[0;34m,\u001b[0m \u001b[0mresseq\u001b[0m\u001b[0;34m,\u001b[0m \u001b[0micode\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n", "\u001b[0;31mPDBConstructionException\u001b[0m: Blank altlocs in duplicate residue ILE (' ', 105, ' ')" ] } ], "source": [ "from tqdm import tqdm\n", "all_seqs = []\n", "all_ligands = []\n", "\n", "pdb_dir = os.path.join(DATA_DIR, 'pdbs_from_rcsb')\n", "\n", "for pdb_id in tqdm(interface_df['PdbID'].unique()):\n", " if os.path.isfile(os.path.join(pdb_dir, f'{pdb_id}.pdb.gz')):\n", " structure = get_pdb_structure(pdb_dir, pdb_id)\n", " else:\n", " structure = get_cif_structure(pdb_dir, pdb_id)\n", " \n", " seqs, ligands = get_chain_sequences(structure)\n", " all_seqs.append(seqs)\n", " all_ligands.append(ligands)" ] }, { "cell_type": "code", "execution_count": null, "id": "51f89254", "metadata": {}, "outputs": [], "source": [ "# write a fasta file for all PDBBind protein sequences\n", "d_fasta = {} # pdb_id: seq\n", "for pdb_id, d_seq in zip(interface_df['PdbID'].unique(), all_seqs):\n", " for chain, seq in d_seq.items():\n", " pdb_chain_id = pdb_id + '-' + chain\n", " d_fasta[pdb_chain_id] = seq\n", " \n", "print('Number of protein chains:', len(d_fasta))\n", "\n", "with open(os.path.join(DATA_DIR, 'ProtCID_proteins.fasta'), 'w') as out:\n", " for pdb_chain_id, seq in d_fasta.items():\n", " out.write('>' + pdb_chain_id + '\\n')\n", " out.write(seq + '\\n')" ] } ], "metadata": { "kernelspec": { "display_name": "conda_pytorch_p38", "language": "python", "name": "conda_pytorch_p38" }, "language_info": { "codemirror_mode": { "name": "ipython", "version": 3 }, "file_extension": ".py", "mimetype": "text/x-python", "name": "python", "nbconvert_exporter": "python", "pygments_lexer": "ipython3", "version": "3.8.12" } }, "nbformat": 4, "nbformat_minor": 5 }