diff --git a/.history/Home_20240110110014.py b/.history/Home_20240110110014.py
new file mode 100644
index 0000000..ddf43dd
--- /dev/null
+++ b/.history/Home_20240110110014.py
@@ -0,0 +1,168 @@
+import streamlit as st
+import pandas as pd
+import re
+import numpy as np
+
+import ParsingModule
+import warnings
+warnings.filterwarnings("ignore")
+import os
+import json
+import gzip
+local_dir = os.path.dirname(__file__)
+from PIL import Image
+import base64
+import io
+st.set_page_config(
+ page_title="lesSDRF",
+ layout="wide",
+ menu_items={
+ "Get help": "https://github.com/compomics/lesSDRF/issues",
+ "Report a bug": "https://github.com/compomics/lesSDRF/issues",
+ },
+)
+
+def add_logo(logo_path, width, height):
+ """Read and return a resized logo"""
+ logo = Image.open(logo_path)
+ modified_logo = logo.resize((width, height))
+ return modified_logo
+
+def get_base64_image(image):
+ img_buffer = io.BytesIO()
+ image.save(img_buffer, format="PNG")
+ img_str = base64.b64encode(img_buffer.getvalue()).decode()
+ return img_str
+
+my_logo = add_logo(logo_path="final_logo.png", width=149, height=58)
+
+st.markdown(
+ f"""
+
+ """,
+ unsafe_allow_html=True,
+)
+
+#get local directory using os, and add the data folder to the path
+
+
+
+# use streamlit cache data to load gzipped jsons files from folder
+@st.cache_data
+def load_data():
+ local_dir = os.path.dirname(__file__)
+ folder_path = os.path.join(local_dir, "data")
+ unimod_path = os.path.join(local_dir, "ontology", "unimod.csv")
+ data = {}
+ for filename in os.listdir(folder_path):
+ # do not load the files containing the following names: archae, bacteria, eukaryota, virus, unclassified, other sequences
+ if re.search(r"archaea|bacteria|eukaryota|virus|unclassified|other sequences", filename):
+ continue
+ file_path = os.path.join(folder_path, filename)
+ if filename.endswith(".json.gz"):
+ try:
+ with gzip.open(file_path, "rb") as f:
+ file_data = json.load(f)
+ filename_key = filename.replace(".json.gz", "")
+ data[filename_key] = file_data
+ except gzip.BadGzipFile:
+ st.write(f"Error reading file {file_path}: not a gzipped file")
+ else:
+ st.write(f"Skipping file {file_path}: not a gzipped file")
+
+ unimod = pd.read_csv(unimod_path, sep="\t")
+ return data, unimod
+
+
+data_dict, unimod = load_data()
+if "data_dict" not in st.session_state:
+ st.session_state["data_dict"] = data_dict
+if "unimod" not in st.session_state:
+ st.session_state["unimod"] = unimod
+st.title("Welcome to lesSDRF")
+st.subheader("Spending less time on SDRF creates more time for amazing research")
+st.write(
+ """By providing metadata in a machine-readable format, other researchers can access your data more easily and you maximize its impact.
+ The Sample and Data Relationship Format ([SDRF](https://www.nature.com/articles/s41467-021-26111-3)) is the HUPO-PSI recognized metadata format within proteomics. lesSDRF will streamline this annotation process for you. This tool is developed by the [CompOmics group](https://compomics.com/) and published in [Nature Communications](https://www.nature.com/articles/s41467-023-42543-5). \n""")
+st.write("""
+ On this homepage, select the species-specific default SDRF file that matches your study and provide the raw file names.
+ Then, follow the steps in the sidebar.
+- Step 1: If you have a local metadata file, you can upload it to map to the SDRF file
+- Step 2: Provide information on potential labels in your sample
+- Step 3: Fill in the columns that are required for a valid SDRF
+- Step 4: Fill in columns with additional information to further optimise your SDRF file
+- Step 5: For atypical experiment types, you can check community suggested columns \n
+"""
+)
+
+st.markdown("""You are able to download your intermediate file at any given time, so you can come back to the other steps whenever suits you.
+Upload your intermediate SDRF file here:""")
+
+upload_df = st.file_uploader(
+ "Upload intermediate SDRF file", type=["tsv"], accept_multiple_files=False, help='Upload a previously saved SDRF file. It should be in tsv format and should not contain more than 250 samples'
+)
+if upload_df is not None:
+ template_df = pd.read_csv(upload_df, sep='\t')
+ if template_df.shape[0]>250:
+ st.error('Too many samples, please upload a maximum of 250 samples')
+ else:
+ st.write(template_df)
+ st.session_state["template_df"] = template_df
+
+st.markdown("""In need of some inspiration? Download this example SDRF file to get an idea of the required output""")
+with open(f'{local_dir}/example_SDRF.tsv', 'rb') as f:
+ st.download_button("Download example SDRF", f, file_name="example.sdrf.tsv")
+
+st.subheader("Start here with a completely new SDRF file")
+species = ["","human", "cell-line", "default", "nonvertebrates", "plants", "vertebrates"]
+selected_species = st.selectbox("""Select a species for the SDRF template which will contain the basic colummns to fill in for this specific species.
+If your species is not in the drop down list, you can always use the default template.""",
+species, help="This species selection will impact the default columns present in your SDRF template. You can always add more columns in step *Additional columns*.")
+
+if selected_species != "":
+ folder_path = os.path.join(local_dir, "templates")
+ # Load the corresponding CSV file based on the selected species
+ template_df = pd.read_csv(
+ f"{folder_path}/sdrf-{selected_species}.tsv",
+ sep="\t",
+ )
+ template_df["comment[modification parameters]"] = np.nan
+ template_df["comment[fragment mass tolerance]"] = np.nan
+ template_df["comment[precursor mass tolerance]"] = np.nan
+
+ # Ask user to upload filenames of their samples
+ filenames = []
+ uploaded_names = st.text_input("Input raw file names as a comma or tab separated list", help="The raw file names will be input in the comment[data file] column and are the basis of your SDRF file. Input maximum 250 raw files")
+ if uploaded_names is not None:
+ #if comma separated, split on comma, if tab separated, split on tab
+ if "," in uploaded_names:
+ uploaded_names = uploaded_names.split(",")
+ elif "\t" in uploaded_names:
+ uploaded_names = uploaded_names.split("\t")
+ elif " " in uploaded_names:
+ uploaded_names = uploaded_names.split(" ")
+ #remove trailing and leading spaces
+ uploaded_names = [name.strip() for name in uploaded_names]
+ filenames.append(uploaded_names)
+ if len(filenames[0]) > 250:
+ st.error('Too many samples, please upload a maximum of 250 samples')
+ else:
+ st.write(f"Added filenames: {filenames[0]}")
+ ## Store filenames in the dataframe
+ template_df["comment[data file]"] = filenames[0]
+ st.session_state["template_df"] = template_df
+
+ ## Show the data in a table
+ st.write(template_df)
+ if "template_df" not in st.session_state:
+ st.session_state["template_df"] = template_df
+ with st.sidebar:
+ download = st.download_button("Press to download SDRF file",ParsingModule.convert_df(template_df), "intermediate_SDRF.sdrf.tsv", help="download your SDRF file")
+ st.write("""Please refer to your data and lesSDRF within your manuscript as follows:
+ *The experimental metadata has been generated using lesSDRF and is available through ProteomeXchange with the dataset identifier [PXDxxxxxxx]*""")
\ No newline at end of file
diff --git a/.history/Home_20240927141947.py b/.history/Home_20240927141947.py
new file mode 100644
index 0000000..480c57f
--- /dev/null
+++ b/.history/Home_20240927141947.py
@@ -0,0 +1,171 @@
+import streamlit as st
+import pandas as pd
+import re
+import numpy as np
+
+import ParsingModule
+import warnings
+warnings.filterwarnings("ignore")
+import os
+import json
+import gzip
+local_dir = os.path.dirname(__file__)
+from PIL import Image
+import base64
+import io
+st.set_page_config(
+ page_title="lesSDRF",
+ layout="wide",
+ menu_items={
+ "Get help": "https://github.com/compomics/lesSDRF/issues",
+ "Report a bug": "https://github.com/compomics/lesSDRF/issues",
+ },
+)
+
+def add_logo(logo_path, width, height):
+ """Read and return a resized logo"""
+ logo = Image.open(logo_path)
+ modified_logo = logo.resize((width, height))
+ return modified_logo
+
+def get_base64_image(image):
+ img_buffer = io.BytesIO()
+ image.save(img_buffer, format="PNG")
+ img_str = base64.b64encode(img_buffer.getvalue()).decode()
+ return img_str
+
+my_logo = add_logo(logo_path="final_logo.png", width=149, height=58)
+
+st.markdown(
+ f"""
+
+ """,
+ unsafe_allow_html=True,
+)
+
+#get local directory using os, and add the data folder to the path
+
+
+
+# use streamlit cache data to load gzipped jsons files from folder
+@st.cache_data
+def load_data():
+ local_dir = os.path.dirname(__file__)
+ folder_path = os.path.join(local_dir, "data")
+ unimod_path = os.path.join(local_dir, "ontology", "unimod.csv")
+ data = {}
+ for filename in os.listdir(folder_path):
+ # do not load the files containing the following names: archae, bacteria, eukaryota, virus, unclassified, other sequences
+ if re.search(r"archaea|bacteria|eukaryota|virus|unclassified|other sequences", filename):
+ continue
+ file_path = os.path.join(folder_path, filename)
+ if filename.endswith(".json.gz"):
+ try:
+ with gzip.open(file_path, "rb") as f:
+ try:
+ file_data = json.load(f)
+ filename_key = filename.replace(".json.gz", "")
+ data[filename_key] = file_data
+ except json.JSONDecodeError:
+ st.write(f"Error decoding JSON in file {file_path}")
+ except gzip.BadGzipFile:
+ st.write(f"Error reading file {file_path}: not a gzipped file")
+ else:
+ st.write(f"Skipping file {file_path}: not a gzipped file")
+
+ unimod = pd.read_csv(unimod_path, sep="\t")
+ return data, unimod
+
+
+data_dict, unimod = load_data()
+if "data_dict" not in st.session_state:
+ st.session_state["data_dict"] = data_dict
+if "unimod" not in st.session_state:
+ st.session_state["unimod"] = unimod
+st.title("Welcome to lesSDRF")
+st.subheader("Spending less time on SDRF creates more time for amazing research")
+st.write(
+ """By providing metadata in a machine-readable format, other researchers can access your data more easily and you maximize its impact.
+ The Sample and Data Relationship Format ([SDRF](https://www.nature.com/articles/s41467-021-26111-3)) is the HUPO-PSI recognized metadata format within proteomics. lesSDRF will streamline this annotation process for you. This tool is developed by the [CompOmics group](https://compomics.com/) and published in [Nature Communications](https://www.nature.com/articles/s41467-023-42543-5). \n""")
+st.write("""
+ On this homepage, select the species-specific default SDRF file that matches your study and provide the raw file names.
+ Then, follow the steps in the sidebar.
+- Step 1: If you have a local metadata file, you can upload it to map to the SDRF file
+- Step 2: Provide information on potential labels in your sample
+- Step 3: Fill in the columns that are required for a valid SDRF
+- Step 4: Fill in columns with additional information to further optimise your SDRF file
+- Step 5: For atypical experiment types, you can check community suggested columns \n
+"""
+)
+
+st.markdown("""You are able to download your intermediate file at any given time, so you can come back to the other steps whenever suits you.
+Upload your intermediate SDRF file here:""")
+
+upload_df = st.file_uploader(
+ "Upload intermediate SDRF file", type=["tsv"], accept_multiple_files=False, help='Upload a previously saved SDRF file. It should be in tsv format and should not contain more than 250 samples'
+)
+if upload_df is not None:
+ template_df = pd.read_csv(upload_df, sep='\t')
+ if template_df.shape[0]>250:
+ st.error('Too many samples, please upload a maximum of 250 samples')
+ else:
+ st.write(template_df)
+ st.session_state["template_df"] = template_df
+
+st.markdown("""In need of some inspiration? Download this example SDRF file to get an idea of the required output""")
+with open(f'{local_dir}/example_SDRF.tsv', 'rb') as f:
+ st.download_button("Download example SDRF", f, file_name="example.sdrf.tsv")
+
+st.subheader("Start here with a completely new SDRF file")
+species = ["","human", "cell-line", "default", "nonvertebrates", "plants", "vertebrates"]
+selected_species = st.selectbox("""Select a species for the SDRF template which will contain the basic colummns to fill in for this specific species.
+If your species is not in the drop down list, you can always use the default template.""",
+species, help="This species selection will impact the default columns present in your SDRF template. You can always add more columns in step *Additional columns*.")
+
+if selected_species != "":
+ folder_path = os.path.join(local_dir, "templates")
+ # Load the corresponding CSV file based on the selected species
+ template_df = pd.read_csv(
+ f"{folder_path}/sdrf-{selected_species}.tsv",
+ sep="\t",
+ )
+ template_df["comment[modification parameters]"] = np.nan
+ template_df["comment[fragment mass tolerance]"] = np.nan
+ template_df["comment[precursor mass tolerance]"] = np.nan
+
+ # Ask user to upload filenames of their samples
+ filenames = []
+ uploaded_names = st.text_input("Input raw file names as a comma or tab separated list", help="The raw file names will be input in the comment[data file] column and are the basis of your SDRF file. Input maximum 250 raw files")
+ if uploaded_names is not None:
+ #if comma separated, split on comma, if tab separated, split on tab
+ if "," in uploaded_names:
+ uploaded_names = uploaded_names.split(",")
+ elif "\t" in uploaded_names:
+ uploaded_names = uploaded_names.split("\t")
+ elif " " in uploaded_names:
+ uploaded_names = uploaded_names.split(" ")
+ #remove trailing and leading spaces
+ uploaded_names = [name.strip() for name in uploaded_names]
+ filenames.append(uploaded_names)
+ if len(filenames[0]) > 250:
+ st.error('Too many samples, please upload a maximum of 250 samples')
+ else:
+ st.write(f"Added filenames: {filenames[0]}")
+ ## Store filenames in the dataframe
+ template_df["comment[data file]"] = filenames[0]
+ st.session_state["template_df"] = template_df
+
+ ## Show the data in a table
+ st.write(template_df)
+ if "template_df" not in st.session_state:
+ st.session_state["template_df"] = template_df
+ with st.sidebar:
+ download = st.download_button("Press to download SDRF file",ParsingModule.convert_df(template_df), "intermediate_SDRF.sdrf.tsv", help="download your SDRF file")
+ st.write("""Please refer to your data and lesSDRF within your manuscript as follows:
+ *The experimental metadata has been generated using lesSDRF and is available through ProteomeXchange with the dataset identifier [PXDxxxxxxx]*""")
\ No newline at end of file
diff --git a/.history/Home_20240927142559.py b/.history/Home_20240927142559.py
new file mode 100644
index 0000000..7aa3f5b
--- /dev/null
+++ b/.history/Home_20240927142559.py
@@ -0,0 +1,173 @@
+import streamlit as st
+import pandas as pd
+import re
+import numpy as np
+
+import ParsingModule
+import warnings
+warnings.filterwarnings("ignore")
+import os
+import json
+import gzip
+local_dir = os.path.dirname(__file__)
+from PIL import Image
+import base64
+import io
+st.set_page_config(
+ page_title="lesSDRF",
+ layout="wide",
+ menu_items={
+ "Get help": "https://github.com/compomics/lesSDRF/issues",
+ "Report a bug": "https://github.com/compomics/lesSDRF/issues",
+ },
+)
+
+def add_logo(logo_path, width, height):
+ """Read and return a resized logo"""
+ logo = Image.open(logo_path)
+ modified_logo = logo.resize((width, height))
+ return modified_logo
+
+def get_base64_image(image):
+ img_buffer = io.BytesIO()
+ image.save(img_buffer, format="PNG")
+ img_str = base64.b64encode(img_buffer.getvalue()).decode()
+ return img_str
+
+my_logo = add_logo(logo_path="final_logo.png", width=149, height=58)
+
+st.markdown(
+ f"""
+
+ """,
+ unsafe_allow_html=True,
+)
+
+#get local directory using os, and add the data folder to the path
+
+
+
+# use streamlit cache data to load gzipped jsons files from folder
+@st.cache_data
+def load_data():
+ local_dir = os.path.dirname(__file__)
+ folder_path = os.path.join(local_dir, "data")
+ unimod_path = os.path.join(local_dir, "ontology", "unimod.csv")
+ data = {}
+ for filename in os.listdir(folder_path):
+ # do not load the files containing the following names: archae, bacteria, eukaryota, virus, unclassified, other sequences
+ if re.search(r"archaea|bacteria|eukaryota|virus|unclassified|other sequences", filename):
+ continue
+ file_path = os.path.join(folder_path, filename)
+ if filename.endswith(".json.gz"):
+ try:
+ with gzip.open(file_path, "rb") as f:
+ try:
+ json_bytes = f.read()
+ json_str = json_bytes.decode('utf-8')
+ file_data = json.loads(json_str)
+ filename_key = filename.replace(".json.gz", "")
+ data[filename_key] = file_data
+ except json.JSONDecodeError:
+ st.write(f"Error decoding JSON in file {file_path}")
+ except gzip.BadGzipFile:
+ st.write(f"Error reading file {file_path}: not a gzipped file")
+ else:
+ st.write(f"Skipping file {file_path}: not a gzipped file")
+
+ unimod = pd.read_csv(unimod_path, sep="\t")
+ return data, unimod
+
+
+data_dict, unimod = load_data()
+if "data_dict" not in st.session_state:
+ st.session_state["data_dict"] = data_dict
+if "unimod" not in st.session_state:
+ st.session_state["unimod"] = unimod
+st.title("Welcome to lesSDRF")
+st.subheader("Spending less time on SDRF creates more time for amazing research")
+st.write(
+ """By providing metadata in a machine-readable format, other researchers can access your data more easily and you maximize its impact.
+ The Sample and Data Relationship Format ([SDRF](https://www.nature.com/articles/s41467-021-26111-3)) is the HUPO-PSI recognized metadata format within proteomics. lesSDRF will streamline this annotation process for you. This tool is developed by the [CompOmics group](https://compomics.com/) and published in [Nature Communications](https://www.nature.com/articles/s41467-023-42543-5). \n""")
+st.write("""
+ On this homepage, select the species-specific default SDRF file that matches your study and provide the raw file names.
+ Then, follow the steps in the sidebar.
+- Step 1: If you have a local metadata file, you can upload it to map to the SDRF file
+- Step 2: Provide information on potential labels in your sample
+- Step 3: Fill in the columns that are required for a valid SDRF
+- Step 4: Fill in columns with additional information to further optimise your SDRF file
+- Step 5: For atypical experiment types, you can check community suggested columns \n
+"""
+)
+
+st.markdown("""You are able to download your intermediate file at any given time, so you can come back to the other steps whenever suits you.
+Upload your intermediate SDRF file here:""")
+
+upload_df = st.file_uploader(
+ "Upload intermediate SDRF file", type=["tsv"], accept_multiple_files=False, help='Upload a previously saved SDRF file. It should be in tsv format and should not contain more than 250 samples'
+)
+if upload_df is not None:
+ template_df = pd.read_csv(upload_df, sep='\t')
+ if template_df.shape[0]>250:
+ st.error('Too many samples, please upload a maximum of 250 samples')
+ else:
+ st.write(template_df)
+ st.session_state["template_df"] = template_df
+
+st.markdown("""In need of some inspiration? Download this example SDRF file to get an idea of the required output""")
+with open(f'{local_dir}/example_SDRF.tsv', 'rb') as f:
+ st.download_button("Download example SDRF", f, file_name="example.sdrf.tsv")
+
+st.subheader("Start here with a completely new SDRF file")
+species = ["","human", "cell-line", "default", "nonvertebrates", "plants", "vertebrates"]
+selected_species = st.selectbox("""Select a species for the SDRF template which will contain the basic colummns to fill in for this specific species.
+If your species is not in the drop down list, you can always use the default template.""",
+species, help="This species selection will impact the default columns present in your SDRF template. You can always add more columns in step *Additional columns*.")
+
+if selected_species != "":
+ folder_path = os.path.join(local_dir, "templates")
+ # Load the corresponding CSV file based on the selected species
+ template_df = pd.read_csv(
+ f"{folder_path}/sdrf-{selected_species}.tsv",
+ sep="\t",
+ )
+ template_df["comment[modification parameters]"] = np.nan
+ template_df["comment[fragment mass tolerance]"] = np.nan
+ template_df["comment[precursor mass tolerance]"] = np.nan
+
+ # Ask user to upload filenames of their samples
+ filenames = []
+ uploaded_names = st.text_input("Input raw file names as a comma or tab separated list", help="The raw file names will be input in the comment[data file] column and are the basis of your SDRF file. Input maximum 250 raw files")
+ if uploaded_names is not None:
+ #if comma separated, split on comma, if tab separated, split on tab
+ if "," in uploaded_names:
+ uploaded_names = uploaded_names.split(",")
+ elif "\t" in uploaded_names:
+ uploaded_names = uploaded_names.split("\t")
+ elif " " in uploaded_names:
+ uploaded_names = uploaded_names.split(" ")
+ #remove trailing and leading spaces
+ uploaded_names = [name.strip() for name in uploaded_names]
+ filenames.append(uploaded_names)
+ if len(filenames[0]) > 250:
+ st.error('Too many samples, please upload a maximum of 250 samples')
+ else:
+ st.write(f"Added filenames: {filenames[0]}")
+ ## Store filenames in the dataframe
+ template_df["comment[data file]"] = filenames[0]
+ st.session_state["template_df"] = template_df
+
+ ## Show the data in a table
+ st.write(template_df)
+ if "template_df" not in st.session_state:
+ st.session_state["template_df"] = template_df
+ with st.sidebar:
+ download = st.download_button("Press to download SDRF file",ParsingModule.convert_df(template_df), "intermediate_SDRF.sdrf.tsv", help="download your SDRF file")
+ st.write("""Please refer to your data and lesSDRF within your manuscript as follows:
+ *The experimental metadata has been generated using lesSDRF and is available through ProteomeXchange with the dataset identifier [PXDxxxxxxx]*""")
\ No newline at end of file
diff --git a/.history/Home_20240927142600.py b/.history/Home_20240927142600.py
new file mode 100644
index 0000000..7aa3f5b
--- /dev/null
+++ b/.history/Home_20240927142600.py
@@ -0,0 +1,173 @@
+import streamlit as st
+import pandas as pd
+import re
+import numpy as np
+
+import ParsingModule
+import warnings
+warnings.filterwarnings("ignore")
+import os
+import json
+import gzip
+local_dir = os.path.dirname(__file__)
+from PIL import Image
+import base64
+import io
+st.set_page_config(
+ page_title="lesSDRF",
+ layout="wide",
+ menu_items={
+ "Get help": "https://github.com/compomics/lesSDRF/issues",
+ "Report a bug": "https://github.com/compomics/lesSDRF/issues",
+ },
+)
+
+def add_logo(logo_path, width, height):
+ """Read and return a resized logo"""
+ logo = Image.open(logo_path)
+ modified_logo = logo.resize((width, height))
+ return modified_logo
+
+def get_base64_image(image):
+ img_buffer = io.BytesIO()
+ image.save(img_buffer, format="PNG")
+ img_str = base64.b64encode(img_buffer.getvalue()).decode()
+ return img_str
+
+my_logo = add_logo(logo_path="final_logo.png", width=149, height=58)
+
+st.markdown(
+ f"""
+
+ """,
+ unsafe_allow_html=True,
+)
+
+#get local directory using os, and add the data folder to the path
+
+
+
+# use streamlit cache data to load gzipped jsons files from folder
+@st.cache_data
+def load_data():
+ local_dir = os.path.dirname(__file__)
+ folder_path = os.path.join(local_dir, "data")
+ unimod_path = os.path.join(local_dir, "ontology", "unimod.csv")
+ data = {}
+ for filename in os.listdir(folder_path):
+ # do not load the files containing the following names: archae, bacteria, eukaryota, virus, unclassified, other sequences
+ if re.search(r"archaea|bacteria|eukaryota|virus|unclassified|other sequences", filename):
+ continue
+ file_path = os.path.join(folder_path, filename)
+ if filename.endswith(".json.gz"):
+ try:
+ with gzip.open(file_path, "rb") as f:
+ try:
+ json_bytes = f.read()
+ json_str = json_bytes.decode('utf-8')
+ file_data = json.loads(json_str)
+ filename_key = filename.replace(".json.gz", "")
+ data[filename_key] = file_data
+ except json.JSONDecodeError:
+ st.write(f"Error decoding JSON in file {file_path}")
+ except gzip.BadGzipFile:
+ st.write(f"Error reading file {file_path}: not a gzipped file")
+ else:
+ st.write(f"Skipping file {file_path}: not a gzipped file")
+
+ unimod = pd.read_csv(unimod_path, sep="\t")
+ return data, unimod
+
+
+data_dict, unimod = load_data()
+if "data_dict" not in st.session_state:
+ st.session_state["data_dict"] = data_dict
+if "unimod" not in st.session_state:
+ st.session_state["unimod"] = unimod
+st.title("Welcome to lesSDRF")
+st.subheader("Spending less time on SDRF creates more time for amazing research")
+st.write(
+ """By providing metadata in a machine-readable format, other researchers can access your data more easily and you maximize its impact.
+ The Sample and Data Relationship Format ([SDRF](https://www.nature.com/articles/s41467-021-26111-3)) is the HUPO-PSI recognized metadata format within proteomics. lesSDRF will streamline this annotation process for you. This tool is developed by the [CompOmics group](https://compomics.com/) and published in [Nature Communications](https://www.nature.com/articles/s41467-023-42543-5). \n""")
+st.write("""
+ On this homepage, select the species-specific default SDRF file that matches your study and provide the raw file names.
+ Then, follow the steps in the sidebar.
+- Step 1: If you have a local metadata file, you can upload it to map to the SDRF file
+- Step 2: Provide information on potential labels in your sample
+- Step 3: Fill in the columns that are required for a valid SDRF
+- Step 4: Fill in columns with additional information to further optimise your SDRF file
+- Step 5: For atypical experiment types, you can check community suggested columns \n
+"""
+)
+
+st.markdown("""You are able to download your intermediate file at any given time, so you can come back to the other steps whenever suits you.
+Upload your intermediate SDRF file here:""")
+
+upload_df = st.file_uploader(
+ "Upload intermediate SDRF file", type=["tsv"], accept_multiple_files=False, help='Upload a previously saved SDRF file. It should be in tsv format and should not contain more than 250 samples'
+)
+if upload_df is not None:
+ template_df = pd.read_csv(upload_df, sep='\t')
+ if template_df.shape[0]>250:
+ st.error('Too many samples, please upload a maximum of 250 samples')
+ else:
+ st.write(template_df)
+ st.session_state["template_df"] = template_df
+
+st.markdown("""In need of some inspiration? Download this example SDRF file to get an idea of the required output""")
+with open(f'{local_dir}/example_SDRF.tsv', 'rb') as f:
+ st.download_button("Download example SDRF", f, file_name="example.sdrf.tsv")
+
+st.subheader("Start here with a completely new SDRF file")
+species = ["","human", "cell-line", "default", "nonvertebrates", "plants", "vertebrates"]
+selected_species = st.selectbox("""Select a species for the SDRF template which will contain the basic colummns to fill in for this specific species.
+If your species is not in the drop down list, you can always use the default template.""",
+species, help="This species selection will impact the default columns present in your SDRF template. You can always add more columns in step *Additional columns*.")
+
+if selected_species != "":
+ folder_path = os.path.join(local_dir, "templates")
+ # Load the corresponding CSV file based on the selected species
+ template_df = pd.read_csv(
+ f"{folder_path}/sdrf-{selected_species}.tsv",
+ sep="\t",
+ )
+ template_df["comment[modification parameters]"] = np.nan
+ template_df["comment[fragment mass tolerance]"] = np.nan
+ template_df["comment[precursor mass tolerance]"] = np.nan
+
+ # Ask user to upload filenames of their samples
+ filenames = []
+ uploaded_names = st.text_input("Input raw file names as a comma or tab separated list", help="The raw file names will be input in the comment[data file] column and are the basis of your SDRF file. Input maximum 250 raw files")
+ if uploaded_names is not None:
+ #if comma separated, split on comma, if tab separated, split on tab
+ if "," in uploaded_names:
+ uploaded_names = uploaded_names.split(",")
+ elif "\t" in uploaded_names:
+ uploaded_names = uploaded_names.split("\t")
+ elif " " in uploaded_names:
+ uploaded_names = uploaded_names.split(" ")
+ #remove trailing and leading spaces
+ uploaded_names = [name.strip() for name in uploaded_names]
+ filenames.append(uploaded_names)
+ if len(filenames[0]) > 250:
+ st.error('Too many samples, please upload a maximum of 250 samples')
+ else:
+ st.write(f"Added filenames: {filenames[0]}")
+ ## Store filenames in the dataframe
+ template_df["comment[data file]"] = filenames[0]
+ st.session_state["template_df"] = template_df
+
+ ## Show the data in a table
+ st.write(template_df)
+ if "template_df" not in st.session_state:
+ st.session_state["template_df"] = template_df
+ with st.sidebar:
+ download = st.download_button("Press to download SDRF file",ParsingModule.convert_df(template_df), "intermediate_SDRF.sdrf.tsv", help="download your SDRF file")
+ st.write("""Please refer to your data and lesSDRF within your manuscript as follows:
+ *The experimental metadata has been generated using lesSDRF and is available through ProteomeXchange with the dataset identifier [PXDxxxxxxx]*""")
\ No newline at end of file
diff --git a/.history/ParsingModule_20231009093232.py b/.history/ParsingModule_20231009093232.py
new file mode 100644
index 0000000..cc28d51
--- /dev/null
+++ b/.history/ParsingModule_20231009093232.py
@@ -0,0 +1,410 @@
+import pronto
+from pronto import Ontology
+from collections import defaultdict
+import json
+import gzip
+import pickle
+import streamlit as st
+import numpy as np
+import pandas as pd
+import re
+from st_aggrid import AgGrid, GridOptionsBuilder, GridUpdateMode, DataReturnMode
+from streamlit_tree_select import tree_select
+
+def help():
+ """This module contains all parsable functions necessary to build the SDRF GUI"""
+ print("This module contains all parsable functions necessary to build the SDRF GUI")
+ print(
+ "The get_json_subclasses function returns a nested dictionary of all subclasses of a given term in a json ontology"
+ )
+ print(
+ "The get_obo_subclasses function returns a nested dictionary of all subclasses of a given term in an obo ontology"
+ )
+ print("The flatten function returns a list of all values in a nested dictionary")
+ print(
+ "The transform_nested_dict_to_tree function returns a list of dictionaries that can be used to build a tree in streamlit"
+ )
+ print(
+ "The store_as_gzipped_json function stores a dictionary/list as a gzipped json file"
+ )
+ print(
+ "The open_gzipped_json function opens a gzipped json file and returns the dictionary/list"
+ )
+
+
+def get_json_subclasses(ontology, term_id, term_label, d, nodes_dict=None, data=None):
+ """This function takes the path to the ontology file in json format, the desired term id from the root node (e.g. http://www.ebi.ac.uk/efo/EFO_0000635) and the term label (e.g. 'organism part')
+ and returns a nested dictionary of all subclasses of the given term.
+ """
+ if nodes_dict is None: # load the json file only once
+ with open(ontology) as f:
+ data = json.load(f)
+ nodes_dict = {
+ node["id"]: node["lbl"]
+ for node in data["graphs"][0]["nodes"]
+ if all(key in node for key in ["id", "lbl"])
+ }
+
+ if term_id not in nodes_dict:
+ return f"{term_id} node not in ontology" # node not found in ontology, return early
+
+ if term_label not in d:
+ d[term_label] = {} # add the parent to the dictionary
+
+ for term in data["graphs"][0]["edges"]: # iterate through the edges
+ if (term["obj"] == term_id) and (
+ term["pred"] in ["http://purl.obolibrary.org/obo/BFO_0000050", "is_a"]
+ ):
+ parent = term["sub"]
+ if parent == "http://purl.obolibrary.org/obo/MONDO_0011876":
+ continue # skip MONDO_0011876
+ parent_label = nodes_dict.get(parent)
+ if parent_label is not None:
+ if parent_label in d:
+ d[term_label][parent_label] = d[parent_label]
+ del d[parent_label]
+ else:
+ d[term_label][parent_label] = {}
+ get_json_subclasses(
+ ontology, parent, parent_label, d[term_label], nodes_dict, data
+ )
+
+ return d
+
+
+def remove_duplicate_values(d):
+ for k, v in d.items():
+ if isinstance(v, dict):
+ remove_duplicate_values(v)
+ if k in v:
+ del v[k]
+
+ return d
+
+
+def get_obo_subclasses(onto, obo_id, obo_label, d=None, distance=1):
+ if d is None:
+ d = defaultdict(dict)
+ """This function is built on pronto.
+ It takes the path to the ontology file in obo format, the desired term id from the root node (e.g. MS:1000031) and the term label (e.g. 'instrument model')
+ and returns a nested dictionary of all subclasses of the given term. To only get the direct subclasses, the distance is set to 1
+ """
+
+ subclasses = list(onto[obo_id].subclasses(distance=1))
+ if len(subclasses) > 1:
+ d[obo_label] = {}
+ for i in subclasses[1:]:
+ obo_id = i.id
+ obo_label = i.name
+ d[obo_label] = get_obo_subclasses(
+ onto, obo_id, obo_label, defaultdict(dict), distance=1
+ )
+ else:
+ d = {}
+
+ d = remove_dupcliate_values(d)
+ return d
+
+
+def flatten(d):
+ """This function takes a nested dictionary and returns all unique elements in the dictionary as a list"""
+ if not isinstance(d, dict):
+ print("Input is not a dictionary")
+ items = []
+ for k, v in d.items(): # iterate through the dictionary
+ items.append(k) # add the key to the list
+ if isinstance(
+ v, dict
+ ): # if the value is a dictionary, call the function recursively
+ items.extend(flatten(v))
+ else:
+ items.append(v)
+ items = list(set(items))
+ return items
+
+
+def transform_nested_dict_to_tree(d, parent_label=None, parent_value=None):
+ """This function takes a nested dictionary and returns a tree like dictionary that can be used in streamlit streamlit_tree_select"""
+ if not isinstance(d, dict):
+ print("Input is not a dictionary")
+ result = []
+ for key, value in d.items():
+ label = key
+ if parent_label:
+ label = f"{parent_label} , {key}"
+ children = []
+ if value:
+ children = transform_nested_dict_to_tree(value, label, key)
+ if children:
+ result.append({"label": key, "value": label, "children": children})
+ else:
+ result.append({"label": key, "value": label})
+ return result
+
+
+def store_as_gzipped_json(data, filename):
+ """ "Given a datatype to store and the filename, this function stores the data as a gzipped json file in .\\data"""
+ path = (
+ ".\\data\\"
+ + filename
+ + ".json.gz"
+ )
+ with gzip.open(path, "wt") as f:
+ json.dump(data, f)
+ return f"Stored {filename} as gzipped json"
+
+
+def open_gzipped_json(filename):
+ """ "Given a filename, this function opens the data that was stored as a gzipped json in .\\data"""
+ path = (
+ ".\\data\\"
+ + filename
+ + ".json.gz"
+ )
+ with gzip.open(path, "rt") as f:
+ data = json.load(f)
+ return data
+
+def fill_in_from_list(df, column, values_list=None, multiple_in_one=False):
+ """provide dataframe, column and optional a list of values.
+ reates an editable dataframe in which only that column can be modified possibly with the values from the list
+ If the list is empty, the column is freely editable
+ If the list contains only one value, the column is filled with that value
+ If the list contains more than one value, a dropdown menu is created with the values from the list
+ If multiple_in_one is True, multiple columns are created with the same dropdown menu"""
+ columns_to_adapt = [column]
+ df.fillna("empty", inplace=True)
+ cell_style = {"background-color": "#ffa478"}
+ builder = GridOptionsBuilder.from_dataframe(df)
+
+ if values_list and (len(values_list)==1): # if there is only one value, fill in the column with that value
+ df[column] = values_list[0]
+ df.replace("empty", np.nan, inplace=True)
+ elif values_list and (len(values_list)>1): # if there is a list of values, add a dropdown menu to the column
+ # add '' to the beginning of values list so it starts with an empty input
+ values_list.insert(0, "")
+ values_list.insert(1, "NA") #add NA
+ if multiple_in_one: # add columns based on number of values in values_list
+ for i in range(len(values_list)-1):
+ df[f"{column}_{i}"] = ""
+ columns_to_adapt.append(f"{column}_{i}")
+ builder.configure_columns(columns_to_adapt, editable=True, cellEditor="agSelectCellEditor", cellEditorParams={"values": values_list}, cellStyle = cell_style)
+ else: # if not multiple_in_one, just add the column
+ builder.configure_column(column,editable=True,cellEditor="agSelectCellEditor",cellEditorParams={"values": values_list}, cellStyle = cell_style)
+ builder.configure_grid_options(enableRangeSelection=True, enableFillHandle=True, suppressMovableColumns=True, singleClickEdit=True)
+ gridOptions = builder.build()
+ grid_return = AgGrid(
+ df,
+ gridOptions=gridOptions,
+ update_mode=GridUpdateMode.MANUAL,
+ data_return_mode=DataReturnMode.AS_INPUT)
+ df = grid_return["data"]
+ df.replace("empty", np.nan, inplace=True)
+
+ elif values_list is None: # if there is no list of values, make the column editable
+ builder.configure_column(column, editable=True, cellStyle = cell_style)
+ builder.configure_grid_options(enableRangeSelection=True, enableFillHandle=True, suppressMovableColumns=True, singleClickEdit=True)
+ gridOptions = builder.build()
+ grid_return = AgGrid(
+ df,
+ gridOptions=gridOptions,
+ update_mode=GridUpdateMode.MANUAL,
+ data_return_mode=DataReturnMode.AS_INPUT)
+ df = grid_return["data"]
+ df.replace("empty", np.nan, inplace=True)
+ return df
+
+def multiple_ontology_tree(column, element_list, nodes, df, multiple_in_one = False):
+ """
+ This function asks the column name, all the elements for the drop down menu and the nodes for the tree.
+ It asks for the number of inputs and then creates the input dataframe with in-cell drop down menus with the chosen values.
+ """
+ #get index of column based on name
+ if column not in df.columns:
+ df[column] = np.nan
+ index = df.columns.get_loc(column)
+ col1, col2, col3 = st.columns(3)
+ columns_to_adapt = [column]
+ with col1:
+ multiple = st.radio(f"Are there multiple {column} in your data?", ("No", "Yes"))
+ if multiple == "Yes":
+ with col2:
+ number = st.number_input(
+ f"How many different {column} are in your data?",
+ min_value=0,
+ step=1)
+ with col3:
+ if multiple_in_one:
+ multiple_in_one_sel = st.radio(f"Are there multiple {column} within one sample?", ("No", "Yes"))
+ if multiple_in_one_sel == "Yes":
+ for i in range(number-1):
+ # add column next to the original column if it is not already there
+ if f"{column}_{i+1}" not in df.columns:
+ df.insert(index+1, f"{column}_{i+1}", "empty")
+ columns_to_adapt.append(f"{column}_{i+1}")
+ else:
+ number = 1
+
+ with st.form("Select here your ontology terms using the autocomplete function or the ontology-based tree menu", clear_on_submit=True):
+ col4, col5 = st.columns(2)
+ with col4:
+ # selectbox with search option
+ element_list.append(" ")
+ element_list = set(element_list)
+ return_search = st.multiselect(
+ "Select your matching ontology term using this autocomplete function",
+ element_list,
+ max_selections=number,
+ )
+
+ with col5:
+ st.write("Or follow the ontology based drop down menu below")
+ return_select = tree_select(
+ nodes, no_cascade=True, expand_on_click=True, check_model="leaf"
+ )
+ all = return_search + return_select["checked"]
+ all = [i.split(',')[-1] for i in all if i is not None]
+ if (len(all) >= 1) & (len(all) != number):
+ st.error(f"You need to select a total of {number}.")
+ s = st.form_submit_button("Submit selection")
+ if s:
+ st.write(f"Selection contains: {all}")
+
+ if s & (len(all) == 1) & number == 1:
+ df[column] = all[0]
+ st.experimental_rerun()
+
+ else:
+ df.fillna("empty", inplace=True)
+ st.write(f"If all cells are correctly filled in click twice on the update button")
+ cell_style = {"background-color": "#ffa478"}
+ builder = GridOptionsBuilder.from_dataframe(df)
+ builder.configure_columns(columns_to_adapt,editable=True,cellEditor="agSelectCellEditor",cellEditorParams={"values": all},cellStyle=cell_style)
+ builder.configure_grid_options(enableRangeSelection=True, enableFillHandle=True, suppressMovableColumns=True, singleClickEdit=True)
+ go = builder.build()
+ grid_return = AgGrid(df,gridOptions=go,update_mode=GridUpdateMode.MANUAL,data_return_mode=DataReturnMode.AS_INPUT)
+ df = grid_return["data"]
+ df.replace("empty", np.nan, inplace=True)
+ return df
+
+def convert_df(df):
+ return df.to_csv(index=False).encode("utf-8")
+
+# function check_df_for_ontology_terms
+# checks if the dataframe contains ontology terms
+
+def check_df_for_ontology_terms(df, columns_to_check, column_ontology_dict):
+ clear_columns = []
+ for i in columns_to_check:
+ name = (i.split('[')[-1].split(']')[0]).replace(' ', '_')
+ name = 'all_' + name + '_elements'
+ #if the column is an ontology column
+ if name in column_ontology_dict.keys():
+ onto_elements = column_ontology_dict[name]
+ elements = df[i].unique()
+ elements = [i for i in elements if i is not np.nan]
+ # check if elements are all in onto_elements
+ # if not, return the elements that are not in the ontology
+ if not set(elements).issubset(set(onto_elements)):
+ not_in_onto = set(elements) - set(onto_elements)
+ st.error(f'The following elements are not in the ontology: {not_in_onto}')
+ clear_columns.append(i)
+ elif set(elements).issubset(set(onto_elements)) and len(elements) >= 1:
+ st.success(f'The column {i} contains only ontology terms')
+ if i == 'characteristics[age]':
+ if not check_age_format(df, 'characteristics[age]'):
+ st.error(f'The age format is not correct. Please use the following format: 1Y 2M 3D')
+ clear_columns.append(i)
+ if i == 'characteristics[sex]':
+ uniques = np.unique(df[i].values())
+ accepted = ['M', 'F', 'unknown']
+ # check if uniques contain value that is not in accepted
+ if not set(uniques).issubset(set(accepted)):
+ not_in_onto = set(uniques) - set(accepted)
+ st.error(f'{not_in_onto} are not accepted in the characteristics[sex] column. Please use M, F or unknown')
+ clear_columns.append(i)
+
+ # if there are columns that are not in the ontology, ask if the user wants to clear them
+ if len(clear_columns) >= 1:
+ st.error(f'The following columns contain elements that are not in the ontology: {clear_columns}')
+ st.write('Do you want to clear these columns?')
+ y = st.checkbox("Yes")
+ n = st.checkbox("No")
+ if y:
+ for i in clear_columns:
+ df[i] = np.nan
+ st.success(f'Column {i} has been cleared')
+
+def check_age_format(df, column):
+ """
+ Check if the data in a column in a pandas dataframe follows the age formatting of Y M D.
+ If a range, this should be formatted as e.g. 48Y-84Y.
+ Parameters:
+ df (pandas.DataFrame): The pandas dataframe to check.
+ column (str): The name of the column to check.
+
+
+ Returns:
+ tuple: (bool, list) where bool indicates if all data in the column follows the age formatting
+ and list contains the wrong parts (if any).
+ """
+ wrong_parts = []
+ for index, row in df.iterrows():
+ if row[column] not in ["", "empty", "None", "Not available"]:
+ if not re.match(r"^(\s*\d+\s*Y)?(\s*\d+\s*M)?(\s*\d+\s*D)?(|\s*-\s*\d+\s*Y)?(|\s*-\s*\d+\s*M)?(|\s*-\s*\d+\s*D)?(/)?(|\s*\d+\s*Y)?(|\s*\d+\s*M)?(|\s*\d+\s*D)?$", str(row[column])):
+ wrong_parts.append(row[column])
+ return False if wrong_parts else True, wrong_parts
+
+def convert_df(df):
+ """This function requires a dataframe and sorts its columns as source name - characteristics - others - comment.
+ Leading and trailing whitespaces are removed from all columns
+ It then converts the dataframe to a tsv file and downloads it
+ It also adds an comment[tool metadata] to indicate it was built with lesSDRF and ontology versioning"""
+ df["comment[tool metadata]"] = "lesSDRF v0.1.0"
+ #sort dataframe so that "source name" is the first column
+ cols = df.columns.tolist()
+ #get all elements from the list that start with "characteristic" and sort them alphabetically
+ characteristic_cols = sorted([i for i in cols if i.startswith("characteristic")])
+ comment_cols = sorted([i for i in cols if i.startswith("comment")])
+ factor_value_cols = sorted([i for i in cols if i.startswith("factor")])
+ #get all columns that don't start with "characteristic" or "comment"
+ other_cols = [i for i in cols if i not in characteristic_cols and i not in comment_cols and i not in factor_value_cols and i not in ["source name"]]
+ #reorder the columns
+ new_cols = ["source name"] + characteristic_cols + other_cols + comment_cols + factor_value_cols
+ df = df[new_cols]
+ #if a column name contains _ followed by a number, remove the underscore and the number
+ df.columns = [re.sub(r"(_\d+)", "", i) for i in df.columns]
+ #remove leading and trailing whitespaces from all columns
+ df = df.apply(lambda x: x.str.strip() if x.dtype == "object" else x)
+ return df.to_csv(index=False, sep="\t").encode("utf-8")
+
+
+
+def autocomplete_species_search(taxum_list, search_term):
+ col1, col2 = st.columns(2)
+ if (search_term != "") and (search_term != None):
+ # Use the filter method to dynamically filter the list of options
+ filtered_options = list(filter(lambda x: search_term.lower() in x.lower(), taxum_list))
+ exact_match = list(filter(lambda x: search_term.lower() == x.lower(), taxum_list))
+ if exact_match:
+ with col1:
+ st.write(f"An exact match was found: **{exact_match[0]}**")
+ with col2:
+ use_exact_match = st.checkbox("Use exact match", key=f"exact_{search_term}")
+ if use_exact_match:
+ return exact_match[0]
+ # if length is between 0 and 500, display the options
+ if len(filtered_options) > 0 and len(filtered_options) < 500:
+ with col1:
+ selected_options = st.multiselect("Some options closely matching your search time could be found", filtered_options)
+ # Display the selected options
+ with col2:
+ if selected_options:
+ st.write("You selected:", selected_options)
+ use_options = st.checkbox("Use selected options", key=f"selected_{search_term}")
+ if use_options:
+ return selected_options
+ if len(filtered_options) > 500:
+ st.write("Too many closely related options to display (>500). Please refine your search.")
+ if len(filtered_options) == 0:
+ st.write("No options found. Please refine your search.")
\ No newline at end of file
diff --git a/.history/ParsingModule_20240927131713.py b/.history/ParsingModule_20240927131713.py
new file mode 100644
index 0000000..d0975d5
--- /dev/null
+++ b/.history/ParsingModule_20240927131713.py
@@ -0,0 +1,417 @@
+import pronto
+from pronto import Ontology
+from collections import defaultdict
+import json
+import gzip
+import pickle
+import streamlit as st
+import numpy as np
+import pandas as pd
+import re
+from st_aggrid import AgGrid, GridOptionsBuilder, GridUpdateMode, DataReturnMode
+from streamlit_tree_select import tree_select
+
+def help():
+ """This module contains all parsable functions necessary to build the SDRF GUI"""
+ print("This module contains all parsable functions necessary to build the SDRF GUI")
+ print(
+ "The get_json_subclasses function returns a nested dictionary of all subclasses of a given term in a json ontology"
+ )
+ print(
+ "The get_obo_subclasses function returns a nested dictionary of all subclasses of a given term in an obo ontology"
+ )
+ print("The flatten function returns a list of all values in a nested dictionary")
+ print(
+ "The transform_nested_dict_to_tree function returns a list of dictionaries that can be used to build a tree in streamlit"
+ )
+ print(
+ "The store_as_gzipped_json function stores a dictionary/list as a gzipped json file"
+ )
+ print(
+ "The open_gzipped_json function opens a gzipped json file and returns the dictionary/list"
+ )
+
+
+def get_json_subclasses(ontology, term_id, term_label, d, nodes_dict=None, data=None):
+ """This function takes the path to the ontology file in json format, the desired term id from the root node (e.g. http://www.ebi.ac.uk/efo/EFO_0000635) and the term label (e.g. 'organism part')
+ and returns a nested dictionary of all subclasses of the given term.
+ """
+ if nodes_dict is None: # load the json file only once
+ with open(ontology) as f:
+ data = json.load(f)
+ nodes_dict = {
+ node["id"]: node["lbl"]
+ for node in data["graphs"][0]["nodes"]
+ if all(key in node for key in ["id", "lbl"])
+ }
+
+ if term_id not in nodes_dict:
+ return f"{term_id} node not in ontology" # node not found in ontology, return early
+
+ if term_label not in d:
+ d[term_label] = {} # add the parent to the dictionary
+
+ for term in data["graphs"][0]["edges"]: # iterate through the edges
+ if (term["obj"] == term_id) and (
+ term["pred"] in ["http://purl.obolibrary.org/obo/BFO_0000050", "is_a"]
+ ):
+ parent = term["sub"]
+ if parent == "http://purl.obolibrary.org/obo/MONDO_0011876":
+ continue # skip MONDO_0011876
+ parent_label = nodes_dict.get(parent)
+ if parent_label is not None:
+ if parent_label in d:
+ d[term_label][parent_label] = d[parent_label]
+ del d[parent_label]
+ else:
+ d[term_label][parent_label] = {}
+ get_json_subclasses(
+ ontology, parent, parent_label, d[term_label], nodes_dict, data
+ )
+
+ return d
+
+
+def remove_duplicate_values(d):
+ for k, v in d.items():
+ if isinstance(v, dict):
+ remove_duplicate_values(v)
+ if k in v:
+ del v[k]
+
+ return d
+
+
+def get_obo_subclasses(onto, obo_id, obo_label, d=None, distance=1):
+ if d is None:
+ d = defaultdict(dict)
+ """This function is built on pronto.
+ It takes the path to the ontology file in obo format, the desired term id from the root node (e.g. MS:1000031) and the term label (e.g. 'instrument model')
+ and returns a nested dictionary of all subclasses of the given term. To only get the direct subclasses, the distance is set to 1
+ """
+
+ subclasses = list(onto[obo_id].subclasses(distance=1))
+ if len(subclasses) > 1:
+ d[obo_label] = {}
+ for i in subclasses[1:]:
+ obo_id = i.id
+ obo_label = i.name
+ d[obo_label] = get_obo_subclasses(
+ onto, obo_id, obo_label, defaultdict(dict), distance=1
+ )
+ else:
+ d = {}
+
+ d = remove_dupcliate_values(d)
+ return d
+
+
+def flatten(d):
+ """This function takes a nested dictionary and returns all unique elements in the dictionary as a list"""
+ if not isinstance(d, dict):
+ print("Input is not a dictionary")
+ items = []
+ for k, v in d.items(): # iterate through the dictionary
+ items.append(k) # add the key to the list
+ if isinstance(
+ v, dict
+ ): # if the value is a dictionary, call the function recursively
+ items.extend(flatten(v))
+ else:
+ items.append(v)
+ items = list(set(items))
+ return items
+
+
+def transform_nested_dict_to_tree(d, parent_label=None, parent_value=None):
+ """This function takes a nested dictionary and returns a tree like dictionary that can be used in streamlit streamlit_tree_select"""
+ if not isinstance(d, dict):
+ print("Input is not a dictionary")
+ result = []
+ for key, value in d.items():
+ label = key
+ if parent_label:
+ label = f"{parent_label} , {key}"
+ children = []
+ if value:
+ children = transform_nested_dict_to_tree(value, label, key)
+ if children:
+ result.append({"label": key, "value": label, "children": children})
+ else:
+ result.append({"label": key, "value": label})
+ return result
+
+
+def store_as_gzipped_json(data, filename):
+ """ "Given a datatype to store and the filename, this function stores the data as a gzipped json file in .\\data"""
+ path = (fill_in_from
+ ".\\data\\"
+ + filename
+ + ".json.gz"
+ )
+ with gzip.open(path, "wt") as f:
+ json.dump(data, f)
+ return f"Stored {filename} as gzipped json"
+
+
+def open_gzipped_json(filename):
+ """ "Given a filename, this function opens the data that was stored as a gzipped json in .\\data"""
+ path = (
+ ".\\data\\"
+ + filename
+ + ".json.gz"
+ )
+ with gzip.open(path, "rt") as f:
+ data = json.load(f)
+ return data
+
+def fill_in_from_list(df, column, values_list=None, multiple_in_one=False):
+ """provide dataframe, column and optional a list of values.
+ reates an editable dataframe in which only that column can be modified possibly with the values from the list
+ If the list is empty, the column is freely editable
+ If the list contains only one value, the column is filled with that value
+ If the list contains more than one value, a dropdown menu is created with the values from the list
+ If multiple_in_one is True, multiple columns are created with the same dropdown menu"""
+ columns_to_adapt = [column]
+ df.fillna("empty", inplace=True)
+ cell_style = {"background-color": "#ffa478"}
+ builder = GridOptionsBuilder.from_dataframe(df)
+
+ if values_list and (len(values_list)==1): # if there is only one value, fill in the column with that value
+ df[column] = values_list[0]
+ df.replace("empty", np.nan, inplace=True)
+ elif values_list and (len(values_list)>1): # if there is a list of values, add a dropdown menu to the column
+ # add '' to the beginning of values list so it starts with an empty input
+ values_list.insert(0, "")
+ values_list.insert(1, "NA") #add NA
+ if multiple_in_one: # add columns based on number of values in values_list
+ for i in range(len(values_list)-1):
+ df[f"{column}_{i}"] = ""
+ columns_to_adapt.append(f"{column}_{i}")
+ builder.configure_columns(columns_to_adapt, editable=True, cellEditor="agSelectCellEditor", cellEditorParams={"values": values_list}, cellStyle = cell_style)
+ else: # if not multiple_in_one, just add the column
+ builder.configure_column(column,editable=True,cellEditor="agSelectCellEditor",cellEditorParams={"values": values_list}, cellStyle = cell_style)
+ builder.configure_grid_options(enableRangeSelection=True, enableFillHandle=True, suppressMovableColumns=True, singleClickEdit=True)
+ gridOptions = builder.build()
+ grid_return = AgGrid(
+ df,
+ gridOptions=gridOptions,
+ update_mode=GridUpdateMode.MANUAL,
+ data_return_mode=DataReturnMode.AS_INPUT)
+ df = grid_return["data"]
+ df.replace("empty", np.nan, inplace=True)
+
+ elif values_list is None: # if there is no list of values, make the column editable
+ builder.configure_column(column, editable=True, cellStyle = cell_style)
+ builder.configure_grid_options(enableRangeSelection=True, enableFillHandle=True, suppressMovableColumns=True, singleClickEdit=True)
+ gridOptions = builder.build()
+ grid_return = AgGrid(
+ df,
+ gridOptions=gridOptions,
+ update_mode=GridUpdateMode.MANUAL,
+ data_return_mode=DataReturnMode.AS_INPUT)
+ df = grid_return["data"]
+ df.replace("empty", np.nan, inplace=True)
+ return df
+
+def multiple_ontology_tree(column, element_list, nodes, df, multiple_in_one = False):
+ """
+ This function asks the column name, all the elements for the drop down menu and the nodes for the tree.
+ It asks for the number of inputs and then creates the input dataframe with in-cell drop down menus with the chosen values.
+ """
+ #get index of column based on name
+ if column not in df.columns:
+ df[column] = np.nan
+ index = df.columns.get_loc(column)
+ col1, col2, col3 = st.columns(3)
+ columns_to_adapt = [column]
+ with col1:
+ multiple = st.radio(f"Are there multiple {column} in your data?", ("No", "Yes"))
+ if multiple == "Yes":
+ with col2:
+ number = st.number_input(
+ f"How many different {column} are in your data?",
+ min_value=0,
+ step=1)
+ with col3:
+ if multiple_in_one:
+ multiple_in_one_sel = st.radio(f"Are there multiple {column} within one sample?", ("No", "Yes"))
+ if multiple_in_one_sel == "Yes":
+ for i in range(number-1):
+ # add column next to the original column if it is not already there
+ if f"{column}_{i+1}" not in df.columns:
+ df.insert(index+1, f"{column}_{i+1}", "empty")
+ columns_to_adapt.append(f"{column}_{i+1}")
+ else:
+ number = 1
+
+ with st.form("Select here your ontology terms using the autocomplete function or the ontology-based tree menu", clear_on_submit=True):
+ col4, col5 = st.columns(2)
+ with col4:
+ # selectbox with search option
+ element_list.append(" ")
+ element_list = set(element_list)
+ return_search = st.multiselect(
+ "Select your matching ontology term using this autocomplete function",
+ element_list,
+ max_selections=number,
+ )
+
+ with col5:
+ st.write("Or follow the ontology based drop down menu below")
+ return_select = tree_select(
+ nodes, no_cascade=True, expand_on_click=True, check_model="leaf"
+ )
+ all = return_search + return_select["checked"]
+ all = [i.split(',')[-1] for i in all if i is not None]
+ if (len(all) >= 1) & (len(all) != number):
+ st.error(f"You need to select a total of {number}.")
+ s = st.form_submit_button("Submit selection")
+ if s:
+ st.write(f"Selection contains: {all}")
+
+ if s & (len(all) == 1) & number == 1:
+ df[column] = all[0]
+ st.experimental_rerun()
+
+ else:
+ df.fillna("empty", inplace=True)
+ st.write(f"If all cells are correctly filled in click twice on the update button")
+ cell_style = {"background-color": "#ffa478"}
+ builder = GridOptionsBuilder.from_dataframe(df)
+ builder.configure_columns(columns_to_adapt,editable=True,cellEditor="agSelectCellEditor",cellEditorParams={"values": all},cellStyle=cell_style)
+ builder.configure_grid_options(enableRangeSelection=True, enableFillHandle=True, suppressMovableColumns=True, singleClickEdit=True)
+ go = builder.build()
+ grid_return = AgGrid(df,gridOptions=go,update_mode=GridUpdateMode.MANUAL,data_return_mode=DataReturnMode.AS_INPUT)
+ df = grid_return["data"]
+ df.replace("empty", np.nan, inplace=True)
+ return df
+
+def convert_df(df):
+ return df.to_csv(index=False).encode("utf-8")
+
+# function check_df_for_ontology_terms
+# checks if the dataframe contains ontology terms
+
+def check_df_for_ontology_terms(df, columns_to_check, column_ontology_dict):
+ clear_columns = []
+ for i in columns_to_check:
+ name = (i.split('[')[-1].split(']')[0]).replace(' ', '_')
+ name = 'all_' + name + '_elements'
+ #if the column is an ontology column
+ if name in column_ontology_dict.keys():
+ onto_elements = column_ontology_dict[name]
+ elements = df[i].unique()
+ elements = [i for i in elements if i is not np.nan]
+ # check if elements are all in onto_elements
+ # if not, return the elements that are not in the ontology
+ if not set(elements).issubset(set(onto_elements)):
+ not_in_onto = set(elements) - set(onto_elements)
+ st.error(f'The following elements are not in the ontology: {not_in_onto}')
+ clear_columns.append(i)
+ elif set(elements).issubset(set(onto_elements)) and len(elements) >= 1:
+ st.success(f'The column {i} contains only ontology terms')
+ if i == 'characteristics[age]':
+ if not check_age_format(df, 'characteristics[age]'):
+ st.error(f'The age format is not correct. Please use the following format: 1Y 2M 3D')
+ clear_columns.append(i)
+ if i == 'characteristics[sex]':
+ uniques = np.unique(df[i].values())
+ accepted = ['M', 'F', 'unknown']
+ # check if uniques contain value that is not in accepted
+ if not set(uniques).issubset(set(accepted)):
+ not_in_onto = set(uniques) - set(accepted)
+ st.error(f'{not_in_onto} are not accepted in the characteristics[sex] column. Please use M, F or unknown')
+ clear_columns.append(i)
+
+ # if there are columns that are not in the ontology, ask if the user wants to clear them
+ if len(clear_columns) >= 1:
+ st.error(f'The following columns contain elements that are not in the ontology: {clear_columns}')
+ st.write('Do you want to clear these columns?')
+ y = st.checkbox("Yes")
+ n = st.checkbox("No")
+ if y:
+ for i in clear_columns:
+ df[i] = np.nan
+ st.success(f'Column {i} has been cleared')
+
+def check_age_format(df, column):
+ """
+ Check if the data in a column in a pandas dataframe follows the age formatting of Y M D.
+ If a range, this should be formatted as e.g. 48Y-84Y.
+ Parameters:
+ df (pandas.DataFrame): The pandas dataframe to check.
+ column (str): The name of the column to check.
+
+
+ Returns:
+ tuple: (bool, list) where bool indicates if all data in the column follows the age formatting
+ and list contains the wrong parts (if any).
+ """
+ wrong_parts = []
+ for index, row in df.iterrows():
+ if row[column] not in ["", "empty", "None", "Not available"]:
+ if not re.match(r"^(\s*\d+\s*Y)?(\s*\d+\s*M)?(\s*\d+\s*D)?(|\s*-\s*\d+\s*Y)?(|\s*-\s*\d+\s*M)?(|\s*-\s*\d+\s*D)?(/)?(|\s*\d+\s*Y)?(|\s*\d+\s*M)?(|\s*\d+\s*D)?$", str(row[column])):
+ wrong_parts.append(row[column])
+ return False if wrong_parts else True, wrong_parts
+
+def convert_df(df):
+ """This function requires a dataframe and sorts its columns as source name - characteristics - others - comment.
+ Leading and trailing whitespaces are removed from all columns
+ It then converts the dataframe to a tsv file and downloads it
+ It also adds an comment[tool metadata] to indicate it was built with lesSDRF and ontology versioning"""
+ df["comment[tool metadata]"] = "lesSDRF v0.1.0"
+ #sort dataframe so that "source name" is the first column
+ cols = df.columns.tolist()
+ #get all elements from the list that start with "characteristic" and sort them alphabetically
+ characteristic_cols = sorted([i for i in cols if i.startswith("characteristic")])
+ #first elements in characteric_cols should always be characteristics[organism] characteristics[organism part]
+ if "characteristics[organism]" in characteristic_cols:
+ characteristic_cols.remove("characteristics[organism]")
+ characteristic_cols.insert(0, "characteristics[organism]")
+ if "characteristics[organism part]" in characteristic_cols:
+ characteristic_cols.remove("characteristics[organism part]")
+ characteristic_cols.insert(1, "characteristics[organism part]")
+ comment_cols = sorted([i for i in cols if i.startswith("comment")])
+ factor_value_cols = sorted([i for i in cols if i.startswith("factor")])
+ #get all columns that don't start with "characteristic" or "comment"
+ other_cols = [i for i in cols if i not in characteristic_cols and i not in comment_cols and i not in factor_value_cols and i not in ["source name"]]
+ #reorder the columns
+ new_cols = ["source name"] + characteristic_cols + other_cols + comment_cols + factor_value_cols
+ df = df[new_cols]
+ #if a column name contains _ followed by a number, remove the underscore and the number
+ df.columns = [re.sub(r"(_\d+)", "", i) for i in df.columns]
+ #remove leading and trailing whitespaces from all columns
+ df = df.apply(lambda x: x.str.strip() if x.dtype == "object" else x)
+ return df.to_csv(index=False, sep="\t").encode("utf-8")
+
+
+
+def autocomplete_species_search(taxum_list, search_term):
+ col1, col2 = st.columns(2)
+ if (search_term != "") and (search_term != None):
+ # Use the filter method to dynamically filter the list of options
+ filtered_options = list(filter(lambda x: search_term.lower() in x.lower(), taxum_list))
+ exact_match = list(filter(lambda x: search_term.lower() == x.lower(), taxum_list))
+ if exact_match:
+ with col1:
+ st.write(f"An exact match was found: **{exact_match[0]}**")
+ with col2:
+ use_exact_match = st.checkbox("Use exact match", key=f"exact_{search_term}")
+ if use_exact_match:
+ return exact_match[0]
+ # if length is between 0 and 500, display the options
+ if len(filtered_options) > 0 and len(filtered_options) < 500:
+ with col1:
+ selected_options = st.multiselect("Some options closely matching your search time could be found", filtered_options)
+ # Display the selected options
+ with col2:
+ if selected_options:
+ st.write("You selected:", selected_options)
+ use_options = st.checkbox("Use selected options", key=f"selected_{search_term}")
+ if use_options:
+ return selected_options
+ if len(filtered_options) > 500:
+ st.write("Too many closely related options to display (>500). Please refine your search.")
+ if len(filtered_options) == 0:
+ st.write("No options found. Please refine your search.")
\ No newline at end of file
diff --git a/.history/ParsingModule_20240927140740.py b/.history/ParsingModule_20240927140740.py
new file mode 100644
index 0000000..9f8c526
--- /dev/null
+++ b/.history/ParsingModule_20240927140740.py
@@ -0,0 +1,417 @@
+import pronto
+from pronto import Ontology
+from collections import defaultdict
+import json
+import gzip
+import pickle
+import streamlit as st
+import numpy as np
+import pandas as pd
+import re
+from st_aggrid import AgGrid, GridOptionsBuilder, GridUpdateMode, DataReturnMode
+from streamlit_tree_select import tree_select
+
+def help():
+ """This module contains all parsable functions necessary to build the SDRF GUI"""
+ print("This module contains all parsable functions necessary to build the SDRF GUI")
+ print(
+ "The get_json_subclasses function returns a nested dictionary of all subclasses of a given term in a json ontology"
+ )
+ print(
+ "The get_obo_subclasses function returns a nested dictionary of all subclasses of a given term in an obo ontology"
+ )
+ print("The flatten function returns a list of all values in a nested dictionary")
+ print(
+ "The transform_nested_dict_to_tree function returns a list of dictionaries that can be used to build a tree in streamlit"
+ )
+ print(
+ "The store_as_gzipped_json function stores a dictionary/list as a gzipped json file"
+ )
+ print(
+ "The open_gzipped_json function opens a gzipped json file and returns the dictionary/list"
+ )
+
+
+def get_json_subclasses(ontology, term_id, term_label, d, nodes_dict=None, data=None):
+ """This function takes the path to the ontology file in json format, the desired term id from the root node (e.g. http://www.ebi.ac.uk/efo/EFO_0000635) and the term label (e.g. 'organism part')
+ and returns a nested dictionary of all subclasses of the given term.
+ """
+ if nodes_dict is None: # load the json file only once
+ with open(ontology) as f:
+ data = json.load(f)
+ nodes_dict = {
+ node["id"]: node["lbl"]
+ for node in data["graphs"][0]["nodes"]
+ if all(key in node for key in ["id", "lbl"])
+ }
+
+ if term_id not in nodes_dict:
+ return f"{term_id} node not in ontology" # node not found in ontology, return early
+
+ if term_label not in d:
+ d[term_label] = {} # add the parent to the dictionary
+
+ for term in data["graphs"][0]["edges"]: # iterate through the edges
+ if (term["obj"] == term_id) and (
+ term["pred"] in ["http://purl.obolibrary.org/obo/BFO_0000050", "is_a"]
+ ):
+ parent = term["sub"]
+ if parent == "http://purl.obolibrary.org/obo/MONDO_0011876":
+ continue # skip MONDO_0011876
+ parent_label = nodes_dict.get(parent)
+ if parent_label is not None:
+ if parent_label in d:
+ d[term_label][parent_label] = d[parent_label]
+ del d[parent_label]
+ else:
+ d[term_label][parent_label] = {}
+ get_json_subclasses(
+ ontology, parent, parent_label, d[term_label], nodes_dict, data
+ )
+
+ return d
+
+
+def remove_duplicate_values(d):
+ for k, v in d.items():
+ if isinstance(v, dict):
+ remove_duplicate_values(v)
+ if k in v:
+ del v[k]
+
+ return d
+
+
+def get_obo_subclasses(onto, obo_id, obo_label, d=None, distance=1):
+ if d is None:
+ d = defaultdict(dict)
+ """This function is built on pronto.
+ It takes the path to the ontology file in obo format, the desired term id from the root node (e.g. MS:1000031) and the term label (e.g. 'instrument model')
+ and returns a nested dictionary of all subclasses of the given term. To only get the direct subclasses, the distance is set to 1
+ """
+
+ subclasses = list(onto[obo_id].subclasses(distance=1))
+ if len(subclasses) > 1:
+ d[obo_label] = {}
+ for i in subclasses[1:]:
+ obo_id = i.id
+ obo_label = i.name
+ d[obo_label] = get_obo_subclasses(
+ onto, obo_id, obo_label, defaultdict(dict), distance=1
+ )
+ else:
+ d = {}
+
+ d = remove_dupcliate_values(d)
+ return d
+
+
+def flatten(d):
+ """This function takes a nested dictionary and returns all unique elements in the dictionary as a list"""
+ if not isinstance(d, dict):
+ print("Input is not a dictionary")
+ items = []
+ for k, v in d.items(): # iterate through the dictionary
+ items.append(k) # add the key to the list
+ if isinstance(
+ v, dict
+ ): # if the value is a dictionary, call the function recursively
+ items.extend(flatten(v))
+ else:
+ items.append(v)
+ items = list(set(items))
+ return items
+
+
+def transform_nested_dict_to_tree(d, parent_label=None, parent_value=None):
+ """This function takes a nested dictionary and returns a tree like dictionary that can be used in streamlit streamlit_tree_select"""
+ if not isinstance(d, dict):
+ print("Input is not a dictionary")
+ result = []
+ for key, value in d.items():
+ label = key
+ if parent_label:
+ label = f"{parent_label} , {key}"
+ children = []
+ if value:
+ children = transform_nested_dict_to_tree(value, label, key)
+ if children:
+ result.append({"label": key, "value": label, "children": children})
+ else:
+ result.append({"label": key, "value": label})
+ return result
+
+
+def store_as_gzipped_json(data, filename):
+ """ "Given a datatype to store and the filename, this function stores the data as a gzipped json file in .\\data"""
+ path = (
+ ".\\data\\"
+ + filename
+ + ".json.gz"
+ )
+ with gzip.open(path, "wt") as f:
+ json.dump(data, f)
+ return f"Stored {filename} as gzipped json"
+
+
+def open_gzipped_json(filename):
+ """ "Given a filename, this function opens the data that was stored as a gzipped json in .\\data"""
+ path = (
+ ".\\data\\"
+ + filename
+ + ".json.gz"
+ )
+ with gzip.open(path, "rt") as f:
+ data = json.load(f)
+ return data
+
+def fill_in_from_list(df, column, values_list=None, multiple_in_one=False):
+ """provide dataframe, column and optional a list of values.
+ reates an editable dataframe in which only that column can be modified possibly with the values from the list
+ If the list is empty, the column is freely editable
+ If the list contains only one value, the column is filled with that value
+ If the list contains more than one value, a dropdown menu is created with the values from the list
+ If multiple_in_one is True, multiple columns are created with the same dropdown menu"""
+ columns_to_adapt = [column]
+ df.fillna("empty", inplace=True)
+ cell_style = {"background-color": "#ffa478"}
+ builder = GridOptionsBuilder.from_dataframe(df)
+
+ if values_list and (len(values_list)==1): # if there is only one value, fill in the column with that value
+ df[column] = values_list[0]
+ df.replace("empty", np.nan, inplace=True)
+ elif values_list and (len(values_list)>1): # if there is a list of values, add a dropdown menu to the column
+ # add '' to the beginning of values list so it starts with an empty input
+ values_list.insert(0, "")
+ values_list.insert(1, "NA") #add NA
+ if multiple_in_one: # add columns based on number of values in values_list
+ for i in range(len(values_list)-1):
+ df[f"{column}_{i}"] = ""
+ columns_to_adapt.append(f"{column}_{i}")
+ builder.configure_columns(columns_to_adapt, editable=True, cellEditor="agSelectCellEditor", cellEditorParams={"values": values_list}, cellStyle = cell_style)
+ else: # if not multiple_in_one, just add the column
+ builder.configure_column(column,editable=True,cellEditor="agSelectCellEditor",cellEditorParams={"values": values_list}, cellStyle = cell_style)
+ builder.configure_grid_options(enableRangeSelection=True, enableFillHandle=True, suppressMovableColumns=True, singleClickEdit=True)
+ gridOptions = builder.build()
+ grid_return = AgGrid(
+ df,
+ gridOptions=gridOptions,
+ update_mode=GridUpdateMode.MANUAL,
+ data_return_mode=DataReturnMode.AS_INPUT)
+ df = grid_return["data"]
+ df.replace("empty", np.nan, inplace=True)
+
+ elif values_list is None: # if there is no list of values, make the column editable
+ builder.configure_column(column, editable=True, cellStyle = cell_style)
+ builder.configure_grid_options(enableRangeSelection=True, enableFillHandle=True, suppressMovableColumns=True, singleClickEdit=True)
+ gridOptions = builder.build()
+ grid_return = AgGrid(
+ df,
+ gridOptions=gridOptions,
+ update_mode=GridUpdateMode.MANUAL,
+ data_return_mode=DataReturnMode.AS_INPUT)
+ df = grid_return["data"]
+ df.replace("empty", np.nan, inplace=True)
+ return df
+
+def multiple_ontology_tree(column, element_list, nodes, df, multiple_in_one = False):
+ """
+ This function asks the column name, all the elements for the drop down menu and the nodes for the tree.
+ It asks for the number of inputs and then creates the input dataframe with in-cell drop down menus with the chosen values.
+ """
+ #get index of column based on name
+ if column not in df.columns:
+ df[column] = np.nan
+ index = df.columns.get_loc(column)
+ col1, col2, col3 = st.columns(3)
+ columns_to_adapt = [column]
+ with col1:
+ multiple = st.radio(f"Are there multiple {column} in your data?", ("No", "Yes"))
+ if multiple == "Yes":
+ with col2:
+ number = st.number_input(
+ f"How many different {column} are in your data?",
+ min_value=0,
+ step=1)
+ with col3:
+ if multiple_in_one:
+ multiple_in_one_sel = st.radio(f"Are there multiple {column} within one sample?", ("No", "Yes"))
+ if multiple_in_one_sel == "Yes":
+ for i in range(number-1):
+ # add column next to the original column if it is not already there
+ if f"{column}_{i+1}" not in df.columns:
+ df.insert(index+1, f"{column}_{i+1}", "empty")
+ columns_to_adapt.append(f"{column}_{i+1}")
+ else:
+ number = 1
+
+ with st.form("Select here your ontology terms using the autocomplete function or the ontology-based tree menu", clear_on_submit=True):
+ col4, col5 = st.columns(2)
+ with col4:
+ # selectbox with search option
+ element_list.append(" ")
+ element_list = set(element_list)
+ return_search = st.multiselect(
+ "Select your matching ontology term using this autocomplete function",
+ element_list,
+ max_selections=number,
+ )
+
+ with col5:
+ st.write("Or follow the ontology based drop down menu below")
+ return_select = tree_select(
+ nodes, no_cascade=True, expand_on_click=True, check_model="leaf"
+ )
+ all = return_search + return_select["checked"]
+ all = [i.split(',')[-1] for i in all if i is not None]
+ if (len(all) >= 1) & (len(all) != number):
+ st.error(f"You need to select a total of {number}.")
+ s = st.form_submit_button("Submit selection")
+ if s:
+ st.write(f"Selection contains: {all}")
+
+ if s & (len(all) == 1) & number == 1:
+ df[column] = all[0]
+ st.experimental_rerun()
+
+ else:
+ df.fillna("empty", inplace=True)
+ st.write(f"If all cells are correctly filled in click twice on the update button")
+ cell_style = {"background-color": "#ffa478"}
+ builder = GridOptionsBuilder.from_dataframe(df)
+ builder.configure_columns(columns_to_adapt,editable=True,cellEditor="agSelectCellEditor",cellEditorParams={"values": all},cellStyle=cell_style)
+ builder.configure_grid_options(enableRangeSelection=True, enableFillHandle=True, suppressMovableColumns=True, singleClickEdit=True)
+ go = builder.build()
+ grid_return = AgGrid(df,gridOptions=go,update_mode=GridUpdateMode.MANUAL,data_return_mode=DataReturnMode.AS_INPUT)
+ df = grid_return["data"]
+ df.replace("empty", np.nan, inplace=True)
+ return df
+
+def convert_df(df):
+ return df.to_csv(index=False).encode("utf-8")
+
+# function check_df_for_ontology_terms
+# checks if the dataframe contains ontology terms
+
+def check_df_for_ontology_terms(df, columns_to_check, column_ontology_dict):
+ clear_columns = []
+ for i in columns_to_check:
+ name = (i.split('[')[-1].split(']')[0]).replace(' ', '_')
+ name = 'all_' + name + '_elements'
+ #if the column is an ontology column
+ if name in column_ontology_dict.keys():
+ onto_elements = column_ontology_dict[name]
+ elements = df[i].unique()
+ elements = [i for i in elements if i is not np.nan]
+ # check if elements are all in onto_elements
+ # if not, return the elements that are not in the ontology
+ if not set(elements).issubset(set(onto_elements)):
+ not_in_onto = set(elements) - set(onto_elements)
+ st.error(f'The following elements are not in the ontology: {not_in_onto}')
+ clear_columns.append(i)
+ elif set(elements).issubset(set(onto_elements)) and len(elements) >= 1:
+ st.success(f'The column {i} contains only ontology terms')
+ if i == 'characteristics[age]':
+ if not check_age_format(df, 'characteristics[age]'):
+ st.error(f'The age format is not correct. Please use the following format: 1Y 2M 3D')
+ clear_columns.append(i)
+ if i == 'characteristics[sex]':
+ uniques = np.unique(df[i].values())
+ accepted = ['M', 'F', 'unknown']
+ # check if uniques contain value that is not in accepted
+ if not set(uniques).issubset(set(accepted)):
+ not_in_onto = set(uniques) - set(accepted)
+ st.error(f'{not_in_onto} are not accepted in the characteristics[sex] column. Please use M, F or unknown')
+ clear_columns.append(i)
+
+ # if there are columns that are not in the ontology, ask if the user wants to clear them
+ if len(clear_columns) >= 1:
+ st.error(f'The following columns contain elements that are not in the ontology: {clear_columns}')
+ st.write('Do you want to clear these columns?')
+ y = st.checkbox("Yes")
+ n = st.checkbox("No")
+ if y:
+ for i in clear_columns:
+ df[i] = np.nan
+ st.success(f'Column {i} has been cleared')
+
+def check_age_format(df, column):
+ """
+ Check if the data in a column in a pandas dataframe follows the age formatting of Y M D.
+ If a range, this should be formatted as e.g. 48Y-84Y.
+ Parameters:
+ df (pandas.DataFrame): The pandas dataframe to check.
+ column (str): The name of the column to check.
+
+
+ Returns:
+ tuple: (bool, list) where bool indicates if all data in the column follows the age formatting
+ and list contains the wrong parts (if any).
+ """
+ wrong_parts = []
+ for index, row in df.iterrows():
+ if row[column] not in ["", "empty", "None", "Not available"]:
+ if not re.match(r"^(\s*\d+\s*Y)?(\s*\d+\s*M)?(\s*\d+\s*D)?(|\s*-\s*\d+\s*Y)?(|\s*-\s*\d+\s*M)?(|\s*-\s*\d+\s*D)?(/)?(|\s*\d+\s*Y)?(|\s*\d+\s*M)?(|\s*\d+\s*D)?$", str(row[column])):
+ wrong_parts.append(row[column])
+ return False if wrong_parts else True, wrong_parts
+
+def convert_df(df):
+ """This function requires a dataframe and sorts its columns as source name - characteristics - others - comment.
+ Leading and trailing whitespaces are removed from all columns
+ It then converts the dataframe to a tsv file and downloads it
+ It also adds an comment[tool metadata] to indicate it was built with lesSDRF and ontology versioning"""
+ df["comment[tool metadata]"] = "lesSDRF v0.1.0"
+ #sort dataframe so that "source name" is the first column
+ cols = df.columns.tolist()
+ #get all elements from the list that start with "characteristic" and sort them alphabetically
+ characteristic_cols = sorted([i for i in cols if i.startswith("characteristic")])
+ #first elements in characteric_cols should always be characteristics[organism] characteristics[organism part]
+ if "characteristics[organism]" in characteristic_cols:
+ characteristic_cols.remove("characteristics[organism]")
+ characteristic_cols.insert(0, "characteristics[organism]")
+ if "characteristics[organism part]" in characteristic_cols:
+ characteristic_cols.remove("characteristics[organism part]")
+ characteristic_cols.insert(1, "characteristics[organism part]")
+ comment_cols = sorted([i for i in cols if i.startswith("comment")])
+ factor_value_cols = sorted([i for i in cols if i.startswith("factor")])
+ #get all columns that don't start with "characteristic" or "comment"
+ other_cols = [i for i in cols if i not in characteristic_cols and i not in comment_cols and i not in factor_value_cols and i not in ["source name"]]
+ #reorder the columns
+ new_cols = ["source name"] + characteristic_cols + other_cols + comment_cols + factor_value_cols
+ df = df[new_cols]
+ #if a column name contains _ followed by a number, remove the underscore and the number
+ df.columns = [re.sub(r"(_\d+)", "", i) for i in df.columns]
+ #remove leading and trailing whitespaces from all columns
+ df = df.apply(lambda x: x.str.strip() if x.dtype == "object" else x)
+ return df.to_csv(index=False, sep="\t").encode("utf-8")
+
+
+
+def autocomplete_species_search(taxum_list, search_term):
+ col1, col2 = st.columns(2)
+ if (search_term != "") and (search_term != None):
+ # Use the filter method to dynamically filter the list of options
+ filtered_options = list(filter(lambda x: search_term.lower() in x.lower(), taxum_list))
+ exact_match = list(filter(lambda x: search_term.lower() == x.lower(), taxum_list))
+ if exact_match:
+ with col1:
+ st.write(f"An exact match was found: **{exact_match[0]}**")
+ with col2:
+ use_exact_match = st.checkbox("Use exact match", key=f"exact_{search_term}")
+ if use_exact_match:
+ return exact_match[0]
+ # if length is between 0 and 500, display the options
+ if len(filtered_options) > 0 and len(filtered_options) < 500:
+ with col1:
+ selected_options = st.multiselect("Some options closely matching your search time could be found", filtered_options)
+ # Display the selected options
+ with col2:
+ if selected_options:
+ st.write("You selected:", selected_options)
+ use_options = st.checkbox("Use selected options", key=f"selected_{search_term}")
+ if use_options:
+ return selected_options
+ if len(filtered_options) > 500:
+ st.write("Too many closely related options to display (>500). Please refine your search.")
+ if len(filtered_options) == 0:
+ st.write("No options found. Please refine your search.")
\ No newline at end of file
diff --git a/.history/ParsingModule_20240927140744.py b/.history/ParsingModule_20240927140744.py
new file mode 100644
index 0000000..9f8c526
--- /dev/null
+++ b/.history/ParsingModule_20240927140744.py
@@ -0,0 +1,417 @@
+import pronto
+from pronto import Ontology
+from collections import defaultdict
+import json
+import gzip
+import pickle
+import streamlit as st
+import numpy as np
+import pandas as pd
+import re
+from st_aggrid import AgGrid, GridOptionsBuilder, GridUpdateMode, DataReturnMode
+from streamlit_tree_select import tree_select
+
+def help():
+ """This module contains all parsable functions necessary to build the SDRF GUI"""
+ print("This module contains all parsable functions necessary to build the SDRF GUI")
+ print(
+ "The get_json_subclasses function returns a nested dictionary of all subclasses of a given term in a json ontology"
+ )
+ print(
+ "The get_obo_subclasses function returns a nested dictionary of all subclasses of a given term in an obo ontology"
+ )
+ print("The flatten function returns a list of all values in a nested dictionary")
+ print(
+ "The transform_nested_dict_to_tree function returns a list of dictionaries that can be used to build a tree in streamlit"
+ )
+ print(
+ "The store_as_gzipped_json function stores a dictionary/list as a gzipped json file"
+ )
+ print(
+ "The open_gzipped_json function opens a gzipped json file and returns the dictionary/list"
+ )
+
+
+def get_json_subclasses(ontology, term_id, term_label, d, nodes_dict=None, data=None):
+ """This function takes the path to the ontology file in json format, the desired term id from the root node (e.g. http://www.ebi.ac.uk/efo/EFO_0000635) and the term label (e.g. 'organism part')
+ and returns a nested dictionary of all subclasses of the given term.
+ """
+ if nodes_dict is None: # load the json file only once
+ with open(ontology) as f:
+ data = json.load(f)
+ nodes_dict = {
+ node["id"]: node["lbl"]
+ for node in data["graphs"][0]["nodes"]
+ if all(key in node for key in ["id", "lbl"])
+ }
+
+ if term_id not in nodes_dict:
+ return f"{term_id} node not in ontology" # node not found in ontology, return early
+
+ if term_label not in d:
+ d[term_label] = {} # add the parent to the dictionary
+
+ for term in data["graphs"][0]["edges"]: # iterate through the edges
+ if (term["obj"] == term_id) and (
+ term["pred"] in ["http://purl.obolibrary.org/obo/BFO_0000050", "is_a"]
+ ):
+ parent = term["sub"]
+ if parent == "http://purl.obolibrary.org/obo/MONDO_0011876":
+ continue # skip MONDO_0011876
+ parent_label = nodes_dict.get(parent)
+ if parent_label is not None:
+ if parent_label in d:
+ d[term_label][parent_label] = d[parent_label]
+ del d[parent_label]
+ else:
+ d[term_label][parent_label] = {}
+ get_json_subclasses(
+ ontology, parent, parent_label, d[term_label], nodes_dict, data
+ )
+
+ return d
+
+
+def remove_duplicate_values(d):
+ for k, v in d.items():
+ if isinstance(v, dict):
+ remove_duplicate_values(v)
+ if k in v:
+ del v[k]
+
+ return d
+
+
+def get_obo_subclasses(onto, obo_id, obo_label, d=None, distance=1):
+ if d is None:
+ d = defaultdict(dict)
+ """This function is built on pronto.
+ It takes the path to the ontology file in obo format, the desired term id from the root node (e.g. MS:1000031) and the term label (e.g. 'instrument model')
+ and returns a nested dictionary of all subclasses of the given term. To only get the direct subclasses, the distance is set to 1
+ """
+
+ subclasses = list(onto[obo_id].subclasses(distance=1))
+ if len(subclasses) > 1:
+ d[obo_label] = {}
+ for i in subclasses[1:]:
+ obo_id = i.id
+ obo_label = i.name
+ d[obo_label] = get_obo_subclasses(
+ onto, obo_id, obo_label, defaultdict(dict), distance=1
+ )
+ else:
+ d = {}
+
+ d = remove_dupcliate_values(d)
+ return d
+
+
+def flatten(d):
+ """This function takes a nested dictionary and returns all unique elements in the dictionary as a list"""
+ if not isinstance(d, dict):
+ print("Input is not a dictionary")
+ items = []
+ for k, v in d.items(): # iterate through the dictionary
+ items.append(k) # add the key to the list
+ if isinstance(
+ v, dict
+ ): # if the value is a dictionary, call the function recursively
+ items.extend(flatten(v))
+ else:
+ items.append(v)
+ items = list(set(items))
+ return items
+
+
+def transform_nested_dict_to_tree(d, parent_label=None, parent_value=None):
+ """This function takes a nested dictionary and returns a tree like dictionary that can be used in streamlit streamlit_tree_select"""
+ if not isinstance(d, dict):
+ print("Input is not a dictionary")
+ result = []
+ for key, value in d.items():
+ label = key
+ if parent_label:
+ label = f"{parent_label} , {key}"
+ children = []
+ if value:
+ children = transform_nested_dict_to_tree(value, label, key)
+ if children:
+ result.append({"label": key, "value": label, "children": children})
+ else:
+ result.append({"label": key, "value": label})
+ return result
+
+
+def store_as_gzipped_json(data, filename):
+ """ "Given a datatype to store and the filename, this function stores the data as a gzipped json file in .\\data"""
+ path = (
+ ".\\data\\"
+ + filename
+ + ".json.gz"
+ )
+ with gzip.open(path, "wt") as f:
+ json.dump(data, f)
+ return f"Stored {filename} as gzipped json"
+
+
+def open_gzipped_json(filename):
+ """ "Given a filename, this function opens the data that was stored as a gzipped json in .\\data"""
+ path = (
+ ".\\data\\"
+ + filename
+ + ".json.gz"
+ )
+ with gzip.open(path, "rt") as f:
+ data = json.load(f)
+ return data
+
+def fill_in_from_list(df, column, values_list=None, multiple_in_one=False):
+ """provide dataframe, column and optional a list of values.
+ reates an editable dataframe in which only that column can be modified possibly with the values from the list
+ If the list is empty, the column is freely editable
+ If the list contains only one value, the column is filled with that value
+ If the list contains more than one value, a dropdown menu is created with the values from the list
+ If multiple_in_one is True, multiple columns are created with the same dropdown menu"""
+ columns_to_adapt = [column]
+ df.fillna("empty", inplace=True)
+ cell_style = {"background-color": "#ffa478"}
+ builder = GridOptionsBuilder.from_dataframe(df)
+
+ if values_list and (len(values_list)==1): # if there is only one value, fill in the column with that value
+ df[column] = values_list[0]
+ df.replace("empty", np.nan, inplace=True)
+ elif values_list and (len(values_list)>1): # if there is a list of values, add a dropdown menu to the column
+ # add '' to the beginning of values list so it starts with an empty input
+ values_list.insert(0, "")
+ values_list.insert(1, "NA") #add NA
+ if multiple_in_one: # add columns based on number of values in values_list
+ for i in range(len(values_list)-1):
+ df[f"{column}_{i}"] = ""
+ columns_to_adapt.append(f"{column}_{i}")
+ builder.configure_columns(columns_to_adapt, editable=True, cellEditor="agSelectCellEditor", cellEditorParams={"values": values_list}, cellStyle = cell_style)
+ else: # if not multiple_in_one, just add the column
+ builder.configure_column(column,editable=True,cellEditor="agSelectCellEditor",cellEditorParams={"values": values_list}, cellStyle = cell_style)
+ builder.configure_grid_options(enableRangeSelection=True, enableFillHandle=True, suppressMovableColumns=True, singleClickEdit=True)
+ gridOptions = builder.build()
+ grid_return = AgGrid(
+ df,
+ gridOptions=gridOptions,
+ update_mode=GridUpdateMode.MANUAL,
+ data_return_mode=DataReturnMode.AS_INPUT)
+ df = grid_return["data"]
+ df.replace("empty", np.nan, inplace=True)
+
+ elif values_list is None: # if there is no list of values, make the column editable
+ builder.configure_column(column, editable=True, cellStyle = cell_style)
+ builder.configure_grid_options(enableRangeSelection=True, enableFillHandle=True, suppressMovableColumns=True, singleClickEdit=True)
+ gridOptions = builder.build()
+ grid_return = AgGrid(
+ df,
+ gridOptions=gridOptions,
+ update_mode=GridUpdateMode.MANUAL,
+ data_return_mode=DataReturnMode.AS_INPUT)
+ df = grid_return["data"]
+ df.replace("empty", np.nan, inplace=True)
+ return df
+
+def multiple_ontology_tree(column, element_list, nodes, df, multiple_in_one = False):
+ """
+ This function asks the column name, all the elements for the drop down menu and the nodes for the tree.
+ It asks for the number of inputs and then creates the input dataframe with in-cell drop down menus with the chosen values.
+ """
+ #get index of column based on name
+ if column not in df.columns:
+ df[column] = np.nan
+ index = df.columns.get_loc(column)
+ col1, col2, col3 = st.columns(3)
+ columns_to_adapt = [column]
+ with col1:
+ multiple = st.radio(f"Are there multiple {column} in your data?", ("No", "Yes"))
+ if multiple == "Yes":
+ with col2:
+ number = st.number_input(
+ f"How many different {column} are in your data?",
+ min_value=0,
+ step=1)
+ with col3:
+ if multiple_in_one:
+ multiple_in_one_sel = st.radio(f"Are there multiple {column} within one sample?", ("No", "Yes"))
+ if multiple_in_one_sel == "Yes":
+ for i in range(number-1):
+ # add column next to the original column if it is not already there
+ if f"{column}_{i+1}" not in df.columns:
+ df.insert(index+1, f"{column}_{i+1}", "empty")
+ columns_to_adapt.append(f"{column}_{i+1}")
+ else:
+ number = 1
+
+ with st.form("Select here your ontology terms using the autocomplete function or the ontology-based tree menu", clear_on_submit=True):
+ col4, col5 = st.columns(2)
+ with col4:
+ # selectbox with search option
+ element_list.append(" ")
+ element_list = set(element_list)
+ return_search = st.multiselect(
+ "Select your matching ontology term using this autocomplete function",
+ element_list,
+ max_selections=number,
+ )
+
+ with col5:
+ st.write("Or follow the ontology based drop down menu below")
+ return_select = tree_select(
+ nodes, no_cascade=True, expand_on_click=True, check_model="leaf"
+ )
+ all = return_search + return_select["checked"]
+ all = [i.split(',')[-1] for i in all if i is not None]
+ if (len(all) >= 1) & (len(all) != number):
+ st.error(f"You need to select a total of {number}.")
+ s = st.form_submit_button("Submit selection")
+ if s:
+ st.write(f"Selection contains: {all}")
+
+ if s & (len(all) == 1) & number == 1:
+ df[column] = all[0]
+ st.experimental_rerun()
+
+ else:
+ df.fillna("empty", inplace=True)
+ st.write(f"If all cells are correctly filled in click twice on the update button")
+ cell_style = {"background-color": "#ffa478"}
+ builder = GridOptionsBuilder.from_dataframe(df)
+ builder.configure_columns(columns_to_adapt,editable=True,cellEditor="agSelectCellEditor",cellEditorParams={"values": all},cellStyle=cell_style)
+ builder.configure_grid_options(enableRangeSelection=True, enableFillHandle=True, suppressMovableColumns=True, singleClickEdit=True)
+ go = builder.build()
+ grid_return = AgGrid(df,gridOptions=go,update_mode=GridUpdateMode.MANUAL,data_return_mode=DataReturnMode.AS_INPUT)
+ df = grid_return["data"]
+ df.replace("empty", np.nan, inplace=True)
+ return df
+
+def convert_df(df):
+ return df.to_csv(index=False).encode("utf-8")
+
+# function check_df_for_ontology_terms
+# checks if the dataframe contains ontology terms
+
+def check_df_for_ontology_terms(df, columns_to_check, column_ontology_dict):
+ clear_columns = []
+ for i in columns_to_check:
+ name = (i.split('[')[-1].split(']')[0]).replace(' ', '_')
+ name = 'all_' + name + '_elements'
+ #if the column is an ontology column
+ if name in column_ontology_dict.keys():
+ onto_elements = column_ontology_dict[name]
+ elements = df[i].unique()
+ elements = [i for i in elements if i is not np.nan]
+ # check if elements are all in onto_elements
+ # if not, return the elements that are not in the ontology
+ if not set(elements).issubset(set(onto_elements)):
+ not_in_onto = set(elements) - set(onto_elements)
+ st.error(f'The following elements are not in the ontology: {not_in_onto}')
+ clear_columns.append(i)
+ elif set(elements).issubset(set(onto_elements)) and len(elements) >= 1:
+ st.success(f'The column {i} contains only ontology terms')
+ if i == 'characteristics[age]':
+ if not check_age_format(df, 'characteristics[age]'):
+ st.error(f'The age format is not correct. Please use the following format: 1Y 2M 3D')
+ clear_columns.append(i)
+ if i == 'characteristics[sex]':
+ uniques = np.unique(df[i].values())
+ accepted = ['M', 'F', 'unknown']
+ # check if uniques contain value that is not in accepted
+ if not set(uniques).issubset(set(accepted)):
+ not_in_onto = set(uniques) - set(accepted)
+ st.error(f'{not_in_onto} are not accepted in the characteristics[sex] column. Please use M, F or unknown')
+ clear_columns.append(i)
+
+ # if there are columns that are not in the ontology, ask if the user wants to clear them
+ if len(clear_columns) >= 1:
+ st.error(f'The following columns contain elements that are not in the ontology: {clear_columns}')
+ st.write('Do you want to clear these columns?')
+ y = st.checkbox("Yes")
+ n = st.checkbox("No")
+ if y:
+ for i in clear_columns:
+ df[i] = np.nan
+ st.success(f'Column {i} has been cleared')
+
+def check_age_format(df, column):
+ """
+ Check if the data in a column in a pandas dataframe follows the age formatting of Y M D.
+ If a range, this should be formatted as e.g. 48Y-84Y.
+ Parameters:
+ df (pandas.DataFrame): The pandas dataframe to check.
+ column (str): The name of the column to check.
+
+
+ Returns:
+ tuple: (bool, list) where bool indicates if all data in the column follows the age formatting
+ and list contains the wrong parts (if any).
+ """
+ wrong_parts = []
+ for index, row in df.iterrows():
+ if row[column] not in ["", "empty", "None", "Not available"]:
+ if not re.match(r"^(\s*\d+\s*Y)?(\s*\d+\s*M)?(\s*\d+\s*D)?(|\s*-\s*\d+\s*Y)?(|\s*-\s*\d+\s*M)?(|\s*-\s*\d+\s*D)?(/)?(|\s*\d+\s*Y)?(|\s*\d+\s*M)?(|\s*\d+\s*D)?$", str(row[column])):
+ wrong_parts.append(row[column])
+ return False if wrong_parts else True, wrong_parts
+
+def convert_df(df):
+ """This function requires a dataframe and sorts its columns as source name - characteristics - others - comment.
+ Leading and trailing whitespaces are removed from all columns
+ It then converts the dataframe to a tsv file and downloads it
+ It also adds an comment[tool metadata] to indicate it was built with lesSDRF and ontology versioning"""
+ df["comment[tool metadata]"] = "lesSDRF v0.1.0"
+ #sort dataframe so that "source name" is the first column
+ cols = df.columns.tolist()
+ #get all elements from the list that start with "characteristic" and sort them alphabetically
+ characteristic_cols = sorted([i for i in cols if i.startswith("characteristic")])
+ #first elements in characteric_cols should always be characteristics[organism] characteristics[organism part]
+ if "characteristics[organism]" in characteristic_cols:
+ characteristic_cols.remove("characteristics[organism]")
+ characteristic_cols.insert(0, "characteristics[organism]")
+ if "characteristics[organism part]" in characteristic_cols:
+ characteristic_cols.remove("characteristics[organism part]")
+ characteristic_cols.insert(1, "characteristics[organism part]")
+ comment_cols = sorted([i for i in cols if i.startswith("comment")])
+ factor_value_cols = sorted([i for i in cols if i.startswith("factor")])
+ #get all columns that don't start with "characteristic" or "comment"
+ other_cols = [i for i in cols if i not in characteristic_cols and i not in comment_cols and i not in factor_value_cols and i not in ["source name"]]
+ #reorder the columns
+ new_cols = ["source name"] + characteristic_cols + other_cols + comment_cols + factor_value_cols
+ df = df[new_cols]
+ #if a column name contains _ followed by a number, remove the underscore and the number
+ df.columns = [re.sub(r"(_\d+)", "", i) for i in df.columns]
+ #remove leading and trailing whitespaces from all columns
+ df = df.apply(lambda x: x.str.strip() if x.dtype == "object" else x)
+ return df.to_csv(index=False, sep="\t").encode("utf-8")
+
+
+
+def autocomplete_species_search(taxum_list, search_term):
+ col1, col2 = st.columns(2)
+ if (search_term != "") and (search_term != None):
+ # Use the filter method to dynamically filter the list of options
+ filtered_options = list(filter(lambda x: search_term.lower() in x.lower(), taxum_list))
+ exact_match = list(filter(lambda x: search_term.lower() == x.lower(), taxum_list))
+ if exact_match:
+ with col1:
+ st.write(f"An exact match was found: **{exact_match[0]}**")
+ with col2:
+ use_exact_match = st.checkbox("Use exact match", key=f"exact_{search_term}")
+ if use_exact_match:
+ return exact_match[0]
+ # if length is between 0 and 500, display the options
+ if len(filtered_options) > 0 and len(filtered_options) < 500:
+ with col1:
+ selected_options = st.multiselect("Some options closely matching your search time could be found", filtered_options)
+ # Display the selected options
+ with col2:
+ if selected_options:
+ st.write("You selected:", selected_options)
+ use_options = st.checkbox("Use selected options", key=f"selected_{search_term}")
+ if use_options:
+ return selected_options
+ if len(filtered_options) > 500:
+ st.write("Too many closely related options to display (>500). Please refine your search.")
+ if len(filtered_options) == 0:
+ st.write("No options found. Please refine your search.")
\ No newline at end of file
diff --git a/.history/ParsingModule_20240927140942.py b/.history/ParsingModule_20240927140942.py
new file mode 100644
index 0000000..9f8c526
--- /dev/null
+++ b/.history/ParsingModule_20240927140942.py
@@ -0,0 +1,417 @@
+import pronto
+from pronto import Ontology
+from collections import defaultdict
+import json
+import gzip
+import pickle
+import streamlit as st
+import numpy as np
+import pandas as pd
+import re
+from st_aggrid import AgGrid, GridOptionsBuilder, GridUpdateMode, DataReturnMode
+from streamlit_tree_select import tree_select
+
+def help():
+ """This module contains all parsable functions necessary to build the SDRF GUI"""
+ print("This module contains all parsable functions necessary to build the SDRF GUI")
+ print(
+ "The get_json_subclasses function returns a nested dictionary of all subclasses of a given term in a json ontology"
+ )
+ print(
+ "The get_obo_subclasses function returns a nested dictionary of all subclasses of a given term in an obo ontology"
+ )
+ print("The flatten function returns a list of all values in a nested dictionary")
+ print(
+ "The transform_nested_dict_to_tree function returns a list of dictionaries that can be used to build a tree in streamlit"
+ )
+ print(
+ "The store_as_gzipped_json function stores a dictionary/list as a gzipped json file"
+ )
+ print(
+ "The open_gzipped_json function opens a gzipped json file and returns the dictionary/list"
+ )
+
+
+def get_json_subclasses(ontology, term_id, term_label, d, nodes_dict=None, data=None):
+ """This function takes the path to the ontology file in json format, the desired term id from the root node (e.g. http://www.ebi.ac.uk/efo/EFO_0000635) and the term label (e.g. 'organism part')
+ and returns a nested dictionary of all subclasses of the given term.
+ """
+ if nodes_dict is None: # load the json file only once
+ with open(ontology) as f:
+ data = json.load(f)
+ nodes_dict = {
+ node["id"]: node["lbl"]
+ for node in data["graphs"][0]["nodes"]
+ if all(key in node for key in ["id", "lbl"])
+ }
+
+ if term_id not in nodes_dict:
+ return f"{term_id} node not in ontology" # node not found in ontology, return early
+
+ if term_label not in d:
+ d[term_label] = {} # add the parent to the dictionary
+
+ for term in data["graphs"][0]["edges"]: # iterate through the edges
+ if (term["obj"] == term_id) and (
+ term["pred"] in ["http://purl.obolibrary.org/obo/BFO_0000050", "is_a"]
+ ):
+ parent = term["sub"]
+ if parent == "http://purl.obolibrary.org/obo/MONDO_0011876":
+ continue # skip MONDO_0011876
+ parent_label = nodes_dict.get(parent)
+ if parent_label is not None:
+ if parent_label in d:
+ d[term_label][parent_label] = d[parent_label]
+ del d[parent_label]
+ else:
+ d[term_label][parent_label] = {}
+ get_json_subclasses(
+ ontology, parent, parent_label, d[term_label], nodes_dict, data
+ )
+
+ return d
+
+
+def remove_duplicate_values(d):
+ for k, v in d.items():
+ if isinstance(v, dict):
+ remove_duplicate_values(v)
+ if k in v:
+ del v[k]
+
+ return d
+
+
+def get_obo_subclasses(onto, obo_id, obo_label, d=None, distance=1):
+ if d is None:
+ d = defaultdict(dict)
+ """This function is built on pronto.
+ It takes the path to the ontology file in obo format, the desired term id from the root node (e.g. MS:1000031) and the term label (e.g. 'instrument model')
+ and returns a nested dictionary of all subclasses of the given term. To only get the direct subclasses, the distance is set to 1
+ """
+
+ subclasses = list(onto[obo_id].subclasses(distance=1))
+ if len(subclasses) > 1:
+ d[obo_label] = {}
+ for i in subclasses[1:]:
+ obo_id = i.id
+ obo_label = i.name
+ d[obo_label] = get_obo_subclasses(
+ onto, obo_id, obo_label, defaultdict(dict), distance=1
+ )
+ else:
+ d = {}
+
+ d = remove_dupcliate_values(d)
+ return d
+
+
+def flatten(d):
+ """This function takes a nested dictionary and returns all unique elements in the dictionary as a list"""
+ if not isinstance(d, dict):
+ print("Input is not a dictionary")
+ items = []
+ for k, v in d.items(): # iterate through the dictionary
+ items.append(k) # add the key to the list
+ if isinstance(
+ v, dict
+ ): # if the value is a dictionary, call the function recursively
+ items.extend(flatten(v))
+ else:
+ items.append(v)
+ items = list(set(items))
+ return items
+
+
+def transform_nested_dict_to_tree(d, parent_label=None, parent_value=None):
+ """This function takes a nested dictionary and returns a tree like dictionary that can be used in streamlit streamlit_tree_select"""
+ if not isinstance(d, dict):
+ print("Input is not a dictionary")
+ result = []
+ for key, value in d.items():
+ label = key
+ if parent_label:
+ label = f"{parent_label} , {key}"
+ children = []
+ if value:
+ children = transform_nested_dict_to_tree(value, label, key)
+ if children:
+ result.append({"label": key, "value": label, "children": children})
+ else:
+ result.append({"label": key, "value": label})
+ return result
+
+
+def store_as_gzipped_json(data, filename):
+ """ "Given a datatype to store and the filename, this function stores the data as a gzipped json file in .\\data"""
+ path = (
+ ".\\data\\"
+ + filename
+ + ".json.gz"
+ )
+ with gzip.open(path, "wt") as f:
+ json.dump(data, f)
+ return f"Stored {filename} as gzipped json"
+
+
+def open_gzipped_json(filename):
+ """ "Given a filename, this function opens the data that was stored as a gzipped json in .\\data"""
+ path = (
+ ".\\data\\"
+ + filename
+ + ".json.gz"
+ )
+ with gzip.open(path, "rt") as f:
+ data = json.load(f)
+ return data
+
+def fill_in_from_list(df, column, values_list=None, multiple_in_one=False):
+ """provide dataframe, column and optional a list of values.
+ reates an editable dataframe in which only that column can be modified possibly with the values from the list
+ If the list is empty, the column is freely editable
+ If the list contains only one value, the column is filled with that value
+ If the list contains more than one value, a dropdown menu is created with the values from the list
+ If multiple_in_one is True, multiple columns are created with the same dropdown menu"""
+ columns_to_adapt = [column]
+ df.fillna("empty", inplace=True)
+ cell_style = {"background-color": "#ffa478"}
+ builder = GridOptionsBuilder.from_dataframe(df)
+
+ if values_list and (len(values_list)==1): # if there is only one value, fill in the column with that value
+ df[column] = values_list[0]
+ df.replace("empty", np.nan, inplace=True)
+ elif values_list and (len(values_list)>1): # if there is a list of values, add a dropdown menu to the column
+ # add '' to the beginning of values list so it starts with an empty input
+ values_list.insert(0, "")
+ values_list.insert(1, "NA") #add NA
+ if multiple_in_one: # add columns based on number of values in values_list
+ for i in range(len(values_list)-1):
+ df[f"{column}_{i}"] = ""
+ columns_to_adapt.append(f"{column}_{i}")
+ builder.configure_columns(columns_to_adapt, editable=True, cellEditor="agSelectCellEditor", cellEditorParams={"values": values_list}, cellStyle = cell_style)
+ else: # if not multiple_in_one, just add the column
+ builder.configure_column(column,editable=True,cellEditor="agSelectCellEditor",cellEditorParams={"values": values_list}, cellStyle = cell_style)
+ builder.configure_grid_options(enableRangeSelection=True, enableFillHandle=True, suppressMovableColumns=True, singleClickEdit=True)
+ gridOptions = builder.build()
+ grid_return = AgGrid(
+ df,
+ gridOptions=gridOptions,
+ update_mode=GridUpdateMode.MANUAL,
+ data_return_mode=DataReturnMode.AS_INPUT)
+ df = grid_return["data"]
+ df.replace("empty", np.nan, inplace=True)
+
+ elif values_list is None: # if there is no list of values, make the column editable
+ builder.configure_column(column, editable=True, cellStyle = cell_style)
+ builder.configure_grid_options(enableRangeSelection=True, enableFillHandle=True, suppressMovableColumns=True, singleClickEdit=True)
+ gridOptions = builder.build()
+ grid_return = AgGrid(
+ df,
+ gridOptions=gridOptions,
+ update_mode=GridUpdateMode.MANUAL,
+ data_return_mode=DataReturnMode.AS_INPUT)
+ df = grid_return["data"]
+ df.replace("empty", np.nan, inplace=True)
+ return df
+
+def multiple_ontology_tree(column, element_list, nodes, df, multiple_in_one = False):
+ """
+ This function asks the column name, all the elements for the drop down menu and the nodes for the tree.
+ It asks for the number of inputs and then creates the input dataframe with in-cell drop down menus with the chosen values.
+ """
+ #get index of column based on name
+ if column not in df.columns:
+ df[column] = np.nan
+ index = df.columns.get_loc(column)
+ col1, col2, col3 = st.columns(3)
+ columns_to_adapt = [column]
+ with col1:
+ multiple = st.radio(f"Are there multiple {column} in your data?", ("No", "Yes"))
+ if multiple == "Yes":
+ with col2:
+ number = st.number_input(
+ f"How many different {column} are in your data?",
+ min_value=0,
+ step=1)
+ with col3:
+ if multiple_in_one:
+ multiple_in_one_sel = st.radio(f"Are there multiple {column} within one sample?", ("No", "Yes"))
+ if multiple_in_one_sel == "Yes":
+ for i in range(number-1):
+ # add column next to the original column if it is not already there
+ if f"{column}_{i+1}" not in df.columns:
+ df.insert(index+1, f"{column}_{i+1}", "empty")
+ columns_to_adapt.append(f"{column}_{i+1}")
+ else:
+ number = 1
+
+ with st.form("Select here your ontology terms using the autocomplete function or the ontology-based tree menu", clear_on_submit=True):
+ col4, col5 = st.columns(2)
+ with col4:
+ # selectbox with search option
+ element_list.append(" ")
+ element_list = set(element_list)
+ return_search = st.multiselect(
+ "Select your matching ontology term using this autocomplete function",
+ element_list,
+ max_selections=number,
+ )
+
+ with col5:
+ st.write("Or follow the ontology based drop down menu below")
+ return_select = tree_select(
+ nodes, no_cascade=True, expand_on_click=True, check_model="leaf"
+ )
+ all = return_search + return_select["checked"]
+ all = [i.split(',')[-1] for i in all if i is not None]
+ if (len(all) >= 1) & (len(all) != number):
+ st.error(f"You need to select a total of {number}.")
+ s = st.form_submit_button("Submit selection")
+ if s:
+ st.write(f"Selection contains: {all}")
+
+ if s & (len(all) == 1) & number == 1:
+ df[column] = all[0]
+ st.experimental_rerun()
+
+ else:
+ df.fillna("empty", inplace=True)
+ st.write(f"If all cells are correctly filled in click twice on the update button")
+ cell_style = {"background-color": "#ffa478"}
+ builder = GridOptionsBuilder.from_dataframe(df)
+ builder.configure_columns(columns_to_adapt,editable=True,cellEditor="agSelectCellEditor",cellEditorParams={"values": all},cellStyle=cell_style)
+ builder.configure_grid_options(enableRangeSelection=True, enableFillHandle=True, suppressMovableColumns=True, singleClickEdit=True)
+ go = builder.build()
+ grid_return = AgGrid(df,gridOptions=go,update_mode=GridUpdateMode.MANUAL,data_return_mode=DataReturnMode.AS_INPUT)
+ df = grid_return["data"]
+ df.replace("empty", np.nan, inplace=True)
+ return df
+
+def convert_df(df):
+ return df.to_csv(index=False).encode("utf-8")
+
+# function check_df_for_ontology_terms
+# checks if the dataframe contains ontology terms
+
+def check_df_for_ontology_terms(df, columns_to_check, column_ontology_dict):
+ clear_columns = []
+ for i in columns_to_check:
+ name = (i.split('[')[-1].split(']')[0]).replace(' ', '_')
+ name = 'all_' + name + '_elements'
+ #if the column is an ontology column
+ if name in column_ontology_dict.keys():
+ onto_elements = column_ontology_dict[name]
+ elements = df[i].unique()
+ elements = [i for i in elements if i is not np.nan]
+ # check if elements are all in onto_elements
+ # if not, return the elements that are not in the ontology
+ if not set(elements).issubset(set(onto_elements)):
+ not_in_onto = set(elements) - set(onto_elements)
+ st.error(f'The following elements are not in the ontology: {not_in_onto}')
+ clear_columns.append(i)
+ elif set(elements).issubset(set(onto_elements)) and len(elements) >= 1:
+ st.success(f'The column {i} contains only ontology terms')
+ if i == 'characteristics[age]':
+ if not check_age_format(df, 'characteristics[age]'):
+ st.error(f'The age format is not correct. Please use the following format: 1Y 2M 3D')
+ clear_columns.append(i)
+ if i == 'characteristics[sex]':
+ uniques = np.unique(df[i].values())
+ accepted = ['M', 'F', 'unknown']
+ # check if uniques contain value that is not in accepted
+ if not set(uniques).issubset(set(accepted)):
+ not_in_onto = set(uniques) - set(accepted)
+ st.error(f'{not_in_onto} are not accepted in the characteristics[sex] column. Please use M, F or unknown')
+ clear_columns.append(i)
+
+ # if there are columns that are not in the ontology, ask if the user wants to clear them
+ if len(clear_columns) >= 1:
+ st.error(f'The following columns contain elements that are not in the ontology: {clear_columns}')
+ st.write('Do you want to clear these columns?')
+ y = st.checkbox("Yes")
+ n = st.checkbox("No")
+ if y:
+ for i in clear_columns:
+ df[i] = np.nan
+ st.success(f'Column {i} has been cleared')
+
+def check_age_format(df, column):
+ """
+ Check if the data in a column in a pandas dataframe follows the age formatting of Y M D.
+ If a range, this should be formatted as e.g. 48Y-84Y.
+ Parameters:
+ df (pandas.DataFrame): The pandas dataframe to check.
+ column (str): The name of the column to check.
+
+
+ Returns:
+ tuple: (bool, list) where bool indicates if all data in the column follows the age formatting
+ and list contains the wrong parts (if any).
+ """
+ wrong_parts = []
+ for index, row in df.iterrows():
+ if row[column] not in ["", "empty", "None", "Not available"]:
+ if not re.match(r"^(\s*\d+\s*Y)?(\s*\d+\s*M)?(\s*\d+\s*D)?(|\s*-\s*\d+\s*Y)?(|\s*-\s*\d+\s*M)?(|\s*-\s*\d+\s*D)?(/)?(|\s*\d+\s*Y)?(|\s*\d+\s*M)?(|\s*\d+\s*D)?$", str(row[column])):
+ wrong_parts.append(row[column])
+ return False if wrong_parts else True, wrong_parts
+
+def convert_df(df):
+ """This function requires a dataframe and sorts its columns as source name - characteristics - others - comment.
+ Leading and trailing whitespaces are removed from all columns
+ It then converts the dataframe to a tsv file and downloads it
+ It also adds an comment[tool metadata] to indicate it was built with lesSDRF and ontology versioning"""
+ df["comment[tool metadata]"] = "lesSDRF v0.1.0"
+ #sort dataframe so that "source name" is the first column
+ cols = df.columns.tolist()
+ #get all elements from the list that start with "characteristic" and sort them alphabetically
+ characteristic_cols = sorted([i for i in cols if i.startswith("characteristic")])
+ #first elements in characteric_cols should always be characteristics[organism] characteristics[organism part]
+ if "characteristics[organism]" in characteristic_cols:
+ characteristic_cols.remove("characteristics[organism]")
+ characteristic_cols.insert(0, "characteristics[organism]")
+ if "characteristics[organism part]" in characteristic_cols:
+ characteristic_cols.remove("characteristics[organism part]")
+ characteristic_cols.insert(1, "characteristics[organism part]")
+ comment_cols = sorted([i for i in cols if i.startswith("comment")])
+ factor_value_cols = sorted([i for i in cols if i.startswith("factor")])
+ #get all columns that don't start with "characteristic" or "comment"
+ other_cols = [i for i in cols if i not in characteristic_cols and i not in comment_cols and i not in factor_value_cols and i not in ["source name"]]
+ #reorder the columns
+ new_cols = ["source name"] + characteristic_cols + other_cols + comment_cols + factor_value_cols
+ df = df[new_cols]
+ #if a column name contains _ followed by a number, remove the underscore and the number
+ df.columns = [re.sub(r"(_\d+)", "", i) for i in df.columns]
+ #remove leading and trailing whitespaces from all columns
+ df = df.apply(lambda x: x.str.strip() if x.dtype == "object" else x)
+ return df.to_csv(index=False, sep="\t").encode("utf-8")
+
+
+
+def autocomplete_species_search(taxum_list, search_term):
+ col1, col2 = st.columns(2)
+ if (search_term != "") and (search_term != None):
+ # Use the filter method to dynamically filter the list of options
+ filtered_options = list(filter(lambda x: search_term.lower() in x.lower(), taxum_list))
+ exact_match = list(filter(lambda x: search_term.lower() == x.lower(), taxum_list))
+ if exact_match:
+ with col1:
+ st.write(f"An exact match was found: **{exact_match[0]}**")
+ with col2:
+ use_exact_match = st.checkbox("Use exact match", key=f"exact_{search_term}")
+ if use_exact_match:
+ return exact_match[0]
+ # if length is between 0 and 500, display the options
+ if len(filtered_options) > 0 and len(filtered_options) < 500:
+ with col1:
+ selected_options = st.multiselect("Some options closely matching your search time could be found", filtered_options)
+ # Display the selected options
+ with col2:
+ if selected_options:
+ st.write("You selected:", selected_options)
+ use_options = st.checkbox("Use selected options", key=f"selected_{search_term}")
+ if use_options:
+ return selected_options
+ if len(filtered_options) > 500:
+ st.write("Too many closely related options to display (>500). Please refine your search.")
+ if len(filtered_options) == 0:
+ st.write("No options found. Please refine your search.")
\ No newline at end of file
diff --git a/.history/cleavage_list_20240927125037.json b/.history/cleavage_list_20240927125037.json
new file mode 100644
index 0000000..9f49453
--- /dev/null
+++ b/.history/cleavage_list_20240927125037.json
@@ -0,0 +1 @@
+["NoEnzyme", "NT=2-iodobenzoate; CS='(?<=W)'", "NT=Arg-C; CS='(?<=R)(?\\!P)'", "NT=Asp-N; CS='(?=[BD])'", "NT=Asp-N ambic; CS='(?=[DE])'", "NT=CNBr; CS='(?<=M)'", "NT=Chymotrypsin; CS='(?<=[FYWL])(?\\!P)'", "NT=Formic acid; CS='((?<=D))|((?=D))'", "NT=Lys-C; CS='(?<=K)(?\\!P)'", "NT=Lys-C/P; CS='(?<=K)'", "NT=PepsinA; CS='(?<=[FL])'", "NT=TrypChymo; CS='(?<=[FYWLKR])(?\\!P)'", "NT=Trypsin; CS='(?<=[KR])(?\\!P)'", "NT=Trypsin/P; CS='(?<=[KR])'", "NT=V8-DE; CS='(?<=[BDEZ])(?\\!P)'", "NT=V8-E; CS='(?<=[EZ])(?\\!P)'", "NT=glutamyl endopeptidase; CS='(?<=[^E]E)'", "NT=leukocyte elastase; CS='(?<=[ALIV])(?!P)'", "NT=proline endopeptidase; CS='(?<=[HKR]P)(?!P)']", "not available", "not applicable"]
\ No newline at end of file
diff --git a/.history/cleavage_list_20240927125416.json b/.history/cleavage_list_20240927125416.json
new file mode 100644
index 0000000..549cdd6
--- /dev/null
+++ b/.history/cleavage_list_20240927125416.json
@@ -0,0 +1 @@
+["NoEnzyme", "NT=2-iodobenzoate", "NT=Arg-C", "NT=Asp-N", "NT=Asp-N ambic", "NT=CNBr", "NT=Formic acid", "NT=Lys-C/P", "NT=PepsinA", "NT=TrypChymo", "NT=Trypsin", "NT=Trypsin/P", "NT=V8-DE", "NT=V8-E", "NT=glutamyl endopeptidase", "NT=leukocyte elastase", "NT=proline endopeptidase", "not available", "not applicable"]
\ No newline at end of file
diff --git a/.history/pages/3_3. Required_columns_20240130104638.py b/.history/pages/3_3. Required_columns_20240130104638.py
new file mode 100644
index 0000000..7628f62
--- /dev/null
+++ b/.history/pages/3_3. Required_columns_20240130104638.py
@@ -0,0 +1,803 @@
+import re
+import warnings
+warnings.filterwarnings("ignore")
+import streamlit as st
+import pandas as pd
+import numpy as np
+import json
+import gzip
+import ParsingModule
+import os
+from st_aggrid import AgGrid, GridOptionsBuilder, GridUpdateMode, DataReturnMode
+from streamlit_tree_select import tree_select
+from PIL import Image
+import base64
+import io
+
+st.set_page_config(
+ page_title="Required columns",
+ layout="wide",
+ page_icon="π§ͺ",
+ menu_items={
+ "Get help": "https://github.com/compomics/lesSDRF/issues",
+ "Report a bug": "https://github.com/compomics/lesSDRF/issues",
+ },
+)
+def add_logo(logo_path, width, height):
+ """Read and return a resized logo"""
+ logo = Image.open(logo_path)
+ modified_logo = logo.resize((width, height))
+ return modified_logo
+
+def get_base64_image(image):
+ img_buffer = io.BytesIO()
+ image.save(img_buffer, format="PNG")
+ img_str = base64.b64encode(img_buffer.getvalue()).decode()
+ return img_str
+
+my_logo = add_logo(logo_path="final_logo.png", width=149, height=58)
+
+st.markdown(
+ f"""
+
+ """,
+ unsafe_allow_html=True,
+)
+
+def update_session_state(df):
+ st.session_state["template_df"] = df
+
+@st.cache_data
+def load_organism_data():
+ #find dir one up from current dir
+ data_dir = os.path.dirname(os.path.dirname(__file__))
+ folder_path = os.path.join(data_dir, "data")
+ data = {}
+ for filename in os.listdir(folder_path):
+ # only load the files containing the following names: archae, bacteria, eukaryota, virus, unclassified, other sequences
+ if re.search(r"archaea|bacteria|eukaryota|virus|unclassified|other_sequences", filename):
+ file_path = os.path.join(folder_path, filename)
+ if filename.endswith(".json.gz"):
+ try:
+ with gzip.open(file_path, "rb") as f:
+ file_data = json.load(f)
+ filename_key = filename.replace(".json.gz", "")
+ data[filename_key] = file_data
+ except gzip.BadGzipFile:
+ st.write(f"Error reading file {file_path}: not a gzipped file")
+ else:
+ st.write(f"Skipping file {file_path}: not a gzipped file")
+ else:
+ continue
+ return data
+
+def organism_selection(species):
+ lem = organism_data[f"all_{species}_elements"]
+ search_term = st.text_input(f"Search for an {species} species here", "")
+ ret = ParsingModule.autocomplete_species_search(lem, search_term)
+ if ret != None:
+ return ret
+
+# Define the default button color (you can adjust this as desired)
+default_color = "#ff4b4b"
+
+# Define the button CSS styles
+button_styles = f"""
+ background-color: white;
+ color: {default_color};
+ border-radius: 20px;
+ padding: 10px 20px;
+ border: 1px solid {default_color};
+ text-align: center;
+ text-decoration: none;
+ display: inline-block;
+ font-size: 16px;
+ margin: 4px 2px;
+ cursor: pointer;
+"""
+st.title("""3. Required columns""")
+# if template_df is not in the session state, don't run all the code below
+if "template_df" not in st.session_state:
+ st.error("Please fill in the template file in the Home page first", icon="π¨")
+ st.stop()
+else:
+ template_df = st.session_state["template_df"]
+ with st.container():
+ st.write("**This is your current SDRF file.**")
+ st.dataframe(template_df)
+
+data_dict = st.session_state["data_dict"]
+#get all columns that are empty or contain only the word "empty" in template_df
+empty_columns = [col for col in template_df.columns if template_df[col].isnull().all() or (template_df[col] == "empty").all()]
+#remove columns from the list that have an underscore in the name(these are added because of multiple in one samples)
+empty_columns = [col for col in empty_columns if "_" not in col]
+empty_columns.append('undo column')
+empty_columns.insert(0, 'start')
+
+
+
+
+with st.sidebar:
+ selection = st.radio(
+ "The following columns are empty and required",
+ empty_columns, help="If a column you're looking for is not in this display, This means it is not empty. Click on the 'undo column' button and empty your column of interest."
+ )
+ download = st.download_button("Press to download SDRF file",ParsingModule.convert_df(template_df), "intermediate_SDRF.sdrf.tsv", help="download your SDRF file")
+ st.write("""Please refer to your data and lesSDRF within your manuscript as follows:
+ *The experimental metadata has been generated using lesSDRF and is available through ProteomeXchange with the dataset identifier [PXDxxxxxxx]*""")
+
+if selection == 'start':
+ st.write("""In the sidebar, all the empty columns that are required for you SDRF file are listed. Select the one you want to annotate first.
+ When a column is filled in, it will disappear from the sidebar so you can keep track on which columns still require input.
+ When you want to reannotate a previously filled in column, you can do so by clicking on the **undo column** button in the sidebar.
+ """)
+ st.write("""Every page will start with your current SDRF file and at the bottom of the page there is a button to download the intermediate SDRF file""")
+
+
+
+
+
+if selection == "source name":
+ st.write(
+ """The source name is the unique sample name (it can be present multiple times if the same sample is used several times in the same dataset) eg. healthy_patient_1, diseased_patient_1
+ If you did not add it using the previous mapping function, you can input it here manually.")
+ """
+ )
+ st.write(
+ "Type the correct source names in the corresponding column and **double click** *Update* when finished"
+ )
+ template_df = ParsingModule.fill_in_from_list(template_df, "source name")
+ st.session_state["template_df"] = template_df
+
+
+if selection == "assay name":
+ st.write(
+ """The assay name is a name for the run file, this has to be a uniqe value eg. run 1 - run 2 - run 3_fraction1. If you did not add it using the previous mapping function, you can input it here
+ manually."""
+ )
+ st.write(
+ "Type the correct assay names in the corresponding column and click Update twice when finished"
+ )
+ template_df = ParsingModule.fill_in_from_list(template_df, "assay name")
+ st.session_state["template_df"] = template_df
+
+if selection == "technology type":
+ with st.form("Choose the technology type in your sample"):
+ tech_type = st.radio(
+ "Choose the technology type from these options:",
+ (
+ "proteomic profiling by mass spectrometry",
+ "metabolomics profiling by mass spectrometry",
+ "other",
+ ),
+ )
+ if st.form_submit_button("Submit"):
+ template_df["technology type"] = tech_type
+ st.session_state["template_df"] = template_df
+
+if selection == "characteristics[age]":
+ st.subheader("Input the ages of your samples using the Years Months Days format, e.g. 1Y 2M 3D. Age ranges should be formatted as e.g. 1Y-3Y")
+ multiple = st.selectbox(f"Are there multiple ages in your data?", ("","No", "Yes", "Not available"), help="If you select Not available, the column will be filled in with 'Not available'")
+ if multiple == "Yes":
+ template_df = ParsingModule.fill_in_from_list(template_df, "characteristics[age]")
+ is_valid, wrong_values = ParsingModule.check_age_format(template_df, "characteristics[age]")
+ if not is_valid:
+ st.error(f"The age column is not in the correct format. Wrong values: {', '.join(wrong_values)}")
+ st.stop()
+ else:
+ template_df.replace("empty", np.nan, inplace=True)
+ st.success("The age column is in the correct format")
+ update_session_state(template_df)
+ st.experimental_rerun()
+ if multiple == "No":
+ age = st.text_input("Input the age of your sample in Y M D format e.g. 12Y 3M 4D", help="As you only have one age, the inputted age will be immediatly used to fill all cells in the age column")
+ # Check if the age is in Y M D format or age range format
+
+ if age:
+ if not (re.match(r"^(\s*\d+\s*Y)?(\s*\d+\s*M)?(\s*\d+\s*D)?(|\s*-\s*\d+\s*Y)?(|\s*-\s*\d+\s*M)?(|\s*-\s*\d+\s*D)?(/)?(|\s*\d+\s*Y)?(|\s*\d+\s*M)?(|\s*\d+\s*D)?$", age)):
+ st.error("The age is not in the correct format, please check and try again",icon="π¨")
+ st.stop()
+ else:
+ st.write("The age is in the correct format")
+ template_df["characteristics[age]"] = age
+ update_session_state(template_df)
+ st.experimental_rerun()
+ if multiple == "Not available":
+ template_df["characteristics[age]"] = "Not available"
+ update_session_state(template_df)
+ st.experimental_rerun()
+
+if selection == "comment[alkylation reagent]":
+ st.subheader("Input the alkylation reagent that was used in your experiment")
+ all_alkylation_elements = data_dict["all_alkylation_elements"]
+ alkylation_nodes = data_dict["alkylation_nodes"]
+ df = ParsingModule.multiple_ontology_tree(selection, all_alkylation_elements, alkylation_nodes, template_df, multiple_in_one=True)
+ update_session_state(df)
+
+if selection == "characteristics[ancestry category]":
+ st.subheader("Input the ancestry of your samples")
+ all_ancestry_elements = data_dict["all_ancestry_category_elements"]
+ ancestry_nodes = data_dict["ancestry_category_nodes"]
+ df = ParsingModule.multiple_ontology_tree(selection, all_ancestry_elements, ancestry_nodes, template_df, multiple_in_one=False)
+ update_session_state(df)
+
+
+if selection == "characteristics[cell type]":
+ st.subheader("Input the cell type of your sample")
+ all_cell = data_dict["all_cell_elements"]
+ cell_nodes = data_dict["cell_nodes"]
+ df = ParsingModule.multiple_ontology_tree(selection, all_cell, cell_nodes, template_df, multiple_in_one=True)
+ update_session_state(df)
+
+if selection == "characteristics[cell line]":
+ st.subheader("Input the cell line of your sample if one was used")
+ all_cellline = data_dict["all_cell_line_elements"]
+ cellline_nodes = data_dict["cell_line_nodes"]
+ df = ParsingModule.multiple_ontology_tree(selection, all_cellline, cellline_nodes, template_df,multiple_in_one=True)
+ update_session_state(df)
+
+if selection == "comment[cleavage agent details]":
+ st.subheader("Input the cleavage agent details of your sample")
+ cleavage_list = data_dict["cleavage_list"]
+ enzymes = st.multiselect(
+ "Select the cleavage agents used in your sample If no cleavage agent was used e.g. in top down proteomics, choose *NoEnzyme*",
+ cleavage_list,
+ )
+ s = st.checkbox("Ready for input?")
+ if s and len(enzymes) == 1:
+ template_df[selection] = enzymes[0]
+ st.experimental_rerun()
+ if s:
+ df = ParsingModule.fill_in_from_list(template_df, selection, enzymes)
+ update_session_state(df)
+
+if selection == "characteristics[compound]":
+ st.subheader("If a compound was added to your sample, input the name here")
+ compounds = []
+ input_compounds = st.text_input("Input compound names as comma separated list")
+ if input_compounds is not None:
+ input_compounds = re.sub(" ", "", input_compounds)
+ input_compounds = input_compounds.split(",")
+ compounds.append(input_compounds)
+ compounds = compounds[0]
+ st.write(compounds)
+ if compounds != [""]:
+ template_df = ParsingModule.fill_in_from_list(template_df, selection, compounds)
+ st.session_state["template_df"] = template_df
+
+if selection == "characteristics[concentration of compound]":
+ st.subheader("Input the concentration with which the compound was added to your sample")
+ concentration = []
+ input_concentration = st.text_input(
+ "Input compound concentration as comma separated list, don't forget to indicate the unit"
+ )
+ if input_concentration is not None:
+ input_concentration = re.sub(" ", "", input_concentration)
+ input_concentration = input_concentration.split(",")
+ concentration.append(input_concentration)
+ concentration = concentration[0]
+ st.write(concentration)
+ if concentration != [""]:
+ template_df["characteristics[concentration of compound]"] = ""
+ template_df = ParsingModule.fill_in_from_list(
+ template_df, selection, concentration
+ )
+ st.session_state["template_df"] = template_df
+
+
+if selection == "comment[collision energy]":
+ st.subheader("Input the collision energy that was used in your experiment")
+ multiple = st.radio(
+ f"Are there multiple collision energies in your data?", ("No", "Yes")
+ )
+ if multiple == "Yes":
+ st.write(
+ "Input the collision energy directly in the SDRF file. Don't forget to indicate the unit"
+ )
+ df = ParsingModule.fill_in_from_list(template_df, selection)
+ update_session_state(df)
+ else:
+ coll_en = st.text_input("Input the collision energy and its unit")
+ template_df[selection] = coll_en
+ st.session_state["template_df"] = template_df
+
+if selection == "characteristics[developmental stage]":
+ st.subheader("Input the developmental stage of your sample")
+ all_devstage = data_dict["all_developmental_stage_elements"]
+ devstage_nodes = data_dict["developmental_stage_nodes"]
+ df = ParsingModule.multiple_ontology_tree(selection, all_devstage, devstage_nodes, template_df, multiple_in_one=False)
+ update_session_state(df)
+
+if selection == "characteristics[disease]":
+ st.subheader("If you have healthy and control samples, indicate healthy samples using *normal*. Input the disease for the other samples using the ontology")
+ all_disease_type = data_dict["all_disease_elements"]
+ disease_nodes = data_dict["disease_nodes"]
+ df = ParsingModule.multiple_ontology_tree(
+ selection, all_disease_type, disease_nodes, template_df
+ )
+ update_session_state(df)
+
+if selection == "comment[dissociation method]":
+ st.subheader("Input the dissociation method that was used in your experiment")
+ all_dissociation_elements = data_dict["all_dissociation_elements"]
+ dissociation_nodes = data_dict["dissociation_nodes"]
+ df = ParsingModule.multiple_ontology_tree(
+ selection, all_dissociation_elements, dissociation_nodes, template_df, multiple_in_one=True)
+ update_session_state(df)
+
+if selection == "characteristics[enrichment process]":
+ st.subheader("Input the enrichment process that was used in your experiment")
+ all_enrichment_elements = data_dict["all_enrichment_elements"]
+ enrichment_nodes = data_dict["enrichment_nodes"]
+ df = ParsingModule.multiple_ontology_tree(
+ selection, all_enrichment_elements, enrichment_nodes, template_df
+ )
+ update_session_state(df)
+
+if selection == "comment[fraction identifier]":
+ # first ask if they have fractionation
+ # if they don't ==> fraction identifier = 1
+ # if they do: add fraction identifiers + add fractionation method
+ number_of_fractions = None
+ col1, col2 = st.columns(2)
+ with col1:
+ multiple = st.selectbox(
+ f"Are there multiple fractions in your data?", ("", "No", "Yes")
+ )
+ number_of_methods = None
+ if multiple == "Yes":
+ with col2:
+ number_of_fractions = st.number_input(
+ f"How many different fractions are in your data?",
+ min_value=0,
+ step=1,
+ )
+ number_of_methods = st.number_input(
+ f"How many different fractionation methods are used?",
+ min_value=0,
+ step=1,
+ )
+ if multiple == "No":
+ template_df["comment[fraction identifier]"] = 1
+ if number_of_methods:
+ with st.form("Provide details on the fractionation method"):
+ # template_df["comment[ fractionation method]"] = ""
+ fractionation_elements = data_dict["all_fractionation_method_elements"]
+ fractionation_nodes = data_dict["fractionation_nodes"]
+ col3, col4 = st.columns(2)
+ with col3:
+ # selectbox with search option
+ fractionation_elements.append(" ")
+ fractionation_elements = set(fractionation_elements)
+ return_search = st.multiselect(
+ "Select your matching fractionation term using this autocomplete function",
+ fractionation_elements,
+ max_selections=number_of_methods,
+ )
+ with col4:
+ st.write("Or follow the ontology based drop down menu below")
+ return_select = tree_select(
+ fractionation_nodes,
+ no_cascade=True,
+ expand_on_click=True,
+ check_model="leaf",
+ )
+
+ if (len(return_select["checked"]) > 1) & (
+ len(return_select["checked"]) != number_of_methods
+ ):
+ st.error(f"You need to select a total of {number_of_methods}.")
+ all = return_search + return_select["checked"]
+ all = [i.split(",")[-1] for i in all if i is not None]
+ if (len(all) >= 1) & (len(all) != number_of_methods):
+ st.error(f"You need to select a total of {number_of_methods}.")
+ x = st.form_submit_button("Submit selection")
+ if x:
+ st.write(f"Selection contains: {all}")
+
+ if x:
+ df = ParsingModule.fill_in_from_list(template_df, "comment[fractionation method]", all)
+ df = ParsingModule.fill_in_from_list(template_df, "comment[fraction identifier]", [*range(1, number_of_fractions + 1)])
+ update_session_state(df)
+
+if selection == "comment[instrument]":
+ st.subheader("Input the instrument that was used in your experiment")
+ all_instrument_elements = data_dict["all_instrument_elements"]
+ instrument_nodes = data_dict["instrument_nodes"]
+ df = ParsingModule.multiple_ontology_tree(
+ selection, all_instrument_elements, instrument_nodes, template_df
+ )
+ update_session_state(df)
+
+if selection == "characteristics[individual]":
+ col1, col2, col3 = st.columns(3)
+ with col1:
+ sel = st.selectbox("Do you have multiple indiviuals in your data?", ("", "No", "Yes", "Not available"))
+ if sel == "No":
+ template_df[selection] = 1
+ st.session_state["template_df"] = template_df
+ st.experimental_rerun()
+ if sel == "Yes":
+ with col2:
+ number = st.number_input("How many indiviuals are in your data?", min_value=0, step=1)
+ with col3:
+ s = st.checkbox("Ready for input?")
+ if sel == "Yes" and s:
+ indiv = [*range(1, number + 1, 1)]
+ df = ParsingModule.fill_in_from_list(template_df, "characteristics[individual]", indiv)
+ update_session_state(df)
+ if sel == "Not available":
+ template_df[selection] = "Not available"
+ st.session_state["template_df"] = template_df
+ st.experimental_rerun()
+
+
+if selection == "comment[label]":
+ st.subheader("Input the label that was used in your experiment. If no label was added, indicate this using *label free sample*.")
+ all_label_elements = data_dict["all_label_elements"]
+ label_nodes = data_dict["label_nodes"]
+ df = ParsingModule.multiple_ontology_tree(
+ selection, all_label_elements, label_nodes, template_df
+ )
+ update_session_state(df)
+
+if selection == "characteristics[organism]":
+ if "selected_species" not in st.session_state:
+ st.session_state["selected_species"] = set()
+ st.subheader("Select the species that is present in your sample")
+ if selection not in template_df.columns:
+ template_df[selection] = np.nan
+ multiple_in_one = False
+ index = template_df.columns.get_loc(selection)
+ col1, col2, col3, col4 = st.columns(4)
+ columns_to_adapt = [selection]
+ with col1:
+ multiple = st.radio(f"Are there multiple organisms in your data?", ("No", "Yes"))
+ if multiple == "Yes":
+ with col2:
+ number = st.number_input(
+ f"How many different organisms are in your data?",
+ min_value=0,
+ step=1)
+ with col3:
+ multiple_in_one_sel = st.radio(f"Are there multiple organisms within one sample?", ("No", "Yes"))
+ if multiple_in_one_sel == "Yes":
+ multiple_in_one = True
+ for i in range(number-1):
+ # add column next to the original column if it is not already there
+ if f"{selection}_{i+1}" not in template_df.columns:
+ template_df.insert(index+1, f"{selection}_{i+1}", "empty")
+ columns_to_adapt.append(f"{selection}_{i+1}")
+ if multiple == "No":
+ number = 1
+
+ col6, col7 = st.columns(2)
+ with col6:
+ model = st.radio('Does your data contain only classical model organisms?', ('Yes', 'No'),
+ help="Classical model organism being: Homo sapiens, Mus musculus, Drosophila Melanogaster, Arabidopsis thaliana, Xenopus laevis, Xenopus tropicalis, Saccharomyces cerevisiae, Caenorhabditis elegans, Danio rerio, Escherichia coli and Cavia porcellus")
+ classical_model_organisms = ["Homo sapiens",
+ "Mus musculus",
+ "Drosophila Melanogaster",
+ "Arabidopsis thaliana",
+ "Xenopus laevis", "Xenopus tropicalis",
+ "Saccharomyces cerevisiae",
+ "Caenorhabditis elegans",
+ "Danio rerio",
+ "Escherichia coli",
+ "Cavia porcellus"]
+ if model == 'Yes':
+ with col7:
+ sel = st.multiselect('Select the classical model organism here', classical_model_organisms, max_selections=number)
+ if isinstance(sel, list):
+ for i in sel:
+ if i is not None:
+ st.session_state.selected_species.add(i)
+ else:
+ if sel is not None:
+ st.session_state.selected_species.add(sel)
+ if model == 'No':
+ st.write('The NCBITaxon ontology data is loaded. Please allow a few seconds for the data to be loaded. ')
+ organism_data = load_organism_data()
+ if organism_data:
+ st.success(f"*NCBITaxon organism data was loaded*", icon="β
")
+ else:
+ st.error("Failed loading data", icon="β")
+ st.write("""First, select your species type using the tabs below.
+ Then you can fill in the name of your species and suggested ontology terms will appear, from which you can select the correct term or the perfectly matched term.
+ If you want to consult the ontology tree structure, you can click the button below to the OLS search page.""")
+ url = "https://www.ebi.ac.uk/ols/ontologies/ncbitaxon"
+ button = f'OLS NCBITaxon ontology tree'
+ st.write(button, unsafe_allow_html=True)
+
+ tab1, tab2, tab3, tab4, tab5, tab6 = st.tabs(['Eukaryota', 'Archaea', 'Bacteria', 'Viruses', 'Unclassified', 'Other'])
+ st.write(st.session_state.selected_species)
+ with tab1:
+ ret= organism_selection("eukaryota")
+ if ret != None:
+ if isinstance(ret, list):
+ for i in ret:
+ st.session_state.selected_species.add(i)
+ else:
+ st.session_state.selected_species.add(ret)
+ with tab2:
+ ret= organism_selection("archaea")
+ if ret != None:
+ #if ret is a list, add all elements to the set
+ if isinstance(ret, list):
+ for i in ret:
+ st.session_state.selected_species.add(i)
+ else:
+ st.session_state.selected_species.add(ret)
+ with tab3:
+ ret= organism_selection("bacteria")
+ if ret != None:
+ #if ret is a list, add all elements to the set
+ if isinstance(ret, list):
+ for i in ret:
+ st.session_state.selected_species.add(i)
+ else:
+ st.session_state.selected_species.add(ret)
+
+ with tab4:
+ ret= organism_selection("virus")
+ if ret != None:
+ #if ret is a list, add all elements to the set
+ if isinstance(ret, list):
+ for i in ret:
+ st.session_state.selected_species.add(i)
+ else:
+ st.session_state.selected_species.add(ret)
+
+ with tab5:
+ ret= organism_selection("unclassified")
+ if ret != None:
+ #if ret is a list, add all elements to the set
+ if isinstance(ret, list):
+ for i in ret:
+ st.session_state.selected_species.add(i)
+ else:
+ st.session_state.selected_species.add(ret)
+
+ with tab6:
+ ret= organism_selection("other_sequences")
+ if ret != None:
+ #if ret is a list, add all elements to the set
+ if isinstance(ret, list):
+ for i in ret:
+ st.session_state.selected_species.add(i)
+ else:
+ st.session_state.selected_species.add(ret)
+ if st.session_state['selected_species'] != {None}:
+ st.write(f"You selected the following species:{st.session_state['selected_species']}")
+ if len(st.session_state["selected_species"]) > number:
+ st.error(f"""Number of selected species is {len(st.session_state['selected_species'])}, but this should be {number} according to the input above.
+ Select the species to remove from the list below""")
+ # checkbox to remove species
+ remove_species = set()
+ for i, element in enumerate(st.session_state["selected_species"]):
+ if st.checkbox(f"{element}", key=i):
+ remove_species.add(element)
+ st.session_state["selected_species"] = st.session_state["selected_species"] - remove_species
+ st.write(f"Selected species after removal: {st.session_state['selected_species']}")
+ elif (len(st.session_state["selected_species"]) < number) and (len(st.session_state["selected_species"]) > 0):
+ st.error(f"""Number of selected species is {len(st.session_state['selected_species'])}, but this should be {number} according to the input above.
+ Please select {number-len(st.session_state['selected_species'])} more organisms.""")
+ s = st.checkbox("Ready for input?")
+ if s:
+ input_list = list(st.session_state["selected_species"])
+ if multiple_in_one:
+ #add "" in the beginning of the list
+ input_list.insert(0, "NA")
+ df = ParsingModule.fill_in_from_list(template_df, selection, input_list, multiple_in_one)
+ update_session_state(df)
+ #remove the session state
+ del st.session_state["selected_species"]
+ #remove the organism_data from the session state
+
+if selection == "characteristics[organism part]":
+ st.write("Select the part of the organism that is present in your sample")
+ all_orgpart_elements = data_dict["all_organism_part_elements"]
+ orgpart_nodes = data_dict["organism_part_nodes"]
+ df = ParsingModule.multiple_ontology_tree(
+ selection, all_orgpart_elements, orgpart_nodes, template_df, multiple_in_one=True
+ )
+ update_session_state(df)
+
+if selection == "comment[reduction reagent]":
+ st.write("Input the reduction reagent that was used in your experiment")
+ all_reduction_elements = data_dict["all_reduction_reagent_elements"]
+ reduction_nodes = data_dict["reduction_nodes"]
+ df = ParsingModule.multiple_ontology_tree(
+ selection, all_reduction_elements, reduction_nodes, template_df
+ )
+ update_session_state(df)
+
+if selection == "characteristics[sex]":
+ col1, col2, col3 = st.columns(3)
+ with col1:
+ sel = st.selectbox("Are there multiple sexes in your data?", ("", "No", "Yes", "Not available"))
+ if sel == "No":
+ sel2 = st.selectbox("Select the sex of your sample", ("", "F", "M", "unknown"))
+ if sel2 in ["F", "M", "unknown"]:
+ template_df[selection] = sel2
+ st.session_state["template_df"] = template_df
+ st.experimental_rerun()
+ if sel == "Yes":
+ df = ParsingModule.fill_in_from_list(template_df, "characteristics[sex]", ["F", "M", "unknown"])
+ update_session_state(df)
+ if sel == "Not available":
+ template_df[selection] = "Not available"
+ st.session_state["template_df"] = template_df
+ st.experimental_rerun()
+
+if selection == "comment[technical replicate]":
+ col1, col2, col3 = st.columns(3)
+ with col1:
+ sel = st.selectbox("Do you have technical replicates?", ("", "Yes", "No"))
+ if sel == "No":
+ template_df[selection] = 1
+ st.session_state["template_df"] = template_df
+ st.experimental_rerun()
+ if sel == "Yes":
+ with col2:
+ number = st.number_input("How many technical replicates are in your data?", min_value=0, step=1)
+ with col3:
+ s = st.checkbox("Ready for input?")
+ if sel== "Yes" and s:
+ tech_rep = [*range(1, number + 1, 1)]
+ df = ParsingModule.fill_in_from_list(template_df, selection, tech_rep)
+ update_session_state(df)
+
+
+
+if selection == "characteristics[biological replicate]":
+ col1, col2, col3 = st.columns(3)
+ with col1:
+ sel = st.selectbox("Do you have biological replicates?", ("", "Yes", "No"))
+ if sel == "No":
+ template_df[selection] = 1
+ st.session_state["template_df"] = template_df
+ st.experimental_rerun()
+ if sel == "Yes":
+ with col2:
+ number = st.number_input("How many biological replicates are there?", min_value=0, step=1)
+ with col3:
+ s = st.checkbox("Ready for input?")
+ if sel== "Yes" and s:
+ biol_rep = [*range(1, int(number) + 1, 1)]
+ template_df = ParsingModule.fill_in_from_list(template_df, selection, biol_rep)
+ st.session_state["template_df"] = template_df
+ #st.experimental_rerun()
+
+if selection == "comment[fragment mass tolerance]":
+ st.subheader(""" Input the fragment mass tolerance and **the unit (ppm or Da)**. click Update twice when finished""")
+ df = ParsingModule.fill_in_from_list(template_df, selection)
+ update_session_state(df)
+
+if selection == "comment[precursor mass tolerance]":
+ st.subheader(""" Input the precursor mass tolerance and **the unit (ppm or Da)**. click Update twice when finished""")
+ df = ParsingModule.fill_in_from_list(template_df, selection)
+ update_session_state(df)
+
+
+
+if selection == "characterics[synthetic peptide]":
+ st.subheader(
+ "If the sample is a synthetic peptide library, indicate this by selecting *synthetic* or *not synthetic*"
+ )
+ df = ParsingModule.fill_in_from_list(
+ template_df, selection, ["synthetic", "not synthetic"]
+ )
+ update_session_state(df)
+
+if selection == "comment[depletion]":
+ depl = st.selectbox("Is the sample depleted?", ("","Yes", "No"))
+ if depl == "Yes":
+ st.write("Indicate depleted or bound fraction directly in the SDRF file")
+ df = ParsingModule.fill_in_from_list(
+ template_df, selection, ["depleted fraction", "bound fraction"]
+ )
+ update_session_state(df)
+ if depl == "No":
+ template_df["comment[depletion]"] = "not depletion"
+ st.session_state["template_df"] = template_df
+ st.experimental_rerun()
+
+if selection == "comment[modification parameters]":
+ st.write(""" First select the modifications that are in your sample using the drop down autocomplete menu. After selection you will need to choose the modification type, position and target amino acid.
+ Modification type can be fixed, variable or annotated. Annotated is used to search for all the occurrences of the modification into an annotated protein database file like UNIPROT XML or PEFF.
+ Position can be anywhere, protein N-term, protein C-term, any N-term or any C-term.
+ Target amino acid can be any amino acid or X if it's not in the list. Yoy can also select multiple amino acids.""")
+ st.write(""" If the modification of your choice is not available in the drop down list, select "Other" and input the modification name, chemical formula and mass of your custom modification.""")
+ st.write(""" The final modification will be formatted following the SDRF guidelines after which you can click on "Submit modifications".""")
+ unimod = data_dict["unimod_dict"]
+ inputs = sorted(list(unimod.keys()))
+ inputs.append("Other")
+ mt = ["Fixed", "Variable", "Annotated"]
+ pp = ["Anywhere", "Protein N-term", "Protein C-term", "Any N-term", "Any C-term"]
+ ta = ["X","G","A","L","M","F","W","K","Q","E","S","P","V","I","C","Y","H","R","N","D","T"]
+ mods_sel = st.multiselect("Select the modifications present in your data", inputs)
+ sdrf_mods = []
+ st.session_state["sdrf_mods"] = sdrf_mods
+
+ for i in mods_sel:
+ st.write(f"**{i}**")
+ col1, col2, col3 = st.columns(3)
+
+
+ with col1:
+ mt_sel = st.selectbox("Select the modification type", mt, key=f"mt_{i}")
+ with col2:
+ pp_sel = st.selectbox(
+ "Select the position of the modification", pp, key=f"pp_{i}"
+ )
+ with col3:
+ ta_sel = st.multiselect("Select the target amino acid", ta, key=f"ta_{i}")
+
+ if i == "Other":
+ col4, col5, col6 = st.columns(3)
+ with col4:
+ name = st.text_input(
+ "Input a logical name"
+ )
+ with col5:
+ form = st.text_input("Input the chemical formula")
+ with col6:
+ mass = st.text_input("Input the molecular mass")
+
+ final_str = f"NT={name};MT={mt_sel};PP={pp_sel};TA={ta_sel};CF={form};MM={mass}"
+ st.session_state["sdrf_mods"].append(final_str)
+ st.write(
+ f""" **Final SDRF notation of modification:**
+ {final_str}"""
+ )
+ else:
+ final_str = f"{unimod[i]};MT={mt_sel};PP={pp_sel};TA={ta_sel}"
+ st.session_state["sdrf_mods"].append(final_str)
+ st.write(
+ f"""**Final SDRF notation of modification:**
+ {final_str}"""
+ )
+ st.write(f"Confirmed modifications contain: {st.session_state['sdrf_mods']}")
+ submit = st.checkbox(
+ "Submit modifications",
+ help="Click to add the modifications to the SDRF file. If everything looks fine, click again",
+ )
+
+ if submit:
+ # for every element in the list sdrf_mods
+ # add it to the template_df as a value in a new column with name selection_1, selection_2, selection_3, etc
+ # then update the session state
+ #get the index of the original column
+ index = template_df.columns.get_loc(selection)
+ #insert the new column next to the original index
+ for i, mod in enumerate(sdrf_mods):
+ st.write(i, mod)
+ if i == 0:
+ template_df[f"{selection}"] = mod
+ else:
+ template_df.insert(index+i, f"{selection}_{i}", mod)
+ index += 1
+
+ st.session_state["template_df"] = template_df
+ st.write(template_df)
+
+if selection == "undo column":
+ st.write("""Here you can select a column that you want to reannotate.
+ Upon clicking the column the current values will be removed and you can reannotate the column.
+ """)
+ col1, col2 = st.columns(2)
+ with col1:
+ sel = st.multiselect("Select the column(s) you want to reannotate", template_df.columns)
+ with col2:
+ if st.button("Reannotate"):
+ template_df[sel] = np.nan
+ st.session_state["template_df"] = template_df
+ st.experimental_rerun()
+
diff --git a/.history/pages/3_3. Required_columns_20240927125738.py b/.history/pages/3_3. Required_columns_20240927125738.py
new file mode 100644
index 0000000..1f8fa8e
--- /dev/null
+++ b/.history/pages/3_3. Required_columns_20240927125738.py
@@ -0,0 +1,804 @@
+import re
+import warnings
+warnings.filterwarnings("ignore")
+import streamlit as st
+import pandas as pd
+import numpy as np
+import json
+import gzip
+import ParsingModule
+import os
+from st_aggrid import AgGrid, GridOptionsBuilder, GridUpdateMode, DataReturnMode
+from streamlit_tree_select import tree_select
+from PIL import Image
+import base64
+import io
+
+st.set_page_config(
+ page_title="Required columns",
+ layout="wide",
+ page_icon="π§ͺ",
+ menu_items={
+ "Get help": "https://github.com/compomics/lesSDRF/issues",
+ "Report a bug": "https://github.com/compomics/lesSDRF/issues",
+ },
+)
+def add_logo(logo_path, width, height):
+ """Read and return a resized logo"""
+ logo = Image.open(logo_path)
+ modified_logo = logo.resize((width, height))
+ return modified_logo
+
+def get_base64_image(image):
+ img_buffer = io.BytesIO()
+ image.save(img_buffer, format="PNG")
+ img_str = base64.b64encode(img_buffer.getvalue()).decode()
+ return img_str
+
+my_logo = add_logo(logo_path="final_logo.png", width=149, height=58)
+
+st.markdown(
+ f"""
+
+ """,
+ unsafe_allow_html=True,
+)
+
+def update_session_state(df):
+ st.session_state["template_df"] = df
+
+@st.cache_data
+def load_organism_data():
+ #find dir one up from current dir
+ data_dir = os.path.dirname(os.path.dirname(__file__))
+ folder_path = os.path.join(data_dir, "data")
+ data = {}
+ for filename in os.listdir(folder_path):
+ # only load the files containing the following names: archae, bacteria, eukaryota, virus, unclassified, other sequences
+ if re.search(r"archaea|bacteria|eukaryota|virus|unclassified|other_sequences", filename):
+ file_path = os.path.join(folder_path, filename)
+ if filename.endswith(".json.gz"):
+ try:
+ with gzip.open(file_path, "rb") as f:
+ file_data = json.load(f)
+ filename_key = filename.replace(".json.gz", "")
+ data[filename_key] = file_data
+ except gzip.BadGzipFile:
+ st.write(f"Error reading file {file_path}: not a gzipped file")
+ else:
+ st.write(f"Skipping file {file_path}: not a gzipped file")
+ else:
+ continue
+ return data
+
+def organism_selection(species):
+ lem = organism_data[f"all_{species}_elements"]
+ search_term = st.text_input(f"Search for an {species} species here", "")
+ ret = ParsingModule.autocomplete_species_search(lem, search_term)
+ if ret != None:
+ return ret
+
+# Define the default button color (you can adjust this as desired)
+default_color = "#ff4b4b"
+
+# Define the button CSS styles
+button_styles = f"""
+ background-color: white;
+ color: {default_color};
+ border-radius: 20px;
+ padding: 10px 20px;
+ border: 1px solid {default_color};
+ text-align: center;
+ text-decoration: none;
+ display: inline-block;
+ font-size: 16px;
+ margin: 4px 2px;
+ cursor: pointer;
+"""
+st.title("""3. Required columns""")
+# if template_df is not in the session state, don't run all the code below
+if "template_df" not in st.session_state:
+ st.error("Please fill in the template file in the Home page first", icon="π¨")
+ st.stop()
+else:
+ template_df = st.session_state["template_df"]
+ with st.container():
+ st.write("**This is your current SDRF file.**")
+ st.dataframe(template_df)
+
+data_dict = st.session_state["data_dict"]
+#get all columns that are empty or contain only the word "empty" in template_df
+empty_columns = [col for col in template_df.columns if template_df[col].isnull().all() or (template_df[col] == "empty").all()]
+#remove columns from the list that have an underscore in the name(these are added because of multiple in one samples)
+empty_columns = [col for col in empty_columns if "_" not in col]
+empty_columns.append('undo column')
+empty_columns.insert(0, 'start')
+
+
+
+
+with st.sidebar:
+ selection = st.radio(
+ "The following columns are empty and required",
+ empty_columns, help="If a column you're looking for is not in this display, This means it is not empty. Click on the 'undo column' button and empty your column of interest."
+ )
+ download = st.download_button("Press to download SDRF file",ParsingModule.convert_df(template_df), "intermediate_SDRF.sdrf.tsv", help="download your SDRF file")
+ st.write("""Please refer to your data and lesSDRF within your manuscript as follows:
+ *The experimental metadata has been generated using lesSDRF and is available through ProteomeXchange with the dataset identifier [PXDxxxxxxx]*""")
+
+if selection == 'start':
+ st.write("""In the sidebar, all the empty columns that are required for you SDRF file are listed. Select the one you want to annotate first.
+ When a column is filled in, it will disappear from the sidebar so you can keep track on which columns still require input.
+ When you want to reannotate a previously filled in column, you can do so by clicking on the **undo column** button in the sidebar.
+ """)
+ st.write("""Every page will start with your current SDRF file and at the bottom of the page there is a button to download the intermediate SDRF file""")
+
+
+
+
+
+if selection == "source name":
+ st.write(
+ """The source name is the unique sample name (it can be present multiple times if the same sample is used several times in the same dataset) eg. healthy_patient_1, diseased_patient_1
+ If you did not add it using the previous mapping function, you can input it here manually.")
+ """
+ )
+ st.write(
+ "Type the correct source names in the corresponding column and **double click** *Update* when finished"
+ )
+ template_df = ParsingModule.fill_in_from_list(template_df, "source name")
+ st.session_state["template_df"] = template_df
+
+
+if selection == "assay name":
+ st.write(
+ """The assay name is a name for the run file, this has to be a uniqe value eg. run 1 - run 2 - run 3_fraction1. If you did not add it using the previous mapping function, you can input it here
+ manually."""
+ )
+ st.write(
+ "Type the correct assay names in the corresponding column and click Update twice when finished"
+ )
+ template_df = ParsingModule.fill_in_from_list(template_df, "assay name")
+ st.session_state["template_df"] = template_df
+
+if selection == "technology type":
+ with st.form("Choose the technology type in your sample"):
+ tech_type = st.radio(
+ "Choose the technology type from these options:",
+ (
+ "proteomic profiling by mass spectrometry",
+ "metabolomics profiling by mass spectrometry",
+ "other",
+ ),
+ )
+ if st.form_submit_button("Submit"):
+ template_df["technology type"] = tech_type
+ st.session_state["template_df"] = template_df
+
+if selection == "characteristics[age]":
+ st.subheader("Input the ages of your samples using the Years Months Days format, e.g. 1Y 2M 3D. Age ranges should be formatted as e.g. 1Y-3Y")
+ multiple = st.selectbox(f"Are there multiple ages in your data?", ("","No", "Yes", "Not available"), help="If you select Not available, the column will be filled in with 'Not available'")
+ if multiple == "Yes":
+ template_df = ParsingModule.fill_in_from_list(template_df, "characteristics[age]")
+ is_valid, wrong_values = ParsingModule.check_age_format(template_df, "characteristics[age]")
+ if not is_valid:
+ st.error(f"The age column is not in the correct format. Wrong values: {', '.join(wrong_values)}")
+ st.stop()
+ else:
+ template_df.replace("empty", np.nan, inplace=True)
+ st.success("The age column is in the correct format")
+ update_session_state(template_df)
+ st.experimental_rerun()
+ if multiple == "No":
+ age = st.text_input("Input the age of your sample in Y M D format e.g. 12Y 3M 4D", help="As you only have one age, the inputted age will be immediatly used to fill all cells in the age column")
+ # Check if the age is in Y M D format or age range format
+
+ if age:
+ if not (re.match(r"^(\s*\d+\s*Y)?(\s*\d+\s*M)?(\s*\d+\s*D)?(|\s*-\s*\d+\s*Y)?(|\s*-\s*\d+\s*M)?(|\s*-\s*\d+\s*D)?(/)?(|\s*\d+\s*Y)?(|\s*\d+\s*M)?(|\s*\d+\s*D)?$", age)):
+ st.error("The age is not in the correct format, please check and try again",icon="π¨")
+ st.stop()
+ else:
+ st.write("The age is in the correct format")
+ template_df["characteristics[age]"] = age
+ update_session_state(template_df)
+ st.experimental_rerun()
+ if multiple == "Not available":
+ template_df["characteristics[age]"] = "Not available"
+ update_session_state(template_df)
+ st.experimental_rerun()
+
+if selection == "comment[alkylation reagent]":
+ st.subheader("Input the alkylation reagent that was used in your experiment")
+ all_alkylation_elements = data_dict["all_alkylation_elements"]
+ alkylation_nodes = data_dict["alkylation_nodes"]
+ df = ParsingModule.multiple_ontology_tree(selection, all_alkylation_elements, alkylation_nodes, template_df, multiple_in_one=True)
+ update_session_state(df)
+
+if selection == "characteristics[ancestry category]":
+ st.subheader("Input the ancestry of your samples")
+ all_ancestry_elements = data_dict["all_ancestry_category_elements"]
+ ancestry_nodes = data_dict["ancestry_category_nodes"]
+ df = ParsingModule.multiple_ontology_tree(selection, all_ancestry_elements, ancestry_nodes, template_df, multiple_in_one=False)
+ update_session_state(df)
+
+
+if selection == "characteristics[cell type]":
+ st.subheader("Input the cell type of your sample")
+ all_cell = data_dict["all_cell_elements"]
+ cell_nodes = data_dict["cell_nodes"]
+ df = ParsingModule.multiple_ontology_tree(selection, all_cell, cell_nodes, template_df, multiple_in_one=True)
+ update_session_state(df)
+
+if selection == "characteristics[cell line]":
+ st.subheader("Input the cell line of your sample if one was used")
+ all_cellline = data_dict["all_cell_line_elements"]
+ cellline_nodes = data_dict["cell_line_nodes"]
+ df = ParsingModule.multiple_ontology_tree(selection, all_cellline, cellline_nodes, template_df,multiple_in_one=True)
+ update_session_state(df)
+
+if selection == "comment[cleavage agent details]":
+ st.subheader("Input the cleavage agent details of your sample")
+ cleavage_list = data_dict["cleavage_list"]
+ enzymes = st.multiselect(
+ "Select the cleavage agents used in your sample If no cleavage agent was used e.g. in top down proteomics, choose *NoEnzyme*",
+ cleavage_list,
+ )
+ s = st.checkbox("Ready for input?")
+ if s and len(enzymes) == 1:
+ template_df[selection] = enzymes[0]
+ st.experimental_rerun()
+ if s:
+ df = ParsingModule.fill_in_from_list(template_df, selection, enzymes)
+ update_session_state(df)
+
+if selection == "characteristics[compound]":
+ st.subheader("If a compound was added to your sample, input the name here")
+ compounds = []
+ input_compounds = st.text_input("Input compound names as comma separated list")
+ if input_compounds is not None:
+ input_compounds = re.sub(" ", "", input_compounds)
+ input_compounds = input_compounds.split(",")
+ compounds.append(input_compounds)
+ compounds = compounds[0]
+ st.write(compounds)
+ if compounds != [""]:
+ template_df = ParsingModule.fill_in_from_list(template_df, selection, compounds)
+ st.session_state["template_df"] = template_df
+
+if selection == "characteristics[concentration of compound]":
+ st.subheader("Input the concentration with which the compound was added to your sample")
+ concentration = []
+ input_concentration = st.text_input(
+ "Input compound concentration as comma separated list, don't forget to indicate the unit"
+ )
+ if input_concentration is not None:
+ input_concentration = re.sub(" ", "", input_concentration)
+ input_concentration = input_concentration.split(",")
+ concentration.append(input_concentration)
+ concentration = concentration[0]
+ st.write(concentration)
+ if concentration != [""]:
+ template_df["characteristics[concentration of compound]"] = ""
+ template_df = ParsingModule.fill_in_from_list(
+ template_df, selection, concentration
+ )
+ st.session_state["template_df"] = template_df
+
+
+if selection == "comment[collision energy]":
+ st.subheader("Input the collision energy that was used in your experiment")
+ multiple = st.radio(
+ f"Are there multiple collision energies in your data?", ("No", "Yes")
+ )
+ if multiple == "Yes":
+ st.write(
+ "Input the collision energy directly in the SDRF file. Don't forget to indicate the unit"
+ )
+ df = ParsingModule.fill_in_from_list(template_df, selection)
+ update_session_state(df)
+ else:
+ coll_en = st.text_input("Input the collision energy and its unit")
+ template_df[selection] = coll_en
+ st.session_state["template_df"] = template_df
+
+if selection == "characteristics[developmental stage]":
+ st.subheader("Input the developmental stage of your sample")
+ all_devstage = data_dict["all_developmental_stage_elements"]
+ devstage_nodes = data_dict["developmental_stage_nodes"]
+ df = ParsingModule.multiple_ontology_tree(selection, all_devstage, devstage_nodes, template_df, multiple_in_one=False)
+ update_session_state(df)
+
+if selection == "characteristics[disease]":
+ st.subheader("If you have healthy and control samples, indicate healthy samples using *normal*. Input the disease for the other samples using the ontology")
+ all_disease_type = data_dict["all_disease_elements"]
+ disease_nodes = data_dict["disease_nodes"]
+ df = ParsingModule.multiple_ontology_tree(
+ selection, all_disease_type, disease_nodes, template_df
+ )
+ update_session_state(df)
+
+if selection == "comment[dissociation method]":
+ st.subheader("Input the dissociation method that was used in your experiment")
+ all_dissociation_elements = data_dict["all_dissociation_elements"]
+ dissociation_nodes = data_dict["dissociation_nodes"]
+ df = ParsingModule.multiple_ontology_tree(
+ selection, all_dissociation_elements, dissociation_nodes, template_df, multiple_in_one=True)
+ update_session_state(df)
+
+if selection == "characteristics[enrichment process]":
+ st.subheader("Input the enrichment process that was used in your experiment")
+ all_enrichment_elements = data_dict["all_enrichment_elements"]
+ enrichment_nodes = data_dict["enrichment_nodes"]
+ df = ParsingModule.multiple_ontology_tree(
+ selection, all_enrichment_elements, enrichment_nodes, template_df
+ )
+ update_session_state(df)
+
+if selection == "comment[fraction identifier]":
+ # first ask if they have fractionation
+ # if they don't ==> fraction identifier = 1
+ # if they do: add fraction identifiers + add fractionation method
+ number_of_fractions = None
+ col1, col2 = st.columns(2)
+ with col1:
+ multiple = st.selectbox(
+ f"Are there multiple fractions in your data?", ("", "No", "Yes")
+ )
+ number_of_methods = None
+ if multiple == "Yes":
+ with col2:
+ number_of_fractions = st.number_input(
+ f"How many different fractions are in your data?",
+ min_value=0,
+ step=1,
+ )
+ number_of_methods = st.number_input(
+ f"How many different fractionation methods are used?",
+ min_value=0,
+ step=1,
+ )
+ if multiple == "No":
+ template_df["comment[fraction identifier]"] = 1
+ if number_of_methods:
+ with st.form("Provide details on the fractionation method"):
+ # template_df["comment[ fractionation method]"] = ""
+ fractionation_elements = data_dict["all_fractionation_method_elements"]
+ fractionation_nodes = data_dict["fractionation_nodes"]
+ col3, col4 = st.columns(2)
+ with col3:
+ # selectbox with search option
+ fractionation_elements.append(" ")
+ fractionation_elements = set(fractionation_elements)
+ return_search = st.multiselect(
+ "Select your matching fractionation term using this autocomplete function",
+ fractionation_elements,
+ max_selections=number_of_methods,
+ )
+ with col4:
+ st.write("Or follow the ontology based drop down menu below")
+ return_select = tree_select(
+ fractionation_nodes,
+ no_cascade=True,
+ expand_on_click=True,
+ check_model="leaf",
+ )
+
+ if (len(return_select["checked"]) > 1) & (
+ len(return_select["checked"]) != number_of_methods
+ ):
+ st.error(f"You need to select a total of {number_of_methods}.")
+ all = return_search + return_select["checked"]
+ all = [i.split(",")[-1] for i in all if i is not None]
+ if (len(all) >= 1) & (len(all) != number_of_methods):
+ st.error(f"You need to select a total of {number_of_methods}.")
+ x = st.form_submit_button("Submit selection")
+ if x:
+ st.write(f"Selection contains: {all}")
+
+ if x:
+ df = ParsingModule.fill_in_from_list(template_df, "comment[fractionation method]", all)
+ df = ParsingModule.fill_in_from_list(template_df, "comment[fraction identifier]", [*range(1, number_of_fractions + 1)])
+ update_session_state(df)
+
+if selection == "comment[instrument]":
+ st.subheader("Input the instrument that was used in your experiment")
+ all_instrument_elements = data_dict["all_instrument_elements"]
+ instrument_nodes = data_dict["instrument_nodes"]
+ df = ParsingModule.multiple_ontology_tree(
+ selection, all_instrument_elements, instrument_nodes, template_df
+ )
+ update_session_state(df)
+
+if selection == "characteristics[individual]":
+ col1, col2, col3 = st.columns(3)
+ with col1:
+ sel = st.selectbox("Do you have multiple indiviuals in your data?", ("", "No", "Yes", "Not available"))
+ if sel == "No":
+ template_df[selection] = 1
+ st.session_state["template_df"] = template_df
+ st.experimental_rerun()
+ if sel == "Yes":
+ with col2:
+ number = st.number_input("How many indiviuals are in your data?", min_value=0, step=1)
+ with col3:
+ s = st.checkbox("Ready for input?")
+ if sel == "Yes" and s:
+ indiv = [*range(1, number + 1, 1)]
+ df = ParsingModule.fill_in_from_list(template_df, "characteristics[individual]", indiv)
+ update_session_state(df)
+ if sel == "Not available":
+ template_df[selection] = "Not available"
+ st.session_state["template_df"] = template_df
+ st.experimental_rerun()
+
+
+if selection == "comment[label]":
+ st.subheader("Input the label that was used in your experiment. If no label was added, indicate this using *label free sample*.")
+ all_label_elements = data_dict["all_label_elements"]
+ label_nodes = data_dict["label_nodes"]
+ df = ParsingModule.multiple_ontology_tree(
+ selection, all_label_elements, label_nodes, template_df
+ )
+ update_session_state(df)
+
+if selection == "characteristics[organism]":
+ if "selected_species" not in st.session_state:
+ st.session_state["selected_species"] = set()
+ st.subheader("Select the species that is present in your sample")
+ if selection not in template_df.columns:
+ template_df[selection] = np.nan
+ multiple_in_one = False
+ index = template_df.columns.get_loc(selection)
+ col1, col2, col3, col4 = st.columns(4)
+ columns_to_adapt = [selection]
+ with col1:
+ multiple = st.radio(f"Are there multiple organisms in your data?", ("No", "Yes"))
+ if multiple == "Yes":
+ with col2:
+ number = st.number_input(
+ f"How many different organisms are in your data?",
+ min_value=0,
+ step=1)
+ with col3:
+ multiple_in_one_sel = st.radio(f"Are there multiple organisms within one sample?", ("No", "Yes"))
+ if multiple_in_one_sel == "Yes":
+ multiple_in_one = True
+ for i in range(number-1):
+ # add column next to the original column if it is not already there
+ if f"{selection}_{i+1}" not in template_df.columns:
+ template_df.insert(index+1, f"{selection}_{i+1}", "empty")
+ columns_to_adapt.append(f"{selection}_{i+1}")
+ if multiple == "No":
+ number = 1
+
+ col6, col7 = st.columns(2)
+ with col6:
+ model = st.radio('Does your data contain only classical model organisms?', ('Yes', 'No'),
+ help="Classical model organism being: Homo sapiens, Mus musculus, Drosophila Melanogaster, Arabidopsis thaliana, Xenopus laevis, Xenopus tropicalis, Saccharomyces cerevisiae, Caenorhabditis elegans, Danio rerio, Escherichia coli and Cavia porcellus")
+ classical_model_organisms = ["Homo sapiens",
+ "Mus musculus",
+ "Drosophila Melanogaster",
+ "Arabidopsis thaliana",
+ "Xenopus laevis", "Xenopus tropicalis",
+ "Saccharomyces cerevisiae",
+ "Caenorhabditis elegans",
+ "Danio rerio",
+ "Escherichia coli",
+ "Cavia porcellus"]
+ if model == 'Yes':
+ with col7:
+ sel = st.multiselect('Select the classical model organism here', classical_model_organisms, max_selections=number)
+ if isinstance(sel, list):
+ for i in sel:
+ if i is not None:
+ st.session_state.selected_species.add(i)
+ else:
+ if sel is not None:
+ st.session_state.selected_species.add(sel)
+ if model == 'No':
+ st.write('The NCBITaxon ontology data is loaded. Please allow a few seconds for the data to be loaded. ')
+ organism_data = load_organism_data()
+ if organism_data:
+ st.success(f"*NCBITaxon organism data was loaded*", icon="β
")
+ else:
+ st.error("Failed loading data", icon="β")
+ st.write("""First, select your species type using the tabs below.
+ Then you can fill in the name of your species and suggested ontology terms will appear, from which you can select the correct term or the perfectly matched term.
+ If you want to consult the ontology tree structure, you can click the button below to the OLS search page.""")
+ url = "https://www.ebi.ac.uk/ols/ontologies/ncbitaxon"
+ button = f'OLS NCBITaxon ontology tree'
+ st.write(button, unsafe_allow_html=True)
+
+ tab1, tab2, tab3, tab4, tab5, tab6 = st.tabs(['Eukaryota', 'Archaea', 'Bacteria', 'Viruses', 'Unclassified', 'Other'])
+ st.write(st.session_state.selected_species)
+ with tab1:
+ ret= organism_selection("eukaryota")
+ if ret != None:
+ if isinstance(ret, list):
+ for i in ret:
+ st.session_state.selected_species.add(i)
+ else:
+ st.session_state.selected_species.add(ret)
+ with tab2:
+ ret= organism_selection("archaea")
+ if ret != None:
+ #if ret is a list, add all elements to the set
+ if isinstance(ret, list):
+ for i in ret:
+ st.session_state.selected_species.add(i)
+ else:
+ st.session_state.selected_species.add(ret)
+ with tab3:
+ ret= organism_selection("bacteria")
+ if ret != None:
+ #if ret is a list, add all elements to the set
+ if isinstance(ret, list):
+ for i in ret:
+ st.session_state.selected_species.add(i)
+ else:
+ st.session_state.selected_species.add(ret)
+
+ with tab4:
+ ret= organism_selection("virus")
+ if ret != None:
+ #if ret is a list, add all elements to the set
+ if isinstance(ret, list):
+ for i in ret:
+ st.session_state.selected_species.add(i)
+ else:
+ st.session_state.selected_species.add(ret)
+
+ with tab5:
+ ret= organism_selection("unclassified")
+ if ret != None:
+ #if ret is a list, add all elements to the set
+ if isinstance(ret, list):
+ for i in ret:
+ st.session_state.selected_species.add(i)
+ else:
+ st.session_state.selected_species.add(ret)
+
+ with tab6:
+ ret= organism_selection("other_sequences")
+ if ret != None:
+ #if ret is a list, add all elements to the set
+ if isinstance(ret, list):
+ for i in ret:
+ st.session_state.selected_species.add(i)
+ else:
+ st.session_state.selected_species.add(ret)
+ if st.session_state['selected_species'] != {None}:
+ st.write(f"You selected the following species:{st.session_state['selected_species']}")
+ if len(st.session_state["selected_species"]) > number:
+ st.error(f"""Number of selected species is {len(st.session_state['selected_species'])}, but this should be {number} according to the input above.
+ Select the species to remove from the list below""")
+ # checkbox to remove species
+ remove_species = set()
+ for i, element in enumerate(st.session_state["selected_species"]):
+ if st.checkbox(f"{element}", key=i):
+ remove_species.add(element)
+ st.session_state["selected_species"] = st.session_state["selected_species"] - remove_species
+ st.write(f"Selected species after removal: {st.session_state['selected_species']}")
+ elif (len(st.session_state["selected_species"]) < number) and (len(st.session_state["selected_species"]) > 0):
+ st.error(f"""Number of selected species is {len(st.session_state['selected_species'])}, but this should be {number} according to the input above.
+ Please select {number-len(st.session_state['selected_species'])} more organisms.""")
+ s = st.checkbox("Ready for input?")
+ if s:
+ input_list = list(st.session_state["selected_species"])
+ if multiple_in_one:
+ #add "" in the beginning of the list
+ input_list.insert(0, "NA")
+ df = ParsingModule.fill_in_from_list(template_df, selection, input_list, multiple_in_one)
+ update_session_state(df)
+ #remove the session state
+ del st.session_state["selected_species"]
+ #remove the organism_data from the session state
+
+if selection == "characteristics[organism part]":
+ st.write("Select the part of the organism that is present in your sample")
+ all_orgpart_elements = data_dict["all_organism_part_elements"]
+ orgpart_nodes = data_dict["organism_part_nodes"]
+ df = ParsingModule.multiple_ontology_tree(
+ selection, all_orgpart_elements, orgpart_nodes, template_df, multiple_in_one=True
+ )
+ update_session_state(df)
+
+if selection == "comment[reduction reagent]":
+ st.write("Input the reduction reagent that was used in your experiment")
+ all_reduction_elements = data_dict["all_reduction_reagent_elements"]
+ reduction_nodes = data_dict["reduction_nodes"]
+ df = ParsingModule.multiple_ontology_tree(
+ selection, all_reduction_elements, reduction_nodes, template_df
+ )
+ update_session_state(df)
+
+if selection == "characteristics[sex]":
+ col1, col2, col3 = st.columns(3)
+ with col1:
+ sel = st.selectbox("Are there multiple sexes in your data?", ("", "No", "Yes", "Not available"))
+ if sel == "No":
+ sel2 = st.selectbox("Select the sex of your sample", ("", "F", "M", "unknown"))
+ if sel2 in ["F", "M", "unknown"]:
+ template_df[selection] = sel2
+ st.session_state["template_df"] = template_df
+ st.experimental_rerun()
+ if sel == "Yes":
+ df = ParsingModule.fill_in_from_list(template_df, "characteristics[sex]", ["F", "M", "unknown"])
+ update_session_state(df)
+ if sel == "Not available":
+ template_df[selection] = "Not available"
+ st.session_state["template_df"] = template_df
+ st.experimental_rerun()
+
+if selection == "comment[technical replicate]":
+ col1, col2, col3 = st.columns(3)
+ with col1:
+ sel = st.selectbox("Do you have technical replicates?", ("", "Yes", "No"))
+ if sel == "No":
+ template_df[selection] = 1
+ st.session_state["template_df"] = template_df
+ st.experimental_rerun()
+ if sel == "Yes":
+ with col2:
+ number = st.number_input("How many technical replicates are in your data?", min_value=0, step=1)
+ with col3:
+ s = st.checkbox("Ready for input?")
+ if sel== "Yes" and s:
+ tech_rep = [*range(1, number + 1, 1)]
+ df = ParsingModule.fill_in_from_list(template_df, selection, tech_rep)
+ update_session_state(df)
+
+
+
+if selection == "characteristics[biological replicate]":
+ col1, col2, col3 = st.columns(3)
+ with col1:
+ sel = st.selectbox("Do you have biological replicates?", ("", "Yes", "No"))
+ if sel == "No":
+ template_df[selection] = 1
+ st.session_state["template_df"] = template_df
+ st.experimental_rerun()
+ if sel == "Yes":
+ with col2:
+ number = st.number_input("How many biological replicates are there?", min_value=0, step=1)
+ with col3:
+ s = st.checkbox("Ready for input?")
+ if sel== "Yes" and s:
+ biol_rep = [*range(1, int(number) + 1, 1)]
+ template_df = ParsingModule.fill_in_from_list(template_df, selection, biol_rep)
+ st.session_state["template_df"] = template_df
+ #st.experimental_rerun()
+
+if selection == "comment[fragment mass tolerance]":
+ st.subheader(""" Input the fragment mass tolerance and **the unit (ppm or Da)**. click Update twice when finished""")
+ df = ParsingModule.fill_in_from_list(template_df, selection)
+ update_session_state(df)
+
+if selection == "comment[precursor mass tolerance]":
+ st.subheader(""" Input the precursor mass tolerance and **the unit (ppm or Da)**. click Update twice when finished""")
+ df = ParsingModule.fill_in_from_list(template_df, selection)
+ update_session_state(df)
+
+
+
+if selection == "characterics[synthetic peptide]":
+ st.subheader(
+ "If the sample is a synthetic peptide library, indicate this by selecting *synthetic* or *not synthetic*"
+ )
+ df = ParsingModule.fill_in_from_list(
+ template_df, selection, ["synthetic", "not synthetic"]
+ )
+ update_session_state(df)
+
+if selection == "comment[depletion]":
+ depl = st.selectbox("Is the sample depleted?", ("","Yes", "No"))
+ if depl == "Yes":
+ st.write("Indicate depleted or bound fraction directly in the SDRF file")
+ df = ParsingModule.fill_in_from_list(
+ template_df, selection, ["depleted fraction", "bound fraction"]
+ )
+ update_session_state(df)
+ if depl == "No":
+ template_df["comment[depletion]"] = "not depletion"
+ st.session_state["template_df"] = template_df
+ st.experimental_rerun()
+
+if selection == "comment[modification parameters]":
+ st.write(""" First select the modifications that are in your sample using the drop down autocomplete menu. After selection you will need to choose the modification type, position and target amino acid.
+ Modification type can be fixed, variable or annotated. Annotated is used to search for all the occurrences of the modification into an annotated protein database file like UNIPROT XML or PEFF.
+ Position can be anywhere, protein N-term, protein C-term, any N-term or any C-term.
+ Target amino acid can be any amino acid or X if it's not in the list. Yoy can also select multiple amino acids.""")
+ st.write(""" If the modification of your choice is not available in the drop down list, select "Other" and input the modification name, chemical formula and mass of your custom modification.""")
+ st.write(""" The final modification will be formatted following the SDRF guidelines after which you can click on "Submit modifications".""")
+ unimod = data_dict["unimod_dict"]
+ inputs = sorted(list(unimod.keys()))
+ inputs.append("Other")
+ mt = ["Fixed", "Variable", "Annotated"]
+ pp = ["Anywhere", "Protein N-term", "Protein C-term", "Any N-term", "Any C-term"]
+ ta = ["X","G","A","L","M","F","W","K","Q","E","S","P","V","I","C","Y","H","R","N","D","T"]
+ mods_sel = st.multiselect("Select the modifications present in your data", inputs)
+ sdrf_mods = []
+ st.session_state["sdrf_mods"] = sdrf_mods
+
+ for i in mods_sel:
+ st.write(f"**{i}**")
+ col1, col2, col3 = st.columns(3)
+
+
+ with col1:
+ mt_sel = st.selectbox("Select the modification type", mt, key=f"mt_{i}")
+ with col2:
+ pp_sel = st.selectbox(
+ "Select the position of the modification", pp, key=f"pp_{i}"
+ )
+ with col3:
+ ta_sel = st.multiselect("Select the target amino acid", ta, key=f"ta_{i}")
+ ta_sel = ",".join(ta_sel)
+
+ if i == "Other":
+ col4, col5, col6 = st.columns(3)
+ with col4:
+ name = st.text_input(
+ "Input a logical name"
+ )
+ with col5:
+ form = st.text_input("Input the chemical formula")
+ with col6:
+ mass = st.text_input("Input the molecular mass")
+
+ final_str = f"NT={name};MT={mt_sel};PP={pp_sel};TA={ta_sel};CF={form};MM={mass}"
+ st.session_state["sdrf_mods"].append(final_str)
+ st.write(
+ f""" **Final SDRF notation of modification:**
+ {final_str}"""
+ )
+ else:
+ final_str = f"{unimod[i]};MT={mt_sel};PP={pp_sel};TA={ta_sel}"
+ st.session_state["sdrf_mods"].append(final_str)
+ st.write(
+ f"""**Final SDRF notation of modification:**
+ {final_str}"""
+ )
+ st.write(f"Confirmed modifications contain: {st.session_state['sdrf_mods']}")
+ submit = st.checkbox(
+ "Submit modifications",
+ help="Click to add the modifications to the SDRF file. If everything looks fine, click again",
+ )
+
+ if submit:
+ # for every element in the list sdrf_mods
+ # add it to the template_df as a value in a new column with name selection_1, selection_2, selection_3, etc
+ # then update the session state
+ #get the index of the original column
+ index = template_df.columns.get_loc(selection)
+ #insert the new column next to the original index
+ for i, mod in enumerate(sdrf_mods):
+ st.write(i, mod)
+ if i == 0:
+ template_df[f"{selection}"] = mod
+ else:
+ template_df.insert(index+i, f"{selection}_{i}", mod)
+ index += 1
+
+ st.session_state["template_df"] = template_df
+ st.write(template_df)
+
+if selection == "undo column":
+ st.write("""Here you can select a column that you want to reannotate.
+ Upon clicking the column the current values will be removed and you can reannotate the column.
+ """)
+ col1, col2 = st.columns(2)
+ with col1:
+ sel = st.multiselect("Select the column(s) you want to reannotate", template_df.columns)
+ with col2:
+ if st.button("Reannotate"):
+ template_df[sel] = np.nan
+ st.session_state["template_df"] = template_df
+ st.experimental_rerun()
+
diff --git a/.history/unimod_dict_20240927125628.json b/.history/unimod_dict_20240927125628.json
new file mode 100644
index 0000000..d2c7ffe
--- /dev/null
+++ b/.history/unimod_dict_20240927125628.json
@@ -0,0 +1 @@
+{"Acetyl": "NT=Acetyl;AC=1;CF=H(2) C(2) O;MM=42.010565", "Amidated": "NT=Amidated;AC=2;CF=H N O(-1);MM=-0.984016", "Biotin": "NT=Biotin;AC=3;CF=H(14) C(10) N(2) O(2) S;MM=226.077598", "Carbamidomethyl": "NT=Carbamidomethyl;AC=4;CF=H(3) C(2) N O;MM=57.021464", "Carbamyl": "NT=Carbamyl;AC=5;CF=H C N O;MM=43.005814", "Carboxymethyl": "NT=Carboxymethyl;AC=6;CF=H(2) C(2) O(2);MM=58.005479", "Deamidated": "NT=Deamidated;AC=7;CF=H(-1) N(-1) O;MM=0.984016", "ICAT-G": "NT=ICAT-G;AC=8;CF=H(38) C(22) N(4) O(6) S;MM=486.251206", "ICAT-G:2H(8)": "NT=ICAT-G:2H(8);AC=9;CF=H(30) 2H(8) C(22) N(4) O(6) S;MM=494.30142", "Met->Hse": "NT=Met->Hse;AC=10;CF=H(-2) C(-1) O S(-1);MM=-29.992806", "Met->Hsl": "NT=Met->Hsl;AC=11;CF=H(-4) C(-1) S(-1);MM=-48.003371", "ICAT-D:2H(8)": "NT=ICAT-D:2H(8);AC=12;CF=H(26) 2H(8) C(20) N(4) O(5) S;MM=450.275205", "ICAT-D": "NT=ICAT-D;AC=13;CF=H(34) C(20) N(4) O(5) S;MM=442.224991", "NIPCAM": "NT=NIPCAM;AC=17;CF=H(9) C(5) N O;MM=99.068414", "PEO-Iodoacetyl-LC-Biotin": "NT=PEO-Iodoacetyl-LC-Biotin;AC=20;CF=H(30) C(18) N(4) O(5) S;MM=414.193691", "Phospho": "NT=Phospho;AC=21;CF=H O(3) P;MM=79.966331", "Dehydrated": "NT=Dehydrated;AC=23;CF=H(-2) O(-1);MM=-18.010565", "Propionamide": "NT=Propionamide;AC=24;CF=H(5) C(3) N O;MM=71.037114", "Pyridylacetyl": "NT=Pyridylacetyl;AC=25;CF=H(5) C(7) N O;MM=119.037114", "Pyro-carbamidomethyl": "NT=Pyro-carbamidomethyl;AC=26;CF=C(2) O;MM=39.994915", "Glu->pyro-Glu": "NT=Glu->pyro-Glu;AC=27;CF=H(-2) O(-1);MM=-18.010565", "Gln->pyro-Glu": "NT=Gln->pyro-Glu;AC=28;CF=H(-3) N(-1);MM=-17.026549", "SMA": "NT=SMA;AC=29;CF=H(9) C(6) N O(2);MM=127.063329", "Cation:Na": "NT=Cation:Na;AC=30;CF=H(-1) Na;MM=21.981943", "Pyridylethyl": "NT=Pyridylethyl;AC=31;CF=H(7) C(7) N;MM=105.057849", "Methyl": "NT=Methyl;AC=34;CF=H(2) C;MM=14.01565", "Oxidation": "NT=Oxidation;AC=35;CF=O;MM=15.994915", "Dimethyl": "NT=Dimethyl;AC=36;CF=H(4) C(2);MM=28.0313", "Trimethyl": "NT=Trimethyl;AC=37;CF=H(6) C(3);MM=42.04695", "Methylthio": "NT=Methylthio;AC=39;CF=H(2) C S;MM=45.987721", "Sulfo": "NT=Sulfo;AC=40;CF=O(3) S;MM=79.956815", "Hex": "NT=Hex;AC=41;CF=Hex;MM=162.052824", "Lipoyl": "NT=Lipoyl;AC=42;CF=H(12) C(8) O S(2);MM=188.032956", "HexNAc": "NT=HexNAc;AC=43;CF=HexNAc;MM=203.079373", "Farnesyl": "NT=Farnesyl;AC=44;CF=H(24) C(15);MM=204.187801", "Myristoyl": "NT=Myristoyl;AC=45;CF=H(26) C(14) O;MM=210.198366", "PyridoxalPhosphate": "NT=PyridoxalPhosphate;AC=46;CF=H(8) C(8) N O(5) P;MM=229.014009", "Palmitoyl": "NT=Palmitoyl;AC=47;CF=H(30) C(16) O;MM=238.229666", "GeranylGeranyl": "NT=GeranylGeranyl;AC=48;CF=H(32) C(20);MM=272.250401", "Phosphopantetheine": "NT=Phosphopantetheine;AC=49;CF=H(21) C(11) N(2) O(6) P S;MM=340.085794", "FAD": "NT=FAD;AC=50;CF=H(31) C(27) N(9) O(15) P(2);MM=783.141486", "Tripalmitate": "NT=Tripalmitate;AC=51;CF=H(96) C(51) O(5);MM=788.725777", "Guanidinyl": "NT=Guanidinyl;AC=52;CF=H(2) C N(2);MM=42.021798", "HNE": "NT=HNE;AC=53;CF=H(16) C(9) O(2);MM=156.11503", "Glucuronyl": "NT=Glucuronyl;AC=54;CF=HexA;MM=176.032088", "Glutathione": "NT=Glutathione;AC=55;CF=H(15) C(10) N(3) O(6) S;MM=305.068156", "Acetyl:2H(3)": "NT=Acetyl:2H(3);AC=56;CF=H(-1) 2H(3) C(2) O;MM=45.029395", "Propionyl": "NT=Propionyl;AC=58;CF=H(4) C(3) O;MM=56.026215", "Propionyl:13C(3)": "NT=Propionyl:13C(3);AC=59;CF=H(4) 13C(3) O;MM=59.036279", "GIST-Quat": "NT=GIST-Quat;AC=60;CF=H(13) C(7) N O;MM=127.099714", "GIST-Quat:2H(3)": "NT=GIST-Quat:2H(3);AC=61;CF=H(10) 2H(3) C(7) N O;MM=130.118544", "GIST-Quat:2H(6)": "NT=GIST-Quat:2H(6);AC=62;CF=H(7) 2H(6) C(7) N O;MM=133.137375", "GIST-Quat:2H(9)": "NT=GIST-Quat:2H(9);AC=63;CF=H(4) 2H(9) C(7) N O;MM=136.156205", "Succinyl": "NT=Succinyl;AC=64;CF=H(4) C(4) O(3);MM=100.016044", "Succinyl:2H(4)": "NT=Succinyl:2H(4);AC=65;CF=2H(4) C(4) O(3);MM=104.041151", "Succinyl:13C(4)": "NT=Succinyl:13C(4);AC=66;CF=H(4) 13C(4) O(3);MM=104.029463", "Iminobiotin": "NT=Iminobiotin;AC=89;CF=H(15) C(10) N(3) O S;MM=225.093583", "ESP": "NT=ESP;AC=90;CF=H(26) C(16) N(4) O(2) S;MM=338.177647", "ESP:2H(10)": "NT=ESP:2H(10);AC=91;CF=H(16) 2H(10) C(16) N(4) O(2) S;MM=348.240414", "NHS-LC-Biotin": "NT=NHS-LC-Biotin;AC=92;CF=H(25) C(16) N(3) O(3) S;MM=339.161662", "EDT-maleimide-PEO-biotin": "NT=EDT-maleimide-PEO-biotin;AC=93;CF=H(39) C(25) N(5) O(6) S(3);MM=601.206246", "IMID": "NT=IMID;AC=94;CF=H(4) C(3) N(2);MM=68.037448", "IMID:2H(4)": "NT=IMID:2H(4);AC=95;CF=2H(4) C(3) N(2);MM=72.062555", "Propionamide:2H(3)": "NT=Propionamide:2H(3);AC=97;CF=H(2) 2H(3) C(3) N O;MM=74.055944", "ICAT-C": "NT=ICAT-C;AC=105;CF=H(17) C(10) N(3) O(3);MM=227.126991", "ICAT-C:13C(9)": "NT=ICAT-C:13C(9);AC=106;CF=H(17) C 13C(9) N(3) O(3);MM=236.157185", "FormylMet": "NT=FormylMet;AC=107;CF=H(9) C(6) N O(2) S;MM=159.035399", "Nethylmaleimide": "NT=Nethylmaleimide;AC=108;CF=H(7) C(6) N O(2);MM=125.047679", "OxLysBiotinRed": "NT=OxLysBiotinRed;AC=112;CF=H(26) C(16) N(4) O(3) S;MM=354.172562", "OxLysBiotin": "NT=OxLysBiotin;AC=113;CF=H(24) C(16) N(4) O(3) S;MM=352.156911", "OxProBiotinRed": "NT=OxProBiotinRed;AC=114;CF=H(29) C(16) N(5) O(3) S;MM=371.199111", "OxProBiotin": "NT=OxProBiotin;AC=115;CF=H(27) C(16) N(5) O(3) S;MM=369.183461", "OxArgBiotin": "NT=OxArgBiotin;AC=116;CF=H(22) C(15) N(2) O(3) S;MM=310.135113", "OxArgBiotinRed": "NT=OxArgBiotinRed;AC=117;CF=H(24) C(15) N(2) O(3) S;MM=312.150763", "EDT-iodoacetyl-PEO-biotin": "NT=EDT-iodoacetyl-PEO-biotin;AC=118;CF=H(34) C(20) N(4) O(4) S(3);MM=490.174218", "IBTP": "NT=IBTP;AC=119;CF=H(21) C(22) P;MM=316.138088", "GG": "NT=GG;AC=121;CF=H(6) C(4) N(2) O(2);MM=114.042927", "Formyl": "NT=Formyl;AC=122;CF=C O;MM=27.994915", "ICAT-H": "NT=ICAT-H;AC=123;CF=H(20) C(15) N O(6) Cl;MM=345.097915", "ICAT-H:13C(6)": "NT=ICAT-H:13C(6);AC=124;CF=H(20) C(9) 13C(6) N O(6) Cl;MM=351.118044", "Xlink:DTSSP[88]": "NT=Xlink:DTSSP[88];AC=126;CF=H(4) C(3) O S;MM=87.998285", "Fluoro": "NT=Fluoro;AC=127;CF=H(-1) F;MM=17.990578", "Fluorescein": "NT=Fluorescein;AC=128;CF=H(13) C(22) N O(6);MM=387.074287", "Iodo": "NT=Iodo;AC=129;CF=H(-1) I;MM=125.896648", "Diiodo": "NT=Diiodo;AC=130;CF=H(-2) I(2);MM=251.793296", "Triiodo": "NT=Triiodo;AC=131;CF=H(-3) I(3);MM=377.689944", "Myristoleyl": "NT=Myristoleyl;AC=134;CF=H(24) C(14) O;MM=208.182715", "Myristoyl+Delta:H(-4)": "NT=Myristoyl+Delta:H(-4);AC=135;CF=H(22) C(14) O;MM=206.167065", "Benzoyl": "NT=Benzoyl;AC=136;CF=H(4) C(7) O;MM=104.026215", "Hex(5)HexNAc(2)": "NT=Hex(5)HexNAc(2);AC=137;CF=Hex(5) HexNAc(2);MM=1216.422863", "Dansyl": "NT=Dansyl;AC=139;CF=H(11) C(12) N O(2) S;MM=233.051049", "a-type-ion": "NT=a-type-ion;AC=140;CF=H(-2) C(-1) O(-2);MM=-46.005479", "Amidine": "NT=Amidine;AC=141;CF=H(3) C(2) N;MM=41.026549", "HexNAc(1)dHex(1)": "NT=HexNAc(1)dHex(1);AC=142;CF=dHex HexNAc;MM=349.137281", "HexNAc(2)": "NT=HexNAc(2);AC=143;CF=HexNAc(2);MM=406.158745", "Hex(3)": "NT=Hex(3);AC=144;CF=Hex(3);MM=486.158471", "HexNAc(1)dHex(2)": "NT=HexNAc(1)dHex(2);AC=145;CF=dHex(2) HexNAc;MM=495.19519", "Hex(1)HexNAc(1)dHex(1)": "NT=Hex(1)HexNAc(1)dHex(1);AC=146;CF=dHex Hex HexNAc;MM=511.190105", "HexNAc(2)dHex(1)": "NT=HexNAc(2)dHex(1);AC=147;CF=dHex HexNAc(2);MM=552.216654", "Hex(1)HexNAc(2)": "NT=Hex(1)HexNAc(2);AC=148;CF=Hex HexNAc(2);MM=568.211569", "Hex(1)HexNAc(1)NeuAc(1)": "NT=Hex(1)HexNAc(1)NeuAc(1);AC=149;CF=Hex HexNAc NeuAc;MM=656.227613", "HexNAc(2)dHex(2)": "NT=HexNAc(2)dHex(2);AC=150;CF=dHex(2) HexNAc(2);MM=698.274563", "Hex(1)HexNAc(2)Pent(1)": "NT=Hex(1)HexNAc(2)Pent(1);AC=151;CF=Pent Hex HexNAc(2);MM=700.253828", "Hex(1)HexNAc(2)dHex(1)": "NT=Hex(1)HexNAc(2)dHex(1);AC=152;CF=dHex Hex HexNAc(2);MM=714.269478", "Hex(2)HexNAc(2)": "NT=Hex(2)HexNAc(2);AC=153;CF=Hex(2) HexNAc(2);MM=730.264392", "Hex(3)HexNAc(1)Pent(1)": "NT=Hex(3)HexNAc(1)Pent(1);AC=154;CF=Pent Hex(3) HexNAc;MM=821.280102", "Hex(1)HexNAc(2)dHex(1)Pent(1)": "NT=Hex(1)HexNAc(2)dHex(1)Pent(1);AC=155;CF=Pent dHex Hex HexNAc(2);MM=846.311736", "Hex(1)HexNAc(2)dHex(2)": "NT=Hex(1)HexNAc(2)dHex(2);AC=156;CF=dHex(2) Hex HexNAc(2);MM=860.327386", "Hex(2)HexNAc(2)Pent(1)": "NT=Hex(2)HexNAc(2)Pent(1);AC=157;CF=Pent Hex(2) HexNAc(2);MM=862.306651", "Hex(2)HexNAc(2)dHex(1)": "NT=Hex(2)HexNAc(2)dHex(1);AC=158;CF=dHex Hex(2) HexNAc(2);MM=876.322301", "Hex(3)HexNAc(2)": "NT=Hex(3)HexNAc(2);AC=159;CF=Hex(3) HexNAc(2);MM=892.317216", "Hex(1)HexNAc(1)NeuAc(2)": "NT=Hex(1)HexNAc(1)NeuAc(2);AC=160;CF=Hex HexNAc NeuAc(2);MM=947.323029", "Hex(3)HexNAc(2)Phos(1)": "NT=Hex(3)HexNAc(2)Phos(1);AC=161;CF=H O(3) P Hex(3) HexNAc(2);MM=972.283547", "Delta:S(-1)Se(1)": "NT=Delta:S(-1)Se(1);AC=162;CF=S(-1) Se;MM=47.944449", "Delta:H(-1)N(-1)18O(1)": "NT=Delta:H(-1)N(-1)18O(1);AC=170;CF=H(-1) N(-1) 18O;MM=2.988261", "NBS:13C(6)": "NT=NBS:13C(6);AC=171;CF=H(3) 13C(6) N O(2) S;MM=159.008578", "NBS": "NT=NBS;AC=172;CF=H(3) C(6) N O(2) S;MM=152.988449", "BHT": "NT=BHT;AC=176;CF=H(22) C(15) O;MM=218.167065", "DAET": "NT=DAET;AC=178;CF=H(9) C(4) N O(-1) S;MM=87.050655", "Label:13C(9)": "NT=Label:13C(9);AC=184;CF=C(-9) 13C(9);MM=9.030193", "Label:13C(9)+Phospho": "NT=Label:13C(9)+Phospho;AC=185;CF=H C(-9) 13C(9) O(3) P;MM=88.996524", "HPG": "NT=HPG;AC=186;CF=H(4) C(8) O(2);MM=132.021129", "2HPG": "NT=2HPG;AC=187;CF=H(10) C(16) O(5);MM=282.052824", "Label:13C(6)": "NT=Label:13C(6);AC=188;CF=C(-6) 13C(6);MM=6.020129", "Label:18O(2)": "NT=Label:18O(2);AC=193;CF=O(-2) 18O(2);MM=4.008491", "AccQTag": "NT=AccQTag;AC=194;CF=H(6) C(10) N(2) O;MM=170.048013", "QAT": "NT=QAT;AC=195;CF=H(19) C(9) N(2) O;MM=171.149738", "QAT:2H(3)": "NT=QAT:2H(3);AC=196;CF=H(16) 2H(3) C(9) N(2) O;MM=174.168569", "EQAT": "NT=EQAT;AC=197;CF=H(20) C(10) N(2) O;MM=184.157563", "EQAT:2H(5)": "NT=EQAT:2H(5);AC=198;CF=H(15) 2H(5) C(10) N(2) O;MM=189.188947", "Dimethyl:2H(4)": "NT=Dimethyl:2H(4);AC=199;CF=2H(4) C(2);MM=32.056407", "Ethanedithiol": "NT=Ethanedithiol;AC=200;CF=H(4) C(2) O(-1) S(2);MM=75.980527", "Delta:H(6)C(6)O(1)": "NT=Delta:H(6)C(6)O(1);AC=205;CF=H(6) C(6) O;MM=94.041865", "Delta:H(4)C(3)O(1)": "NT=Delta:H(4)C(3)O(1);AC=206;CF=H(4) C(3) O;MM=56.026215", "Delta:H(2)C(3)": "NT=Delta:H(2)C(3);AC=207;CF=H(2) C(3);MM=38.01565", "Delta:H(4)C(6)": "NT=Delta:H(4)C(6);AC=208;CF=H(4) C(6);MM=76.0313", "Delta:H(8)C(6)O(2)": "NT=Delta:H(8)C(6)O(2);AC=209;CF=H(8) C(6) O(2);MM=112.05243", "NEIAA": "NT=NEIAA;AC=211;CF=H(7) C(4) N O;MM=85.052764", "NEIAA:2H(5)": "NT=NEIAA:2H(5);AC=212;CF=H(2) 2H(5) C(4) N O;MM=90.084148", "ADP-Ribosyl": "NT=ADP-Ribosyl;AC=213;CF=H(13) C(10) N(5) O(9) P(2) Pent;MM=541.06111", "iTRAQ4plex": "NT=iTRAQ4plex;AC=214;CF=H(12) C(4) 13C(3) N 15N O;MM=144.102063", "IGBP": "NT=IGBP;AC=243;CF=H(13) C(12) N(2) O(2) Br;MM=296.016039", "Crotonaldehyde": "NT=Crotonaldehyde;AC=253;CF=H(6) C(4) O;MM=70.041865", "Delta:H(2)C(2)": "NT=Delta:H(2)C(2);AC=254;CF=H(2) C(2);MM=26.01565", "Delta:H(4)C(2)": "NT=Delta:H(4)C(2);AC=255;CF=H(4) C(2);MM=28.0313", "Delta:H(4)C(3)": "NT=Delta:H(4)C(3);AC=256;CF=H(4) C(3);MM=40.0313", "Label:18O(1)": "NT=Label:18O(1);AC=258;CF=O(-1) 18O;MM=2.004246", "Label:13C(6)15N(2)": "NT=Label:13C(6)15N(2);AC=259;CF=C(-6) 13C(6) N(-2) 15N(2);MM=8.014199", "Thiophospho": "NT=Thiophospho;AC=260;CF=H O(2) P S;MM=95.943487", "SPITC": "NT=SPITC;AC=261;CF=H(5) C(7) N O(3) S(2);MM=214.971084", "Label:2H(3)": "NT=Label:2H(3);AC=262;CF=H(-3) 2H(3);MM=3.01883", "PET": "NT=PET;AC=264;CF=H(7) C(7) N O(-1) S;MM=121.035005", "Label:13C(6)15N(4)": "NT=Label:13C(6)15N(4);AC=267;CF=C(-6) 13C(6) N(-4) 15N(4);MM=10.008269", "Label:13C(5)15N(1)": "NT=Label:13C(5)15N(1);AC=268;CF=C(-5) 13C(5) N(-1) 15N;MM=6.013809", "Label:13C(9)15N(1)": "NT=Label:13C(9)15N(1);AC=269;CF=C(-9) 13C(9) N(-1) 15N;MM=10.027228", "Cytopiloyne": "NT=Cytopiloyne;AC=270;CF=H(22) C(19) O(7);MM=362.136553", "Cytopiloyne+water": "NT=Cytopiloyne+water;AC=271;CF=H(24) C(19) O(8);MM=380.147118", "CAF": "NT=CAF;AC=272;CF=H(4) C(3) O(4) S;MM=135.983029", "Nitrosyl": "NT=Nitrosyl;AC=275;CF=H(-1) N O;MM=28.990164", "AEBS": "NT=AEBS;AC=276;CF=H(9) C(8) N O(2) S;MM=183.035399", "Ethanolyl": "NT=Ethanolyl;AC=278;CF=H(4) C(2) O;MM=44.026215", "Ethyl": "NT=Ethyl;AC=280;CF=H(4) C(2);MM=28.0313", "CoenzymeA": "NT=CoenzymeA;AC=281;CF=H(34) C(21) N(7) O(16) P(3) S;MM=765.09956", "Methyl:2H(2)": "NT=Methyl:2H(2);AC=284;CF=2H(2) C;MM=16.028204", "SulfanilicAcid": "NT=SulfanilicAcid;AC=285;CF=H(5) C(6) N O(2) S;MM=155.004099", "SulfanilicAcid:13C(6)": "NT=SulfanilicAcid:13C(6);AC=286;CF=H(5) 13C(6) N O(2) S;MM=161.024228", "Trp->Oxolactone": "NT=Trp->Oxolactone;AC=288;CF=H(-2) O;MM=13.979265", "Biotin-PEO-Amine": "NT=Biotin-PEO-Amine;AC=289;CF=H(28) C(16) N(4) O(3) S;MM=356.188212", "Biotin-HPDP": "NT=Biotin-HPDP;AC=290;CF=H(32) C(19) N(4) O(3) S(2);MM=428.191582", "Delta:Hg(1)": "NT=Delta:Hg(1);AC=291;CF=Hg;MM=201.970617", "IodoU-AMP": "NT=IodoU-AMP;AC=292;CF=H(11) C(9) N(2) O(9) P;MM=322.020217", "CAMthiopropanoyl": "NT=CAMthiopropanoyl;AC=293;CF=H(7) C(5) N O(2) S;MM=145.019749", "IED-Biotin": "NT=IED-Biotin;AC=294;CF=H(22) C(14) N(4) O(3) S;MM=326.141261", "dHex": "NT=dHex;AC=295;CF=dHex;MM=146.057909", "Methyl:2H(3)": "NT=Methyl:2H(3);AC=298;CF=H(-1) 2H(3) C;MM=17.03448", "Carboxy": "NT=Carboxy;AC=299;CF=C O(2);MM=43.989829", "Bromobimane": "NT=Bromobimane;AC=301;CF=H(10) C(10) N(2) O(2);MM=190.074228", "Menadione": "NT=Menadione;AC=302;CF=H(6) C(11) O(2);MM=170.036779", "DeStreak": "NT=DeStreak;AC=303;CF=H(4) C(2) O S;MM=75.998285", "dHex(1)Hex(3)HexNAc(4)": "NT=dHex(1)Hex(3)HexNAc(4);AC=305;CF=dHex Hex(3) HexNAc(4);MM=1444.53387", "dHex(1)Hex(4)HexNAc(4)": "NT=dHex(1)Hex(4)HexNAc(4);AC=307;CF=dHex Hex(4) HexNAc(4);MM=1606.586693", "dHex(1)Hex(5)HexNAc(4)": "NT=dHex(1)Hex(5)HexNAc(4);AC=308;CF=dHex Hex(5) HexNAc(4);MM=1768.639517", "Hex(3)HexNAc(4)": "NT=Hex(3)HexNAc(4);AC=309;CF=Hex(3) HexNAc(4);MM=1298.475961", "Hex(4)HexNAc(4)": "NT=Hex(4)HexNAc(4);AC=310;CF=Hex(4) HexNAc(4);MM=1460.528784", "Hex(5)HexNAc(4)": "NT=Hex(5)HexNAc(4);AC=311;CF=Hex(5) HexNAc(4);MM=1622.581608", "Cysteinyl": "NT=Cysteinyl;AC=312;CF=H(5) C(3) N O(2) S;MM=119.004099", "Lys-loss": "NT=Lys-loss;AC=313;CF=H(-12) C(-6) N(-2) O(-1);MM=-128.094963", "Nmethylmaleimide": "NT=Nmethylmaleimide;AC=314;CF=H(5) C(5) N O(2);MM=111.032028", "DimethylpyrroleAdduct": "NT=DimethylpyrroleAdduct;AC=316;CF=H(6) C(6);MM=78.04695", "Delta:H(2)C(5)": "NT=Delta:H(2)C(5);AC=318;CF=H(2) C(5);MM=62.01565", "Delta:H(2)C(3)O(1)": "NT=Delta:H(2)C(3)O(1);AC=319;CF=H(2) C(3) O;MM=54.010565", "Nethylmaleimide+water": "NT=Nethylmaleimide+water;AC=320;CF=H(9) C(6) N O(3);MM=143.058243", "Xlink:B10621": "NT=Xlink:B10621;AC=323;CF=H(30) C(31) N(4) O(6) S I;MM=713.093079", "Xlink:DTBP[87]": "NT=Xlink:DTBP[87];AC=324;CF=H(5) C(3) N S;MM=87.01427", "FP-Biotin": "NT=FP-Biotin;AC=325;CF=H(49) C(27) N(4) O(5) P S;MM=572.316129", "Delta:H(4)C(2)O(-1)S(1)": "NT=Delta:H(4)C(2)O(-1)S(1);AC=327;CF=H(4) C(2) O(-1) S;MM=44.008456", "Methyl:2H(3)13C(1)": "NT=Methyl:2H(3)13C(1);AC=329;CF=H(-1) 2H(3) 13C;MM=18.037835", "Dimethyl:2H(6)13C(2)": "NT=Dimethyl:2H(6)13C(2);AC=330;CF=H(-2) 2H(6) 13C(2);MM=36.07567", "Thiophos-S-S-biotin": "NT=Thiophos-S-S-biotin;AC=332;CF=H(34) C(19) N(4) O(5) P S(3);MM=525.142894", "Can-FP-biotin": "NT=Can-FP-biotin;AC=333;CF=H(34) C(19) N(3) O(5) P S;MM=447.195679", "HNE+Delta:H(2)": "NT=HNE+Delta:H(2);AC=335;CF=H(18) C(9) O(2);MM=158.13068", "Methylamine": "NT=Methylamine;AC=337;CF=H(3) C N O(-1);MM=13.031634", "Bromo": "NT=Bromo;AC=340;CF=H(-1) Br;MM=77.910511", "Amino": "NT=Amino;AC=342;CF=H N;MM=15.010899", "Argbiotinhydrazide": "NT=Argbiotinhydrazide;AC=343;CF=H(13) C(9) N O(2) S;MM=199.066699", "Arg->GluSA": "NT=Arg->GluSA;AC=344;CF=H(-5) C(-1) N(-3) O;MM=-43.053433", "Trioxidation": "NT=Trioxidation;AC=345;CF=O(3);MM=47.984744", "His->Asn": "NT=His->Asn;AC=348;CF=H(-1) C(-2) N(-1) O;MM=-23.015984", "His->Asp": "NT=His->Asp;AC=349;CF=H(-2) C(-2) N(-2) O(2);MM=-22.031969", "Trp->Hydroxykynurenin": "NT=Trp->Hydroxykynurenin;AC=350;CF=C(-1) O(2);MM=19.989829", "Trp->Kynurenin": "NT=Trp->Kynurenin;AC=351;CF=C(-1) O;MM=3.994915", "Lys->Allysine": "NT=Lys->Allysine;AC=352;CF=H(-3) N(-1) O;MM=-1.031634", "Lysbiotinhydrazide": "NT=Lysbiotinhydrazide;AC=353;CF=H(15) C(10) N(3) O(2) S;MM=241.088497", "Nitro": "NT=Nitro;AC=354;CF=H(-1) N O(2);MM=44.985078", "probiotinhydrazide": "NT=probiotinhydrazide;AC=357;CF=H(18) C(10) N(4) O(2) S;MM=258.115047", "Pro->pyro-Glu": "NT=Pro->pyro-Glu;AC=359;CF=H(-2) O;MM=13.979265", "Pro->Pyrrolidinone": "NT=Pro->Pyrrolidinone;AC=360;CF=H(-2) C(-1) O(-1);MM=-30.010565", "Thrbiotinhydrazide": "NT=Thrbiotinhydrazide;AC=361;CF=H(16) C(10) N(4) O S;MM=240.104482", "Diisopropylphosphate": "NT=Diisopropylphosphate;AC=362;CF=H(13) C(6) O(3) P;MM=164.060231", "Isopropylphospho": "NT=Isopropylphospho;AC=363;CF=H(7) C(3) O(3) P;MM=122.013281", "ICPL:13C(6)": "NT=ICPL:13C(6);AC=364;CF=H(3) 13C(6) N O;MM=111.041593", "ICPL": "NT=ICPL;AC=365;CF=H(3) C(6) N O;MM=105.021464", "Deamidated:18O(1)": "NT=Deamidated:18O(1);AC=366;CF=H(-1) N(-1) 18O;MM=2.988261", "Cys->Dha": "NT=Cys->Dha;AC=368;CF=H(-2) S(-1);MM=-33.987721", "Pro->Pyrrolidone": "NT=Pro->Pyrrolidone;AC=369;CF=C(-1) O(-1);MM=-27.994915", "HMVK": "NT=HMVK;AC=371;CF=H(6) C(4) O(2);MM=86.036779", "Arg->Orn": "NT=Arg->Orn;AC=372;CF=H(-2) C(-1) N(-2);MM=-42.021798", "Dehydro": "NT=Dehydro;AC=374;CF=H(-1);MM=-1.007825", "Diphthamide": "NT=Diphthamide;AC=375;CF=H(14) C(7) N(2) O;MM=142.110613", "Hydroxyfarnesyl": "NT=Hydroxyfarnesyl;AC=376;CF=H(24) C(15) O;MM=220.182715", "Diacylglycerol": "NT=Diacylglycerol;AC=377;CF=H(68) C(37) O(4);MM=576.511761", "Carboxyethyl": "NT=Carboxyethyl;AC=378;CF=H(4) C(3) O(2);MM=72.021129", "Hypusine": "NT=Hypusine;AC=379;CF=H(9) C(4) N O;MM=87.068414", "Retinylidene": "NT=Retinylidene;AC=380;CF=H(26) C(20);MM=266.203451", "Lys->AminoadipicAcid": "NT=Lys->AminoadipicAcid;AC=381;CF=H(-3) N(-1) O(2);MM=14.96328", "Cys->PyruvicAcid": "NT=Cys->PyruvicAcid;AC=382;CF=H(-3) N(-1) O S(-1);MM=-33.003705", "Ammonia-loss": "NT=Ammonia-loss;AC=385;CF=H(-3) N(-1);MM=-17.026549", "Phycocyanobilin": "NT=Phycocyanobilin;AC=387;CF=H(38) C(33) N(4) O(6);MM=586.279135", "Phycoerythrobilin": "NT=Phycoerythrobilin;AC=388;CF=H(40) C(33) N(4) O(6);MM=588.294785", "Phytochromobilin": "NT=Phytochromobilin;AC=389;CF=H(36) C(33) N(4) O(6);MM=584.263485", "Heme": "NT=Heme;AC=390;CF=H(32) C(34) N(4) O(4) Fe;MM=616.177295", "Molybdopterin": "NT=Molybdopterin;AC=391;CF=H(11) C(10) N(5) O(8) P S(2) Mo;MM=521.884073", "Quinone": "NT=Quinone;AC=392;CF=H(-2) O(2);MM=29.974179", "Glucosylgalactosyl": "NT=Glucosylgalactosyl;AC=393;CF=O Hex(2);MM=340.100562", "GPIanchor": "NT=GPIanchor;AC=394;CF=H(6) C(2) N O(3) P;MM=123.00853", "PhosphoribosyldephosphoCoA": "NT=PhosphoribosyldephosphoCoA;AC=395;CF=H(42) C(26) N(7) O(19) P(3) S;MM=881.146904", "GlycerylPE": "NT=GlycerylPE;AC=396;CF=H(12) C(5) N O(5) P;MM=197.04531", "Triiodothyronine": "NT=Triiodothyronine;AC=397;CF=H C(6) O I(3);MM=469.716159", "Thyroxine": "NT=Thyroxine;AC=398;CF=C(6) O I(4);MM=595.612807", "Tyr->Dha": "NT=Tyr->Dha;AC=400;CF=H(-6) C(-6) O(-1);MM=-94.041865", "Didehydro": "NT=Didehydro;AC=401;CF=H(-2);MM=-2.01565", "Cys->Oxoalanine": "NT=Cys->Oxoalanine;AC=402;CF=H(-2) O S(-1);MM=-17.992806", "Ser->LacticAcid": "NT=Ser->LacticAcid;AC=403;CF=H(-1) N(-1);MM=-15.010899", "Phosphoadenosine": "NT=Phosphoadenosine;AC=405;CF=H(12) C(10) N(5) O(6) P;MM=329.05252", "Hydroxycinnamyl": "NT=Hydroxycinnamyl;AC=407;CF=H(6) C(9) O(2);MM=146.036779", "Glycosyl": "NT=Glycosyl;AC=408;CF=H(-2) C(-1) Hex;MM=148.037173", "FMNH": "NT=FMNH;AC=409;CF=H(19) C(17) N(4) O(9) P;MM=454.088965", "Archaeol": "NT=Archaeol;AC=410;CF=H(86) C(43) O(2);MM=634.662782", "Phenylisocyanate": "NT=Phenylisocyanate;AC=411;CF=H(5) C(7) N O;MM=119.037114", "Phenylisocyanate:2H(5)": "NT=Phenylisocyanate:2H(5);AC=412;CF=2H(5) C(7) N O;MM=124.068498", "Phosphoguanosine": "NT=Phosphoguanosine;AC=413;CF=H(12) C(10) N(5) O(7) P;MM=345.047435", "Hydroxymethyl": "NT=Hydroxymethyl;AC=414;CF=H(2) C O;MM=30.010565", "MolybdopterinGD+Delta:S(-1)Se(1)": "NT=MolybdopterinGD+Delta:S(-1)Se(1);AC=415;CF=H(47) C(40) N(20) O(26) P(4) S(3) Se Mo;MM=1620.930224", "Dipyrrolylmethanemethyl": "NT=Dipyrrolylmethanemethyl;AC=416;CF=H(22) C(20) N(2) O(8);MM=418.137616", "PhosphoUridine": "NT=PhosphoUridine;AC=417;CF=H(11) C(9) N(2) O(8) P;MM=306.025302", "Glycerophospho": "NT=Glycerophospho;AC=419;CF=H(7) C(3) O(5) P;MM=154.00311", "Carboxy->Thiocarboxy": "NT=Carboxy->Thiocarboxy;AC=420;CF=O(-1) S;MM=15.977156", "Sulfide": "NT=Sulfide;AC=421;CF=S;MM=31.972071", "PyruvicAcidIminyl": "NT=PyruvicAcidIminyl;AC=422;CF=H(2) C(3) O(2);MM=70.005479", "Delta:Se(1)": "NT=Delta:Se(1);AC=423;CF=Se;MM=79.91652", "MolybdopterinGD": "NT=MolybdopterinGD;AC=424;CF=H(47) C(40) N(20) O(26) P(4) S(4) Mo;MM=1572.985775", "Dioxidation": "NT=Dioxidation;AC=425;CF=O(2);MM=31.989829", "Octanoyl": "NT=Octanoyl;AC=426;CF=H(14) C(8) O;MM=126.104465", "PhosphoHexNAc": "NT=PhosphoHexNAc;AC=428;CF=H O(3) P HexNAc;MM=283.045704", "PhosphoHex": "NT=PhosphoHex;AC=429;CF=H O(3) P Hex;MM=242.019154", "Palmitoleyl": "NT=Palmitoleyl;AC=431;CF=H(28) C(16) O;MM=236.214016", "Cholesterol": "NT=Cholesterol;AC=432;CF=H(44) C(27);MM=368.344302", "Didehydroretinylidene": "NT=Didehydroretinylidene;AC=433;CF=H(24) C(20);MM=264.187801", "CHDH": "NT=CHDH;AC=434;CF=H(26) C(17) O(4);MM=294.183109", "Methylpyrroline": "NT=Methylpyrroline;AC=435;CF=H(7) C(6) N O;MM=109.052764", "Hydroxyheme": "NT=Hydroxyheme;AC=436;CF=H(30) C(34) N(4) O(4) Fe;MM=614.161645", "MicrocinC7": "NT=MicrocinC7;AC=437;CF=H(19) C(13) N(6) O(6) P;MM=386.110369", "Cyano": "NT=Cyano;AC=438;CF=H(-1) C N;MM=24.995249", "Diironsubcluster": "NT=Diironsubcluster;AC=439;CF=H(-1) C(5) N(2) O(5) S(2) Fe(2);MM=342.786916", "Amidino": "NT=Amidino;AC=440;CF=H(2) C N(2);MM=42.021798", "FMN": "NT=FMN;AC=442;CF=H(19) C(17) N(4) O(8) P;MM=438.094051", "FMNC": "NT=FMNC;AC=443;CF=H(21) C(17) N(4) O(9) P;MM=456.104615", "CuSMo": "NT=CuSMo;AC=444;CF=H(24) C(19) N(8) O(15) P(2) S(3) Cu Mo;MM=922.834855", "Hydroxytrimethyl": "NT=Hydroxytrimethyl;AC=445;CF=H(7) C(3) O;MM=59.04969", "Deoxy": "NT=Deoxy;AC=447;CF=O(-1);MM=-15.994915", "Microcin": "NT=Microcin;AC=448;CF=H(37) C(36) N(3) O(20);MM=831.197041", "Decanoyl": "NT=Decanoyl;AC=449;CF=H(18) C(10) O;MM=154.135765", "Glu": "NT=Glu;AC=450;CF=H(7) C(5) N O(3);MM=129.042593", "GluGlu": "NT=GluGlu;AC=451;CF=H(14) C(10) N(2) O(6);MM=258.085186", "GluGluGlu": "NT=GluGluGlu;AC=452;CF=H(21) C(15) N(3) O(9);MM=387.127779", "GluGluGluGlu": "NT=GluGluGluGlu;AC=453;CF=H(28) C(20) N(4) O(12);MM=516.170373", "HexN": "NT=HexN;AC=454;CF=HexN;MM=161.068808", "Xlink:DMP[154]": "NT=Xlink:DMP[154];AC=455;CF=H(14) C(8) N(2) O;MM=154.110613", "Xlink:DMP": "NT=Xlink:DMP;AC=456;CF=H(10) C(7) N(2);MM=122.084398", "NDA": "NT=NDA;AC=457;CF=H(5) C(13) N;MM=175.042199", "SPITC:13C(6)": "NT=SPITC:13C(6);AC=464;CF=H(5) C 13C(6) N O(3) S(2);MM=220.991213", "AEC-MAEC": "NT=AEC-MAEC;AC=472;CF=H(5) C(2) N O(-1) S;MM=59.019355", "TMAB": "NT=TMAB;AC=476;CF=H(14) C(7) N O;MM=128.107539", "TMAB:2H(9)": "NT=TMAB:2H(9);AC=477;CF=H(5) 2H(9) C(7) N O;MM=137.16403", "FTC": "NT=FTC;AC=478;CF=H(15) C(21) N(3) O(5) S;MM=421.073241", "Label:2H(4)": "NT=Label:2H(4);AC=481;CF=H(-4) 2H(4);MM=4.025107", "DHP": "NT=DHP;AC=488;CF=H(8) C(8) N;MM=118.065674", "Hep": "NT=Hep;AC=490;CF=Hep;MM=192.063388", "BADGE": "NT=BADGE;AC=493;CF=H(24) C(21) O(4);MM=340.167459", "CyDye-Cy3": "NT=CyDye-Cy3;AC=494;CF=H(44) C(37) N(4) O(6) S;MM=672.298156", "CyDye-Cy5": "NT=CyDye-Cy5;AC=495;CF=H(44) C(38) N(4) O(6) S;MM=684.298156", "BHTOH": "NT=BHTOH;AC=498;CF=H(22) C(15) O(2);MM=234.16198", "IGBP:13C(2)": "NT=IGBP:13C(2);AC=499;CF=H(13) C(10) 13C(2) N(2) O(2) Br;MM=298.022748", "Nmethylmaleimide+water": "NT=Nmethylmaleimide+water;AC=500;CF=H(7) C(5) N O(3);MM=129.042593", "PyMIC": "NT=PyMIC;AC=501;CF=H(6) C(7) N(2) O;MM=134.048013", "LG-lactam-K": "NT=LG-lactam-K;AC=503;CF=H(28) C(20) O(4);MM=332.19876", "LG-Hlactam-K": "NT=LG-Hlactam-K;AC=504;CF=H(28) C(20) O(5);MM=348.193674", "LG-lactam-R": "NT=LG-lactam-R;AC=505;CF=H(26) C(19) N(-2) O(4);MM=290.176961", "LG-Hlactam-R": "NT=LG-Hlactam-R;AC=506;CF=H(26) C(19) N(-2) O(5);MM=306.171876", "Dimethyl:2H(4)13C(2)": "NT=Dimethyl:2H(4)13C(2);AC=510;CF=2H(4) 13C(2);MM=34.063117", "Hex(2)": "NT=Hex(2);AC=512;CF=Hex(2);MM=324.105647", "C8-QAT": "NT=C8-QAT;AC=513;CF=H(29) C(14) N O;MM=227.224915", "PropylNAGthiazoline": "NT=PropylNAGthiazoline;AC=514;CF=H(14) C(9) N O(4) S;MM=232.064354", "FNEM": "NT=FNEM;AC=515;CF=H(13) C(24) N O(7);MM=427.069202", "Diethyl": "NT=Diethyl;AC=518;CF=H(8) C(4);MM=56.0626", "BisANS": "NT=BisANS;AC=519;CF=H(22) C(32) N(2) O(6) S(2);MM=594.091928", "Piperidine": "NT=Piperidine;AC=520;CF=H(8) C(5);MM=68.0626", "Maleimide-PEO2-Biotin": "NT=Maleimide-PEO2-Biotin;AC=522;CF=H(35) C(23) N(5) O(7) S;MM=525.225719", "Sulfo-NHS-LC-LC-Biotin": "NT=Sulfo-NHS-LC-LC-Biotin;AC=523;CF=H(36) C(22) N(4) O(4) S;MM=452.245726", "CLIP_TRAQ_2": "NT=CLIP_TRAQ_2;AC=525;CF=H(12) C(6) 13C N(2) O;MM=141.098318", "Dethiomethyl": "NT=Dethiomethyl;AC=526;CF=H(-4) C(-1) S(-1);MM=-48.003371", "Methyl+Deamidated": "NT=Methyl+Deamidated;AC=528;CF=H C N(-1) O;MM=14.999666", "Delta:H(5)C(2)": "NT=Delta:H(5)C(2);AC=529;CF=H(5) C(2);MM=29.039125", "Cation:K": "NT=Cation:K;AC=530;CF=H(-1) K;MM=37.955882", "Cation:Cu[I]": "NT=Cation:Cu[I];AC=531;CF=H(-1) Cu;MM=61.921774", "iTRAQ4plex114": "NT=iTRAQ4plex114;AC=532;CF=H(12) C(5) 13C(2) N(2) 18O;MM=144.105918", "iTRAQ4plex115": "NT=iTRAQ4plex115;AC=533;CF=H(12) C(6) 13C N 15N 18O;MM=144.099599", "Dibromo": "NT=Dibromo;AC=534;CF=H(-2) Br(2);MM=155.821022", "LRGG": "NT=LRGG;AC=535;CF=H(29) C(16) N(7) O(4);MM=383.228103", "CLIP_TRAQ_3": "NT=CLIP_TRAQ_3;AC=536;CF=H(20) C(11) 13C N(3) O(4);MM=271.148736", "CLIP_TRAQ_4": "NT=CLIP_TRAQ_4;AC=537;CF=H(15) C(9) 13C N(2) O(5);MM=244.101452", "Biotin:Cayman-10141": "NT=Biotin:Cayman-10141;AC=538;CF=H(54) C(35) N(4) O(4) S;MM=626.386577", "Biotin:Cayman-10013": "NT=Biotin:Cayman-10013;AC=539;CF=H(60) C(36) N(4) O(5) S;MM=660.428442", "Ala->Ser": "NT=Ala->Ser;AC=540;CF=O;MM=15.994915", "Ala->Thr": "NT=Ala->Thr;AC=541;CF=H(2) C O;MM=30.010565", "Ala->Asp": "NT=Ala->Asp;AC=542;CF=C O(2);MM=43.989829", "Ala->Pro": "NT=Ala->Pro;AC=543;CF=H(2) C(2);MM=26.01565", "Ala->Gly": "NT=Ala->Gly;AC=544;CF=H(-2) C(-1);MM=-14.01565", "Ala->Glu": "NT=Ala->Glu;AC=545;CF=H(2) C(2) O(2);MM=58.005479", "Ala->Val": "NT=Ala->Val;AC=546;CF=H(4) C(2);MM=28.0313", "Cys->Phe": "NT=Cys->Phe;AC=547;CF=H(4) C(6) S(-1);MM=44.059229", "Cys->Ser": "NT=Cys->Ser;AC=548;CF=O S(-1);MM=-15.977156", "Cys->Trp": "NT=Cys->Trp;AC=549;CF=H(5) C(8) N S(-1);MM=83.070128", "Cys->Tyr": "NT=Cys->Tyr;AC=550;CF=H(4) C(6) O S(-1);MM=60.054144", "Cys->Arg": "NT=Cys->Arg;AC=551;CF=H(7) C(3) N(3) S(-1);MM=53.091927", "Cys->Gly": "NT=Cys->Gly;AC=552;CF=H(-2) C(-1) S(-1);MM=-45.987721", "Asp->Ala": "NT=Asp->Ala;AC=553;CF=C(-1) O(-2);MM=-43.989829", "Asp->His": "NT=Asp->His;AC=554;CF=H(2) C(2) N(2) O(-2);MM=22.031969", "Asp->Asn": "NT=Asp->Asn;AC=555;CF=H N O(-1);MM=-0.984016", "Asp->Gly": "NT=Asp->Gly;AC=556;CF=H(-2) C(-2) O(-2);MM=-58.005479", "Asp->Tyr": "NT=Asp->Tyr;AC=557;CF=H(4) C(5) O(-1);MM=48.036386", "Asp->Glu": "NT=Asp->Glu;AC=558;CF=H(2) C;MM=14.01565", "Asp->Val": "NT=Asp->Val;AC=559;CF=H(4) C O(-2);MM=-15.958529", "Glu->Ala": "NT=Glu->Ala;AC=560;CF=H(-2) C(-2) O(-2);MM=-58.005479", "Glu->Gln": "NT=Glu->Gln;AC=561;CF=H N O(-1);MM=-0.984016", "Glu->Asp": "NT=Glu->Asp;AC=562;CF=H(-2) C(-1);MM=-14.01565", "Glu->Lys": "NT=Glu->Lys;AC=563;CF=H(5) C N O(-2);MM=-0.94763", "Glu->Gly": "NT=Glu->Gly;AC=564;CF=H(-4) C(-3) O(-2);MM=-72.021129", "Glu->Val": "NT=Glu->Val;AC=565;CF=H(2) O(-2);MM=-29.974179", "Phe->Ser": "NT=Phe->Ser;AC=566;CF=H(-4) C(-6) O;MM=-60.036386", "Phe->Cys": "NT=Phe->Cys;AC=567;CF=H(-4) C(-6) S;MM=-44.059229", "Phe->Xle": "NT=Phe->Xle;AC=568;CF=H(2) C(-3);MM=-33.98435", "Phe->Tyr": "NT=Phe->Tyr;AC=569;CF=O;MM=15.994915", "Phe->Val": "NT=Phe->Val;AC=570;CF=C(-4);MM=-48.0", "Gly->Ala": "NT=Gly->Ala;AC=571;CF=H(2) C;MM=14.01565", "Gly->Ser": "NT=Gly->Ser;AC=572;CF=H(2) C O;MM=30.010565", "Gly->Trp": "NT=Gly->Trp;AC=573;CF=H(7) C(9) N;MM=129.057849", "Gly->Glu": "NT=Gly->Glu;AC=574;CF=H(4) C(3) O(2);MM=72.021129", "Gly->Val": "NT=Gly->Val;AC=575;CF=H(6) C(3);MM=42.04695", "Gly->Asp": "NT=Gly->Asp;AC=576;CF=H(2) C(2) O(2);MM=58.005479", "Gly->Cys": "NT=Gly->Cys;AC=577;CF=H(2) C S;MM=45.987721", "Gly->Arg": "NT=Gly->Arg;AC=578;CF=H(9) C(4) N(3);MM=99.079647", "His->Pro": "NT=His->Pro;AC=580;CF=C(-1) N(-2);MM=-40.006148", "His->Tyr": "NT=His->Tyr;AC=581;CF=H(2) C(3) N(-2) O;MM=26.004417", "His->Gln": "NT=His->Gln;AC=582;CF=H C(-1) N(-1) O;MM=-9.000334", "His->Arg": "NT=His->Arg;AC=584;CF=H(5) N;MM=19.042199", "His->Xle": "NT=His->Xle;AC=585;CF=H(4) N(-2);MM=-23.974848", "Xle->Thr": "NT=Xle->Thr;AC=588;CF=H(-4) C(-2) O;MM=-12.036386", "Xle->Asn": "NT=Xle->Asn;AC=589;CF=H(-5) C(-2) N O;MM=0.958863", "Xle->Lys": "NT=Xle->Lys;AC=590;CF=H N;MM=15.010899", "Lys->Thr": "NT=Lys->Thr;AC=594;CF=H(-5) C(-2) N(-1) O;MM=-27.047285", "Lys->Asn": "NT=Lys->Asn;AC=595;CF=H(-6) C(-2) O;MM=-14.052036", "Lys->Glu": "NT=Lys->Glu;AC=596;CF=H(-5) C(-1) N(-1) O(2);MM=0.94763", "Lys->Gln": "NT=Lys->Gln;AC=597;CF=H(-4) C(-1) O;MM=-0.036386", "Lys->Met": "NT=Lys->Met;AC=598;CF=H(-3) C(-1) N(-1) S;MM=2.945522", "Lys->Arg": "NT=Lys->Arg;AC=599;CF=N(2);MM=28.006148", "Lys->Xle": "NT=Lys->Xle;AC=600;CF=H(-1) N(-1);MM=-15.010899", "Xle->Ser": "NT=Xle->Ser;AC=601;CF=H(-6) C(-3) O;MM=-26.052036", "Xle->Phe": "NT=Xle->Phe;AC=602;CF=H(-2) C(3);MM=33.98435", "Xle->Trp": "NT=Xle->Trp;AC=603;CF=H(-1) C(5) N;MM=72.995249", "Xle->Pro": "NT=Xle->Pro;AC=604;CF=H(-4) C(-1);MM=-16.0313", "Xle->Val": "NT=Xle->Val;AC=605;CF=H(-2) C(-1);MM=-14.01565", "Xle->His": "NT=Xle->His;AC=606;CF=H(-4) N(2);MM=23.974848", "Xle->Gln": "NT=Xle->Gln;AC=607;CF=H(-3) C(-1) N O;MM=14.974514", "Xle->Met": "NT=Xle->Met;AC=608;CF=H(-2) C(-1) S;MM=17.956421", "Xle->Arg": "NT=Xle->Arg;AC=609;CF=H N(3);MM=43.017047", "Met->Thr": "NT=Met->Thr;AC=610;CF=H(-2) C(-1) O S(-1);MM=-29.992806", "Met->Arg": "NT=Met->Arg;AC=611;CF=H(3) C N(3) S(-1);MM=25.060626", "Met->Lys": "NT=Met->Lys;AC=613;CF=H(3) C N S(-1);MM=-2.945522", "Met->Xle": "NT=Met->Xle;AC=614;CF=H(2) C S(-1);MM=-17.956421", "Met->Val": "NT=Met->Val;AC=615;CF=S(-1);MM=-31.972071", "Asn->Ser": "NT=Asn->Ser;AC=616;CF=H(-1) C(-1) N(-1);MM=-27.010899", "Asn->Thr": "NT=Asn->Thr;AC=617;CF=H N(-1);MM=-12.995249", "Asn->Lys": "NT=Asn->Lys;AC=618;CF=H(6) C(2) O(-1);MM=14.052036", "Asn->Tyr": "NT=Asn->Tyr;AC=619;CF=H(3) C(5) N(-1);MM=49.020401", "Asn->His": "NT=Asn->His;AC=620;CF=H C(2) N O(-1);MM=23.015984", "Asn->Asp": "NT=Asn->Asp;AC=621;CF=H(-1) N(-1) O;MM=0.984016", "Asn->Xle": "NT=Asn->Xle;AC=622;CF=H(5) C(2) N(-1) O(-1);MM=-0.958863", "Pro->Ser": "NT=Pro->Ser;AC=623;CF=H(-2) C(-2) O;MM=-10.020735", "Pro->Ala": "NT=Pro->Ala;AC=624;CF=H(-2) C(-2);MM=-26.01565", "Pro->His": "NT=Pro->His;AC=625;CF=C N(2);MM=40.006148", "Pro->Gln": "NT=Pro->Gln;AC=626;CF=H N O;MM=31.005814", "Pro->Thr": "NT=Pro->Thr;AC=627;CF=C(-1) O;MM=3.994915", "Pro->Arg": "NT=Pro->Arg;AC=628;CF=H(5) C N(3);MM=59.048347", "Pro->Xle": "NT=Pro->Xle;AC=629;CF=H(4) C;MM=16.0313", "Gln->Pro": "NT=Gln->Pro;AC=630;CF=H(-1) N(-1) O(-1);MM=-31.005814", "Gln->Lys": "NT=Gln->Lys;AC=631;CF=H(4) C O(-1);MM=0.036386", "Gln->Glu": "NT=Gln->Glu;AC=632;CF=H(-1) N(-1) O;MM=0.984016", "Gln->His": "NT=Gln->His;AC=633;CF=H(-1) C N O(-1);MM=9.000334", "Gln->Arg": "NT=Gln->Arg;AC=634;CF=H(4) C N(2) O(-1);MM=28.042534", "Gln->Xle": "NT=Gln->Xle;AC=635;CF=H(3) C N(-1) O(-1);MM=-14.974514", "Arg->Ser": "NT=Arg->Ser;AC=636;CF=H(-7) C(-3) N(-3) O;MM=-69.069083", "Arg->Trp": "NT=Arg->Trp;AC=637;CF=H(-2) C(5) N(-2);MM=29.978202", "Arg->Thr": "NT=Arg->Thr;AC=638;CF=H(-5) C(-2) N(-3) O;MM=-55.053433", "Arg->Pro": "NT=Arg->Pro;AC=639;CF=H(-5) C(-1) N(-3);MM=-59.048347", "Arg->Lys": "NT=Arg->Lys;AC=640;CF=N(-2);MM=-28.006148", "Arg->His": "NT=Arg->His;AC=641;CF=H(-5) N(-1);MM=-19.042199", "Arg->Gln": "NT=Arg->Gln;AC=642;CF=H(-4) C(-1) N(-2) O;MM=-28.042534", "Arg->Met": "NT=Arg->Met;AC=643;CF=H(-3) C(-1) N(-3) S;MM=-25.060626", "Arg->Cys": "NT=Arg->Cys;AC=644;CF=H(-7) C(-3) N(-3) S;MM=-53.091927", "Arg->Xle": "NT=Arg->Xle;AC=645;CF=H(-1) N(-3);MM=-43.017047", "Arg->Gly": "NT=Arg->Gly;AC=646;CF=H(-9) C(-4) N(-3);MM=-99.079647", "Ser->Phe": "NT=Ser->Phe;AC=647;CF=H(4) C(6) O(-1);MM=60.036386", "Ser->Ala": "NT=Ser->Ala;AC=648;CF=O(-1);MM=-15.994915", "Ser->Trp": "NT=Ser->Trp;AC=649;CF=H(5) C(8) N O(-1);MM=99.047285", "Ser->Thr": "NT=Ser->Thr;AC=650;CF=H(2) C;MM=14.01565", "Ser->Asn": "NT=Ser->Asn;AC=651;CF=H C N;MM=27.010899", "Ser->Pro": "NT=Ser->Pro;AC=652;CF=H(2) C(2) O(-1);MM=10.020735", "Ser->Tyr": "NT=Ser->Tyr;AC=653;CF=H(4) C(6);MM=76.0313", "Ser->Cys": "NT=Ser->Cys;AC=654;CF=O(-1) S;MM=15.977156", "Ser->Arg": "NT=Ser->Arg;AC=655;CF=H(7) C(3) N(3) O(-1);MM=69.069083", "Ser->Xle": "NT=Ser->Xle;AC=656;CF=H(6) C(3) O(-1);MM=26.052036", "Ser->Gly": "NT=Ser->Gly;AC=657;CF=H(-2) C(-1) O(-1);MM=-30.010565", "Thr->Ser": "NT=Thr->Ser;AC=658;CF=H(-2) C(-1);MM=-14.01565", "Thr->Ala": "NT=Thr->Ala;AC=659;CF=H(-2) C(-1) O(-1);MM=-30.010565", "Thr->Asn": "NT=Thr->Asn;AC=660;CF=H(-1) N;MM=12.995249", "Thr->Lys": "NT=Thr->Lys;AC=661;CF=H(5) C(2) N O(-1);MM=27.047285", "Thr->Pro": "NT=Thr->Pro;AC=662;CF=C O(-1);MM=-3.994915", "Thr->Met": "NT=Thr->Met;AC=663;CF=H(2) C O(-1) S;MM=29.992806", "Thr->Xle": "NT=Thr->Xle;AC=664;CF=H(4) C(2) O(-1);MM=12.036386", "Thr->Arg": "NT=Thr->Arg;AC=665;CF=H(5) C(2) N(3) O(-1);MM=55.053433", "Val->Phe": "NT=Val->Phe;AC=666;CF=C(4);MM=48.0", "Val->Ala": "NT=Val->Ala;AC=667;CF=H(-4) C(-2);MM=-28.0313", "Val->Glu": "NT=Val->Glu;AC=668;CF=H(-2) O(2);MM=29.974179", "Val->Met": "NT=Val->Met;AC=669;CF=S;MM=31.972071", "Val->Asp": "NT=Val->Asp;AC=670;CF=H(-4) C(-1) O(2);MM=15.958529", "Val->Xle": "NT=Val->Xle;AC=671;CF=H(2) C;MM=14.01565", "Val->Gly": "NT=Val->Gly;AC=672;CF=H(-6) C(-3);MM=-42.04695", "Trp->Ser": "NT=Trp->Ser;AC=673;CF=H(-5) C(-8) N(-1) O;MM=-99.047285", "Trp->Cys": "NT=Trp->Cys;AC=674;CF=H(-5) C(-8) N(-1) S;MM=-83.070128", "Trp->Arg": "NT=Trp->Arg;AC=675;CF=H(2) C(-5) N(2);MM=-29.978202", "Trp->Gly": "NT=Trp->Gly;AC=676;CF=H(-7) C(-9) N(-1);MM=-129.057849", "Trp->Xle": "NT=Trp->Xle;AC=677;CF=H C(-5) N(-1);MM=-72.995249", "Tyr->Phe": "NT=Tyr->Phe;AC=678;CF=O(-1);MM=-15.994915", "Tyr->Ser": "NT=Tyr->Ser;AC=679;CF=H(-4) C(-6);MM=-76.0313", "Tyr->Asn": "NT=Tyr->Asn;AC=680;CF=H(-3) C(-5) N;MM=-49.020401", "Tyr->His": "NT=Tyr->His;AC=681;CF=H(-2) C(-3) N(2) O(-1);MM=-26.004417", "Tyr->Asp": "NT=Tyr->Asp;AC=682;CF=H(-4) C(-5) O;MM=-48.036386", "Tyr->Cys": "NT=Tyr->Cys;AC=683;CF=H(-4) C(-6) O(-1) S;MM=-60.054144", "BDMAPP": "NT=BDMAPP;AC=684;CF=H(12) C(11) N O Br;MM=253.010225", "NA-LNO2": "NT=NA-LNO2;AC=685;CF=H(31) C(18) N O(4);MM=325.225309", "NA-OA-NO2": "NT=NA-OA-NO2;AC=686;CF=H(33) C(18) N O(4);MM=327.240959", "ICPL:2H(4)": "NT=ICPL:2H(4);AC=687;CF=H(-1) 2H(4) C(6) N O;MM=109.046571", "Label:13C(6)15N(1)": "NT=Label:13C(6)15N(1);AC=695;CF=C(-6) 13C(6) N(-1) 15N;MM=7.017164", "Label:2H(9)13C(6)15N(2)": "NT=Label:2H(9)13C(6)15N(2);AC=696;CF=H(-9) 2H(9) C(-6) 13C(6) N(-2) 15N(2);MM=17.07069", "NIC": "NT=NIC;AC=697;CF=H(3) C(6) N O;MM=105.021464", "dNIC": "NT=dNIC;AC=698;CF=H 2H(3) C(6) N O;MM=109.048119", "HNE-Delta:H(2)O": "NT=HNE-Delta:H(2)O;AC=720;CF=H(14) C(9) O;MM=138.104465", "4-ONE": "NT=4-ONE;AC=721;CF=H(14) C(9) O(2);MM=154.09938", "O-Dimethylphosphate": "NT=O-Dimethylphosphate;AC=723;CF=H(5) C(2) O(3) P;MM=107.997631", "O-Methylphosphate": "NT=O-Methylphosphate;AC=724;CF=H(3) C O(3) P;MM=93.981981", "Diethylphosphate": "NT=Diethylphosphate;AC=725;CF=H(9) C(4) O(3) P;MM=136.028931", "Ethylphosphate": "NT=Ethylphosphate;AC=726;CF=H(5) C(2) O(3) P;MM=107.997631", "O-pinacolylmethylphosphonate": "NT=O-pinacolylmethylphosphonate;AC=727;CF=H(15) C(7) O(2) P;MM=162.080967", "Methylphosphonate": "NT=Methylphosphonate;AC=728;CF=H(3) C O(2) P;MM=77.987066", "O-Isopropylmethylphosphonate": "NT=O-Isopropylmethylphosphonate;AC=729;CF=H(9) C(4) O(2) P;MM=120.034017", "iTRAQ8plex": "NT=iTRAQ8plex;AC=730;CF=H(24) C(7) 13C(7) N(3) 15N O(3);MM=304.20536", "iTRAQ8plex:13C(6)15N(2)": "NT=iTRAQ8plex:13C(6)15N(2);AC=731;CF=H(24) C(8) 13C(6) N(2) 15N(2) O(3);MM=304.19904", "Ethanolamine": "NT=Ethanolamine;AC=734;CF=H(5) C(2) N;MM=43.042199", "BEMAD_ST": "NT=BEMAD_ST;AC=735;CF=H(8) C(4) O S(2);MM=136.001656", "BEMAD_C": "NT=BEMAD_C;AC=736;CF=H(8) C(4) O(2) S;MM=120.0245", "TMT6plex": "NT=TMT6plex;AC=737;CF=H(20) C(8) 13C(4) N 15N O(2);MM=229.162932", "TMT2plex": "NT=TMT2plex;AC=738;CF=H(20) C(11) 13C N(2) O(2);MM=225.155833", "TMT": "NT=TMT;AC=739;CF=H(20) C(12) N(2) O(2);MM=224.152478", "ExacTagThiol": "NT=ExacTagThiol;AC=740;CF=H(50) C(23) 13C(12) N(8) 15N(6) O(18);MM=972.365219", "ExacTagAmine": "NT=ExacTagAmine;AC=741;CF=H(52) C(25) 13C(12) N(8) 15N(6) O(19) S;MM=1046.347854", "4-ONE+Delta:H(-2)O(-1)": "NT=4-ONE+Delta:H(-2)O(-1);AC=743;CF=H(12) C(9) O;MM=136.088815", "NO_SMX_SEMD": "NT=NO_SMX_SEMD;AC=744;CF=H(9) C(10) N(3) O(3) S;MM=251.036462", "NO_SMX_SIMD": "NT=NO_SMX_SIMD;AC=746;CF=H(9) C(10) N(3) O(4) S;MM=267.031377", "Malonyl": "NT=Malonyl;AC=747;CF=H(2) C(3) O(3);MM=86.000394", "3sulfo": "NT=3sulfo;AC=748;CF=H(4) C(7) O(4) S;MM=183.983029", "trifluoro": "NT=trifluoro;AC=750;CF=H(-3) F(3);MM=53.971735", "TNBS": "NT=TNBS;AC=751;CF=H C(6) N(3) O(6);MM=210.986535", "IDEnT": "NT=IDEnT;AC=762;CF=H(7) C(9) N O Cl(2);MM=214.990469", "BEMAD_ST:2H(6)": "NT=BEMAD_ST:2H(6);AC=763;CF=H(2) 2H(6) C(4) O S(2);MM=142.039317", "BEMAD_C:2H(6)": "NT=BEMAD_C:2H(6);AC=764;CF=H(2) 2H(6) C(4) O(2) S;MM=126.062161", "Met-loss": "NT=Met-loss;AC=765;CF=H(-9) C(-5) N(-1) O(-1) S(-1);MM=-131.040485", "Met-loss+Acetyl": "NT=Met-loss+Acetyl;AC=766;CF=H(-7) C(-3) N(-1) S(-1);MM=-89.02992", "Menadione-HQ": "NT=Menadione-HQ;AC=767;CF=H(8) C(11) O(2);MM=172.05243", "Methyl+Acetyl:2H(3)": "NT=Methyl+Acetyl:2H(3);AC=768;CF=H 2H(3) C(3) O;MM=59.045045", "lapachenole": "NT=lapachenole;AC=771;CF=H(16) C(16) O(2);MM=240.11503", "Label:13C(5)": "NT=Label:13C(5);AC=772;CF=C(-5) 13C(5);MM=5.016774", "maleimide": "NT=maleimide;AC=773;CF=H(3) C(4) N O(2);MM=97.016378", "Biotin-phenacyl": "NT=Biotin-phenacyl;AC=774;CF=H(38) C(29) N(8) O(6) S;MM=626.263502", "Carboxymethyl:13C(2)": "NT=Carboxymethyl:13C(2);AC=775;CF=H(2) 13C(2) O(2);MM=60.012189", "NEM:2H(5)": "NT=NEM:2H(5);AC=776;CF=H(2) 2H(5) C(6) N O(2);MM=130.079062", "AEC-MAEC:2H(4)": "NT=AEC-MAEC:2H(4);AC=792;CF=H 2H(4) C(2) N O(-1) S;MM=63.044462", "Hex(1)HexNAc(1)": "NT=Hex(1)HexNAc(1);AC=793;CF=Hex HexNAc;MM=365.132196", "Label:13C(6)+GG": "NT=Label:13C(6)+GG;AC=799;CF=H(6) C(-2) 13C(6) N(2) O(2);MM=120.063056", "Biotin:Thermo-21345": "NT=Biotin:Thermo-21345;AC=800;CF=H(25) C(15) N(3) O(2) S;MM=311.166748", "Pentylamine": "NT=Pentylamine;AC=801;CF=H(10) C(5);MM=70.07825", "Biotin:Thermo-21360": "NT=Biotin:Thermo-21360;AC=811;CF=H(37) C(21) N(5) O(6) S;MM=487.246455", "Cy3b-maleimide": "NT=Cy3b-maleimide;AC=821;CF=H(38) C(37) N(4) O(7) S;MM=682.24612", "Gly-loss+Amide": "NT=Gly-loss+Amide;AC=822;CF=H(-2) C(-2) O(-2);MM=-58.005479", "Xlink:BMOE": "NT=Xlink:BMOE;AC=824;CF=H(8) C(10) N(2) O(4);MM=220.048407", "Xlink:DFDNB": "NT=Xlink:DFDNB;AC=825;CF=C(6) N(2) O(4);MM=163.985807", "TMPP-Ac": "NT=TMPP-Ac;AC=827;CF=H(33) C(29) O(10) P;MM=572.181134", "Dihydroxyimidazolidine": "NT=Dihydroxyimidazolidine;AC=830;CF=H(4) C(3) O(2);MM=72.021129", "Label:2H(4)+Acetyl": "NT=Label:2H(4)+Acetyl;AC=834;CF=H(-2) 2H(4) C(2) O;MM=46.035672", "Label:13C(6)+Acetyl": "NT=Label:13C(6)+Acetyl;AC=835;CF=H(2) C(-4) 13C(6) O;MM=48.030694", "Label:13C(6)15N(2)+Acetyl": "NT=Label:13C(6)15N(2)+Acetyl;AC=836;CF=H(2) C(-4) 13C(6) N(-2) 15N(2) O;MM=50.024764", "Arg->Npo": "NT=Arg->Npo;AC=837;CF=H(-1) C(3) N O(2);MM=80.985078", "EQIGG": "NT=EQIGG;AC=846;CF=H(32) C(20) N(6) O(8);MM=484.228162", "Arg2PG": "NT=Arg2PG;AC=848;CF=H(10) C(16) O(4);MM=266.057909", "cGMP": "NT=cGMP;AC=849;CF=H(10) C(10) N(5) O(7) P;MM=343.031785", "cGMP+RMP-loss": "NT=cGMP+RMP-loss;AC=851;CF=H(4) C(5) N(5) O;MM=150.041585", "Label:2H(4)+GG": "NT=Label:2H(4)+GG;AC=853;CF=H(2) 2H(4) C(4) N(2) O(2);MM=118.068034", "MG-H1": "NT=MG-H1;AC=859;CF=H(2) C(3) O;MM=54.010565", "G-H1": "NT=G-H1;AC=860;CF=C(2) O;MM=39.994915", "ZGB": "NT=ZGB;AC=861;CF=H(53) B C(37) N(6) O(6) F(2) S;MM=758.380841", "Label:13C(1)2H(3)": "NT=Label:13C(1)2H(3);AC=862;CF=H(-3) 2H(3) C(-1) 13C;MM=4.022185", "Label:13C(6)15N(2)+GG": "NT=Label:13C(6)15N(2)+GG;AC=864;CF=H(6) C(-2) 13C(6) 15N(2) O(2);MM=122.057126", "ICPL:13C(6)2H(4)": "NT=ICPL:13C(6)2H(4);AC=866;CF=H(-1) 2H(4) 13C(6) N O;MM=115.0667", "QEQTGG": "NT=QEQTGG;AC=876;CF=H(36) C(23) N(8) O(11);MM=600.250354", "QQQTGG": "NT=QQQTGG;AC=877;CF=H(37) C(23) N(9) O(10);MM=599.266339", "Biotin:Thermo-21325": "NT=Biotin:Thermo-21325;AC=884;CF=H(45) C(34) N(7) O(7) S;MM=695.310118", "Label:13C(1)2H(3)+Oxidation": "NT=Label:13C(1)2H(3)+Oxidation;AC=885;CF=H(-3) 2H(3) C(-1) 13C O;MM=20.0171", "HydroxymethylOP": "NT=HydroxymethylOP;AC=886;CF=H(4) C(6) O(2);MM=108.021129", "MDCC": "NT=MDCC;AC=887;CF=H(21) C(20) N(3) O(5);MM=383.148121", "mTRAQ": "NT=mTRAQ;AC=888;CF=H(12) C(7) N(2) O;MM=140.094963", "mTRAQ:13C(3)15N(1)": "NT=mTRAQ:13C(3)15N(1);AC=889;CF=H(12) C(4) 13C(3) N 15N O;MM=144.102063", "DyLight-maleimide": "NT=DyLight-maleimide;AC=890;CF=H(48) C(39) N(4) O(15) S(4);MM=940.1999", "Methyl-PEO12-Maleimide": "NT=Methyl-PEO12-Maleimide;AC=891;CF=H(58) C(32) N(2) O(15);MM=710.383719", "CarbamidomethylDTT": "NT=CarbamidomethylDTT;AC=893;CF=H(11) C(6) N O(3) S(2);MM=209.018035", "CarboxymethylDTT": "NT=CarboxymethylDTT;AC=894;CF=H(10) C(6) O(4) S(2);MM=210.00205", "Biotin-PEG-PRA": "NT=Biotin-PEG-PRA;AC=895;CF=H(42) C(26) N(8) O(7);MM=578.317646", "Met->Aha": "NT=Met->Aha;AC=896;CF=H(-3) C(-1) N(3) S(-1);MM=-4.986324", "Label:15N(4)": "NT=Label:15N(4);AC=897;CF=N(-4) 15N(4);MM=3.98814", "pyrophospho": "NT=pyrophospho;AC=898;CF=H(2) O(6) P(2);MM=159.932662", "Met->Hpg": "NT=Met->Hpg;AC=899;CF=H(-2) C S(-1);MM=-21.987721", "4AcAllylGal": "NT=4AcAllylGal;AC=901;CF=H(24) C(17) O(9);MM=372.142033", "DimethylArsino": "NT=DimethylArsino;AC=902;CF=H(5) C(2) As;MM=103.960719", "Lys->CamCys": "NT=Lys->CamCys;AC=903;CF=H(-4) C(-1) O S;MM=31.935685", "Phe->CamCys": "NT=Phe->CamCys;AC=904;CF=H(-1) C(-4) N O S;MM=12.962234", "Leu->MetOx": "NT=Leu->MetOx;AC=905;CF=H(-2) C(-1) O S;MM=33.951335", "Lys->MetOx": "NT=Lys->MetOx;AC=906;CF=H(-3) C(-1) N(-1) O S;MM=18.940436", "Galactosyl": "NT=Galactosyl;AC=907;CF=O Hex;MM=178.047738", "Xlink:SMCC[321]": "NT=Xlink:SMCC[321];AC=908;CF=H(27) C(17) N(3) O(3);MM=321.205242", "Bacillosamine": "NT=Bacillosamine;AC=910;CF=H(6) C(4) N(2) dHex;MM=228.111007", "MTSL": "NT=MTSL;AC=911;CF=H(14) C(9) N O S;MM=184.07961", "HNE-BAHAH": "NT=HNE-BAHAH;AC=912;CF=H(45) C(25) N(5) O(4) S;MM=511.319226", "Methylmalonylation": "NT=Methylmalonylation;AC=914;CF=H(4) C(4) O(3);MM=100.016044", "Label:13C(4)15N(2)+GG": "NT=Label:13C(4)15N(2)+GG;AC=923;CF=H(6) 13C(4) 15N(2) O(2);MM=120.050417", "ethylamino": "NT=ethylamino;AC=926;CF=H(5) C(2) N O(-1);MM=27.047285", "MercaptoEthanol": "NT=MercaptoEthanol;AC=928;CF=H(4) C(2) S;MM=60.003371", "Ethyl+Deamidated": "NT=Ethyl+Deamidated;AC=931;CF=H(3) C(2) N(-1) O;MM=29.015316", "VFQQQTGG": "NT=VFQQQTGG;AC=932;CF=H(55) C(37) N(11) O(12);MM=845.403166", "VIEVYQEQTGG": "NT=VIEVYQEQTGG;AC=933;CF=H(81) C(53) N(13) O(19);MM=1203.577168", "AMTzHexNAc2": "NT=AMTzHexNAc2;AC=934;CF=H(30) C(19) N(6) O(10);MM=502.202341", "Atto495Maleimide": "NT=Atto495Maleimide;AC=935;CF=H(32) C(27) N(5) O(3);MM=474.250515", "Chlorination": "NT=Chlorination;AC=936;CF=H(-1) Cl;MM=33.961028", "dichlorination": "NT=dichlorination;AC=937;CF=H(-2) Cl(2);MM=67.922055", "AROD": "NT=AROD;AC=938;CF=H(52) C(35) N(10) O(9) S(2);MM=820.336015", "Cys->methylaminoAla": "NT=Cys->methylaminoAla;AC=939;CF=H(3) C N S(-1);MM=-2.945522", "Cys->ethylaminoAla": "NT=Cys->ethylaminoAla;AC=940;CF=H(5) C(2) N S(-1);MM=11.070128", "DNPS": "NT=DNPS;AC=941;CF=H(3) C(6) N(2) O(4) S;MM=198.981352", "SulfoGMBS": "NT=SulfoGMBS;AC=942;CF=H(26) C(22) N(4) O(5) S;MM=458.162391", "DimethylamineGMBS": "NT=DimethylamineGMBS;AC=943;CF=H(21) C(13) N(3) O(3);MM=267.158292", "Label:15N(2)2H(9)": "NT=Label:15N(2)2H(9);AC=944;CF=H(-9) 2H(9) N(-2) 15N(2);MM=11.050561", "LG-anhydrolactam": "NT=LG-anhydrolactam;AC=946;CF=H(26) C(20) O(3);MM=314.188195", "LG-pyrrole": "NT=LG-pyrrole;AC=947;CF=H(28) C(20) O(3);MM=316.203845", "LG-anhyropyrrole": "NT=LG-anhyropyrrole;AC=948;CF=H(26) C(20) O(2);MM=298.19328", "3-deoxyglucosone": "NT=3-deoxyglucosone;AC=949;CF=H(8) C(6) O(4);MM=144.042259", "Cation:Li": "NT=Cation:Li;AC=950;CF=H(-1) Li;MM=6.008178", "Cation:Ca[II]": "NT=Cation:Ca[II];AC=951;CF=H(-2) Ca;MM=37.946941", "Cation:Fe[II]": "NT=Cation:Fe[II];AC=952;CF=H(-2) Fe;MM=53.919289", "Cation:Ni[II]": "NT=Cation:Ni[II];AC=953;CF=H(-2) Ni;MM=55.919696", "Cation:Zn[II]": "NT=Cation:Zn[II];AC=954;CF=H(-2) Zn;MM=61.913495", "Cation:Ag": "NT=Cation:Ag;AC=955;CF=H(-1) Ag;MM=105.897267", "Cation:Mg[II]": "NT=Cation:Mg[II];AC=956;CF=H(-2) Mg;MM=21.969392", "2-succinyl": "NT=2-succinyl;AC=957;CF=H(4) C(4) O(4);MM=116.010959", "Propargylamine": "NT=Propargylamine;AC=958;CF=H(3) C(3) N O(-1);MM=37.031634", "Phosphopropargyl": "NT=Phosphopropargyl;AC=959;CF=H(4) C(3) N O(2) P;MM=116.997965", "SUMO2135": "NT=SUMO2135;AC=960;CF=H(137) C(90) N(21) O(37) S;MM=2135.920496", "SUMO3549": "NT=SUMO3549;AC=961;CF=H(224) C(150) N(38) O(60) S;MM=3549.536568", "thioacylPA": "NT=thioacylPA;AC=967;CF=H(9) C(6) N O(2) S;MM=159.035399", "maleimide3": "NT=maleimide3;AC=971;CF=H(59) C(37) N(7) O(23);MM=969.366232", "maleimide5": "NT=maleimide5;AC=972;CF=H(79) C(49) N(7) O(33);MM=1293.471879", "Puromycin": "NT=Puromycin;AC=973;CF=H(27) C(22) N(7) O(4);MM=453.212452", "Carbofuran": "NT=Carbofuran;AC=977;CF=H(3) C(2) N O;MM=57.021464", "BITC": "NT=BITC;AC=978;CF=H(7) C(8) N S;MM=149.02992", "PEITC": "NT=PEITC;AC=979;CF=H(9) C(9) N S;MM=163.04557", "glucosone": "NT=glucosone;AC=981;CF=H(8) C(6) O(5);MM=160.037173", "cysTMT": "NT=cysTMT;AC=984;CF=H(25) C(14) N(3) O(2) S;MM=299.166748", "cysTMT6plex": "NT=cysTMT6plex;AC=985;CF=H(25) C(10) 13C(4) N(2) 15N O(2) S;MM=304.177202", "Label:13C(6)+Dimethyl": "NT=Label:13C(6)+Dimethyl;AC=986;CF=H(4) C(-4) 13C(6);MM=34.051429", "Label:13C(6)15N(2)+Dimethyl": "NT=Label:13C(6)15N(2)+Dimethyl;AC=987;CF=H(4) C(-4) 13C(6) N(-2) 15N(2);MM=36.045499", "Ammonium": "NT=Ammonium;AC=989;CF=H(3) N;MM=17.026549", "ISD_z+2_ion": "NT=ISD_z+2_ion;AC=991;CF=H(-1) N(-1);MM=-15.010899", "Biotin:Sigma-B1267": "NT=Biotin:Sigma-B1267;AC=993;CF=H(27) C(20) N(5) O(5) S;MM=449.17329", "Label:15N(1)": "NT=Label:15N(1);AC=994;CF=N(-1) 15N;MM=0.997035", "Label:15N(2)": "NT=Label:15N(2);AC=995;CF=N(-2) 15N(2);MM=1.99407", "Label:15N(3)": "NT=Label:15N(3);AC=996;CF=N(-3) 15N(3);MM=2.991105", "sulfo+amino": "NT=sulfo+amino;AC=997;CF=H N O(3) S;MM=94.967714", "AHA-Alkyne": "NT=AHA-Alkyne;AC=1000;CF=H(5) C(4) N(5) O S(-1);MM=107.077339", "AHA-Alkyne-KDDDD": "NT=AHA-Alkyne-KDDDD;AC=1001;CF=H(37) C(26) N(11) O(14) S(-1);MM=695.280074", "EGCG1": "NT=EGCG1;AC=1002;CF=H(16) C(22) O(11);MM=456.069261", "EGCG2": "NT=EGCG2;AC=1003;CF=H(11) C(15) O(6);MM=287.055563", "Label:13C(6)15N(4)+Methyl": "NT=Label:13C(6)15N(4)+Methyl;AC=1004;CF=H(2) C(-5) 13C(6) N(-4) 15N(4);MM=24.023919", "Label:13C(6)15N(4)+Dimethyl": "NT=Label:13C(6)15N(4)+Dimethyl;AC=1005;CF=H(4) C(-4) 13C(6) N(-4) 15N(4);MM=38.039569", "Label:13C(6)15N(4)+Methyl:2H(3)13C(1)": "NT=Label:13C(6)15N(4)+Methyl:2H(3)13C(1);AC=1006;CF=H(-1) 2H(3) C(-6) 13C(7) N(-4) 15N(4);MM=28.046104", "Label:13C(6)15N(4)+Dimethyl:2H(6)13C(2)": "NT=Label:13C(6)15N(4)+Dimethyl:2H(6)13C(2);AC=1007;CF=H(-2) 2H(6) C(-6) 13C(8) N(-4) 15N(4);MM=46.083939", "Cys->CamSec": "NT=Cys->CamSec;AC=1008;CF=H(3) C(2) N O S(-1) Se;MM=104.965913", "Thiazolidine": "NT=Thiazolidine;AC=1009;CF=C;MM=12.0", "DEDGFLYMVYASQETFG": "NT=DEDGFLYMVYASQETFG;AC=1010;CF=H(122) C(89) N(18) O(31) S;MM=1970.824411", "Biotin:Invitrogen-M1602": "NT=Biotin:Invitrogen-M1602;AC=1012;CF=H(33) C(23) N(5) O(7) S;MM=523.210069", "glycidamide": "NT=glycidamide;AC=1014;CF=H(5) C(3) N O(2);MM=87.032028", "Ahx2+Hsl": "NT=Ahx2+Hsl;AC=1015;CF=H(27) C(16) N(3) O(3);MM=309.205242", "DMPO": "NT=DMPO;AC=1017;CF=H(9) C(6) N O;MM=111.068414", "ICDID": "NT=ICDID;AC=1018;CF=H(10) C(8) O(2);MM=138.06808", "ICDID:2H(6)": "NT=ICDID:2H(6);AC=1019;CF=H(4) 2H(6) C(8) O(2);MM=144.10574", "Xlink:DSS[156]": "NT=Xlink:DSS[156];AC=1020;CF=H(12) C(8) O(3);MM=156.078644", "Xlink:EGS[244]": "NT=Xlink:EGS[244];AC=1021;CF=H(12) C(10) O(7);MM=244.058303", "Xlink:DST[132]": "NT=Xlink:DST[132];AC=1022;CF=H(4) C(4) O(5);MM=132.005873", "Xlink:DTSSP[192]": "NT=Xlink:DTSSP[192];AC=1023;CF=H(8) C(6) O(3) S(2);MM=191.991486", "Xlink:SMCC[237]": "NT=Xlink:SMCC[237];AC=1024;CF=H(15) C(12) N O(4);MM=237.100108", "Xlink:DMP[140]": "NT=Xlink:DMP[140];AC=1027;CF=H(12) C(7) N(2) O;MM=140.094963", "Xlink:EGS[115]": "NT=Xlink:EGS[115];AC=1028;CF=H(5) C(4) N O(3);MM=115.026943", "Biotin:Thermo-88310": "NT=Biotin:Thermo-88310;AC=1031;CF=H(16) C(10) N(2) O(2);MM=196.121178", "2-nitrobenzyl": "NT=2-nitrobenzyl;AC=1032;CF=H(5) C(7) N O(2);MM=135.032028", "Cys->SecNEM": "NT=Cys->SecNEM;AC=1033;CF=H(7) C(6) N O(2) S(-1) Se;MM=172.992127", "Cys->SecNEM:2H(5)": "NT=Cys->SecNEM:2H(5);AC=1034;CF=H(2) 2H(5) C(6) N O(2) S(-1) Se;MM=178.023511", "Thiadiazole": "NT=Thiadiazole;AC=1035;CF=H(6) C(9) N(2) S;MM=174.025169", "Withaferin": "NT=Withaferin;AC=1036;CF=H(38) C(28) O(6);MM=470.266839", "Biotin:Thermo-88317": "NT=Biotin:Thermo-88317;AC=1037;CF=H(42) C(22) N(3) O(4) P;MM=443.291294", "TAMRA-FP": "NT=TAMRA-FP;AC=1038;CF=H(46) C(37) N(3) O(6) P;MM=659.312423", "Biotin:Thermo-21901+H2O": "NT=Biotin:Thermo-21901+H2O;AC=1039;CF=H(37) C(23) N(5) O(8) S;MM=543.236284", "Deoxyhypusine": "NT=Deoxyhypusine;AC=1041;CF=H(9) C(4) N;MM=71.073499", "Acetyldeoxyhypusine": "NT=Acetyldeoxyhypusine;AC=1042;CF=H(11) C(6) N O;MM=113.084064", "Acetylhypusine": "NT=Acetylhypusine;AC=1043;CF=H(11) C(6) N O(2);MM=129.078979", "Ala->Cys": "NT=Ala->Cys;AC=1044;CF=S;MM=31.972071", "Ala->Phe": "NT=Ala->Phe;AC=1045;CF=H(4) C(6);MM=76.0313", "Ala->His": "NT=Ala->His;AC=1046;CF=H(2) C(3) N(2);MM=66.021798", "Ala->Xle": "NT=Ala->Xle;AC=1047;CF=H(6) C(3);MM=42.04695", "Ala->Lys": "NT=Ala->Lys;AC=1048;CF=H(7) C(3) N;MM=57.057849", "Ala->Met": "NT=Ala->Met;AC=1049;CF=H(4) C(2) S;MM=60.003371", "Ala->Asn": "NT=Ala->Asn;AC=1050;CF=H C N O;MM=43.005814", "Ala->Gln": "NT=Ala->Gln;AC=1051;CF=H(3) C(2) N O;MM=57.021464", "Ala->Arg": "NT=Ala->Arg;AC=1052;CF=H(7) C(3) N(3);MM=85.063997", "Ala->Trp": "NT=Ala->Trp;AC=1053;CF=H(5) C(8) N;MM=115.042199", "Ala->Tyr": "NT=Ala->Tyr;AC=1054;CF=H(4) C(6) O;MM=92.026215", "Cys->Ala": "NT=Cys->Ala;AC=1055;CF=S(-1);MM=-31.972071", "Cys->Asp": "NT=Cys->Asp;AC=1056;CF=C O(2) S(-1);MM=12.017759", "Cys->Glu": "NT=Cys->Glu;AC=1057;CF=H(2) C(2) O(2) S(-1);MM=26.033409", "Cys->His": "NT=Cys->His;AC=1058;CF=H(2) C(3) N(2) S(-1);MM=34.049727", "Cys->Xle": "NT=Cys->Xle;AC=1059;CF=H(6) C(3) S(-1);MM=10.07488", "Cys->Lys": "NT=Cys->Lys;AC=1060;CF=H(7) C(3) N S(-1);MM=25.085779", "Cys->Met": "NT=Cys->Met;AC=1061;CF=H(4) C(2);MM=28.0313", "Cys->Asn": "NT=Cys->Asn;AC=1062;CF=H C N O S(-1);MM=11.033743", "Cys->Pro": "NT=Cys->Pro;AC=1063;CF=H(2) C(2) S(-1);MM=-5.956421", "Cys->Gln": "NT=Cys->Gln;AC=1064;CF=H(3) C(2) N O S(-1);MM=25.049393", "Cys->Thr": "NT=Cys->Thr;AC=1065;CF=H(2) C O S(-1);MM=-1.961506", "Cys->Val": "NT=Cys->Val;AC=1066;CF=H(4) C(2) S(-1);MM=-3.940771", "Asp->Cys": "NT=Asp->Cys;AC=1067;CF=C(-1) O(-2) S;MM=-12.017759", "Asp->Phe": "NT=Asp->Phe;AC=1068;CF=H(4) C(5) O(-2);MM=32.041471", "Asp->Xle": "NT=Asp->Xle;AC=1069;CF=H(6) C(2) O(-2);MM=-1.942879", "Asp->Lys": "NT=Asp->Lys;AC=1070;CF=H(7) C(2) N O(-2);MM=13.06802", "Asp->Met": "NT=Asp->Met;AC=1071;CF=H(4) C O(-2) S;MM=16.013542", "Asp->Pro": "NT=Asp->Pro;AC=1072;CF=H(2) C O(-2);MM=-17.974179", "Asp->Gln": "NT=Asp->Gln;AC=1073;CF=H(3) C N O(-1);MM=13.031634", "Asp->Arg": "NT=Asp->Arg;AC=1074;CF=H(7) C(2) N(3) O(-2);MM=41.074168", "Asp->Ser": "NT=Asp->Ser;AC=1075;CF=C(-1) O(-1);MM=-27.994915", "Asp->Thr": "NT=Asp->Thr;AC=1076;CF=H(2) O(-1);MM=-13.979265", "Asp->Trp": "NT=Asp->Trp;AC=1077;CF=H(5) C(7) N O(-2);MM=71.05237", "Glu->Cys": "NT=Glu->Cys;AC=1078;CF=H(-2) C(-2) O(-2) S;MM=-26.033409", "Glu->Phe": "NT=Glu->Phe;AC=1079;CF=H(2) C(4) O(-2);MM=18.025821", "Glu->His": "NT=Glu->His;AC=1080;CF=C N(2) O(-2);MM=8.016319", "Glu->Xle": "NT=Glu->Xle;AC=1081;CF=H(4) C O(-2);MM=-15.958529", "Glu->Met": "NT=Glu->Met;AC=1082;CF=H(2) O(-2) S;MM=1.997892", "Glu->Asn": "NT=Glu->Asn;AC=1083;CF=H(-1) C(-1) N O(-1);MM=-14.999666", "Glu->Pro": "NT=Glu->Pro;AC=1084;CF=O(-2);MM=-31.989829", "Glu->Arg": "NT=Glu->Arg;AC=1085;CF=H(5) C N(3) O(-2);MM=27.058518", "Glu->Ser": "NT=Glu->Ser;AC=1086;CF=H(-2) C(-2) O(-1);MM=-42.010565", "Glu->Thr": "NT=Glu->Thr;AC=1087;CF=C(-1) O(-1);MM=-27.994915", "Glu->Trp": "NT=Glu->Trp;AC=1088;CF=H(3) C(6) N O(-2);MM=57.03672", "Glu->Tyr": "NT=Glu->Tyr;AC=1089;CF=H(2) C(4) O(-1);MM=34.020735", "Phe->Ala": "NT=Phe->Ala;AC=1090;CF=H(-4) C(-6);MM=-76.0313", "Phe->Asp": "NT=Phe->Asp;AC=1091;CF=H(-4) C(-5) O(2);MM=-32.041471", "Phe->Glu": "NT=Phe->Glu;AC=1092;CF=H(-2) C(-4) O(2);MM=-18.025821", "Phe->Gly": "NT=Phe->Gly;AC=1093;CF=H(-6) C(-7);MM=-90.04695", "Phe->His": "NT=Phe->His;AC=1094;CF=H(-2) C(-3) N(2);MM=-10.009502", "Phe->Lys": "NT=Phe->Lys;AC=1095;CF=H(3) C(-3) N;MM=-18.973451", "Phe->Met": "NT=Phe->Met;AC=1096;CF=C(-4) S;MM=-16.027929", "Phe->Asn": "NT=Phe->Asn;AC=1097;CF=H(-3) C(-5) N O;MM=-33.025486", "Phe->Pro": "NT=Phe->Pro;AC=1098;CF=H(-2) C(-4);MM=-50.01565", "Phe->Gln": "NT=Phe->Gln;AC=1099;CF=H(-1) C(-4) N O;MM=-19.009836", "Phe->Arg": "NT=Phe->Arg;AC=1100;CF=H(3) C(-3) N(3);MM=9.032697", "Phe->Thr": "NT=Phe->Thr;AC=1101;CF=H(-2) C(-5) O;MM=-46.020735", "Phe->Trp": "NT=Phe->Trp;AC=1102;CF=H C(2) N;MM=39.010899", "Gly->Phe": "NT=Gly->Phe;AC=1103;CF=H(6) C(7);MM=90.04695", "Gly->His": "NT=Gly->His;AC=1104;CF=H(4) C(4) N(2);MM=80.037448", "Gly->Xle": "NT=Gly->Xle;AC=1105;CF=H(8) C(4);MM=56.0626", "Gly->Lys": "NT=Gly->Lys;AC=1106;CF=H(9) C(4) N;MM=71.073499", "Gly->Met": "NT=Gly->Met;AC=1107;CF=H(6) C(3) S;MM=74.019021", "Gly->Asn": "NT=Gly->Asn;AC=1108;CF=H(3) C(2) N O;MM=57.021464", "Gly->Pro": "NT=Gly->Pro;AC=1109;CF=H(4) C(3);MM=40.0313", "Gly->Gln": "NT=Gly->Gln;AC=1110;CF=H(5) C(3) N O;MM=71.037114", "Gly->Thr": "NT=Gly->Thr;AC=1111;CF=H(4) C(2) O;MM=44.026215", "Gly->Tyr": "NT=Gly->Tyr;AC=1112;CF=H(6) C(7) O;MM=106.041865", "His->Ala": "NT=His->Ala;AC=1113;CF=H(-2) C(-3) N(-2);MM=-66.021798", "His->Cys": "NT=His->Cys;AC=1114;CF=H(-2) C(-3) N(-2) S;MM=-34.049727", "His->Glu": "NT=His->Glu;AC=1115;CF=C(-1) N(-2) O(2);MM=-8.016319", "His->Phe": "NT=His->Phe;AC=1116;CF=H(2) C(3) N(-2);MM=10.009502", "His->Gly": "NT=His->Gly;AC=1117;CF=H(-4) C(-4) N(-2);MM=-80.037448", "His->Lys": "NT=His->Lys;AC=1119;CF=H(5) N(-1);MM=-8.963949", "His->Met": "NT=His->Met;AC=1120;CF=H(2) C(-1) N(-2) S;MM=-6.018427", "His->Ser": "NT=His->Ser;AC=1121;CF=H(-2) C(-3) N(-2) O;MM=-50.026883", "His->Thr": "NT=His->Thr;AC=1122;CF=C(-2) N(-2) O;MM=-36.011233", "His->Val": "NT=His->Val;AC=1123;CF=H(2) C(-1) N(-2);MM=-37.990498", "His->Trp": "NT=His->Trp;AC=1124;CF=H(3) C(5) N(-1);MM=49.020401", "Xle->Ala": "NT=Xle->Ala;AC=1125;CF=H(-6) C(-3);MM=-42.04695", "Xle->Cys": "NT=Xle->Cys;AC=1126;CF=H(-6) C(-3) S;MM=-10.07488", "Xle->Asp": "NT=Xle->Asp;AC=1127;CF=H(-6) C(-2) O(2);MM=1.942879", "Xle->Glu": "NT=Xle->Glu;AC=1128;CF=H(-4) C(-1) O(2);MM=15.958529", "Xle->Gly": "NT=Xle->Gly;AC=1129;CF=H(-8) C(-4);MM=-56.0626", "Xle->Tyr": "NT=Xle->Tyr;AC=1130;CF=H(-2) C(3) O;MM=49.979265", "Lys->Ala": "NT=Lys->Ala;AC=1131;CF=H(-7) C(-3) N(-1);MM=-57.057849", "Lys->Cys": "NT=Lys->Cys;AC=1132;CF=H(-7) C(-3) N(-1) S;MM=-25.085779", "Lys->Asp": "NT=Lys->Asp;AC=1133;CF=H(-7) C(-2) N(-1) O(2);MM=-13.06802", "Lys->Phe": "NT=Lys->Phe;AC=1134;CF=H(-3) C(3) N(-1);MM=18.973451", "Lys->Gly": "NT=Lys->Gly;AC=1135;CF=H(-9) C(-4) N(-1);MM=-71.073499", "Lys->His": "NT=Lys->His;AC=1136;CF=H(-5) N;MM=8.963949", "Lys->Pro": "NT=Lys->Pro;AC=1137;CF=H(-5) C(-1) N(-1);MM=-31.042199", "Lys->Ser": "NT=Lys->Ser;AC=1138;CF=H(-7) C(-3) N(-1) O;MM=-41.062935", "Lys->Val": "NT=Lys->Val;AC=1139;CF=H(-3) C(-1) N(-1);MM=-29.026549", "Lys->Trp": "NT=Lys->Trp;AC=1140;CF=H(-2) C(5);MM=57.98435", "Lys->Tyr": "NT=Lys->Tyr;AC=1141;CF=H(-3) C(3) N(-1) O;MM=34.968366", "Met->Ala": "NT=Met->Ala;AC=1142;CF=H(-4) C(-2) S(-1);MM=-60.003371", "Met->Cys": "NT=Met->Cys;AC=1143;CF=H(-4) C(-2);MM=-28.0313", "Met->Asp": "NT=Met->Asp;AC=1144;CF=H(-4) C(-1) O(2) S(-1);MM=-16.013542", "Met->Glu": "NT=Met->Glu;AC=1145;CF=H(-2) O(2) S(-1);MM=-1.997892", "Met->Phe": "NT=Met->Phe;AC=1146;CF=C(4) S(-1);MM=16.027929", "Met->Gly": "NT=Met->Gly;AC=1147;CF=H(-6) C(-3) S(-1);MM=-74.019021", "Met->His": "NT=Met->His;AC=1148;CF=H(-2) C N(2) S(-1);MM=6.018427", "Met->Asn": "NT=Met->Asn;AC=1149;CF=H(-3) C(-1) N O S(-1);MM=-16.997557", "Met->Pro": "NT=Met->Pro;AC=1150;CF=H(-2) S(-1);MM=-33.987721", "Met->Gln": "NT=Met->Gln;AC=1151;CF=H(-1) N O S(-1);MM=-2.981907", "Met->Ser": "NT=Met->Ser;AC=1152;CF=H(-4) C(-2) O S(-1);MM=-44.008456", "Met->Trp": "NT=Met->Trp;AC=1153;CF=H C(6) N S(-1);MM=55.038828", "Met->Tyr": "NT=Met->Tyr;AC=1154;CF=C(4) O S(-1);MM=32.022844", "Asn->Ala": "NT=Asn->Ala;AC=1155;CF=H(-1) C(-1) N(-1) O(-1);MM=-43.005814", "Asn->Cys": "NT=Asn->Cys;AC=1156;CF=H(-1) C(-1) N(-1) O(-1) S;MM=-11.033743", "Asn->Glu": "NT=Asn->Glu;AC=1157;CF=H C N(-1) O;MM=14.999666", "Asn->Phe": "NT=Asn->Phe;AC=1158;CF=H(3) C(5) N(-1) O(-1);MM=33.025486", "Asn->Gly": "NT=Asn->Gly;AC=1159;CF=H(-3) C(-2) N(-1) O(-1);MM=-57.021464", "Asn->Met": "NT=Asn->Met;AC=1160;CF=H(3) C N(-1) O(-1) S;MM=16.997557", "Asn->Pro": "NT=Asn->Pro;AC=1161;CF=H C N(-1) O(-1);MM=-16.990164", "Asn->Gln": "NT=Asn->Gln;AC=1162;CF=H(2) C;MM=14.01565", "Asn->Arg": "NT=Asn->Arg;AC=1163;CF=H(6) C(2) N(2) O(-1);MM=42.058184", "Asn->Val": "NT=Asn->Val;AC=1164;CF=H(3) C N(-1) O(-1);MM=-14.974514", "Asn->Trp": "NT=Asn->Trp;AC=1165;CF=H(4) C(7) O(-1);MM=72.036386", "Pro->Cys": "NT=Pro->Cys;AC=1166;CF=H(-2) C(-2) S;MM=5.956421", "Pro->Asp": "NT=Pro->Asp;AC=1167;CF=H(-2) C(-1) O(2);MM=17.974179", "Pro->Glu": "NT=Pro->Glu;AC=1168;CF=O(2);MM=31.989829", "Pro->Phe": "NT=Pro->Phe;AC=1169;CF=H(2) C(4);MM=50.01565", "Pro->Gly": "NT=Pro->Gly;AC=1170;CF=H(-4) C(-3);MM=-40.0313", "Pro->Lys": "NT=Pro->Lys;AC=1171;CF=H(5) C N;MM=31.042199", "Pro->Met": "NT=Pro->Met;AC=1172;CF=H(2) S;MM=33.987721", "Pro->Asn": "NT=Pro->Asn;AC=1173;CF=H(-1) C(-1) N O;MM=16.990164", "Pro->Val": "NT=Pro->Val;AC=1174;CF=H(2);MM=2.01565", "Pro->Trp": "NT=Pro->Trp;AC=1175;CF=H(3) C(6) N;MM=89.026549", "Pro->Tyr": "NT=Pro->Tyr;AC=1176;CF=H(2) C(4) O;MM=66.010565", "Gln->Ala": "NT=Gln->Ala;AC=1177;CF=H(-3) C(-2) N(-1) O(-1);MM=-57.021464", "Gln->Cys": "NT=Gln->Cys;AC=1178;CF=H(-3) C(-2) N(-1) O(-1) S;MM=-25.049393", "Gln->Asp": "NT=Gln->Asp;AC=1179;CF=H(-3) C(-1) N(-1) O;MM=-13.031634", "Gln->Phe": "NT=Gln->Phe;AC=1180;CF=H C(4) N(-1) O(-1);MM=19.009836", "Gln->Gly": "NT=Gln->Gly;AC=1181;CF=H(-5) C(-3) N(-1) O(-1);MM=-71.037114", "Gln->Met": "NT=Gln->Met;AC=1182;CF=H N(-1) O(-1) S;MM=2.981907", "Gln->Asn": "NT=Gln->Asn;AC=1183;CF=H(-2) C(-1);MM=-14.01565", "Gln->Ser": "NT=Gln->Ser;AC=1184;CF=H(-3) C(-2) N(-1);MM=-41.026549", "Gln->Thr": "NT=Gln->Thr;AC=1185;CF=H(-1) C(-1) N(-1);MM=-27.010899", "Gln->Val": "NT=Gln->Val;AC=1186;CF=H N(-1) O(-1);MM=-28.990164", "Gln->Trp": "NT=Gln->Trp;AC=1187;CF=H(2) C(6) O(-1);MM=58.020735", "Gln->Tyr": "NT=Gln->Tyr;AC=1188;CF=H C(4) N(-1);MM=35.004751", "Arg->Ala": "NT=Arg->Ala;AC=1189;CF=H(-7) C(-3) N(-3);MM=-85.063997", "Arg->Asp": "NT=Arg->Asp;AC=1190;CF=H(-7) C(-2) N(-3) O(2);MM=-41.074168", "Arg->Glu": "NT=Arg->Glu;AC=1191;CF=H(-5) C(-1) N(-3) O(2);MM=-27.058518", "Arg->Asn": "NT=Arg->Asn;AC=1192;CF=H(-6) C(-2) N(-2) O;MM=-42.058184", "Arg->Val": "NT=Arg->Val;AC=1193;CF=H(-3) C(-1) N(-3);MM=-57.032697", "Arg->Tyr": "NT=Arg->Tyr;AC=1194;CF=H(-3) C(3) N(-3) O;MM=6.962218", "Arg->Phe": "NT=Arg->Phe;AC=1195;CF=H(-3) C(3) N(-3);MM=-9.032697", "Ser->Asp": "NT=Ser->Asp;AC=1196;CF=C O;MM=27.994915", "Ser->Glu": "NT=Ser->Glu;AC=1197;CF=H(2) C(2) O;MM=42.010565", "Ser->His": "NT=Ser->His;AC=1198;CF=H(2) C(3) N(2) O(-1);MM=50.026883", "Ser->Lys": "NT=Ser->Lys;AC=1199;CF=H(7) C(3) N O(-1);MM=41.062935", "Ser->Met": "NT=Ser->Met;AC=1200;CF=H(4) C(2) O(-1) S;MM=44.008456", "Ser->Gln": "NT=Ser->Gln;AC=1201;CF=H(3) C(2) N;MM=41.026549", "Ser->Val": "NT=Ser->Val;AC=1202;CF=H(4) C(2) O(-1);MM=12.036386", "Thr->Cys": "NT=Thr->Cys;AC=1203;CF=H(-2) C(-1) O(-1) S;MM=1.961506", "Thr->Asp": "NT=Thr->Asp;AC=1204;CF=H(-2) O;MM=13.979265", "Thr->Glu": "NT=Thr->Glu;AC=1205;CF=C O;MM=27.994915", "Thr->Phe": "NT=Thr->Phe;AC=1206;CF=H(2) C(5) O(-1);MM=46.020735", "Thr->Gly": "NT=Thr->Gly;AC=1207;CF=H(-4) C(-2) O(-1);MM=-44.026215", "Thr->His": "NT=Thr->His;AC=1208;CF=C(2) N(2) O(-1);MM=36.011233", "Thr->Gln": "NT=Thr->Gln;AC=1209;CF=H C N;MM=27.010899", "Thr->Val": "NT=Thr->Val;AC=1210;CF=H(2) C O(-1);MM=-1.979265", "Thr->Trp": "NT=Thr->Trp;AC=1211;CF=H(3) C(7) N O(-1);MM=85.031634", "Thr->Tyr": "NT=Thr->Tyr;AC=1212;CF=H(2) C(5);MM=62.01565", "Val->Cys": "NT=Val->Cys;AC=1213;CF=H(-4) C(-2) S;MM=3.940771", "Val->His": "NT=Val->His;AC=1214;CF=H(-2) C N(2);MM=37.990498", "Val->Lys": "NT=Val->Lys;AC=1215;CF=H(3) C N;MM=29.026549", "Val->Asn": "NT=Val->Asn;AC=1216;CF=H(-3) C(-1) N O;MM=14.974514", "Val->Pro": "NT=Val->Pro;AC=1217;CF=H(-2);MM=-2.01565", "Val->Gln": "NT=Val->Gln;AC=1218;CF=H(-1) N O;MM=28.990164", "Val->Arg": "NT=Val->Arg;AC=1219;CF=H(3) C N(3);MM=57.032697", "Val->Ser": "NT=Val->Ser;AC=1220;CF=H(-4) C(-2) O;MM=-12.036386", "Val->Thr": "NT=Val->Thr;AC=1221;CF=H(-2) C(-1) O;MM=1.979265", "Val->Trp": "NT=Val->Trp;AC=1222;CF=H C(6) N;MM=87.010899", "Val->Tyr": "NT=Val->Tyr;AC=1223;CF=C(4) O;MM=63.994915", "Trp->Ala": "NT=Trp->Ala;AC=1224;CF=H(-5) C(-8) N(-1);MM=-115.042199", "Trp->Asp": "NT=Trp->Asp;AC=1225;CF=H(-5) C(-7) N(-1) O(2);MM=-71.05237", "Trp->Glu": "NT=Trp->Glu;AC=1226;CF=H(-3) C(-6) N(-1) O(2);MM=-57.03672", "Trp->Phe": "NT=Trp->Phe;AC=1227;CF=H(-1) C(-2) N(-1);MM=-39.010899", "Trp->His": "NT=Trp->His;AC=1228;CF=H(-3) C(-5) N;MM=-49.020401", "Trp->Lys": "NT=Trp->Lys;AC=1229;CF=H(2) C(-5);MM=-57.98435", "Trp->Met": "NT=Trp->Met;AC=1230;CF=H(-1) C(-6) N(-1) S;MM=-55.038828", "Trp->Asn": "NT=Trp->Asn;AC=1231;CF=H(-4) C(-7) O;MM=-72.036386", "Trp->Pro": "NT=Trp->Pro;AC=1232;CF=H(-3) C(-6) N(-1);MM=-89.026549", "Trp->Gln": "NT=Trp->Gln;AC=1233;CF=H(-2) C(-6) O;MM=-58.020735", "Trp->Thr": "NT=Trp->Thr;AC=1234;CF=H(-3) C(-7) N(-1) O;MM=-85.031634", "Trp->Val": "NT=Trp->Val;AC=1235;CF=H(-1) C(-6) N(-1);MM=-87.010899", "Trp->Tyr": "NT=Trp->Tyr;AC=1236;CF=H(-1) C(-2) N(-1) O;MM=-23.015984", "Tyr->Ala": "NT=Tyr->Ala;AC=1237;CF=H(-4) C(-6) O(-1);MM=-92.026215", "Tyr->Glu": "NT=Tyr->Glu;AC=1238;CF=H(-2) C(-4) O;MM=-34.020735", "Tyr->Gly": "NT=Tyr->Gly;AC=1239;CF=H(-6) C(-7) O(-1);MM=-106.041865", "Tyr->Lys": "NT=Tyr->Lys;AC=1240;CF=H(3) C(-3) N O(-1);MM=-34.968366", "Tyr->Met": "NT=Tyr->Met;AC=1241;CF=C(-4) O(-1) S;MM=-32.022844", "Tyr->Pro": "NT=Tyr->Pro;AC=1242;CF=H(-2) C(-4) O(-1);MM=-66.010565", "Tyr->Gln": "NT=Tyr->Gln;AC=1243;CF=H(-1) C(-4) N;MM=-35.004751", "Tyr->Arg": "NT=Tyr->Arg;AC=1244;CF=H(3) C(-3) N(3) O(-1);MM=-6.962218", "Tyr->Thr": "NT=Tyr->Thr;AC=1245;CF=H(-2) C(-5);MM=-62.01565", "Tyr->Val": "NT=Tyr->Val;AC=1246;CF=C(-4) O(-1);MM=-63.994915", "Tyr->Trp": "NT=Tyr->Trp;AC=1247;CF=H C(2) N O(-1);MM=23.015984", "Tyr->Xle": "NT=Tyr->Xle;AC=1248;CF=H(2) C(-3) O(-1);MM=-49.979265", "AHA-SS": "NT=AHA-SS;AC=1249;CF=H(9) C(7) N(5) O(2);MM=195.075625", "AHA-SS_CAM": "NT=AHA-SS_CAM;AC=1250;CF=H(12) C(9) N(6) O(3);MM=252.097088", "Biotin:Thermo-33033": "NT=Biotin:Thermo-33033;AC=1251;CF=H(36) C(25) N(6) O(4) S(2);MM=548.223945", "Biotin:Thermo-33033-H": "NT=Biotin:Thermo-33033-H;AC=1252;CF=H(34) C(25) N(6) O(4) S(2);MM=546.208295", "2-monomethylsuccinyl": "NT=2-monomethylsuccinyl;AC=1253;CF=H(6) C(5) O(4);MM=130.026609", "Saligenin": "NT=Saligenin;AC=1254;CF=H(6) C(7) O;MM=106.041865", "Cresylphosphate": "NT=Cresylphosphate;AC=1255;CF=H(7) C(7) O(3) P;MM=170.013281", "CresylSaligeninPhosphate": "NT=CresylSaligeninPhosphate;AC=1256;CF=H(13) C(14) O(4) P;MM=276.055146", "Ub-Br2": "NT=Ub-Br2;AC=1257;CF=H(8) C(4) N(2) O;MM=100.063663", "Ub-VME": "NT=Ub-VME;AC=1258;CF=H(12) C(7) N(2) O(3);MM=172.084792", "Ub-fluorescein": "NT=Ub-fluorescein;AC=1261;CF=H(29) C(31) N(6) O(7);MM=597.209772", "2-dimethylsuccinyl": "NT=2-dimethylsuccinyl;AC=1262;CF=H(8) C(6) O(4);MM=144.042259", "Gly": "NT=Gly;AC=1263;CF=H(3) C(2) N O;MM=57.021464", "pupylation": "NT=pupylation;AC=1264;CF=H(13) C(9) N(3) O(5);MM=243.085521", "Label:13C(4)": "NT=Label:13C(4);AC=1266;CF=C(-4) 13C(4);MM=4.013419", "Label:13C(4)+Oxidation": "NT=Label:13C(4)+Oxidation;AC=1267;CF=C(-4) 13C(4) O;MM=20.008334", "HCysThiolactone": "NT=HCysThiolactone;AC=1270;CF=H(7) C(4) N O S;MM=117.024835", "HCysteinyl": "NT=HCysteinyl;AC=1271;CF=H(7) C(4) N O(2) S;MM=133.019749", "UgiJoullie": "NT=UgiJoullie;AC=1276;CF=H(60) C(47) N(23) O(10);MM=1106.48935", "Dipyridyl": "NT=Dipyridyl;AC=1277;CF=H(11) C(13) N(3) O;MM=225.090212", "Furan": "NT=Furan;AC=1278;CF=H(2) C(4) O;MM=66.010565", "Difuran": "NT=Difuran;AC=1279;CF=H(4) C(8) O(2);MM=132.021129", "BMP-piperidinol": "NT=BMP-piperidinol;AC=1281;CF=H(17) C(18) N O;MM=263.131014", "UgiJoullieProGly": "NT=UgiJoullieProGly;AC=1282;CF=H(10) C(7) N(2) O(2);MM=154.074228", "UgiJoullieProGlyProGly": "NT=UgiJoullieProGlyProGly;AC=1283;CF=H(20) C(14) N(4) O(4);MM=308.148455", "IMEHex(2)NeuAc(1)": "NT=IMEHex(2)NeuAc(1);AC=1286;CF=H(3) C(2) N S Hex(2) NeuAc;MM=688.199683", "Arg-loss": "NT=Arg-loss;AC=1287;CF=H(-12) C(-6) N(-4) O(-1);MM=-156.101111", "Arg": "NT=Arg;AC=1288;CF=H(12) C(6) N(4) O;MM=156.101111", "Butyryl": "NT=Butyryl;AC=1289;CF=H(6) C(4) O;MM=70.041865", "Dicarbamidomethyl": "NT=Dicarbamidomethyl;AC=1290;CF=H(6) C(4) N(2) O(2);MM=114.042927", "Dimethyl:2H(6)": "NT=Dimethyl:2H(6);AC=1291;CF=H(-2) 2H(6) C(2);MM=34.068961", "GGQ": "NT=GGQ;AC=1292;CF=H(14) C(9) N(4) O(4);MM=242.101505", "QTGG": "NT=QTGG;AC=1293;CF=H(21) C(13) N(5) O(6);MM=343.149184", "Label:13C(3)": "NT=Label:13C(3);AC=1296;CF=C(-3) 13C(3);MM=3.010064", "Label:13C(3)15N(1)": "NT=Label:13C(3)15N(1);AC=1297;CF=C(-3) 13C(3) N(-1) 15N;MM=4.007099", "Label:13C(4)15N(1)": "NT=Label:13C(4)15N(1);AC=1298;CF=C(-4) 13C(4) N(-1) 15N;MM=5.010454", "Label:2H(10)": "NT=Label:2H(10);AC=1299;CF=H(-10) 2H(10);MM=10.062767", "Label:2H(4)13C(1)": "NT=Label:2H(4)13C(1);AC=1300;CF=H(-4) 2H(4) C(-1) 13C;MM=5.028462", "Lys": "NT=Lys;AC=1301;CF=H(12) C(6) N(2) O;MM=128.094963", "mTRAQ:13C(6)15N(2)": "NT=mTRAQ:13C(6)15N(2);AC=1302;CF=H(12) C 13C(6) 15N(2) O;MM=148.109162", "NeuAc": "NT=NeuAc;AC=1303;CF=NeuAc;MM=291.095417", "NeuGc": "NT=NeuGc;AC=1304;CF=NeuGc;MM=307.090331", "Propyl": "NT=Propyl;AC=1305;CF=H(6) C(3);MM=42.04695", "Propyl:2H(6)": "NT=Propyl:2H(6);AC=1306;CF=2H(6) C(3);MM=48.084611", "Propiophenone": "NT=Propiophenone;AC=1310;CF=H(8) C(9) O;MM=132.057515", "Delta:H(6)C(3)O(1)": "NT=Delta:H(6)C(3)O(1);AC=1312;CF=H(6) C(3) O;MM=58.041865", "Delta:H(8)C(6)O(1)": "NT=Delta:H(8)C(6)O(1);AC=1313;CF=H(8) C(6) O;MM=96.057515", "biotinAcrolein298": "NT=biotinAcrolein298;AC=1314;CF=H(22) C(13) N(4) O(2) S;MM=298.146347", "MM-diphenylpentanone": "NT=MM-diphenylpentanone;AC=1315;CF=H(19) C(18) N O;MM=265.146664", "EHD-diphenylpentanone": "NT=EHD-diphenylpentanone;AC=1317;CF=H(18) C(18) O(2);MM=266.13068", "Biotin:Thermo-21901+2H2O": "NT=Biotin:Thermo-21901+2H2O;AC=1320;CF=H(39) C(23) N(5) O(9) S;MM=561.246849", "DiLeu4plex115": "NT=DiLeu4plex115;AC=1321;CF=H(15) C(7) 13C 15N 18O;MM=145.12", "DiLeu4plex": "NT=DiLeu4plex;AC=1322;CF=H(13) 2H(2) C(8) N 18O;MM=145.132163", "DiLeu4plex117": "NT=DiLeu4plex117;AC=1323;CF=H(13) 2H(2) C(7) 13C 15N O;MM=145.128307", "DiLeu4plex118": "NT=DiLeu4plex118;AC=1324;CF=H(11) 2H(4) C(8) N O;MM=145.140471", "NEMsulfur": "NT=NEMsulfur;AC=1326;CF=H(7) C(6) N O(2) S;MM=157.019749", "SulfurDioxide": "NT=SulfurDioxide;AC=1327;CF=O(2) S;MM=63.9619", "NEMsulfurWater": "NT=NEMsulfurWater;AC=1328;CF=H(9) C(6) N O(3) S;MM=175.030314", "bisANS-sulfonates": "NT=bisANS-sulfonates;AC=1330;CF=H(22) C(32) N(2);MM=434.178299", "DNCB_hapten": "NT=DNCB_hapten;AC=1331;CF=H(2) C(6) N(2) O(4);MM=166.001457", "Biotin:Thermo-21911": "NT=Biotin:Thermo-21911;AC=1340;CF=H(71) C(41) N(5) O(16) S;MM=921.461652", "iodoTMT": "NT=iodoTMT;AC=1341;CF=H(28) C(16) N(4) O(3);MM=324.216141", "iodoTMT6plex": "NT=iodoTMT6plex;AC=1342;CF=H(28) C(12) 13C(4) N(3) 15N O(3);MM=329.226595", "Phosphogluconoylation": "NT=Phosphogluconoylation;AC=1344;CF=H(11) C(6) O(9) P;MM=258.014069", "PS_Hapten": "NT=PS_Hapten;AC=1345;CF=H(4) C(7) O(2);MM=120.021129", "Cy3-maleimide": "NT=Cy3-maleimide;AC=1348;CF=H(45) C(37) N(4) O(9) S(2);MM=753.262796", "benzylguanidine": "NT=benzylguanidine;AC=1349;CF=H(8) C(8) N(2);MM=132.068748", "CarboxymethylDMAP": "NT=CarboxymethylDMAP;AC=1350;CF=H(10) C(9) N(2) O;MM=162.079313", "azole": "NT=azole;AC=1355;CF=H(-4) O(-1);MM=-20.026215", "phosphoRibosyl": "NT=phosphoRibosyl;AC=1356;CF=H(9) C(5) O(7) P;MM=212.00859", "NEM:2H(5)+H2O": "NT=NEM:2H(5)+H2O;AC=1358;CF=H(4) 2H(5) C(6) N O(3);MM=148.089627", "Crotonyl": "NT=Crotonyl;AC=1363;CF=H(4) C(4) O;MM=68.026215", "O-Et-N-diMePhospho": "NT=O-Et-N-diMePhospho;AC=1364;CF=H(10) C(4) N O(2) P;MM=135.044916", "N-dimethylphosphate": "NT=N-dimethylphosphate;AC=1365;CF=H(6) C(2) N O(2) P;MM=107.013615", "dHex(1)Hex(1)": "NT=dHex(1)Hex(1);AC=1367;CF=dHex Hex;MM=308.110732", "Methyl:2H(3)+Acetyl:2H(3)": "NT=Methyl:2H(3)+Acetyl:2H(3);AC=1368;CF=H(-2) 2H(6) C(3) O;MM=62.063875", "Label:2H(3)+Oxidation": "NT=Label:2H(3)+Oxidation;AC=1370;CF=H(-3) 2H(3) O;MM=19.013745", "Trimethyl:2H(9)": "NT=Trimethyl:2H(9);AC=1371;CF=H(-3) 2H(9) C(3);MM=51.103441", "Acetyl:13C(2)": "NT=Acetyl:13C(2);AC=1372;CF=H(2) 13C(2) O;MM=44.017274", "dHex(1)Hex(2)": "NT=dHex(1)Hex(2);AC=1375;CF=dHex Hex(2);MM=470.163556", "dHex(1)Hex(3)": "NT=dHex(1)Hex(3);AC=1376;CF=dHex Hex(3);MM=632.216379", "dHex(1)Hex(4)": "NT=dHex(1)Hex(4);AC=1377;CF=dHex Hex(4);MM=794.269203", "dHex(1)Hex(5)": "NT=dHex(1)Hex(5);AC=1378;CF=dHex Hex(5);MM=956.322026", "dHex(1)Hex(6)": "NT=dHex(1)Hex(6);AC=1379;CF=dHex Hex(6);MM=1118.37485", "methylsulfonylethyl": "NT=methylsulfonylethyl;AC=1380;CF=H(6) C(3) O(2) S;MM=106.00885", "ethylsulfonylethyl": "NT=ethylsulfonylethyl;AC=1381;CF=H(8) C(4) O(2) S;MM=120.0245", "phenylsulfonylethyl": "NT=phenylsulfonylethyl;AC=1382;CF=H(8) C(8) O(2) S;MM=168.0245", "PyridoxalPhosphateH2": "NT=PyridoxalPhosphateH2;AC=1383;CF=H(10) C(8) N O(5) P;MM=231.02966", "Homocysteic_acid": "NT=Homocysteic_acid;AC=1384;CF=H(-2) C(-1) O(3);MM=33.969094", "Hydroxamic_acid": "NT=Hydroxamic_acid;AC=1385;CF=H N;MM=15.010899", "3-phosphoglyceryl": "NT=3-phosphoglyceryl;AC=1387;CF=H(5) C(3) O(6) P;MM=167.982375", "HN2_mustard": "NT=HN2_mustard;AC=1388;CF=H(11) C(5) N O;MM=101.084064", "HN3_mustard": "NT=HN3_mustard;AC=1389;CF=H(13) C(6) N O(2);MM=131.094629", "Oxidation+NEM": "NT=Oxidation+NEM;AC=1390;CF=H(7) C(6) N O(3);MM=141.042593", "NHS-fluorescein": "NT=NHS-fluorescein;AC=1391;CF=H(21) C(27) N O(7);MM=471.131802", "DiART6plex": "NT=DiART6plex;AC=1392;CF=H(20) C(7) 13C(4) N 15N O(2);MM=217.162932", "DiART6plex115": "NT=DiART6plex115;AC=1393;CF=H(20) C(8) 13C(3) 15N(2) O(2);MM=217.156612", "DiART6plex116/119": "NT=DiART6plex116/119;AC=1394;CF=H(18) 2H(2) C(9) 13C(2) N 15N O(2);MM=217.168776", "DiART6plex117": "NT=DiART6plex117;AC=1395;CF=H(18) 2H(2) C(10) 13C 15N(2) O(2);MM=217.162456", "DiART6plex118": "NT=DiART6plex118;AC=1396;CF=H(18) 2H(2) C(8) 13C(3) N(2) O(2);MM=217.175096", "Iodoacetanilide": "NT=Iodoacetanilide;AC=1397;CF=H(7) C(8) N O;MM=133.052764", "Iodoacetanilide:13C(6)": "NT=Iodoacetanilide:13C(6);AC=1398;CF=H(7) C(2) 13C(6) N O;MM=139.072893", "Dap-DSP": "NT=Dap-DSP;AC=1399;CF=H(20) C(13) N(2) O(6) S(2);MM=364.076278", "MurNAc": "NT=MurNAc;AC=1400;CF=O(-1) NeuAc;MM=275.100502", "Label:2H(7)15N(4)": "NT=Label:2H(7)15N(4);AC=1402;CF=H(-7) 2H(7) N(-4) 15N(4);MM=11.032077", "Label:2H(6)15N(1)": "NT=Label:2H(6)15N(1);AC=1403;CF=H(-6) 2H(6) N(-1) 15N;MM=7.034695", "EEEDVIEVYQEQTGG": "NT=EEEDVIEVYQEQTGG;AC=1405;CF=H(107) C(72) N(17) O(31);MM=1705.73189", "EDEDTIDVFQQQTGG": "NT=EDEDTIDVFQQQTGG;AC=1406;CF=H(102) C(69) N(18) O(30);MM=1662.700924", "Hex(5)HexNAc(4)NeuAc(2)": "NT=Hex(5)HexNAc(4)NeuAc(2);AC=1408;CF=Hex(5) HexNAc(4) NeuAc(2);MM=2204.772441", "Hex(5)HexNAc(4)NeuAc(1)": "NT=Hex(5)HexNAc(4)NeuAc(1);AC=1409;CF=Hex(5) HexNAc(4) NeuAc;MM=1913.677025", "dHex(1)Hex(5)HexNAc(4)NeuAc(1)": "NT=dHex(1)Hex(5)HexNAc(4)NeuAc(1);AC=1410;CF=dHex Hex(5) HexNAc(4) NeuAc;MM=2059.734933", "dHex(1)Hex(5)HexNAc(4)NeuAc(2)": "NT=dHex(1)Hex(5)HexNAc(4)NeuAc(2);AC=1411;CF=dHex Hex(5) HexNAc(4) NeuAc(2);MM=2350.83035", "s-GlcNAc": "NT=s-GlcNAc;AC=1412;CF=O(3) S HexNAc;MM=283.036187", "PhosphoHex(2)": "NT=PhosphoHex(2);AC=1413;CF=H O(3) P Hex(2);MM=404.071978", "Trimethyl:13C(3)2H(9)": "NT=Trimethyl:13C(3)2H(9);AC=1414;CF=H(-3) 2H(9) 13C(3);MM=54.113505", "15N-oxobutanoic": "NT=15N-oxobutanoic;AC=1419;CF=H(-3) 15N(-1);MM=-18.023584", "spermine": "NT=spermine;AC=1420;CF=H(23) C(10) N(3);MM=185.189198", "spermidine": "NT=spermidine;AC=1421;CF=H(16) C(7) N(2);MM=128.131349", "Biotin:Thermo-21330": "NT=Biotin:Thermo-21330;AC=1423;CF=H(35) C(21) N(3) O(7) S;MM=473.219571", "Pentose": "NT=Pentose;AC=1425;CF=Pent;MM=132.042259", "Hex(1)Pent(1)": "NT=Hex(1)Pent(1);AC=1426;CF=Pent Hex;MM=294.095082", "Hex(1)HexA(1)": "NT=Hex(1)HexA(1);AC=1427;CF=Hex HexA;MM=338.084912", "Hex(1)Pent(2)": "NT=Hex(1)Pent(2);AC=1428;CF=Pent(2) Hex;MM=426.137341", "Hex(1)HexNAc(1)Phos(1)": "NT=Hex(1)HexNAc(1)Phos(1);AC=1429;CF=H O(3) P Hex HexNAc;MM=445.098527", "Hex(1)HexNAc(1)Sulf(1)": "NT=Hex(1)HexNAc(1)Sulf(1);AC=1430;CF=O(3) S Hex HexNAc;MM=445.089011", "Hex(1)NeuAc(1)": "NT=Hex(1)NeuAc(1);AC=1431;CF=Hex NeuAc;MM=453.14824", "Hex(1)NeuGc(1)": "NT=Hex(1)NeuGc(1);AC=1432;CF=Hex NeuGc;MM=469.143155", "HexNAc(3)": "NT=HexNAc(3);AC=1433;CF=HexNAc(3);MM=609.238118", "HexNAc(1)NeuAc(1)": "NT=HexNAc(1)NeuAc(1);AC=1434;CF=HexNAc NeuAc;MM=494.174789", "HexNAc(1)NeuGc(1)": "NT=HexNAc(1)NeuGc(1);AC=1435;CF=HexNAc NeuGc;MM=510.169704", "Hex(1)HexNAc(1)dHex(1)Me(1)": "NT=Hex(1)HexNAc(1)dHex(1)Me(1);AC=1436;CF=Me dHex Hex HexNAc;MM=525.205755", "Hex(1)HexNAc(1)dHex(1)Me(2)": "NT=Hex(1)HexNAc(1)dHex(1)Me(2);AC=1437;CF=Me(2) dHex Hex HexNAc;MM=539.221405", "Hex(2)HexNAc(1)": "NT=Hex(2)HexNAc(1);AC=1438;CF=Hex(2) HexNAc;MM=527.18502", "Hex(1)HexA(1)HexNAc(1)": "NT=Hex(1)HexA(1)HexNAc(1);AC=1439;CF=Hex HexA HexNAc;MM=541.164284", "Hex(2)HexNAc(1)Me(1)": "NT=Hex(2)HexNAc(1)Me(1);AC=1440;CF=Me Hex(2) HexNAc;MM=541.20067", "Hex(1)Pent(3)": "NT=Hex(1)Pent(3);AC=1441;CF=Pent(3) Hex;MM=558.1796", "Hex(1)NeuAc(1)Pent(1)": "NT=Hex(1)NeuAc(1)Pent(1);AC=1442;CF=Pent Hex NeuAc;MM=585.190499", "Hex(2)HexNAc(1)Sulf(1)": "NT=Hex(2)HexNAc(1)Sulf(1);AC=1443;CF=O(3) S Hex(2) HexNAc;MM=607.141834", "Hex(2)NeuAc(1)": "NT=Hex(2)NeuAc(1);AC=1444;CF=Hex(2) NeuAc;MM=615.201064", "dHex(2)Hex(2)": "NT=dHex(2)Hex(2);AC=1445;CF=dHex(2) Hex(2);MM=616.221465", "dHex(1)Hex(2)HexA(1)": "NT=dHex(1)Hex(2)HexA(1);AC=1446;CF=dHex Hex(2) HexA;MM=646.195644", "Hex(1)HexNAc(2)Sulf(1)": "NT=Hex(1)HexNAc(2)Sulf(1);AC=1447;CF=O(3) S Hex HexNAc(2);MM=648.168383", "Hex(4)": "NT=Hex(4);AC=1448;CF=Hex(4);MM=648.211294", "dHex(1)Hex(2)HexNAc(2)Pent(1)": "NT=dHex(1)Hex(2)HexNAc(2)Pent(1);AC=1449;CF=dHex(1) Hex(2) HexNAc(2) Pent(1);MM=1008.36456", "Hex(2)HexNAc(2)NeuAc(1)": "NT=Hex(2)HexNAc(2)NeuAc(1);AC=1450;CF=Hex(2) HexNAc(2) NeuAc;MM=1021.359809", "Hex(3)HexNAc(2)Pent(1)": "NT=Hex(3)HexNAc(2)Pent(1);AC=1451;CF=Hex(3) HexNAc(2) Pent(1);MM=1024.359475", "Hex(4)HexNAc(2)": "NT=Hex(4)HexNAc(2);AC=1452;CF=Hex(4) HexNAc(2);MM=1054.370039", "dHex(1)Hex(4)HexNAc(1)Pent(1)": "NT=dHex(1)Hex(4)HexNAc(1)Pent(1);AC=1453;CF=dHex(1) Hex(4) HexNAc(1) Pent(1);MM=1129.390834", "dHex(1)Hex(3)HexNAc(2)Pent(1)": "NT=dHex(1)Hex(3)HexNAc(2)Pent(1);AC=1454;CF=dHex(1) Hex(3) HexNAc(2) Pent(1);MM=1170.417383", "Hex(3)HexNAc(2)NeuAc(1)": "NT=Hex(3)HexNAc(2)NeuAc(1);AC=1455;CF=Hex(3) HexNAc(2) NeuAc(1);MM=1183.412632", "Hex(4)HexNAc(2)Pent(1)": "NT=Hex(4)HexNAc(2)Pent(1);AC=1456;CF=Hex(4) HexNAc(2) Pent(1);MM=1186.412298", "Hex(3)HexNAc(3)Pent(1)": "NT=Hex(3)HexNAc(3)Pent(1);AC=1457;CF=Hex(3) HexNAc(3) Pent(1);MM=1227.438847", "Hex(5)HexNAc(2)Phos(1)": "NT=Hex(5)HexNAc(2)Phos(1);AC=1458;CF=H O(3) P Hex(5) HexNAc(2);MM=1296.389194", "dHex(1)Hex(4)HexNAc(2)Pent(1)": "NT=dHex(1)Hex(4)HexNAc(2)Pent(1);AC=1459;CF=dHex(1) Hex(4) HexNAc(2) Pent(1);MM=1332.470207", "Hex(7)HexNAc(1)": "NT=Hex(7)HexNAc(1);AC=1460;CF=Hex(7) HexNAc(1);MM=1337.449137", "Hex(4)HexNAc(2)NeuAc(1)": "NT=Hex(4)HexNAc(2)NeuAc(1);AC=1461;CF=Hex(4) HexNAc(2) NeuAc;MM=1345.465456", "dHex(1)Hex(5)HexNAc(2)": "NT=dHex(1)Hex(5)HexNAc(2);AC=1462;CF=dHex(1) Hex(5) HexNAc(2);MM=1362.480772", "dHex(1)Hex(3)HexNAc(3)Pent(1)": "NT=dHex(1)Hex(3)HexNAc(3)Pent(1);AC=1463;CF=dHex(1) Hex(3) HexNAc(3) Pent(1);MM=1373.496756", "Hex(3)HexNAc(4)Sulf(1)": "NT=Hex(3)HexNAc(4)Sulf(1);AC=1464;CF=O(3) S Hex(3) HexNAc(4);MM=1378.432776", "Hex(6)HexNAc(2)": "NT=Hex(6)HexNAc(2);AC=1465;CF=Hex(6) HexNAc(2);MM=1378.475686", "Hex(4)HexNAc(3)Pent(1)": "NT=Hex(4)HexNAc(3)Pent(1);AC=1466;CF=Hex(4) HexNAc(3) Pent(1);MM=1389.491671", "dHex(1)Hex(4)HexNAc(3)": "NT=dHex(1)Hex(4)HexNAc(3);AC=1467;CF=dHex(1) Hex(4) HexNAc(3);MM=1403.507321", "Hex(5)HexNAc(3)": "NT=Hex(5)HexNAc(3);AC=1468;CF=Hex(5) HexNAc(3);MM=1419.502235", "Hex(3)HexNAc(4)Pent(1)": "NT=Hex(3)HexNAc(4)Pent(1);AC=1469;CF=Hex(3) HexNAc(4) Pent(1);MM=1430.51822", "Hex(6)HexNAc(2)Phos(1)": "NT=Hex(6)HexNAc(2)Phos(1);AC=1470;CF=H O(3) P Hex(6) HexNAc(2);MM=1458.442017", "dHex(1)Hex(4)HexNAc(3)Sulf(1)": "NT=dHex(1)Hex(4)HexNAc(3)Sulf(1);AC=1471;CF=O(3) S dHex Hex(4) HexNAc(3);MM=1483.464135", "dHex(1)Hex(5)HexNAc(2)Pent(1)": "NT=dHex(1)Hex(5)HexNAc(2)Pent(1);AC=1472;CF=dHex(1) Hex(5) HexNAc(2) Pent(1);MM=1494.52303", "Hex(8)HexNAc(1)": "NT=Hex(8)HexNAc(1);AC=1473;CF=Hex(8) HexNAc(1);MM=1499.501961", "dHex(1)Hex(3)HexNAc(3)Pent(2)": "NT=dHex(1)Hex(3)HexNAc(3)Pent(2);AC=1474;CF=dHex(1) Hex(3) HexNAc(3) Pent(2);MM=1505.539015", "dHex(2)Hex(3)HexNAc(3)Pent(1)": "NT=dHex(2)Hex(3)HexNAc(3)Pent(1);AC=1475;CF=dHex(2) Hex(3) HexNAc(3) Pent(1);MM=1519.554665", "dHex(1)Hex(3)HexNAc(4)Sulf(1)": "NT=dHex(1)Hex(3)HexNAc(4)Sulf(1);AC=1476;CF=O(3) S dHex Hex(3) HexNAc(4);MM=1524.490684", "dHex(1)Hex(6)HexNAc(2)": "NT=dHex(1)Hex(6)HexNAc(2);AC=1477;CF=dHex(1) Hex(6) HexNAc(2);MM=1524.533595", "dHex(1)Hex(4)HexNAc(3)Pent(1)": "NT=dHex(1)Hex(4)HexNAc(3)Pent(1);AC=1478;CF=dHex(1) Hex(4) HexNAc(3) Pent(1);MM=1535.549579", "Hex(4)HexNAc(4)Sulf(1)": "NT=Hex(4)HexNAc(4)Sulf(1);AC=1479;CF=O(3) S Hex(4) HexNAc(4);MM=1540.485599", "Hex(7)HexNAc(2)": "NT=Hex(7)HexNAc(2);AC=1480;CF=Hex(7) HexNAc(2);MM=1540.52851", "dHex(2)Hex(4)HexNAc(3)": "NT=dHex(2)Hex(4)HexNAc(3);AC=1481;CF=dHex(2) Hex(4) HexNAc(3);MM=1549.56523", "Hex(5)HexNAc(3)Pent(1)": "NT=Hex(5)HexNAc(3)Pent(1);AC=1482;CF=Hex(5) HexNAc(3) Pent(1);MM=1551.544494", "Hex(4)HexNAc(3)NeuGc(1)": "NT=Hex(4)HexNAc(3)NeuGc(1);AC=1483;CF=Hex(4) HexNAc(3) NeuGc(1);MM=1564.539743", "dHex(1)Hex(5)HexNAc(3)": "NT=dHex(1)Hex(5)HexNAc(3);AC=1484;CF=dHex(1) Hex(5) HexNAc(3);MM=1565.560144", "dHex(1)Hex(3)HexNAc(4)Pent(1)": "NT=dHex(1)Hex(3)HexNAc(4)Pent(1);AC=1485;CF=dHex(1) Hex(3) HexNAc(4) Pent(1);MM=1576.576129", "Hex(3)HexNAc(5)Sulf(1)": "NT=Hex(3)HexNAc(5)Sulf(1);AC=1486;CF=O(3) S Hex(3) HexNAc(5);MM=1581.512148", "Hex(6)HexNAc(3)": "NT=Hex(6)HexNAc(3);AC=1487;CF=Hex(6) HexNAc(3);MM=1581.555059", "Hex(3)HexNAc(4)NeuAc(1)": "NT=Hex(3)HexNAc(4)NeuAc(1);AC=1488;CF=Hex(3) HexNAc(4) NeuAc;MM=1589.571378", "Hex(4)HexNAc(4)Pent(1)": "NT=Hex(4)HexNAc(4)Pent(1);AC=1489;CF=Hex(4) HexNAc(4) Pent(1);MM=1592.571043", "Hex(7)HexNAc(2)Phos(1)": "NT=Hex(7)HexNAc(2)Phos(1);AC=1490;CF=H O(3) P Hex(7) HexNAc(2);MM=1620.494841", "Hex(4)HexNAc(4)Me(2)Pent(1)": "NT=Hex(4)HexNAc(4)Me(2)Pent(1);AC=1491;CF=Hex(4) HexNAc(4) Me(2) Pent(1);MM=1620.602343", "dHex(1)Hex(3)HexNAc(3)Pent(3)": "NT=dHex(1)Hex(3)HexNAc(3)Pent(3);AC=1492;CF=Pent(3) dHex Hex(3) HexNAc(3);MM=1637.581274", "dHex(1)Hex(5)HexNAc(3)Sulf(1)": "NT=dHex(1)Hex(5)HexNAc(3)Sulf(1);AC=1493;CF=O(3) S dHex Hex(5) HexNAc(3);MM=1645.516959", "dHex(2)Hex(3)HexNAc(3)Pent(2)": "NT=dHex(2)Hex(3)HexNAc(3)Pent(2);AC=1494;CF=dHex(2) Hex(3) HexNAc(3) Pent(2);MM=1651.596924", "Hex(6)HexNAc(3)Phos(1)": "NT=Hex(6)HexNAc(3)Phos(1);AC=1495;CF=H O(3) P Hex(6) HexNAc(3);MM=1661.52139", "Hex(4)HexNAc(5)": "NT=Hex(4)HexNAc(5);AC=1496;CF=Hex(4) HexNAc(5);MM=1663.608157", "dHex(3)Hex(3)HexNAc(3)Pent(1)": "NT=dHex(3)Hex(3)HexNAc(3)Pent(1);AC=1497;CF=dHex(3) Hex(3) HexNAc(3) Pent(1);MM=1665.612574", "dHex(2)Hex(4)HexNAc(3)Pent(1)": "NT=dHex(2)Hex(4)HexNAc(3)Pent(1);AC=1498;CF=dHex(2) Hex(4) HexNAc(3) Pent(1);MM=1681.607488", "dHex(1)Hex(4)HexNAc(4)Sulf(1)": "NT=dHex(1)Hex(4)HexNAc(4)Sulf(1);AC=1499;CF=O(3) S dHex Hex(4) HexNAc(4);MM=1686.543508", "dHex(1)Hex(7)HexNAc(2)": "NT=dHex(1)Hex(7)HexNAc(2);AC=1500;CF=dHex(1) Hex(7) HexNAc(2);MM=1686.586419", "dHex(1)Hex(4)HexNAc(3)NeuAc(1)": "NT=dHex(1)Hex(4)HexNAc(3)NeuAc(1);AC=1501;CF=dHex Hex(4) HexNAc(3) NeuAc;MM=1694.602737", "Hex(7)HexNAc(2)Phos(2)": "NT=Hex(7)HexNAc(2)Phos(2);AC=1502;CF=H(2) O(6) P(2) Hex(7) HexNAc(2);MM=1700.461172", "Hex(5)HexNAc(4)Sulf(1)": "NT=Hex(5)HexNAc(4)Sulf(1);AC=1503;CF=O(3) S Hex(5) HexNAc(4);MM=1702.538423", "Hex(8)HexNAc(2)": "NT=Hex(8)HexNAc(2);AC=1504;CF=Hex(8) HexNAc(2);MM=1702.581333", "dHex(1)Hex(3)HexNAc(4)Pent(2)": "NT=dHex(1)Hex(3)HexNAc(4)Pent(2);AC=1505;CF=dHex(1) Hex(3) HexNAc(4) Pent(2);MM=1708.618387", "dHex(1)Hex(4)HexNAc(3)NeuGc(1)": "NT=dHex(1)Hex(4)HexNAc(3)NeuGc(1);AC=1506;CF=dHex Hex(4) HexNAc(3) NeuGc;MM=1710.597652", "dHex(2)Hex(3)HexNAc(4)Pent(1)": "NT=dHex(2)Hex(3)HexNAc(4)Pent(1);AC=1507;CF=dHex(2) Hex(3) HexNAc(4) Pent(1);MM=1722.634037", "dHex(1)Hex(3)HexNAc(5)Sulf(1)": "NT=dHex(1)Hex(3)HexNAc(5)Sulf(1);AC=1508;CF=O(3) S dHex Hex(3) HexNAc(5);MM=1727.570057", "dHex(1)Hex(6)HexNAc(3)": "NT=dHex(1)Hex(6)HexNAc(3);AC=1509;CF=dHex(1) Hex(6) HexNAc(3);MM=1727.612968", "dHex(1)Hex(3)HexNAc(4)NeuAc(1)": "NT=dHex(1)Hex(3)HexNAc(4)NeuAc(1);AC=1510;CF=dHex(1) Hex(3) HexNAc(4) NeuAc(1);MM=1735.629286", "dHex(3)Hex(3)HexNAc(4)": "NT=dHex(3)Hex(3)HexNAc(4);AC=1511;CF=dHex(3) Hex(3) HexNAc(4);MM=1736.649688", "dHex(1)Hex(4)HexNAc(4)Pent(1)": "NT=dHex(1)Hex(4)HexNAc(4)Pent(1);AC=1512;CF=dHex(1) Hex(4) HexNAc(4) Pent(1);MM=1738.628952", "Hex(4)HexNAc(5)Sulf(1)": "NT=Hex(4)HexNAc(5)Sulf(1);AC=1513;CF=O(3) S Hex(4) HexNAc(5);MM=1743.564972", "Hex(7)HexNAc(3)": "NT=Hex(7)HexNAc(3);AC=1514;CF=Hex(7) HexNAc(3);MM=1743.607882", "dHex(1)Hex(4)HexNAc(3)NeuAc(1)Sulf(1)": "NT=dHex(1)Hex(4)HexNAc(3)NeuAc(1)Sulf(1);AC=1515;CF=O(3) S dHex Hex(4) HexNAc(3) NeuAc;MM=1774.559552", "Hex(5)HexNAc(4)Me(2)Pent(1)": "NT=Hex(5)HexNAc(4)Me(2)Pent(1);AC=1516;CF=Hex(5) HexNAc(4) Me(2) Pent(1);MM=1782.655167", "Hex(3)HexNAc(6)Sulf(1)": "NT=Hex(3)HexNAc(6)Sulf(1);AC=1517;CF=O(3) S Hex(3) HexNAc(6);MM=1784.591521", "dHex(1)Hex(6)HexNAc(3)Sulf(1)": "NT=dHex(1)Hex(6)HexNAc(3)Sulf(1);AC=1518;CF=O(3) S dHex Hex(6) HexNAc(3);MM=1807.569782", "dHex(1)Hex(4)HexNAc(5)": "NT=dHex(1)Hex(4)HexNAc(5);AC=1519;CF=dHex(1) Hex(4) HexNAc(5);MM=1809.666066", "dHex(1)Hex(5)HexA(1)HexNAc(3)Sulf(1)": "NT=dHex(1)Hex(5)HexA(1)HexNAc(3)Sulf(1);AC=1520;CF=O(3) S dHex Hex(5) HexA HexNAc(3);MM=1821.549047", "Hex(7)HexNAc(3)Phos(1)": "NT=Hex(7)HexNAc(3)Phos(1);AC=1521;CF=H O(3) P Hex(7) HexNAc(3);MM=1823.574213", "Hex(6)HexNAc(4)Me(3)": "NT=Hex(6)HexNAc(4)Me(3);AC=1522;CF=Hex(6) HexNAc(4) Me(3);MM=1826.681382", "dHex(2)Hex(4)HexNAc(4)Sulf(1)": "NT=dHex(2)Hex(4)HexNAc(4)Sulf(1);AC=1523;CF=O(3) S dHex(2) Hex(4) HexNAc(4);MM=1832.601417", "Hex(4)HexNAc(3)NeuAc(2)": "NT=Hex(4)HexNAc(3)NeuAc(2);AC=1524;CF=Hex(4) HexNAc(3) NeuAc(2);MM=1839.640245", "dHex(1)Hex(3)HexNAc(4)Pent(3)": "NT=dHex(1)Hex(3)HexNAc(4)Pent(3);AC=1525;CF=dHex(1) Hex(3) HexNAc(4) Pent(3);MM=1840.660646", "dHex(2)Hex(5)HexNAc(3)Pent(1)": "NT=dHex(2)Hex(5)HexNAc(3)Pent(1);AC=1526;CF=dHex(2) Hex(5) HexNAc(3) Pent(1);MM=1843.660312", "dHex(1)Hex(5)HexNAc(4)Sulf(1)": "NT=dHex(1)Hex(5)HexNAc(4)Sulf(1);AC=1527;CF=O(3) S dHex Hex(5) HexNAc(4);MM=1848.596331", "dHex(2)Hex(3)HexNAc(4)Pent(2)": "NT=dHex(2)Hex(3)HexNAc(4)Pent(2);AC=1528;CF=dHex(2) Hex(3) HexNAc(4) Pent(2);MM=1854.676296", "dHex(1)Hex(5)HexNAc(3)NeuAc(1)": "NT=dHex(1)Hex(5)HexNAc(3)NeuAc(1);AC=1529;CF=dHex(1) Hex(5) HexNAc(3) NeuAc(1);MM=1856.655561", "Hex(3)HexNAc(6)Sulf(2)": "NT=Hex(3)HexNAc(6)Sulf(2);AC=1530;CF=O(6) S(2) Hex(3) HexNAc(6);MM=1864.548335", "Hex(9)HexNAc(2)": "NT=Hex(9)HexNAc(2);AC=1531;CF=Hex(9) HexNAc(2);MM=1864.634157", "Hex(4)HexNAc(6)": "NT=Hex(4)HexNAc(6);AC=1532;CF=Hex(4) HexNAc(6);MM=1866.68753", "dHex(3)Hex(3)HexNAc(4)Pent(1)": "NT=dHex(3)Hex(3)HexNAc(4)Pent(1);AC=1533;CF=dHex(3) Hex(3) HexNAc(4) Pent(1);MM=1868.691946", "dHex(1)Hex(5)HexNAc(3)NeuGc(1)": "NT=dHex(1)Hex(5)HexNAc(3)NeuGc(1);AC=1534;CF=dHex Hex(5) HexNAc(3) NeuGc;MM=1872.650475", "dHex(2)Hex(4)HexNAc(4)Pent(1)": "NT=dHex(2)Hex(4)HexNAc(4)Pent(1);AC=1535;CF=dHex(2) Hex(4) HexNAc(4) Pent(1);MM=1884.686861", "dHex(1)Hex(4)HexNAc(5)Sulf(1)": "NT=dHex(1)Hex(4)HexNAc(5)Sulf(1);AC=1536;CF=O(3) S dHex Hex(4) HexNAc(5);MM=1889.62288", "dHex(1)Hex(7)HexNAc(3)": "NT=dHex(1)Hex(7)HexNAc(3);AC=1537;CF=dHex(1) Hex(7) HexNAc(3);MM=1889.665791", "dHex(1)Hex(5)HexNAc(4)Pent(1)": "NT=dHex(1)Hex(5)HexNAc(4)Pent(1);AC=1538;CF=dHex(1) Hex(5) HexNAc(4) Pent(1);MM=1900.681776", "dHex(1)Hex(5)HexA(1)HexNAc(3)Sulf(2)": "NT=dHex(1)Hex(5)HexA(1)HexNAc(3)Sulf(2);AC=1539;CF=O(6) S(2) dHex Hex(5) HexA HexNAc(3);MM=1901.505861", "Hex(3)HexNAc(7)": "NT=Hex(3)HexNAc(7);AC=1540;CF=Hex(3) HexNAc(7);MM=1907.714079", "dHex(2)Hex(5)HexNAc(4)": "NT=dHex(2)Hex(5)HexNAc(4);AC=1541;CF=dHex(2) Hex(5) HexNAc(4);MM=1914.697426", "dHex(2)Hex(4)HexNAc(3)NeuAc(1)Sulf(1)": "NT=dHex(2)Hex(4)HexNAc(3)NeuAc(1)Sulf(1);AC=1542;CF=O(3) S dHex(2) Hex(4) HexNAc(3) NeuAc;MM=1920.617461", "dHex(1)Hex(5)HexNAc(4)Sulf(2)": "NT=dHex(1)Hex(5)HexNAc(4)Sulf(2);AC=1543;CF=O(6) S(2) dHex Hex(5) HexNAc(4);MM=1928.553146", "dHex(1)Hex(5)HexNAc(4)Me(2)Pent(1)": "NT=dHex(1)Hex(5)HexNAc(4)Me(2)Pent(1);AC=1544;CF=dHex(1) Hex(5) HexNAc(4) Me(2) Pent(1);MM=1928.713076", "Hex(5)HexNAc(4)NeuGc(1)": "NT=Hex(5)HexNAc(4)NeuGc(1);AC=1545;CF=Hex(5) HexNAc(4) NeuGc(1);MM=1929.671939", "dHex(1)Hex(3)HexNAc(6)Sulf(1)": "NT=dHex(1)Hex(3)HexNAc(6)Sulf(1);AC=1546;CF=O(3) S dHex Hex(3) HexNAc(6);MM=1930.64943", "dHex(1)Hex(6)HexNAc(4)": "NT=dHex(1)Hex(6)HexNAc(4);AC=1547;CF=dHex(1) Hex(6) HexNAc(4);MM=1930.69234", "dHex(1)Hex(5)HexNAc(3)NeuAc(1)Sulf(1)": "NT=dHex(1)Hex(5)HexNAc(3)NeuAc(1)Sulf(1);AC=1548;CF=O(3) S dHex Hex(5) HexNAc(3) NeuAc;MM=1936.612375", "Hex(7)HexNAc(4)": "NT=Hex(7)HexNAc(4);AC=1549;CF=Hex(7) HexNAc(4);MM=1946.687255", "dHex(1)Hex(5)HexNAc(3)NeuGc(1)Sulf(1)": "NT=dHex(1)Hex(5)HexNAc(3)NeuGc(1)Sulf(1);AC=1550;CF=O(3) S dHex Hex(5) HexNAc(3) NeuGc;MM=1952.60729", "Hex(4)HexNAc(5)NeuAc(1)": "NT=Hex(4)HexNAc(5)NeuAc(1);AC=1551;CF=Hex(4) HexNAc(5) NeuAc(1);MM=1954.703574", "Hex(6)HexNAc(4)Me(3)Pent(1)": "NT=Hex(6)HexNAc(4)Me(3)Pent(1);AC=1552;CF=Hex(6) HexNAc(4) Me(3) Pent(1);MM=1958.72364", "dHex(1)Hex(7)HexNAc(3)Sulf(1)": "NT=dHex(1)Hex(7)HexNAc(3)Sulf(1);AC=1553;CF=O(3) S dHex Hex(7) HexNAc(3);MM=1969.622606", "dHex(1)Hex(7)HexNAc(3)Phos(1)": "NT=dHex(1)Hex(7)HexNAc(3)Phos(1);AC=1554;CF=H O(3) P dHex Hex(7) HexNAc(3);MM=1969.632122", "dHex(1)Hex(5)HexNAc(5)": "NT=dHex(1)Hex(5)HexNAc(5);AC=1555;CF=dHex(1) Hex(5) HexNAc(5);MM=1971.718889", "dHex(1)Hex(4)HexNAc(4)NeuAc(1)Sulf(1)": "NT=dHex(1)Hex(4)HexNAc(4)NeuAc(1)Sulf(1);AC=1556;CF=O(3) S dHex Hex(4) HexNAc(4) NeuAc;MM=1977.638925", "dHex(3)Hex(4)HexNAc(4)Sulf(1)": "NT=dHex(3)Hex(4)HexNAc(4)Sulf(1);AC=1557;CF=O(3) S dHex(3) Hex(4) HexNAc(4);MM=1978.659326", "Hex(3)HexNAc(7)Sulf(1)": "NT=Hex(3)HexNAc(7)Sulf(1);AC=1558;CF=O(3) S Hex(3) HexNAc(7);MM=1987.670893", "Hex(6)HexNAc(5)": "NT=Hex(6)HexNAc(5);AC=1559;CF=Hex(6) HexNAc(5);MM=1987.713804", "Hex(5)HexNAc(4)NeuAc(1)Sulf(1)": "NT=Hex(5)HexNAc(4)NeuAc(1)Sulf(1);AC=1560;CF=O(3) S Hex(5) HexNAc(4) NeuAc;MM=1993.633839", "Hex(3)HexNAc(6)NeuAc(1)": "NT=Hex(3)HexNAc(6)NeuAc(1);AC=1561;CF=Hex(3) HexNAc(6) NeuAc(1);MM=1995.730123", "dHex(2)Hex(3)HexNAc(6)": "NT=dHex(2)Hex(3)HexNAc(6);AC=1562;CF=dHex(2) Hex(3) HexNAc(6);MM=1996.750524", "Hex(1)HexNAc(1)NeuGc(1)": "NT=Hex(1)HexNAc(1)NeuGc(1);AC=1563;CF=Hex(1) HexNAc(1) NeuGc(1);MM=672.222527", "dHex(1)Hex(2)HexNAc(1)": "NT=dHex(1)Hex(2)HexNAc(1);AC=1564;CF=dHex(1) Hex(2) HexNAc(1);MM=673.242928", "HexNAc(3)Sulf(1)": "NT=HexNAc(3)Sulf(1);AC=1565;CF=O(3) S HexNAc(3);MM=689.194932", "Hex(3)HexNAc(1)": "NT=Hex(3)HexNAc(1);AC=1566;CF=Hex(3) HexNAc;MM=689.237843", "Hex(1)HexNAc(1)Kdn(1)Sulf(1)": "NT=Hex(1)HexNAc(1)Kdn(1)Sulf(1);AC=1567;CF=O(3) S Hex HexNAc Kdn;MM=695.157878", "HexNAc(2)NeuAc(1)": "NT=HexNAc(2)NeuAc(1);AC=1568;CF=HexNAc(2) NeuAc(1);MM=697.254162", "HexNAc(1)Kdn(2)": "NT=HexNAc(1)Kdn(2);AC=1570;CF=HexNAc Kdn(2);MM=703.217108", "Hex(3)HexNAc(1)Me(1)": "NT=Hex(3)HexNAc(1)Me(1);AC=1571;CF=Hex(3) HexNAc(1) Me(1);MM=703.253493", "Hex(2)HexA(1)Pent(1)Sulf(1)": "NT=Hex(2)HexA(1)Pent(1)Sulf(1);AC=1572;CF=O(3) S Pent Hex(2) HexA;MM=712.136808", "HexNAc(2)NeuGc(1)": "NT=HexNAc(2)NeuGc(1);AC=1573;CF=HexNAc(2) NeuGc(1);MM=713.249076", "Hex(4)Phos(1)": "NT=Hex(4)Phos(1);AC=1575;CF=H O(3) P Hex(4);MM=728.177625", "Hex(1)HexNAc(1)NeuAc(1)Sulf(1)": "NT=Hex(1)HexNAc(1)NeuAc(1)Sulf(1);AC=1577;CF=O(3) S Hex HexNAc NeuAc;MM=736.184427", "Hex(1)HexA(1)HexNAc(2)": "NT=Hex(1)HexA(1)HexNAc(2);AC=1578;CF=Hex(1) HexA(1) HexNAc(2);MM=744.243657", "dHex(1)Hex(2)HexNAc(1)Sulf(1)": "NT=dHex(1)Hex(2)HexNAc(1)Sulf(1);AC=1579;CF=O(3) S dHex Hex(2) HexNAc;MM=753.199743", "dHex(1)HexNAc(3)": "NT=dHex(1)HexNAc(3);AC=1580;CF=dHex(1) HexNAc(3);MM=755.296027", "dHex(1)Hex(1)HexNAc(1)Kdn(1)": "NT=dHex(1)Hex(1)HexNAc(1)Kdn(1);AC=1581;CF=dHex Hex HexNAc Kdn;MM=761.258973", "Hex(1)HexNAc(3)": "NT=Hex(1)HexNAc(3);AC=1582;CF=Hex(1) HexNAc(3);MM=771.290941", "HexNAc(2)NeuAc(1)Sulf(1)": "NT=HexNAc(2)NeuAc(1)Sulf(1);AC=1583;CF=O(3) S HexNAc(2) NeuAc;MM=777.210976", "dHex(2)Hex(3)": "NT=dHex(2)Hex(3);AC=1584;CF=dHex(2) Hex(3);MM=778.274288", "Hex(2)HexA(1)HexNAc(1)Sulf(1)": "NT=Hex(2)HexA(1)HexNAc(1)Sulf(1);AC=1585;CF=O(3) S Hex(2) HexA HexNAc;MM=783.173922", "dHex(2)Hex(2)HexA(1)": "NT=dHex(2)Hex(2)HexA(1);AC=1586;CF=dHex(2) Hex(2) HexA(1);MM=792.253553", "dHex(1)Hex(1)HexNAc(2)Sulf(1)": "NT=dHex(1)Hex(1)HexNAc(2)Sulf(1);AC=1587;CF=O(3) S dHex Hex HexNAc(2);MM=794.226292", "dHex(1)Hex(1)HexNAc(1)NeuAc(1)": "NT=dHex(1)Hex(1)HexNAc(1)NeuAc(1);AC=1588;CF=dHex(1) Hex(1) HexNAc(1) NeuAc(1);MM=802.285522", "Hex(2)HexNAc(2)Sulf(1)": "NT=Hex(2)HexNAc(2)Sulf(1);AC=1589;CF=O(3) S Hex(2) HexNAc(2);MM=810.221207", "Hex(5)": "NT=Hex(5);AC=1590;CF=Hex(5);MM=810.264117", "HexNAc(4)": "NT=HexNAc(4);AC=1591;CF=HexNAc(4);MM=812.31749", "HexNAc(1)NeuGc(2)": "NT=HexNAc(1)NeuGc(2);AC=1592;CF=HexNAc(1) NeuGc(2);MM=817.260035", "dHex(1)Hex(1)HexNAc(1)NeuGc(1)": "NT=dHex(1)Hex(1)HexNAc(1)NeuGc(1);AC=1593;CF=dHex Hex HexNAc NeuGc;MM=818.280436", "dHex(2)Hex(2)HexNAc(1)": "NT=dHex(2)Hex(2)HexNAc(1);AC=1594;CF=dHex(2) Hex(2) HexNAc(1);MM=819.300837", "Hex(2)HexNAc(1)NeuGc(1)": "NT=Hex(2)HexNAc(1)NeuGc(1);AC=1595;CF=Hex(2) HexNAc(1) NeuGc(1);MM=834.275351", "dHex(1)Hex(3)HexNAc(1)": "NT=dHex(1)Hex(3)HexNAc(1);AC=1596;CF=dHex(1) Hex(3) HexNAc(1);MM=835.295752", "dHex(1)Hex(2)HexA(1)HexNAc(1)": "NT=dHex(1)Hex(2)HexA(1)HexNAc(1);AC=1597;CF=dHex(1) Hex(2) HexA(1) HexNAc(1);MM=849.275017", "Hex(1)HexNAc(3)Sulf(1)": "NT=Hex(1)HexNAc(3)Sulf(1);AC=1598;CF=O(3) S Hex HexNAc(3);MM=851.247756", "Hex(4)HexNAc(1)": "NT=Hex(4)HexNAc(1);AC=1599;CF=Hex(4) HexNAc;MM=851.290667", "Hex(1)HexNAc(2)NeuAc(1)": "NT=Hex(1)HexNAc(2)NeuAc(1);AC=1600;CF=Hex(1) HexNAc(2) NeuAc(1);MM=859.306985", "Hex(1)HexNAc(2)NeuGc(1)": "NT=Hex(1)HexNAc(2)NeuGc(1);AC=1602;CF=Hex(1) HexNAc(2) NeuGc(1);MM=875.3019", "Hex(5)Phos(1)": "NT=Hex(5)Phos(1);AC=1604;CF=H O(3) P Hex(5);MM=890.230448", "dHex(2)Hex(1)HexNAc(1)Kdn(1)": "NT=dHex(2)Hex(1)HexNAc(1)Kdn(1);AC=1606;CF=dHex(2) Hex HexNAc Kdn;MM=907.316881", "dHex(1)Hex(3)HexNAc(1)Sulf(1)": "NT=dHex(1)Hex(3)HexNAc(1)Sulf(1);AC=1607;CF=O(3) S dHex Hex(3) HexNAc;MM=915.252567", "dHex(1)Hex(1)HexNAc(3)": "NT=dHex(1)Hex(1)HexNAc(3);AC=1608;CF=dHex(1) Hex(1) HexNAc(3);MM=917.34885", "dHex(1)Hex(2)HexA(1)HexNAc(1)Sulf(1)": "NT=dHex(1)Hex(2)HexA(1)HexNAc(1)Sulf(1);AC=1609;CF=O(3) S dHex Hex(2) HexA HexNAc;MM=929.231831", "Hex(2)HexNAc(3)": "NT=Hex(2)HexNAc(3);AC=1610;CF=Hex(2) HexNAc(3);MM=933.343765", "Hex(1)HexNAc(2)NeuAc(1)Sulf(1)": "NT=Hex(1)HexNAc(2)NeuAc(1)Sulf(1);AC=1611;CF=O(3) S Hex HexNAc(2) NeuAc;MM=939.2638", "dHex(2)Hex(4)": "NT=dHex(2)Hex(4);AC=1612;CF=dHex(2) Hex(4);MM=940.327112", "dHex(2)HexNAc(2)Kdn(1)": "NT=dHex(2)HexNAc(2)Kdn(1);AC=1614;CF=dHex(2) HexNAc(2) Kdn;MM=948.34343", "dHex(1)Hex(2)HexNAc(2)Sulf(1)": "NT=dHex(1)Hex(2)HexNAc(2)Sulf(1);AC=1615;CF=O(3) S dHex Hex(2) HexNAc(2);MM=956.279116", "dHex(1)HexNAc(4)": "NT=dHex(1)HexNAc(4);AC=1616;CF=dHex(1) HexNAc(4);MM=958.375399", "Hex(1)HexNAc(1)NeuAc(1)NeuGc(1)": "NT=Hex(1)HexNAc(1)NeuAc(1)NeuGc(1);AC=1617;CF=Hex(1) HexNAc(1) NeuAc(1) NeuGc(1);MM=963.317944", "dHex(1)Hex(1)HexNAc(2)Kdn(1)": "NT=dHex(1)Hex(1)HexNAc(2)Kdn(1);AC=1618;CF=dHex Hex HexNAc(2) Kdn;MM=964.338345", "Hex(1)HexNAc(1)NeuGc(2)": "NT=Hex(1)HexNAc(1)NeuGc(2);AC=1619;CF=Hex(1) HexNAc(1) NeuGc(2);MM=979.312859", "Hex(1)HexNAc(1)NeuAc(2)Ac(1)": "NT=Hex(1)HexNAc(1)NeuAc(2)Ac(1);AC=1620;CF=Ac Hex HexNAc NeuAc(2);MM=989.333594", "dHex(2)Hex(2)HexA(1)HexNAc(1)": "NT=dHex(2)Hex(2)HexA(1)HexNAc(1);AC=1621;CF=dHex(2) Hex(2) HexA(1) HexNAc(1);MM=995.332925", "dHex(1)Hex(1)HexNAc(3)Sulf(1)": "NT=dHex(1)Hex(1)HexNAc(3)Sulf(1);AC=1622;CF=O(3) S dHex Hex HexNAc(3);MM=997.305665", "Hex(2)HexA(1)NeuAc(1)Pent(1)Sulf(1)": "NT=Hex(2)HexA(1)NeuAc(1)Pent(1)Sulf(1);AC=1623;CF=O(3) S Pent Hex(2) HexA NeuAc;MM=1003.232225", "dHex(1)Hex(1)HexNAc(2)NeuAc(1)": "NT=dHex(1)Hex(1)HexNAc(2)NeuAc(1);AC=1624;CF=dHex(1) Hex(1) HexNAc(2) NeuAc(1);MM=1005.364894", "dHex(1)Hex(3)HexA(1)HexNAc(1)": "NT=dHex(1)Hex(3)HexA(1)HexNAc(1);AC=1625;CF=dHex(1) Hex(3) HexA(1) HexNAc(1);MM=1011.32784", "Hex(2)HexNAc(3)Sulf(1)": "NT=Hex(2)HexNAc(3)Sulf(1);AC=1626;CF=O(3) S Hex(2) HexNAc(3);MM=1013.300579", "Hex(5)HexNAc(1)": "NT=Hex(5)HexNAc(1);AC=1627;CF=Hex(5) HexNAc;MM=1013.34349", "HexNAc(5)": "NT=HexNAc(5);AC=1628;CF=HexNAc(5);MM=1015.396863", "Hex(1)HexNAc(1)NeuAc(2)Ac(2)": "NT=Hex(1)HexNAc(1)NeuAc(2)Ac(2);AC=1630;CF=Ac(2) Hex HexNAc NeuAc(2);MM=1031.344159", "Hex(2)HexNAc(2)NeuGc(1)": "NT=Hex(2)HexNAc(2)NeuGc(1);AC=1631;CF=Hex(2) HexNAc(2) NeuGc(1);MM=1037.354723", "Hex(5)Phos(3)": "NT=Hex(5)Phos(3);AC=1632;CF=H(3) O(9) P(3) Hex(5);MM=1050.16311", "Hex(6)Phos(1)": "NT=Hex(6)Phos(1);AC=1633;CF=H O(3) P Hex(6);MM=1052.283272", "dHex(1)Hex(2)HexA(1)HexNAc(2)": "NT=dHex(1)Hex(2)HexA(1)HexNAc(2);AC=1634;CF=dHex(1) Hex(2) HexA(1) HexNAc(2);MM=1052.354389", "dHex(2)Hex(3)HexNAc(1)Sulf(1)": "NT=dHex(2)Hex(3)HexNAc(1)Sulf(1);AC=1635;CF=O(3) S dHex(2) Hex(3) HexNAc;MM=1061.310475", "Hex(1)HexNAc(3)NeuAc(1)": "NT=Hex(1)HexNAc(3)NeuAc(1);AC=1636;CF=Hex(1) HexNAc(3) NeuAc(1);MM=1062.386358", "dHex(2)Hex(1)HexNAc(3)": "NT=dHex(2)Hex(1)HexNAc(3);AC=1637;CF=dHex(2) Hex(1) HexNAc(3);MM=1063.406759", "Hex(1)HexNAc(3)NeuGc(1)": "NT=Hex(1)HexNAc(3)NeuGc(1);AC=1638;CF=Hex(1) HexNAc(3) NeuGc(1);MM=1078.381273", "dHex(1)Hex(1)HexNAc(2)NeuAc(1)Sulf(1)": "NT=dHex(1)Hex(1)HexNAc(2)NeuAc(1)Sulf(1);AC=1639;CF=O(3) S dHex Hex HexNAc(2) NeuAc;MM=1085.321709", "dHex(1)Hex(3)HexA(1)HexNAc(1)Sulf(1)": "NT=dHex(1)Hex(3)HexA(1)HexNAc(1)Sulf(1);AC=1640;CF=O(3) S dHex Hex(3) HexA HexNAc;MM=1091.284655", "dHex(1)Hex(1)HexA(1)HexNAc(3)": "NT=dHex(1)Hex(1)HexA(1)HexNAc(3);AC=1641;CF=dHex(1) Hex(1) HexA(1) HexNAc(3);MM=1093.380938", "Hex(2)HexNAc(2)NeuAc(1)Sulf(1)": "NT=Hex(2)HexNAc(2)NeuAc(1)Sulf(1);AC=1642;CF=O(3) S Hex(2) HexNAc(2) NeuAc;MM=1101.316623", "dHex(2)Hex(2)HexNAc(2)Sulf(1)": "NT=dHex(2)Hex(2)HexNAc(2)Sulf(1);AC=1643;CF=O(3) S dHex(2) Hex(2) HexNAc(2);MM=1102.337025", "dHex(2)Hex(1)HexNAc(2)Kdn(1)": "NT=dHex(2)Hex(1)HexNAc(2)Kdn(1);AC=1644;CF=dHex(2) Hex HexNAc(2) Kdn;MM=1110.396254", "dHex(1)Hex(1)HexNAc(4)": "NT=dHex(1)Hex(1)HexNAc(4);AC=1645;CF=dHex(1) Hex(1) HexNAc(4);MM=1120.428223", "Hex(2)HexNAc(4)": "NT=Hex(2)HexNAc(4);AC=1646;CF=Hex(2) HexNAc(4);MM=1136.423137", "Hex(2)HexNAc(1)NeuGc(2)": "NT=Hex(2)HexNAc(1)NeuGc(2);AC=1647;CF=Hex(2) HexNAc(1) NeuGc(2);MM=1141.365682", "dHex(2)Hex(4)HexNAc(1)": "NT=dHex(2)Hex(4)HexNAc(1);AC=1648;CF=dHex(2) Hex(4) HexNAc(1);MM=1143.406484", "Hex(1)HexNAc(2)NeuAc(2)": "NT=Hex(1)HexNAc(2)NeuAc(2);AC=1649;CF=Hex(1) HexNAc(2) NeuAc(2);MM=1150.402402", "dHex(2)Hex(1)HexNAc(2)NeuAc(1)": "NT=dHex(2)Hex(1)HexNAc(2)NeuAc(1);AC=1650;CF=dHex(2) Hex(1) HexNAc(2) NeuAc(1);MM=1151.422803", "dHex(1)Hex(2)HexNAc(3)Sulf(1)": "NT=dHex(1)Hex(2)HexNAc(3)Sulf(1);AC=1651;CF=O(3) S dHex Hex(2) HexNAc(3);MM=1159.358488", "dHex(1)HexNAc(5)": "NT=dHex(1)HexNAc(5);AC=1652;CF=dHex(1) HexNAc(5);MM=1161.454772", "dHex(2)Hex(1)HexNAc(2)NeuGc(1)": "NT=dHex(2)Hex(1)HexNAc(2)NeuGc(1);AC=1653;CF=dHex(2) Hex HexNAc(2) NeuGc;MM=1167.417718", "dHex(3)Hex(2)HexNAc(2)": "NT=dHex(3)Hex(2)HexNAc(2);AC=1654;CF=dHex(3) Hex(2) HexNAc(2);MM=1168.438119", "Hex(3)HexNAc(3)Sulf(1)": "NT=Hex(3)HexNAc(3)Sulf(1);AC=1655;CF=O(3) S Hex(3) HexNAc(3);MM=1175.353403", "dHex(2)Hex(2)HexNAc(2)Sulf(2)": "NT=dHex(2)Hex(2)HexNAc(2)Sulf(2);AC=1656;CF=O(6) S(2) dHex(2) Hex(2) HexNAc(2);MM=1182.293839", "dHex(1)Hex(2)HexNAc(2)NeuGc(1)": "NT=dHex(1)Hex(2)HexNAc(2)NeuGc(1);AC=1657;CF=dHex Hex(2) HexNAc(2) NeuGc;MM=1183.412632", "dHex(1)Hex(1)HexNAc(3)NeuAc(1)": "NT=dHex(1)Hex(1)HexNAc(3)NeuAc(1);AC=1658;CF=dHex Hex HexNAc(3) NeuAc;MM=1208.444267", "Hex(6)Phos(3)": "NT=Hex(6)Phos(3);AC=1659;CF=H(3) O(9) P(3) Hex(6);MM=1212.215934", "dHex(1)Hex(3)HexA(1)HexNAc(2)": "NT=dHex(1)Hex(3)HexA(1)HexNAc(2);AC=1660;CF=dHex(1) Hex(3) HexA(1) HexNAc(2);MM=1214.407213", "dHex(1)Hex(1)HexNAc(3)NeuGc(1)": "NT=dHex(1)Hex(1)HexNAc(3)NeuGc(1);AC=1661;CF=dHex Hex HexNAc(3) NeuGc;MM=1224.439181", "Hex(1)HexNAc(2)NeuAc(2)Sulf(1)": "NT=Hex(1)HexNAc(2)NeuAc(2)Sulf(1);AC=1662;CF=O(3) S Hex HexNAc(2) NeuAc(2);MM=1230.359217", "dHex(2)Hex(3)HexA(1)HexNAc(1)Sulf(1)": "NT=dHex(2)Hex(3)HexA(1)HexNAc(1)Sulf(1);AC=1663;CF=O(3) S dHex(2) Hex(3) HexA HexNAc;MM=1237.342563", "Hex(1)HexNAc(1)NeuAc(3)": "NT=Hex(1)HexNAc(1)NeuAc(3);AC=1664;CF=Hex(1) HexNAc(1) NeuAc(3);MM=1238.418446", "Hex(2)HexNAc(3)NeuGc(1)": "NT=Hex(2)HexNAc(3)NeuGc(1);AC=1665;CF=Hex(2) HexNAc(3) NeuGc(1);MM=1240.434096", "dHex(1)Hex(2)HexNAc(2)NeuAc(1)Sulf(1)": "NT=dHex(1)Hex(2)HexNAc(2)NeuAc(1)Sulf(1);AC=1666;CF=O(3) S dHex Hex(2) HexNAc(2) NeuAc;MM=1247.374532", "dHex(3)Hex(1)HexNAc(2)Kdn(1)": "NT=dHex(3)Hex(1)HexNAc(2)Kdn(1);AC=1667;CF=dHex(3) Hex HexNAc(2) Kdn;MM=1256.454163", "dHex(2)Hex(3)HexNAc(2)Sulf(1)": "NT=dHex(2)Hex(3)HexNAc(2)Sulf(1);AC=1668;CF=O(3) S dHex(2) Hex(3) HexNAc(2);MM=1264.389848", "dHex(2)Hex(2)HexNAc(2)Kdn(1)": "NT=dHex(2)Hex(2)HexNAc(2)Kdn(1);AC=1669;CF=dHex(2) Hex(2) HexNAc(2) Kdn;MM=1272.449077", "dHex(2)Hex(2)HexA(1)HexNAc(2)Sulf(1)": "NT=dHex(2)Hex(2)HexA(1)HexNAc(2)Sulf(1);AC=1670;CF=O(3) S dHex(2) Hex(2) HexA HexNAc(2);MM=1278.369113", "dHex(1)Hex(2)HexNAc(4)": "NT=dHex(1)Hex(2)HexNAc(4);AC=1671;CF=dHex Hex(2) HexNAc(4);MM=1282.481046", "Hex(1)HexNAc(1)NeuGc(3)": "NT=Hex(1)HexNAc(1)NeuGc(3);AC=1672;CF=Hex(1) HexNAc(1) NeuGc(3);MM=1286.40319", "dHex(1)Hex(1)HexNAc(3)NeuAc(1)Sulf(1)": "NT=dHex(1)Hex(1)HexNAc(3)NeuAc(1)Sulf(1);AC=1673;CF=O(3) S dHex Hex HexNAc(3) NeuAc;MM=1288.401081", "dHex(1)Hex(3)HexA(1)HexNAc(2)Sulf(1)": "NT=dHex(1)Hex(3)HexA(1)HexNAc(2)Sulf(1);AC=1674;CF=O(3) S dHex Hex(3) HexA HexNAc(2);MM=1294.364027", "dHex(1)Hex(1)HexNAc(2)NeuAc(2)": "NT=dHex(1)Hex(1)HexNAc(2)NeuAc(2);AC=1675;CF=dHex(1) Hex(1) HexNAc(2) NeuAc(2);MM=1296.460311", "dHex(3)HexNAc(3)Kdn(1)": "NT=dHex(3)HexNAc(3)Kdn(1);AC=1676;CF=dHex(3) HexNAc(3) Kdn;MM=1297.480712", "Hex(2)HexNAc(3)NeuAc(1)Sulf(1)": "NT=Hex(2)HexNAc(3)NeuAc(1)Sulf(1);AC=1678;CF=O(3) S Hex(2) HexNAc(3) NeuAc;MM=1304.395996", "dHex(2)Hex(2)HexNAc(3)Sulf(1)": "NT=dHex(2)Hex(2)HexNAc(3)Sulf(1);AC=1679;CF=O(3) S dHex(2) Hex(2) HexNAc(3);MM=1305.416397", "dHex(2)HexNAc(5)": "NT=dHex(2)HexNAc(5);AC=1680;CF=dHex(2) HexNAc(5);MM=1307.512681", "Hex(2)HexNAc(2)NeuAc(2)": "NT=Hex(2)HexNAc(2)NeuAc(2);AC=1681;CF=Hex(2) HexNAc(2) NeuAc(2);MM=1312.455225", "dHex(2)Hex(2)HexNAc(2)NeuAc(1)": "NT=dHex(2)Hex(2)HexNAc(2)NeuAc(1);AC=1682;CF=dHex(2) Hex(2) HexNAc(2) NeuAc;MM=1313.475627", "dHex(1)Hex(3)HexNAc(3)Sulf(1)": "NT=dHex(1)Hex(3)HexNAc(3)Sulf(1);AC=1683;CF=O(3) S dHex Hex(3) HexNAc(3);MM=1321.411312", "dHex(2)Hex(2)HexNAc(2)NeuGc(1)": "NT=dHex(2)Hex(2)HexNAc(2)NeuGc(1);AC=1684;CF=dHex(2) Hex(2) HexNAc(2) NeuGc;MM=1329.470541", "Hex(2)HexNAc(5)": "NT=Hex(2)HexNAc(5);AC=1685;CF=Hex(2) HexNAc(5);MM=1339.50251", "dHex(1)Hex(3)HexNAc(2)NeuGc(1)": "NT=dHex(1)Hex(3)HexNAc(2)NeuGc(1);AC=1686;CF=dHex(1) Hex(3) HexNAc(2) NeuGc(1);MM=1345.465456", "Hex(1)HexNAc(3)NeuAc(2)": "NT=Hex(1)HexNAc(3)NeuAc(2);AC=1687;CF=Hex(1) HexNAc(3) NeuAc(2);MM=1353.481775", "dHex(1)Hex(2)HexNAc(3)NeuAc(1)": "NT=dHex(1)Hex(2)HexNAc(3)NeuAc(1);AC=1688;CF=dHex(1) Hex(2) HexNAc(3) NeuAc(1);MM=1370.49709", "dHex(3)Hex(2)HexNAc(3)": "NT=dHex(3)Hex(2)HexNAc(3);AC=1689;CF=dHex(3) Hex(2) HexNAc(3);MM=1371.517491", "Hex(7)Phos(3)": "NT=Hex(7)Phos(3);AC=1690;CF=H(3) O(9) P(3) Hex(7);MM=1374.268757", "dHex(1)Hex(4)HexA(1)HexNAc(2)": "NT=dHex(1)Hex(4)HexA(1)HexNAc(2);AC=1691;CF=dHex(1) Hex(4) HexA(1) HexNAc(2);MM=1376.460036", "Hex(3)HexNAc(3)NeuAc(1)": "NT=Hex(3)HexNAc(3)NeuAc(1);AC=1692;CF=Hex(3) HexNAc(3) NeuAc;MM=1386.492005", "dHex(1)Hex(3)HexA(2)HexNAc(2)": "NT=dHex(1)Hex(3)HexA(2)HexNAc(2);AC=1693;CF=dHex(1) Hex(3) HexA(2) HexNAc(2);MM=1390.439301", "Hex(2)HexNAc(2)NeuAc(2)Sulf(1)": "NT=Hex(2)HexNAc(2)NeuAc(2)Sulf(1);AC=1694;CF=O(3) S Hex(2) HexNAc(2) NeuAc(2);MM=1392.41204", "dHex(2)Hex(2)HexNAc(2)NeuAc(1)Sulf(1)": "NT=dHex(2)Hex(2)HexNAc(2)NeuAc(1)Sulf(1);AC=1695;CF=O(3) S dHex(2) Hex(2) HexNAc(2) NeuAc;MM=1393.432441", "Hex(3)HexNAc(3)NeuGc(1)": "NT=Hex(3)HexNAc(3)NeuGc(1);AC=1696;CF=Hex(3) HexNAc(3) NeuGc(1);MM=1402.48692", "dHex(4)Hex(1)HexNAc(2)Kdn(1)": "NT=dHex(4)Hex(1)HexNAc(2)Kdn(1);AC=1697;CF=dHex(4) Hex HexNAc(2) Kdn;MM=1402.512072", "dHex(3)Hex(2)HexNAc(2)Kdn(1)": "NT=dHex(3)Hex(2)HexNAc(2)Kdn(1);AC=1698;CF=dHex(3) Hex(2) HexNAc(2) Kdn;MM=1418.506986", "dHex(3)Hex(2)HexA(1)HexNAc(2)Sulf(1)": "NT=dHex(3)Hex(2)HexA(1)HexNAc(2)Sulf(1);AC=1699;CF=O(3) S dHex(3) Hex(2) HexA HexNAc(2);MM=1424.427021", "Hex(2)HexNAc(4)NeuAc(1)": "NT=Hex(2)HexNAc(4)NeuAc(1);AC=1700;CF=Hex(2) HexNAc(4) NeuAc(1);MM=1427.518554", "dHex(2)Hex(2)HexNAc(4)": "NT=dHex(2)Hex(2)HexNAc(4);AC=1701;CF=dHex(2) Hex(2) HexNAc(4);MM=1428.538955", "dHex(2)Hex(3)HexA(1)HexNAc(2)Sulf(1)": "NT=dHex(2)Hex(3)HexA(1)HexNAc(2)Sulf(1);AC=1702;CF=O(3) S dHex(2) Hex(3) HexA HexNAc(2);MM=1440.421936", "dHex(4)HexNAc(3)Kdn(1)": "NT=dHex(4)HexNAc(3)Kdn(1);AC=1703;CF=dHex(4) HexNAc(3) Kdn;MM=1443.538621", "Hex(2)HexNAc(1)NeuGc(3)": "NT=Hex(2)HexNAc(1)NeuGc(3);AC=1705;CF=Hex(2) HexNAc(1) NeuGc(3);MM=1448.456013", "dHex(4)Hex(1)HexNAc(1)Kdn(2)": "NT=dHex(4)Hex(1)HexNAc(1)Kdn(2);AC=1706;CF=dHex(4) Hex HexNAc Kdn(2);MM=1449.501567", "dHex(1)Hex(2)HexNAc(3)NeuAc(1)Sulf(1)": "NT=dHex(1)Hex(2)HexNAc(3)NeuAc(1)Sulf(1);AC=1707;CF=O(3) S dHex Hex(2) HexNAc(3) NeuAc;MM=1450.453905", "dHex(1)Hex(2)HexNAc(2)NeuAc(2)": "NT=dHex(1)Hex(2)HexNAc(2)NeuAc(2);AC=1708;CF=dHex(1) Hex(2) HexNAc(2) NeuAc(2);MM=1458.513134", "dHex(3)Hex(1)HexNAc(3)Kdn(1)": "NT=dHex(3)Hex(1)HexNAc(3)Kdn(1);AC=1709;CF=dHex(3) Hex HexNAc(3) Kdn;MM=1459.533535", "Hex(3)HexNAc(3)NeuAc(1)Sulf(1)": "NT=Hex(3)HexNAc(3)NeuAc(1)Sulf(1);AC=1711;CF=O(3) S Hex(3) HexNAc(3) NeuAc;MM=1466.44882", "Hex(3)HexNAc(2)NeuAc(2)": "NT=Hex(3)HexNAc(2)NeuAc(2);AC=1712;CF=Hex(3) HexNAc(2) NeuAc(2);MM=1474.508049", "Hex(3)HexNAc(3)NeuGc(1)Sulf(1)": "NT=Hex(3)HexNAc(3)NeuGc(1)Sulf(1);AC=1713;CF=O(3) S Hex(3) HexNAc(3) NeuGc;MM=1482.443734", "dHex(1)Hex(2)HexNAc(2)NeuGc(2)": "NT=dHex(1)Hex(2)HexNAc(2)NeuGc(2);AC=1714;CF=dHex(1) Hex(2) HexNAc(2) NeuGc(2);MM=1490.502964", "dHex(2)Hex(3)HexNAc(2)NeuGc(1)": "NT=dHex(2)Hex(3)HexNAc(2)NeuGc(1);AC=1715;CF=dHex(2) Hex(3) HexNAc(2) NeuGc;MM=1491.523365", "dHex(1)Hex(3)HexA(1)HexNAc(3)Sulf(1)": "NT=dHex(1)Hex(3)HexA(1)HexNAc(3)Sulf(1);AC=1716;CF=O(3) S dHex Hex(3) HexA HexNAc(3);MM=1497.4434", "Hex(2)HexNAc(3)NeuAc(2)": "NT=Hex(2)HexNAc(3)NeuAc(2);AC=1717;CF=Hex(2) HexNAc(3) NeuAc(2);MM=1515.534598", "dHex(2)Hex(2)HexNAc(3)NeuAc(1)": "NT=dHex(2)Hex(2)HexNAc(3)NeuAc(1);AC=1718;CF=dHex(2) Hex(2) HexNAc(3) NeuAc(1);MM=1516.554999", "dHex(4)Hex(2)HexNAc(3)": "NT=dHex(4)Hex(2)HexNAc(3);AC=1719;CF=dHex(4) Hex(2) HexNAc(3);MM=1517.5754", "Hex(2)HexNAc(3)NeuAc(1)NeuGc(1)": "NT=Hex(2)HexNAc(3)NeuAc(1)NeuGc(1);AC=1720;CF=Hex(2) HexNAc(3) NeuAc(1) NeuGc(1);MM=1531.529513", "dHex(2)Hex(2)HexNAc(3)NeuGc(1)": "NT=dHex(2)Hex(2)HexNAc(3)NeuGc(1);AC=1721;CF=dHex(2) Hex(2) HexNAc(3) NeuGc;MM=1532.549914", "dHex(3)Hex(3)HexNAc(3)": "NT=dHex(3)Hex(3)HexNAc(3);AC=1722;CF=dHex(3) Hex(3) HexNAc(3);MM=1533.570315", "Hex(8)Phos(3)": "NT=Hex(8)Phos(3);AC=1723;CF=H(3) O(9) P(3) Hex(8);MM=1536.321581", "dHex(1)Hex(2)HexNAc(2)NeuAc(2)Sulf(1)": "NT=dHex(1)Hex(2)HexNAc(2)NeuAc(2)Sulf(1);AC=1724;CF=O(3) S dHex Hex(2) HexNAc(2) NeuAc(2);MM=1538.469949", "Hex(2)HexNAc(3)NeuGc(2)": "NT=Hex(2)HexNAc(3)NeuGc(2);AC=1725;CF=Hex(2) HexNAc(3) NeuGc(2);MM=1547.524427", "dHex(4)Hex(2)HexNAc(2)Kdn(1)": "NT=dHex(4)Hex(2)HexNAc(2)Kdn(1);AC=1726;CF=dHex(4) Hex(2) HexNAc(2) Kdn;MM=1564.564895", "dHex(1)Hex(2)HexNAc(4)NeuAc(1)": "NT=dHex(1)Hex(2)HexNAc(4)NeuAc(1);AC=1727;CF=dHex(1) Hex(2) HexNAc(4) NeuAc(1);MM=1573.576463", "dHex(3)Hex(2)HexNAc(4)": "NT=dHex(3)Hex(2)HexNAc(4);AC=1728;CF=dHex(3) Hex(2) HexNAc(4);MM=1574.596864", "Hex(1)HexNAc(1)NeuGc(4)": "NT=Hex(1)HexNAc(1)NeuGc(4);AC=1729;CF=Hex(1) HexNAc(1) NeuGc(4);MM=1593.493521", "dHex(4)Hex(1)HexNAc(3)Kdn(1)": "NT=dHex(4)Hex(1)HexNAc(3)Kdn(1);AC=1730;CF=dHex(4) Hex HexNAc(3) Kdn;MM=1605.591444", "Hex(4)HexNAc(4)Sulf(2)": "NT=Hex(4)HexNAc(4)Sulf(2);AC=1732;CF=O(6) S(2) Hex(4) HexNAc(4);MM=1620.442414", "dHex(3)Hex(2)HexNAc(3)Kdn(1)": "NT=dHex(3)Hex(2)HexNAc(3)Kdn(1);AC=1733;CF=dHex(3) Hex(2) HexNAc(3) Kdn;MM=1621.586359", "dHex(2)Hex(2)HexNAc(5)": "NT=dHex(2)Hex(2)HexNAc(5);AC=1735;CF=dHex(2) Hex(2) HexNAc(5);MM=1631.618328", "dHex(2)Hex(3)HexA(1)HexNAc(3)Sulf(1)": "NT=dHex(2)Hex(3)HexA(1)HexNAc(3)Sulf(1);AC=1736;CF=O(3) S dHex(2) Hex(3) HexA HexNAc(3);MM=1643.501309", "dHex(1)Hex(4)HexA(1)HexNAc(3)Sulf(1)": "NT=dHex(1)Hex(4)HexA(1)HexNAc(3)Sulf(1);AC=1737;CF=O(3) S dHex Hex(4) HexA HexNAc(3);MM=1659.496223", "Hex(3)HexNAc(3)NeuAc(2)": "NT=Hex(3)HexNAc(3)NeuAc(2);AC=1738;CF=Hex(3) HexNAc(3) NeuAc(2);MM=1677.587422", "dHex(2)Hex(3)HexNAc(3)NeuAc(1)": "NT=dHex(2)Hex(3)HexNAc(3)NeuAc(1);AC=1739;CF=dHex(2) Hex(3) HexNAc(3) NeuAc;MM=1678.607823", "dHex(4)Hex(3)HexNAc(3)": "NT=dHex(4)Hex(3)HexNAc(3);AC=1740;CF=dHex(4) Hex(3) HexNAc(3);MM=1679.628224", "Hex(9)Phos(3)": "NT=Hex(9)Phos(3);AC=1742;CF=H(3) O(9) P(3) Hex(9);MM=1698.374404", "dHex(2)HexNAc(7)": "NT=dHex(2)HexNAc(7);AC=1743;CF=dHex(2) HexNAc(7);MM=1713.671426", "Hex(2)HexNAc(1)NeuGc(4)": "NT=Hex(2)HexNAc(1)NeuGc(4);AC=1744;CF=Hex(2) HexNAc(1) NeuGc(4);MM=1755.546345", "Hex(3)HexNAc(3)NeuAc(2)Sulf(1)": "NT=Hex(3)HexNAc(3)NeuAc(2)Sulf(1);AC=1745;CF=O(3) S Hex(3) HexNAc(3) NeuAc(2);MM=1757.544236", "dHex(2)Hex(3)HexNAc(5)": "NT=dHex(2)Hex(3)HexNAc(5);AC=1746;CF=dHex(2) Hex(3) HexNAc(5);MM=1793.671151", "dHex(1)Hex(2)HexNAc(2)NeuGc(3)": "NT=dHex(1)Hex(2)HexNAc(2)NeuGc(3);AC=1747;CF=dHex(1) Hex(2) HexNAc(2) NeuGc(3);MM=1797.593295", "dHex(2)Hex(4)HexA(1)HexNAc(3)Sulf(1)": "NT=dHex(2)Hex(4)HexA(1)HexNAc(3)Sulf(1);AC=1748;CF=O(3) S dHex(2) Hex(4) HexA HexNAc(3);MM=1805.554132", "Hex(2)HexNAc(3)NeuAc(3)": "NT=Hex(2)HexNAc(3)NeuAc(3);AC=1749;CF=Hex(2) HexNAc(3) NeuAc(3);MM=1806.630015", "dHex(1)Hex(3)HexNAc(3)NeuAc(2)": "NT=dHex(1)Hex(3)HexNAc(3)NeuAc(2);AC=1750;CF=dHex(1) Hex(3) HexNAc(3) NeuAc(2);MM=1823.64533", "dHex(3)Hex(3)HexNAc(3)NeuAc(1)": "NT=dHex(3)Hex(3)HexNAc(3)NeuAc(1);AC=1751;CF=dHex(3) Hex(3) HexNAc(3) NeuAc(1);MM=1824.665732", "Hex(2)HexNAc(3)NeuGc(3)": "NT=Hex(2)HexNAc(3)NeuGc(3);AC=1752;CF=Hex(2) HexNAc(3) NeuGc(3);MM=1854.614759", "Hex(10)Phos(3)": "NT=Hex(10)Phos(3);AC=1753;CF=H(3) O(9) P(3) Hex(10);MM=1860.427228", "dHex(1)Hex(2)HexNAc(4)NeuAc(2)": "NT=dHex(1)Hex(2)HexNAc(4)NeuAc(2);AC=1754;CF=dHex(1) Hex(2) HexNAc(4) NeuAc(2);MM=1864.67188", "Hex(1)HexNAc(1)NeuGc(5)": "NT=Hex(1)HexNAc(1)NeuGc(5);AC=1755;CF=Hex(1) HexNAc(1) NeuGc(5);MM=1900.583852", "Hex(4)HexNAc(4)NeuAc(1)Sulf(2)": "NT=Hex(4)HexNAc(4)NeuAc(1)Sulf(2);AC=1756;CF=O(6) S(2) Hex(4) HexNAc(4) NeuAc;MM=1911.53783", "Hex(4)HexNAc(4)NeuGc(1)Sulf(2)": "NT=Hex(4)HexNAc(4)NeuGc(1)Sulf(2);AC=1757;CF=O(6) S(2) Hex(4) HexNAc(4) NeuGc;MM=1927.532745", "dHex(2)Hex(3)HexNAc(3)NeuAc(2)": "NT=dHex(2)Hex(3)HexNAc(3)NeuAc(2);AC=1758;CF=dHex(2) Hex(3) HexNAc(3) NeuAc(2);MM=1969.703239", "Hex(4)HexNAc(4)NeuAc(1)Sulf(3)": "NT=Hex(4)HexNAc(4)NeuAc(1)Sulf(3);AC=1759;CF=O(9) S(3) Hex(4) HexNAc(4) NeuAc;MM=1991.494645", "dHex(2)Hex(2)HexNAc(2)": "NT=dHex(2)Hex(2)HexNAc(2);AC=1760;CF=dHex(2) Hex(2) HexNAc(2);MM=1022.38021", "dHex(1)Hex(3)HexNAc(2)": "NT=dHex(1)Hex(3)HexNAc(2);AC=1761;CF=dHex(1) Hex(3) HexNAc(2);MM=1038.375125", "dHex(1)Hex(2)HexNAc(3)": "NT=dHex(1)Hex(2)HexNAc(3);AC=1762;CF=dHex(1) Hex(2) HexNAc(3);MM=1079.401674", "Hex(3)HexNAc(3)": "NT=Hex(3)HexNAc(3);AC=1763;CF=Hex(3) HexNAc(3);MM=1095.396588", "dHex(1)Hex(3)HexNAc(2)Sulf(1)": "NT=dHex(1)Hex(3)HexNAc(2)Sulf(1);AC=1764;CF=O(3) S dHex Hex(3) HexNAc(2);MM=1118.331939", "dHex(2)Hex(3)HexNAc(2)": "NT=dHex(2)Hex(3)HexNAc(2);AC=1765;CF=dHex(2) Hex(3) HexNAc(2);MM=1184.433033", "dHex(1)Hex(4)HexNAc(2)": "NT=dHex(1)Hex(4)HexNAc(2);AC=1766;CF=dHex(1) Hex(4) HexNAc(2);MM=1200.427948", "dHex(2)Hex(2)HexNAc(3)": "NT=dHex(2)Hex(2)HexNAc(3);AC=1767;CF=dHex(2) Hex(2) HexNAc(3);MM=1225.459583", "dHex(1)Hex(3)HexNAc(3)": "NT=dHex(1)Hex(3)HexNAc(3);AC=1768;CF=dHex(1) Hex(3) HexNAc(3);MM=1241.454497", "Hex(4)HexNAc(3)": "NT=Hex(4)HexNAc(3);AC=1769;CF=Hex(4) HexNAc(3);MM=1257.449412", "dHex(2)Hex(4)HexNAc(2)": "NT=dHex(2)Hex(4)HexNAc(2);AC=1770;CF=dHex(2) Hex(4) HexNAc(2);MM=1346.485857", "dHex(2)Hex(3)HexNAc(3)": "NT=dHex(2)Hex(3)HexNAc(3);AC=1771;CF=dHex(2) Hex(3) HexNAc(3);MM=1387.512406", "Hex(3)HexNAc(5)": "NT=Hex(3)HexNAc(5);AC=1772;CF=Hex(3) HexNAc(5);MM=1501.555334", "Hex(4)HexNAc(3)NeuAc(1)": "NT=Hex(4)HexNAc(3)NeuAc(1);AC=1773;CF=Hex(4) HexNAc(3) NeuAc;MM=1548.544828", "dHex(2)Hex(3)HexNAc(4)": "NT=dHex(2)Hex(3)HexNAc(4);AC=1774;CF=dHex(2) Hex(3) HexNAc(4);MM=1590.591779", "dHex(1)Hex(3)HexNAc(5)": "NT=dHex(1)Hex(3)HexNAc(5);AC=1775;CF=dHex(1) Hex(3) HexNAc(5);MM=1647.613242", "Hex(3)HexNAc(6)": "NT=Hex(3)HexNAc(6);AC=1776;CF=Hex(3) HexNAc(6);MM=1704.634706", "Hex(4)HexNAc(4)NeuAc(1)": "NT=Hex(4)HexNAc(4)NeuAc(1);AC=1777;CF=Hex(4) HexNAc(4) NeuAc(1);MM=1751.624201", "dHex(2)Hex(4)HexNAc(4)": "NT=dHex(2)Hex(4)HexNAc(4);AC=1778;CF=dHex(2) Hex(4) HexNAc(4);MM=1752.644602", "Hex(6)HexNAc(4)": "NT=Hex(6)HexNAc(4);AC=1779;CF=Hex(6) HexNAc(4);MM=1784.634431", "Hex(5)HexNAc(5)": "NT=Hex(5)HexNAc(5);AC=1780;CF=Hex(5) HexNAc(5);MM=1825.660981", "dHex(1)Hex(3)HexNAc(6)": "NT=dHex(1)Hex(3)HexNAc(6);AC=1781;CF=dHex(1) Hex(3) HexNAc(6);MM=1850.692615", "dHex(1)Hex(4)HexNAc(4)NeuAc(1)": "NT=dHex(1)Hex(4)HexNAc(4)NeuAc(1);AC=1782;CF=dHex Hex(4) HexNAc(4) NeuAc;MM=1897.68211", "dHex(3)Hex(4)HexNAc(4)": "NT=dHex(3)Hex(4)HexNAc(4);AC=1783;CF=dHex(3) Hex(4) HexNAc(4);MM=1898.702511", "dHex(1)Hex(3)HexNAc(5)NeuAc(1)": "NT=dHex(1)Hex(3)HexNAc(5)NeuAc(1);AC=1784;CF=dHex(1) Hex(3) HexNAc(5) NeuAc(1);MM=1938.708659", "dHex(2)Hex(4)HexNAc(5)": "NT=dHex(2)Hex(4)HexNAc(5);AC=1785;CF=dHex(2) Hex(4) HexNAc(5);MM=1955.723975", "Hex(1)HexNAc(1)NeuAc(1)Ac(1)": "NT=Hex(1)HexNAc(1)NeuAc(1)Ac(1);AC=1786;CF=Ac Hex HexNAc NeuAc;MM=698.238177", "Label:13C(2)15N(2)": "NT=Label:13C(2)15N(2);AC=1787;CF=C(-2) 13C(2) N(-2) 15N(2);MM=4.00078", "Xlink:DSS[155]": "NT=Xlink:DSS[155];AC=1789;CF=H(13) C(8) N O(2);MM=155.094629", "NQIGG": "NT=NQIGG;AC=1799;CF=H(31) C(19) N(7) O(7);MM=469.228496", "Carboxyethylpyrrole": "NT=Carboxyethylpyrrole;AC=1800;CF=H(6) C(7) O(2);MM=122.036779", "Fluorescein-tyramine": "NT=Fluorescein-tyramine;AC=1801;CF=H(19) C(29) N O(7);MM=493.116152", "GEE": "NT=GEE;AC=1824;CF=H(6) C(4) O(2);MM=86.036779", "RNPXL": "NT=RNPXL;AC=1825;CF=H(13) C(9) N(2) O(9) P;MM=324.035867", "Glu->pyro-Glu+Methyl": "NT=Glu->pyro-Glu+Methyl;AC=1826;CF=C O(-1);MM=-3.994915", "Glu->pyro-Glu+Methyl:2H(2)13C(1)": "NT=Glu->pyro-Glu+Methyl:2H(2)13C(1);AC=1827;CF=H(-2) 2H(2) 13C O(-1);MM=-0.979006", "LRGG+methyl": "NT=LRGG+methyl;AC=1828;CF=H(31) C(17) N(7) O(4);MM=397.243753", "LRGG+dimethyl": "NT=LRGG+dimethyl;AC=1829;CF=H(33) C(18) N(7) O(4);MM=411.259403", "Biotin-tyramide": "NT=Biotin-tyramide;AC=1830;CF=H(23) C(18) N(3) O(3) S;MM=361.146012", "Tris": "NT=Tris;AC=1831;CF=H(10) C(4) N O(2);MM=104.071154", "IASD": "NT=IASD;AC=1832;CF=H(16) C(18) N(2) O(8) S(2);MM=452.034807", "NP40": "NT=NP40;AC=1833;CF=H(24) C(15) O;MM=220.182715", "Tween20": "NT=Tween20;AC=1834;CF=H(21) C(12);MM=165.164326", "Tween80": "NT=Tween80;AC=1835;CF=H(31) C(18) O;MM=263.237491", "Triton": "NT=Triton;AC=1836;CF=H(20) C(14);MM=188.156501", "Brij35": "NT=Brij35;AC=1837;CF=H(24) C(12);MM=168.187801", "Brij58": "NT=Brij58;AC=1838;CF=H(32) C(16);MM=224.250401", "betaFNA": "NT=betaFNA;AC=1839;CF=H(30) C(25) N(2) O(6);MM=454.210387", "dHex(1)Hex(7)HexNAc(4)": "NT=dHex(1)Hex(7)HexNAc(4);AC=1840;CF=dHex Hex(7) HexNAc(4);MM=2092.745164", "Biotin:Thermo-21328": "NT=Biotin:Thermo-21328;AC=1841;CF=H(23) C(15) N(3) O(3) S(3);MM=389.090154", "Xlink:DSSO": "NT=Xlink:DSSO;AC=1842;CF=H(6) C(6) O(3) S;MM=158.003765", "PhosphoCytidine": "NT=PhosphoCytidine;AC=1843;CF=H(12) C(9) N(3) O(7) P;MM=305.041287", "Xlink:EGS": "NT=Xlink:EGS;AC=1844;CF=H(10) C(10) O(6);MM=226.047738", "AzidoF": "NT=AzidoF;AC=1845;CF=H(-1) N(3);MM=41.001397", "Dimethylaminoethyl": "NT=Dimethylaminoethyl;AC=1846;CF=H(9) C(4) N;MM=71.073499", "Gluratylation": "NT=Gluratylation;AC=1848;CF=H(6) C(5) O(3);MM=114.031694", "hydroxyisobutyryl": "NT=hydroxyisobutyryl;AC=1849;CF=H(6) C(4) O(2);MM=86.036779", "MeMePhosphorothioate": "NT=MeMePhosphorothioate;AC=1868;CF=H(5) C(2) O P S;MM=107.979873", "Cation:Fe[III]": "NT=Cation:Fe[III];AC=1870;CF=H(-3) Fe;MM=52.911464", "DTT": "NT=DTT;AC=1871;CF=H(8) C(4) O(2) S(2);MM=151.996571", "DYn-2": "NT=DYn-2;AC=1872;CF=H(13) C(11) O;MM=161.09664", "MesitylOxide": "NT=MesitylOxide;AC=1873;CF=H(10) C(6) O;MM=98.073165", "methylol": "NT=methylol;AC=1875;CF=H(2) C O;MM=30.010565", "Xlink:DSS": "NT=Xlink:DSS;AC=1876;CF=H(10) C(8) O(2);MM=138.06808", "Xlink:DSS[259]": "NT=Xlink:DSS[259];AC=1877;CF=H(21) C(12) N O(5);MM=259.141973", "Xlink:DSSO[176]": "NT=Xlink:DSSO[176];AC=1878;CF=H(8) C(6) O(4) S;MM=176.01433", "Xlink:DSSO[175]": "NT=Xlink:DSSO[175];AC=1879;CF=H(9) C(6) N O(3) S;MM=175.030314", "Xlink:DSSO[279]": "NT=Xlink:DSSO[279];AC=1880;CF=H(17) C(10) N O(6) S;MM=279.077658", "Xlink:DSSO[54]": "NT=Xlink:DSSO[54];AC=1881;CF=H(2) C(3) O;MM=54.010565", "Xlink:DSSO[86]": "NT=Xlink:DSSO[86];AC=1882;CF=H(2) C(3) O S;MM=85.982635", "Xlink:DSSO[104]": "NT=Xlink:DSSO[104];AC=1883;CF=H(4) C(3) O(2) S;MM=103.9932", "Xlink:BuUrBu": "NT=Xlink:BuUrBu;AC=1884;CF=H(12) C(9) N(2) O(3);MM=196.084792", "Xlink:BuUrBu[111]": "NT=Xlink:BuUrBu[111];AC=1885;CF=H(5) C(5) N O(2);MM=111.032028", "Xlink:BuUrBu[85]": "NT=Xlink:BuUrBu[85];AC=1886;CF=H(7) C(4) N O;MM=85.052764", "Xlink:BuUrBu[213]": "NT=Xlink:BuUrBu[213];AC=1887;CF=H(15) C(9) N(3) O(3);MM=213.111341", "Xlink:BuUrBu[214]": "NT=Xlink:BuUrBu[214];AC=1888;CF=H(14) C(9) N(2) O(4);MM=214.095357", "Xlink:BuUrBu[317]": "NT=Xlink:BuUrBu[317];AC=1889;CF=H(23) C(13) N(3) O(6);MM=317.158686", "Xlink:DTBP": "NT=Xlink:DTBP;AC=1891;CF=H(8) C(6) N(2) S(2);MM=172.01289", "Xlink:DST": "NT=Xlink:DST;AC=1892;CF=H(2) C(4) O(4);MM=113.995309", "Xlink:DTSSP": "NT=Xlink:DTSSP;AC=1893;CF=H(6) C(6) O(2) S(2);MM=173.980921", "Xlink:SMCC": "NT=Xlink:SMCC;AC=1895;CF=H(13) C(12) N O(3);MM=219.089543", "Xlink:DSSO[158]": "NT=Xlink:DSSO[158];AC=1896;CF=H(6) C(6) O(3) S;MM=158.003765", "Xlink:EGS[226]": "NT=Xlink:EGS[226];AC=1897;CF=H(10) C(10) O(6);MM=226.047738", "Xlink:DSS[138]": "NT=Xlink:DSS[138];AC=1898;CF=H(10) C(8) O(2);MM=138.06808", "Xlink:BuUrBu[196]": "NT=Xlink:BuUrBu[196];AC=1899;CF=H(12) C(9) N(2) O(3);MM=196.084792", "Xlink:DTBP[172]": "NT=Xlink:DTBP[172];AC=1900;CF=H(8) C(6) N(2) S(2);MM=172.01289", "Xlink:DST[114]": "NT=Xlink:DST[114];AC=1901;CF=H(2) C(4) O(4);MM=113.995309", "Xlink:DTSSP[174]": "NT=Xlink:DTSSP[174];AC=1902;CF=H(6) C(6) O(2) S(2);MM=173.980921", "Xlink:SMCC[219]": "NT=Xlink:SMCC[219];AC=1903;CF=H(13) C(12) N O(3);MM=219.089543", "Xlink:BS2G[96]": "NT=Xlink:BS2G[96];AC=1905;CF=H(4) C(5) O(2);MM=96.021129", "Xlink:BS2G[113]": "NT=Xlink:BS2G[113];AC=1906;CF=H(7) C(5) N O(2);MM=113.047679", "Xlink:BS2G[114]": "NT=Xlink:BS2G[114];AC=1907;CF=H(6) C(5) O(3);MM=114.031694", "Xlink:BS2G[217]": "NT=Xlink:BS2G[217];AC=1908;CF=H(15) C(9) N O(5);MM=217.095023", "Xlink:BS2G": "NT=Xlink:BS2G;AC=1909;CF=H(4) C(5) O(2);MM=96.021129", "Cation:Al[III]": "NT=Cation:Al[III];AC=1910;CF=H(-3) Al;MM=23.958063", "Xlink:DMP[139]": "NT=Xlink:DMP[139];AC=1911;CF=H(13) C(7) N(3);MM=139.110947", "Xlink:DMP[122]": "NT=Xlink:DMP[122];AC=1912;CF=H(10) C(7) N(2);MM=122.084398", "glyoxalAGE": "NT=glyoxalAGE;AC=1913;CF=H(-2) C(2);MM=21.98435", "Met->AspSA": "NT=Met->AspSA;AC=1914;CF=H(-4) C(-1) O S(-1);MM=-32.008456", "Decarboxylation": "NT=Decarboxylation;AC=1915;CF=H(-2) C(-1) O(-1);MM=-30.010565", "Aspartylurea": "NT=Aspartylurea;AC=1916;CF=H(-2) C(-1) N(-2) O(2);MM=-10.031969", "Formylasparagine": "NT=Formylasparagine;AC=1917;CF=H(-1) C(-1) N(-1) O(2);MM=4.97893", "Carbonyl": "NT=Carbonyl;AC=1918;CF=H(-2) O;MM=13.979265", "AFB1_Dialdehyde": "NT=AFB1_Dialdehyde;AC=1920;CF=H(10) C(17) O(6);MM=310.047738", "Pro->HAVA": "NT=Pro->HAVA;AC=1922;CF=H(2) O;MM=18.010565", "Delta:H(-4)O(2)": "NT=Delta:H(-4)O(2);AC=1923;CF=H(-4) O(2);MM=27.958529", "Delta:H(-4)O(3)": "NT=Delta:H(-4)O(3);AC=1924;CF=H(-4) O(3);MM=43.953444", "Delta:O(4)": "NT=Delta:O(4);AC=1925;CF=O(4);MM=63.979659", "Delta:H(4)C(3)O(2)": "NT=Delta:H(4)C(3)O(2);AC=1926;CF=H(4) C(3) O(2);MM=72.021129", "Delta:H(4)C(5)O(1)": "NT=Delta:H(4)C(5)O(1);AC=1927;CF=H(4) C(5) O;MM=80.026215", "Delta:H(10)C(8)O(1)": "NT=Delta:H(10)C(8)O(1);AC=1928;CF=H(10) C(8) O;MM=122.073165", "Delta:H(6)C(7)O(4)": "NT=Delta:H(6)C(7)O(4);AC=1929;CF=H(6) C(7) O(4);MM=154.026609", "Pent(2)": "NT=Pent(2);AC=1930;CF=Pent(2);MM=264.084518", "Pent(1)HexNAc(1)": "NT=Pent(1)HexNAc(1);AC=1931;CF=Pent HexNAc;MM=335.121631", "Hex(2)Sulf(1)": "NT=Hex(2)Sulf(1);AC=1932;CF=O(3) S Hex(2);MM=404.062462", "Hex(1)Pent(2)Me(1)": "NT=Hex(1)Pent(2)Me(1);AC=1933;CF=Me Pent(2) Hex;MM=440.152991", "HexNAc(2)Sulf(1)": "NT=HexNAc(2)Sulf(1);AC=1934;CF=O(3) S HexNAc(2);MM=486.11556", "Hex(1)Pent(3)Me(1)": "NT=Hex(1)Pent(3)Me(1);AC=1935;CF=Me Pent(3) Hex;MM=572.19525", "Hex(2)Pent(2)": "NT=Hex(2)Pent(2);AC=1936;CF=Pent(2) Hex(2);MM=588.190165", "Hex(2)Pent(2)Me(1)": "NT=Hex(2)Pent(2)Me(1);AC=1937;CF=Me Pent(2) Hex(2);MM=602.205815", "Hex(4)HexA(1)": "NT=Hex(4)HexA(1);AC=1938;CF=Hex(4) HexA;MM=824.243382", "Hex(2)HexNAc(1)Pent(1)HexA(1)": "NT=Hex(2)HexNAc(1)Pent(1)HexA(1);AC=1939;CF=Pent Hex(2) HexA HexNAc;MM=835.259366", "Hex(3)HexNAc(1)HexA(1)": "NT=Hex(3)HexNAc(1)HexA(1);AC=1940;CF=Hex(3) HexA HexNAc;MM=865.269931", "Hex(1)HexNAc(2)dHex(2)Sulf(1)": "NT=Hex(1)HexNAc(2)dHex(2)Sulf(1);AC=1941;CF=O(3) S dHex(2) Hex HexNAc(2);MM=940.284201", "HexA(2)HexNAc(3)": "NT=HexA(2)HexNAc(3);AC=1942;CF=HexA(2) HexNAc(3);MM=961.302294", "dHex(1)Hex(4)HexA(1)": "NT=dHex(1)Hex(4)HexA(1);AC=1943;CF=dHex Hex(4) HexA;MM=970.301291", "Hex(5)HexA(1)": "NT=Hex(5)HexA(1);AC=1944;CF=Hex(5) HexA;MM=986.296206", "Hex(4)HexA(1)HexNAc(1)": "NT=Hex(4)HexA(1)HexNAc(1);AC=1945;CF=Hex(4) HexA HexNAc;MM=1027.322755", "dHex(3)Hex(3)HexNAc(1)": "NT=dHex(3)Hex(3)HexNAc(1);AC=1946;CF=dHex(3) Hex(3) HexNAc;MM=1127.41157", "Hex(6)HexNAc(1)": "NT=Hex(6)HexNAc(1);AC=1947;CF=Hex(6) HexNAc;MM=1175.396314", "Hex(1)HexNAc(4)dHex(1)Sulf(1)": "NT=Hex(1)HexNAc(4)dHex(1)Sulf(1);AC=1948;CF=Sulf dHex Hex HexNAc(4);MM=1200.385037", "dHex(1)Hex(2)HexNAc(1)NeuAc(2)": "NT=dHex(1)Hex(2)HexNAc(1)NeuAc(2);AC=1949;CF=dHex Hex(2) HexNAc NeuAc(2);MM=1255.433762", "dHex(3)Hex(3)HexNAc(2)": "NT=dHex(3)Hex(3)HexNAc(2);AC=1950;CF=dHex(3) Hex(3) HexNAc(2);MM=1330.490942", "dHex(2)Hex(1)HexNAc(4)Sulf(1)": "NT=dHex(2)Hex(1)HexNAc(4)Sulf(1);AC=1951;CF=Sulf dHex(2) Hex HexNAc(4);MM=1346.442946", "dHex(1)Hex(2)HexNAc(4)Sulf(2)": "NT=dHex(1)Hex(2)HexNAc(4)Sulf(2);AC=1952;CF=Sulf(2) dHex Hex(2) HexNAc(4);MM=1442.394675", "Hex(9)": "NT=Hex(9);AC=1953;CF=Hex(9);MM=1458.475412", "dHex(2)Hex(3)HexNAc(3)Sulf(1)": "NT=dHex(2)Hex(3)HexNAc(3)Sulf(1);AC=1954;CF=Sulf dHex(2) Hex(3) HexNAc(3);MM=1467.469221", "dHex(2)Hex(5)HexNAc(2)Me(1)": "NT=dHex(2)Hex(5)HexNAc(2)Me(1);AC=1955;CF=Me dHex(2) Hex(5) HexNAc(2);MM=1522.554331", "dHex(2)Hex(2)HexNAc(4)Sulf(2)": "NT=dHex(2)Hex(2)HexNAc(4)Sulf(2);AC=1956;CF=Sulf(2) dHex(2) Hex(2) HexNAc(4);MM=1588.452584", "Hex(9)HexNAc(1)": "NT=Hex(9)HexNAc(1);AC=1957;CF=Hex(9) HexNAc;MM=1661.554784", "dHex(3)Hex(2)HexNAc(4)Sulf(2)": "NT=dHex(3)Hex(2)HexNAc(4)Sulf(2);AC=1958;CF=Sulf(2) dHex(3) Hex(2) HexNAc(4);MM=1734.510493", "Hex(4)HexNAc(4)NeuGc(1)": "NT=Hex(4)HexNAc(4)NeuGc(1);AC=1959;CF=Hex(4) HexNAc(4) NeuGc;MM=1767.619116", "dHex(4)Hex(3)HexNAc(2)NeuAc(1)": "NT=dHex(4)Hex(3)HexNAc(2)NeuAc(1);AC=1960;CF=dHex(4) Hex(3) HexNAc(2) NeuAc;MM=1767.644268", "Hex(3)HexNAc(5)NeuAc(1)": "NT=Hex(3)HexNAc(5)NeuAc(1);AC=1961;CF=Hex(3) HexNAc(5) NeuAc;MM=1792.65075", "Hex(10)HexNAc(1)": "NT=Hex(10)HexNAc(1);AC=1962;CF=Hex(10) HexNAc;MM=1823.607608", "dHex(1)Hex(8)HexNAc(2)": "NT=dHex(1)Hex(8)HexNAc(2);AC=1963;CF=dHex Hex(8) HexNAc(2);MM=1848.639242", "Hex(3)HexNAc(4)NeuAc(2)": "NT=Hex(3)HexNAc(4)NeuAc(2);AC=1964;CF=Hex(3) HexNAc(4) NeuAc(2);MM=1880.666794", "dHex(2)Hex(3)HexNAc(4)NeuAc(1)": "NT=dHex(2)Hex(3)HexNAc(4)NeuAc(1);AC=1965;CF=dHex(2) Hex(3) HexNAc(4) NeuAc;MM=1881.687195", "dHex(2)Hex(2)HexNAc(6)Sulf(1)": "NT=dHex(2)Hex(2)HexNAc(6)Sulf(1);AC=1966;CF=Sulf dHex(2) Hex(2) HexNAc(6);MM=1914.654515", "Hex(5)HexNAc(4)NeuAc(1)Ac(1)": "NT=Hex(5)HexNAc(4)NeuAc(1)Ac(1);AC=1967;CF=Ac Hex(5) HexNAc(4) NeuAc;MM=1955.687589", "Hex(3)HexNAc(3)NeuAc(3)": "NT=Hex(3)HexNAc(3)NeuAc(3);AC=1968;CF=Hex(3) HexNAc(3) NeuAc(3);MM=1968.682838", "Hex(5)HexNAc(4)NeuAc(1)Ac(2)": "NT=Hex(5)HexNAc(4)NeuAc(1)Ac(2);AC=1969;CF=Ac(2) Hex(5) HexNAc(4) NeuAc;MM=1997.698154", "Unknown:162": "NT=Unknown:162;AC=1970;CF=H(18) C(8) O(3);MM=162.125595", "Unknown:177": "NT=Unknown:177;AC=1971;CF=H(-7) O Fe(3);MM=176.744957", "Unknown:210": "NT=Unknown:210;AC=1972;CF=H(22) C(13) O(2);MM=210.16198", "Unknown:216": "NT=Unknown:216;AC=1973;CF=H(16) C(10) O(5);MM=216.099774", "Unknown:234": "NT=Unknown:234;AC=1974;CF=H(14) C(9) O(7);MM=234.073953", "Unknown:248": "NT=Unknown:248;AC=1975;CF=H(28) C(13) O(4);MM=248.19876", "Unknown:250": "NT=Unknown:250;AC=1976;CF=H(4) C(10) N O(5) S;MM=249.981018", "Unknown:302": "NT=Unknown:302;AC=1977;CF=H(8) C(4) N(5) O(7) S(2);MM=301.986514", "Unknown:306": "NT=Unknown:306;AC=1978;CF=H(18) C(12) O(9);MM=306.095082", "Unknown:420": "NT=Unknown:420;AC=1979;CF=H(24) C(12) N(2) O(6) S(4);MM=420.051719", "Diethylphosphothione": "NT=Diethylphosphothione;AC=1986;CF=H(9) C(4) O(2) P S;MM=152.006087", "Dimethylphosphothione": "NT=Dimethylphosphothione;AC=1987;CF=H(5) C(2) O(2) P S;MM=123.974787", "monomethylphosphothione": "NT=monomethylphosphothione;AC=1989;CF=H(3) C O(2) P S;MM=109.959137", "CIGG": "NT=CIGG;AC=1990;CF=H(22) C(13) N(4) O(4) S;MM=330.136176", "GNLLFLACYCIGG": "NT=GNLLFLACYCIGG;AC=1991;CF=H(92) C(61) N(14) O(15) S(2);MM=1324.6308", "serotonylation": "NT=serotonylation;AC=1992;CF=H(9) C(10) N O;MM=159.068414", "TMPP-Ac:13C(9)": "NT=TMPP-Ac:13C(9);AC=1993;CF=H(33) C(20) 13C(9) O(10) P;MM=581.211328", "Xlink:DST[56]": "NT=Xlink:DST[56];AC=1999;CF=C(2) O(2);MM=55.989829", "Xlink:SDA": "NT=Xlink:SDA;AC=2000;CF=H(6) C(5) O;MM=82.041865", "ZQG": "NT=ZQG;AC=2001;CF=H(16) C(15) N(2) O(6);MM=320.100836", "Haloxon": "NT=Haloxon;AC=2006;CF=H(7) C(4) O(3) P Cl(2);MM=203.950987", "Methamidophos-S": "NT=Methamidophos-S;AC=2007;CF=H(4) C N O P S;MM=108.975121", "Methamidophos-O": "NT=Methamidophos-O;AC=2008;CF=H(4) C N O(2) P;MM=92.997965", "Nitrene": "NT=Nitrene;AC=2014;CF=H(-1) N;MM=12.995249", "shTMT": "NT=shTMT;AC=2015;CF=H(20) C(3) 13C(9) 15N(2) O(2);MM=235.176741", "TMTpro": "NT=TMTpro;AC=2016;CF=H(25) C(8) 13C(7) N 15N(2) O(3);MM=304.207146", "TMTpro_zero": "NT=TMTpro_zero;AC=2017;CF=H(25) C(15) N(3) O(3);MM=295.189592", "Xlink:EDC": "NT=Xlink:EDC;AC=2018;CF=H(-2) O(-1);MM=-18.010565", "Xlink:Disulfide": "NT=Xlink:Disulfide;AC=2020;CF=H(-2);MM=-2.01565", "Ser/Thr-KDO": "NT=Ser/Thr-KDO;AC=2022;CF=H(12) C(8) O(7);MM=220.058303", "Andro-H2O": "NT=Andro-H2O;AC=2025;CF=H(28) C(20) O(4);MM=332.19876", "Xlink:KQisopeptide": "NT=Xlink:KQisopeptide;AC=2026;CF=H(-3) N(-1);MM=-17.026549", "His+O(2)": "NT=His+O(2);AC=2027;CF=H(7) C(6) N(3) O(3);MM=169.048741", "Hex(6)HexNAc(5)NeuAc(3)": "NT=Hex(6)HexNAc(5)NeuAc(3);AC=2028;CF=Hex(6) HexNAc(5) NeuAc(3);MM=2861.000054", "Hex(7)HexNAc(6)": "NT=Hex(7)HexNAc(6);AC=2029;CF=Hex(7) HexNAc(6);MM=2352.846", "Met+O(2)": "NT=Met+O(2);AC=2033;CF=H(9) C(5) N O(3) S;MM=163.030314", "Gly+O(2)": "NT=Gly+O(2);AC=2034;CF=H(3) C(2) N O(3);MM=89.011293", "Pro+O(2)": "NT=Pro+O(2);AC=2035;CF=H(7) C(5) N O(3);MM=129.042593", "Lys+O(2)": "NT=Lys+O(2);AC=2036;CF=H(12) C(6) N(2) O(3);MM=160.084792", "Glu+O(2)": "NT=Glu+O(2);AC=2037;CF=H(7) C(5) N O(5);MM=161.032422", "LTX+Lophotoxin": "NT=LTX+Lophotoxin;AC=2039;CF=H(24) C(22) O(8);MM=416.147118", "MBS+peptide": "NT=MBS+peptide;AC=2040;CF=H(108) C(81) N(7) O(19);MM=1482.77", "3-hydroxybenzyl-phosphate": "NT=3-hydroxybenzyl-phosphate;AC=2041;CF=H(7) C(7) O(4) P;MM=186.008196", "phenyl-phosphate": "NT=phenyl-phosphate;AC=2042;CF=H(5) C(6) O(3) P;MM=155.997631", "RBS-ID_Uridine": "NT=RBS-ID_Uridine;AC=2044;CF=H(12) C(9) N(2) O(6);MM=244.069536", "shTMTpro": "NT=shTMTpro;AC=2050;CF=H(25) 13C(15) 15N(3) O(3);MM=313.231019", "Biotin:Aha-DADPS": "NT=Biotin:Aha-DADPS;AC=2052;CF=H(70) C(42) N(8) O(11) Si S;MM=922.465403", "Biotin:Aha-PC": "NT=Biotin:Aha-PC;AC=2053;CF=H(38) C(29) N(8) O(10) S;MM=690.24316", "pRBS-ID_4-thiouridine": "NT=pRBS-ID_4-thiouridine;AC=2054;CF=H(10) C(9) N(2) O(5);MM=226.058972", "pRBS-ID_6-thioguanosine": "NT=pRBS-ID_6-thioguanosine;AC=2055;CF=H(11) C(10) N(5) O(4);MM=265.081104", "6C-CysPAT": "NT=6C-CysPAT;AC=2057;CF=H(16) C(8) N O(4) P;MM=221.081695", "Xlink:DSPP[210]": "NT=Xlink:DSPP[210];AC=2058;CF=H(3) C(8) O(5) P;MM=209.97181", "Xlink:DSPP[228]": "NT=Xlink:DSPP[228];AC=2059;CF=H(5) C(8) O(6) P;MM=227.982375", "Xlink:DSPP[331]": "NT=Xlink:DSPP[331];AC=2060;CF=H(14) C(12) N O(8) P;MM=331.045704", "Xlink:DSPP[226]": "NT=Xlink:DSPP[226];AC=2061;CF=H(5) C(8) N O(5) P;MM=225.990534", "DBIA": "NT=DBIA;AC=2062;CF=H(24) C(14) N(4) O(3);MM=296.184841", "Mono_N\u03b3-propargyl-L-Gln_desthiobiotin": "NT=Mono_N\u03b3-propargyl-L-Gln_desthiobiotin;AC=2067;CF=H(44) C(26) N(8) O(8);MM=596.328211", "Di_L-Glu_N\u03b3-propargyl-L-Gln_desthiobiotin": "NT=Di_L-Glu_N\u03b3-propargyl-L-Gln_desthiobiotin;AC=2068;CF=H(51) C(31) N(9) O(10);MM=709.375889", "Di_L-Gln_N\u03b3-propargyl-L-Gln_desthiobiotin": "NT=Di_L-Gln_N\u03b3-propargyl-L-Gln_desthiobiotin;AC=2069;CF=H(52) C(31) N(10) O(9);MM=708.391873", "L-Gln": "NT=L-Gln;AC=2070;CF=H(8) C(5) N(2) O(2);MM=128.058578", "Glyceroyl": "NT=Glyceroyl;AC=2072;CF=H(4) C(3) O(3);MM=88.016044", "N6pAMP": "NT=N6pAMP;AC=2073;CF=H(14) C(13) N(5) O(6) P;MM=367.06817", "DabMal": "NT=DabMal;AC=2074;CF=H(21) C(21) N(5) O(3);MM=391.16444", "NBF": "NT=NBF;AC=2079;CF=H C(6) N(3) O(3);MM=163.001791", "DCP": "NT=DCP;AC=2080;CF=H(12) C(9) O(3);MM=168.078644", "Ethynylation": "NT=Ethynylation;AC=2081;CF=C(2);MM=24.0", "Acetylation": "NT=Acetyl;AC=1;CF=H(2) C(2) O;MM=42.010565", "Amidation": "NT=Amidated;AC=2;CF=H N O(-1);MM=-0.984016", "Biotinylation": "NT=Biotin;AC=3;CF=H(14) C(10) N(2) O(2) S;MM=226.077598", "Iodoacetamide derivative": "NT=Carbamidomethyl;AC=4;CF=H(3) C(2) N O;MM=57.021464", "Carbamylation": "NT=Carbamyl;AC=5;CF=H C N O;MM=43.005814", "Iodoacetic acid derivative": "NT=Carboxymethyl;AC=6;CF=H(2) C(2) O(2);MM=58.005479", "Deamidation": "NT=Deamidated;AC=7;CF=H(-1) N(-1) O;MM=0.984016", "Gygi ICAT(TM) d0": "NT=ICAT-G;AC=8;CF=H(38) C(22) N(4) O(6) S;MM=486.251206", "Gygi ICAT(TM) d8": "NT=ICAT-G:2H(8);AC=9;CF=H(30) 2H(8) C(22) N(4) O(6) S;MM=494.30142", "Homoserine": "NT=Met->Hse;AC=10;CF=H(-2) C(-1) O S(-1);MM=-29.992806", "Homoserine lactone": "NT=Met->Hsl;AC=11;CF=H(-4) C(-1) S(-1);MM=-48.003371", "Applied Biosystems original ICAT(TM) d8": "NT=ICAT-D:2H(8);AC=12;CF=H(26) 2H(8) C(20) N(4) O(5) S;MM=450.275205", "Applied Biosystems original ICAT(TM) d0": "NT=ICAT-D;AC=13;CF=H(34) C(20) N(4) O(5) S;MM=442.224991", "N-isopropylcarboxamidomethyl": "NT=NIPCAM;AC=17;CF=H(9) C(5) N O;MM=99.068414", "Biotinyl-iodoacetamidyl-3,6-dioxaoctanediamine": "NT=PEO-Iodoacetyl-LC-Biotin;AC=20;CF=H(30) C(18) N(4) O(5) S;MM=414.193691", "Phosphorylation": "NT=Phospho;AC=21;CF=H O(3) P;MM=79.966331", "Dehydration": "NT=Dehydrated;AC=23;CF=H(-2) O(-1);MM=-18.010565", "Acrylamide adduct": "NT=Propionamide;AC=24;CF=H(5) C(3) N O;MM=71.037114", "pyridylacetyl": "NT=Pyridylacetyl;AC=25;CF=H(5) C(7) N O;MM=119.037114", "S-carbamoylmethylcysteine cyclization (N-terminus)": "NT=Pyro-carbamidomethyl;AC=26;CF=C(2) O;MM=39.994915", "Pyro-glu from E": "NT=Glu->pyro-Glu;AC=27;CF=H(-2) O(-1);MM=-18.010565", "Pyro-glu from Q": "NT=Gln->pyro-Glu;AC=28;CF=H(-3) N(-1);MM=-17.026549", "N-Succinimidyl-2-morpholine acetate": "NT=SMA;AC=29;CF=H(9) C(6) N O(2);MM=127.063329", "Sodium adduct": "NT=Cation:Na;AC=30;CF=H(-1) Na;MM=21.981943", "S-pyridylethylation": "NT=Pyridylethyl;AC=31;CF=H(7) C(7) N;MM=105.057849", "Methylation": "NT=Methyl;AC=34;CF=H(2) C;MM=14.01565", "Oxidation or Hydroxylation": "NT=Oxidation;AC=35;CF=O;MM=15.994915", "di-Methylation": "NT=Dimethyl;AC=36;CF=H(4) C(2);MM=28.0313", "tri-Methylation": "NT=Trimethyl;AC=37;CF=H(6) C(3);MM=42.04695", "Beta-methylthiolation": "NT=Methylthio;AC=39;CF=H(2) C S;MM=45.987721", "O-Sulfonation": "NT=Sulfo;AC=40;CF=O(3) S;MM=79.956815", "Hexose": "NT=Hex;AC=41;CF=Hex;MM=162.052824", "N-Acetylhexosamine": "NT=HexNAc;AC=43;CF=HexNAc;MM=203.079373", "Farnesylation": "NT=Farnesyl;AC=44;CF=H(24) C(15);MM=204.187801", "Myristoylation": "NT=Myristoyl;AC=45;CF=H(26) C(14) O;MM=210.198366", "Pyridoxal phosphate": "NT=PyridoxalPhosphate;AC=46;CF=H(8) C(8) N O(5) P;MM=229.014009", "Palmitoylation": "NT=Palmitoyl;AC=47;CF=H(30) C(16) O;MM=238.229666", "Geranyl-geranyl": "NT=GeranylGeranyl;AC=48;CF=H(32) C(20);MM=272.250401", "Flavin adenine dinucleotide": "NT=FAD;AC=50;CF=H(31) C(27) N(9) O(15) P(2);MM=783.141486", "N-acyl diglyceride cysteine": "NT=Tripalmitate;AC=51;CF=H(96) C(51) O(5);MM=788.725777", "Guanidination": "NT=Guanidinyl;AC=52;CF=H(2) C N(2);MM=42.021798", "4-hydroxynonenal (HNE)": "NT=HNE;AC=53;CF=H(16) C(9) O(2);MM=156.11503", "hexuronic acid": "NT=Glucuronyl;AC=54;CF=HexA;MM=176.032088", "glutathione disulfide": "NT=Glutathione;AC=55;CF=H(15) C(10) N(3) O(6) S;MM=305.068156", "Acetate labeling reagent (N-term & K) (heavy form, +3amu)": "NT=Acetyl:2H(3);AC=56;CF=H(-1) 2H(3) C(2) O;MM=45.029395", "Propionate labeling reagent light form (N-term & K)": "NT=Propionyl;AC=58;CF=H(4) C(3) O;MM=56.026215", "Propionate labeling reagent heavy form (+3amu), N-term & K": "NT=Propionyl:13C(3);AC=59;CF=H(4) 13C(3) O;MM=59.036279", "Quaternary amine labeling reagent light form (N-term & K)": "NT=GIST-Quat;AC=60;CF=H(13) C(7) N O;MM=127.099714", "Quaternary amine labeling reagent heavy (+3amu) form, N-term & K": "NT=GIST-Quat:2H(3);AC=61;CF=H(10) 2H(3) C(7) N O;MM=130.118544", "Quaternary amine labeling reagent heavy form (+6amu), N-term & K": "NT=GIST-Quat:2H(6);AC=62;CF=H(7) 2H(6) C(7) N O;MM=133.137375", "Quaternary amine labeling reagent heavy form (+9amu), N-term & K": "NT=GIST-Quat:2H(9);AC=63;CF=H(4) 2H(9) C(7) N O;MM=136.156205", "Succinic anhydride labeling reagent light form (N-term & K)": "NT=Succinyl;AC=64;CF=H(4) C(4) O(3);MM=100.016044", "Succinic anhydride labeling reagent, heavy form (+4amu, 4H2), N-term & K": "NT=Succinyl:2H(4);AC=65;CF=2H(4) C(4) O(3);MM=104.041151", "Succinic anhydride labeling reagent, heavy form (+4amu, 4C13), N-term & K": "NT=Succinyl:13C(4);AC=66;CF=H(4) 13C(4) O(3);MM=104.029463", "Iminobiotinylation": "NT=Iminobiotin;AC=89;CF=H(15) C(10) N(3) O S;MM=225.093583", "ESP-Tag light d0": "NT=ESP;AC=90;CF=H(26) C(16) N(4) O(2) S;MM=338.177647", "ESP-Tag heavy d10": "NT=ESP:2H(10);AC=91;CF=H(16) 2H(10) C(16) N(4) O(2) S;MM=348.240414", "IMID d0": "NT=IMID;AC=94;CF=H(4) C(3) N(2);MM=68.037448", "IMID d4": "NT=IMID:2H(4);AC=95;CF=2H(4) C(3) N(2);MM=72.062555", "Acrylamide d3": "NT=Propionamide:2H(3);AC=97;CF=H(2) 2H(3) C(3) N O;MM=74.055944", "Applied Biosystems cleavable ICAT(TM) light": "NT=ICAT-C;AC=105;CF=H(17) C(10) N(3) O(3);MM=227.126991", "Applied Biosystems cleavable ICAT(TM) heavy": "NT=ICAT-C:13C(9);AC=106;CF=H(17) C 13C(9) N(3) O(3);MM=236.157185", "Addition of N-formyl met": "NT=FormylMet;AC=107;CF=H(9) C(6) N O(2) S;MM=159.035399", "N-ethylmaleimide on cysteines": "NT=Nethylmaleimide;AC=108;CF=H(7) C(6) N O(2);MM=125.047679", "Oxidized lysine biotinylated with biotin-LC-hydrazide, reduced": "NT=OxLysBiotinRed;AC=112;CF=H(26) C(16) N(4) O(3) S;MM=354.172562", "Oxidized lysine biotinylated with biotin-LC-hydrazide": "NT=OxLysBiotin;AC=113;CF=H(24) C(16) N(4) O(3) S;MM=352.156911", "Oxidized proline biotinylated with biotin-LC-hydrazide, reduced": "NT=OxProBiotinRed;AC=114;CF=H(29) C(16) N(5) O(3) S;MM=371.199111", "Oxidized Proline biotinylated with biotin-LC-hydrazide": "NT=OxProBiotin;AC=115;CF=H(27) C(16) N(5) O(3) S;MM=369.183461", "Oxidized arginine biotinylated with biotin-LC-hydrazide": "NT=OxArgBiotin;AC=116;CF=H(22) C(15) N(2) O(3) S;MM=310.135113", "Oxidized arginine biotinylated with biotin-LC-hydrazide, reduced": "NT=OxArgBiotinRed;AC=117;CF=H(24) C(15) N(2) O(3) S;MM=312.150763", "EDT-iodo-PEO-biotin": "NT=EDT-iodoacetyl-PEO-biotin;AC=118;CF=H(34) C(20) N(4) O(4) S(3);MM=490.174218", "Thio Ether Formation - BTP Adduct": "NT=IBTP;AC=119;CF=H(21) C(22) P;MM=316.138088", "ubiquitinylation residue": "NT=GG;AC=121;CF=H(6) C(4) N(2) O(2);MM=114.042927", "Formylation": "NT=Formyl;AC=122;CF=C O;MM=27.994915", "N-iodoacetyl, p-chlorobenzyl-12C6-glucamine": "NT=ICAT-H;AC=123;CF=H(20) C(15) N O(6) Cl;MM=345.097915", "N-iodoacetyl, p-chlorobenzyl-13C6-glucamine": "NT=ICAT-H:13C(6);AC=124;CF=H(20) C(9) 13C(6) N O(6) Cl;MM=351.118044", "Cleaved and reduced DSP/DTSSP crosslinker": "NT=Xlink:DTSSP[88];AC=126;CF=H(4) C(3) O S;MM=87.998285", "fluorination": "NT=Fluoro;AC=127;CF=H(-1) F;MM=17.990578", "5-Iodoacetamidofluorescein (Molecular Probe, Eugene, OR)": "NT=Fluorescein;AC=128;CF=H(13) C(22) N O(6);MM=387.074287", "Iodination": "NT=Iodo;AC=129;CF=H(-1) I;MM=125.896648", "di-Iodination": "NT=Diiodo;AC=130;CF=H(-2) I(2);MM=251.793296", "tri-Iodination": "NT=Triiodo;AC=131;CF=H(-3) I(3);MM=377.689944", "(cis-delta 5)-tetradecaenoyl": "NT=Myristoleyl;AC=134;CF=H(24) C(14) O;MM=208.182715", "(cis,cis-delta 5, delta 8)-tetradecadienoyl": "NT=Myristoyl+Delta:H(-4);AC=135;CF=H(22) C(14) O;MM=206.167065", "labeling reagent light form (N-term & K)": "NT=Benzoyl;AC=136;CF=H(4) C(7) O;MM=104.026215", "M5/Man5": "NT=Hex(5)HexNAc(2);AC=137;CF=Hex(5) HexNAc(2);MM=1216.422863", "5-dimethylaminonaphthalene-1-sulfonyl": "NT=Dansyl;AC=139;CF=H(11) C(12) N O(2) S;MM=233.051049", "ISD a-series (C-Term)": "NT=a-type-ion;AC=140;CF=H(-2) C(-1) O(-2);MM=-46.005479", "amidination of lysines or N-terminal amines with methyl acetimidate": "NT=Amidine;AC=141;CF=H(3) C(2) N;MM=41.026549", "HexNAc1dHex1": "NT=HexNAc(1)dHex(1);AC=142;CF=dHex HexNAc;MM=349.137281", "HexNAc2": "NT=HexNAc(2);AC=143;CF=HexNAc(2);MM=406.158745", "Hex3": "NT=Hex(3);AC=144;CF=Hex(3);MM=486.158471", "HexNAc1dHex2": "NT=HexNAc(1)dHex(2);AC=145;CF=dHex(2) HexNAc;MM=495.19519", "Hex1HexNAc1dHex1": "NT=Hex(1)HexNAc(1)dHex(1);AC=146;CF=dHex Hex HexNAc;MM=511.190105", "HexNAc2dHex1": "NT=HexNAc(2)dHex(1);AC=147;CF=dHex HexNAc(2);MM=552.216654", "Hex1HexNAc2": "NT=Hex(1)HexNAc(2);AC=148;CF=Hex HexNAc(2);MM=568.211569", "Hex1HexNAc1NeuAc1": "NT=Hex(1)HexNAc(1)NeuAc(1);AC=149;CF=Hex HexNAc NeuAc;MM=656.227613", "HexNAc2dHex2": "NT=HexNAc(2)dHex(2);AC=150;CF=dHex(2) HexNAc(2);MM=698.274563", "Hex1HexNAc2Pent1": "NT=Hex(1)HexNAc(2)Pent(1);AC=151;CF=Pent Hex HexNAc(2);MM=700.253828", "Hex1HexNAc2dHex1": "NT=Hex(1)HexNAc(2)dHex(1);AC=152;CF=dHex Hex HexNAc(2);MM=714.269478", "Hex2HexNAc2": "NT=Hex(2)HexNAc(2);AC=153;CF=Hex(2) HexNAc(2);MM=730.264392", "Hex3HexNAc1Pent1": "NT=Hex(3)HexNAc(1)Pent(1);AC=154;CF=Pent Hex(3) HexNAc;MM=821.280102", "Hex1HexNAc2dHex1Pent1": "NT=Hex(1)HexNAc(2)dHex(1)Pent(1);AC=155;CF=Pent dHex Hex HexNAc(2);MM=846.311736", "Hex1HexNAc2dHex2": "NT=Hex(1)HexNAc(2)dHex(2);AC=156;CF=dHex(2) Hex HexNAc(2);MM=860.327386", "Hex2HexNAc2Pent1": "NT=Hex(2)HexNAc(2)Pent(1);AC=157;CF=Pent Hex(2) HexNAc(2);MM=862.306651", "Hex2HexNAc2dHex1": "NT=Hex(2)HexNAc(2)dHex(1);AC=158;CF=dHex Hex(2) HexNAc(2);MM=876.322301", "M3/Man3": "NT=Hex(3)HexNAc(2);AC=159;CF=Hex(3) HexNAc(2);MM=892.317216", "Hex HexNAc NeuAc(2) ---OR--- Hex HexNAc(3) HexA": "NT=Hex(1)HexNAc(1)NeuAc(2);AC=160;CF=Hex HexNAc NeuAc(2);MM=947.323029", "Hex(3) HexNAc(2) Phos": "NT=Hex(3)HexNAc(2)Phos(1);AC=161;CF=H O(3) P Hex(3) HexNAc(2);MM=972.283547", "Selenium replaces sulfur": "NT=Delta:S(-1)Se(1);AC=162;CF=S(-1) Se;MM=47.944449", "glycosylated asparagine 18O labeling": "NT=Delta:H(-1)N(-1)18O(1);AC=170;CF=H(-1) N(-1) 18O;MM=2.988261", "Shimadzu NBS-13C": "NT=NBS:13C(6);AC=171;CF=H(3) 13C(6) N O(2) S;MM=159.008578", "Shimadzu NBS-12C": "NT=NBS;AC=172;CF=H(3) C(6) N O(2) S;MM=152.988449", "Michael addition of BHT quinone methide to Cysteine and Lysine": "NT=BHT;AC=176;CF=H(22) C(15) O;MM=218.167065", "phosphorylation to amine thiol": "NT=DAET;AC=178;CF=H(9) C(4) N O(-1) S;MM=87.050655", "13C(9) Silac label": "NT=Label:13C(9);AC=184;CF=C(-9) 13C(9);MM=9.030193", "C13 label (Phosphotyrosine)": "NT=Label:13C(9)+Phospho;AC=185;CF=H C(-9) 13C(9) O(3) P;MM=88.996524", "Hydroxyphenylglyoxal arginine": "NT=HPG;AC=186;CF=H(4) C(8) O(2);MM=132.021129", "bis(hydroxphenylglyoxal) arginine": "NT=2HPG;AC=187;CF=H(10) C(16) O(5);MM=282.052824", "13C(6) Silac label": "NT=Label:13C(6);AC=188;CF=C(-6) 13C(6);MM=6.020129", "O18 label at both C-terminal oxygens": "NT=Label:18O(2);AC=193;CF=O(-2) 18O(2);MM=4.008491", "6-aminoquinolyl-N-hydroxysuccinimidyl carbamate": "NT=AccQTag;AC=194;CF=H(6) C(10) N(2) O;MM=170.048013", "APTA-d0": "NT=QAT;AC=195;CF=H(19) C(9) N(2) O;MM=171.149738", "APTA d3": "NT=QAT:2H(3);AC=196;CF=H(16) 2H(3) C(9) N(2) O;MM=174.168569", "EAPTA d0": "NT=EQAT;AC=197;CF=H(20) C(10) N(2) O;MM=184.157563", "EAPTA d5": "NT=EQAT:2H(5);AC=198;CF=H(15) 2H(5) C(10) N(2) O;MM=189.188947", "DiMethyl-CHD2": "NT=Dimethyl:2H(4);AC=199;CF=2H(4) C(2);MM=32.056407", "EDT": "NT=Ethanedithiol;AC=200;CF=H(4) C(2) O(-1) S(2);MM=75.980527", "Acrolein addition +94": "NT=Delta:H(6)C(6)O(1);AC=205;CF=H(6) C(6) O;MM=94.041865", "Acrolein addition +56": "NT=Delta:H(4)C(3)O(1);AC=206;CF=H(4) C(3) O;MM=56.026215", "Acrolein addition +38": "NT=Delta:H(2)C(3);AC=207;CF=H(2) C(3);MM=38.01565", "Acrolein addition +76": "NT=Delta:H(4)C(6);AC=208;CF=H(4) C(6);MM=76.0313", "Acrolein addition +112": "NT=Delta:H(8)C(6)O(2);AC=209;CF=H(8) C(6) O(2);MM=112.05243", "N-ethyl iodoacetamide-d0": "NT=NEIAA;AC=211;CF=H(7) C(4) N O;MM=85.052764", "N-ethyl iodoacetamide-d5": "NT=NEIAA:2H(5);AC=212;CF=H(2) 2H(5) C(4) N O;MM=90.084148", "ADP Ribose addition": "NT=ADP-Ribosyl;AC=213;CF=H(13) C(10) N(5) O(9) P(2) Pent;MM=541.06111", "Representative mass and accurate mass for 116 & 117": "NT=iTRAQ4plex;AC=214;CF=H(12) C(4) 13C(3) N 15N O;MM=144.102063", "Light IDBEST tag for quantitation": "NT=IGBP;AC=243;CF=H(13) C(12) N(2) O(2) Br;MM=296.016039", "Acetaldehyde +26": "NT=Delta:H(2)C(2);AC=254;CF=H(2) C(2);MM=26.01565", "Acetaldehyde +28": "NT=Delta:H(4)C(2);AC=255;CF=H(4) C(2);MM=28.0313", "Propionaldehyde +40": "NT=Delta:H(4)C(3);AC=256;CF=H(4) C(3);MM=40.0313", "O18 Labeling": "NT=Label:18O(1);AC=258;CF=O(-1) 18O;MM=2.004246", "13C(6) 15N(2) Silac label": "NT=Label:13C(6)15N(2);AC=259;CF=C(-6) 13C(6) N(-2) 15N(2);MM=8.014199", "Thiophosphorylation": "NT=Thiophospho;AC=260;CF=H O(2) P S;MM=95.943487", "4-sulfophenyl isothiocyanate": "NT=SPITC;AC=261;CF=H(5) C(7) N O(3) S(2);MM=214.971084", "Trideuteration": "NT=Label:2H(3);AC=262;CF=H(-3) 2H(3);MM=3.01883", "phosphorylation to pyridyl thiol": "NT=PET;AC=264;CF=H(7) C(7) N O(-1) S;MM=121.035005", "13C(6) 15N(4) Silac label": "NT=Label:13C(6)15N(4);AC=267;CF=C(-6) 13C(6) N(-4) 15N(4);MM=10.008269", "13C(5) 15N(1) Silac label": "NT=Label:13C(5)15N(1);AC=268;CF=C(-5) 13C(5) N(-1) 15N;MM=6.013809", "13C(9) 15N(1) Silac label": "NT=Label:13C(9)15N(1);AC=269;CF=C(-9) 13C(9) N(-1) 15N;MM=10.027228", "nucleophilic addtion to cytopiloyne": "NT=Cytopiloyne;AC=270;CF=H(22) C(19) O(7);MM=362.136553", "nucleophilic addition to cytopiloyne+H2O": "NT=Cytopiloyne+water;AC=271;CF=H(24) C(19) O(8);MM=380.147118", "sulfonation of N-terminus": "NT=CAF;AC=272;CF=H(4) C(3) O(4) S;MM=135.983029", "nitrosylation": "NT=Nitrosyl;AC=275;CF=H(-1) N O;MM=28.990164", "Aminoethylbenzenesulfonylation": "NT=AEBS;AC=276;CF=H(9) C(8) N O(2) S;MM=183.035399", "Ethanolation": "NT=Ethanolyl;AC=278;CF=H(4) C(2) O;MM=44.026215", "Ethylation": "NT=Ethyl;AC=280;CF=H(4) C(2);MM=28.0313", "Cysteine modified Coenzyme A": "NT=CoenzymeA;AC=281;CF=H(34) C(21) N(7) O(16) P(3) S;MM=765.09956", "Deuterium Methylation of Lysine": "NT=Methyl:2H(2);AC=284;CF=2H(2) C;MM=16.028204", "Light Sulfanilic Acid (SA) C12": "NT=SulfanilicAcid;AC=285;CF=H(5) C(6) N O(2) S;MM=155.004099", "Heavy Sulfanilic Acid (SA) C13": "NT=SulfanilicAcid:13C(6);AC=286;CF=H(5) 13C(6) N O(2) S;MM=161.024228", "Tryptophan oxidation to oxolactone": "NT=Trp->Oxolactone;AC=288;CF=H(-2) O;MM=13.979265", "Biotin polyethyleneoxide amine": "NT=Biotin-PEO-Amine;AC=289;CF=H(28) C(16) N(4) O(3) S;MM=356.188212", "Pierce EZ-Link Biotin-HPDP": "NT=Biotin-HPDP;AC=290;CF=H(32) C(19) N(4) O(3) S(2);MM=428.191582", "Mercury Mercaptan": "NT=Delta:Hg(1);AC=291;CF=Hg;MM=201.970617", "(Iodo)-uracil MP": "NT=IodoU-AMP;AC=292;CF=H(11) C(9) N(2) O(9) P;MM=322.020217", "3-(carbamidomethylthio)propanoyl": "NT=CAMthiopropanoyl;AC=293;CF=H(7) C(5) N O(2) S;MM=145.019749", "biotinoyl-iodoacetyl-ethylenediamine": "NT=IED-Biotin;AC=294;CF=H(22) C(14) N(4) O(3) S;MM=326.141261", "Fucose": "NT=dHex;AC=295;CF=dHex;MM=146.057909", "deuterated methyl ester": "NT=Methyl:2H(3);AC=298;CF=H(-1) 2H(3) C;MM=17.03448", "Carboxylation": "NT=Carboxy;AC=299;CF=C O(2);MM=43.989829", "Monobromobimane derivative": "NT=Bromobimane;AC=301;CF=H(10) C(10) N(2) O(2);MM=190.074228", "Menadione quinone derivative": "NT=Menadione;AC=302;CF=H(6) C(11) O(2);MM=170.036779", "Cysteine mercaptoethanol": "NT=DeStreak;AC=303;CF=H(4) C(2) O S;MM=75.998285", "FA2/G0F": "NT=dHex(1)Hex(3)HexNAc(4);AC=305;CF=dHex Hex(3) HexNAc(4);MM=1444.53387", "FA2G1/G1F": "NT=dHex(1)Hex(4)HexNAc(4);AC=307;CF=dHex Hex(4) HexNAc(4);MM=1606.586693", "FA2G2/G2F": "NT=dHex(1)Hex(5)HexNAc(4);AC=308;CF=dHex Hex(5) HexNAc(4);MM=1768.639517", "A2/G0": "NT=Hex(3)HexNAc(4);AC=309;CF=Hex(3) HexNAc(4);MM=1298.475961", "A2G1/G1": "NT=Hex(4)HexNAc(4);AC=310;CF=Hex(4) HexNAc(4);MM=1460.528784", "A2G2/G2": "NT=Hex(5)HexNAc(4);AC=311;CF=Hex(5) HexNAc(4);MM=1622.581608", "Cysteinylation": "NT=Cysteinyl;AC=312;CF=H(5) C(3) N O(2) S;MM=119.004099", "Loss of Lysine": "NT=Lys-loss;AC=313;CF=H(-12) C(-6) N(-2) O(-1);MM=-128.094963", "2,5-dimethypyrrole": "NT=DimethylpyrroleAdduct;AC=316;CF=H(6) C(6);MM=78.04695", "MDA adduct +62": "NT=Delta:H(2)C(5);AC=318;CF=H(2) C(5);MM=62.01565", "MDA adduct +54": "NT=Delta:H(2)C(3)O(1);AC=319;CF=H(2) C(3) O;MM=54.010565", "Nethylmaleimidehydrolysis": "NT=Nethylmaleimide+water;AC=320;CF=H(9) C(6) N O(3);MM=143.058243", "bis-((N-iodoacetyl)piperazinyl)sulfonerhodamine": "NT=Xlink:B10621;AC=323;CF=H(30) C(31) N(4) O(6) S I;MM=713.093079", "Cleaved and reduced DTBP crosslinker": "NT=Xlink:DTBP[87];AC=324;CF=H(5) C(3) N S;MM=87.01427", "10-ethoxyphosphinyl-N-(biotinamidopentyl)decanamide": "NT=FP-Biotin;AC=325;CF=H(49) C(27) N(4) O(5) P S;MM=572.316129", "S-Ethylcystine from Serine": "NT=Delta:H(4)C(2)O(-1)S(1);AC=327;CF=H(4) C(2) O(-1) S;MM=44.008456", "monomethylation": "NT=Methyl:2H(3)13C(1);AC=329;CF=H(-1) 2H(3) 13C;MM=18.037835", "dimethylation": "NT=Dimethyl:2H(6)13C(2);AC=330;CF=H(-2) 2H(6) 13C(2);MM=36.07567", "thiophosphate labeled with biotin-HPDP": "NT=Thiophos-S-S-biotin;AC=332;CF=H(34) C(19) N(4) O(5) P S(3);MM=525.142894", "6-N-biotinylaminohexyl isopropyl phosphate": "NT=Can-FP-biotin;AC=333;CF=H(34) C(19) N(3) O(5) P S;MM=447.195679", "reduced 4-Hydroxynonenal": "NT=HNE+Delta:H(2);AC=335;CF=H(18) C(9) O(2);MM=158.13068", "Michael addition with methylamine": "NT=Methylamine;AC=337;CF=H(3) C N O(-1);MM=13.031634", "bromination": "NT=Bromo;AC=340;CF=H(-1) Br;MM=77.910511", "Tyrosine oxidation to 2-aminotyrosine": "NT=Amino;AC=342;CF=H N;MM=15.010899", "oxidized Arginine biotinylated with biotin hydrazide": "NT=Argbiotinhydrazide;AC=343;CF=H(13) C(9) N O(2) S;MM=199.066699", "Arginine oxidation to glutamic semialdehyde": "NT=Arg->GluSA;AC=344;CF=H(-5) C(-1) N(-3) O;MM=-43.053433", "cysteine oxidation to cysteic acid": "NT=Trioxidation;AC=345;CF=O(3);MM=47.984744", "His->Asn substitution": "NT=His->Asn;AC=348;CF=H(-1) C(-2) N(-1) O;MM=-23.015984", "His->Asp substitution": "NT=His->Asp;AC=349;CF=H(-2) C(-2) N(-2) O(2);MM=-22.031969", "tryptophan oxidation to hydroxykynurenin": "NT=Trp->Hydroxykynurenin;AC=350;CF=C(-1) O(2);MM=19.989829", "tryptophan oxidation to kynurenin": "NT=Trp->Kynurenin;AC=351;CF=C(-1) O;MM=3.994915", "Lysine oxidation to aminoadipic semialdehyde": "NT=Lys->Allysine;AC=352;CF=H(-3) N(-1) O;MM=-1.031634", "oxidized Lysine biotinylated with biotin hydrazide": "NT=Lysbiotinhydrazide;AC=353;CF=H(15) C(10) N(3) O(2) S;MM=241.088497", "Oxidation to nitro": "NT=Nitro;AC=354;CF=H(-1) N O(2);MM=44.985078", "oxidized proline biotinylated with biotin hydrazide": "NT=probiotinhydrazide;AC=357;CF=H(18) C(10) N(4) O(2) S;MM=258.115047", "proline oxidation to pyroglutamic acid": "NT=Pro->pyro-Glu;AC=359;CF=H(-2) O;MM=13.979265", "Proline oxidation to pyrrolidinone": "NT=Pro->Pyrrolidinone;AC=360;CF=H(-2) C(-1) O(-1);MM=-30.010565", "oxidized Threonine biotinylated with biotin hydrazide": "NT=Thrbiotinhydrazide;AC=361;CF=H(16) C(10) N(4) O S;MM=240.104482", "O-Diisopropylphosphorylation": "NT=Diisopropylphosphate;AC=362;CF=H(13) C(6) O(3) P;MM=164.060231", "O-Isopropylphosphorylation": "NT=Isopropylphospho;AC=363;CF=H(7) C(3) O(3) P;MM=122.013281", "Bruker Daltonics SERVA-ICPL(TM) quantification chemistry, heavy form": "NT=ICPL:13C(6);AC=364;CF=H(3) 13C(6) N O;MM=111.041593", "Bruker Daltonics SERVA-ICPL(TM) quantification chemistry, light form": "NT=ICPL;AC=365;CF=H(3) C(6) N O;MM=105.021464", "Deamidation in presence of O18": "NT=Deamidated:18O(1);AC=366;CF=H(-1) N(-1) 18O;MM=2.988261", "Dehydroalanine (from Cysteine)": "NT=Cys->Dha;AC=368;CF=H(-2) S(-1);MM=-33.987721", "Pyrrolidone from Proline": "NT=Pro->Pyrrolidone;AC=369;CF=C(-1) O(-1);MM=-27.994915", "Michael addition of hydroxymethylvinyl ketone to cysteine": "NT=HMVK;AC=371;CF=H(6) C(4) O(2);MM=86.036779", "Ornithine from Arginine": "NT=Arg->Orn;AC=372;CF=H(-2) C(-1) N(-2);MM=-42.021798", "Half of a disulfide bridge": "NT=Dehydro;AC=374;CF=H(-1);MM=-1.007825", "hydroxyfarnesyl": "NT=Hydroxyfarnesyl;AC=376;CF=H(24) C(15) O;MM=220.182715", "diacylglycerol": "NT=Diacylglycerol;AC=377;CF=H(68) C(37) O(4);MM=576.511761", "carboxyethyl": "NT=Carboxyethyl;AC=378;CF=H(4) C(3) O(2);MM=72.021129", "hypusine": "NT=Hypusine;AC=379;CF=H(9) C(4) N O;MM=87.068414", "retinal": "NT=Retinylidene;AC=380;CF=H(26) C(20);MM=266.203451", "alpha-amino adipic acid": "NT=Lys->AminoadipicAcid;AC=381;CF=H(-3) N(-1) O(2);MM=14.96328", "pyruvic acid from N-term cys": "NT=Cys->PyruvicAcid;AC=382;CF=H(-3) N(-1) O S(-1);MM=-33.003705", "Loss of ammonia": "NT=Ammonia-loss;AC=385;CF=H(-3) N(-1);MM=-17.026549", "phycocyanobilin": "NT=Phycocyanobilin;AC=387;CF=H(38) C(33) N(4) O(6);MM=586.279135", "phycoerythrobilin": "NT=Phycoerythrobilin;AC=388;CF=H(40) C(33) N(4) O(6);MM=588.294785", "phytochromobilin": "NT=Phytochromobilin;AC=389;CF=H(36) C(33) N(4) O(6);MM=584.263485", "heme": "NT=Heme;AC=390;CF=H(32) C(34) N(4) O(4) Fe;MM=616.177295", "molybdopterin": "NT=Molybdopterin;AC=391;CF=H(11) C(10) N(5) O(8) P S(2) Mo;MM=521.884073", "quinone": "NT=Quinone;AC=392;CF=H(-2) O(2);MM=29.974179", "glucosylgalactosyl hydroxylysine": "NT=Glucosylgalactosyl;AC=393;CF=O Hex(2);MM=340.100562", "glycosylphosphatidylinositol": "NT=GPIanchor;AC=394;CF=H(6) C(2) N O(3) P;MM=123.00853", "phosphoribosyl dephospho-coenzyme A": "NT=PhosphoribosyldephosphoCoA;AC=395;CF=H(42) C(26) N(7) O(19) P(3) S;MM=881.146904", "glycerylphosphorylethanolamine": "NT=GlycerylPE;AC=396;CF=H(12) C(5) N O(5) P;MM=197.04531", "triiodo": "NT=Triiodothyronine;AC=397;CF=H C(6) O I(3);MM=469.716159", "tetraiodo": "NT=Thyroxine;AC=398;CF=C(6) O I(4);MM=595.612807", "Dehydroalanine (from Tyrosine)": "NT=Tyr->Dha;AC=400;CF=H(-6) C(-6) O(-1);MM=-94.041865", "2-amino-3-oxo-butanoic_acid": "NT=Didehydro;AC=401;CF=H(-2);MM=-2.01565", "oxoalanine": "NT=Cys->Oxoalanine;AC=402;CF=H(-2) O S(-1);MM=-17.992806", "lactic acid from N-term Ser": "NT=Ser->LacticAcid;AC=403;CF=H(-1) N(-1);MM=-15.010899", "AMP": "NT=Phosphoadenosine;AC=405;CF=H(12) C(10) N(5) O(6) P;MM=329.05252", "hydroxycinnamyl": "NT=Hydroxycinnamyl;AC=407;CF=H(6) C(9) O(2);MM=146.036779", "glycosyl-L-hydroxyproline": "NT=Glycosyl;AC=408;CF=H(-2) C(-1) Hex;MM=148.037173", "flavin mononucleotide": "NT=FMNH;AC=409;CF=H(19) C(17) N(4) O(9) P;MM=454.088965", "S-diphytanylglycerol diether": "NT=Archaeol;AC=410;CF=H(86) C(43) O(2);MM=634.662782", "phenyl isocyanate": "NT=Phenylisocyanate;AC=411;CF=H(5) C(7) N O;MM=119.037114", "d5-phenyl isocyanate": "NT=Phenylisocyanate:2H(5);AC=412;CF=2H(5) C(7) N O;MM=124.068498", "phospho-guanosine": "NT=Phosphoguanosine;AC=413;CF=H(12) C(10) N(5) O(7) P;MM=345.047435", "hydroxymethyl": "NT=Hydroxymethyl;AC=414;CF=H(2) C O;MM=30.010565", "L-selenocysteinyl molybdenum bis(molybdopterin guanine dinucleotide)": "NT=MolybdopterinGD+Delta:S(-1)Se(1);AC=415;CF=H(47) C(40) N(20) O(26) P(4) S(3) Se Mo;MM=1620.930224", "dipyrrolylmethanemethyl": "NT=Dipyrrolylmethanemethyl;AC=416;CF=H(22) C(20) N(2) O(8);MM=418.137616", "uridine phosphodiester": "NT=PhosphoUridine;AC=417;CF=H(11) C(9) N(2) O(8) P;MM=306.025302", "glycerophospho": "NT=Glycerophospho;AC=419;CF=H(7) C(3) O(5) P;MM=154.00311", "thiocarboxylic acid": "NT=Carboxy->Thiocarboxy;AC=420;CF=O(-1) S;MM=15.977156", "persulfide": "NT=Sulfide;AC=421;CF=S;MM=31.972071", "N-pyruvic acid 2-iminyl": "NT=PyruvicAcidIminyl;AC=422;CF=H(2) C(3) O(2);MM=70.005479", "selenyl": "NT=Delta:Se(1);AC=423;CF=Se;MM=79.91652", "molybdenum bis(molybdopterin guanine dinucleotide)": "NT=MolybdopterinGD;AC=424;CF=H(47) C(40) N(20) O(26) P(4) S(4) Mo;MM=1572.985775", "dihydroxy": "NT=Dioxidation;AC=425;CF=O(2);MM=31.989829", "octanoyl": "NT=Octanoyl;AC=426;CF=H(14) C(8) O;MM=126.104465", "N-acetylglucosamine-1-phosphoryl": "NT=PhosphoHexNAc;AC=428;CF=H O(3) P HexNAc;MM=283.045704", "phosphoglycosyl-D-mannose-1-phosphoryl": "NT=PhosphoHex;AC=429;CF=H O(3) P Hex;MM=242.019154", "palmitoleyl": "NT=Palmitoleyl;AC=431;CF=H(28) C(16) O;MM=236.214016", "cholesterol ester": "NT=Cholesterol;AC=432;CF=H(44) C(27);MM=368.344302", "3,4-didehydroretinylidene": "NT=Didehydroretinylidene;AC=433;CF=H(24) C(20);MM=264.187801", "cis-14-hydroxy-10,13-dioxo-7-heptadecenoic ester": "NT=CHDH;AC=434;CF=H(26) C(17) O(4);MM=294.183109", "4-methyl-delta-1-pyrroline-5-carboxyl": "NT=Methylpyrroline;AC=435;CF=H(7) C(6) N O;MM=109.052764", "hydroxyheme": "NT=Hydroxyheme;AC=436;CF=H(30) C(34) N(4) O(4) Fe;MM=614.161645", "(3-aminopropyl)(L-aspartyl-1-amino)phosphoryl-5-adenosine": "NT=MicrocinC7;AC=437;CF=H(19) C(13) N(6) O(6) P;MM=386.110369", "cyano": "NT=Cyano;AC=438;CF=H(-1) C N;MM=24.995249", "hydrogenase diiron subcluster": "NT=Diironsubcluster;AC=439;CF=H(-1) C(5) N(2) O(5) S(2) Fe(2);MM=342.786916", "amidino": "NT=Amidino;AC=440;CF=H(2) C N(2);MM=42.021798", "O3-(riboflavin phosphoryl)": "NT=FMN;AC=442;CF=H(19) C(17) N(4) O(8) P;MM=438.094051", "S-(4a-FMN)": "NT=FMNC;AC=443;CF=H(21) C(17) N(4) O(9) P;MM=456.104615", "copper sulfido molybdopterin cytosine dinuncleotide": "NT=CuSMo;AC=444;CF=H(24) C(19) N(8) O(15) P(2) S(3) Cu Mo;MM=922.834855", "5-hydroxy-N6,N6,N6-trimethyl": "NT=Hydroxytrimethyl;AC=445;CF=H(7) C(3) O;MM=59.04969", "reduction": "NT=Deoxy;AC=447;CF=O(-1);MM=-15.994915", "microcin E492 siderophore ester from serine": "NT=Microcin;AC=448;CF=H(37) C(36) N(3) O(20);MM=831.197041", "lipid": "NT=Decanoyl;AC=449;CF=H(18) C(10) O;MM=154.135765", "monoglutamyl": "NT=Glu;AC=450;CF=H(7) C(5) N O(3);MM=129.042593", "diglutamyl": "NT=GluGlu;AC=451;CF=H(14) C(10) N(2) O(6);MM=258.085186", "triglutamyl": "NT=GluGluGlu;AC=452;CF=H(21) C(15) N(3) O(9);MM=387.127779", "tetraglutamyl": "NT=GluGluGluGlu;AC=453;CF=H(28) C(20) N(4) O(12);MM=516.170373", "Hexosamine": "NT=HexN;AC=454;CF=HexN;MM=161.068808", "Free monolink of DMP crosslinker": "NT=Xlink:DMP[154];AC=455;CF=H(14) C(8) N(2) O;MM=154.110613", "Dimethyl pimelimidate crosslink": "NT=Xlink:DMP;AC=456;CF=H(10) C(7) N(2);MM=122.084398", "naphthalene-2,3-dicarboxaldehyde": "NT=NDA;AC=457;CF=H(5) C(13) N;MM=175.042199", "4-sulfophenyl isothiocyanate (Heavy C13)": "NT=SPITC:13C(6);AC=464;CF=H(5) C 13C(6) N O(3) S(2);MM=220.991213", "aminoethylcysteine": "NT=AEC-MAEC;AC=472;CF=H(5) C(2) N O(-1) S;MM=59.019355", "4-trimethyllammoniumbutyryl-": "NT=TMAB;AC=476;CF=H(14) C(7) N O;MM=128.107539", "d9-4-trimethyllammoniumbutyryl-": "NT=TMAB:2H(9);AC=477;CF=H(5) 2H(9) C(7) N O;MM=137.16403", "fluorescein-5-thiosemicarbazide": "NT=FTC;AC=478;CF=H(15) C(21) N(3) O(5) S;MM=421.073241", "4,4,5,5-D4 Lysine": "NT=Label:2H(4);AC=481;CF=H(-4) 2H(4);MM=4.025107", "Dehydropyrrolizidine alkaloid (dehydroretronecine) on cysteines": "NT=DHP;AC=488;CF=H(8) C(8) N;MM=118.065674", "Heptose": "NT=Hep;AC=490;CF=Hep;MM=192.063388", "Bisphenol A diglycidyl ether derivative": "NT=BADGE;AC=493;CF=H(24) C(21) O(4);MM=340.167459", "Cy3 CyDye DIGE Fluor saturation dye": "NT=CyDye-Cy3;AC=494;CF=H(44) C(37) N(4) O(6) S;MM=672.298156", "Cy5 CyDye DIGE Fluor saturation dye": "NT=CyDye-Cy5;AC=495;CF=H(44) C(38) N(4) O(6) S;MM=684.298156", "Michael addition of t-butyl hydroxylated BHT (BHTOH) to C, H or K": "NT=BHTOH;AC=498;CF=H(22) C(15) O(2);MM=234.16198", "Heavy IDBEST tag for quantitation": "NT=IGBP:13C(2);AC=499;CF=H(13) C(10) 13C(2) N(2) O(2) Br;MM=298.022748", "Nmethylmaleimidehydrolysis": "NT=Nmethylmaleimide+water;AC=500;CF=H(7) C(5) N O(3);MM=129.042593", "3-methyl-2-pyridyl isocyanate": "NT=PyMIC;AC=501;CF=H(6) C(7) N(2) O;MM=134.048013", "Levuglandinyl - lysine lactam adduct": "NT=LG-lactam-K;AC=503;CF=H(28) C(20) O(4);MM=332.19876", "Levuglandinyl - lysine hydroxylactam adduct": "NT=LG-Hlactam-K;AC=504;CF=H(28) C(20) O(5);MM=348.193674", "Levuglandinyl - arginine lactam adduct": "NT=LG-lactam-R;AC=505;CF=H(26) C(19) N(-2) O(4);MM=290.176961", "Levuglandinyl - arginine hydroxylactam adduct": "NT=LG-Hlactam-R;AC=506;CF=H(26) C(19) N(-2) O(5);MM=306.171876", "DiMethyl-C13HD2": "NT=Dimethyl:2H(4)13C(2);AC=510;CF=2H(4) 13C(2);MM=34.063117", "Lactosylation": "NT=Hex(2);AC=512;CF=Hex(2);MM=324.105647", "[3-(2,5)-Dioxopyrrolidin-1-yloxycarbonyl)-propyl]dimethyloctylammonium": "NT=C8-QAT;AC=513;CF=H(29) C(14) N O;MM=227.224915", "propyl-1,2-dideoxy-2\\'-methyl-alpha-D-glucopyranoso-[2,1-d]-Delta2\\'-thiazoline": "NT=PropylNAGthiazoline;AC=514;CF=H(14) C(9) N O(4) S;MM=232.064354", "fluorescein-5-maleimide": "NT=FNEM;AC=515;CF=H(13) C(24) N O(7);MM=427.069202", "Diethylation, analogous to Dimethylation": "NT=Diethyl;AC=518;CF=H(8) C(4);MM=56.0626", "4,4\\'-dianilino-1,1\\'-binaphthyl-5,5\\'-disulfonic acid": "NT=BisANS;AC=519;CF=H(22) C(32) N(2) O(6) S(2);MM=594.091928", "Piperidination": "NT=Piperidine;AC=520;CF=H(8) C(5);MM=68.0626", "Maleimide-Biotin": "NT=Maleimide-PEO2-Biotin;AC=522;CF=H(35) C(23) N(5) O(7) S;MM=525.225719", "Biot_LC_LC": "NT=Sulfo-NHS-LC-LC-Biotin;AC=523;CF=H(36) C(22) N(4) O(4) S;MM=452.245726", "Prompt loss of side chain from oxidised Met": "NT=Dethiomethyl;AC=526;CF=H(-4) C(-1) S(-1);MM=-48.003371", "Deamidation followed by a methylation": "NT=Methyl+Deamidated;AC=528;CF=H C N(-1) O;MM=14.999666", "Dimethylation of proline residue": "NT=Delta:H(5)C(2);AC=529;CF=H(5) C(2);MM=29.039125", "Replacement of proton by potassium": "NT=Cation:K;AC=530;CF=H(-1) K;MM=37.955882", "Replacement of proton by copper": "NT=Cation:Cu[I];AC=531;CF=H(-1) Cu;MM=61.921774", "Accurate mass for 114": "NT=iTRAQ4plex114;AC=532;CF=H(12) C(5) 13C(2) N(2) 18O;MM=144.105918", "Accurate mass for 115": "NT=iTRAQ4plex115;AC=533;CF=H(12) C(6) 13C N 15N 18O;MM=144.099599", "Ubiquitination": "NT=LRGG;AC=535;CF=H(29) C(16) N(7) O(4);MM=383.228103", "was 15dB-biotin": "NT=Biotin:Cayman-10141;AC=538;CF=H(54) C(35) N(4) O(4) S;MM=626.386577", "was PGA1-biotin": "NT=Biotin:Cayman-10013;AC=539;CF=H(60) C(36) N(4) O(5) S;MM=660.428442", "Ala->Ser substitution": "NT=Ala->Ser;AC=540;CF=O;MM=15.994915", "Ala->Thr substitution": "NT=Ala->Thr;AC=541;CF=H(2) C O;MM=30.010565", "Ala->Asp substitution": "NT=Ala->Asp;AC=542;CF=C O(2);MM=43.989829", "Ala->Pro substitution": "NT=Ala->Pro;AC=543;CF=H(2) C(2);MM=26.01565", "Ala->Gly substitution": "NT=Ala->Gly;AC=544;CF=H(-2) C(-1);MM=-14.01565", "Ala->Glu substitution": "NT=Ala->Glu;AC=545;CF=H(2) C(2) O(2);MM=58.005479", "Ala->Val substitution": "NT=Ala->Val;AC=546;CF=H(4) C(2);MM=28.0313", "Cys->Phe substitution": "NT=Cys->Phe;AC=547;CF=H(4) C(6) S(-1);MM=44.059229", "Cys->Ser substitution": "NT=Cys->Ser;AC=548;CF=O S(-1);MM=-15.977156", "Cys->Trp substitution": "NT=Cys->Trp;AC=549;CF=H(5) C(8) N S(-1);MM=83.070128", "Cys->Tyr substitution": "NT=Cys->Tyr;AC=550;CF=H(4) C(6) O S(-1);MM=60.054144", "Cys->Arg substitution": "NT=Cys->Arg;AC=551;CF=H(7) C(3) N(3) S(-1);MM=53.091927", "Cys->Gly substitution": "NT=Cys->Gly;AC=552;CF=H(-2) C(-1) S(-1);MM=-45.987721", "Asp->Ala substitution": "NT=Asp->Ala;AC=553;CF=C(-1) O(-2);MM=-43.989829", "Asp->His substitution": "NT=Asp->His;AC=554;CF=H(2) C(2) N(2) O(-2);MM=22.031969", "Asp->Asn substitution": "NT=Asp->Asn;AC=555;CF=H N O(-1);MM=-0.984016", "Asp->Gly substitution": "NT=Asp->Gly;AC=556;CF=H(-2) C(-2) O(-2);MM=-58.005479", "Asp->Tyr substitution": "NT=Asp->Tyr;AC=557;CF=H(4) C(5) O(-1);MM=48.036386", "Asp->Glu substitution": "NT=Asp->Glu;AC=558;CF=H(2) C;MM=14.01565", "Asp->Val substitution": "NT=Asp->Val;AC=559;CF=H(4) C O(-2);MM=-15.958529", "Glu->Ala substitution": "NT=Glu->Ala;AC=560;CF=H(-2) C(-2) O(-2);MM=-58.005479", "Glu->Gln substitution": "NT=Glu->Gln;AC=561;CF=H N O(-1);MM=-0.984016", "Glu->Asp substitution": "NT=Glu->Asp;AC=562;CF=H(-2) C(-1);MM=-14.01565", "Glu->Lys substitution": "NT=Glu->Lys;AC=563;CF=H(5) C N O(-2);MM=-0.94763", "Glu->Gly substitution": "NT=Glu->Gly;AC=564;CF=H(-4) C(-3) O(-2);MM=-72.021129", "Glu->Val substitution": "NT=Glu->Val;AC=565;CF=H(2) O(-2);MM=-29.974179", "Phe->Ser substitution": "NT=Phe->Ser;AC=566;CF=H(-4) C(-6) O;MM=-60.036386", "Phe->Cys substitution": "NT=Phe->Cys;AC=567;CF=H(-4) C(-6) S;MM=-44.059229", "Phe->Leu/Ile substitution": "NT=Phe->Xle;AC=568;CF=H(2) C(-3);MM=-33.98435", "Phe->Tyr substitution": "NT=Phe->Tyr;AC=569;CF=O;MM=15.994915", "Phe->Val substitution": "NT=Phe->Val;AC=570;CF=C(-4);MM=-48.0", "Gly->Ala substitution": "NT=Gly->Ala;AC=571;CF=H(2) C;MM=14.01565", "Gly->Ser substitution": "NT=Gly->Ser;AC=572;CF=H(2) C O;MM=30.010565", "Gly->Trp substitution": "NT=Gly->Trp;AC=573;CF=H(7) C(9) N;MM=129.057849", "Gly->Glu substitution": "NT=Gly->Glu;AC=574;CF=H(4) C(3) O(2);MM=72.021129", "Gly->Val substitution": "NT=Gly->Val;AC=575;CF=H(6) C(3);MM=42.04695", "Gly->Asp substitution": "NT=Gly->Asp;AC=576;CF=H(2) C(2) O(2);MM=58.005479", "Gly->Cys substitution": "NT=Gly->Cys;AC=577;CF=H(2) C S;MM=45.987721", "Gly->Arg substitution": "NT=Gly->Arg;AC=578;CF=H(9) C(4) N(3);MM=99.079647", "His->Pro substitution": "NT=His->Pro;AC=580;CF=C(-1) N(-2);MM=-40.006148", "His->Tyr substitution": "NT=His->Tyr;AC=581;CF=H(2) C(3) N(-2) O;MM=26.004417", "His->Gln substitution": "NT=His->Gln;AC=582;CF=H C(-1) N(-1) O;MM=-9.000334", "His->Arg substitution": "NT=His->Arg;AC=584;CF=H(5) N;MM=19.042199", "His->Leu/Ile substitution": "NT=His->Xle;AC=585;CF=H(4) N(-2);MM=-23.974848", "Leu/Ile->Thr substitution": "NT=Xle->Thr;AC=588;CF=H(-4) C(-2) O;MM=-12.036386", "Leu/Ile->Asn substitution": "NT=Xle->Asn;AC=589;CF=H(-5) C(-2) N O;MM=0.958863", "Leu/Ile->Lys substitution": "NT=Xle->Lys;AC=590;CF=H N;MM=15.010899", "Lys->Thr substitution": "NT=Lys->Thr;AC=594;CF=H(-5) C(-2) N(-1) O;MM=-27.047285", "Lys->Asn substitution": "NT=Lys->Asn;AC=595;CF=H(-6) C(-2) O;MM=-14.052036", "Lys->Glu substitution": "NT=Lys->Glu;AC=596;CF=H(-5) C(-1) N(-1) O(2);MM=0.94763", "Lys->Gln substitution": "NT=Lys->Gln;AC=597;CF=H(-4) C(-1) O;MM=-0.036386", "Lys->Met substitution": "NT=Lys->Met;AC=598;CF=H(-3) C(-1) N(-1) S;MM=2.945522", "Lys->Arg substitution": "NT=Lys->Arg;AC=599;CF=N(2);MM=28.006148", "Lys->Leu/Ile substitution": "NT=Lys->Xle;AC=600;CF=H(-1) N(-1);MM=-15.010899", "Leu/Ile->Ser substitution": "NT=Xle->Ser;AC=601;CF=H(-6) C(-3) O;MM=-26.052036", "Leu/Ile->Phe substitution": "NT=Xle->Phe;AC=602;CF=H(-2) C(3);MM=33.98435", "Leu/Ile->Trp substitution": "NT=Xle->Trp;AC=603;CF=H(-1) C(5) N;MM=72.995249", "Leu/Ile->Pro substitution": "NT=Xle->Pro;AC=604;CF=H(-4) C(-1);MM=-16.0313", "Leu/Ile->Val substitution": "NT=Xle->Val;AC=605;CF=H(-2) C(-1);MM=-14.01565", "Leu/Ile->His substitution": "NT=Xle->His;AC=606;CF=H(-4) N(2);MM=23.974848", "Leu/Ile->Gln substitution": "NT=Xle->Gln;AC=607;CF=H(-3) C(-1) N O;MM=14.974514", "Leu/Ile->Met substitution": "NT=Xle->Met;AC=608;CF=H(-2) C(-1) S;MM=17.956421", "Leu/Ile->Arg substitution": "NT=Xle->Arg;AC=609;CF=H N(3);MM=43.017047", "Met->Thr substitution": "NT=Met->Thr;AC=610;CF=H(-2) C(-1) O S(-1);MM=-29.992806", "Met->Arg substitution": "NT=Met->Arg;AC=611;CF=H(3) C N(3) S(-1);MM=25.060626", "Met->Lys substitution": "NT=Met->Lys;AC=613;CF=H(3) C N S(-1);MM=-2.945522", "Met->Leu/Ile substitution": "NT=Met->Xle;AC=614;CF=H(2) C S(-1);MM=-17.956421", "Met->Val substitution": "NT=Met->Val;AC=615;CF=S(-1);MM=-31.972071", "Asn->Ser substitution": "NT=Asn->Ser;AC=616;CF=H(-1) C(-1) N(-1);MM=-27.010899", "Asn->Thr substitution": "NT=Asn->Thr;AC=617;CF=H N(-1);MM=-12.995249", "Asn->Lys substitution": "NT=Asn->Lys;AC=618;CF=H(6) C(2) O(-1);MM=14.052036", "Asn->Tyr substitution": "NT=Asn->Tyr;AC=619;CF=H(3) C(5) N(-1);MM=49.020401", "Asn->His substitution": "NT=Asn->His;AC=620;CF=H C(2) N O(-1);MM=23.015984", "Asn->Asp substitution": "NT=Asn->Asp;AC=621;CF=H(-1) N(-1) O;MM=0.984016", "Asn->Leu/Ile substitution": "NT=Asn->Xle;AC=622;CF=H(5) C(2) N(-1) O(-1);MM=-0.958863", "Pro->Ser substitution": "NT=Pro->Ser;AC=623;CF=H(-2) C(-2) O;MM=-10.020735", "Pro->Ala substitution": "NT=Pro->Ala;AC=624;CF=H(-2) C(-2);MM=-26.01565", "Pro->His substitution": "NT=Pro->His;AC=625;CF=C N(2);MM=40.006148", "Pro->Gln substitution": "NT=Pro->Gln;AC=626;CF=H N O;MM=31.005814", "Pro->Thr substitution": "NT=Pro->Thr;AC=627;CF=C(-1) O;MM=3.994915", "Pro->Arg substitution": "NT=Pro->Arg;AC=628;CF=H(5) C N(3);MM=59.048347", "Pro->Leu/Ile substitution": "NT=Pro->Xle;AC=629;CF=H(4) C;MM=16.0313", "Gln->Pro substitution": "NT=Gln->Pro;AC=630;CF=H(-1) N(-1) O(-1);MM=-31.005814", "Gln->Lys substitution": "NT=Gln->Lys;AC=631;CF=H(4) C O(-1);MM=0.036386", "Gln->Glu substitution": "NT=Gln->Glu;AC=632;CF=H(-1) N(-1) O;MM=0.984016", "Gln->His substitution": "NT=Gln->His;AC=633;CF=H(-1) C N O(-1);MM=9.000334", "Gln->Arg substitution": "NT=Gln->Arg;AC=634;CF=H(4) C N(2) O(-1);MM=28.042534", "Gln->Leu/Ile substitution": "NT=Gln->Xle;AC=635;CF=H(3) C N(-1) O(-1);MM=-14.974514", "Arg->Ser substitution": "NT=Arg->Ser;AC=636;CF=H(-7) C(-3) N(-3) O;MM=-69.069083", "Arg->Trp substitution": "NT=Arg->Trp;AC=637;CF=H(-2) C(5) N(-2);MM=29.978202", "Arg->Thr substitution": "NT=Arg->Thr;AC=638;CF=H(-5) C(-2) N(-3) O;MM=-55.053433", "Arg->Pro substitution": "NT=Arg->Pro;AC=639;CF=H(-5) C(-1) N(-3);MM=-59.048347", "Arg->Lys substitution": "NT=Arg->Lys;AC=640;CF=N(-2);MM=-28.006148", "Arg->His substitution": "NT=Arg->His;AC=641;CF=H(-5) N(-1);MM=-19.042199", "Arg->Gln substitution": "NT=Arg->Gln;AC=642;CF=H(-4) C(-1) N(-2) O;MM=-28.042534", "Arg->Met substitution": "NT=Arg->Met;AC=643;CF=H(-3) C(-1) N(-3) S;MM=-25.060626", "Arg->Cys substitution": "NT=Arg->Cys;AC=644;CF=H(-7) C(-3) N(-3) S;MM=-53.091927", "Arg->Leu/Ile substitution": "NT=Arg->Xle;AC=645;CF=H(-1) N(-3);MM=-43.017047", "Arg->Gly substitution": "NT=Arg->Gly;AC=646;CF=H(-9) C(-4) N(-3);MM=-99.079647", "Ser->Phe substitution": "NT=Ser->Phe;AC=647;CF=H(4) C(6) O(-1);MM=60.036386", "Ser->Ala substitution": "NT=Ser->Ala;AC=648;CF=O(-1);MM=-15.994915", "Ser->Trp substitution": "NT=Ser->Trp;AC=649;CF=H(5) C(8) N O(-1);MM=99.047285", "Ser->Thr substitution": "NT=Ser->Thr;AC=650;CF=H(2) C;MM=14.01565", "Ser->Asn substitution": "NT=Ser->Asn;AC=651;CF=H C N;MM=27.010899", "Ser->Pro substitution": "NT=Ser->Pro;AC=652;CF=H(2) C(2) O(-1);MM=10.020735", "Ser->Tyr substitution": "NT=Ser->Tyr;AC=653;CF=H(4) C(6);MM=76.0313", "Ser->Cys substitution": "NT=Ser->Cys;AC=654;CF=O(-1) S;MM=15.977156", "Ser->Arg substitution": "NT=Ser->Arg;AC=655;CF=H(7) C(3) N(3) O(-1);MM=69.069083", "Ser->Leu/Ile substitution": "NT=Ser->Xle;AC=656;CF=H(6) C(3) O(-1);MM=26.052036", "Ser->Gly substitution": "NT=Ser->Gly;AC=657;CF=H(-2) C(-1) O(-1);MM=-30.010565", "Thr->Ser substitution": "NT=Thr->Ser;AC=658;CF=H(-2) C(-1);MM=-14.01565", "Thr->Ala substitution": "NT=Thr->Ala;AC=659;CF=H(-2) C(-1) O(-1);MM=-30.010565", "Thr->Asn substitution": "NT=Thr->Asn;AC=660;CF=H(-1) N;MM=12.995249", "Thr->Lys substitution": "NT=Thr->Lys;AC=661;CF=H(5) C(2) N O(-1);MM=27.047285", "Thr->Pro substitution": "NT=Thr->Pro;AC=662;CF=C O(-1);MM=-3.994915", "Thr->Met substitution": "NT=Thr->Met;AC=663;CF=H(2) C O(-1) S;MM=29.992806", "Thr->Leu/Ile substitution": "NT=Thr->Xle;AC=664;CF=H(4) C(2) O(-1);MM=12.036386", "Thr->Arg substitution": "NT=Thr->Arg;AC=665;CF=H(5) C(2) N(3) O(-1);MM=55.053433", "Val->Phe substitution": "NT=Val->Phe;AC=666;CF=C(4);MM=48.0", "Val->Ala substitution": "NT=Val->Ala;AC=667;CF=H(-4) C(-2);MM=-28.0313", "Val->Glu substitution": "NT=Val->Glu;AC=668;CF=H(-2) O(2);MM=29.974179", "Val->Met substitution": "NT=Val->Met;AC=669;CF=S;MM=31.972071", "Val->Asp substitution": "NT=Val->Asp;AC=670;CF=H(-4) C(-1) O(2);MM=15.958529", "Val->Leu/Ile substitution": "NT=Val->Xle;AC=671;CF=H(2) C;MM=14.01565", "Val->Gly substitution": "NT=Val->Gly;AC=672;CF=H(-6) C(-3);MM=-42.04695", "Trp->Ser substitution": "NT=Trp->Ser;AC=673;CF=H(-5) C(-8) N(-1) O;MM=-99.047285", "Trp->Cys substitution": "NT=Trp->Cys;AC=674;CF=H(-5) C(-8) N(-1) S;MM=-83.070128", "Trp->Arg substitution": "NT=Trp->Arg;AC=675;CF=H(2) C(-5) N(2);MM=-29.978202", "Trp->Gly substitution": "NT=Trp->Gly;AC=676;CF=H(-7) C(-9) N(-1);MM=-129.057849", "Trp->Leu/Ile substitution": "NT=Trp->Xle;AC=677;CF=H C(-5) N(-1);MM=-72.995249", "Tyr->Phe substitution": "NT=Tyr->Phe;AC=678;CF=O(-1);MM=-15.994915", "Tyr->Ser substitution": "NT=Tyr->Ser;AC=679;CF=H(-4) C(-6);MM=-76.0313", "Tyr->Asn substitution": "NT=Tyr->Asn;AC=680;CF=H(-3) C(-5) N;MM=-49.020401", "Tyr->His substitution": "NT=Tyr->His;AC=681;CF=H(-2) C(-3) N(2) O(-1);MM=-26.004417", "Tyr->Asp substitution": "NT=Tyr->Asp;AC=682;CF=H(-4) C(-5) O;MM=-48.036386", "Tyr->Cys substitution": "NT=Tyr->Cys;AC=683;CF=H(-4) C(-6) O(-1) S;MM=-60.054144", "Mass Defect Tag on lysine e-amino": "NT=BDMAPP;AC=684;CF=H(12) C(11) N O Br;MM=253.010225", "Nitroalkylation by Nitro Linoleic Acid": "NT=NA-LNO2;AC=685;CF=H(31) C(18) N O(4);MM=325.225309", "Nitroalkylation by Nitro Oleic Acid": "NT=NA-OA-NO2;AC=686;CF=H(33) C(18) N O(4);MM=327.240959", "Bruker Daltonics SERVA-ICPL(TM) quantification chemistry, medium form": "NT=ICPL:2H(4);AC=687;CF=H(-1) 2H(4) C(6) N O;MM=109.046571", "13C(6) 15N(1) Silac label": "NT=Label:13C(6)15N(1);AC=695;CF=C(-6) 13C(6) N(-1) 15N;MM=7.017164", "13C(6) 15N(2) (D)9 SILAC label": "NT=Label:2H(9)13C(6)15N(2);AC=696;CF=H(-9) 2H(9) C(-6) 13C(6) N(-2) 15N(2);MM=17.07069", "Nicotinic Acid": "NT=NIC;AC=697;CF=H(3) C(6) N O;MM=105.021464", "deuterated Nicotinic Acid": "NT=dNIC;AC=698;CF=H 2H(3) C(6) N O;MM=109.048119", "Dehydrated 4-hydroxynonenal": "NT=HNE-Delta:H(2)O;AC=720;CF=H(14) C(9) O;MM=138.104465", "4-Oxononenal (ONE)": "NT=4-ONE;AC=721;CF=H(14) C(9) O(2);MM=154.09938", "O-Dimethylphosphorylation": "NT=O-Dimethylphosphate;AC=723;CF=H(5) C(2) O(3) P;MM=107.997631", "O-Methylphosphorylation": "NT=O-Methylphosphate;AC=724;CF=H(3) C O(3) P;MM=93.981981", "O-Diethylphosphorylation": "NT=Diethylphosphate;AC=725;CF=H(9) C(4) O(3) P;MM=136.028931", "O-Ethylphosphorylation": "NT=Ethylphosphate;AC=726;CF=H(5) C(2) O(3) P;MM=107.997631", "O-pinacolylmethylphosphonylation": "NT=O-pinacolylmethylphosphonate;AC=727;CF=H(15) C(7) O(2) P;MM=162.080967", "Methylphosphonylation": "NT=Methylphosphonate;AC=728;CF=H(3) C O(2) P;MM=77.987066", "O-Isopropylmethylphosphonylation": "NT=O-Isopropylmethylphosphonate;AC=729;CF=H(9) C(4) O(2) P;MM=120.034017", "Representative mass and accurate mass for 113, 114, 116 & 117": "NT=iTRAQ8plex;AC=730;CF=H(24) C(7) 13C(7) N(3) 15N O(3);MM=304.20536", "Accurate mass for 115, 118, 119 & 121": "NT=iTRAQ8plex:13C(6)15N(2);AC=731;CF=H(24) C(8) 13C(6) N(2) 15N(2) O(3);MM=304.19904", "Carboxyl modification with ethanolamine": "NT=Ethanolamine;AC=734;CF=H(5) C(2) N;MM=43.042199", "Beta elimination of modified S or T followed by Michael addition of DTT": "NT=BEMAD_ST;AC=735;CF=H(8) C(4) O S(2);MM=136.001656", "Beta elimination of alkylated Cys followed by Michael addition of DTT": "NT=BEMAD_C;AC=736;CF=H(8) C(4) O(2) S;MM=120.0245", "Sixplex Tandem Mass Tag\u00ae": "NT=TMT6plex;AC=737;CF=H(20) C(8) 13C(4) N 15N O(2);MM=229.162932", "Duplex Tandem Mass Tag\u00ae": "NT=TMT2plex;AC=738;CF=H(20) C(11) 13C N(2) O(2);MM=225.155833", "Native Tandem Mass Tag\u00ae": "NT=TMT;AC=739;CF=H(20) C(12) N(2) O(2);MM=224.152478", "ExacTag Thiol label mass for 2-4-7-10 plex": "NT=ExacTagThiol;AC=740;CF=H(50) C(23) 13C(12) N(8) 15N(6) O(18);MM=972.365219", "ExacTag Amine label mass for 2-4-7-10 plex": "NT=ExacTagAmine;AC=741;CF=H(52) C(25) 13C(12) N(8) 15N(6) O(19) S;MM=1046.347854", "Dehydrated 4-Oxononenal Michael adduct": "NT=4-ONE+Delta:H(-2)O(-1);AC=743;CF=H(12) C(9) O;MM=136.088815", "Nitroso Sulfamethoxazole Sulphenamide thiol adduct": "NT=NO_SMX_SEMD;AC=744;CF=H(9) C(10) N(3) O(3) S;MM=251.036462", "Nitroso Sulfamethoxazole Sulfinamide thiol adduct": "NT=NO_SMX_SIMD;AC=746;CF=H(9) C(10) N(3) O(4) S;MM=267.031377", "Malonylation": "NT=Malonyl;AC=747;CF=H(2) C(3) O(3);MM=86.000394", "derivatization by N-term modification using 3-Sulfobenzoic succinimidyl ester": "NT=3sulfo;AC=748;CF=H(4) C(7) O(4) S;MM=183.983029", "trifluoroleucine replacement of leucine": "NT=trifluoro;AC=750;CF=H(-3) F(3);MM=53.971735", "tri nitro benzene": "NT=TNBS;AC=751;CF=H C(6) N(3) O(6);MM=210.986535", "Isotope Distribution Encoded Tag": "NT=IDEnT;AC=762;CF=H(7) C(9) N O Cl(2);MM=214.990469", "Beta elimination of modified S or T followed by Michael addition of labelled DTT": "NT=BEMAD_ST:2H(6);AC=763;CF=H(2) 2H(6) C(4) O S(2);MM=142.039317", "Beta elimination of alkylated Cys followed by Michael addition of labelled DTT": "NT=BEMAD_C:2H(6);AC=764;CF=H(2) 2H(6) C(4) O(2) S;MM=126.062161", "Removal of initiator methionine from protein N-terminus": "NT=Met-loss;AC=765;CF=H(-9) C(-5) N(-1) O(-1) S(-1);MM=-131.040485", "Removal of initiator methionine from protein N-terminus, then acetylation of the new N-terminus": "NT=Met-loss+Acetyl;AC=766;CF=H(-7) C(-3) N(-1) S(-1);MM=-89.02992", "Menadione hydroquinone derivative": "NT=Menadione-HQ;AC=767;CF=H(8) C(11) O(2);MM=172.05243", "Mono-methylated lysine labelled with Acetyl_heavy": "NT=Methyl+Acetyl:2H(3);AC=768;CF=H 2H(3) C(3) O;MM=59.045045", "lapachenole photochemically added to cysteine": "NT=lapachenole;AC=771;CF=H(16) C(16) O(2);MM=240.11503", "13C(5) Silac label": "NT=Label:13C(5);AC=772;CF=C(-5) 13C(5);MM=5.016774", "Alkylation by biotinylated form of phenacyl bromide": "NT=Biotin-phenacyl;AC=774;CF=H(38) C(29) N(8) O(6) S;MM=626.263502", "Iodoacetic acid derivative w/ 13C label": "NT=Carboxymethyl:13C(2);AC=775;CF=H(2) 13C(2) O(2);MM=60.012189", "D5 N-ethylmaleimide on cysteines": "NT=NEM:2H(5);AC=776;CF=H(2) 2H(5) C(6) N O(2);MM=130.079062", "deuterium cysteamine modification to S or T": "NT=AEC-MAEC:2H(4);AC=792;CF=H 2H(4) C(2) N O(-1) S;MM=63.044462", "Hex1HexNAc1": "NT=Hex(1)HexNAc(1);AC=793;CF=Hex HexNAc;MM=365.132196", "13C6 labeled ubiquitinylation residue": "NT=Label:13C(6)+GG;AC=799;CF=H(6) C(-2) 13C(6) N(2) O(2);MM=120.063056", "was PentylamineBiotin": "NT=Biotin:Thermo-21345;AC=800;CF=H(25) C(15) N(3) O(2) S;MM=311.166748", "Labeling transglutaminase substrate on glutamine side chain": "NT=Pentylamine;AC=801;CF=H(10) C(5);MM=70.07825", "was Biotin-PEO4-hydrazide": "NT=Biotin:Thermo-21360;AC=811;CF=H(37) C(21) N(5) O(6) S;MM=487.246455", "fluorescent dye that labels cysteines": "NT=Cy3b-maleimide;AC=821;CF=H(38) C(37) N(4) O(7) S;MM=682.24612", "Enzymatic glycine removal leaving an amidated C-terminus": "NT=Gly-loss+Amide;AC=822;CF=H(-2) C(-2) O(-2);MM=-58.005479", "Intact or monolink BMOE crosslinker": "NT=Xlink:BMOE;AC=824;CF=H(8) C(10) N(2) O(4);MM=220.048407", "Intact DFDNB crosslinker": "NT=Xlink:DFDNB;AC=825;CF=C(6) N(2) O(4);MM=163.985807", "tris(2,4,6-trimethoxyphenyl)phosphonium acetic acid N-hydroxysuccinimide ester derivative": "NT=TMPP-Ac;AC=827;CF=H(33) C(29) O(10) P;MM=572.181134", "Dihydroxy methylglyoxal adduct": "NT=Dihydroxyimidazolidine;AC=830;CF=H(4) C(3) O(2);MM=72.021129", "Acetyl 4,4,5,5-D4 Lysine": "NT=Label:2H(4)+Acetyl;AC=834;CF=H(-2) 2H(4) C(2) O;MM=46.035672", "Acetyl 13C(6) Silac label": "NT=Label:13C(6)+Acetyl;AC=835;CF=H(2) C(-4) 13C(6) O;MM=48.030694", "Acetyl_13C(6) 15N(2) Silac label": "NT=Label:13C(6)15N(2)+Acetyl;AC=836;CF=H(2) C(-4) 13C(6) N(-2) 15N(2) O;MM=50.024764", "Arginine replacement by Nitropyrimidyl ornithine": "NT=Arg->Npo;AC=837;CF=H(-1) C(3) N O(2);MM=80.985078", "Sumo mutant Smt3-WT tail following trypsin digestion": "NT=EQIGG;AC=846;CF=H(32) C(20) N(6) O(8);MM=484.228162", "Adduct of phenylglyoxal with Arg": "NT=Arg2PG;AC=848;CF=H(10) C(16) O(4);MM=266.057909", "S-guanylation": "NT=cGMP;AC=849;CF=H(10) C(10) N(5) O(7) P;MM=343.031785", "S-guanylation-2": "NT=cGMP+RMP-loss;AC=851;CF=H(4) C(5) N(5) O;MM=150.041585", "Ubiquitination 2H4 lysine": "NT=Label:2H(4)+GG;AC=853;CF=H(2) 2H(4) C(4) N(2) O(2);MM=118.068034", "Methylglyoxal-derived hydroimidazolone": "NT=MG-H1;AC=859;CF=H(2) C(3) O;MM=54.010565", "Glyoxal-derived hydroimiadazolone": "NT=G-H1;AC=860;CF=C(2) O;MM=39.994915", "NHS ester linked Green Fluorescent Bodipy Dye": "NT=ZGB;AC=861;CF=H(53) B C(37) N(6) O(6) F(2) S;MM=758.380841", "SILAC": "NT=Label:13C(1)2H(3);AC=862;CF=H(-3) 2H(3) C(-1) 13C;MM=4.022185", "13C(6) 15N(2) Lysine glygly": "NT=Label:13C(6)15N(2)+GG;AC=864;CF=H(6) C(-2) 13C(6) 15N(2) O(2);MM=122.057126", "Bruker Daltonics SERVA-ICPL(TM) quantification chemistry, +10 Da form": "NT=ICPL:13C(6)2H(4);AC=866;CF=H(-1) 2H(4) 13C(6) N O;MM=115.0667", "SUMOylation by SUMO-1": "NT=QEQTGG;AC=876;CF=H(36) C(23) N(8) O(11);MM=600.250354", "SUMOylation by SUMO-2/3": "NT=QQQTGG;AC=877;CF=H(37) C(23) N(9) O(10);MM=599.266339", "was ChromoBiotin": "NT=Biotin:Thermo-21325;AC=884;CF=H(45) C(34) N(7) O(7) S;MM=695.310118", "Oxidised methionine 13C(1)2H(3) SILAC label": "NT=Label:13C(1)2H(3)+Oxidation;AC=885;CF=H(-3) 2H(3) C(-1) 13C O;MM=20.0171", "2-ammonio-6-[4-(hydroxymethyl)-3-oxidopyridinium-1-yl]- hexanoate": "NT=HydroxymethylOP;AC=886;CF=H(4) C(6) O(2);MM=108.021129", "covalent linkage of maleimidyl coumarin probe (Molecular Probes D-10253)": "NT=MDCC;AC=887;CF=H(21) C(20) N(3) O(5);MM=383.148121", "mTRAQ light": "NT=mTRAQ;AC=888;CF=H(12) C(7) N(2) O;MM=140.094963", "mTRAQ medium": "NT=mTRAQ:13C(3)15N(1);AC=889;CF=H(12) C(4) 13C(3) N 15N O;MM=144.102063", "Thiol-reactive dye for fluorescence labelling of proteins": "NT=DyLight-maleimide;AC=890;CF=H(48) C(39) N(4) O(15) S(4);MM=940.1999", "Carbamidomethylated DTT modification of cysteine": "NT=CarbamidomethylDTT;AC=893;CF=H(11) C(6) N O(3) S(2);MM=209.018035", "Carboxymethylated DTT modification of cysteine": "NT=CarboxymethylDTT;AC=894;CF=H(10) C(6) O(4) S(2);MM=210.00205", "Biotin polyethyleneoxide (n=3) alkyne": "NT=Biotin-PEG-PRA;AC=895;CF=H(42) C(26) N(8) O(7);MM=578.317646", "Methionine replacement by azido homoalanine": "NT=Met->Aha;AC=896;CF=H(-3) C(-1) N(3) S(-1);MM=-4.986324", "SILAC 15N(4)": "NT=Label:15N(4);AC=897;CF=N(-4) 15N(4);MM=3.98814", "pyrophosphorylation of Ser/Thr": "NT=pyrophospho;AC=898;CF=H(2) O(6) P(2);MM=159.932662", "methionine replacement by homopropargylglycine": "NT=Met->Hpg;AC=899;CF=H(-2) C S(-1);MM=-21.987721", "2,3,4,6-tetra-O-Acetyl-1-allyl-alpha-D-galactopyranoside modification of cysteine": "NT=4AcAllylGal;AC=901;CF=H(24) C(17) O(9);MM=372.142033", "Reaction with dimethylarsinous (AsIII) acid": "NT=DimethylArsino;AC=902;CF=H(5) C(2) As;MM=103.960719", "Lys->Cys substitution and carbamidomethylation": "NT=Lys->CamCys;AC=903;CF=H(-4) C(-1) O S;MM=31.935685", "Phe->Cys substitution and carbamidomethylation": "NT=Phe->CamCys;AC=904;CF=H(-1) C(-4) N O S;MM=12.962234", "Leu->Met substitution and sulfoxidation": "NT=Leu->MetOx;AC=905;CF=H(-2) C(-1) O S;MM=33.951335", "Lys->Met substitution and sulfoxidation": "NT=Lys->MetOx;AC=906;CF=H(-3) C(-1) N(-1) O S;MM=18.940436", "Gluconoylation": "NT=Galactosyl;AC=907;CF=O Hex;MM=178.047738", "Monolink of SMCC terminated with 3-(dimethylamino)-1-propylamine": "NT=Xlink:SMCC[321];AC=908;CF=H(27) C(17) N(3) O(3);MM=321.205242", "2,4-diacetamido-2,4,6-trideoxyglucopyranose": "NT=Bacillosamine;AC=910;CF=H(6) C(4) N(2) dHex;MM=228.111007", "Cys modification by (1-oxyl-2,2,5,5-tetramethyl-3-pyrroline-3-methyl)methanesulfonate (MTSL)": "NT=MTSL;AC=911;CF=H(14) C(9) N O S;MM=184.07961", "4-hydroxy-2-nonenal and biotinamidohexanoic acid hydrazide, reduced": "NT=HNE-BAHAH;AC=912;CF=H(45) C(25) N(5) O(4) S;MM=511.319226", "Methylmalonylation on Serine": "NT=Methylmalonylation;AC=914;CF=H(4) C(4) O(3);MM=100.016044", "13C(4) 15N(2) Lysine glygly": "NT=Label:13C(4)15N(2)+GG;AC=923;CF=H(6) 13C(4) 15N(2) O(2);MM=120.050417", "ethyl amino": "NT=ethylamino;AC=926;CF=H(5) C(2) N O(-1);MM=27.047285", "2-OH-ethyl thio-Ser": "NT=MercaptoEthanol;AC=928;CF=H(4) C(2) S;MM=60.003371", "deamidation followed by esterification with ethanol": "NT=Ethyl+Deamidated;AC=931;CF=H(3) C(2) N(-1) O;MM=29.015316", "SUMOylation by SUMO-2/3 (formic acid cleavage)": "NT=VFQQQTGG;AC=932;CF=H(55) C(37) N(11) O(12);MM=845.403166", "SUMOylation by SUMO-1 (formic acid cleavage)": "NT=VIEVYQEQTGG;AC=933;CF=H(81) C(53) N(13) O(19);MM=1203.577168", "Photocleavable Biotin + GalNAz on O-GlcNAc": "NT=AMTzHexNAc2;AC=934;CF=H(30) C(19) N(6) O(10);MM=502.202341", "High molecular absorption maleimide label for proteins": "NT=Atto495Maleimide;AC=935;CF=H(32) C(27) N(5) O(3);MM=474.250515", "Chlorination of tyrosine residues": "NT=Chlorination;AC=936;CF=H(-1) Cl;MM=33.961028", "Dichlorination": "NT=dichlorination;AC=937;CF=H(-2) Cl(2);MM=67.922055", "Cysteine modifier": "NT=AROD;AC=938;CF=H(52) C(35) N(10) O(9) S(2);MM=820.336015", "carbamidomethylated Cys that undergoes beta-elimination and Michael addition of methylamine": "NT=Cys->methylaminoAla;AC=939;CF=H(3) C N S(-1);MM=-2.945522", "Carbamidomethylated Cys that undergoes beta-elimination and Michael addition of ethylamine": "NT=Cys->ethylaminoAla;AC=940;CF=H(5) C(2) N S(-1);MM=11.070128", "2,4-Dinitrobenzenesulfenyl": "NT=DNPS;AC=941;CF=H(3) C(6) N(2) O(4) S;MM=198.981352", "High molecular absorption label for proteins": "NT=SulfoGMBS;AC=942;CF=H(26) C(22) N(4) O(5) S;MM=458.162391", "Modified GMBS X linker": "NT=DimethylamineGMBS;AC=943;CF=H(21) C(13) N(3) O(3);MM=267.158292", "SILAC label": "NT=Label:15N(2)2H(9);AC=944;CF=H(-9) 2H(9) N(-2) 15N(2);MM=11.050561", "Levuglandinyl-lysine anhydrolactam adduct": "NT=LG-anhydrolactam;AC=946;CF=H(26) C(20) O(3);MM=314.188195", "Levuglandinyl-lysine pyrrole adduct": "NT=LG-pyrrole;AC=947;CF=H(28) C(20) O(3);MM=316.203845", "Levuglandinyl-lysine anhyropyrrole adduct": "NT=LG-anhyropyrrole;AC=948;CF=H(26) C(20) O(2);MM=298.19328", "Condensation product of 3-deoxyglucosone": "NT=3-deoxyglucosone;AC=949;CF=H(8) C(6) O(4);MM=144.042259", "Replacement of proton by lithium": "NT=Cation:Li;AC=950;CF=H(-1) Li;MM=6.008178", "Replacement of 2 protons by calcium": "NT=Cation:Ca[II];AC=951;CF=H(-2) Ca;MM=37.946941", "Replacement of 2 protons by iron": "NT=Cation:Fe[II];AC=952;CF=H(-2) Fe;MM=53.919289", "Replacement of 2 protons by nickel": "NT=Cation:Ni[II];AC=953;CF=H(-2) Ni;MM=55.919696", "Replacement of 2 protons by zinc": "NT=Cation:Zn[II];AC=954;CF=H(-2) Zn;MM=61.913495", "Replacement of proton by silver": "NT=Cation:Ag;AC=955;CF=H(-1) Ag;MM=105.897267", "Replacement of 2 protons by magnesium": "NT=Cation:Mg[II];AC=956;CF=H(-2) Mg;MM=21.969392", "S-(2-succinyl) cysteine": "NT=2-succinyl;AC=957;CF=H(4) C(4) O(4);MM=116.010959", "propargylamine": "NT=Propargylamine;AC=958;CF=H(3) C(3) N O(-1);MM=37.031634", "phospho-propargylamine": "NT=Phosphopropargyl;AC=959;CF=H(4) C(3) N O(2) P;MM=116.997965", "SUMOylation by SUMO-1 after tryptic cleavage": "NT=SUMO2135;AC=960;CF=H(137) C(90) N(21) O(37) S;MM=2135.920496", "SUMOylation by SUMO-2/3 after tryptic cleavage": "NT=SUMO3549;AC=961;CF=H(224) C(150) N(38) O(60) S;MM=3549.536568", "membrane protein extraction": "NT=thioacylPA;AC=967;CF=H(9) C(6) N O(2) S;MM=159.035399", "maleimide-3-saccharide": "NT=maleimide3;AC=971;CF=H(59) C(37) N(7) O(23);MM=969.366232", "maleimide-5-saccharide": "NT=maleimide5;AC=972;CF=H(79) C(49) N(7) O(33);MM=1293.471879", "2,3-dihydro-2,2-dimethyl-7-benzofuranol N-methyl carbamate": "NT=Carbofuran;AC=977;CF=H(3) C(2) N O;MM=57.021464", "Benzyl isothiocyanate": "NT=BITC;AC=978;CF=H(7) C(8) N S;MM=149.02992", "Phenethyl isothiocyanate": "NT=PEITC;AC=979;CF=H(9) C(9) N S;MM=163.04557", "Condensation product of glucosone": "NT=glucosone;AC=981;CF=H(8) C(6) O(5);MM=160.037173", "Native cysteine-reactive Tandem Mass Tag\u00ae": "NT=cysTMT;AC=984;CF=H(25) C(14) N(3) O(2) S;MM=299.166748", "cysteine-reactive Sixplex Tandem Mass Tag\u00ae": "NT=cysTMT6plex;AC=985;CF=H(25) C(10) 13C(4) N(2) 15N O(2) S;MM=304.177202", "Dimethyl 13C(6) Silac label": "NT=Label:13C(6)+Dimethyl;AC=986;CF=H(4) C(-4) 13C(6);MM=34.051429", "Dimethyl 13C(6)15N(2) Silac label": "NT=Label:13C(6)15N(2)+Dimethyl;AC=987;CF=H(4) C(-4) 13C(6) N(-2) 15N(2);MM=36.045499", "replacement of proton with ammonium ion": "NT=Ammonium;AC=989;CF=H(3) N;MM=17.026549", "ISD (z+2)-series": "NT=ISD_z+2_ion;AC=991;CF=H(-1) N(-1);MM=-15.010899", "was Biotin-maleimide": "NT=Biotin:Sigma-B1267;AC=993;CF=H(27) C(20) N(5) O(5) S;MM=449.17329", "15N(1)": "NT=Label:15N(1);AC=994;CF=N(-1) 15N;MM=0.997035", "15N(2)": "NT=Label:15N(2);AC=995;CF=N(-2) 15N(2);MM=1.99407", "15N(3)": "NT=Label:15N(3);AC=996;CF=N(-3) 15N(3);MM=2.991105", "aminotyrosine with sulfation": "NT=sulfo+amino;AC=997;CF=H N O(3) S;MM=94.967714", "Azidohomoalanine (AHA) bound to propargylglycine-NH2 (alkyne)": "NT=AHA-Alkyne;AC=1000;CF=H(5) C(4) N(5) O S(-1);MM=107.077339", "Azidohomoalanine (AHA) bound to DDDDK-propargylglycine-NH2 (alkyne)": "NT=AHA-Alkyne-KDDDD;AC=1001;CF=H(37) C(26) N(11) O(14) S(-1);MM=695.280074", "(-)-epigallocatechin-3-gallate": "NT=EGCG1;AC=1002;CF=H(16) C(22) O(11);MM=456.069261", "(-)-dehydroepigallocatechin": "NT=EGCG2;AC=1003;CF=H(11) C(15) O(6);MM=287.055563", "Monomethylated Arg13C(6) 15N(4)": "NT=Label:13C(6)15N(4)+Methyl;AC=1004;CF=H(2) C(-5) 13C(6) N(-4) 15N(4);MM=24.023919", "Dimethylated Arg13C(6) 15N(4)": "NT=Label:13C(6)15N(4)+Dimethyl;AC=1005;CF=H(4) C(-4) 13C(6) N(-4) 15N(4);MM=38.039569", "2H(3) 13C(1) monomethylated Arg13C(6) 15N(4)": "NT=Label:13C(6)15N(4)+Methyl:2H(3)13C(1);AC=1006;CF=H(-1) 2H(3) C(-6) 13C(7) N(-4) 15N(4);MM=28.046104", "2H(6) 13C(2) Dimethylated Arg13C(6) 15N(4)": "NT=Label:13C(6)15N(4)+Dimethyl:2H(6)13C(2);AC=1007;CF=H(-2) 2H(6) C(-6) 13C(8) N(-4) 15N(4);MM=46.083939", "Sec Iodoacetamide derivative": "NT=Cys->CamSec;AC=1008;CF=H(3) C(2) N O S(-1) Se;MM=104.965913", "formaldehyde adduct": "NT=Thiazolidine;AC=1009;CF=C;MM=12.0", "Addition of DEDGFLYMVYASQETFG": "NT=DEDGFLYMVYASQETFG;AC=1010;CF=H(122) C(89) N(18) O(31) S;MM=1970.824411", "Nalpha-(3-maleimidylpropionyl)biocytin": "NT=Biotin:Invitrogen-M1602;AC=1012;CF=H(33) C(23) N(5) O(7) S;MM=523.210069", "glycidamide adduct": "NT=glycidamide;AC=1014;CF=H(5) C(3) N O(2);MM=87.032028", "C-terminal homoserine lactone and two aminohexanoic acids": "NT=Ahx2+Hsl;AC=1015;CF=H(27) C(16) N(3) O(3);MM=309.205242", "DMPO spin-trap nitrone adduct": "NT=DMPO;AC=1017;CF=H(9) C(6) N O;MM=111.068414", "Isotope-Coded Dimedone light form": "NT=ICDID;AC=1018;CF=H(10) C(8) O(2);MM=138.06808", "Isotope-Coded Dimedone heavy form": "NT=ICDID:2H(6);AC=1019;CF=H(4) 2H(6) C(8) O(2);MM=144.10574", "Water-quenched monolink of DSS/BS3 crosslinker": "NT=Xlink:DSS[156];AC=1020;CF=H(12) C(8) O(3);MM=156.078644", "Water quenched monolink of EGS cross-linker": "NT=Xlink:EGS[244];AC=1021;CF=H(12) C(10) O(7);MM=244.058303", "Water quenched monolink of DST crosslinker": "NT=Xlink:DST[132];AC=1022;CF=H(4) C(4) O(5);MM=132.005873", "Water quenched monolink of DSP/DTSSP crosslinker": "NT=Xlink:DTSSP[192];AC=1023;CF=H(8) C(6) O(3) S(2);MM=191.991486", "Water quenched monolink of SMCC": "NT=Xlink:SMCC[237];AC=1024;CF=H(15) C(12) N O(4);MM=237.100108", "Water quenched monolink of DMP crosslinker": "NT=Xlink:DMP[140];AC=1027;CF=H(12) C(7) N(2) O;MM=140.094963", "Cleavage product of EGS protein crosslinks by hydroylamine treatment": "NT=Xlink:EGS[115];AC=1028;CF=H(5) C(4) N O(3);MM=115.026943", "desthiobiotin modification of lysine": "NT=Biotin:Thermo-88310;AC=1031;CF=H(16) C(10) N(2) O(2);MM=196.121178", "Tyrosine caged with 2-nitrobenzyl (ONB)": "NT=2-nitrobenzyl;AC=1032;CF=H(5) C(7) N O(2);MM=135.032028", "N-ethylmaleimide on selenocysteines": "NT=Cys->SecNEM;AC=1033;CF=H(7) C(6) N O(2) S(-1) Se;MM=172.992127", "D5 N-ethylmaleimide on selenocysteines": "NT=Cys->SecNEM:2H(5);AC=1034;CF=H(2) 2H(5) C(6) N O(2) S(-1) Se;MM=178.023511", "Thiadiazolydation of Cys": "NT=Thiadiazole;AC=1035;CF=H(6) C(9) N(2) S;MM=174.025169", "Modification of cystein by withaferin": "NT=Withaferin;AC=1036;CF=H(38) C(28) O(6);MM=470.266839", "desthiobiotin fluorophosphonate": "NT=Biotin:Thermo-88317;AC=1037;CF=H(42) C(22) N(3) O(4) P;MM=443.291294", "TAMRA fluorophosphonate modification of serine": "NT=TAMRA-FP;AC=1038;CF=H(46) C(37) N(3) O(6) P;MM=659.312423", "Maleimide-Biotin + Water": "NT=Biotin:Thermo-21901+H2O;AC=1039;CF=H(37) C(23) N(5) O(8) S;MM=543.236284", "Ala->Cys substitution": "NT=Ala->Cys;AC=1044;CF=S;MM=31.972071", "Ala->Phe substitution": "NT=Ala->Phe;AC=1045;CF=H(4) C(6);MM=76.0313", "Ala->His substitution": "NT=Ala->His;AC=1046;CF=H(2) C(3) N(2);MM=66.021798", "Ala->Leu/Ile substitution": "NT=Ala->Xle;AC=1047;CF=H(6) C(3);MM=42.04695", "Ala->Lys substitution": "NT=Ala->Lys;AC=1048;CF=H(7) C(3) N;MM=57.057849", "Ala->Met substitution": "NT=Ala->Met;AC=1049;CF=H(4) C(2) S;MM=60.003371", "Ala->Asn substitution": "NT=Ala->Asn;AC=1050;CF=H C N O;MM=43.005814", "Ala->Gln substitution": "NT=Ala->Gln;AC=1051;CF=H(3) C(2) N O;MM=57.021464", "Ala->Arg substitution": "NT=Ala->Arg;AC=1052;CF=H(7) C(3) N(3);MM=85.063997", "Ala->Trp substitution": "NT=Ala->Trp;AC=1053;CF=H(5) C(8) N;MM=115.042199", "Ala->Tyr substitution": "NT=Ala->Tyr;AC=1054;CF=H(4) C(6) O;MM=92.026215", "Cys->Ala substitution": "NT=Cys->Ala;AC=1055;CF=S(-1);MM=-31.972071", "Cys->Asp substitution": "NT=Cys->Asp;AC=1056;CF=C O(2) S(-1);MM=12.017759", "Cys->Glu substitution": "NT=Cys->Glu;AC=1057;CF=H(2) C(2) O(2) S(-1);MM=26.033409", "Cys->His substitution": "NT=Cys->His;AC=1058;CF=H(2) C(3) N(2) S(-1);MM=34.049727", "Cys->Leu/Ile substitution": "NT=Cys->Xle;AC=1059;CF=H(6) C(3) S(-1);MM=10.07488", "Cys->Lys substitution": "NT=Cys->Lys;AC=1060;CF=H(7) C(3) N S(-1);MM=25.085779", "Cys->Met substitution": "NT=Cys->Met;AC=1061;CF=H(4) C(2);MM=28.0313", "Cys->Asn substitution": "NT=Cys->Asn;AC=1062;CF=H C N O S(-1);MM=11.033743", "Cys->Pro substitution": "NT=Cys->Pro;AC=1063;CF=H(2) C(2) S(-1);MM=-5.956421", "Cys->Gln substitution": "NT=Cys->Gln;AC=1064;CF=H(3) C(2) N O S(-1);MM=25.049393", "Cys->Thr substitution": "NT=Cys->Thr;AC=1065;CF=H(2) C O S(-1);MM=-1.961506", "Cys->Val substitution": "NT=Cys->Val;AC=1066;CF=H(4) C(2) S(-1);MM=-3.940771", "Asp->Cys substitution": "NT=Asp->Cys;AC=1067;CF=C(-1) O(-2) S;MM=-12.017759", "Asp->Phe substitution": "NT=Asp->Phe;AC=1068;CF=H(4) C(5) O(-2);MM=32.041471", "Asp->Leu/Ile substitution": "NT=Asp->Xle;AC=1069;CF=H(6) C(2) O(-2);MM=-1.942879", "Asp->Lys substitution": "NT=Asp->Lys;AC=1070;CF=H(7) C(2) N O(-2);MM=13.06802", "Asp->Met substitution": "NT=Asp->Met;AC=1071;CF=H(4) C O(-2) S;MM=16.013542", "Asp->Pro substitution": "NT=Asp->Pro;AC=1072;CF=H(2) C O(-2);MM=-17.974179", "Asp->Gln substitution": "NT=Asp->Gln;AC=1073;CF=H(3) C N O(-1);MM=13.031634", "Asp->Arg substitution": "NT=Asp->Arg;AC=1074;CF=H(7) C(2) N(3) O(-2);MM=41.074168", "Asp->Ser substitution": "NT=Asp->Ser;AC=1075;CF=C(-1) O(-1);MM=-27.994915", "Asp->Thr substitution": "NT=Asp->Thr;AC=1076;CF=H(2) O(-1);MM=-13.979265", "Asp->Trp substitution": "NT=Asp->Trp;AC=1077;CF=H(5) C(7) N O(-2);MM=71.05237", "Glu->Cys substitution": "NT=Glu->Cys;AC=1078;CF=H(-2) C(-2) O(-2) S;MM=-26.033409", "Glu->Phe substitution": "NT=Glu->Phe;AC=1079;CF=H(2) C(4) O(-2);MM=18.025821", "Glu->His substitution": "NT=Glu->His;AC=1080;CF=C N(2) O(-2);MM=8.016319", "Glu->Leu/Ile substitution": "NT=Glu->Xle;AC=1081;CF=H(4) C O(-2);MM=-15.958529", "Glu->Met substitution": "NT=Glu->Met;AC=1082;CF=H(2) O(-2) S;MM=1.997892", "Glu->Asn substitution": "NT=Glu->Asn;AC=1083;CF=H(-1) C(-1) N O(-1);MM=-14.999666", "Glu->Pro substitution": "NT=Glu->Pro;AC=1084;CF=O(-2);MM=-31.989829", "Glu->Arg substitution": "NT=Glu->Arg;AC=1085;CF=H(5) C N(3) O(-2);MM=27.058518", "Glu->Ser substitution": "NT=Glu->Ser;AC=1086;CF=H(-2) C(-2) O(-1);MM=-42.010565", "Glu->Thr substitution": "NT=Glu->Thr;AC=1087;CF=C(-1) O(-1);MM=-27.994915", "Glu->Trp substitution": "NT=Glu->Trp;AC=1088;CF=H(3) C(6) N O(-2);MM=57.03672", "Glu->Tyr substitution": "NT=Glu->Tyr;AC=1089;CF=H(2) C(4) O(-1);MM=34.020735", "Phe->Ala substitution": "NT=Phe->Ala;AC=1090;CF=H(-4) C(-6);MM=-76.0313", "Phe->Asp substitution": "NT=Phe->Asp;AC=1091;CF=H(-4) C(-5) O(2);MM=-32.041471", "Phe->Glu substitution": "NT=Phe->Glu;AC=1092;CF=H(-2) C(-4) O(2);MM=-18.025821", "Phe->Gly substitution": "NT=Phe->Gly;AC=1093;CF=H(-6) C(-7);MM=-90.04695", "Phe->His substitution": "NT=Phe->His;AC=1094;CF=H(-2) C(-3) N(2);MM=-10.009502", "Phe->Lys substitution": "NT=Phe->Lys;AC=1095;CF=H(3) C(-3) N;MM=-18.973451", "Phe->Met substitution": "NT=Phe->Met;AC=1096;CF=C(-4) S;MM=-16.027929", "Phe->Asn substitution": "NT=Phe->Asn;AC=1097;CF=H(-3) C(-5) N O;MM=-33.025486", "Phe->Pro substitution": "NT=Phe->Pro;AC=1098;CF=H(-2) C(-4);MM=-50.01565", "Phe->Gln substitution": "NT=Phe->Gln;AC=1099;CF=H(-1) C(-4) N O;MM=-19.009836", "Phe->Arg substitution": "NT=Phe->Arg;AC=1100;CF=H(3) C(-3) N(3);MM=9.032697", "Phe->Thr substitution": "NT=Phe->Thr;AC=1101;CF=H(-2) C(-5) O;MM=-46.020735", "Phe->Trp substitution": "NT=Phe->Trp;AC=1102;CF=H C(2) N;MM=39.010899", "Gly->Phe substitution": "NT=Gly->Phe;AC=1103;CF=H(6) C(7);MM=90.04695", "Gly->His substitution": "NT=Gly->His;AC=1104;CF=H(4) C(4) N(2);MM=80.037448", "Gly->Leu/Ile substitution": "NT=Gly->Xle;AC=1105;CF=H(8) C(4);MM=56.0626", "Gly->Lys substitution": "NT=Gly->Lys;AC=1106;CF=H(9) C(4) N;MM=71.073499", "Gly->Met substitution": "NT=Gly->Met;AC=1107;CF=H(6) C(3) S;MM=74.019021", "Gly->Asn substitution": "NT=Gly->Asn;AC=1108;CF=H(3) C(2) N O;MM=57.021464", "Gly->Pro substitution": "NT=Gly->Pro;AC=1109;CF=H(4) C(3);MM=40.0313", "Gly->Gln substitution": "NT=Gly->Gln;AC=1110;CF=H(5) C(3) N O;MM=71.037114", "Gly->Thr substitution": "NT=Gly->Thr;AC=1111;CF=H(4) C(2) O;MM=44.026215", "Gly->Tyr substitution": "NT=Gly->Tyr;AC=1112;CF=H(6) C(7) O;MM=106.041865", "His->Ala substitution": "NT=His->Ala;AC=1113;CF=H(-2) C(-3) N(-2);MM=-66.021798", "His->Cys substitution": "NT=His->Cys;AC=1114;CF=H(-2) C(-3) N(-2) S;MM=-34.049727", "His->Glu substitution": "NT=His->Glu;AC=1115;CF=C(-1) N(-2) O(2);MM=-8.016319", "His->Phe substitution": "NT=His->Phe;AC=1116;CF=H(2) C(3) N(-2);MM=10.009502", "His->Gly substitution": "NT=His->Gly;AC=1117;CF=H(-4) C(-4) N(-2);MM=-80.037448", "His->Lys substitution": "NT=His->Lys;AC=1119;CF=H(5) N(-1);MM=-8.963949", "His->Met substitution": "NT=His->Met;AC=1120;CF=H(2) C(-1) N(-2) S;MM=-6.018427", "His->Ser substitution": "NT=His->Ser;AC=1121;CF=H(-2) C(-3) N(-2) O;MM=-50.026883", "His->Thr substitution": "NT=His->Thr;AC=1122;CF=C(-2) N(-2) O;MM=-36.011233", "His->Val substitution": "NT=His->Val;AC=1123;CF=H(2) C(-1) N(-2);MM=-37.990498", "His->Trp substitution": "NT=His->Trp;AC=1124;CF=H(3) C(5) N(-1);MM=49.020401", "Leu/Ile->Ala substitution": "NT=Xle->Ala;AC=1125;CF=H(-6) C(-3);MM=-42.04695", "Leu/Ile->Cys substitution": "NT=Xle->Cys;AC=1126;CF=H(-6) C(-3) S;MM=-10.07488", "Leu/Ile->Asp substitution": "NT=Xle->Asp;AC=1127;CF=H(-6) C(-2) O(2);MM=1.942879", "Leu/Ile->Glu substitution": "NT=Xle->Glu;AC=1128;CF=H(-4) C(-1) O(2);MM=15.958529", "Leu/Ile->Gly substitution": "NT=Xle->Gly;AC=1129;CF=H(-8) C(-4);MM=-56.0626", "Leu/Ile->Tyr substitution": "NT=Xle->Tyr;AC=1130;CF=H(-2) C(3) O;MM=49.979265", "Lys->Ala substitution": "NT=Lys->Ala;AC=1131;CF=H(-7) C(-3) N(-1);MM=-57.057849", "Lys->Cys substitution": "NT=Lys->Cys;AC=1132;CF=H(-7) C(-3) N(-1) S;MM=-25.085779", "Lys->Asp substitution": "NT=Lys->Asp;AC=1133;CF=H(-7) C(-2) N(-1) O(2);MM=-13.06802", "Lys->Phe substitution": "NT=Lys->Phe;AC=1134;CF=H(-3) C(3) N(-1);MM=18.973451", "Lys->Gly substitution": "NT=Lys->Gly;AC=1135;CF=H(-9) C(-4) N(-1);MM=-71.073499", "Lys->His substitution": "NT=Lys->His;AC=1136;CF=H(-5) N;MM=8.963949", "Lys->Pro substitution": "NT=Lys->Pro;AC=1137;CF=H(-5) C(-1) N(-1);MM=-31.042199", "Lys->Ser substitution": "NT=Lys->Ser;AC=1138;CF=H(-7) C(-3) N(-1) O;MM=-41.062935", "Lys->Val substitution": "NT=Lys->Val;AC=1139;CF=H(-3) C(-1) N(-1);MM=-29.026549", "Lys->Trp substitution": "NT=Lys->Trp;AC=1140;CF=H(-2) C(5);MM=57.98435", "Lys->Tyr substitution": "NT=Lys->Tyr;AC=1141;CF=H(-3) C(3) N(-1) O;MM=34.968366", "Met->Ala substitution": "NT=Met->Ala;AC=1142;CF=H(-4) C(-2) S(-1);MM=-60.003371", "Met->Cys substitution": "NT=Met->Cys;AC=1143;CF=H(-4) C(-2);MM=-28.0313", "Met->Asp substitution": "NT=Met->Asp;AC=1144;CF=H(-4) C(-1) O(2) S(-1);MM=-16.013542", "Met->Glu substitution": "NT=Met->Glu;AC=1145;CF=H(-2) O(2) S(-1);MM=-1.997892", "Met->Phe substitution": "NT=Met->Phe;AC=1146;CF=C(4) S(-1);MM=16.027929", "Met->Gly substitution": "NT=Met->Gly;AC=1147;CF=H(-6) C(-3) S(-1);MM=-74.019021", "Met->His substitution": "NT=Met->His;AC=1148;CF=H(-2) C N(2) S(-1);MM=6.018427", "Met->Asn substitution": "NT=Met->Asn;AC=1149;CF=H(-3) C(-1) N O S(-1);MM=-16.997557", "Met->Pro substitution": "NT=Met->Pro;AC=1150;CF=H(-2) S(-1);MM=-33.987721", "Met->Gln substitution": "NT=Met->Gln;AC=1151;CF=H(-1) N O S(-1);MM=-2.981907", "Met->Ser substitution": "NT=Met->Ser;AC=1152;CF=H(-4) C(-2) O S(-1);MM=-44.008456", "Met->Trp substitution": "NT=Met->Trp;AC=1153;CF=H C(6) N S(-1);MM=55.038828", "Met->Tyr substitution": "NT=Met->Tyr;AC=1154;CF=C(4) O S(-1);MM=32.022844", "Asn->Ala substitution": "NT=Asn->Ala;AC=1155;CF=H(-1) C(-1) N(-1) O(-1);MM=-43.005814", "Asn->Cys substitution": "NT=Asn->Cys;AC=1156;CF=H(-1) C(-1) N(-1) O(-1) S;MM=-11.033743", "Asn->Glu substitution": "NT=Asn->Glu;AC=1157;CF=H C N(-1) O;MM=14.999666", "Asn->Phe substitution": "NT=Asn->Phe;AC=1158;CF=H(3) C(5) N(-1) O(-1);MM=33.025486", "Asn->Gly substitution": "NT=Asn->Gly;AC=1159;CF=H(-3) C(-2) N(-1) O(-1);MM=-57.021464", "Asn->Met substitution": "NT=Asn->Met;AC=1160;CF=H(3) C N(-1) O(-1) S;MM=16.997557", "Asn->Pro substitution": "NT=Asn->Pro;AC=1161;CF=H C N(-1) O(-1);MM=-16.990164", "Asn->Gln substitution": "NT=Asn->Gln;AC=1162;CF=H(2) C;MM=14.01565", "Asn->Arg substitution": "NT=Asn->Arg;AC=1163;CF=H(6) C(2) N(2) O(-1);MM=42.058184", "Asn->Val substitution": "NT=Asn->Val;AC=1164;CF=H(3) C N(-1) O(-1);MM=-14.974514", "Asn->Trp substitution": "NT=Asn->Trp;AC=1165;CF=H(4) C(7) O(-1);MM=72.036386", "Pro->Cys substitution": "NT=Pro->Cys;AC=1166;CF=H(-2) C(-2) S;MM=5.956421", "Pro->Asp substitution": "NT=Pro->Asp;AC=1167;CF=H(-2) C(-1) O(2);MM=17.974179", "Pro->Glu substitution": "NT=Pro->Glu;AC=1168;CF=O(2);MM=31.989829", "Pro->Phe substitution": "NT=Pro->Phe;AC=1169;CF=H(2) C(4);MM=50.01565", "Pro->Gly substitution": "NT=Pro->Gly;AC=1170;CF=H(-4) C(-3);MM=-40.0313", "Pro->Lys substitution": "NT=Pro->Lys;AC=1171;CF=H(5) C N;MM=31.042199", "Pro->Met substitution": "NT=Pro->Met;AC=1172;CF=H(2) S;MM=33.987721", "Pro->Asn substitution": "NT=Pro->Asn;AC=1173;CF=H(-1) C(-1) N O;MM=16.990164", "Pro->Val substitution": "NT=Pro->Val;AC=1174;CF=H(2);MM=2.01565", "Pro->Trp substitution": "NT=Pro->Trp;AC=1175;CF=H(3) C(6) N;MM=89.026549", "Pro->Tyr substitution": "NT=Pro->Tyr;AC=1176;CF=H(2) C(4) O;MM=66.010565", "Gln->Ala substitution": "NT=Gln->Ala;AC=1177;CF=H(-3) C(-2) N(-1) O(-1);MM=-57.021464", "Gln->Cys substitution": "NT=Gln->Cys;AC=1178;CF=H(-3) C(-2) N(-1) O(-1) S;MM=-25.049393", "Gln->Asp substitution": "NT=Gln->Asp;AC=1179;CF=H(-3) C(-1) N(-1) O;MM=-13.031634", "Gln->Phe substitution": "NT=Gln->Phe;AC=1180;CF=H C(4) N(-1) O(-1);MM=19.009836", "Gln->Gly substitution": "NT=Gln->Gly;AC=1181;CF=H(-5) C(-3) N(-1) O(-1);MM=-71.037114", "Gln->Met substitution": "NT=Gln->Met;AC=1182;CF=H N(-1) O(-1) S;MM=2.981907", "Gln->Asn substitution": "NT=Gln->Asn;AC=1183;CF=H(-2) C(-1);MM=-14.01565", "Gln->Ser substitution": "NT=Gln->Ser;AC=1184;CF=H(-3) C(-2) N(-1);MM=-41.026549", "Gln->Thr substitution": "NT=Gln->Thr;AC=1185;CF=H(-1) C(-1) N(-1);MM=-27.010899", "Gln->Val substitution": "NT=Gln->Val;AC=1186;CF=H N(-1) O(-1);MM=-28.990164", "Gln->Trp substitution": "NT=Gln->Trp;AC=1187;CF=H(2) C(6) O(-1);MM=58.020735", "Gln->Tyr substitution": "NT=Gln->Tyr;AC=1188;CF=H C(4) N(-1);MM=35.004751", "Arg->Ala substitution": "NT=Arg->Ala;AC=1189;CF=H(-7) C(-3) N(-3);MM=-85.063997", "Arg->Asp substitution": "NT=Arg->Asp;AC=1190;CF=H(-7) C(-2) N(-3) O(2);MM=-41.074168", "Arg->Glu substitution": "NT=Arg->Glu;AC=1191;CF=H(-5) C(-1) N(-3) O(2);MM=-27.058518", "Arg->Asn substitution": "NT=Arg->Asn;AC=1192;CF=H(-6) C(-2) N(-2) O;MM=-42.058184", "Arg->Val substitution": "NT=Arg->Val;AC=1193;CF=H(-3) C(-1) N(-3);MM=-57.032697", "Arg->Tyr substitution": "NT=Arg->Tyr;AC=1194;CF=H(-3) C(3) N(-3) O;MM=6.962218", "Arg->Phe substitution": "NT=Arg->Phe;AC=1195;CF=H(-3) C(3) N(-3);MM=-9.032697", "Ser->Asp substitution": "NT=Ser->Asp;AC=1196;CF=C O;MM=27.994915", "Ser->Glu substitution": "NT=Ser->Glu;AC=1197;CF=H(2) C(2) O;MM=42.010565", "Ser->His substitution": "NT=Ser->His;AC=1198;CF=H(2) C(3) N(2) O(-1);MM=50.026883", "Ser->Lys substitution": "NT=Ser->Lys;AC=1199;CF=H(7) C(3) N O(-1);MM=41.062935", "Ser->Met substitution": "NT=Ser->Met;AC=1200;CF=H(4) C(2) O(-1) S;MM=44.008456", "Ser->Gln substitution": "NT=Ser->Gln;AC=1201;CF=H(3) C(2) N;MM=41.026549", "Ser->Val substitution": "NT=Ser->Val;AC=1202;CF=H(4) C(2) O(-1);MM=12.036386", "Thr->Cys substitution": "NT=Thr->Cys;AC=1203;CF=H(-2) C(-1) O(-1) S;MM=1.961506", "Thr->Asp substitution": "NT=Thr->Asp;AC=1204;CF=H(-2) O;MM=13.979265", "Thr->Glu substitution": "NT=Thr->Glu;AC=1205;CF=C O;MM=27.994915", "Thr->Phe substitution": "NT=Thr->Phe;AC=1206;CF=H(2) C(5) O(-1);MM=46.020735", "Thr->Gly substitution": "NT=Thr->Gly;AC=1207;CF=H(-4) C(-2) O(-1);MM=-44.026215", "Thr->His substitution": "NT=Thr->His;AC=1208;CF=C(2) N(2) O(-1);MM=36.011233", "Thr->Gln substitution": "NT=Thr->Gln;AC=1209;CF=H C N;MM=27.010899", "Thr->Val substitution": "NT=Thr->Val;AC=1210;CF=H(2) C O(-1);MM=-1.979265", "Thr->Trp substitution": "NT=Thr->Trp;AC=1211;CF=H(3) C(7) N O(-1);MM=85.031634", "Thr->Tyr substitution": "NT=Thr->Tyr;AC=1212;CF=H(2) C(5);MM=62.01565", "Val->Cys substitution": "NT=Val->Cys;AC=1213;CF=H(-4) C(-2) S;MM=3.940771", "Val->His substitution": "NT=Val->His;AC=1214;CF=H(-2) C N(2);MM=37.990498", "Val->Lys substitution": "NT=Val->Lys;AC=1215;CF=H(3) C N;MM=29.026549", "Val->Asn substitution": "NT=Val->Asn;AC=1216;CF=H(-3) C(-1) N O;MM=14.974514", "Val->Pro substitution": "NT=Val->Pro;AC=1217;CF=H(-2);MM=-2.01565", "Val->Gln substitution": "NT=Val->Gln;AC=1218;CF=H(-1) N O;MM=28.990164", "Val->Arg substitution": "NT=Val->Arg;AC=1219;CF=H(3) C N(3);MM=57.032697", "Val->Ser substitution": "NT=Val->Ser;AC=1220;CF=H(-4) C(-2) O;MM=-12.036386", "Val->Thr substitution": "NT=Val->Thr;AC=1221;CF=H(-2) C(-1) O;MM=1.979265", "Val->Trp substitution": "NT=Val->Trp;AC=1222;CF=H C(6) N;MM=87.010899", "Val->Tyr substitution": "NT=Val->Tyr;AC=1223;CF=C(4) O;MM=63.994915", "Trp->Ala substitution": "NT=Trp->Ala;AC=1224;CF=H(-5) C(-8) N(-1);MM=-115.042199", "Trp->Asp substitution": "NT=Trp->Asp;AC=1225;CF=H(-5) C(-7) N(-1) O(2);MM=-71.05237", "Trp->Glu substitution": "NT=Trp->Glu;AC=1226;CF=H(-3) C(-6) N(-1) O(2);MM=-57.03672", "Trp->Phe substitution": "NT=Trp->Phe;AC=1227;CF=H(-1) C(-2) N(-1);MM=-39.010899", "Trp->His substitution": "NT=Trp->His;AC=1228;CF=H(-3) C(-5) N;MM=-49.020401", "Trp->Lys substitution": "NT=Trp->Lys;AC=1229;CF=H(2) C(-5);MM=-57.98435", "Trp->Met substitution": "NT=Trp->Met;AC=1230;CF=H(-1) C(-6) N(-1) S;MM=-55.038828", "Trp->Asn substitution": "NT=Trp->Asn;AC=1231;CF=H(-4) C(-7) O;MM=-72.036386", "Trp->Pro substitution": "NT=Trp->Pro;AC=1232;CF=H(-3) C(-6) N(-1);MM=-89.026549", "Trp->Gln substitution": "NT=Trp->Gln;AC=1233;CF=H(-2) C(-6) O;MM=-58.020735", "Trp->Thr substitution": "NT=Trp->Thr;AC=1234;CF=H(-3) C(-7) N(-1) O;MM=-85.031634", "Trp->Val substitution": "NT=Trp->Val;AC=1235;CF=H(-1) C(-6) N(-1);MM=-87.010899", "Trp->Tyr substitution": "NT=Trp->Tyr;AC=1236;CF=H(-1) C(-2) N(-1) O;MM=-23.015984", "Tyr->Ala substitution": "NT=Tyr->Ala;AC=1237;CF=H(-4) C(-6) O(-1);MM=-92.026215", "Tyr->Glu substitution": "NT=Tyr->Glu;AC=1238;CF=H(-2) C(-4) O;MM=-34.020735", "Tyr->Gly substitution": "NT=Tyr->Gly;AC=1239;CF=H(-6) C(-7) O(-1);MM=-106.041865", "Tyr->Lys substitution": "NT=Tyr->Lys;AC=1240;CF=H(3) C(-3) N O(-1);MM=-34.968366", "Tyr->Met substitution": "NT=Tyr->Met;AC=1241;CF=C(-4) O(-1) S;MM=-32.022844", "Tyr->Pro substitution": "NT=Tyr->Pro;AC=1242;CF=H(-2) C(-4) O(-1);MM=-66.010565", "Tyr->Gln substitution": "NT=Tyr->Gln;AC=1243;CF=H(-1) C(-4) N;MM=-35.004751", "Tyr->Arg substitution": "NT=Tyr->Arg;AC=1244;CF=H(3) C(-3) N(3) O(-1);MM=-6.962218", "Tyr->Thr substitution": "NT=Tyr->Thr;AC=1245;CF=H(-2) C(-5);MM=-62.01565", "Tyr->Val substitution": "NT=Tyr->Val;AC=1246;CF=C(-4) O(-1);MM=-63.994915", "Tyr->Trp substitution": "NT=Tyr->Trp;AC=1247;CF=H C(2) N O(-1);MM=23.015984", "Tyr->Leu/Ile substitution": "NT=Tyr->Xle;AC=1248;CF=H(2) C(-3) O(-1);MM=-49.979265", "Azidohomoalanine coupled to reductively cleaved tag": "NT=AHA-SS;AC=1249;CF=H(9) C(7) N(5) O(2);MM=195.075625", "carbamidomethylated form of reductively cleaved tag coupled to azidohomoalanine": "NT=AHA-SS_CAM;AC=1250;CF=H(12) C(9) N(6) O(3);MM=252.097088", "Sulfo-SBED Label Photoreactive Biotin Crosslinker": "NT=Biotin:Thermo-33033;AC=1251;CF=H(36) C(25) N(6) O(4) S(2);MM=548.223945", "Sulfo-SBED Label Photoreactive Biotin Crosslinker minus Hydrogen": "NT=Biotin:Thermo-33033-H;AC=1252;CF=H(34) C(25) N(6) O(4) S(2);MM=546.208295", "S-(2-monomethylsuccinyl) cysteine": "NT=2-monomethylsuccinyl;AC=1253;CF=H(6) C(5) O(4);MM=130.026609", "o-toluene": "NT=Saligenin;AC=1254;CF=H(6) C(7) O;MM=106.041865", "o-toluyl-phosphorylation": "NT=Cresylphosphate;AC=1255;CF=H(7) C(7) O(3) P;MM=170.013281", "Cresyl-Saligenin-phosphorylation": "NT=CresylSaligeninPhosphate;AC=1256;CF=H(13) C(14) O(4) P;MM=276.055146", "Ub Bromide probe addition": "NT=Ub-Br2;AC=1257;CF=H(8) C(4) N(2) O;MM=100.063663", "Ubiquitin vinylmethylester": "NT=Ub-VME;AC=1258;CF=H(12) C(7) N(2) O(3);MM=172.084792", "Ub Fluorescein probe addition": "NT=Ub-fluorescein;AC=1261;CF=H(29) C(31) N(6) O(7);MM=597.209772", "S-(2-dimethylsuccinyl) cysteine": "NT=2-dimethylsuccinyl;AC=1262;CF=H(8) C(6) O(4);MM=144.042259", "Addition of Glycine": "NT=Gly;AC=1263;CF=H(3) C(2) N O;MM=57.021464", "addition of GGE": "NT=pupylation;AC=1264;CF=H(13) C(9) N(3) O(5);MM=243.085521", "13C4 Methionine label": "NT=Label:13C(4);AC=1266;CF=C(-4) 13C(4);MM=4.013419", "Oxidised 13C4 labelled Methionine": "NT=Label:13C(4)+Oxidation;AC=1267;CF=C(-4) 13C(4) O;MM=20.008334", "N-Homocysteine thiolactone": "NT=HCysThiolactone;AC=1270;CF=H(7) C(4) N O S;MM=117.024835", "S-homocysteinylation": "NT=HCysteinyl;AC=1271;CF=H(7) C(4) N O(2) S;MM=133.019749", "Side reaction of HisTag": "NT=UgiJoullie;AC=1276;CF=H(60) C(47) N(23) O(10);MM=1106.48935", "Cys modified with dipy ligand": "NT=Dipyridyl;AC=1277;CF=H(11) C(13) N(3) O;MM=225.090212", "Chemical modification of the iodinated sites of thyroglobulin by Suzuki reaction": "NT=Furan;AC=1278;CF=H(2) C(4) O;MM=66.010565", "Chemical modification of the diiodinated sites of thyroglobulin by Suzuki reaction": "NT=Difuran;AC=1279;CF=H(4) C(8) O(2);MM=132.021129", "1-methyl-3-benzoyl-4-hydroxy-4-phenylpiperidine": "NT=BMP-piperidinol;AC=1281;CF=H(17) C(18) N O;MM=263.131014", "Side reaction of PG with Side chain of aspartic or glutamic acid": "NT=UgiJoullieProGly;AC=1282;CF=H(10) C(7) N(2) O(2);MM=154.074228", "Side reaction of PGPG with Side chain of aspartic or glutamic acid": "NT=UgiJoullieProGlyProGly;AC=1283;CF=H(20) C(14) N(4) O(4);MM=308.148455", "Glycosylation with IME linked Hex(2) NeuAc": "NT=IMEHex(2)NeuAc(1);AC=1286;CF=H(3) C(2) N S Hex(2) NeuAc;MM=688.199683", "Loss of arginine due to transpeptidation": "NT=Arg-loss;AC=1287;CF=H(-12) C(-6) N(-4) O(-1);MM=-156.101111", "Addition of arginine due to transpeptidation": "NT=Arg;AC=1288;CF=H(12) C(6) N(4) O;MM=156.101111", "Double Carbamidomethylation": "NT=Dicarbamidomethyl;AC=1290;CF=H(6) C(4) N(2) O(2);MM=114.042927", "Dimethyl-Medium": "NT=Dimethyl:2H(6);AC=1291;CF=H(-2) 2H(6) C(2);MM=34.068961", "SUMOylation leaving GlyGlyGln": "NT=GGQ;AC=1292;CF=H(14) C(9) N(4) O(4);MM=242.101505", "SUMOylation leaving GlnThrGlyGly": "NT=QTGG;AC=1293;CF=H(21) C(13) N(5) O(6);MM=343.149184", "13C3 label for SILAC": "NT=Label:13C(3);AC=1296;CF=C(-3) 13C(3);MM=3.010064", "SILAC or AQUA label": "NT=Label:13C(3)15N(1);AC=1297;CF=C(-3) 13C(3) N(-1) 15N;MM=4.007099", "13C4 15N1 label for SILAC": "NT=Label:13C(4)15N(1);AC=1298;CF=C(-4) 13C(4) N(-1) 15N;MM=5.010454", "2H(10) label": "NT=Label:2H(10);AC=1299;CF=H(-10) 2H(10);MM=10.062767", "Addition of lysine due to transpeptidation": "NT=Lys;AC=1301;CF=H(12) C(6) N(2) O;MM=128.094963", "mTRAQ heavy": "NT=mTRAQ:13C(6)15N(2);AC=1302;CF=H(12) C 13C(6) 15N(2) O;MM=148.109162", "N-acetyl neuraminic acid": "NT=NeuAc;AC=1303;CF=NeuAc;MM=291.095417", "N-glycoyl neuraminic acid": "NT=NeuGc;AC=1304;CF=NeuGc;MM=307.090331", "Reduced acrolein addition +58": "NT=Delta:H(6)C(3)O(1);AC=1312;CF=H(6) C(3) O;MM=58.041865", "Reduced acrolein addition +96": "NT=Delta:H(8)C(6)O(1);AC=1313;CF=H(8) C(6) O;MM=96.057515", "biotin hydrazide labeled acrolein addition +298": "NT=biotinAcrolein298;AC=1314;CF=H(22) C(13) N(4) O(2) S;MM=298.146347", "3-methyl-5-(methylamino)-1,3-diphenylpentan-1-one": "NT=MM-diphenylpentanone;AC=1315;CF=H(19) C(18) N O;MM=265.146664", "2-ethyl-3-hydroxy-1,3-diphenylpentan-1-one": "NT=EHD-diphenylpentanone;AC=1317;CF=H(18) C(18) O(2);MM=266.13068", "Maleimide-Biotin + 2Water": "NT=Biotin:Thermo-21901+2H2O;AC=1320;CF=H(39) C(23) N(5) O(9) S;MM=561.246849", "Accurate mass for DiLeu 115 isobaric tag": "NT=DiLeu4plex115;AC=1321;CF=H(15) C(7) 13C 15N 18O;MM=145.12", "Accurate mass for DiLeu 116 isobaric tag": "NT=DiLeu4plex;AC=1322;CF=H(13) 2H(2) C(8) N 18O;MM=145.132163", "Accurate mass for DiLeu 117 isobaric tag": "NT=DiLeu4plex117;AC=1323;CF=H(13) 2H(2) C(7) 13C 15N O;MM=145.128307", "Accurate mass for DiLeu 118 isobaric tag": "NT=DiLeu4plex118;AC=1324;CF=H(11) 2H(4) C(8) N O;MM=145.140471", "N-ethylmaleimideSulfur": "NT=NEMsulfur;AC=1326;CF=H(7) C(6) N O(2) S;MM=157.019749", "N-ethylmaleimideSulfurWater": "NT=NEMsulfurWater;AC=1328;CF=H(9) C(6) N O(3) S;MM=175.030314", "BisANS with loss of both sulfonates": "NT=bisANS-sulfonates;AC=1330;CF=H(22) C(32) N(2);MM=434.178299", "Chemical reaction with 2,4-dinitro-1-chloro benzene (DNCB)": "NT=DNCB_hapten;AC=1331;CF=H(2) C(6) N(2) O(4);MM=166.001457", "Biotin-PEG11-maleimide": "NT=Biotin:Thermo-21911;AC=1340;CF=H(71) C(41) N(5) O(16) S;MM=921.461652", "Native iodoacetyl Tandem Mass Tag\u00ae": "NT=iodoTMT;AC=1341;CF=H(28) C(16) N(4) O(3);MM=324.216141", "Sixplex iodoacetyl Tandem Mass Tag\u00ae": "NT=iodoTMT6plex;AC=1342;CF=H(28) C(12) 13C(4) N(3) 15N O(3);MM=329.226595", "reaction with phenyl salicylate (PS)": "NT=PS_Hapten;AC=1345;CF=H(4) C(7) O(2);MM=120.021129", "Cy3 Maleimide mono-Reactive dye": "NT=Cy3-maleimide;AC=1348;CF=H(45) C(37) N(4) O(9) S(2);MM=753.262796", "modification of the lysine side chain from NH2 to guanidine with a H removed in favor of a benzyl group": "NT=benzylguanidine;AC=1349;CF=H(8) C(8) N(2);MM=132.068748", "A fixed +1 charge tag attached to the N-terminus of peptides": "NT=CarboxymethylDMAP;AC=1350;CF=H(10) C(9) N(2) O;MM=162.079313", "Formation of five membered aromatic heterocycle": "NT=azole;AC=1355;CF=H(-4) O(-1);MM=-20.026215", "phosphate-ribosylation": "NT=phosphoRibosyl;AC=1356;CF=H(9) C(5) O(7) P;MM=212.00859", "D5 N-ethylmaleimide+water on cysteines": "NT=NEM:2H(5)+H2O;AC=1358;CF=H(4) 2H(5) C(6) N O(3);MM=148.089627", "Crotonylation": "NT=Crotonyl;AC=1363;CF=H(4) C(4) O;MM=68.026215", "O-ethyl, N-dimethyl phosphate": "NT=O-Et-N-diMePhospho;AC=1364;CF=H(10) C(4) N O(2) P;MM=135.044916", "Hex1dHex1": "NT=dHex(1)Hex(1);AC=1367;CF=dHex Hex;MM=308.110732", "3-fold methylated lysine labelled with Acetyl_heavy": "NT=Methyl:2H(3)+Acetyl:2H(3);AC=1368;CF=H(-2) 2H(6) C(3) O;MM=62.063875", "Oxidised 2H(3) labelled Methionine": "NT=Label:2H(3)+Oxidation;AC=1370;CF=H(-3) 2H(3) O;MM=19.013745", "3-fold methylation with deuterated methyl groups": "NT=Trimethyl:2H(9);AC=1371;CF=H(-3) 2H(9) C(3);MM=51.103441", "heavy acetylation": "NT=Acetyl:13C(2);AC=1372;CF=H(2) 13C(2) O;MM=44.017274", "Hex2dHex1": "NT=dHex(1)Hex(2);AC=1375;CF=dHex Hex(2);MM=470.163556", "Hex3dHex1": "NT=dHex(1)Hex(3);AC=1376;CF=dHex Hex(3);MM=632.216379", "Hex4dHex1": "NT=dHex(1)Hex(4);AC=1377;CF=dHex Hex(4);MM=794.269203", "Hex5dHex1": "NT=dHex(1)Hex(5);AC=1378;CF=dHex Hex(5);MM=956.322026", "Hex6dHex1": "NT=dHex(1)Hex(6);AC=1379;CF=dHex Hex(6);MM=1118.37485", "reaction with methyl vinyl sulfone": "NT=methylsulfonylethyl;AC=1380;CF=H(6) C(3) O(2) S;MM=106.00885", "reaction with ethyl vinyl sulfone": "NT=ethylsulfonylethyl;AC=1381;CF=H(8) C(4) O(2) S;MM=120.0245", "reaction with phenyl vinyl sulfone": "NT=phenylsulfonylethyl;AC=1382;CF=H(8) C(8) O(2) S;MM=168.0245", "PLP bound to lysine reduced by sodium borohydride (NaBH4) to create amine linkage": "NT=PyridoxalPhosphateH2;AC=1383;CF=H(10) C(8) N O(5) P;MM=231.02966", "methionine oxidation to homocysteic acid": "NT=Homocysteic_acid;AC=1384;CF=H(-2) C(-1) O(3);MM=33.969094", "ADP-ribosylation followed by conversion to hydroxamic acid via hydroxylamine": "NT=Hydroxamic_acid;AC=1385;CF=H N;MM=15.010899", "Modification by hydroxylated mechloroethamine (HN-2)": "NT=HN2_mustard;AC=1388;CF=H(11) C(5) N O;MM=101.084064", "Modification by hydroxylated tris-(2-chloroethyl)amine (HN-3)": "NT=HN3_mustard;AC=1389;CF=H(13) C(6) N O(2);MM=131.094629", "N-ethylmaleimide on cysteine sulfenic acid": "NT=Oxidation+NEM;AC=1390;CF=H(7) C(6) N O(3);MM=141.042593", "fluorescein-hexanoate-NHS hydrolysis": "NT=NHS-fluorescein;AC=1391;CF=H(21) C(27) N O(7);MM=471.131802", "Representative mass and accurate mass for 114": "NT=DiART6plex;AC=1392;CF=H(20) C(7) 13C(4) N 15N O(2);MM=217.162932", "Accurate mass for DiART6plex 115": "NT=DiART6plex115;AC=1393;CF=H(20) C(8) 13C(3) 15N(2) O(2);MM=217.156612", "Accurate mass for DiART6plex 116 and 119": "NT=DiART6plex116/119;AC=1394;CF=H(18) 2H(2) C(9) 13C(2) N 15N O(2);MM=217.168776", "Accurate mass for DiART6plex 117": "NT=DiART6plex117;AC=1395;CF=H(18) 2H(2) C(10) 13C 15N(2) O(2);MM=217.162456", "Accurate mass for DiART6plex 118": "NT=DiART6plex118;AC=1396;CF=H(18) 2H(2) C(8) 13C(3) N(2) O(2);MM=217.175096", "iodoacetanilide derivative": "NT=Iodoacetanilide;AC=1397;CF=H(7) C(8) N O;MM=133.052764", "13C labelled iodoacetanilide derivative": "NT=Iodoacetanilide:13C(6);AC=1398;CF=H(7) C(2) 13C(6) N O;MM=139.072893", "Diaminopimelic acid-DSP monolinked": "NT=Dap-DSP;AC=1399;CF=H(20) C(13) N(2) O(6) S(2);MM=364.076278", "N-Acetylmuramic acid": "NT=MurNAc;AC=1400;CF=O(-1) NeuAc;MM=275.100502", "Sumoylation by SUMO-1 after Cyanogen bromide (CNBr) cleavage": "NT=EEEDVIEVYQEQTGG;AC=1405;CF=H(107) C(72) N(17) O(31);MM=1705.73189", "Sumoylation by SUMO-2/3 after Cyanogen bromide (CNBr) cleavage": "NT=EDEDTIDVFQQQTGG;AC=1406;CF=H(102) C(69) N(18) O(30);MM=1662.700924", "A2G2S2/G2S2": "NT=Hex(5)HexNAc(4)NeuAc(2);AC=1408;CF=Hex(5) HexNAc(4) NeuAc(2);MM=2204.772441", "A2G2S1/G2S1": "NT=Hex(5)HexNAc(4)NeuAc(1);AC=1409;CF=Hex(5) HexNAc(4) NeuAc;MM=1913.677025", "FA2G2S1/G2FS1": "NT=dHex(1)Hex(5)HexNAc(4)NeuAc(1);AC=1410;CF=dHex Hex(5) HexNAc(4) NeuAc;MM=2059.734933", "FA2G2S2/G2FS2": "NT=dHex(1)Hex(5)HexNAc(4)NeuAc(2);AC=1411;CF=dHex Hex(5) HexNAc(4) NeuAc(2);MM=2350.83035", "O3S1HexNAc1": "NT=s-GlcNAc;AC=1412;CF=O(3) S HexNAc;MM=283.036187", "H1O3P1Hex2": "NT=PhosphoHex(2);AC=1413;CF=H O(3) P Hex(2);MM=404.071978", "3-fold methylation with fully labelled methyl groups": "NT=Trimethyl:13C(3)2H(9);AC=1414;CF=H(-3) 2H(9) 13C(3);MM=54.113505", "Loss of ammonia (15N)": "NT=15N-oxobutanoic;AC=1419;CF=H(-3) 15N(-1);MM=-18.023584", "spermine adduct": "NT=spermine;AC=1420;CF=H(23) C(10) N(3);MM=185.189198", "spermidine adduct": "NT=spermidine;AC=1421;CF=H(16) C(7) N(2);MM=128.131349", "Biotin_PEG4": "NT=Biotin:Thermo-21330;AC=1423;CF=H(35) C(21) N(3) O(7) S;MM=473.219571", "Hex Pent": "NT=Hex(1)Pent(1);AC=1426;CF=Pent Hex;MM=294.095082", "Hex HexA": "NT=Hex(1)HexA(1);AC=1427;CF=Hex HexA;MM=338.084912", "Hex Pent(2)": "NT=Hex(1)Pent(2);AC=1428;CF=Pent(2) Hex;MM=426.137341", "Hex HexNAc Phos": "NT=Hex(1)HexNAc(1)Phos(1);AC=1429;CF=H O(3) P Hex HexNAc;MM=445.098527", "Hex HexNAc Sulf": "NT=Hex(1)HexNAc(1)Sulf(1);AC=1430;CF=O(3) S Hex HexNAc;MM=445.089011", "Hex NeuAc ---OR--- HexNAc Kdn": "NT=Hex(1)NeuAc(1);AC=1431;CF=Hex NeuAc;MM=453.14824", "Hex NeuGc": "NT=Hex(1)NeuGc(1);AC=1432;CF=Hex NeuGc;MM=469.143155", "HexNAc NeuAc": "NT=HexNAc(1)NeuAc(1);AC=1434;CF=HexNAc NeuAc;MM=494.174789", "HexNAc NeuGc": "NT=HexNAc(1)NeuGc(1);AC=1435;CF=HexNAc NeuGc;MM=510.169704", "Hex HexNAc dHex Me": "NT=Hex(1)HexNAc(1)dHex(1)Me(1);AC=1436;CF=Me dHex Hex HexNAc;MM=525.205755", "Hex HexNAc dHex Me(2)": "NT=Hex(1)HexNAc(1)dHex(1)Me(2);AC=1437;CF=Me(2) dHex Hex HexNAc;MM=539.221405", "Hex(2) HexNAc": "NT=Hex(2)HexNAc(1);AC=1438;CF=Hex(2) HexNAc;MM=527.18502", "Hex HexA HexNAc": "NT=Hex(1)HexA(1)HexNAc(1);AC=1439;CF=Hex HexA HexNAc;MM=541.164284", "Hex(2) HexNAc Me": "NT=Hex(2)HexNAc(1)Me(1);AC=1440;CF=Me Hex(2) HexNAc;MM=541.20067", "Hex Pent(3)": "NT=Hex(1)Pent(3);AC=1441;CF=Pent(3) Hex;MM=558.1796", "Hex NeuAc Pent": "NT=Hex(1)NeuAc(1)Pent(1);AC=1442;CF=Pent Hex NeuAc;MM=585.190499", "Hex(2) HexNAc Sulf": "NT=Hex(2)HexNAc(1)Sulf(1);AC=1443;CF=O(3) S Hex(2) HexNAc;MM=607.141834", "Hex(2) NeuAc ---OR--- Hex HexNAc Kdn": "NT=Hex(2)NeuAc(1);AC=1444;CF=Hex(2) NeuAc;MM=615.201064", "Hex2 dHex2": "NT=dHex(2)Hex(2);AC=1445;CF=dHex(2) Hex(2);MM=616.221465", "dHex Hex(2) HexA": "NT=dHex(1)Hex(2)HexA(1);AC=1446;CF=dHex Hex(2) HexA;MM=646.195644", "Hex HexNAc(2) Sulf": "NT=Hex(1)HexNAc(2)Sulf(1);AC=1447;CF=O(3) S Hex HexNAc(2);MM=648.168383", "dHex Hex(2) HexNAc(2) Pent": "NT=dHex(1)Hex(2)HexNAc(2)Pent(1);AC=1449;CF=dHex(1) Hex(2) HexNAc(2) Pent(1);MM=1008.36456", "Hex(2) HexNAc(2) NeuAc ---OR--- dHex Hex HexNAc(2) NeuGc": "NT=Hex(2)HexNAc(2)NeuAc(1);AC=1450;CF=Hex(2) HexNAc(2) NeuAc;MM=1021.359809", "Hex(3) HexNAc(2) Pent": "NT=Hex(3)HexNAc(2)Pent(1);AC=1451;CF=Hex(3) HexNAc(2) Pent(1);MM=1024.359475", "Hex(4) HexNAc(2)": "NT=Hex(4)HexNAc(2);AC=1452;CF=Hex(4) HexNAc(2);MM=1054.370039", "dHex Hex(4) HexNAc Pent": "NT=dHex(1)Hex(4)HexNAc(1)Pent(1);AC=1453;CF=dHex(1) Hex(4) HexNAc(1) Pent(1);MM=1129.390834", "dHex Hex(3) HexNAc(2) Pent": "NT=dHex(1)Hex(3)HexNAc(2)Pent(1);AC=1454;CF=dHex(1) Hex(3) HexNAc(2) Pent(1);MM=1170.417383", "Hex(3) HexNAc(2) NeuAc": "NT=Hex(3)HexNAc(2)NeuAc(1);AC=1455;CF=Hex(3) HexNAc(2) NeuAc(1);MM=1183.412632", "Hex(4) HexNAc(2) Pent": "NT=Hex(4)HexNAc(2)Pent(1);AC=1456;CF=Hex(4) HexNAc(2) Pent(1);MM=1186.412298", "Hex(3) HexNAc(3) Pent": "NT=Hex(3)HexNAc(3)Pent(1);AC=1457;CF=Hex(3) HexNAc(3) Pent(1);MM=1227.438847", "Hex(5) HexNAc(2) Phos": "NT=Hex(5)HexNAc(2)Phos(1);AC=1458;CF=H O(3) P Hex(5) HexNAc(2);MM=1296.389194", "dHex Hex(4) HexNAc(2) Pent": "NT=dHex(1)Hex(4)HexNAc(2)Pent(1);AC=1459;CF=dHex(1) Hex(4) HexNAc(2) Pent(1);MM=1332.470207", "Hex(7) HexNAc": "NT=Hex(7)HexNAc(1);AC=1460;CF=Hex(7) HexNAc(1);MM=1337.449137", "Hex(4) HexNAc(2) NeuAc ---OR--- Hex(3) HexNAc(2) dHex NeuGc": "NT=Hex(4)HexNAc(2)NeuAc(1);AC=1461;CF=Hex(4) HexNAc(2) NeuAc;MM=1345.465456", "dHex Hex(5) HexNAc(2)": "NT=dHex(1)Hex(5)HexNAc(2);AC=1462;CF=dHex(1) Hex(5) HexNAc(2);MM=1362.480772", "dHex Hex(3) HexNAc(3) Pent": "NT=dHex(1)Hex(3)HexNAc(3)Pent(1);AC=1463;CF=dHex(1) Hex(3) HexNAc(3) Pent(1);MM=1373.496756", "Hex(3) HexNAc(4) Sulf": "NT=Hex(3)HexNAc(4)Sulf(1);AC=1464;CF=O(3) S Hex(3) HexNAc(4);MM=1378.432776", "M6/Man6": "NT=Hex(6)HexNAc(2);AC=1465;CF=Hex(6) HexNAc(2);MM=1378.475686", "Hex(4) HexNAc(3) Pent": "NT=Hex(4)HexNAc(3)Pent(1);AC=1466;CF=Hex(4) HexNAc(3) Pent(1);MM=1389.491671", "dHex Hex(4) HexNAc(3)": "NT=dHex(1)Hex(4)HexNAc(3);AC=1467;CF=dHex(1) Hex(4) HexNAc(3);MM=1403.507321", "Hex(5) HexNAc(3)": "NT=Hex(5)HexNAc(3);AC=1468;CF=Hex(5) HexNAc(3);MM=1419.502235", "Hex(3) HexNAc(4) Pent": "NT=Hex(3)HexNAc(4)Pent(1);AC=1469;CF=Hex(3) HexNAc(4) Pent(1);MM=1430.51822", "Hex(6) HexNAc(2) Phos": "NT=Hex(6)HexNAc(2)Phos(1);AC=1470;CF=H O(3) P Hex(6) HexNAc(2);MM=1458.442017", "dHex Hex(4) HexNAc(3) Sulf": "NT=dHex(1)Hex(4)HexNAc(3)Sulf(1);AC=1471;CF=O(3) S dHex Hex(4) HexNAc(3);MM=1483.464135", "dHex Hex(5) HexNAc(2) Pent": "NT=dHex(1)Hex(5)HexNAc(2)Pent(1);AC=1472;CF=dHex(1) Hex(5) HexNAc(2) Pent(1);MM=1494.52303", "Hex(8) HexNAc": "NT=Hex(8)HexNAc(1);AC=1473;CF=Hex(8) HexNAc(1);MM=1499.501961", "dHex Hex(3) HexNAc(3) Pent(2)": "NT=dHex(1)Hex(3)HexNAc(3)Pent(2);AC=1474;CF=dHex(1) Hex(3) HexNAc(3) Pent(2);MM=1505.539015", "dHex(2) Hex(3) HexNAc(3) Pent": "NT=dHex(2)Hex(3)HexNAc(3)Pent(1);AC=1475;CF=dHex(2) Hex(3) HexNAc(3) Pent(1);MM=1519.554665", "dHex Hex(3) HexNAc(4) Sulf": "NT=dHex(1)Hex(3)HexNAc(4)Sulf(1);AC=1476;CF=O(3) S dHex Hex(3) HexNAc(4);MM=1524.490684", "dHex Hex(6) HexNAc(2)": "NT=dHex(1)Hex(6)HexNAc(2);AC=1477;CF=dHex(1) Hex(6) HexNAc(2);MM=1524.533595", "dHex Hex(4) HexNAc(3) Pent": "NT=dHex(1)Hex(4)HexNAc(3)Pent(1);AC=1478;CF=dHex(1) Hex(4) HexNAc(3) Pent(1);MM=1535.549579", "Hex(4) HexNAc(4) Sulf": "NT=Hex(4)HexNAc(4)Sulf(1);AC=1479;CF=O(3) S Hex(4) HexNAc(4);MM=1540.485599", "M7/Man7": "NT=Hex(7)HexNAc(2);AC=1480;CF=Hex(7) HexNAc(2);MM=1540.52851", "dHex(2) Hex(4) HexNAc(3)": "NT=dHex(2)Hex(4)HexNAc(3);AC=1481;CF=dHex(2) Hex(4) HexNAc(3);MM=1549.56523", "Hex(5) HexNAc(3) Pent": "NT=Hex(5)HexNAc(3)Pent(1);AC=1482;CF=Hex(5) HexNAc(3) Pent(1);MM=1551.544494", "Hex(4) HexNAc(3) NeuGc": "NT=Hex(4)HexNAc(3)NeuGc(1);AC=1483;CF=Hex(4) HexNAc(3) NeuGc(1);MM=1564.539743", "dHex Hex(5) HexNAc(3)": "NT=dHex(1)Hex(5)HexNAc(3);AC=1484;CF=dHex(1) Hex(5) HexNAc(3);MM=1565.560144", "dHex Hex(3) HexNAc(4) Pent": "NT=dHex(1)Hex(3)HexNAc(4)Pent(1);AC=1485;CF=dHex(1) Hex(3) HexNAc(4) Pent(1);MM=1576.576129", "Hex(3) HexNAc(5) Sulf": "NT=Hex(3)HexNAc(5)Sulf(1);AC=1486;CF=O(3) S Hex(3) HexNAc(5);MM=1581.512148", "Hex(6) HexNAc(3)": "NT=Hex(6)HexNAc(3);AC=1487;CF=Hex(6) HexNAc(3);MM=1581.555059", "Hex(3) HexNAc(4) NeuAc ---OR--- Hex(2) HexNAc(4) dHex NeuGc": "NT=Hex(3)HexNAc(4)NeuAc(1);AC=1488;CF=Hex(3) HexNAc(4) NeuAc;MM=1589.571378", "Hex(4) HexNAc(4) Pent": "NT=Hex(4)HexNAc(4)Pent(1);AC=1489;CF=Hex(4) HexNAc(4) Pent(1);MM=1592.571043", "Hex(7) HexNAc(2) Phos": "NT=Hex(7)HexNAc(2)Phos(1);AC=1490;CF=H O(3) P Hex(7) HexNAc(2);MM=1620.494841", "Hex(4) HexNAc(4) Me(2) Pent": "NT=Hex(4)HexNAc(4)Me(2)Pent(1);AC=1491;CF=Hex(4) HexNAc(4) Me(2) Pent(1);MM=1620.602343", "dHex Hex(3) HexNAc(3) Pent(3) ---OR--- Hex(4) HexNAc(2) dHex(2) NeuAc": "NT=dHex(1)Hex(3)HexNAc(3)Pent(3);AC=1492;CF=Pent(3) dHex Hex(3) HexNAc(3);MM=1637.581274", "dHex Hex(5) HexNAc(3) Sulf": "NT=dHex(1)Hex(5)HexNAc(3)Sulf(1);AC=1493;CF=O(3) S dHex Hex(5) HexNAc(3);MM=1645.516959", "dHex(2) Hex(3) HexNAc(3) Pent(2)": "NT=dHex(2)Hex(3)HexNAc(3)Pent(2);AC=1494;CF=dHex(2) Hex(3) HexNAc(3) Pent(2);MM=1651.596924", "Hex(6) HexNAc(3) Phos": "NT=Hex(6)HexNAc(3)Phos(1);AC=1495;CF=H O(3) P Hex(6) HexNAc(3);MM=1661.52139", "Hex(4) HexNAc(5)": "NT=Hex(4)HexNAc(5);AC=1496;CF=Hex(4) HexNAc(5);MM=1663.608157", "dHex(3) Hex(3) HexNAc(3) Pent": "NT=dHex(3)Hex(3)HexNAc(3)Pent(1);AC=1497;CF=dHex(3) Hex(3) HexNAc(3) Pent(1);MM=1665.612574", "dHex(2) Hex(4) HexNAc(3) Pent": "NT=dHex(2)Hex(4)HexNAc(3)Pent(1);AC=1498;CF=dHex(2) Hex(4) HexNAc(3) Pent(1);MM=1681.607488", "dHex Hex(4) HexNAc(4) Sulf": "NT=dHex(1)Hex(4)HexNAc(4)Sulf(1);AC=1499;CF=O(3) S dHex Hex(4) HexNAc(4);MM=1686.543508", "dHex Hex(7) HexNAc(2)": "NT=dHex(1)Hex(7)HexNAc(2);AC=1500;CF=dHex(1) Hex(7) HexNAc(2);MM=1686.586419", "dHex Hex(4) HexNAc(3) NeuAc ---OR--- dHex(2) Hex(3) HexNAc(3) NeuGc": "NT=dHex(1)Hex(4)HexNAc(3)NeuAc(1);AC=1501;CF=dHex Hex(4) HexNAc(3) NeuAc;MM=1694.602737", "Hex(7) HexNAc(2) Phos(2)": "NT=Hex(7)HexNAc(2)Phos(2);AC=1502;CF=H(2) O(6) P(2) Hex(7) HexNAc(2);MM=1700.461172", "Hex(5) HexNAc(4) Sulf": "NT=Hex(5)HexNAc(4)Sulf(1);AC=1503;CF=O(3) S Hex(5) HexNAc(4);MM=1702.538423", "M8/Man8": "NT=Hex(8)HexNAc(2);AC=1504;CF=Hex(8) HexNAc(2);MM=1702.581333", "dHex Hex(3) HexNAc(4) Pent(2)": "NT=dHex(1)Hex(3)HexNAc(4)Pent(2);AC=1505;CF=dHex(1) Hex(3) HexNAc(4) Pent(2);MM=1708.618387", "dHex Hex(4) HexNAc(3) NeuGc ---OR--- Hex(5) HexNAc(3) NeuAc": "NT=dHex(1)Hex(4)HexNAc(3)NeuGc(1);AC=1506;CF=dHex Hex(4) HexNAc(3) NeuGc;MM=1710.597652", "dHex(2) Hex(3) HexNAc(4) Pent": "NT=dHex(2)Hex(3)HexNAc(4)Pent(1);AC=1507;CF=dHex(2) Hex(3) HexNAc(4) Pent(1);MM=1722.634037", "dHex Hex(3) HexNAc(5) Sulf": "NT=dHex(1)Hex(3)HexNAc(5)Sulf(1);AC=1508;CF=O(3) S dHex Hex(3) HexNAc(5);MM=1727.570057", "dHex Hex(6) HexNAc(3)": "NT=dHex(1)Hex(6)HexNAc(3);AC=1509;CF=dHex(1) Hex(6) HexNAc(3);MM=1727.612968", "dHex Hex(3) HexNAc(4) NeuAc": "NT=dHex(1)Hex(3)HexNAc(4)NeuAc(1);AC=1510;CF=dHex(1) Hex(3) HexNAc(4) NeuAc(1);MM=1735.629286", "dHex(3) Hex(3) HexNAc(4)": "NT=dHex(3)Hex(3)HexNAc(4);AC=1511;CF=dHex(3) Hex(3) HexNAc(4);MM=1736.649688", "dHex Hex(4) HexNAc(4) Pent": "NT=dHex(1)Hex(4)HexNAc(4)Pent(1);AC=1512;CF=dHex(1) Hex(4) HexNAc(4) Pent(1);MM=1738.628952", "Hex(4) HexNAc(5) Sulf": "NT=Hex(4)HexNAc(5)Sulf(1);AC=1513;CF=O(3) S Hex(4) HexNAc(5);MM=1743.564972", "Hex(7) HexNAc(3)": "NT=Hex(7)HexNAc(3);AC=1514;CF=Hex(7) HexNAc(3);MM=1743.607882", "dHex Hex(4) HexNAc(3) NeuAc Sulf": "NT=dHex(1)Hex(4)HexNAc(3)NeuAc(1)Sulf(1);AC=1515;CF=O(3) S dHex Hex(4) HexNAc(3) NeuAc;MM=1774.559552", "Hex(5) HexNAc(4) Me(2) Pent": "NT=Hex(5)HexNAc(4)Me(2)Pent(1);AC=1516;CF=Hex(5) HexNAc(4) Me(2) Pent(1);MM=1782.655167", "Hex(3) HexNAc(6) Sulf": "NT=Hex(3)HexNAc(6)Sulf(1);AC=1517;CF=O(3) S Hex(3) HexNAc(6);MM=1784.591521", "dHex Hex(6) HexNAc(3) Sulf": "NT=dHex(1)Hex(6)HexNAc(3)Sulf(1);AC=1518;CF=O(3) S dHex Hex(6) HexNAc(3);MM=1807.569782", "dHex Hex(4) HexNAc(5)": "NT=dHex(1)Hex(4)HexNAc(5);AC=1519;CF=dHex(1) Hex(4) HexNAc(5);MM=1809.666066", "dHex Hex(5) HexA HexNAc(3) Sulf": "NT=dHex(1)Hex(5)HexA(1)HexNAc(3)Sulf(1);AC=1520;CF=O(3) S dHex Hex(5) HexA HexNAc(3);MM=1821.549047", "Hex(7) HexNAc(3) Phos": "NT=Hex(7)HexNAc(3)Phos(1);AC=1521;CF=H O(3) P Hex(7) HexNAc(3);MM=1823.574213", "Hex(6) HexNAc(4) Me(3)": "NT=Hex(6)HexNAc(4)Me(3);AC=1522;CF=Hex(6) HexNAc(4) Me(3);MM=1826.681382", "dHex(2) Hex(4) HexNAc(4) Sulf": "NT=dHex(2)Hex(4)HexNAc(4)Sulf(1);AC=1523;CF=O(3) S dHex(2) Hex(4) HexNAc(4);MM=1832.601417", "Hex(4) HexNAc(3) NeuAc(2)": "NT=Hex(4)HexNAc(3)NeuAc(2);AC=1524;CF=Hex(4) HexNAc(3) NeuAc(2);MM=1839.640245", "dHex Hex(3) HexNAc(4) Pent(3)": "NT=dHex(1)Hex(3)HexNAc(4)Pent(3);AC=1525;CF=dHex(1) Hex(3) HexNAc(4) Pent(3);MM=1840.660646", "dHex(2) Hex(5) HexNAc(3) Pent": "NT=dHex(2)Hex(5)HexNAc(3)Pent(1);AC=1526;CF=dHex(2) Hex(5) HexNAc(3) Pent(1);MM=1843.660312", "dHex Hex(5) HexNAc(4) Sulf": "NT=dHex(1)Hex(5)HexNAc(4)Sulf(1);AC=1527;CF=O(3) S dHex Hex(5) HexNAc(4);MM=1848.596331", "dHex(2) Hex(3) HexNAc(4) Pent(2)": "NT=dHex(2)Hex(3)HexNAc(4)Pent(2);AC=1528;CF=dHex(2) Hex(3) HexNAc(4) Pent(2);MM=1854.676296", "dHex Hex(5) HexNAc(3) NeuAc": "NT=dHex(1)Hex(5)HexNAc(3)NeuAc(1);AC=1529;CF=dHex(1) Hex(5) HexNAc(3) NeuAc(1);MM=1856.655561", "Hex(3) HexNAc(6) Sulf(2)": "NT=Hex(3)HexNAc(6)Sulf(2);AC=1530;CF=O(6) S(2) Hex(3) HexNAc(6);MM=1864.548335", "M9/Man9": "NT=Hex(9)HexNAc(2);AC=1531;CF=Hex(9) HexNAc(2);MM=1864.634157", "Hex(4) HexNAc(6)": "NT=Hex(4)HexNAc(6);AC=1532;CF=Hex(4) HexNAc(6);MM=1866.68753", "dHex(3) Hex(3) HexNAc(4) Pent": "NT=dHex(3)Hex(3)HexNAc(4)Pent(1);AC=1533;CF=dHex(3) Hex(3) HexNAc(4) Pent(1);MM=1868.691946", "dHex Hex(5) HexNAc(3) NeuGc ---OR--- Hex(6) HexNAc(3) NeuAc": "NT=dHex(1)Hex(5)HexNAc(3)NeuGc(1);AC=1534;CF=dHex Hex(5) HexNAc(3) NeuGc;MM=1872.650475", "dHex(2) Hex(4) HexNAc(4) Pent": "NT=dHex(2)Hex(4)HexNAc(4)Pent(1);AC=1535;CF=dHex(2) Hex(4) HexNAc(4) Pent(1);MM=1884.686861", "dHex Hex(4) HexNAc(5) Sulf": "NT=dHex(1)Hex(4)HexNAc(5)Sulf(1);AC=1536;CF=O(3) S dHex Hex(4) HexNAc(5);MM=1889.62288", "dHex Hex(7) HexNAc(3)": "NT=dHex(1)Hex(7)HexNAc(3);AC=1537;CF=dHex(1) Hex(7) HexNAc(3);MM=1889.665791", "dHex Hex(5) HexNAc(4) Pent": "NT=dHex(1)Hex(5)HexNAc(4)Pent(1);AC=1538;CF=dHex(1) Hex(5) HexNAc(4) Pent(1);MM=1900.681776", "dHex Hex(5) HexA HexNAc(3) Sulf(2)": "NT=dHex(1)Hex(5)HexA(1)HexNAc(3)Sulf(2);AC=1539;CF=O(6) S(2) dHex Hex(5) HexA HexNAc(3);MM=1901.505861", "Hex(3) HexNAc(7)": "NT=Hex(3)HexNAc(7);AC=1540;CF=Hex(3) HexNAc(7);MM=1907.714079", "dHex(2) Hex(5) HexNAc(4)": "NT=dHex(2)Hex(5)HexNAc(4);AC=1541;CF=dHex(2) Hex(5) HexNAc(4);MM=1914.697426", "dHex(2) Hex(4) HexNAc(3) NeuAc Sulf": "NT=dHex(2)Hex(4)HexNAc(3)NeuAc(1)Sulf(1);AC=1542;CF=O(3) S dHex(2) Hex(4) HexNAc(3) NeuAc;MM=1920.617461", "dHex Hex(5) HexNAc(4) Sulf(2)": "NT=dHex(1)Hex(5)HexNAc(4)Sulf(2);AC=1543;CF=O(6) S(2) dHex Hex(5) HexNAc(4);MM=1928.553146", "dHex Hex(5) HexNAc(4) Me(2) Pent": "NT=dHex(1)Hex(5)HexNAc(4)Me(2)Pent(1);AC=1544;CF=dHex(1) Hex(5) HexNAc(4) Me(2) Pent(1);MM=1928.713076", "Hex(5) HexNAc(4) NeuGc": "NT=Hex(5)HexNAc(4)NeuGc(1);AC=1545;CF=Hex(5) HexNAc(4) NeuGc(1);MM=1929.671939", "dHex Hex(3) HexNAc(6) Sulf": "NT=dHex(1)Hex(3)HexNAc(6)Sulf(1);AC=1546;CF=O(3) S dHex Hex(3) HexNAc(6);MM=1930.64943", "dHex Hex(6) HexNAc(4)": "NT=dHex(1)Hex(6)HexNAc(4);AC=1547;CF=dHex(1) Hex(6) HexNAc(4);MM=1930.69234", "dHex Hex(5) HexNAc(3) NeuAc Sulf": "NT=dHex(1)Hex(5)HexNAc(3)NeuAc(1)Sulf(1);AC=1548;CF=O(3) S dHex Hex(5) HexNAc(3) NeuAc;MM=1936.612375", "Hex(7) HexNAc(4)": "NT=Hex(7)HexNAc(4);AC=1549;CF=Hex(7) HexNAc(4);MM=1946.687255", "dHex Hex(5) HexNAc(3) NeuGc Sulf": "NT=dHex(1)Hex(5)HexNAc(3)NeuGc(1)Sulf(1);AC=1550;CF=O(3) S dHex Hex(5) HexNAc(3) NeuGc;MM=1952.60729", "Hex(4) HexNAc(5) NeuAc": "NT=Hex(4)HexNAc(5)NeuAc(1);AC=1551;CF=Hex(4) HexNAc(5) NeuAc(1);MM=1954.703574", "Hex(6) HexNAc(4) Me(3) Pent": "NT=Hex(6)HexNAc(4)Me(3)Pent(1);AC=1552;CF=Hex(6) HexNAc(4) Me(3) Pent(1);MM=1958.72364", "dHex Hex(7) HexNAc(3) Sulf": "NT=dHex(1)Hex(7)HexNAc(3)Sulf(1);AC=1553;CF=O(3) S dHex Hex(7) HexNAc(3);MM=1969.622606", "dHex Hex(7) HexNAc(3) Phos": "NT=dHex(1)Hex(7)HexNAc(3)Phos(1);AC=1554;CF=H O(3) P dHex Hex(7) HexNAc(3);MM=1969.632122", "dHex Hex(5) HexNAc(5)": "NT=dHex(1)Hex(5)HexNAc(5);AC=1555;CF=dHex(1) Hex(5) HexNAc(5);MM=1971.718889", "dHex Hex(4) HexNAc(4) NeuAc Sulf": "NT=dHex(1)Hex(4)HexNAc(4)NeuAc(1)Sulf(1);AC=1556;CF=O(3) S dHex Hex(4) HexNAc(4) NeuAc;MM=1977.638925", "dHex(3) Hex(4) HexNAc(4) Sulf": "NT=dHex(3)Hex(4)HexNAc(4)Sulf(1);AC=1557;CF=O(3) S dHex(3) Hex(4) HexNAc(4);MM=1978.659326", "Hex(3) HexNAc(7) Sulf": "NT=Hex(3)HexNAc(7)Sulf(1);AC=1558;CF=O(3) S Hex(3) HexNAc(7);MM=1987.670893", "A3G3": "NT=Hex(6)HexNAc(5);AC=1559;CF=Hex(6) HexNAc(5);MM=1987.713804", "Hex(5) HexNAc(4) NeuAc Sulf": "NT=Hex(5)HexNAc(4)NeuAc(1)Sulf(1);AC=1560;CF=O(3) S Hex(5) HexNAc(4) NeuAc;MM=1993.633839", "Hex(3) HexNAc(6) NeuAc": "NT=Hex(3)HexNAc(6)NeuAc(1);AC=1561;CF=Hex(3) HexNAc(6) NeuAc(1);MM=1995.730123", "dHex(2) Hex(3) HexNAc(6)": "NT=dHex(2)Hex(3)HexNAc(6);AC=1562;CF=dHex(2) Hex(3) HexNAc(6);MM=1996.750524", "Hex HexNAc NeuGc": "NT=Hex(1)HexNAc(1)NeuGc(1);AC=1563;CF=Hex(1) HexNAc(1) NeuGc(1);MM=672.222527", "dHex Hex(2) HexNAc": "NT=dHex(1)Hex(2)HexNAc(1);AC=1564;CF=dHex(1) Hex(2) HexNAc(1);MM=673.242928", "HexNAc(3) Sulf": "NT=HexNAc(3)Sulf(1);AC=1565;CF=O(3) S HexNAc(3);MM=689.194932", "Hex(3) HexNAc": "NT=Hex(3)HexNAc(1);AC=1566;CF=Hex(3) HexNAc;MM=689.237843", "Hex HexNAc Kdn Sulf": "NT=Hex(1)HexNAc(1)Kdn(1)Sulf(1);AC=1567;CF=O(3) S Hex HexNAc Kdn;MM=695.157878", "HexNAc(2) NeuAc": "NT=HexNAc(2)NeuAc(1);AC=1568;CF=HexNAc(2) NeuAc(1);MM=697.254162", "HexNAc Kdn(2) ---OR--- Hex(2) HexNAc HexA": "NT=HexNAc(1)Kdn(2);AC=1570;CF=HexNAc Kdn(2);MM=703.217108", "Hex(3) HexNAc Me": "NT=Hex(3)HexNAc(1)Me(1);AC=1571;CF=Hex(3) HexNAc(1) Me(1);MM=703.253493", "Hex(2) HexA Pent Sulf": "NT=Hex(2)HexA(1)Pent(1)Sulf(1);AC=1572;CF=O(3) S Pent Hex(2) HexA;MM=712.136808", "HexNAc(2) NeuGc": "NT=HexNAc(2)NeuGc(1);AC=1573;CF=HexNAc(2) NeuGc(1);MM=713.249076", "Hex(4) Phos": "NT=Hex(4)Phos(1);AC=1575;CF=H O(3) P Hex(4);MM=728.177625", "Hex HexNAc NeuAc Sulf": "NT=Hex(1)HexNAc(1)NeuAc(1)Sulf(1);AC=1577;CF=O(3) S Hex HexNAc NeuAc;MM=736.184427", "Hex HexA HexNAc(2)": "NT=Hex(1)HexA(1)HexNAc(2);AC=1578;CF=Hex(1) HexA(1) HexNAc(2);MM=744.243657", "dHex Hex(2) HexNAc Sulf": "NT=dHex(1)Hex(2)HexNAc(1)Sulf(1);AC=1579;CF=O(3) S dHex Hex(2) HexNAc;MM=753.199743", "dHex HexNAc(3)": "NT=dHex(1)HexNAc(3);AC=1580;CF=dHex(1) HexNAc(3);MM=755.296027", "dHex Hex HexNAc Kdn ---OR--- Hex(2) dHex NeuAc": "NT=dHex(1)Hex(1)HexNAc(1)Kdn(1);AC=1581;CF=dHex Hex HexNAc Kdn;MM=761.258973", "Hex HexNAc(3)": "NT=Hex(1)HexNAc(3);AC=1582;CF=Hex(1) HexNAc(3);MM=771.290941", "HexNAc(2) NeuAc Sulf": "NT=HexNAc(2)NeuAc(1)Sulf(1);AC=1583;CF=O(3) S HexNAc(2) NeuAc;MM=777.210976", "dHex(2) Hex(3)": "NT=dHex(2)Hex(3);AC=1584;CF=dHex(2) Hex(3);MM=778.274288", "Hex(2) HexA HexNAc Sulf": "NT=Hex(2)HexA(1)HexNAc(1)Sulf(1);AC=1585;CF=O(3) S Hex(2) HexA HexNAc;MM=783.173922", "dHex(2) Hex(2) HexA": "NT=dHex(2)Hex(2)HexA(1);AC=1586;CF=dHex(2) Hex(2) HexA(1);MM=792.253553", "dHex Hex HexNAc(2) Sulf": "NT=dHex(1)Hex(1)HexNAc(2)Sulf(1);AC=1587;CF=O(3) S dHex Hex HexNAc(2);MM=794.226292", "dHex Hex HexNAc NeuAc": "NT=dHex(1)Hex(1)HexNAc(1)NeuAc(1);AC=1588;CF=dHex(1) Hex(1) HexNAc(1) NeuAc(1);MM=802.285522", "Hex(2) HexNAc(2) Sulf": "NT=Hex(2)HexNAc(2)Sulf(1);AC=1589;CF=O(3) S Hex(2) HexNAc(2);MM=810.221207", "HexNAc NeuGc(2)": "NT=HexNAc(1)NeuGc(2);AC=1592;CF=HexNAc(1) NeuGc(2);MM=817.260035", "dHex Hex HexNAc NeuGc ---OR--- Hex(2) HexNAc NeuAc": "NT=dHex(1)Hex(1)HexNAc(1)NeuGc(1);AC=1593;CF=dHex Hex HexNAc NeuGc;MM=818.280436", "dHex(2) Hex(2) HexNAc": "NT=dHex(2)Hex(2)HexNAc(1);AC=1594;CF=dHex(2) Hex(2) HexNAc(1);MM=819.300837", "Hex(2) HexNAc NeuGc": "NT=Hex(2)HexNAc(1)NeuGc(1);AC=1595;CF=Hex(2) HexNAc(1) NeuGc(1);MM=834.275351", "dHex Hex(3) HexNAc": "NT=dHex(1)Hex(3)HexNAc(1);AC=1596;CF=dHex(1) Hex(3) HexNAc(1);MM=835.295752", "dHex Hex(2) HexA HexNAc": "NT=dHex(1)Hex(2)HexA(1)HexNAc(1);AC=1597;CF=dHex(1) Hex(2) HexA(1) HexNAc(1);MM=849.275017", "Hex HexNAc(3) Sulf": "NT=Hex(1)HexNAc(3)Sulf(1);AC=1598;CF=O(3) S Hex HexNAc(3);MM=851.247756", "Hex(4) HexNAc": "NT=Hex(4)HexNAc(1);AC=1599;CF=Hex(4) HexNAc;MM=851.290667", "Hex HexNAc(2) NeuAc": "NT=Hex(1)HexNAc(2)NeuAc(1);AC=1600;CF=Hex(1) HexNAc(2) NeuAc(1);MM=859.306985", "Hex HexNAc(2) NeuGc": "NT=Hex(1)HexNAc(2)NeuGc(1);AC=1602;CF=Hex(1) HexNAc(2) NeuGc(1);MM=875.3019", "Hex(5) Phos": "NT=Hex(5)Phos(1);AC=1604;CF=H O(3) P Hex(5);MM=890.230448", "dHex(2) Hex HexNAc Kdn": "NT=dHex(2)Hex(1)HexNAc(1)Kdn(1);AC=1606;CF=dHex(2) Hex HexNAc Kdn;MM=907.316881", "dHex Hex(3) HexNAc Sulf": "NT=dHex(1)Hex(3)HexNAc(1)Sulf(1);AC=1607;CF=O(3) S dHex Hex(3) HexNAc;MM=915.252567", "dHex Hex HexNAc(3)": "NT=dHex(1)Hex(1)HexNAc(3);AC=1608;CF=dHex(1) Hex(1) HexNAc(3);MM=917.34885", "dHex Hex(2) HexA HexNAc Sulf": "NT=dHex(1)Hex(2)HexA(1)HexNAc(1)Sulf(1);AC=1609;CF=O(3) S dHex Hex(2) HexA HexNAc;MM=929.231831", "Hex(2) HexNAc(3)": "NT=Hex(2)HexNAc(3);AC=1610;CF=Hex(2) HexNAc(3);MM=933.343765", "Hex HexNAc(2) NeuAc Sulf": "NT=Hex(1)HexNAc(2)NeuAc(1)Sulf(1);AC=1611;CF=O(3) S Hex HexNAc(2) NeuAc;MM=939.2638", "dHex(2) Hex(4)": "NT=dHex(2)Hex(4);AC=1612;CF=dHex(2) Hex(4);MM=940.327112", "dHex(2) HexNAc(2) Kdn": "NT=dHex(2)HexNAc(2)Kdn(1);AC=1614;CF=dHex(2) HexNAc(2) Kdn;MM=948.34343", "dHex Hex(2) HexNAc(2) Sulf": "NT=dHex(1)Hex(2)HexNAc(2)Sulf(1);AC=1615;CF=O(3) S dHex Hex(2) HexNAc(2);MM=956.279116", "dHex HexNAc(4)": "NT=dHex(1)HexNAc(4);AC=1616;CF=dHex(1) HexNAc(4);MM=958.375399", "Hex HexNAc NeuAc NeuGc": "NT=Hex(1)HexNAc(1)NeuAc(1)NeuGc(1);AC=1617;CF=Hex(1) HexNAc(1) NeuAc(1) NeuGc(1);MM=963.317944", "dHex Hex HexNAc(2) Kdn ---OR--- Hex(2) HexNAc dHex NeuAc": "NT=dHex(1)Hex(1)HexNAc(2)Kdn(1);AC=1618;CF=dHex Hex HexNAc(2) Kdn;MM=964.338345", "Hex HexNAc NeuGc(2)": "NT=Hex(1)HexNAc(1)NeuGc(2);AC=1619;CF=Hex(1) HexNAc(1) NeuGc(2);MM=979.312859", "Ac Hex HexNAc NeuAc(2)": "NT=Hex(1)HexNAc(1)NeuAc(2)Ac(1);AC=1620;CF=Ac Hex HexNAc NeuAc(2);MM=989.333594", "dHex(2) Hex(2) HexA HexNAc": "NT=dHex(2)Hex(2)HexA(1)HexNAc(1);AC=1621;CF=dHex(2) Hex(2) HexA(1) HexNAc(1);MM=995.332925", "dHex Hex HexNAc(3) Sulf": "NT=dHex(1)Hex(1)HexNAc(3)Sulf(1);AC=1622;CF=O(3) S dHex Hex HexNAc(3);MM=997.305665", "Hex(2) HexA NeuAc Pent Sulf": "NT=Hex(2)HexA(1)NeuAc(1)Pent(1)Sulf(1);AC=1623;CF=O(3) S Pent Hex(2) HexA NeuAc;MM=1003.232225", "dHex Hex HexNAc(2) NeuAc": "NT=dHex(1)Hex(1)HexNAc(2)NeuAc(1);AC=1624;CF=dHex(1) Hex(1) HexNAc(2) NeuAc(1);MM=1005.364894", "dHex Hex(3) HexA HexNAc": "NT=dHex(1)Hex(3)HexA(1)HexNAc(1);AC=1625;CF=dHex(1) Hex(3) HexA(1) HexNAc(1);MM=1011.32784", "Hex(2) HexNAc(3) Sulf": "NT=Hex(2)HexNAc(3)Sulf(1);AC=1626;CF=O(3) S Hex(2) HexNAc(3);MM=1013.300579", "Hex(5) HexNAc": "NT=Hex(5)HexNAc(1);AC=1627;CF=Hex(5) HexNAc;MM=1013.34349", "Ac(2) Hex HexNAc NeuAc(2)": "NT=Hex(1)HexNAc(1)NeuAc(2)Ac(2);AC=1630;CF=Ac(2) Hex HexNAc NeuAc(2);MM=1031.344159", "Hex(2) HexNAc(2) NeuGc": "NT=Hex(2)HexNAc(2)NeuGc(1);AC=1631;CF=Hex(2) HexNAc(2) NeuGc(1);MM=1037.354723", "Hex(5) Phos(3)": "NT=Hex(5)Phos(3);AC=1632;CF=H(3) O(9) P(3) Hex(5);MM=1050.16311", "Hex(6) Phos": "NT=Hex(6)Phos(1);AC=1633;CF=H O(3) P Hex(6);MM=1052.283272", "dHex Hex(2) HexA HexNAc(2)": "NT=dHex(1)Hex(2)HexA(1)HexNAc(2);AC=1634;CF=dHex(1) Hex(2) HexA(1) HexNAc(2);MM=1052.354389", "dHex(2) Hex(3) HexNAc Sulf": "NT=dHex(2)Hex(3)HexNAc(1)Sulf(1);AC=1635;CF=O(3) S dHex(2) Hex(3) HexNAc;MM=1061.310475", "Hex HexNAc(3) NeuAc": "NT=Hex(1)HexNAc(3)NeuAc(1);AC=1636;CF=Hex(1) HexNAc(3) NeuAc(1);MM=1062.386358", "dHex(2) Hex HexNAc(3)": "NT=dHex(2)Hex(1)HexNAc(3);AC=1637;CF=dHex(2) Hex(1) HexNAc(3);MM=1063.406759", "Hex HexNAc(3) NeuGc": "NT=Hex(1)HexNAc(3)NeuGc(1);AC=1638;CF=Hex(1) HexNAc(3) NeuGc(1);MM=1078.381273", "dHex Hex HexNAc(2) NeuAc Sulf": "NT=dHex(1)Hex(1)HexNAc(2)NeuAc(1)Sulf(1);AC=1639;CF=O(3) S dHex Hex HexNAc(2) NeuAc;MM=1085.321709", "dHex Hex(3) HexA HexNAc Sulf": "NT=dHex(1)Hex(3)HexA(1)HexNAc(1)Sulf(1);AC=1640;CF=O(3) S dHex Hex(3) HexA HexNAc;MM=1091.284655", "dHex Hex HexA HexNAc(3)": "NT=dHex(1)Hex(1)HexA(1)HexNAc(3);AC=1641;CF=dHex(1) Hex(1) HexA(1) HexNAc(3);MM=1093.380938", "Hex(2) HexNAc(2) NeuAc Sulf": "NT=Hex(2)HexNAc(2)NeuAc(1)Sulf(1);AC=1642;CF=O(3) S Hex(2) HexNAc(2) NeuAc;MM=1101.316623", "dHex(2) Hex(2) HexNAc(2) Sulf": "NT=dHex(2)Hex(2)HexNAc(2)Sulf(1);AC=1643;CF=O(3) S dHex(2) Hex(2) HexNAc(2);MM=1102.337025", "dHex(2) Hex HexNAc(2) Kdn ---OR--- Hex(2) HexNAc dHex(2) NeuAc": "NT=dHex(2)Hex(1)HexNAc(2)Kdn(1);AC=1644;CF=dHex(2) Hex HexNAc(2) Kdn;MM=1110.396254", "dHex Hex HexNAc(4)": "NT=dHex(1)Hex(1)HexNAc(4);AC=1645;CF=dHex(1) Hex(1) HexNAc(4);MM=1120.428223", "Hex(2) HexNAc(4)": "NT=Hex(2)HexNAc(4);AC=1646;CF=Hex(2) HexNAc(4);MM=1136.423137", "Hex(2) HexNAc NeuGc(2)": "NT=Hex(2)HexNAc(1)NeuGc(2);AC=1647;CF=Hex(2) HexNAc(1) NeuGc(2);MM=1141.365682", "dHex(2) Hex(4) HexNAc": "NT=dHex(2)Hex(4)HexNAc(1);AC=1648;CF=dHex(2) Hex(4) HexNAc(1);MM=1143.406484", "Hex HexNAc(2) NeuAc(2)": "NT=Hex(1)HexNAc(2)NeuAc(2);AC=1649;CF=Hex(1) HexNAc(2) NeuAc(2);MM=1150.402402", "dHex(2) Hex HexNAc(2) NeuAc": "NT=dHex(2)Hex(1)HexNAc(2)NeuAc(1);AC=1650;CF=dHex(2) Hex(1) HexNAc(2) NeuAc(1);MM=1151.422803", "dHex Hex(2) HexNAc(3) Sulf": "NT=dHex(1)Hex(2)HexNAc(3)Sulf(1);AC=1651;CF=O(3) S dHex Hex(2) HexNAc(3);MM=1159.358488", "dHex HexNAc(5)": "NT=dHex(1)HexNAc(5);AC=1652;CF=dHex(1) HexNAc(5);MM=1161.454772", "dHex(2) Hex HexNAc(2) NeuGc ---OR--- Hex(2) HexNAc(2) dHex NeuAc ---OR--- Hex HexNAc(3) dHex Kdn": "NT=dHex(2)Hex(1)HexNAc(2)NeuGc(1);AC=1653;CF=dHex(2) Hex HexNAc(2) NeuGc;MM=1167.417718", "dHex(3) Hex(2) HexNAc(2)": "NT=dHex(3)Hex(2)HexNAc(2);AC=1654;CF=dHex(3) Hex(2) HexNAc(2);MM=1168.438119", "Hex(3) HexNAc(3) Sulf": "NT=Hex(3)HexNAc(3)Sulf(1);AC=1655;CF=O(3) S Hex(3) HexNAc(3);MM=1175.353403", "dHex(2) Hex(2) HexNAc(2) Sulf(2)": "NT=dHex(2)Hex(2)HexNAc(2)Sulf(2);AC=1656;CF=O(6) S(2) dHex(2) Hex(2) HexNAc(2);MM=1182.293839", "dHex Hex(2) HexNAc(2) NeuGc ---OR--- Hex(3) HexNAc(2) NeuAc": "NT=dHex(1)Hex(2)HexNAc(2)NeuGc(1);AC=1657;CF=dHex Hex(2) HexNAc(2) NeuGc;MM=1183.412632", "dHex Hex HexNAc(3) NeuAc": "NT=dHex(1)Hex(1)HexNAc(3)NeuAc(1);AC=1658;CF=dHex Hex HexNAc(3) NeuAc;MM=1208.444267", "Hex(6) Phos(3)": "NT=Hex(6)Phos(3);AC=1659;CF=H(3) O(9) P(3) Hex(6);MM=1212.215934", "dHex Hex(3) HexA HexNAc(2)": "NT=dHex(1)Hex(3)HexA(1)HexNAc(2);AC=1660;CF=dHex(1) Hex(3) HexA(1) HexNAc(2);MM=1214.407213", "dHex Hex HexNAc(3) NeuGc ---OR--- Hex(2) HexNAc(3) NeuAc": "NT=dHex(1)Hex(1)HexNAc(3)NeuGc(1);AC=1661;CF=dHex Hex HexNAc(3) NeuGc;MM=1224.439181", "Hex HexNAc(2) NeuAc(2) Sulf": "NT=Hex(1)HexNAc(2)NeuAc(2)Sulf(1);AC=1662;CF=O(3) S Hex HexNAc(2) NeuAc(2);MM=1230.359217", "dHex(2) Hex(3) HexA HexNAc Sulf": "NT=dHex(2)Hex(3)HexA(1)HexNAc(1)Sulf(1);AC=1663;CF=O(3) S dHex(2) Hex(3) HexA HexNAc;MM=1237.342563", "Hex HexNAc NeuAc(3)": "NT=Hex(1)HexNAc(1)NeuAc(3);AC=1664;CF=Hex(1) HexNAc(1) NeuAc(3);MM=1238.418446", "Hex(2) HexNAc(3) NeuGc": "NT=Hex(2)HexNAc(3)NeuGc(1);AC=1665;CF=Hex(2) HexNAc(3) NeuGc(1);MM=1240.434096", "dHex Hex(2) HexNAc(2) NeuAc Sulf": "NT=dHex(1)Hex(2)HexNAc(2)NeuAc(1)Sulf(1);AC=1666;CF=O(3) S dHex Hex(2) HexNAc(2) NeuAc;MM=1247.374532", "dHex(3) Hex HexNAc(2) Kdn": "NT=dHex(3)Hex(1)HexNAc(2)Kdn(1);AC=1667;CF=dHex(3) Hex HexNAc(2) Kdn;MM=1256.454163", "dHex(2) Hex(3) HexNAc(2) Sulf": "NT=dHex(2)Hex(3)HexNAc(2)Sulf(1);AC=1668;CF=O(3) S dHex(2) Hex(3) HexNAc(2);MM=1264.389848", "dHex(2) Hex(2) HexNAc(2) Kdn": "NT=dHex(2)Hex(2)HexNAc(2)Kdn(1);AC=1669;CF=dHex(2) Hex(2) HexNAc(2) Kdn;MM=1272.449077", "dHex(2) Hex(2) HexA HexNAc(2) Sulf": "NT=dHex(2)Hex(2)HexA(1)HexNAc(2)Sulf(1);AC=1670;CF=O(3) S dHex(2) Hex(2) HexA HexNAc(2);MM=1278.369113", "dHex Hex(2) HexNAc(4)": "NT=dHex(1)Hex(2)HexNAc(4);AC=1671;CF=dHex Hex(2) HexNAc(4);MM=1282.481046", "Hex HexNAc NeuGc(3)": "NT=Hex(1)HexNAc(1)NeuGc(3);AC=1672;CF=Hex(1) HexNAc(1) NeuGc(3);MM=1286.40319", "dHex Hex HexNAc(3) NeuAc Sulf": "NT=dHex(1)Hex(1)HexNAc(3)NeuAc(1)Sulf(1);AC=1673;CF=O(3) S dHex Hex HexNAc(3) NeuAc;MM=1288.401081", "dHex Hex(3) HexA HexNAc(2) Sulf": "NT=dHex(1)Hex(3)HexA(1)HexNAc(2)Sulf(1);AC=1674;CF=O(3) S dHex Hex(3) HexA HexNAc(2);MM=1294.364027", "dHex Hex HexNAc(2) NeuAc(2)": "NT=dHex(1)Hex(1)HexNAc(2)NeuAc(2);AC=1675;CF=dHex(1) Hex(1) HexNAc(2) NeuAc(2);MM=1296.460311", "dHex(3) HexNAc(3) Kdn": "NT=dHex(3)HexNAc(3)Kdn(1);AC=1676;CF=dHex(3) HexNAc(3) Kdn;MM=1297.480712", "Hex(2) HexNAc(3) NeuAc Sulf": "NT=Hex(2)HexNAc(3)NeuAc(1)Sulf(1);AC=1678;CF=O(3) S Hex(2) HexNAc(3) NeuAc;MM=1304.395996", "dHex(2) Hex(2) HexNAc(3) Sulf": "NT=dHex(2)Hex(2)HexNAc(3)Sulf(1);AC=1679;CF=O(3) S dHex(2) Hex(2) HexNAc(3);MM=1305.416397", "dHex(2) HexNAc(5)": "NT=dHex(2)HexNAc(5);AC=1680;CF=dHex(2) HexNAc(5);MM=1307.512681", "Hex(2) HexNAc(2) NeuAc(2)": "NT=Hex(2)HexNAc(2)NeuAc(2);AC=1681;CF=Hex(2) HexNAc(2) NeuAc(2);MM=1312.455225", "dHex(2) Hex(2) HexNAc(2) NeuAc ---OR--- Hex HexNAc(3) dHex(2) Kdn": "NT=dHex(2)Hex(2)HexNAc(2)NeuAc(1);AC=1682;CF=dHex(2) Hex(2) HexNAc(2) NeuAc;MM=1313.475627", "dHex Hex(3) HexNAc(3) Sulf": "NT=dHex(1)Hex(3)HexNAc(3)Sulf(1);AC=1683;CF=O(3) S dHex Hex(3) HexNAc(3);MM=1321.411312", "dHex(2) Hex(2) HexNAc(2) NeuGc ---OR--- Hex(3) HexNAc(2) dHex NeuAc ---OR--- Hex(2) HexNAc(3) dHex Kdn": "NT=dHex(2)Hex(2)HexNAc(2)NeuGc(1);AC=1684;CF=dHex(2) Hex(2) HexNAc(2) NeuGc;MM=1329.470541", "Hex(2) HexNAc(5)": "NT=Hex(2)HexNAc(5);AC=1685;CF=Hex(2) HexNAc(5);MM=1339.50251", "dHex Hex(3) HexNAc(2) NeuGc": "NT=dHex(1)Hex(3)HexNAc(2)NeuGc(1);AC=1686;CF=dHex(1) Hex(3) HexNAc(2) NeuGc(1);MM=1345.465456", "Hex HexNAc(3) NeuAc(2)": "NT=Hex(1)HexNAc(3)NeuAc(2);AC=1687;CF=Hex(1) HexNAc(3) NeuAc(2);MM=1353.481775", "dHex Hex(2) HexNAc(3) NeuAc": "NT=dHex(1)Hex(2)HexNAc(3)NeuAc(1);AC=1688;CF=dHex(1) Hex(2) HexNAc(3) NeuAc(1);MM=1370.49709", "dHex(3) Hex(2) HexNAc(3)": "NT=dHex(3)Hex(2)HexNAc(3);AC=1689;CF=dHex(3) Hex(2) HexNAc(3);MM=1371.517491", "Hex(7) Phos(3)": "NT=Hex(7)Phos(3);AC=1690;CF=H(3) O(9) P(3) Hex(7);MM=1374.268757", "dHex Hex(4) HexA HexNAc(2)": "NT=dHex(1)Hex(4)HexA(1)HexNAc(2);AC=1691;CF=dHex(1) Hex(4) HexA(1) HexNAc(2);MM=1376.460036", "Hex(3) HexNAc(3) NeuAc ---OR--- Hex(2) HexNAc(3) dHex NeuGc ---OR--- Hex(2) HexNAc(4) Kdn": "NT=Hex(3)HexNAc(3)NeuAc(1);AC=1692;CF=Hex(3) HexNAc(3) NeuAc;MM=1386.492005", "dHex Hex(3) HexA(2) HexNAc(2)": "NT=dHex(1)Hex(3)HexA(2)HexNAc(2);AC=1693;CF=dHex(1) Hex(3) HexA(2) HexNAc(2);MM=1390.439301", "Hex(2) HexNAc(2) NeuAc(2) Sulf": "NT=Hex(2)HexNAc(2)NeuAc(2)Sulf(1);AC=1694;CF=O(3) S Hex(2) HexNAc(2) NeuAc(2);MM=1392.41204", "dHex(2) Hex(2) HexNAc(2) NeuAc Sulf": "NT=dHex(2)Hex(2)HexNAc(2)NeuAc(1)Sulf(1);AC=1695;CF=O(3) S dHex(2) Hex(2) HexNAc(2) NeuAc;MM=1393.432441", "Hex(3) HexNAc(3) NeuGc": "NT=Hex(3)HexNAc(3)NeuGc(1);AC=1696;CF=Hex(3) HexNAc(3) NeuGc(1);MM=1402.48692", "dHex(4) Hex HexNAc(2) Kdn": "NT=dHex(4)Hex(1)HexNAc(2)Kdn(1);AC=1697;CF=dHex(4) Hex HexNAc(2) Kdn;MM=1402.512072", "dHex(3) Hex(2) HexNAc(2) Kdn": "NT=dHex(3)Hex(2)HexNAc(2)Kdn(1);AC=1698;CF=dHex(3) Hex(2) HexNAc(2) Kdn;MM=1418.506986", "dHex(3) Hex(2) HexA HexNAc(2) Sulf": "NT=dHex(3)Hex(2)HexA(1)HexNAc(2)Sulf(1);AC=1699;CF=O(3) S dHex(3) Hex(2) HexA HexNAc(2);MM=1424.427021", "Hex(2) HexNAc(4) NeuAc": "NT=Hex(2)HexNAc(4)NeuAc(1);AC=1700;CF=Hex(2) HexNAc(4) NeuAc(1);MM=1427.518554", "dHex(2) Hex(2) HexNAc(4)": "NT=dHex(2)Hex(2)HexNAc(4);AC=1701;CF=dHex(2) Hex(2) HexNAc(4);MM=1428.538955", "dHex(2) Hex(3) HexA HexNAc(2) Sulf": "NT=dHex(2)Hex(3)HexA(1)HexNAc(2)Sulf(1);AC=1702;CF=O(3) S dHex(2) Hex(3) HexA HexNAc(2);MM=1440.421936", "dHex(4) HexNAc(3) Kdn": "NT=dHex(4)HexNAc(3)Kdn(1);AC=1703;CF=dHex(4) HexNAc(3) Kdn;MM=1443.538621", "Hex(2) HexNAc NeuGc(3)": "NT=Hex(2)HexNAc(1)NeuGc(3);AC=1705;CF=Hex(2) HexNAc(1) NeuGc(3);MM=1448.456013", "dHex(4) Hex HexNAc Kdn(2)": "NT=dHex(4)Hex(1)HexNAc(1)Kdn(2);AC=1706;CF=dHex(4) Hex HexNAc Kdn(2);MM=1449.501567", "dHex Hex(2) HexNAc(3) NeuAc Sulf": "NT=dHex(1)Hex(2)HexNAc(3)NeuAc(1)Sulf(1);AC=1707;CF=O(3) S dHex Hex(2) HexNAc(3) NeuAc;MM=1450.453905", "dHex Hex(2) HexNAc(2) NeuAc(2)": "NT=dHex(1)Hex(2)HexNAc(2)NeuAc(2);AC=1708;CF=dHex(1) Hex(2) HexNAc(2) NeuAc(2);MM=1458.513134", "dHex(3) Hex HexNAc(3) Kdn": "NT=dHex(3)Hex(1)HexNAc(3)Kdn(1);AC=1709;CF=dHex(3) Hex HexNAc(3) Kdn;MM=1459.533535", "Hex(3) HexNAc(3) NeuAc Sulf": "NT=Hex(3)HexNAc(3)NeuAc(1)Sulf(1);AC=1711;CF=O(3) S Hex(3) HexNAc(3) NeuAc;MM=1466.44882", "Hex(3) HexNAc(2) NeuAc(2)": "NT=Hex(3)HexNAc(2)NeuAc(2);AC=1712;CF=Hex(3) HexNAc(2) NeuAc(2);MM=1474.508049", "Hex(3) HexNAc(3) NeuGc Sulf": "NT=Hex(3)HexNAc(3)NeuGc(1)Sulf(1);AC=1713;CF=O(3) S Hex(3) HexNAc(3) NeuGc;MM=1482.443734", "dHex Hex(2) HexNAc(2) NeuGc(2)": "NT=dHex(1)Hex(2)HexNAc(2)NeuGc(2);AC=1714;CF=dHex(1) Hex(2) HexNAc(2) NeuGc(2);MM=1490.502964", "dHex(2) Hex(3) HexNAc(2) NeuGc ---OR--- Hex(4) HexNAc(2) dHex NeuAc": "NT=dHex(2)Hex(3)HexNAc(2)NeuGc(1);AC=1715;CF=dHex(2) Hex(3) HexNAc(2) NeuGc;MM=1491.523365", "dHex Hex(3) HexA HexNAc(3) Sulf": "NT=dHex(1)Hex(3)HexA(1)HexNAc(3)Sulf(1);AC=1716;CF=O(3) S dHex Hex(3) HexA HexNAc(3);MM=1497.4434", "Hex(2) HexNAc(3) NeuAc(2)": "NT=Hex(2)HexNAc(3)NeuAc(2);AC=1717;CF=Hex(2) HexNAc(3) NeuAc(2);MM=1515.534598", "dHex(2) Hex(2) HexNAc(3) NeuAc": "NT=dHex(2)Hex(2)HexNAc(3)NeuAc(1);AC=1718;CF=dHex(2) Hex(2) HexNAc(3) NeuAc(1);MM=1516.554999", "dHex(4) Hex(2) HexNAc(3)": "NT=dHex(4)Hex(2)HexNAc(3);AC=1719;CF=dHex(4) Hex(2) HexNAc(3);MM=1517.5754", "Hex(2) HexNAc(3) NeuAc NeuGc": "NT=Hex(2)HexNAc(3)NeuAc(1)NeuGc(1);AC=1720;CF=Hex(2) HexNAc(3) NeuAc(1) NeuGc(1);MM=1531.529513", "dHex(2) Hex(2) HexNAc(3) NeuGc ---OR--- Hex(3) HexNAc(3) dHex NeuAc ---OR--- Hex(2) HexNAc(4) dHex Kdn": "NT=dHex(2)Hex(2)HexNAc(3)NeuGc(1);AC=1721;CF=dHex(2) Hex(2) HexNAc(3) NeuGc;MM=1532.549914", "dHex(3) Hex(3) HexNAc(3)": "NT=dHex(3)Hex(3)HexNAc(3);AC=1722;CF=dHex(3) Hex(3) HexNAc(3);MM=1533.570315", "Hex(8) Phos(3)": "NT=Hex(8)Phos(3);AC=1723;CF=H(3) O(9) P(3) Hex(8);MM=1536.321581", "dHex Hex(2) HexNAc(2) NeuAc(2) Sulf": "NT=dHex(1)Hex(2)HexNAc(2)NeuAc(2)Sulf(1);AC=1724;CF=O(3) S dHex Hex(2) HexNAc(2) NeuAc(2);MM=1538.469949", "Hex(2) HexNAc(3) NeuGc(2)": "NT=Hex(2)HexNAc(3)NeuGc(2);AC=1725;CF=Hex(2) HexNAc(3) NeuGc(2);MM=1547.524427", "dHex(4) Hex(2) HexNAc(2) Kdn": "NT=dHex(4)Hex(2)HexNAc(2)Kdn(1);AC=1726;CF=dHex(4) Hex(2) HexNAc(2) Kdn;MM=1564.564895", "dHex Hex(2) HexNAc(4) NeuAc": "NT=dHex(1)Hex(2)HexNAc(4)NeuAc(1);AC=1727;CF=dHex(1) Hex(2) HexNAc(4) NeuAc(1);MM=1573.576463", "dHex(3) Hex(2) HexNAc(4)": "NT=dHex(3)Hex(2)HexNAc(4);AC=1728;CF=dHex(3) Hex(2) HexNAc(4);MM=1574.596864", "Hex HexNAc NeuGc(4)": "NT=Hex(1)HexNAc(1)NeuGc(4);AC=1729;CF=Hex(1) HexNAc(1) NeuGc(4);MM=1593.493521", "dHex(4) Hex HexNAc(3) Kdn": "NT=dHex(4)Hex(1)HexNAc(3)Kdn(1);AC=1730;CF=dHex(4) Hex HexNAc(3) Kdn;MM=1605.591444", "Hex(4) HexNAc(4) Sulf(2)": "NT=Hex(4)HexNAc(4)Sulf(2);AC=1732;CF=O(6) S(2) Hex(4) HexNAc(4);MM=1620.442414", "dHex(3) Hex(2) HexNAc(3) Kdn ---OR--- Hex(3) HexNAc(2) dHex(3) NeuAc": "NT=dHex(3)Hex(2)HexNAc(3)Kdn(1);AC=1733;CF=dHex(3) Hex(2) HexNAc(3) Kdn;MM=1621.586359", "dHex(2) Hex(2) HexNAc(5)": "NT=dHex(2)Hex(2)HexNAc(5);AC=1735;CF=dHex(2) Hex(2) HexNAc(5);MM=1631.618328", "dHex(2) Hex(3) HexA HexNAc(3) Sulf": "NT=dHex(2)Hex(3)HexA(1)HexNAc(3)Sulf(1);AC=1736;CF=O(3) S dHex(2) Hex(3) HexA HexNAc(3);MM=1643.501309", "dHex Hex(4) HexA HexNAc(3) Sulf": "NT=dHex(1)Hex(4)HexA(1)HexNAc(3)Sulf(1);AC=1737;CF=O(3) S dHex Hex(4) HexA HexNAc(3);MM=1659.496223", "Hex(3) HexNAc(3) NeuAc(2)": "NT=Hex(3)HexNAc(3)NeuAc(2);AC=1738;CF=Hex(3) HexNAc(3) NeuAc(2);MM=1677.587422", "dHex(2) Hex(3) HexNAc(3) NeuAc ---OR--- Hex(2) HexNAc(4) dHex(2) Kdn": "NT=dHex(2)Hex(3)HexNAc(3)NeuAc(1);AC=1739;CF=dHex(2) Hex(3) HexNAc(3) NeuAc;MM=1678.607823", "dHex(4) Hex(3) HexNAc(3)": "NT=dHex(4)Hex(3)HexNAc(3);AC=1740;CF=dHex(4) Hex(3) HexNAc(3);MM=1679.628224", "Hex(9) Phos(3)": "NT=Hex(9)Phos(3);AC=1742;CF=H(3) O(9) P(3) Hex(9);MM=1698.374404", "dHex(2) HexNAc(7)": "NT=dHex(2)HexNAc(7);AC=1743;CF=dHex(2) HexNAc(7);MM=1713.671426", "Hex(2) HexNAc NeuGc(4)": "NT=Hex(2)HexNAc(1)NeuGc(4);AC=1744;CF=Hex(2) HexNAc(1) NeuGc(4);MM=1755.546345", "Hex(3) HexNAc(3) NeuAc(2) Sulf": "NT=Hex(3)HexNAc(3)NeuAc(2)Sulf(1);AC=1745;CF=O(3) S Hex(3) HexNAc(3) NeuAc(2);MM=1757.544236", "dHex(2) Hex(3) HexNAc(5)": "NT=dHex(2)Hex(3)HexNAc(5);AC=1746;CF=dHex(2) Hex(3) HexNAc(5);MM=1793.671151", "dHex Hex(2) HexNAc(2) NeuGc(3)": "NT=dHex(1)Hex(2)HexNAc(2)NeuGc(3);AC=1747;CF=dHex(1) Hex(2) HexNAc(2) NeuGc(3);MM=1797.593295", "dHex(2) Hex(4) HexA HexNAc(3) Sulf": "NT=dHex(2)Hex(4)HexA(1)HexNAc(3)Sulf(1);AC=1748;CF=O(3) S dHex(2) Hex(4) HexA HexNAc(3);MM=1805.554132", "Hex(2) HexNAc(3) NeuAc(3)": "NT=Hex(2)HexNAc(3)NeuAc(3);AC=1749;CF=Hex(2) HexNAc(3) NeuAc(3);MM=1806.630015", "dHex Hex(3) HexNAc(3) NeuAc(2)": "NT=dHex(1)Hex(3)HexNAc(3)NeuAc(2);AC=1750;CF=dHex(1) Hex(3) HexNAc(3) NeuAc(2);MM=1823.64533", "dHex(3) Hex(3) HexNAc(3) NeuAc": "NT=dHex(3)Hex(3)HexNAc(3)NeuAc(1);AC=1751;CF=dHex(3) Hex(3) HexNAc(3) NeuAc(1);MM=1824.665732", "Hex(2) HexNAc(3) NeuGc(3)": "NT=Hex(2)HexNAc(3)NeuGc(3);AC=1752;CF=Hex(2) HexNAc(3) NeuGc(3);MM=1854.614759", "Hex(10) Phos(3)": "NT=Hex(10)Phos(3);AC=1753;CF=H(3) O(9) P(3) Hex(10);MM=1860.427228", "dHex Hex(2) HexNAc(4) NeuAc(2)": "NT=dHex(1)Hex(2)HexNAc(4)NeuAc(2);AC=1754;CF=dHex(1) Hex(2) HexNAc(4) NeuAc(2);MM=1864.67188", "Hex HexNAc NeuGc(5)": "NT=Hex(1)HexNAc(1)NeuGc(5);AC=1755;CF=Hex(1) HexNAc(1) NeuGc(5);MM=1900.583852", "Hex(4) HexNAc(4) NeuAc Sulf(2)": "NT=Hex(4)HexNAc(4)NeuAc(1)Sulf(2);AC=1756;CF=O(6) S(2) Hex(4) HexNAc(4) NeuAc;MM=1911.53783", "Hex(4) HexNAc(4) NeuGc Sulf(2)": "NT=Hex(4)HexNAc(4)NeuGc(1)Sulf(2);AC=1757;CF=O(6) S(2) Hex(4) HexNAc(4) NeuGc;MM=1927.532745", "dHex(2) Hex(3) HexNAc(3) NeuAc(2)": "NT=dHex(2)Hex(3)HexNAc(3)NeuAc(2);AC=1758;CF=dHex(2) Hex(3) HexNAc(3) NeuAc(2);MM=1969.703239", "Hex(4) HexNAc(4) NeuAc Sulf(3)": "NT=Hex(4)HexNAc(4)NeuAc(1)Sulf(3);AC=1759;CF=O(9) S(3) Hex(4) HexNAc(4) NeuAc;MM=1991.494645", "dHex(2) Hex(2) HexNAc(2)": "NT=dHex(2)Hex(2)HexNAc(2);AC=1760;CF=dHex(2) Hex(2) HexNAc(2);MM=1022.38021", "dHex Hex(3) HexNAc(2)": "NT=dHex(1)Hex(3)HexNAc(2);AC=1761;CF=dHex(1) Hex(3) HexNAc(2);MM=1038.375125", "dHex Hex(2) HexNAc(3)": "NT=dHex(1)Hex(2)HexNAc(3);AC=1762;CF=dHex(1) Hex(2) HexNAc(3);MM=1079.401674", "Hex(3) HexNAc(3)": "NT=Hex(3)HexNAc(3);AC=1763;CF=Hex(3) HexNAc(3);MM=1095.396588", "dHex Hex(3) HexNAc(2) Sulf": "NT=dHex(1)Hex(3)HexNAc(2)Sulf(1);AC=1764;CF=O(3) S dHex Hex(3) HexNAc(2);MM=1118.331939", "dHex(2) Hex(3) HexNAc(2)": "NT=dHex(2)Hex(3)HexNAc(2);AC=1765;CF=dHex(2) Hex(3) HexNAc(2);MM=1184.433033", "dHex Hex(4) HexNAc(2)": "NT=dHex(1)Hex(4)HexNAc(2);AC=1766;CF=dHex(1) Hex(4) HexNAc(2);MM=1200.427948", "dHex(2) Hex(2) HexNAc(3)": "NT=dHex(2)Hex(2)HexNAc(3);AC=1767;CF=dHex(2) Hex(2) HexNAc(3);MM=1225.459583", "dHex Hex(3) HexNAc(3)": "NT=dHex(1)Hex(3)HexNAc(3);AC=1768;CF=dHex(1) Hex(3) HexNAc(3);MM=1241.454497", "Hex(4) HexNAc(3)": "NT=Hex(4)HexNAc(3);AC=1769;CF=Hex(4) HexNAc(3);MM=1257.449412", "dHex(2) Hex(4) HexNAc(2)": "NT=dHex(2)Hex(4)HexNAc(2);AC=1770;CF=dHex(2) Hex(4) HexNAc(2);MM=1346.485857", "dHex(2) Hex(3) HexNAc(3)": "NT=dHex(2)Hex(3)HexNAc(3);AC=1771;CF=dHex(2) Hex(3) HexNAc(3);MM=1387.512406", "A3": "NT=Hex(3)HexNAc(5);AC=1772;CF=Hex(3) HexNAc(5);MM=1501.555334", "Hex(4) HexNAc(3) NeuAc ---OR--- Hex(3) HexNAc(4) Kdn": "NT=Hex(4)HexNAc(3)NeuAc(1);AC=1773;CF=Hex(4) HexNAc(3) NeuAc;MM=1548.544828", "dHex(2) Hex(3) HexNAc(4)": "NT=dHex(2)Hex(3)HexNAc(4);AC=1774;CF=dHex(2) Hex(3) HexNAc(4);MM=1590.591779", "dHex Hex(3) HexNAc(5)": "NT=dHex(1)Hex(3)HexNAc(5);AC=1775;CF=dHex(1) Hex(3) HexNAc(5);MM=1647.613242", "A4": "NT=Hex(3)HexNAc(6);AC=1776;CF=Hex(3) HexNAc(6);MM=1704.634706", "Hex(4) HexNAc(4) NeuAc": "NT=Hex(4)HexNAc(4)NeuAc(1);AC=1777;CF=Hex(4) HexNAc(4) NeuAc(1);MM=1751.624201", "dHex(2) Hex(4) HexNAc(4) ---OR--- Hex(4) HexNAc(4) dHex Pent Me": "NT=dHex(2)Hex(4)HexNAc(4);AC=1778;CF=dHex(2) Hex(4) HexNAc(4);MM=1752.644602", "Hex(6) HexNAc(4)": "NT=Hex(6)HexNAc(4);AC=1779;CF=Hex(6) HexNAc(4);MM=1784.634431", "Hex(5) HexNAc(5)": "NT=Hex(5)HexNAc(5);AC=1780;CF=Hex(5) HexNAc(5);MM=1825.660981", "dHex Hex(3) HexNAc(6)": "NT=dHex(1)Hex(3)HexNAc(6);AC=1781;CF=dHex(1) Hex(3) HexNAc(6);MM=1850.692615", "dHex Hex(4) HexNAc(4) NeuAc ---OR--- Hex(3) HexNAc(5) dHex Kdn": "NT=dHex(1)Hex(4)HexNAc(4)NeuAc(1);AC=1782;CF=dHex Hex(4) HexNAc(4) NeuAc;MM=1897.68211", "dHex(3) Hex(4) HexNAc(4)": "NT=dHex(3)Hex(4)HexNAc(4);AC=1783;CF=dHex(3) Hex(4) HexNAc(4);MM=1898.702511", "dHex Hex(3) HexNAc(5) NeuAc": "NT=dHex(1)Hex(3)HexNAc(5)NeuAc(1);AC=1784;CF=dHex(1) Hex(3) HexNAc(5) NeuAc(1);MM=1938.708659", "dHex(2) Hex(4) HexNAc(5)": "NT=dHex(2)Hex(4)HexNAc(5);AC=1785;CF=dHex(2) Hex(4) HexNAc(5);MM=1955.723975", "Ac Hex HexNAc NeuAc": "NT=Hex(1)HexNAc(1)NeuAc(1)Ac(1);AC=1786;CF=Ac Hex HexNAc NeuAc;MM=698.238177", "13C(2) 15N(2)": "NT=Label:13C(2)15N(2);AC=1787;CF=C(-2) 13C(2) N(-2) 15N(2);MM=4.00078", "Ammonium-quenched monolink of DSS/BS3 crosslinker": "NT=Xlink:DSS[155];AC=1789;CF=H(13) C(8) N O(2);MM=155.094629", "SUMOylation by Giardia lamblia": "NT=NQIGG;AC=1799;CF=H(31) C(19) N(7) O(7);MM=469.228496", "Fluorescein-tyramine adduct by peroxidase activity": "NT=Fluorescein-tyramine;AC=1801;CF=H(19) C(29) N O(7);MM=493.116152", "transamidation of glycine ethyl ester to glutamine": "NT=GEE;AC=1824;CF=H(6) C(4) O(2);MM=86.036779", "Simulate peptide-RNA conjugates": "NT=RNPXL;AC=1825;CF=H(13) C(9) N(2) O(9) P;MM=324.035867", "Pyro-Glu from E + Methylation": "NT=Glu->pyro-Glu+Methyl;AC=1826;CF=C O(-1);MM=-3.994915", "Pyro-Glu from E + Methylation Medium": "NT=Glu->pyro-Glu+Methyl:2H(2)13C(1);AC=1827;CF=H(-2) 2H(2) 13C O(-1);MM=-0.979006", "LeumethylArgGlyGly": "NT=LRGG+methyl;AC=1828;CF=H(31) C(17) N(7) O(4);MM=397.243753", "LeudimethylArgGlyGly": "NT=LRGG+dimethyl;AC=1829;CF=H(33) C(18) N(7) O(4);MM=411.259403", "Biotin-Phenol": "NT=Biotin-tyramide;AC=1830;CF=H(23) C(18) N(3) O(3) S;MM=361.146012", "tris adduct causes 104 Da addition at asparagine-succinimide intermediate": "NT=Tris;AC=1831;CF=H(10) C(4) N O(2);MM=104.071154", "Iodoacetamide derivative of stilbene (reaction product with thiol)": "NT=IASD;AC=1832;CF=H(16) C(18) N(2) O(8) S(2);MM=452.034807", "NP-40 synthetic polymer terminus": "NT=NP40;AC=1833;CF=H(24) C(15) O;MM=220.182715", "Tween 20 synthetic polymer terminus": "NT=Tween20;AC=1834;CF=H(21) C(12);MM=165.164326", "Tween 80 synthetic polymer terminus": "NT=Tween80;AC=1835;CF=H(31) C(18) O;MM=263.237491", "Triton synthetic polymer terminus": "NT=Triton;AC=1836;CF=H(20) C(14);MM=188.156501", "Brij 35 synthetic polymer terminus": "NT=Brij35;AC=1837;CF=H(24) C(12);MM=168.187801", "Brij 58 synthetic polymer terminus": "NT=Brij58;AC=1838;CF=H(32) C(16);MM=224.250401", "beta-Funaltrexamine": "NT=betaFNA;AC=1839;CF=H(30) C(25) N(2) O(6);MM=454.210387", "Fucosylated biantennary + 2 alphaGal": "NT=dHex(1)Hex(7)HexNAc(4);AC=1840;CF=dHex Hex(7) HexNAc(4);MM=2092.745164", "EZ-Link Sulfo-NHS-SS-Biotin": "NT=Biotin:Thermo-21328;AC=1841;CF=H(23) C(15) N(3) O(3) S(3);MM=389.090154", "disuccinimidyl sulfoxide CID cleavable cross-link": "NT=Xlink:DSSO;AC=1842;CF=H(6) C(6) O(3) S;MM=158.003765", "Cytidine monophosphate": "NT=PhosphoCytidine;AC=1843;CF=H(12) C(9) N(3) O(7) P;MM=305.041287", "EGS cross-linker": "NT=Xlink:EGS;AC=1844;CF=H(10) C(10) O(6);MM=226.047738", "Azidophenylalanine": "NT=AzidoF;AC=1845;CF=H(-1) N(3);MM=41.001397", "Cys alkylation by dimethylaminoethyl halide": "NT=Dimethylaminoethyl;AC=1846;CF=H(9) C(4) N;MM=71.073499", "Glutarylation": "NT=Gluratylation;AC=1848;CF=H(6) C(5) O(3);MM=114.031694", "2-hydroxyisobutyrylation": "NT=hydroxyisobutyryl;AC=1849;CF=H(6) C(4) O(2);MM=86.036779", "S-Methyl Methyl phosphorothioate": "NT=MeMePhosphorothioate;AC=1868;CF=H(5) C(2) O P S;MM=107.979873", "Replacement of 3 protons by iron": "NT=Cation:Fe[III];AC=1870;CF=H(-3) Fe;MM=52.911464", "DTT adduct of cysteine": "NT=DTT;AC=1871;CF=H(8) C(4) O(2) S(2);MM=151.996571", "Sulfenic Acid specific probe": "NT=DYn-2;AC=1872;CF=H(13) C(11) O;MM=161.09664", "Acetone chemical artifact": "NT=MesitylOxide;AC=1873;CF=H(10) C(6) O;MM=98.073165", "formaldehyde induced modifications": "NT=methylol;AC=1875;CF=H(2) C O;MM=30.010565", "disuccinimidyl suberate (DSS)": "NT=Xlink:DSS;AC=1876;CF=H(10) C(8) O(2);MM=138.06808", "Tris-quenched monolink of DSS/BS3 crosslinker": "NT=Xlink:DSS[259];AC=1877;CF=H(21) C(12) N O(5);MM=259.141973", "Water-quenched monolink of DSSO crosslinker": "NT=Xlink:DSSO[176];AC=1878;CF=H(8) C(6) O(4) S;MM=176.01433", "Ammonia-quenched monolink of DSSO crosslinker": "NT=Xlink:DSSO[175];AC=1879;CF=H(9) C(6) N O(3) S;MM=175.030314", "Tris-quenched monolink of DSSO crosslinker": "NT=Xlink:DSSO[279];AC=1880;CF=H(17) C(10) N O(6) S;MM=279.077658", "Alkene fragment of DSSO crosslinker": "NT=Xlink:DSSO[54];AC=1881;CF=H(2) C(3) O;MM=54.010565", "Thiol fragment of DSSO crosslinker": "NT=Xlink:DSSO[86];AC=1882;CF=H(2) C(3) O S;MM=85.982635", "Sulfenic acid fragment of DSSO crosslinker": "NT=Xlink:DSSO[104];AC=1883;CF=H(4) C(3) O(2) S;MM=103.9932", "disuccinimidyl dibutyric urea CID cleavable cross-link": "NT=Xlink:BuUrBu;AC=1884;CF=H(12) C(9) N(2) O(3);MM=196.084792", "BuUr fragment of BuUrBu crosslinker": "NT=Xlink:BuUrBu[111];AC=1885;CF=H(5) C(5) N O(2);MM=111.032028", "Bu fragment of BuUrBu crosslinker": "NT=Xlink:BuUrBu[85];AC=1886;CF=H(7) C(4) N O;MM=85.052764", "Ammonia quenched monolink of BuUrBu crosslinker": "NT=Xlink:BuUrBu[213];AC=1887;CF=H(15) C(9) N(3) O(3);MM=213.111341", "Water quenched monolink of BuUrBu crosslinker": "NT=Xlink:BuUrBu[214];AC=1888;CF=H(14) C(9) N(2) O(4);MM=214.095357", "Tris quenched monolink of BuUrBu crosslinker": "NT=Xlink:BuUrBu[317];AC=1889;CF=H(23) C(13) N(3) O(6);MM=317.158686", "dimethyl 3,3\\'-dithiobispropionimidate": "NT=Xlink:DTBP;AC=1891;CF=H(8) C(6) N(2) S(2);MM=172.01289", "Disuccinimidyl tartrate crosslinker": "NT=Xlink:DST;AC=1892;CF=H(2) C(4) O(4);MM=113.995309", "dithiobis[succinimidylpropionate]": "NT=Xlink:DTSSP;AC=1893;CF=H(6) C(6) O(2) S(2);MM=173.980921", "succinimidyl 4-[N-maleimidomethyl]cyclohexane-1-carboxylate": "NT=Xlink:SMCC;AC=1895;CF=H(13) C(12) N O(3);MM=219.089543", "Intact DSSO crosslinker": "NT=Xlink:DSSO[158];AC=1896;CF=H(6) C(6) O(3) S;MM=158.003765", "Intact EGS cross-linker": "NT=Xlink:EGS[226];AC=1897;CF=H(10) C(10) O(6);MM=226.047738", "Intact DSS/BS3 crosslinker": "NT=Xlink:DSS[138];AC=1898;CF=H(10) C(8) O(2);MM=138.06808", "Intact BuUrBu crosslinker": "NT=Xlink:BuUrBu[196];AC=1899;CF=H(12) C(9) N(2) O(3);MM=196.084792", "Intact DTBP crosslinker": "NT=Xlink:DTBP[172];AC=1900;CF=H(8) C(6) N(2) S(2);MM=172.01289", "Intact DST crosslinker": "NT=Xlink:DST[114];AC=1901;CF=H(2) C(4) O(4);MM=113.995309", "Intact DSP/DTSSP crosslinker": "NT=Xlink:DTSSP[174];AC=1902;CF=H(6) C(6) O(2) S(2);MM=173.980921", "Intact SMCC cross-link": "NT=Xlink:SMCC[219];AC=1903;CF=H(13) C(12) N O(3);MM=219.089543", "Intact BS2-G crosslinker": "NT=Xlink:BS2G[96];AC=1905;CF=H(4) C(5) O(2);MM=96.021129", "Ammonium-quenched monolink of BS2-G crosslinker": "NT=Xlink:BS2G[113];AC=1906;CF=H(7) C(5) N O(2);MM=113.047679", "Water-quenched monolink of BS2-G crosslinker": "NT=Xlink:BS2G[114];AC=1907;CF=H(6) C(5) O(3);MM=114.031694", "Tris-quenched monolink of BS2-G crosslinker": "NT=Xlink:BS2G[217];AC=1908;CF=H(15) C(9) N O(5);MM=217.095023", "bis[sulfosuccinimidyl] glutarate": "NT=Xlink:BS2G;AC=1909;CF=H(4) C(5) O(2);MM=96.021129", "Replacement of 3 protons by aluminium": "NT=Cation:Al[III];AC=1910;CF=H(-3) Al;MM=23.958063", "Ammonia quenched monolink of DMP crosslinker": "NT=Xlink:DMP[139];AC=1911;CF=H(13) C(7) N(3);MM=139.110947", "Intact DMP crosslinker": "NT=Xlink:DMP[122];AC=1912;CF=H(10) C(7) N(2);MM=122.084398", "glyoxal-derived AGE": "NT=glyoxalAGE;AC=1913;CF=H(-2) C(2);MM=21.98435", "Methionine oxidation to aspartic semialdehyde": "NT=Met->AspSA;AC=1914;CF=H(-4) C(-1) O S(-1);MM=-32.008456", "In Bachi as Formylaspargine (typo?)": "NT=Formylasparagine;AC=1917;CF=H(-1) C(-1) N(-1) O(2);MM=4.97893", "aldehyde and ketone modifications": "NT=Carbonyl;AC=1918;CF=H(-2) O;MM=13.979265", "adduction of aflatoxin B1 Dialdehyde to lysine": "NT=AFB1_Dialdehyde;AC=1920;CF=H(10) C(17) O(6);MM=310.047738", "Proline oxidation to 5-hydroxy-2-aminovaleric acid": "NT=Pro->HAVA;AC=1922;CF=H(2) O;MM=18.010565", "Tryptophan oxidation to beta-unsaturated-2,4-bis-tryptophandione": "NT=Delta:H(-4)O(2);AC=1923;CF=H(-4) O(2);MM=27.958529", "Tryptophan oxidation to hydroxy-bis-tryptophandione": "NT=Delta:H(-4)O(3);AC=1924;CF=H(-4) O(3);MM=43.953444", "Tryptophan oxidation to dihydroxy-N-formaylkynurenine": "NT=Delta:O(4);AC=1925;CF=O(4);MM=63.979659", "methylglyoxal-derived carboxyethyllysine": "NT=Delta:H(4)C(3)O(2);AC=1926;CF=H(4) C(3) O(2);MM=72.021129", "methylglyoxal-derived argpyrimidine": "NT=Delta:H(4)C(5)O(1);AC=1927;CF=H(4) C(5) O;MM=80.026215", "crotonaldehyde-derived dimethyl-FDP-lysine": "NT=Delta:H(10)C(8)O(1);AC=1928;CF=H(10) C(8) O;MM=122.073165", "methylglyoxal-derived tetrahydropyrimidine": "NT=Delta:H(6)C(7)O(4);AC=1929;CF=H(6) C(7) O(4);MM=154.026609", "Pent HexNAc": "NT=Pent(1)HexNAc(1);AC=1931;CF=Pent HexNAc;MM=335.121631", "Hex(2) O(3) S": "NT=Hex(2)Sulf(1);AC=1932;CF=O(3) S Hex(2);MM=404.062462", "Hex:1 Pent:2 Me:1": "NT=Hex(1)Pent(2)Me(1);AC=1933;CF=Me Pent(2) Hex;MM=440.152991", "HexNAc(2) Sulf": "NT=HexNAc(2)Sulf(1);AC=1934;CF=O(3) S HexNAc(2);MM=486.11556", "Hex Pent(3) Me": "NT=Hex(1)Pent(3)Me(1);AC=1935;CF=Me Pent(3) Hex;MM=572.19525", "Hex(2) Pent(2)": "NT=Hex(2)Pent(2);AC=1936;CF=Pent(2) Hex(2);MM=588.190165", "Hex(2) Pent(2) Me": "NT=Hex(2)Pent(2)Me(1);AC=1937;CF=Me Pent(2) Hex(2);MM=602.205815", "Hex(4) HexA": "NT=Hex(4)HexA(1);AC=1938;CF=Hex(4) HexA;MM=824.243382", "Hex(2) HexNAc Pent HexA": "NT=Hex(2)HexNAc(1)Pent(1)HexA(1);AC=1939;CF=Pent Hex(2) HexA HexNAc;MM=835.259366", "Hex(3) HexNAc HexA": "NT=Hex(3)HexNAc(1)HexA(1);AC=1940;CF=Hex(3) HexA HexNAc;MM=865.269931", "Hex HexNAc(2) dHex(2) Sulf": "NT=Hex(1)HexNAc(2)dHex(2)Sulf(1);AC=1941;CF=O(3) S dHex(2) Hex HexNAc(2);MM=940.284201", "HexA(2) HexNAc(3)": "NT=HexA(2)HexNAc(3);AC=1942;CF=HexA(2) HexNAc(3);MM=961.302294", "dHex Hex(4) HexA": "NT=dHex(1)Hex(4)HexA(1);AC=1943;CF=dHex Hex(4) HexA;MM=970.301291", "Hex(5) HexA": "NT=Hex(5)HexA(1);AC=1944;CF=Hex(5) HexA;MM=986.296206", "Hex(4) HexA HexNAc": "NT=Hex(4)HexA(1)HexNAc(1);AC=1945;CF=Hex(4) HexA HexNAc;MM=1027.322755", "dHex(3) Hex(3) HexNAc": "NT=dHex(3)Hex(3)HexNAc(1);AC=1946;CF=dHex(3) Hex(3) HexNAc;MM=1127.41157", "Hex(6) HexNAc": "NT=Hex(6)HexNAc(1);AC=1947;CF=Hex(6) HexNAc;MM=1175.396314", "Sulf dHex Hex HexNAc(4)": "NT=Hex(1)HexNAc(4)dHex(1)Sulf(1);AC=1948;CF=Sulf dHex Hex HexNAc(4);MM=1200.385037", "dHex Hex(2) HexNAc NeuAc(2)": "NT=dHex(1)Hex(2)HexNAc(1)NeuAc(2);AC=1949;CF=dHex Hex(2) HexNAc NeuAc(2);MM=1255.433762", "dHex(3) Hex(3) HexNAc(2)": "NT=dHex(3)Hex(3)HexNAc(2);AC=1950;CF=dHex(3) Hex(3) HexNAc(2);MM=1330.490942", "dHex(2) Hex HexNAc(4) Sulf": "NT=dHex(2)Hex(1)HexNAc(4)Sulf(1);AC=1951;CF=Sulf dHex(2) Hex HexNAc(4);MM=1346.442946", "dHex Hex(2) HexNAc(4) Sulf(2)": "NT=dHex(1)Hex(2)HexNAc(4)Sulf(2);AC=1952;CF=Sulf(2) dHex Hex(2) HexNAc(4);MM=1442.394675", "Sulf dHex(2) Hex(3) HexNAc(3)": "NT=dHex(2)Hex(3)HexNAc(3)Sulf(1);AC=1954;CF=Sulf dHex(2) Hex(3) HexNAc(3);MM=1467.469221", "Me dHex(2) Hex(5) HexNAc(2)": "NT=dHex(2)Hex(5)HexNAc(2)Me(1);AC=1955;CF=Me dHex(2) Hex(5) HexNAc(2);MM=1522.554331", "Sulf(2) dHex(2) Hex(2) HexNAc(4)": "NT=dHex(2)Hex(2)HexNAc(4)Sulf(2);AC=1956;CF=Sulf(2) dHex(2) Hex(2) HexNAc(4);MM=1588.452584", "Hex(9) HexNAc": "NT=Hex(9)HexNAc(1);AC=1957;CF=Hex(9) HexNAc;MM=1661.554784", "dHex(3) Hex(2) HexNAc(4) Sulf(2)": "NT=dHex(3)Hex(2)HexNAc(4)Sulf(2);AC=1958;CF=Sulf(2) dHex(3) Hex(2) HexNAc(4);MM=1734.510493", "Hex(4) HexNAc(4) NeuGc": "NT=Hex(4)HexNAc(4)NeuGc(1);AC=1959;CF=Hex(4) HexNAc(4) NeuGc;MM=1767.619116", "dHex(4) Hex(3) HexNAc(2) NeuAc(1)": "NT=dHex(4)Hex(3)HexNAc(2)NeuAc(1);AC=1960;CF=dHex(4) Hex(3) HexNAc(2) NeuAc;MM=1767.644268", "Hex(3) HexNAc(5) NeuAc(1)": "NT=Hex(3)HexNAc(5)NeuAc(1);AC=1961;CF=Hex(3) HexNAc(5) NeuAc;MM=1792.65075", "Hex(10) HexNAc(1)": "NT=Hex(10)HexNAc(1);AC=1962;CF=Hex(10) HexNAc;MM=1823.607608", "dHex Hex(8) HexNAc(2)": "NT=dHex(1)Hex(8)HexNAc(2);AC=1963;CF=dHex Hex(8) HexNAc(2);MM=1848.639242", "Hex(3) HexNAc(4) NeuAc(2)": "NT=Hex(3)HexNAc(4)NeuAc(2);AC=1964;CF=Hex(3) HexNAc(4) NeuAc(2);MM=1880.666794", "dHex(2) Hex(3) HexNAc(4) NeuAc": "NT=dHex(2)Hex(3)HexNAc(4)NeuAc(1);AC=1965;CF=dHex(2) Hex(3) HexNAc(4) NeuAc;MM=1881.687195", "dHex(2) Hex(2) HexNAc(6) Sulf": "NT=dHex(2)Hex(2)HexNAc(6)Sulf(1);AC=1966;CF=Sulf dHex(2) Hex(2) HexNAc(6);MM=1914.654515", "Hex(5) HexNAc(4) NeuAc Ac": "NT=Hex(5)HexNAc(4)NeuAc(1)Ac(1);AC=1967;CF=Ac Hex(5) HexNAc(4) NeuAc;MM=1955.687589", "Hex(3) HexNAc(3) NeuAc(3)": "NT=Hex(3)HexNAc(3)NeuAc(3);AC=1968;CF=Hex(3) HexNAc(3) NeuAc(3);MM=1968.682838", "Hex(5) HexNAc(4) NeuAc Ac(2)": "NT=Hex(5)HexNAc(4)NeuAc(1)Ac(2);AC=1969;CF=Ac(2) Hex(5) HexNAc(4) NeuAc;MM=1997.698154", "Unidentified modification of 162.1258 found in open search": "NT=Unknown:162;AC=1970;CF=H(18) C(8) O(3);MM=162.125595", "Unidentified modification of 176.7462 found in open search": "NT=Unknown:177;AC=1971;CF=H(-7) O Fe(3);MM=176.744957", "Unidentified modification of 210.1616 found in open search": "NT=Unknown:210;AC=1972;CF=H(22) C(13) O(2);MM=210.16198", "Unidentified modification of 216.1002 found in open search": "NT=Unknown:216;AC=1973;CF=H(16) C(10) O(5);MM=216.099774", "Unidentified modification of 234.0742 found in open search": "NT=Unknown:234;AC=1974;CF=H(14) C(9) O(7);MM=234.073953", "Unidentified modification of 248.1986 found in open search": "NT=Unknown:248;AC=1975;CF=H(28) C(13) O(4);MM=248.19876", "Unidentified modification of 249.981 found in open search": "NT=Unknown:250;AC=1976;CF=H(4) C(10) N O(5) S;MM=249.981018", "Unidentified modification of 301.9864 found in open search": "NT=Unknown:302;AC=1977;CF=H(8) C(4) N(5) O(7) S(2);MM=301.986514", "Unidentified modification of 306.0952 found in open search": "NT=Unknown:306;AC=1978;CF=H(18) C(12) O(9);MM=306.095082", "Unidentified modification of 420.0506 found in open search": "NT=Unknown:420;AC=1979;CF=H(24) C(12) N(2) O(6) S(4);MM=420.051719", "O-diethylphosphothione": "NT=Diethylphosphothione;AC=1986;CF=H(9) C(4) O(2) P S;MM=152.006087", "O-dimethylphosphothione": "NT=Dimethylphosphothione;AC=1987;CF=H(5) C(2) O(2) P S;MM=123.974787", "O-methylphosphothione": "NT=monomethylphosphothione;AC=1989;CF=H(3) C O(2) P S;MM=109.959137", "Ubiquitin D (FAT10) leaving after chymotrypsin digestion Cys-Ile-Gly-Gly": "NT=CIGG;AC=1990;CF=H(22) C(13) N(4) O(4) S;MM=330.136176", "Ubiquitin D (FAT10) leaving after trypsin digestion Gly-Asn-Leu-Leu-Phe-Leu-Ala-Cys-Tyr-Cys-Ile-Gly-Gly": "NT=GNLLFLACYCIGG;AC=1991;CF=H(92) C(61) N(14) O(15) S(2);MM=1324.6308", "5-glutamyl serotonin": "NT=serotonylation;AC=1992;CF=H(9) C(10) N O;MM=159.068414", "heavy tris(2,4,6-trimethoxyphenyl)phosphonium acetic acid N-hydroxysuccinimide ester derivative": "NT=TMPP-Ac:13C(9);AC=1993;CF=H(33) C(20) 13C(9) O(10) P;MM=581.211328", "DST crosslinker cleaved by sodium periodate": "NT=Xlink:DST[56];AC=1999;CF=C(2) O(2);MM=55.989829", "NHS-Diazirine crosslinker": "NT=Xlink:SDA;AC=2000;CF=H(6) C(5) O;MM=82.041865", "carbobenzoxy-L-glutaminyl-glycine": "NT=ZQG;AC=2001;CF=H(16) C(15) N(2) O(6);MM=320.100836", "O-Dichloroethylphosphate": "NT=Haloxon;AC=2006;CF=H(7) C(4) O(3) P Cl(2);MM=203.950987", "S-methyl amino phosphinate": "NT=Methamidophos-S;AC=2007;CF=H(4) C N O P S;MM=108.975121", "O-methyl amino phosphinate": "NT=Methamidophos-O;AC=2008;CF=H(4) C N O(2) P;MM=92.997965", "Loss of O2; nitro photochemical decomposition": "NT=Nitrene;AC=2014;CF=H(-1) N;MM=12.995249", "Super Heavy Tandem Mass Tag": "NT=shTMT;AC=2015;CF=H(20) C(3) 13C(9) 15N(2) O(2);MM=235.176741", "TMTpro 16plex Tandem Mass Tag": "NT=TMTpro;AC=2016;CF=H(25) C(8) 13C(7) N 15N(2) O(3);MM=304.207146", "Native TMTpro Tandem Mass Tag": "NT=TMTpro_zero;AC=2017;CF=H(25) C(15) N(3) O(3);MM=295.189592", "carbodiimide crosslinker": "NT=Xlink:EDC;AC=2018;CF=H(-2) O(-1);MM=-18.010565", "Intact disulfide bridge": "NT=Xlink:Disulfide;AC=2020;CF=H(-2);MM=-2.01565", "Glycosylation of Serine/Threonine residues with KDO": "NT=Ser/Thr-KDO;AC=2022;CF=H(12) C(8) O(7);MM=220.058303", "andrographolide with the loss of H2O": "NT=Andro-H2O;AC=2025;CF=H(28) C(20) O(4);MM=332.19876", "Isopeptide bond formation with loss of ammonia": "NT=Xlink:KQisopeptide;AC=2026;CF=H(-3) N(-1);MM=-17.026549", "Photo-induced histidine adduct": "NT=His+O(2);AC=2027;CF=H(7) C(6) N(3) O(3);MM=169.048741", "A3G3S3": "NT=Hex(6)HexNAc(5)NeuAc(3);AC=2028;CF=Hex(6) HexNAc(5) NeuAc(3);MM=2861.000054", "A4G4": "NT=Hex(7)HexNAc(6);AC=2029;CF=Hex(7) HexNAc(6);MM=2352.846", "Photo-induced Methionine Adduct": "NT=Met+O(2);AC=2033;CF=H(9) C(5) N O(3) S;MM=163.030314", "Photo-induced Glycine Adduct": "NT=Gly+O(2);AC=2034;CF=H(3) C(2) N O(3);MM=89.011293", "Photo-induced Proline adduct": "NT=Pro+O(2);AC=2035;CF=H(7) C(5) N O(3);MM=129.042593", "Photo-induced Lysine adduct": "NT=Lys+O(2);AC=2036;CF=H(12) C(6) N(2) O(3);MM=160.084792", "Photo-induced Glutamate adduct": "NT=Glu+O(2);AC=2037;CF=H(7) C(5) N O(5);MM=161.032422", "addition of lophotoxin to tyrosine": "NT=LTX+Lophotoxin;AC=2039;CF=H(24) C(22) O(8);MM=416.147118", "MBS_233p24 plus peptide 1250p53": "NT=MBS+peptide;AC=2040;CF=H(108) C(81) N(7) O(19);MM=1482.77", "3-hydroxybenzyl phosphate": "NT=3-hydroxybenzyl-phosphate;AC=2041;CF=H(7) C(7) O(4) P;MM=186.008196", "phenyl phosphate": "NT=phenyl-phosphate;AC=2042;CF=H(5) C(6) O(3) P;MM=155.997631", "RNA-protein UVC-crosslinked, hydrofluoride-digested uridine adduct": "NT=RBS-ID_Uridine;AC=2044;CF=H(12) C(9) N(2) O(6);MM=244.069536", "Super Heavy TMTpro": "NT=shTMTpro;AC=2050;CF=H(25) 13C(15) 15N(3) O(3);MM=313.231019", "Intact DADPS Biotin Alkyne tag": "NT=Biotin:Aha-DADPS;AC=2052;CF=H(70) C(42) N(8) O(11) Si S;MM=922.465403", "Intact PC Biotin Alkyne tag": "NT=Biotin:Aha-PC;AC=2053;CF=H(38) C(29) N(8) O(10) S;MM=690.24316", "RNA-protein UVA-crosslinked, hydrofluoride-digested 4-thiouridine adduct": "NT=pRBS-ID_4-thiouridine;AC=2054;CF=H(10) C(9) N(2) O(5);MM=226.058972", "RNA-protein UVA-crosslinked, hydrofluoride-digested 6-thioguanosine adduct": "NT=pRBS-ID_6-thioguanosine;AC=2055;CF=H(11) C(10) N(5) O(4);MM=265.081104", "Iodoacetamido-LC-Phosphonic Acid derivative": "NT=6C-CysPAT;AC=2057;CF=H(16) C(8) N O(4) P;MM=221.081695", "Intact DSPP/TBDSPP crosslinker": "NT=Xlink:DSPP[210];AC=2058;CF=H(3) C(8) O(5) P;MM=209.97181", "Water-quenched monolink of DSPP/TBDSPP crosslinker": "NT=Xlink:DSPP[228];AC=2059;CF=H(5) C(8) O(6) P;MM=227.982375", "Tris-quenched monolink of DSPP/TBDSPP crosslinker": "NT=Xlink:DSPP[331];AC=2060;CF=H(14) C(12) N O(8) P;MM=331.045704", "Ammonia-quenched monolink of DSPP/TBDSPP crosslinker": "NT=Xlink:DSPP[226];AC=2061;CF=H(5) C(8) N O(5) P;MM=225.990534", "desthiobiotinylation of cysteine with DBIA probe": "NT=DBIA;AC=2062;CF=H(24) C(14) N(4) O(3);MM=296.184841", "Monomodification of N\u03b3-propargyl-L-Gln probe with clicked desthiobiotin-azide": "NT=Mono_N\u03b3-propargyl-L-Gln_desthiobiotin;AC=2067;CF=H(44) C(26) N(8) O(8);MM=596.328211", "Dimodification of L-Glu and N\u03b3-propargyl-L-Gln probe with clicked desthiobiotin-azide": "NT=Di_L-Glu_N\u03b3-propargyl-L-Gln_desthiobiotin;AC=2068;CF=H(51) C(31) N(9) O(10);MM=709.375889", "Dimodification of L-Gln and N\u03b3-propargyl-L-Gln probe with clicked desthiobiotin-azide": "NT=Di_L-Gln_N\u03b3-propargyl-L-Gln_desthiobiotin;AC=2069;CF=H(52) C(31) N(10) O(9);MM=708.391873", "Monomodification with glutamine": "NT=L-Gln;AC=2070;CF=H(8) C(5) N(2) O(2);MM=128.058578", "Glyceroylation": "NT=Glyceroyl;AC=2072;CF=H(4) C(3) O(3);MM=88.016044", "probe; AMP analogon": "NT=N6pAMP;AC=2073;CF=H(14) C(13) N(5) O(6) P;MM=367.06817", "Dabcyl C2 Maleimide": "NT=DabMal;AC=2074;CF=H(21) C(21) N(5) O(3);MM=391.16444", "Thiol blocking reagent": "NT=NBF;AC=2079;CF=H C(6) N(3) O(3);MM=163.001791", "Dimedone-Based Chemical Probes": "NT=DCP;AC=2080;CF=H(12) C(9) O(3);MM=168.078644", "Ethynlation of cysteine residues": "NT=Ethynylation;AC=2081;CF=C(2);MM=24.0"}
\ No newline at end of file
diff --git a/.history/unimod_dict_20240927130036.json b/.history/unimod_dict_20240927130036.json
new file mode 100644
index 0000000..0fdc159
--- /dev/null
+++ b/.history/unimod_dict_20240927130036.json
@@ -0,0 +1 @@
+{"Acetyl": "NT=Acetyl;AC=1;", "Amidated": "NT=Amidated;AC=2;", "Biotin": "NT=Biotin;AC=3;", "Carbamidomethyl": "NT=Carbamidomethyl;AC=4;", "Carbamyl": "NT=Carbamyl;AC=5;", "Carboxymethyl": "NT=Carboxymethyl;AC=6;", "Deamidated": "NT=Deamidated;AC=7;", "ICAT-G": "NT=ICAT-G;AC=8;", "ICAT-G:2H(8)": "NT=ICAT-G:2H(8);AC=9;", "Met->Hse": "NT=Met->Hse;AC=10;", "Met->Hsl": "NT=Met->Hsl;AC=11;", "ICAT-D:2H(8)": "NT=ICAT-D:2H(8);AC=12;", "ICAT-D": "NT=ICAT-D;AC=13;", "NIPCAM": "NT=NIPCAM;AC=17;", "PEO-Iodoacetyl-LC-Biotin": "NT=PEO-Iodoacetyl-LC-Biotin;AC=20;", "Phospho": "NT=Phospho;AC=21;", "Dehydrated": "NT=Dehydrated;AC=23;", "Propionamide": "NT=Propionamide;AC=24;", "Pyridylacetyl": "NT=Pyridylacetyl;AC=25;", "Pyro-carbamidomethyl": "NT=Pyro-carbamidomethyl;AC=26;", "Glu->pyro-Glu": "NT=Glu->pyro-Glu;AC=27;", "Gln->pyro-Glu": "NT=Gln->pyro-Glu;AC=28;", "SMA": "NT=SMA;AC=29;", "Cation:Na": "NT=Cation:Na;AC=30;", "Pyridylethyl": "NT=Pyridylethyl;AC=31;", "Methyl": "NT=Methyl;AC=34;", "Oxidation": "NT=Oxidation;AC=35;", "Dimethyl": "NT=Dimethyl;AC=36;", "Trimethyl": "NT=Trimethyl;AC=37;", "Methylthio": "NT=Methylthio;AC=39;", "Sulfo": "NT=Sulfo;AC=40;", "Hex": "NT=Hex;AC=41;", "Lipoyl": "NT=Lipoyl;AC=42;", "HexNAc": "NT=HexNAc;AC=43;", "Farnesyl": "NT=Farnesyl;AC=44;", "Myristoyl": "NT=Myristoyl;AC=45;", "PyridoxalPhosphate": "NT=PyridoxalPhosphate;AC=46;", "Palmitoyl": "NT=Palmitoyl;AC=47;", "GeranylGeranyl": "NT=GeranylGeranyl;AC=48;", "Phosphopantetheine": "NT=Phosphopantetheine;AC=49;", "FAD": "NT=FAD;AC=50;", "Tripalmitate": "NT=Tripalmitate;AC=51;", "Guanidinyl": "NT=Guanidinyl;AC=52;", "HNE": "NT=HNE;AC=53;", "Glucuronyl": "NT=Glucuronyl;AC=54;", "Glutathione": "NT=Glutathione;AC=55;", "Acetyl:2H(3)": "NT=Acetyl:2H(3);AC=56;", "Propionyl": "NT=Propionyl;AC=58;", "Propionyl:13C(3)": "NT=Propionyl:13C(3);AC=59;", "GIST-Quat": "NT=GIST-Quat;AC=60;", "GIST-Quat:2H(3)": "NT=GIST-Quat:2H(3);AC=61;", "GIST-Quat:2H(6)": "NT=GIST-Quat:2H(6);AC=62;", "GIST-Quat:2H(9)": "NT=GIST-Quat:2H(9);AC=63;", "Succinyl": "NT=Succinyl;AC=64;", "Succinyl:2H(4)": "NT=Succinyl:2H(4);AC=65;", "Succinyl:13C(4)": "NT=Succinyl:13C(4);AC=66;", "Iminobiotin": "NT=Iminobiotin;AC=89;", "ESP": "NT=ESP;AC=90;", "ESP:2H(10)": "NT=ESP:2H(10);AC=91;", "NHS-LC-Biotin": "NT=NHS-LC-Biotin;AC=92;", "EDT-maleimide-PEO-biotin": "NT=EDT-maleimide-PEO-biotin;AC=93;", "IMID": "NT=IMID;AC=94;", "IMID:2H(4)": "NT=IMID:2H(4);AC=95;", "Propionamide:2H(3)": "NT=Propionamide:2H(3);AC=97;", "ICAT-C": "NT=ICAT-C;AC=105;", "ICAT-C:13C(9)": "NT=ICAT-C:13C(9);AC=106;", "FormylMet": "NT=FormylMet;AC=107;", "Nethylmaleimide": "NT=Nethylmaleimide;AC=108;", "OxLysBiotinRed": "NT=OxLysBiotinRed;AC=112;", "OxLysBiotin": "NT=OxLysBiotin;AC=113;", "OxProBiotinRed": "NT=OxProBiotinRed;AC=114;", "OxProBiotin": "NT=OxProBiotin;AC=115;", "OxArgBiotin": "NT=OxArgBiotin;AC=116;", "OxArgBiotinRed": "NT=OxArgBiotinRed;AC=117;", "EDT-iodoacetyl-PEO-biotin": "NT=EDT-iodoacetyl-PEO-biotin;AC=118;", "IBTP": "NT=IBTP;AC=119;", "GG": "NT=GG;AC=121;", "Formyl": "NT=Formyl;AC=122;", "ICAT-H": "NT=ICAT-H;AC=123;", "ICAT-H:13C(6)": "NT=ICAT-H:13C(6);AC=124;", "Xlink:DTSSP[88]": "NT=Xlink:DTSSP[88];AC=126;", "Fluoro": "NT=Fluoro;AC=127;", "Fluorescein": "NT=Fluorescein;AC=128;", "Iodo": "NT=Iodo;AC=129;", "Diiodo": "NT=Diiodo;AC=130;", "Triiodo": "NT=Triiodo;AC=131;", "Myristoleyl": "NT=Myristoleyl;AC=134;", "Myristoyl+Delta:H(-4)": "NT=Myristoyl+Delta:H(-4);AC=135;", "Benzoyl": "NT=Benzoyl;AC=136;", "Hex(5)HexNAc(2)": "NT=Hex(5)HexNAc(2);AC=137;", "Dansyl": "NT=Dansyl;AC=139;", "a-type-ion": "NT=a-type-ion;AC=140;", "Amidine": "NT=Amidine;AC=141;", "HexNAc(1)dHex(1)": "NT=HexNAc(1)dHex(1);AC=142;", "HexNAc(2)": "NT=HexNAc(2);AC=143;", "Hex(3)": "NT=Hex(3);AC=144;", "HexNAc(1)dHex(2)": "NT=HexNAc(1)dHex(2);AC=145;", "Hex(1)HexNAc(1)dHex(1)": "NT=Hex(1)HexNAc(1)dHex(1);AC=146;", "HexNAc(2)dHex(1)": "NT=HexNAc(2)dHex(1);AC=147;", "Hex(1)HexNAc(2)": "NT=Hex(1)HexNAc(2);AC=148;", "Hex(1)HexNAc(1)NeuAc(1)": "NT=Hex(1)HexNAc(1)NeuAc(1);AC=149;", "HexNAc(2)dHex(2)": "NT=HexNAc(2)dHex(2);AC=150;", "Hex(1)HexNAc(2)Pent(1)": "NT=Hex(1)HexNAc(2)Pent(1);AC=151;", "Hex(1)HexNAc(2)dHex(1)": "NT=Hex(1)HexNAc(2)dHex(1);AC=152;", "Hex(2)HexNAc(2)": "NT=Hex(2)HexNAc(2);AC=153;", "Hex(3)HexNAc(1)Pent(1)": "NT=Hex(3)HexNAc(1)Pent(1);AC=154;", "Hex(1)HexNAc(2)dHex(1)Pent(1)": "NT=Hex(1)HexNAc(2)dHex(1)Pent(1);AC=155;", "Hex(1)HexNAc(2)dHex(2)": "NT=Hex(1)HexNAc(2)dHex(2);AC=156;", "Hex(2)HexNAc(2)Pent(1)": "NT=Hex(2)HexNAc(2)Pent(1);AC=157;", "Hex(2)HexNAc(2)dHex(1)": "NT=Hex(2)HexNAc(2)dHex(1);AC=158;", "Hex(3)HexNAc(2)": "NT=Hex(3)HexNAc(2);AC=159;", "Hex(1)HexNAc(1)NeuAc(2)": "NT=Hex(1)HexNAc(1)NeuAc(2);AC=160;", "Hex(3)HexNAc(2)Phos(1)": "NT=Hex(3)HexNAc(2)Phos(1);AC=161;", "Delta:S(-1)Se(1)": "NT=Delta:S(-1)Se(1);AC=162;", "Delta:H(-1)N(-1)18O(1)": "NT=Delta:H(-1)N(-1)18O(1);AC=170;", "NBS:13C(6)": "NT=NBS:13C(6);AC=171;", "NBS": "NT=NBS;AC=172;", "BHT": "NT=BHT;AC=176;", "DAET": "NT=DAET;AC=178;", "Label:13C(9)": "NT=Label:13C(9);AC=184;", "Label:13C(9)+Phospho": "NT=Label:13C(9)+Phospho;AC=185;", "HPG": "NT=HPG;AC=186;", "2HPG": "NT=2HPG;AC=187;", "Label:13C(6)": "NT=Label:13C(6);AC=188;", "Label:18O(2)": "NT=Label:18O(2);AC=193;", "AccQTag": "NT=AccQTag;AC=194;", "QAT": "NT=QAT;AC=195;", "QAT:2H(3)": "NT=QAT:2H(3);AC=196;", "EQAT": "NT=EQAT;AC=197;", "EQAT:2H(5)": "NT=EQAT:2H(5);AC=198;", "Dimethyl:2H(4)": "NT=Dimethyl:2H(4);AC=199;", "Ethanedithiol": "NT=Ethanedithiol;AC=200;", "Delta:H(6)C(6)O(1)": "NT=Delta:H(6)C(6)O(1);AC=205;", "Delta:H(4)C(3)O(1)": "NT=Delta:H(4)C(3)O(1);AC=206;", "Delta:H(2)C(3)": "NT=Delta:H(2)C(3);AC=207;", "Delta:H(4)C(6)": "NT=Delta:H(4)C(6);AC=208;", "Delta:H(8)C(6)O(2)": "NT=Delta:H(8)C(6)O(2);AC=209;", "NEIAA": "NT=NEIAA;AC=211;", "NEIAA:2H(5)": "NT=NEIAA:2H(5);AC=212;", "ADP-Ribosyl": "NT=ADP-Ribosyl;AC=213;", "iTRAQ4plex": "NT=iTRAQ4plex;AC=214;", "IGBP": "NT=IGBP;AC=243;", "Crotonaldehyde": "NT=Crotonaldehyde;AC=253;", "Delta:H(2)C(2)": "NT=Delta:H(2)C(2);AC=254;", "Delta:H(4)C(2)": "NT=Delta:H(4)C(2);AC=255;", "Delta:H(4)C(3)": "NT=Delta:H(4)C(3);AC=256;", "Label:18O(1)": "NT=Label:18O(1);AC=258;", "Label:13C(6)15N(2)": "NT=Label:13C(6)15N(2);AC=259;", "Thiophospho": "NT=Thiophospho;AC=260;", "SPITC": "NT=SPITC;AC=261;", "Label:2H(3)": "NT=Label:2H(3);AC=262;", "PET": "NT=PET;AC=264;", "Label:13C(6)15N(4)": "NT=Label:13C(6)15N(4);AC=267;", "Label:13C(5)15N(1)": "NT=Label:13C(5)15N(1);AC=268;", "Label:13C(9)15N(1)": "NT=Label:13C(9)15N(1);AC=269;", "Cytopiloyne": "NT=Cytopiloyne;AC=270;", "Cytopiloyne+water": "NT=Cytopiloyne+water;AC=271;", "CAF": "NT=CAF;AC=272;", "Nitrosyl": "NT=Nitrosyl;AC=275;", "AEBS": "NT=AEBS;AC=276;", "Ethanolyl": "NT=Ethanolyl;AC=278;", "Ethyl": "NT=Ethyl;AC=280;", "CoenzymeA": "NT=CoenzymeA;AC=281;", "Methyl:2H(2)": "NT=Methyl:2H(2);AC=284;", "SulfanilicAcid": "NT=SulfanilicAcid;AC=285;", "SulfanilicAcid:13C(6)": "NT=SulfanilicAcid:13C(6);AC=286;", "Trp->Oxolactone": "NT=Trp->Oxolactone;AC=288;", "Biotin-PEO-Amine": "NT=Biotin-PEO-Amine;AC=289;", "Biotin-HPDP": "NT=Biotin-HPDP;AC=290;", "Delta:Hg(1)": "NT=Delta:Hg(1);AC=291;", "IodoU-AMP": "NT=IodoU-AMP;AC=292;", "CAMthiopropanoyl": "NT=CAMthiopropanoyl;AC=293;", "IED-Biotin": "NT=IED-Biotin;AC=294;", "dHex": "NT=dHex;AC=295;", "Methyl:2H(3)": "NT=Methyl:2H(3);AC=298;", "Carboxy": "NT=Carboxy;AC=299;", "Bromobimane": "NT=Bromobimane;AC=301;", "Menadione": "NT=Menadione;AC=302;", "DeStreak": "NT=DeStreak;AC=303;", "dHex(1)Hex(3)HexNAc(4)": "NT=dHex(1)Hex(3)HexNAc(4);AC=305;", "dHex(1)Hex(4)HexNAc(4)": "NT=dHex(1)Hex(4)HexNAc(4);AC=307;", "dHex(1)Hex(5)HexNAc(4)": "NT=dHex(1)Hex(5)HexNAc(4);AC=308;", "Hex(3)HexNAc(4)": "NT=Hex(3)HexNAc(4);AC=309;", "Hex(4)HexNAc(4)": "NT=Hex(4)HexNAc(4);AC=310;", "Hex(5)HexNAc(4)": "NT=Hex(5)HexNAc(4);AC=311;", "Cysteinyl": "NT=Cysteinyl;AC=312;", "Lys-loss": "NT=Lys-loss;AC=313;", "Nmethylmaleimide": "NT=Nmethylmaleimide;AC=314;", "DimethylpyrroleAdduct": "NT=DimethylpyrroleAdduct;AC=316;", "Delta:H(2)C(5)": "NT=Delta:H(2)C(5);AC=318;", "Delta:H(2)C(3)O(1)": "NT=Delta:H(2)C(3)O(1);AC=319;", "Nethylmaleimide+water": "NT=Nethylmaleimide+water;AC=320;", "Xlink:B10621": "NT=Xlink:B10621;AC=323;", "Xlink:DTBP[87]": "NT=Xlink:DTBP[87];AC=324;", "FP-Biotin": "NT=FP-Biotin;AC=325;", "Delta:H(4)C(2)O(-1)S(1)": "NT=Delta:H(4)C(2)O(-1)S(1);AC=327;", "Methyl:2H(3)13C(1)": "NT=Methyl:2H(3)13C(1);AC=329;", "Dimethyl:2H(6)13C(2)": "NT=Dimethyl:2H(6)13C(2);AC=330;", "Thiophos-S-S-biotin": "NT=Thiophos-S-S-biotin;AC=332;", "Can-FP-biotin": "NT=Can-FP-biotin;AC=333;", "HNE+Delta:H(2)": "NT=HNE+Delta:H(2);AC=335;", "Methylamine": "NT=Methylamine;AC=337;", "Bromo": "NT=Bromo;AC=340;", "Amino": "NT=Amino;AC=342;", "Argbiotinhydrazide": "NT=Argbiotinhydrazide;AC=343;", "Arg->GluSA": "NT=Arg->GluSA;AC=344;", "Trioxidation": "NT=Trioxidation;AC=345;", "His->Asn": "NT=His->Asn;AC=348;", "His->Asp": "NT=His->Asp;AC=349;", "Trp->Hydroxykynurenin": "NT=Trp->Hydroxykynurenin;AC=350;", "Trp->Kynurenin": "NT=Trp->Kynurenin;AC=351;", "Lys->Allysine": "NT=Lys->Allysine;AC=352;", "Lysbiotinhydrazide": "NT=Lysbiotinhydrazide;AC=353;", "Nitro": "NT=Nitro;AC=354;", "probiotinhydrazide": "NT=probiotinhydrazide;AC=357;", "Pro->pyro-Glu": "NT=Pro->pyro-Glu;AC=359;", "Pro->Pyrrolidinone": "NT=Pro->Pyrrolidinone;AC=360;", "Thrbiotinhydrazide": "NT=Thrbiotinhydrazide;AC=361;", "Diisopropylphosphate": "NT=Diisopropylphosphate;AC=362;", "Isopropylphospho": "NT=Isopropylphospho;AC=363;", "ICPL:13C(6)": "NT=ICPL:13C(6);AC=364;", "ICPL": "NT=ICPL;AC=365;", "Deamidated:18O(1)": "NT=Deamidated:18O(1);AC=366;", "Cys->Dha": "NT=Cys->Dha;AC=368;", "Pro->Pyrrolidone": "NT=Pro->Pyrrolidone;AC=369;", "HMVK": "NT=HMVK;AC=371;", "Arg->Orn": "NT=Arg->Orn;AC=372;", "Dehydro": "NT=Dehydro;AC=374;", "Diphthamide": "NT=Diphthamide;AC=375;", "Hydroxyfarnesyl": "NT=Hydroxyfarnesyl;AC=376;", "Diacylglycerol": "NT=Diacylglycerol;AC=377;", "Carboxyethyl": "NT=Carboxyethyl;AC=378;", "Hypusine": "NT=Hypusine;AC=379;", "Retinylidene": "NT=Retinylidene;AC=380;", "Lys->AminoadipicAcid": "NT=Lys->AminoadipicAcid;AC=381;", "Cys->PyruvicAcid": "NT=Cys->PyruvicAcid;AC=382;", "Ammonia-loss": "NT=Ammonia-loss;AC=385;", "Phycocyanobilin": "NT=Phycocyanobilin;AC=387;", "Phycoerythrobilin": "NT=Phycoerythrobilin;AC=388;", "Phytochromobilin": "NT=Phytochromobilin;AC=389;", "Heme": "NT=Heme;AC=390;", "Molybdopterin": "NT=Molybdopterin;AC=391;", "Quinone": "NT=Quinone;AC=392;", "Glucosylgalactosyl": "NT=Glucosylgalactosyl;AC=393;", "GPIanchor": "NT=GPIanchor;AC=394;", "PhosphoribosyldephosphoCoA": "NT=PhosphoribosyldephosphoCoA;AC=395;", "GlycerylPE": "NT=GlycerylPE;AC=396;", "Triiodothyronine": "NT=Triiodothyronine;AC=397;", "Thyroxine": "NT=Thyroxine;AC=398;", "Tyr->Dha": "NT=Tyr->Dha;AC=400;", "Didehydro": "NT=Didehydro;AC=401;", "Cys->Oxoalanine": "NT=Cys->Oxoalanine;AC=402;", "Ser->LacticAcid": "NT=Ser->LacticAcid;AC=403;", "Phosphoadenosine": "NT=Phosphoadenosine;AC=405;", "Hydroxycinnamyl": "NT=Hydroxycinnamyl;AC=407;", "Glycosyl": "NT=Glycosyl;AC=408;", "FMNH": "NT=FMNH;AC=409;", "Archaeol": "NT=Archaeol;AC=410;", "Phenylisocyanate": "NT=Phenylisocyanate;AC=411;", "Phenylisocyanate:2H(5)": "NT=Phenylisocyanate:2H(5);AC=412;", "Phosphoguanosine": "NT=Phosphoguanosine;AC=413;", "Hydroxymethyl": "NT=Hydroxymethyl;AC=414;", "MolybdopterinGD+Delta:S(-1)Se(1)": "NT=MolybdopterinGD+Delta:S(-1)Se(1);AC=415;", "Dipyrrolylmethanemethyl": "NT=Dipyrrolylmethanemethyl;AC=416;", "PhosphoUridine": "NT=PhosphoUridine;AC=417;", "Glycerophospho": "NT=Glycerophospho;AC=419;", "Carboxy->Thiocarboxy": "NT=Carboxy->Thiocarboxy;AC=420;", "Sulfide": "NT=Sulfide;AC=421;", "PyruvicAcidIminyl": "NT=PyruvicAcidIminyl;AC=422;", "Delta:Se(1)": "NT=Delta:Se(1);AC=423;", "MolybdopterinGD": "NT=MolybdopterinGD;AC=424;", "Dioxidation": "NT=Dioxidation;AC=425;", "Octanoyl": "NT=Octanoyl;AC=426;", "PhosphoHexNAc": "NT=PhosphoHexNAc;AC=428;", "PhosphoHex": "NT=PhosphoHex;AC=429;", "Palmitoleyl": "NT=Palmitoleyl;AC=431;", "Cholesterol": "NT=Cholesterol;AC=432;", "Didehydroretinylidene": "NT=Didehydroretinylidene;AC=433;", "CHDH": "NT=CHDH;AC=434;", "Methylpyrroline": "NT=Methylpyrroline;AC=435;", "Hydroxyheme": "NT=Hydroxyheme;AC=436;", "MicrocinC7": "NT=MicrocinC7;AC=437;", "Cyano": "NT=Cyano;AC=438;", "Diironsubcluster": "NT=Diironsubcluster;AC=439;", "Amidino": "NT=Amidino;AC=440;", "FMN": "NT=FMN;AC=442;", "FMNC": "NT=FMNC;AC=443;", "CuSMo": "NT=CuSMo;AC=444;", "Hydroxytrimethyl": "NT=Hydroxytrimethyl;AC=445;", "Deoxy": "NT=Deoxy;AC=447;", "Microcin": "NT=Microcin;AC=448;", "Decanoyl": "NT=Decanoyl;AC=449;", "Glu": "NT=Glu;AC=450;", "GluGlu": "NT=GluGlu;AC=451;", "GluGluGlu": "NT=GluGluGlu;AC=452;", "GluGluGluGlu": "NT=GluGluGluGlu;AC=453;", "HexN": "NT=HexN;AC=454;", "Xlink:DMP[154]": "NT=Xlink:DMP[154];AC=455;", "Xlink:DMP": "NT=Xlink:DMP;AC=456;", "NDA": "NT=NDA;AC=457;", "SPITC:13C(6)": "NT=SPITC:13C(6);AC=464;", "AEC-MAEC": "NT=AEC-MAEC;AC=472;", "TMAB": "NT=TMAB;AC=476;", "TMAB:2H(9)": "NT=TMAB:2H(9);AC=477;", "FTC": "NT=FTC;AC=478;", "Label:2H(4)": "NT=Label:2H(4);AC=481;", "DHP": "NT=DHP;AC=488;", "Hep": "NT=Hep;AC=490;", "BADGE": "NT=BADGE;AC=493;", "CyDye-Cy3": "NT=CyDye-Cy3;AC=494;", "CyDye-Cy5": "NT=CyDye-Cy5;AC=495;", "BHTOH": "NT=BHTOH;AC=498;", "IGBP:13C(2)": "NT=IGBP:13C(2);AC=499;", "Nmethylmaleimide+water": "NT=Nmethylmaleimide+water;AC=500;", "PyMIC": "NT=PyMIC;AC=501;", "LG-lactam-K": "NT=LG-lactam-K;AC=503;", "LG-Hlactam-K": "NT=LG-Hlactam-K;AC=504;", "LG-lactam-R": "NT=LG-lactam-R;AC=505;", "LG-Hlactam-R": "NT=LG-Hlactam-R;AC=506;", "Dimethyl:2H(4)13C(2)": "NT=Dimethyl:2H(4)13C(2);AC=510;", "Hex(2)": "NT=Hex(2);AC=512;", "C8-QAT": "NT=C8-QAT;AC=513;", "PropylNAGthiazoline": "NT=PropylNAGthiazoline;AC=514;", "FNEM": "NT=FNEM;AC=515;", "Diethyl": "NT=Diethyl;AC=518;", "BisANS": "NT=BisANS;AC=519;", "Piperidine": "NT=Piperidine;AC=520;", "Maleimide-PEO2-Biotin": "NT=Maleimide-PEO2-Biotin;AC=522;", "Sulfo-NHS-LC-LC-Biotin": "NT=Sulfo-NHS-LC-LC-Biotin;AC=523;", "CLIP_TRAQ_2": "NT=CLIP_TRAQ_2;AC=525;", "Dethiomethyl": "NT=Dethiomethyl;AC=526;", "Methyl+Deamidated": "NT=Methyl+Deamidated;AC=528;", "Delta:H(5)C(2)": "NT=Delta:H(5)C(2);AC=529;", "Cation:K": "NT=Cation:K;AC=530;", "Cation:Cu[I]": "NT=Cation:Cu[I];AC=531;", "iTRAQ4plex114": "NT=iTRAQ4plex114;AC=532;", "iTRAQ4plex115": "NT=iTRAQ4plex115;AC=533;", "Dibromo": "NT=Dibromo;AC=534;", "LRGG": "NT=LRGG;AC=535;", "CLIP_TRAQ_3": "NT=CLIP_TRAQ_3;AC=536;", "CLIP_TRAQ_4": "NT=CLIP_TRAQ_4;AC=537;", "Biotin:Cayman-10141": "NT=Biotin:Cayman-10141;AC=538;", "Biotin:Cayman-10013": "NT=Biotin:Cayman-10013;AC=539;", "Ala->Ser": "NT=Ala->Ser;AC=540;", "Ala->Thr": "NT=Ala->Thr;AC=541;", "Ala->Asp": "NT=Ala->Asp;AC=542;", "Ala->Pro": "NT=Ala->Pro;AC=543;", "Ala->Gly": "NT=Ala->Gly;AC=544;", "Ala->Glu": "NT=Ala->Glu;AC=545;", "Ala->Val": "NT=Ala->Val;AC=546;", "Cys->Phe": "NT=Cys->Phe;AC=547;", "Cys->Ser": "NT=Cys->Ser;AC=548;", "Cys->Trp": "NT=Cys->Trp;AC=549;", "Cys->Tyr": "NT=Cys->Tyr;AC=550;", "Cys->Arg": "NT=Cys->Arg;AC=551;", "Cys->Gly": "NT=Cys->Gly;AC=552;", "Asp->Ala": "NT=Asp->Ala;AC=553;", "Asp->His": "NT=Asp->His;AC=554;", "Asp->Asn": "NT=Asp->Asn;AC=555;", "Asp->Gly": "NT=Asp->Gly;AC=556;", "Asp->Tyr": "NT=Asp->Tyr;AC=557;", "Asp->Glu": "NT=Asp->Glu;AC=558;", "Asp->Val": "NT=Asp->Val;AC=559;", "Glu->Ala": "NT=Glu->Ala;AC=560;", "Glu->Gln": "NT=Glu->Gln;AC=561;", "Glu->Asp": "NT=Glu->Asp;AC=562;", "Glu->Lys": "NT=Glu->Lys;AC=563;", "Glu->Gly": "NT=Glu->Gly;AC=564;", "Glu->Val": "NT=Glu->Val;AC=565;", "Phe->Ser": "NT=Phe->Ser;AC=566;", "Phe->Cys": "NT=Phe->Cys;AC=567;", "Phe->Xle": "NT=Phe->Xle;AC=568;", "Phe->Tyr": "NT=Phe->Tyr;AC=569;", "Phe->Val": "NT=Phe->Val;AC=570;", "Gly->Ala": "NT=Gly->Ala;AC=571;", "Gly->Ser": "NT=Gly->Ser;AC=572;", "Gly->Trp": "NT=Gly->Trp;AC=573;", "Gly->Glu": "NT=Gly->Glu;AC=574;", "Gly->Val": "NT=Gly->Val;AC=575;", "Gly->Asp": "NT=Gly->Asp;AC=576;", "Gly->Cys": "NT=Gly->Cys;AC=577;", "Gly->Arg": "NT=Gly->Arg;AC=578;", "His->Pro": "NT=His->Pro;AC=580;", "His->Tyr": "NT=His->Tyr;AC=581;", "His->Gln": "NT=His->Gln;AC=582;", "His->Arg": "NT=His->Arg;AC=584;", "His->Xle": "NT=His->Xle;AC=585;", "Xle->Thr": "NT=Xle->Thr;AC=588;", "Xle->Asn": "NT=Xle->Asn;AC=589;", "Xle->Lys": "NT=Xle->Lys;AC=590;", "Lys->Thr": "NT=Lys->Thr;AC=594;", "Lys->Asn": "NT=Lys->Asn;AC=595;", "Lys->Glu": "NT=Lys->Glu;AC=596;", "Lys->Gln": "NT=Lys->Gln;AC=597;", "Lys->Met": "NT=Lys->Met;AC=598;", "Lys->Arg": "NT=Lys->Arg;AC=599;", "Lys->Xle": "NT=Lys->Xle;AC=600;", "Xle->Ser": "NT=Xle->Ser;AC=601;", "Xle->Phe": "NT=Xle->Phe;AC=602;", "Xle->Trp": "NT=Xle->Trp;AC=603;", "Xle->Pro": "NT=Xle->Pro;AC=604;", "Xle->Val": "NT=Xle->Val;AC=605;", "Xle->His": "NT=Xle->His;AC=606;", "Xle->Gln": "NT=Xle->Gln;AC=607;", "Xle->Met": "NT=Xle->Met;AC=608;", "Xle->Arg": "NT=Xle->Arg;AC=609;", "Met->Thr": "NT=Met->Thr;AC=610;", "Met->Arg": "NT=Met->Arg;AC=611;", "Met->Lys": "NT=Met->Lys;AC=613;", "Met->Xle": "NT=Met->Xle;AC=614;", "Met->Val": "NT=Met->Val;AC=615;", "Asn->Ser": "NT=Asn->Ser;AC=616;", "Asn->Thr": "NT=Asn->Thr;AC=617;", "Asn->Lys": "NT=Asn->Lys;AC=618;", "Asn->Tyr": "NT=Asn->Tyr;AC=619;", "Asn->His": "NT=Asn->His;AC=620;", "Asn->Asp": "NT=Asn->Asp;AC=621;", "Asn->Xle": "NT=Asn->Xle;AC=622;", "Pro->Ser": "NT=Pro->Ser;AC=623;", "Pro->Ala": "NT=Pro->Ala;AC=624;", "Pro->His": "NT=Pro->His;AC=625;", "Pro->Gln": "NT=Pro->Gln;AC=626;", "Pro->Thr": "NT=Pro->Thr;AC=627;", "Pro->Arg": "NT=Pro->Arg;AC=628;", "Pro->Xle": "NT=Pro->Xle;AC=629;", "Gln->Pro": "NT=Gln->Pro;AC=630;", "Gln->Lys": "NT=Gln->Lys;AC=631;", "Gln->Glu": "NT=Gln->Glu;AC=632;", "Gln->His": "NT=Gln->His;AC=633;", "Gln->Arg": "NT=Gln->Arg;AC=634;", "Gln->Xle": "NT=Gln->Xle;AC=635;", "Arg->Ser": "NT=Arg->Ser;AC=636;", "Arg->Trp": "NT=Arg->Trp;AC=637;", "Arg->Thr": "NT=Arg->Thr;AC=638;", "Arg->Pro": "NT=Arg->Pro;AC=639;", "Arg->Lys": "NT=Arg->Lys;AC=640;", "Arg->His": "NT=Arg->His;AC=641;", "Arg->Gln": "NT=Arg->Gln;AC=642;", "Arg->Met": "NT=Arg->Met;AC=643;", "Arg->Cys": "NT=Arg->Cys;AC=644;", "Arg->Xle": "NT=Arg->Xle;AC=645;", "Arg->Gly": "NT=Arg->Gly;AC=646;", "Ser->Phe": "NT=Ser->Phe;AC=647;", "Ser->Ala": "NT=Ser->Ala;AC=648;", "Ser->Trp": "NT=Ser->Trp;AC=649;", "Ser->Thr": "NT=Ser->Thr;AC=650;", "Ser->Asn": "NT=Ser->Asn;AC=651;", "Ser->Pro": "NT=Ser->Pro;AC=652;", "Ser->Tyr": "NT=Ser->Tyr;AC=653;", "Ser->Cys": "NT=Ser->Cys;AC=654;", "Ser->Arg": "NT=Ser->Arg;AC=655;", "Ser->Xle": "NT=Ser->Xle;AC=656;", "Ser->Gly": "NT=Ser->Gly;AC=657;", "Thr->Ser": "NT=Thr->Ser;AC=658;", "Thr->Ala": "NT=Thr->Ala;AC=659;", "Thr->Asn": "NT=Thr->Asn;AC=660;", "Thr->Lys": "NT=Thr->Lys;AC=661;", "Thr->Pro": "NT=Thr->Pro;AC=662;", "Thr->Met": "NT=Thr->Met;AC=663;", "Thr->Xle": "NT=Thr->Xle;AC=664;", "Thr->Arg": "NT=Thr->Arg;AC=665;", "Val->Phe": "NT=Val->Phe;AC=666;", "Val->Ala": "NT=Val->Ala;AC=667;", "Val->Glu": "NT=Val->Glu;AC=668;", "Val->Met": "NT=Val->Met;AC=669;", "Val->Asp": "NT=Val->Asp;AC=670;", "Val->Xle": "NT=Val->Xle;AC=671;", "Val->Gly": "NT=Val->Gly;AC=672;", "Trp->Ser": "NT=Trp->Ser;AC=673;", "Trp->Cys": "NT=Trp->Cys;AC=674;", "Trp->Arg": "NT=Trp->Arg;AC=675;", "Trp->Gly": "NT=Trp->Gly;AC=676;", "Trp->Xle": "NT=Trp->Xle;AC=677;", "Tyr->Phe": "NT=Tyr->Phe;AC=678;", "Tyr->Ser": "NT=Tyr->Ser;AC=679;", "Tyr->Asn": "NT=Tyr->Asn;AC=680;", "Tyr->His": "NT=Tyr->His;AC=681;", "Tyr->Asp": "NT=Tyr->Asp;AC=682;", "Tyr->Cys": "NT=Tyr->Cys;AC=683;", "BDMAPP": "NT=BDMAPP;AC=684;", "NA-LNO2": "NT=NA-LNO2;AC=685;", "NA-OA-NO2": "NT=NA-OA-NO2;AC=686;", "ICPL:2H(4)": "NT=ICPL:2H(4);AC=687;", "Label:13C(6)15N(1)": "NT=Label:13C(6)15N(1);AC=695;", "Label:2H(9)13C(6)15N(2)": "NT=Label:2H(9)13C(6)15N(2);AC=696;", "NIC": "NT=NIC;AC=697;", "dNIC": "NT=dNIC;AC=698;", "HNE-Delta:H(2)O": "NT=HNE-Delta:H(2)O;AC=720;", "4-ONE": "NT=4-ONE;AC=721;", "O-Dimethylphosphate": "NT=O-Dimethylphosphate;AC=723;", "O-Methylphosphate": "NT=O-Methylphosphate;AC=724;", "Diethylphosphate": "NT=Diethylphosphate;AC=725;", "Ethylphosphate": "NT=Ethylphosphate;AC=726;", "O-pinacolylmethylphosphonate": "NT=O-pinacolylmethylphosphonate;AC=727;", "Methylphosphonate": "NT=Methylphosphonate;AC=728;", "O-Isopropylmethylphosphonate": "NT=O-Isopropylmethylphosphonate;AC=729;", "iTRAQ8plex": "NT=iTRAQ8plex;AC=730;", "iTRAQ8plex:13C(6)15N(2)": "NT=iTRAQ8plex:13C(6)15N(2);AC=731;", "Ethanolamine": "NT=Ethanolamine;AC=734;", "BEMAD_ST": "NT=BEMAD_ST;AC=735;", "BEMAD_C": "NT=BEMAD_C;AC=736;", "TMT6plex": "NT=TMT6plex;AC=737;", "TMT2plex": "NT=TMT2plex;AC=738;", "TMT": "NT=TMT;AC=739;", "ExacTagThiol": "NT=ExacTagThiol;AC=740;", "ExacTagAmine": "NT=ExacTagAmine;AC=741;", "4-ONE+Delta:H(-2)O(-1)": "NT=4-ONE+Delta:H(-2)O(-1);AC=743;", "NO_SMX_SEMD": "NT=NO_SMX_SEMD;AC=744;", "NO_SMX_SIMD": "NT=NO_SMX_SIMD;AC=746;", "Malonyl": "NT=Malonyl;AC=747;", "3sulfo": "NT=3sulfo;AC=748;", "trifluoro": "NT=trifluoro;AC=750;", "TNBS": "NT=TNBS;AC=751;", "IDEnT": "NT=IDEnT;AC=762;", "BEMAD_ST:2H(6)": "NT=BEMAD_ST:2H(6);AC=763;", "BEMAD_C:2H(6)": "NT=BEMAD_C:2H(6);AC=764;", "Met-loss": "NT=Met-loss;AC=765;", "Met-loss+Acetyl": "NT=Met-loss+Acetyl;AC=766;", "Menadione-HQ": "NT=Menadione-HQ;AC=767;", "Methyl+Acetyl:2H(3)": "NT=Methyl+Acetyl:2H(3);AC=768;", "lapachenole": "NT=lapachenole;AC=771;", "Label:13C(5)": "NT=Label:13C(5);AC=772;", "maleimide": "NT=maleimide;AC=773;", "Biotin-phenacyl": "NT=Biotin-phenacyl;AC=774;", "Carboxymethyl:13C(2)": "NT=Carboxymethyl:13C(2);AC=775;", "NEM:2H(5)": "NT=NEM:2H(5);AC=776;", "AEC-MAEC:2H(4)": "NT=AEC-MAEC:2H(4);AC=792;", "Hex(1)HexNAc(1)": "NT=Hex(1)HexNAc(1);AC=793;", "Label:13C(6)+GG": "NT=Label:13C(6)+GG;AC=799;", "Biotin:Thermo-21345": "NT=Biotin:Thermo-21345;AC=800;", "Pentylamine": "NT=Pentylamine;AC=801;", "Biotin:Thermo-21360": "NT=Biotin:Thermo-21360;AC=811;", "Cy3b-maleimide": "NT=Cy3b-maleimide;AC=821;", "Gly-loss+Amide": "NT=Gly-loss+Amide;AC=822;", "Xlink:BMOE": "NT=Xlink:BMOE;AC=824;", "Xlink:DFDNB": "NT=Xlink:DFDNB;AC=825;", "TMPP-Ac": "NT=TMPP-Ac;AC=827;", "Dihydroxyimidazolidine": "NT=Dihydroxyimidazolidine;AC=830;", "Label:2H(4)+Acetyl": "NT=Label:2H(4)+Acetyl;AC=834;", "Label:13C(6)+Acetyl": "NT=Label:13C(6)+Acetyl;AC=835;", "Label:13C(6)15N(2)+Acetyl": "NT=Label:13C(6)15N(2)+Acetyl;AC=836;", "Arg->Npo": "NT=Arg->Npo;AC=837;", "EQIGG": "NT=EQIGG;AC=846;", "Arg2PG": "NT=Arg2PG;AC=848;", "cGMP": "NT=cGMP;AC=849;", "cGMP+RMP-loss": "NT=cGMP+RMP-loss;AC=851;", "Label:2H(4)+GG": "NT=Label:2H(4)+GG;AC=853;", "MG-H1": "NT=MG-H1;AC=859;", "G-H1": "NT=G-H1;AC=860;", "ZGB": "NT=ZGB;AC=861;", "Label:13C(1)2H(3)": "NT=Label:13C(1)2H(3);AC=862;", "Label:13C(6)15N(2)+GG": "NT=Label:13C(6)15N(2)+GG;AC=864;", "ICPL:13C(6)2H(4)": "NT=ICPL:13C(6)2H(4);AC=866;", "QEQTGG": "NT=QEQTGG;AC=876;", "QQQTGG": "NT=QQQTGG;AC=877;", "Biotin:Thermo-21325": "NT=Biotin:Thermo-21325;AC=884;", "Label:13C(1)2H(3)+Oxidation": "NT=Label:13C(1)2H(3)+Oxidation;AC=885;", "HydroxymethylOP": "NT=HydroxymethylOP;AC=886;", "MDCC": "NT=MDCC;AC=887;", "mTRAQ": "NT=mTRAQ;AC=888;", "mTRAQ:13C(3)15N(1)": "NT=mTRAQ:13C(3)15N(1);AC=889;", "DyLight-maleimide": "NT=DyLight-maleimide;AC=890;", "Methyl-PEO12-Maleimide": "NT=Methyl-PEO12-Maleimide;AC=891;", "CarbamidomethylDTT": "NT=CarbamidomethylDTT;AC=893;", "CarboxymethylDTT": "NT=CarboxymethylDTT;AC=894;", "Biotin-PEG-PRA": "NT=Biotin-PEG-PRA;AC=895;", "Met->Aha": "NT=Met->Aha;AC=896;", "Label:15N(4)": "NT=Label:15N(4);AC=897;", "pyrophospho": "NT=pyrophospho;AC=898;", "Met->Hpg": "NT=Met->Hpg;AC=899;", "4AcAllylGal": "NT=4AcAllylGal;AC=901;", "DimethylArsino": "NT=DimethylArsino;AC=902;", "Lys->CamCys": "NT=Lys->CamCys;AC=903;", "Phe->CamCys": "NT=Phe->CamCys;AC=904;", "Leu->MetOx": "NT=Leu->MetOx;AC=905;", "Lys->MetOx": "NT=Lys->MetOx;AC=906;", "Galactosyl": "NT=Galactosyl;AC=907;", "Xlink:SMCC[321]": "NT=Xlink:SMCC[321];AC=908;", "Bacillosamine": "NT=Bacillosamine;AC=910;", "MTSL": "NT=MTSL;AC=911;", "HNE-BAHAH": "NT=HNE-BAHAH;AC=912;", "Methylmalonylation": "NT=Methylmalonylation;AC=914;", "Label:13C(4)15N(2)+GG": "NT=Label:13C(4)15N(2)+GG;AC=923;", "ethylamino": "NT=ethylamino;AC=926;", "MercaptoEthanol": "NT=MercaptoEthanol;AC=928;", "Ethyl+Deamidated": "NT=Ethyl+Deamidated;AC=931;", "VFQQQTGG": "NT=VFQQQTGG;AC=932;", "VIEVYQEQTGG": "NT=VIEVYQEQTGG;AC=933;", "AMTzHexNAc2": "NT=AMTzHexNAc2;AC=934;", "Atto495Maleimide": "NT=Atto495Maleimide;AC=935;", "Chlorination": "NT=Chlorination;AC=936;", "dichlorination": "NT=dichlorination;AC=937;", "AROD": "NT=AROD;AC=938;", "Cys->methylaminoAla": "NT=Cys->methylaminoAla;AC=939;", "Cys->ethylaminoAla": "NT=Cys->ethylaminoAla;AC=940;", "DNPS": "NT=DNPS;AC=941;", "SulfoGMBS": "NT=SulfoGMBS;AC=942;", "DimethylamineGMBS": "NT=DimethylamineGMBS;AC=943;", "Label:15N(2)2H(9)": "NT=Label:15N(2)2H(9);AC=944;", "LG-anhydrolactam": "NT=LG-anhydrolactam;AC=946;", "LG-pyrrole": "NT=LG-pyrrole;AC=947;", "LG-anhyropyrrole": "NT=LG-anhyropyrrole;AC=948;", "3-deoxyglucosone": "NT=3-deoxyglucosone;AC=949;", "Cation:Li": "NT=Cation:Li;AC=950;", "Cation:Ca[II]": "NT=Cation:Ca[II];AC=951;", "Cation:Fe[II]": "NT=Cation:Fe[II];AC=952;", "Cation:Ni[II]": "NT=Cation:Ni[II];AC=953;", "Cation:Zn[II]": "NT=Cation:Zn[II];AC=954;", "Cation:Ag": "NT=Cation:Ag;AC=955;", "Cation:Mg[II]": "NT=Cation:Mg[II];AC=956;", "2-succinyl": "NT=2-succinyl;AC=957;", "Propargylamine": "NT=Propargylamine;AC=958;", "Phosphopropargyl": "NT=Phosphopropargyl;AC=959;", "SUMO2135": "NT=SUMO2135;AC=960;", "SUMO3549": "NT=SUMO3549;AC=961;", "thioacylPA": "NT=thioacylPA;AC=967;", "maleimide3": "NT=maleimide3;AC=971;", "maleimide5": "NT=maleimide5;AC=972;", "Puromycin": "NT=Puromycin;AC=973;", "Carbofuran": "NT=Carbofuran;AC=977;", "BITC": "NT=BITC;AC=978;", "PEITC": "NT=PEITC;AC=979;", "glucosone": "NT=glucosone;AC=981;", "cysTMT": "NT=cysTMT;AC=984;", "cysTMT6plex": "NT=cysTMT6plex;AC=985;", "Label:13C(6)+Dimethyl": "NT=Label:13C(6)+Dimethyl;AC=986;", "Label:13C(6)15N(2)+Dimethyl": "NT=Label:13C(6)15N(2)+Dimethyl;AC=987;", "Ammonium": "NT=Ammonium;AC=989;", "ISD_z+2_ion": "NT=ISD_z+2_ion;AC=991;", "Biotin:Sigma-B1267": "NT=Biotin:Sigma-B1267;AC=993;", "Label:15N(1)": "NT=Label:15N(1);AC=994;", "Label:15N(2)": "NT=Label:15N(2);AC=995;", "Label:15N(3)": "NT=Label:15N(3);AC=996;", "sulfo+amino": "NT=sulfo+amino;AC=997;", "AHA-Alkyne": "NT=AHA-Alkyne;AC=1000;", "AHA-Alkyne-KDDDD": "NT=AHA-Alkyne-KDDDD;AC=1001;", "EGCG1": "NT=EGCG1;AC=1002;", "EGCG2": "NT=EGCG2;AC=1003;", "Label:13C(6)15N(4)+Methyl": "NT=Label:13C(6)15N(4)+Methyl;AC=1004;", "Label:13C(6)15N(4)+Dimethyl": "NT=Label:13C(6)15N(4)+Dimethyl;AC=1005;", "Label:13C(6)15N(4)+Methyl:2H(3)13C(1)": "NT=Label:13C(6)15N(4)+Methyl:2H(3)13C(1);AC=1006;", "Label:13C(6)15N(4)+Dimethyl:2H(6)13C(2)": "NT=Label:13C(6)15N(4)+Dimethyl:2H(6)13C(2);AC=1007;", "Cys->CamSec": "NT=Cys->CamSec;AC=1008;", "Thiazolidine": "NT=Thiazolidine;AC=1009;", "DEDGFLYMVYASQETFG": "NT=DEDGFLYMVYASQETFG;AC=1010;", "Biotin:Invitrogen-M1602": "NT=Biotin:Invitrogen-M1602;AC=1012;", "glycidamide": "NT=glycidamide;AC=1014;", "Ahx2+Hsl": "NT=Ahx2+Hsl;AC=1015;", "DMPO": "NT=DMPO;AC=1017;", "ICDID": "NT=ICDID;AC=1018;", "ICDID:2H(6)": "NT=ICDID:2H(6);AC=1019;", "Xlink:DSS[156]": "NT=Xlink:DSS[156];AC=1020;", "Xlink:EGS[244]": "NT=Xlink:EGS[244];AC=1021;", "Xlink:DST[132]": "NT=Xlink:DST[132];AC=1022;", "Xlink:DTSSP[192]": "NT=Xlink:DTSSP[192];AC=1023;", "Xlink:SMCC[237]": "NT=Xlink:SMCC[237];AC=1024;", "Xlink:DMP[140]": "NT=Xlink:DMP[140];AC=1027;", "Xlink:EGS[115]": "NT=Xlink:EGS[115];AC=1028;", "Biotin:Thermo-88310": "NT=Biotin:Thermo-88310;AC=1031;", "2-nitrobenzyl": "NT=2-nitrobenzyl;AC=1032;", "Cys->SecNEM": "NT=Cys->SecNEM;AC=1033;", "Cys->SecNEM:2H(5)": "NT=Cys->SecNEM:2H(5);AC=1034;", "Thiadiazole": "NT=Thiadiazole;AC=1035;", "Withaferin": "NT=Withaferin;AC=1036;", "Biotin:Thermo-88317": "NT=Biotin:Thermo-88317;AC=1037;", "TAMRA-FP": "NT=TAMRA-FP;AC=1038;", "Biotin:Thermo-21901+H2O": "NT=Biotin:Thermo-21901+H2O;AC=1039;", "Deoxyhypusine": "NT=Deoxyhypusine;AC=1041;", "Acetyldeoxyhypusine": "NT=Acetyldeoxyhypusine;AC=1042;", "Acetylhypusine": "NT=Acetylhypusine;AC=1043;", "Ala->Cys": "NT=Ala->Cys;AC=1044;", "Ala->Phe": "NT=Ala->Phe;AC=1045;", "Ala->His": "NT=Ala->His;AC=1046;", "Ala->Xle": "NT=Ala->Xle;AC=1047;", "Ala->Lys": "NT=Ala->Lys;AC=1048;", "Ala->Met": "NT=Ala->Met;AC=1049;", "Ala->Asn": "NT=Ala->Asn;AC=1050;", "Ala->Gln": "NT=Ala->Gln;AC=1051;", "Ala->Arg": "NT=Ala->Arg;AC=1052;", "Ala->Trp": "NT=Ala->Trp;AC=1053;", "Ala->Tyr": "NT=Ala->Tyr;AC=1054;", "Cys->Ala": "NT=Cys->Ala;AC=1055;", "Cys->Asp": "NT=Cys->Asp;AC=1056;", "Cys->Glu": "NT=Cys->Glu;AC=1057;", "Cys->His": "NT=Cys->His;AC=1058;", "Cys->Xle": "NT=Cys->Xle;AC=1059;", "Cys->Lys": "NT=Cys->Lys;AC=1060;", "Cys->Met": "NT=Cys->Met;AC=1061;", "Cys->Asn": "NT=Cys->Asn;AC=1062;", "Cys->Pro": "NT=Cys->Pro;AC=1063;", "Cys->Gln": "NT=Cys->Gln;AC=1064;", "Cys->Thr": "NT=Cys->Thr;AC=1065;", "Cys->Val": "NT=Cys->Val;AC=1066;", "Asp->Cys": "NT=Asp->Cys;AC=1067;", "Asp->Phe": "NT=Asp->Phe;AC=1068;", "Asp->Xle": "NT=Asp->Xle;AC=1069;", "Asp->Lys": "NT=Asp->Lys;AC=1070;", "Asp->Met": "NT=Asp->Met;AC=1071;", "Asp->Pro": "NT=Asp->Pro;AC=1072;", "Asp->Gln": "NT=Asp->Gln;AC=1073;", "Asp->Arg": "NT=Asp->Arg;AC=1074;", "Asp->Ser": "NT=Asp->Ser;AC=1075;", "Asp->Thr": "NT=Asp->Thr;AC=1076;", "Asp->Trp": "NT=Asp->Trp;AC=1077;", "Glu->Cys": "NT=Glu->Cys;AC=1078;", "Glu->Phe": "NT=Glu->Phe;AC=1079;", "Glu->His": "NT=Glu->His;AC=1080;", "Glu->Xle": "NT=Glu->Xle;AC=1081;", "Glu->Met": "NT=Glu->Met;AC=1082;", "Glu->Asn": "NT=Glu->Asn;AC=1083;", "Glu->Pro": "NT=Glu->Pro;AC=1084;", "Glu->Arg": "NT=Glu->Arg;AC=1085;", "Glu->Ser": "NT=Glu->Ser;AC=1086;", "Glu->Thr": "NT=Glu->Thr;AC=1087;", "Glu->Trp": "NT=Glu->Trp;AC=1088;", "Glu->Tyr": "NT=Glu->Tyr;AC=1089;", "Phe->Ala": "NT=Phe->Ala;AC=1090;", "Phe->Asp": "NT=Phe->Asp;AC=1091;", "Phe->Glu": "NT=Phe->Glu;AC=1092;", "Phe->Gly": "NT=Phe->Gly;AC=1093;", "Phe->His": "NT=Phe->His;AC=1094;", "Phe->Lys": "NT=Phe->Lys;AC=1095;", "Phe->Met": "NT=Phe->Met;AC=1096;", "Phe->Asn": "NT=Phe->Asn;AC=1097;", "Phe->Pro": "NT=Phe->Pro;AC=1098;", "Phe->Gln": "NT=Phe->Gln;AC=1099;", "Phe->Arg": "NT=Phe->Arg;AC=1100;", "Phe->Thr": "NT=Phe->Thr;AC=1101;", "Phe->Trp": "NT=Phe->Trp;AC=1102;", "Gly->Phe": "NT=Gly->Phe;AC=1103;", "Gly->His": "NT=Gly->His;AC=1104;", "Gly->Xle": "NT=Gly->Xle;AC=1105;", "Gly->Lys": "NT=Gly->Lys;AC=1106;", "Gly->Met": "NT=Gly->Met;AC=1107;", "Gly->Asn": "NT=Gly->Asn;AC=1108;", "Gly->Pro": "NT=Gly->Pro;AC=1109;", "Gly->Gln": "NT=Gly->Gln;AC=1110;", "Gly->Thr": "NT=Gly->Thr;AC=1111;", "Gly->Tyr": "NT=Gly->Tyr;AC=1112;", "His->Ala": "NT=His->Ala;AC=1113;", "His->Cys": "NT=His->Cys;AC=1114;", "His->Glu": "NT=His->Glu;AC=1115;", "His->Phe": "NT=His->Phe;AC=1116;", "His->Gly": "NT=His->Gly;AC=1117;", "His->Lys": "NT=His->Lys;AC=1119;", "His->Met": "NT=His->Met;AC=1120;", "His->Ser": "NT=His->Ser;AC=1121;", "His->Thr": "NT=His->Thr;AC=1122;", "His->Val": "NT=His->Val;AC=1123;", "His->Trp": "NT=His->Trp;AC=1124;", "Xle->Ala": "NT=Xle->Ala;AC=1125;", "Xle->Cys": "NT=Xle->Cys;AC=1126;", "Xle->Asp": "NT=Xle->Asp;AC=1127;", "Xle->Glu": "NT=Xle->Glu;AC=1128;", "Xle->Gly": "NT=Xle->Gly;AC=1129;", "Xle->Tyr": "NT=Xle->Tyr;AC=1130;", "Lys->Ala": "NT=Lys->Ala;AC=1131;", "Lys->Cys": "NT=Lys->Cys;AC=1132;", "Lys->Asp": "NT=Lys->Asp;AC=1133;", "Lys->Phe": "NT=Lys->Phe;AC=1134;", "Lys->Gly": "NT=Lys->Gly;AC=1135;", "Lys->His": "NT=Lys->His;AC=1136;", "Lys->Pro": "NT=Lys->Pro;AC=1137;", "Lys->Ser": "NT=Lys->Ser;AC=1138;", "Lys->Val": "NT=Lys->Val;AC=1139;", "Lys->Trp": "NT=Lys->Trp;AC=1140;", "Lys->Tyr": "NT=Lys->Tyr;AC=1141;", "Met->Ala": "NT=Met->Ala;AC=1142;", "Met->Cys": "NT=Met->Cys;AC=1143;", "Met->Asp": "NT=Met->Asp;AC=1144;", "Met->Glu": "NT=Met->Glu;AC=1145;", "Met->Phe": "NT=Met->Phe;AC=1146;", "Met->Gly": "NT=Met->Gly;AC=1147;", "Met->His": "NT=Met->His;AC=1148;", "Met->Asn": "NT=Met->Asn;AC=1149;", "Met->Pro": "NT=Met->Pro;AC=1150;", "Met->Gln": "NT=Met->Gln;AC=1151;", "Met->Ser": "NT=Met->Ser;AC=1152;", "Met->Trp": "NT=Met->Trp;AC=1153;", "Met->Tyr": "NT=Met->Tyr;AC=1154;", "Asn->Ala": "NT=Asn->Ala;AC=1155;", "Asn->Cys": "NT=Asn->Cys;AC=1156;", "Asn->Glu": "NT=Asn->Glu;AC=1157;", "Asn->Phe": "NT=Asn->Phe;AC=1158;", "Asn->Gly": "NT=Asn->Gly;AC=1159;", "Asn->Met": "NT=Asn->Met;AC=1160;", "Asn->Pro": "NT=Asn->Pro;AC=1161;", "Asn->Gln": "NT=Asn->Gln;AC=1162;", "Asn->Arg": "NT=Asn->Arg;AC=1163;", "Asn->Val": "NT=Asn->Val;AC=1164;", "Asn->Trp": "NT=Asn->Trp;AC=1165;", "Pro->Cys": "NT=Pro->Cys;AC=1166;", "Pro->Asp": "NT=Pro->Asp;AC=1167;", "Pro->Glu": "NT=Pro->Glu;AC=1168;", "Pro->Phe": "NT=Pro->Phe;AC=1169;", "Pro->Gly": "NT=Pro->Gly;AC=1170;", "Pro->Lys": "NT=Pro->Lys;AC=1171;", "Pro->Met": "NT=Pro->Met;AC=1172;", "Pro->Asn": "NT=Pro->Asn;AC=1173;", "Pro->Val": "NT=Pro->Val;AC=1174;", "Pro->Trp": "NT=Pro->Trp;AC=1175;", "Pro->Tyr": "NT=Pro->Tyr;AC=1176;", "Gln->Ala": "NT=Gln->Ala;AC=1177;", "Gln->Cys": "NT=Gln->Cys;AC=1178;", "Gln->Asp": "NT=Gln->Asp;AC=1179;", "Gln->Phe": "NT=Gln->Phe;AC=1180;", "Gln->Gly": "NT=Gln->Gly;AC=1181;", "Gln->Met": "NT=Gln->Met;AC=1182;", "Gln->Asn": "NT=Gln->Asn;AC=1183;", "Gln->Ser": "NT=Gln->Ser;AC=1184;", "Gln->Thr": "NT=Gln->Thr;AC=1185;", "Gln->Val": "NT=Gln->Val;AC=1186;", "Gln->Trp": "NT=Gln->Trp;AC=1187;", "Gln->Tyr": "NT=Gln->Tyr;AC=1188;", "Arg->Ala": "NT=Arg->Ala;AC=1189;", "Arg->Asp": "NT=Arg->Asp;AC=1190;", "Arg->Glu": "NT=Arg->Glu;AC=1191;", "Arg->Asn": "NT=Arg->Asn;AC=1192;", "Arg->Val": "NT=Arg->Val;AC=1193;", "Arg->Tyr": "NT=Arg->Tyr;AC=1194;", "Arg->Phe": "NT=Arg->Phe;AC=1195;", "Ser->Asp": "NT=Ser->Asp;AC=1196;", "Ser->Glu": "NT=Ser->Glu;AC=1197;", "Ser->His": "NT=Ser->His;AC=1198;", "Ser->Lys": "NT=Ser->Lys;AC=1199;", "Ser->Met": "NT=Ser->Met;AC=1200;", "Ser->Gln": "NT=Ser->Gln;AC=1201;", "Ser->Val": "NT=Ser->Val;AC=1202;", "Thr->Cys": "NT=Thr->Cys;AC=1203;", "Thr->Asp": "NT=Thr->Asp;AC=1204;", "Thr->Glu": "NT=Thr->Glu;AC=1205;", "Thr->Phe": "NT=Thr->Phe;AC=1206;", "Thr->Gly": "NT=Thr->Gly;AC=1207;", "Thr->His": "NT=Thr->His;AC=1208;", "Thr->Gln": "NT=Thr->Gln;AC=1209;", "Thr->Val": "NT=Thr->Val;AC=1210;", "Thr->Trp": "NT=Thr->Trp;AC=1211;", "Thr->Tyr": "NT=Thr->Tyr;AC=1212;", "Val->Cys": "NT=Val->Cys;AC=1213;", "Val->His": "NT=Val->His;AC=1214;", "Val->Lys": "NT=Val->Lys;AC=1215;", "Val->Asn": "NT=Val->Asn;AC=1216;", "Val->Pro": "NT=Val->Pro;AC=1217;", "Val->Gln": "NT=Val->Gln;AC=1218;", "Val->Arg": "NT=Val->Arg;AC=1219;", "Val->Ser": "NT=Val->Ser;AC=1220;", "Val->Thr": "NT=Val->Thr;AC=1221;", "Val->Trp": "NT=Val->Trp;AC=1222;", "Val->Tyr": "NT=Val->Tyr;AC=1223;", "Trp->Ala": "NT=Trp->Ala;AC=1224;", "Trp->Asp": "NT=Trp->Asp;AC=1225;", "Trp->Glu": "NT=Trp->Glu;AC=1226;", "Trp->Phe": "NT=Trp->Phe;AC=1227;", "Trp->His": "NT=Trp->His;AC=1228;", "Trp->Lys": "NT=Trp->Lys;AC=1229;", "Trp->Met": "NT=Trp->Met;AC=1230;", "Trp->Asn": "NT=Trp->Asn;AC=1231;", "Trp->Pro": "NT=Trp->Pro;AC=1232;", "Trp->Gln": "NT=Trp->Gln;AC=1233;", "Trp->Thr": "NT=Trp->Thr;AC=1234;", "Trp->Val": "NT=Trp->Val;AC=1235;", "Trp->Tyr": "NT=Trp->Tyr;AC=1236;", "Tyr->Ala": "NT=Tyr->Ala;AC=1237;", "Tyr->Glu": "NT=Tyr->Glu;AC=1238;", "Tyr->Gly": "NT=Tyr->Gly;AC=1239;", "Tyr->Lys": "NT=Tyr->Lys;AC=1240;", "Tyr->Met": "NT=Tyr->Met;AC=1241;", "Tyr->Pro": "NT=Tyr->Pro;AC=1242;", "Tyr->Gln": "NT=Tyr->Gln;AC=1243;", "Tyr->Arg": "NT=Tyr->Arg;AC=1244;", "Tyr->Thr": "NT=Tyr->Thr;AC=1245;", "Tyr->Val": "NT=Tyr->Val;AC=1246;", "Tyr->Trp": "NT=Tyr->Trp;AC=1247;", "Tyr->Xle": "NT=Tyr->Xle;AC=1248;", "AHA-SS": "NT=AHA-SS;AC=1249;", "AHA-SS_CAM": "NT=AHA-SS_CAM;AC=1250;", "Biotin:Thermo-33033": "NT=Biotin:Thermo-33033;AC=1251;", "Biotin:Thermo-33033-H": "NT=Biotin:Thermo-33033-H;AC=1252;", "2-monomethylsuccinyl": "NT=2-monomethylsuccinyl;AC=1253;", "Saligenin": "NT=Saligenin;AC=1254;", "Cresylphosphate": "NT=Cresylphosphate;AC=1255;", "CresylSaligeninPhosphate": "NT=CresylSaligeninPhosphate;AC=1256;", "Ub-Br2": "NT=Ub-Br2;AC=1257;", "Ub-VME": "NT=Ub-VME;AC=1258;", "Ub-fluorescein": "NT=Ub-fluorescein;AC=1261;", "2-dimethylsuccinyl": "NT=2-dimethylsuccinyl;AC=1262;", "Gly": "NT=Gly;AC=1263;", "pupylation": "NT=pupylation;AC=1264;", "Label:13C(4)": "NT=Label:13C(4);AC=1266;", "Label:13C(4)+Oxidation": "NT=Label:13C(4)+Oxidation;AC=1267;", "HCysThiolactone": "NT=HCysThiolactone;AC=1270;", "HCysteinyl": "NT=HCysteinyl;AC=1271;", "UgiJoullie": "NT=UgiJoullie;AC=1276;", "Dipyridyl": "NT=Dipyridyl;AC=1277;", "Furan": "NT=Furan;AC=1278;", "Difuran": "NT=Difuran;AC=1279;", "BMP-piperidinol": "NT=BMP-piperidinol;AC=1281;", "UgiJoullieProGly": "NT=UgiJoullieProGly;AC=1282;", "UgiJoullieProGlyProGly": "NT=UgiJoullieProGlyProGly;AC=1283;", "IMEHex(2)NeuAc(1)": "NT=IMEHex(2)NeuAc(1);AC=1286;", "Arg-loss": "NT=Arg-loss;AC=1287;", "Arg": "NT=Arg;AC=1288;", "Butyryl": "NT=Butyryl;AC=1289;", "Dicarbamidomethyl": "NT=Dicarbamidomethyl;AC=1290;", "Dimethyl:2H(6)": "NT=Dimethyl:2H(6);AC=1291;", "GGQ": "NT=GGQ;AC=1292;", "QTGG": "NT=QTGG;AC=1293;", "Label:13C(3)": "NT=Label:13C(3);AC=1296;", "Label:13C(3)15N(1)": "NT=Label:13C(3)15N(1);AC=1297;", "Label:13C(4)15N(1)": "NT=Label:13C(4)15N(1);AC=1298;", "Label:2H(10)": "NT=Label:2H(10);AC=1299;", "Label:2H(4)13C(1)": "NT=Label:2H(4)13C(1);AC=1300;", "Lys": "NT=Lys;AC=1301;", "mTRAQ:13C(6)15N(2)": "NT=mTRAQ:13C(6)15N(2);AC=1302;", "NeuAc": "NT=NeuAc;AC=1303;", "NeuGc": "NT=NeuGc;AC=1304;", "Propyl": "NT=Propyl;AC=1305;", "Propyl:2H(6)": "NT=Propyl:2H(6);AC=1306;", "Propiophenone": "NT=Propiophenone;AC=1310;", "Delta:H(6)C(3)O(1)": "NT=Delta:H(6)C(3)O(1);AC=1312;", "Delta:H(8)C(6)O(1)": "NT=Delta:H(8)C(6)O(1);AC=1313;", "biotinAcrolein298": "NT=biotinAcrolein298;AC=1314;", "MM-diphenylpentanone": "NT=MM-diphenylpentanone;AC=1315;", "EHD-diphenylpentanone": "NT=EHD-diphenylpentanone;AC=1317;", "Biotin:Thermo-21901+2H2O": "NT=Biotin:Thermo-21901+2H2O;AC=1320;", "DiLeu4plex115": "NT=DiLeu4plex115;AC=1321;", "DiLeu4plex": "NT=DiLeu4plex;AC=1322;", "DiLeu4plex117": "NT=DiLeu4plex117;AC=1323;", "DiLeu4plex118": "NT=DiLeu4plex118;AC=1324;", "NEMsulfur": "NT=NEMsulfur;AC=1326;", "SulfurDioxide": "NT=SulfurDioxide;AC=1327;", "NEMsulfurWater": "NT=NEMsulfurWater;AC=1328;", "bisANS-sulfonates": "NT=bisANS-sulfonates;AC=1330;", "DNCB_hapten": "NT=DNCB_hapten;AC=1331;", "Biotin:Thermo-21911": "NT=Biotin:Thermo-21911;AC=1340;", "iodoTMT": "NT=iodoTMT;AC=1341;", "iodoTMT6plex": "NT=iodoTMT6plex;AC=1342;", "Phosphogluconoylation": "NT=Phosphogluconoylation;AC=1344;", "PS_Hapten": "NT=PS_Hapten;AC=1345;", "Cy3-maleimide": "NT=Cy3-maleimide;AC=1348;", "benzylguanidine": "NT=benzylguanidine;AC=1349;", "CarboxymethylDMAP": "NT=CarboxymethylDMAP;AC=1350;", "azole": "NT=azole;AC=1355;", "phosphoRibosyl": "NT=phosphoRibosyl;AC=1356;", "NEM:2H(5)+H2O": "NT=NEM:2H(5)+H2O;AC=1358;", "Crotonyl": "NT=Crotonyl;AC=1363;", "O-Et-N-diMePhospho": "NT=O-Et-N-diMePhospho;AC=1364;", "N-dimethylphosphate": "NT=N-dimethylphosphate;AC=1365;", "dHex(1)Hex(1)": "NT=dHex(1)Hex(1);AC=1367;", "Methyl:2H(3)+Acetyl:2H(3)": "NT=Methyl:2H(3)+Acetyl:2H(3);AC=1368;", "Label:2H(3)+Oxidation": "NT=Label:2H(3)+Oxidation;AC=1370;", "Trimethyl:2H(9)": "NT=Trimethyl:2H(9);AC=1371;", "Acetyl:13C(2)": "NT=Acetyl:13C(2);AC=1372;", "dHex(1)Hex(2)": "NT=dHex(1)Hex(2);AC=1375;", "dHex(1)Hex(3)": "NT=dHex(1)Hex(3);AC=1376;", "dHex(1)Hex(4)": "NT=dHex(1)Hex(4);AC=1377;", "dHex(1)Hex(5)": "NT=dHex(1)Hex(5);AC=1378;", "dHex(1)Hex(6)": "NT=dHex(1)Hex(6);AC=1379;", "methylsulfonylethyl": "NT=methylsulfonylethyl;AC=1380;", "ethylsulfonylethyl": "NT=ethylsulfonylethyl;AC=1381;", "phenylsulfonylethyl": "NT=phenylsulfonylethyl;AC=1382;", "PyridoxalPhosphateH2": "NT=PyridoxalPhosphateH2;AC=1383;", "Homocysteic_acid": "NT=Homocysteic_acid;AC=1384;", "Hydroxamic_acid": "NT=Hydroxamic_acid;AC=1385;", "3-phosphoglyceryl": "NT=3-phosphoglyceryl;AC=1387;", "HN2_mustard": "NT=HN2_mustard;AC=1388;", "HN3_mustard": "NT=HN3_mustard;AC=1389;", "Oxidation+NEM": "NT=Oxidation+NEM;AC=1390;", "NHS-fluorescein": "NT=NHS-fluorescein;AC=1391;", "DiART6plex": "NT=DiART6plex;AC=1392;", "DiART6plex115": "NT=DiART6plex115;AC=1393;", "DiART6plex116/119": "NT=DiART6plex116/119;AC=1394;", "DiART6plex117": "NT=DiART6plex117;AC=1395;", "DiART6plex118": "NT=DiART6plex118;AC=1396;", "Iodoacetanilide": "NT=Iodoacetanilide;AC=1397;", "Iodoacetanilide:13C(6)": "NT=Iodoacetanilide:13C(6);AC=1398;", "Dap-DSP": "NT=Dap-DSP;AC=1399;", "MurNAc": "NT=MurNAc;AC=1400;", "Label:2H(7)15N(4)": "NT=Label:2H(7)15N(4);AC=1402;", "Label:2H(6)15N(1)": "NT=Label:2H(6)15N(1);AC=1403;", "EEEDVIEVYQEQTGG": "NT=EEEDVIEVYQEQTGG;AC=1405;", "EDEDTIDVFQQQTGG": "NT=EDEDTIDVFQQQTGG;AC=1406;", "Hex(5)HexNAc(4)NeuAc(2)": "NT=Hex(5)HexNAc(4)NeuAc(2);AC=1408;", "Hex(5)HexNAc(4)NeuAc(1)": "NT=Hex(5)HexNAc(4)NeuAc(1);AC=1409;", "dHex(1)Hex(5)HexNAc(4)NeuAc(1)": "NT=dHex(1)Hex(5)HexNAc(4)NeuAc(1);AC=1410;", "dHex(1)Hex(5)HexNAc(4)NeuAc(2)": "NT=dHex(1)Hex(5)HexNAc(4)NeuAc(2);AC=1411;", "s-GlcNAc": "NT=s-GlcNAc;AC=1412;", "PhosphoHex(2)": "NT=PhosphoHex(2);AC=1413;", "Trimethyl:13C(3)2H(9)": "NT=Trimethyl:13C(3)2H(9);AC=1414;", "15N-oxobutanoic": "NT=15N-oxobutanoic;AC=1419;", "spermine": "NT=spermine;AC=1420;", "spermidine": "NT=spermidine;AC=1421;", "Biotin:Thermo-21330": "NT=Biotin:Thermo-21330;AC=1423;", "Pentose": "NT=Pentose;AC=1425;", "Hex(1)Pent(1)": "NT=Hex(1)Pent(1);AC=1426;", "Hex(1)HexA(1)": "NT=Hex(1)HexA(1);AC=1427;", "Hex(1)Pent(2)": "NT=Hex(1)Pent(2);AC=1428;", "Hex(1)HexNAc(1)Phos(1)": "NT=Hex(1)HexNAc(1)Phos(1);AC=1429;", "Hex(1)HexNAc(1)Sulf(1)": "NT=Hex(1)HexNAc(1)Sulf(1);AC=1430;", "Hex(1)NeuAc(1)": "NT=Hex(1)NeuAc(1);AC=1431;", "Hex(1)NeuGc(1)": "NT=Hex(1)NeuGc(1);AC=1432;", "HexNAc(3)": "NT=HexNAc(3);AC=1433;", "HexNAc(1)NeuAc(1)": "NT=HexNAc(1)NeuAc(1);AC=1434;", "HexNAc(1)NeuGc(1)": "NT=HexNAc(1)NeuGc(1);AC=1435;", "Hex(1)HexNAc(1)dHex(1)Me(1)": "NT=Hex(1)HexNAc(1)dHex(1)Me(1);AC=1436;", "Hex(1)HexNAc(1)dHex(1)Me(2)": "NT=Hex(1)HexNAc(1)dHex(1)Me(2);AC=1437;", "Hex(2)HexNAc(1)": "NT=Hex(2)HexNAc(1);AC=1438;", "Hex(1)HexA(1)HexNAc(1)": "NT=Hex(1)HexA(1)HexNAc(1);AC=1439;", "Hex(2)HexNAc(1)Me(1)": "NT=Hex(2)HexNAc(1)Me(1);AC=1440;", "Hex(1)Pent(3)": "NT=Hex(1)Pent(3);AC=1441;", "Hex(1)NeuAc(1)Pent(1)": "NT=Hex(1)NeuAc(1)Pent(1);AC=1442;", "Hex(2)HexNAc(1)Sulf(1)": "NT=Hex(2)HexNAc(1)Sulf(1);AC=1443;", "Hex(2)NeuAc(1)": "NT=Hex(2)NeuAc(1);AC=1444;", "dHex(2)Hex(2)": "NT=dHex(2)Hex(2);AC=1445;", "dHex(1)Hex(2)HexA(1)": "NT=dHex(1)Hex(2)HexA(1);AC=1446;", "Hex(1)HexNAc(2)Sulf(1)": "NT=Hex(1)HexNAc(2)Sulf(1);AC=1447;", "Hex(4)": "NT=Hex(4);AC=1448;", "dHex(1)Hex(2)HexNAc(2)Pent(1)": "NT=dHex(1)Hex(2)HexNAc(2)Pent(1);AC=1449;", "Hex(2)HexNAc(2)NeuAc(1)": "NT=Hex(2)HexNAc(2)NeuAc(1);AC=1450;", "Hex(3)HexNAc(2)Pent(1)": "NT=Hex(3)HexNAc(2)Pent(1);AC=1451;", "Hex(4)HexNAc(2)": "NT=Hex(4)HexNAc(2);AC=1452;", "dHex(1)Hex(4)HexNAc(1)Pent(1)": "NT=dHex(1)Hex(4)HexNAc(1)Pent(1);AC=1453;", "dHex(1)Hex(3)HexNAc(2)Pent(1)": "NT=dHex(1)Hex(3)HexNAc(2)Pent(1);AC=1454;", "Hex(3)HexNAc(2)NeuAc(1)": "NT=Hex(3)HexNAc(2)NeuAc(1);AC=1455;", "Hex(4)HexNAc(2)Pent(1)": "NT=Hex(4)HexNAc(2)Pent(1);AC=1456;", "Hex(3)HexNAc(3)Pent(1)": "NT=Hex(3)HexNAc(3)Pent(1);AC=1457;", "Hex(5)HexNAc(2)Phos(1)": "NT=Hex(5)HexNAc(2)Phos(1);AC=1458;", "dHex(1)Hex(4)HexNAc(2)Pent(1)": "NT=dHex(1)Hex(4)HexNAc(2)Pent(1);AC=1459;", "Hex(7)HexNAc(1)": "NT=Hex(7)HexNAc(1);AC=1460;", "Hex(4)HexNAc(2)NeuAc(1)": "NT=Hex(4)HexNAc(2)NeuAc(1);AC=1461;", "dHex(1)Hex(5)HexNAc(2)": "NT=dHex(1)Hex(5)HexNAc(2);AC=1462;", "dHex(1)Hex(3)HexNAc(3)Pent(1)": "NT=dHex(1)Hex(3)HexNAc(3)Pent(1);AC=1463;", "Hex(3)HexNAc(4)Sulf(1)": "NT=Hex(3)HexNAc(4)Sulf(1);AC=1464;", "Hex(6)HexNAc(2)": "NT=Hex(6)HexNAc(2);AC=1465;", "Hex(4)HexNAc(3)Pent(1)": "NT=Hex(4)HexNAc(3)Pent(1);AC=1466;", "dHex(1)Hex(4)HexNAc(3)": "NT=dHex(1)Hex(4)HexNAc(3);AC=1467;", "Hex(5)HexNAc(3)": "NT=Hex(5)HexNAc(3);AC=1468;", "Hex(3)HexNAc(4)Pent(1)": "NT=Hex(3)HexNAc(4)Pent(1);AC=1469;", "Hex(6)HexNAc(2)Phos(1)": "NT=Hex(6)HexNAc(2)Phos(1);AC=1470;", "dHex(1)Hex(4)HexNAc(3)Sulf(1)": "NT=dHex(1)Hex(4)HexNAc(3)Sulf(1);AC=1471;", "dHex(1)Hex(5)HexNAc(2)Pent(1)": "NT=dHex(1)Hex(5)HexNAc(2)Pent(1);AC=1472;", "Hex(8)HexNAc(1)": "NT=Hex(8)HexNAc(1);AC=1473;", "dHex(1)Hex(3)HexNAc(3)Pent(2)": "NT=dHex(1)Hex(3)HexNAc(3)Pent(2);AC=1474;", "dHex(2)Hex(3)HexNAc(3)Pent(1)": "NT=dHex(2)Hex(3)HexNAc(3)Pent(1);AC=1475;", "dHex(1)Hex(3)HexNAc(4)Sulf(1)": "NT=dHex(1)Hex(3)HexNAc(4)Sulf(1);AC=1476;", "dHex(1)Hex(6)HexNAc(2)": "NT=dHex(1)Hex(6)HexNAc(2);AC=1477;", "dHex(1)Hex(4)HexNAc(3)Pent(1)": "NT=dHex(1)Hex(4)HexNAc(3)Pent(1);AC=1478;", "Hex(4)HexNAc(4)Sulf(1)": "NT=Hex(4)HexNAc(4)Sulf(1);AC=1479;", "Hex(7)HexNAc(2)": "NT=Hex(7)HexNAc(2);AC=1480;", "dHex(2)Hex(4)HexNAc(3)": "NT=dHex(2)Hex(4)HexNAc(3);AC=1481;", "Hex(5)HexNAc(3)Pent(1)": "NT=Hex(5)HexNAc(3)Pent(1);AC=1482;", "Hex(4)HexNAc(3)NeuGc(1)": "NT=Hex(4)HexNAc(3)NeuGc(1);AC=1483;", "dHex(1)Hex(5)HexNAc(3)": "NT=dHex(1)Hex(5)HexNAc(3);AC=1484;", "dHex(1)Hex(3)HexNAc(4)Pent(1)": "NT=dHex(1)Hex(3)HexNAc(4)Pent(1);AC=1485;", "Hex(3)HexNAc(5)Sulf(1)": "NT=Hex(3)HexNAc(5)Sulf(1);AC=1486;", "Hex(6)HexNAc(3)": "NT=Hex(6)HexNAc(3);AC=1487;", "Hex(3)HexNAc(4)NeuAc(1)": "NT=Hex(3)HexNAc(4)NeuAc(1);AC=1488;", "Hex(4)HexNAc(4)Pent(1)": "NT=Hex(4)HexNAc(4)Pent(1);AC=1489;", "Hex(7)HexNAc(2)Phos(1)": "NT=Hex(7)HexNAc(2)Phos(1);AC=1490;", "Hex(4)HexNAc(4)Me(2)Pent(1)": "NT=Hex(4)HexNAc(4)Me(2)Pent(1);AC=1491;", "dHex(1)Hex(3)HexNAc(3)Pent(3)": "NT=dHex(1)Hex(3)HexNAc(3)Pent(3);AC=1492;", "dHex(1)Hex(5)HexNAc(3)Sulf(1)": "NT=dHex(1)Hex(5)HexNAc(3)Sulf(1);AC=1493;", "dHex(2)Hex(3)HexNAc(3)Pent(2)": "NT=dHex(2)Hex(3)HexNAc(3)Pent(2);AC=1494;", "Hex(6)HexNAc(3)Phos(1)": "NT=Hex(6)HexNAc(3)Phos(1);AC=1495;", "Hex(4)HexNAc(5)": "NT=Hex(4)HexNAc(5);AC=1496;", "dHex(3)Hex(3)HexNAc(3)Pent(1)": "NT=dHex(3)Hex(3)HexNAc(3)Pent(1);AC=1497;", "dHex(2)Hex(4)HexNAc(3)Pent(1)": "NT=dHex(2)Hex(4)HexNAc(3)Pent(1);AC=1498;", "dHex(1)Hex(4)HexNAc(4)Sulf(1)": "NT=dHex(1)Hex(4)HexNAc(4)Sulf(1);AC=1499;", "dHex(1)Hex(7)HexNAc(2)": "NT=dHex(1)Hex(7)HexNAc(2);AC=1500;", "dHex(1)Hex(4)HexNAc(3)NeuAc(1)": "NT=dHex(1)Hex(4)HexNAc(3)NeuAc(1);AC=1501;", "Hex(7)HexNAc(2)Phos(2)": "NT=Hex(7)HexNAc(2)Phos(2);AC=1502;", "Hex(5)HexNAc(4)Sulf(1)": "NT=Hex(5)HexNAc(4)Sulf(1);AC=1503;", "Hex(8)HexNAc(2)": "NT=Hex(8)HexNAc(2);AC=1504;", "dHex(1)Hex(3)HexNAc(4)Pent(2)": "NT=dHex(1)Hex(3)HexNAc(4)Pent(2);AC=1505;", "dHex(1)Hex(4)HexNAc(3)NeuGc(1)": "NT=dHex(1)Hex(4)HexNAc(3)NeuGc(1);AC=1506;", "dHex(2)Hex(3)HexNAc(4)Pent(1)": "NT=dHex(2)Hex(3)HexNAc(4)Pent(1);AC=1507;", "dHex(1)Hex(3)HexNAc(5)Sulf(1)": "NT=dHex(1)Hex(3)HexNAc(5)Sulf(1);AC=1508;", "dHex(1)Hex(6)HexNAc(3)": "NT=dHex(1)Hex(6)HexNAc(3);AC=1509;", "dHex(1)Hex(3)HexNAc(4)NeuAc(1)": "NT=dHex(1)Hex(3)HexNAc(4)NeuAc(1);AC=1510;", "dHex(3)Hex(3)HexNAc(4)": "NT=dHex(3)Hex(3)HexNAc(4);AC=1511;", "dHex(1)Hex(4)HexNAc(4)Pent(1)": "NT=dHex(1)Hex(4)HexNAc(4)Pent(1);AC=1512;", "Hex(4)HexNAc(5)Sulf(1)": "NT=Hex(4)HexNAc(5)Sulf(1);AC=1513;", "Hex(7)HexNAc(3)": "NT=Hex(7)HexNAc(3);AC=1514;", "dHex(1)Hex(4)HexNAc(3)NeuAc(1)Sulf(1)": "NT=dHex(1)Hex(4)HexNAc(3)NeuAc(1)Sulf(1);AC=1515;", "Hex(5)HexNAc(4)Me(2)Pent(1)": "NT=Hex(5)HexNAc(4)Me(2)Pent(1);AC=1516;", "Hex(3)HexNAc(6)Sulf(1)": "NT=Hex(3)HexNAc(6)Sulf(1);AC=1517;", "dHex(1)Hex(6)HexNAc(3)Sulf(1)": "NT=dHex(1)Hex(6)HexNAc(3)Sulf(1);AC=1518;", "dHex(1)Hex(4)HexNAc(5)": "NT=dHex(1)Hex(4)HexNAc(5);AC=1519;", "dHex(1)Hex(5)HexA(1)HexNAc(3)Sulf(1)": "NT=dHex(1)Hex(5)HexA(1)HexNAc(3)Sulf(1);AC=1520;", "Hex(7)HexNAc(3)Phos(1)": "NT=Hex(7)HexNAc(3)Phos(1);AC=1521;", "Hex(6)HexNAc(4)Me(3)": "NT=Hex(6)HexNAc(4)Me(3);AC=1522;", "dHex(2)Hex(4)HexNAc(4)Sulf(1)": "NT=dHex(2)Hex(4)HexNAc(4)Sulf(1);AC=1523;", "Hex(4)HexNAc(3)NeuAc(2)": "NT=Hex(4)HexNAc(3)NeuAc(2);AC=1524;", "dHex(1)Hex(3)HexNAc(4)Pent(3)": "NT=dHex(1)Hex(3)HexNAc(4)Pent(3);AC=1525;", "dHex(2)Hex(5)HexNAc(3)Pent(1)": "NT=dHex(2)Hex(5)HexNAc(3)Pent(1);AC=1526;", "dHex(1)Hex(5)HexNAc(4)Sulf(1)": "NT=dHex(1)Hex(5)HexNAc(4)Sulf(1);AC=1527;", "dHex(2)Hex(3)HexNAc(4)Pent(2)": "NT=dHex(2)Hex(3)HexNAc(4)Pent(2);AC=1528;", "dHex(1)Hex(5)HexNAc(3)NeuAc(1)": "NT=dHex(1)Hex(5)HexNAc(3)NeuAc(1);AC=1529;", "Hex(3)HexNAc(6)Sulf(2)": "NT=Hex(3)HexNAc(6)Sulf(2);AC=1530;", "Hex(9)HexNAc(2)": "NT=Hex(9)HexNAc(2);AC=1531;", "Hex(4)HexNAc(6)": "NT=Hex(4)HexNAc(6);AC=1532;", "dHex(3)Hex(3)HexNAc(4)Pent(1)": "NT=dHex(3)Hex(3)HexNAc(4)Pent(1);AC=1533;", "dHex(1)Hex(5)HexNAc(3)NeuGc(1)": "NT=dHex(1)Hex(5)HexNAc(3)NeuGc(1);AC=1534;", "dHex(2)Hex(4)HexNAc(4)Pent(1)": "NT=dHex(2)Hex(4)HexNAc(4)Pent(1);AC=1535;", "dHex(1)Hex(4)HexNAc(5)Sulf(1)": "NT=dHex(1)Hex(4)HexNAc(5)Sulf(1);AC=1536;", "dHex(1)Hex(7)HexNAc(3)": "NT=dHex(1)Hex(7)HexNAc(3);AC=1537;", "dHex(1)Hex(5)HexNAc(4)Pent(1)": "NT=dHex(1)Hex(5)HexNAc(4)Pent(1);AC=1538;", "dHex(1)Hex(5)HexA(1)HexNAc(3)Sulf(2)": "NT=dHex(1)Hex(5)HexA(1)HexNAc(3)Sulf(2);AC=1539;", "Hex(3)HexNAc(7)": "NT=Hex(3)HexNAc(7);AC=1540;", "dHex(2)Hex(5)HexNAc(4)": "NT=dHex(2)Hex(5)HexNAc(4);AC=1541;", "dHex(2)Hex(4)HexNAc(3)NeuAc(1)Sulf(1)": "NT=dHex(2)Hex(4)HexNAc(3)NeuAc(1)Sulf(1);AC=1542;", "dHex(1)Hex(5)HexNAc(4)Sulf(2)": "NT=dHex(1)Hex(5)HexNAc(4)Sulf(2);AC=1543;", "dHex(1)Hex(5)HexNAc(4)Me(2)Pent(1)": "NT=dHex(1)Hex(5)HexNAc(4)Me(2)Pent(1);AC=1544;", "Hex(5)HexNAc(4)NeuGc(1)": "NT=Hex(5)HexNAc(4)NeuGc(1);AC=1545;", "dHex(1)Hex(3)HexNAc(6)Sulf(1)": "NT=dHex(1)Hex(3)HexNAc(6)Sulf(1);AC=1546;", "dHex(1)Hex(6)HexNAc(4)": "NT=dHex(1)Hex(6)HexNAc(4);AC=1547;", "dHex(1)Hex(5)HexNAc(3)NeuAc(1)Sulf(1)": "NT=dHex(1)Hex(5)HexNAc(3)NeuAc(1)Sulf(1);AC=1548;", "Hex(7)HexNAc(4)": "NT=Hex(7)HexNAc(4);AC=1549;", "dHex(1)Hex(5)HexNAc(3)NeuGc(1)Sulf(1)": "NT=dHex(1)Hex(5)HexNAc(3)NeuGc(1)Sulf(1);AC=1550;", "Hex(4)HexNAc(5)NeuAc(1)": "NT=Hex(4)HexNAc(5)NeuAc(1);AC=1551;", "Hex(6)HexNAc(4)Me(3)Pent(1)": "NT=Hex(6)HexNAc(4)Me(3)Pent(1);AC=1552;", "dHex(1)Hex(7)HexNAc(3)Sulf(1)": "NT=dHex(1)Hex(7)HexNAc(3)Sulf(1);AC=1553;", "dHex(1)Hex(7)HexNAc(3)Phos(1)": "NT=dHex(1)Hex(7)HexNAc(3)Phos(1);AC=1554;", "dHex(1)Hex(5)HexNAc(5)": "NT=dHex(1)Hex(5)HexNAc(5);AC=1555;", "dHex(1)Hex(4)HexNAc(4)NeuAc(1)Sulf(1)": "NT=dHex(1)Hex(4)HexNAc(4)NeuAc(1)Sulf(1);AC=1556;", "dHex(3)Hex(4)HexNAc(4)Sulf(1)": "NT=dHex(3)Hex(4)HexNAc(4)Sulf(1);AC=1557;", "Hex(3)HexNAc(7)Sulf(1)": "NT=Hex(3)HexNAc(7)Sulf(1);AC=1558;", "Hex(6)HexNAc(5)": "NT=Hex(6)HexNAc(5);AC=1559;", "Hex(5)HexNAc(4)NeuAc(1)Sulf(1)": "NT=Hex(5)HexNAc(4)NeuAc(1)Sulf(1);AC=1560;", "Hex(3)HexNAc(6)NeuAc(1)": "NT=Hex(3)HexNAc(6)NeuAc(1);AC=1561;", "dHex(2)Hex(3)HexNAc(6)": "NT=dHex(2)Hex(3)HexNAc(6);AC=1562;", "Hex(1)HexNAc(1)NeuGc(1)": "NT=Hex(1)HexNAc(1)NeuGc(1);AC=1563;", "dHex(1)Hex(2)HexNAc(1)": "NT=dHex(1)Hex(2)HexNAc(1);AC=1564;", "HexNAc(3)Sulf(1)": "NT=HexNAc(3)Sulf(1);AC=1565;", "Hex(3)HexNAc(1)": "NT=Hex(3)HexNAc(1);AC=1566;", "Hex(1)HexNAc(1)Kdn(1)Sulf(1)": "NT=Hex(1)HexNAc(1)Kdn(1)Sulf(1);AC=1567;", "HexNAc(2)NeuAc(1)": "NT=HexNAc(2)NeuAc(1);AC=1568;", "HexNAc(1)Kdn(2)": "NT=HexNAc(1)Kdn(2);AC=1570;", "Hex(3)HexNAc(1)Me(1)": "NT=Hex(3)HexNAc(1)Me(1);AC=1571;", "Hex(2)HexA(1)Pent(1)Sulf(1)": "NT=Hex(2)HexA(1)Pent(1)Sulf(1);AC=1572;", "HexNAc(2)NeuGc(1)": "NT=HexNAc(2)NeuGc(1);AC=1573;", "Hex(4)Phos(1)": "NT=Hex(4)Phos(1);AC=1575;", "Hex(1)HexNAc(1)NeuAc(1)Sulf(1)": "NT=Hex(1)HexNAc(1)NeuAc(1)Sulf(1);AC=1577;", "Hex(1)HexA(1)HexNAc(2)": "NT=Hex(1)HexA(1)HexNAc(2);AC=1578;", "dHex(1)Hex(2)HexNAc(1)Sulf(1)": "NT=dHex(1)Hex(2)HexNAc(1)Sulf(1);AC=1579;", "dHex(1)HexNAc(3)": "NT=dHex(1)HexNAc(3);AC=1580;", "dHex(1)Hex(1)HexNAc(1)Kdn(1)": "NT=dHex(1)Hex(1)HexNAc(1)Kdn(1);AC=1581;", "Hex(1)HexNAc(3)": "NT=Hex(1)HexNAc(3);AC=1582;", "HexNAc(2)NeuAc(1)Sulf(1)": "NT=HexNAc(2)NeuAc(1)Sulf(1);AC=1583;", "dHex(2)Hex(3)": "NT=dHex(2)Hex(3);AC=1584;", "Hex(2)HexA(1)HexNAc(1)Sulf(1)": "NT=Hex(2)HexA(1)HexNAc(1)Sulf(1);AC=1585;", "dHex(2)Hex(2)HexA(1)": "NT=dHex(2)Hex(2)HexA(1);AC=1586;", "dHex(1)Hex(1)HexNAc(2)Sulf(1)": "NT=dHex(1)Hex(1)HexNAc(2)Sulf(1);AC=1587;", "dHex(1)Hex(1)HexNAc(1)NeuAc(1)": "NT=dHex(1)Hex(1)HexNAc(1)NeuAc(1);AC=1588;", "Hex(2)HexNAc(2)Sulf(1)": "NT=Hex(2)HexNAc(2)Sulf(1);AC=1589;", "Hex(5)": "NT=Hex(5);AC=1590;", "HexNAc(4)": "NT=HexNAc(4);AC=1591;", "HexNAc(1)NeuGc(2)": "NT=HexNAc(1)NeuGc(2);AC=1592;", "dHex(1)Hex(1)HexNAc(1)NeuGc(1)": "NT=dHex(1)Hex(1)HexNAc(1)NeuGc(1);AC=1593;", "dHex(2)Hex(2)HexNAc(1)": "NT=dHex(2)Hex(2)HexNAc(1);AC=1594;", "Hex(2)HexNAc(1)NeuGc(1)": "NT=Hex(2)HexNAc(1)NeuGc(1);AC=1595;", "dHex(1)Hex(3)HexNAc(1)": "NT=dHex(1)Hex(3)HexNAc(1);AC=1596;", "dHex(1)Hex(2)HexA(1)HexNAc(1)": "NT=dHex(1)Hex(2)HexA(1)HexNAc(1);AC=1597;", "Hex(1)HexNAc(3)Sulf(1)": "NT=Hex(1)HexNAc(3)Sulf(1);AC=1598;", "Hex(4)HexNAc(1)": "NT=Hex(4)HexNAc(1);AC=1599;", "Hex(1)HexNAc(2)NeuAc(1)": "NT=Hex(1)HexNAc(2)NeuAc(1);AC=1600;", "Hex(1)HexNAc(2)NeuGc(1)": "NT=Hex(1)HexNAc(2)NeuGc(1);AC=1602;", "Hex(5)Phos(1)": "NT=Hex(5)Phos(1);AC=1604;", "dHex(2)Hex(1)HexNAc(1)Kdn(1)": "NT=dHex(2)Hex(1)HexNAc(1)Kdn(1);AC=1606;", "dHex(1)Hex(3)HexNAc(1)Sulf(1)": "NT=dHex(1)Hex(3)HexNAc(1)Sulf(1);AC=1607;", "dHex(1)Hex(1)HexNAc(3)": "NT=dHex(1)Hex(1)HexNAc(3);AC=1608;", "dHex(1)Hex(2)HexA(1)HexNAc(1)Sulf(1)": "NT=dHex(1)Hex(2)HexA(1)HexNAc(1)Sulf(1);AC=1609;", "Hex(2)HexNAc(3)": "NT=Hex(2)HexNAc(3);AC=1610;", "Hex(1)HexNAc(2)NeuAc(1)Sulf(1)": "NT=Hex(1)HexNAc(2)NeuAc(1)Sulf(1);AC=1611;", "dHex(2)Hex(4)": "NT=dHex(2)Hex(4);AC=1612;", "dHex(2)HexNAc(2)Kdn(1)": "NT=dHex(2)HexNAc(2)Kdn(1);AC=1614;", "dHex(1)Hex(2)HexNAc(2)Sulf(1)": "NT=dHex(1)Hex(2)HexNAc(2)Sulf(1);AC=1615;", "dHex(1)HexNAc(4)": "NT=dHex(1)HexNAc(4);AC=1616;", "Hex(1)HexNAc(1)NeuAc(1)NeuGc(1)": "NT=Hex(1)HexNAc(1)NeuAc(1)NeuGc(1);AC=1617;", "dHex(1)Hex(1)HexNAc(2)Kdn(1)": "NT=dHex(1)Hex(1)HexNAc(2)Kdn(1);AC=1618;", "Hex(1)HexNAc(1)NeuGc(2)": "NT=Hex(1)HexNAc(1)NeuGc(2);AC=1619;", "Hex(1)HexNAc(1)NeuAc(2)Ac(1)": "NT=Hex(1)HexNAc(1)NeuAc(2)Ac(1);AC=1620;", "dHex(2)Hex(2)HexA(1)HexNAc(1)": "NT=dHex(2)Hex(2)HexA(1)HexNAc(1);AC=1621;", "dHex(1)Hex(1)HexNAc(3)Sulf(1)": "NT=dHex(1)Hex(1)HexNAc(3)Sulf(1);AC=1622;", "Hex(2)HexA(1)NeuAc(1)Pent(1)Sulf(1)": "NT=Hex(2)HexA(1)NeuAc(1)Pent(1)Sulf(1);AC=1623;", "dHex(1)Hex(1)HexNAc(2)NeuAc(1)": "NT=dHex(1)Hex(1)HexNAc(2)NeuAc(1);AC=1624;", "dHex(1)Hex(3)HexA(1)HexNAc(1)": "NT=dHex(1)Hex(3)HexA(1)HexNAc(1);AC=1625;", "Hex(2)HexNAc(3)Sulf(1)": "NT=Hex(2)HexNAc(3)Sulf(1);AC=1626;", "Hex(5)HexNAc(1)": "NT=Hex(5)HexNAc(1);AC=1627;", "HexNAc(5)": "NT=HexNAc(5);AC=1628;", "Hex(1)HexNAc(1)NeuAc(2)Ac(2)": "NT=Hex(1)HexNAc(1)NeuAc(2)Ac(2);AC=1630;", "Hex(2)HexNAc(2)NeuGc(1)": "NT=Hex(2)HexNAc(2)NeuGc(1);AC=1631;", "Hex(5)Phos(3)": "NT=Hex(5)Phos(3);AC=1632;", "Hex(6)Phos(1)": "NT=Hex(6)Phos(1);AC=1633;", "dHex(1)Hex(2)HexA(1)HexNAc(2)": "NT=dHex(1)Hex(2)HexA(1)HexNAc(2);AC=1634;", "dHex(2)Hex(3)HexNAc(1)Sulf(1)": "NT=dHex(2)Hex(3)HexNAc(1)Sulf(1);AC=1635;", "Hex(1)HexNAc(3)NeuAc(1)": "NT=Hex(1)HexNAc(3)NeuAc(1);AC=1636;", "dHex(2)Hex(1)HexNAc(3)": "NT=dHex(2)Hex(1)HexNAc(3);AC=1637;", "Hex(1)HexNAc(3)NeuGc(1)": "NT=Hex(1)HexNAc(3)NeuGc(1);AC=1638;", "dHex(1)Hex(1)HexNAc(2)NeuAc(1)Sulf(1)": "NT=dHex(1)Hex(1)HexNAc(2)NeuAc(1)Sulf(1);AC=1639;", "dHex(1)Hex(3)HexA(1)HexNAc(1)Sulf(1)": "NT=dHex(1)Hex(3)HexA(1)HexNAc(1)Sulf(1);AC=1640;", "dHex(1)Hex(1)HexA(1)HexNAc(3)": "NT=dHex(1)Hex(1)HexA(1)HexNAc(3);AC=1641;", "Hex(2)HexNAc(2)NeuAc(1)Sulf(1)": "NT=Hex(2)HexNAc(2)NeuAc(1)Sulf(1);AC=1642;", "dHex(2)Hex(2)HexNAc(2)Sulf(1)": "NT=dHex(2)Hex(2)HexNAc(2)Sulf(1);AC=1643;", "dHex(2)Hex(1)HexNAc(2)Kdn(1)": "NT=dHex(2)Hex(1)HexNAc(2)Kdn(1);AC=1644;", "dHex(1)Hex(1)HexNAc(4)": "NT=dHex(1)Hex(1)HexNAc(4);AC=1645;", "Hex(2)HexNAc(4)": "NT=Hex(2)HexNAc(4);AC=1646;", "Hex(2)HexNAc(1)NeuGc(2)": "NT=Hex(2)HexNAc(1)NeuGc(2);AC=1647;", "dHex(2)Hex(4)HexNAc(1)": "NT=dHex(2)Hex(4)HexNAc(1);AC=1648;", "Hex(1)HexNAc(2)NeuAc(2)": "NT=Hex(1)HexNAc(2)NeuAc(2);AC=1649;", "dHex(2)Hex(1)HexNAc(2)NeuAc(1)": "NT=dHex(2)Hex(1)HexNAc(2)NeuAc(1);AC=1650;", "dHex(1)Hex(2)HexNAc(3)Sulf(1)": "NT=dHex(1)Hex(2)HexNAc(3)Sulf(1);AC=1651;", "dHex(1)HexNAc(5)": "NT=dHex(1)HexNAc(5);AC=1652;", "dHex(2)Hex(1)HexNAc(2)NeuGc(1)": "NT=dHex(2)Hex(1)HexNAc(2)NeuGc(1);AC=1653;", "dHex(3)Hex(2)HexNAc(2)": "NT=dHex(3)Hex(2)HexNAc(2);AC=1654;", "Hex(3)HexNAc(3)Sulf(1)": "NT=Hex(3)HexNAc(3)Sulf(1);AC=1655;", "dHex(2)Hex(2)HexNAc(2)Sulf(2)": "NT=dHex(2)Hex(2)HexNAc(2)Sulf(2);AC=1656;", "dHex(1)Hex(2)HexNAc(2)NeuGc(1)": "NT=dHex(1)Hex(2)HexNAc(2)NeuGc(1);AC=1657;", "dHex(1)Hex(1)HexNAc(3)NeuAc(1)": "NT=dHex(1)Hex(1)HexNAc(3)NeuAc(1);AC=1658;", "Hex(6)Phos(3)": "NT=Hex(6)Phos(3);AC=1659;", "dHex(1)Hex(3)HexA(1)HexNAc(2)": "NT=dHex(1)Hex(3)HexA(1)HexNAc(2);AC=1660;", "dHex(1)Hex(1)HexNAc(3)NeuGc(1)": "NT=dHex(1)Hex(1)HexNAc(3)NeuGc(1);AC=1661;", "Hex(1)HexNAc(2)NeuAc(2)Sulf(1)": "NT=Hex(1)HexNAc(2)NeuAc(2)Sulf(1);AC=1662;", "dHex(2)Hex(3)HexA(1)HexNAc(1)Sulf(1)": "NT=dHex(2)Hex(3)HexA(1)HexNAc(1)Sulf(1);AC=1663;", "Hex(1)HexNAc(1)NeuAc(3)": "NT=Hex(1)HexNAc(1)NeuAc(3);AC=1664;", "Hex(2)HexNAc(3)NeuGc(1)": "NT=Hex(2)HexNAc(3)NeuGc(1);AC=1665;", "dHex(1)Hex(2)HexNAc(2)NeuAc(1)Sulf(1)": "NT=dHex(1)Hex(2)HexNAc(2)NeuAc(1)Sulf(1);AC=1666;", "dHex(3)Hex(1)HexNAc(2)Kdn(1)": "NT=dHex(3)Hex(1)HexNAc(2)Kdn(1);AC=1667;", "dHex(2)Hex(3)HexNAc(2)Sulf(1)": "NT=dHex(2)Hex(3)HexNAc(2)Sulf(1);AC=1668;", "dHex(2)Hex(2)HexNAc(2)Kdn(1)": "NT=dHex(2)Hex(2)HexNAc(2)Kdn(1);AC=1669;", "dHex(2)Hex(2)HexA(1)HexNAc(2)Sulf(1)": "NT=dHex(2)Hex(2)HexA(1)HexNAc(2)Sulf(1);AC=1670;", "dHex(1)Hex(2)HexNAc(4)": "NT=dHex(1)Hex(2)HexNAc(4);AC=1671;", "Hex(1)HexNAc(1)NeuGc(3)": "NT=Hex(1)HexNAc(1)NeuGc(3);AC=1672;", "dHex(1)Hex(1)HexNAc(3)NeuAc(1)Sulf(1)": "NT=dHex(1)Hex(1)HexNAc(3)NeuAc(1)Sulf(1);AC=1673;", "dHex(1)Hex(3)HexA(1)HexNAc(2)Sulf(1)": "NT=dHex(1)Hex(3)HexA(1)HexNAc(2)Sulf(1);AC=1674;", "dHex(1)Hex(1)HexNAc(2)NeuAc(2)": "NT=dHex(1)Hex(1)HexNAc(2)NeuAc(2);AC=1675;", "dHex(3)HexNAc(3)Kdn(1)": "NT=dHex(3)HexNAc(3)Kdn(1);AC=1676;", "Hex(2)HexNAc(3)NeuAc(1)Sulf(1)": "NT=Hex(2)HexNAc(3)NeuAc(1)Sulf(1);AC=1678;", "dHex(2)Hex(2)HexNAc(3)Sulf(1)": "NT=dHex(2)Hex(2)HexNAc(3)Sulf(1);AC=1679;", "dHex(2)HexNAc(5)": "NT=dHex(2)HexNAc(5);AC=1680;", "Hex(2)HexNAc(2)NeuAc(2)": "NT=Hex(2)HexNAc(2)NeuAc(2);AC=1681;", "dHex(2)Hex(2)HexNAc(2)NeuAc(1)": "NT=dHex(2)Hex(2)HexNAc(2)NeuAc(1);AC=1682;", "dHex(1)Hex(3)HexNAc(3)Sulf(1)": "NT=dHex(1)Hex(3)HexNAc(3)Sulf(1);AC=1683;", "dHex(2)Hex(2)HexNAc(2)NeuGc(1)": "NT=dHex(2)Hex(2)HexNAc(2)NeuGc(1);AC=1684;", "Hex(2)HexNAc(5)": "NT=Hex(2)HexNAc(5);AC=1685;", "dHex(1)Hex(3)HexNAc(2)NeuGc(1)": "NT=dHex(1)Hex(3)HexNAc(2)NeuGc(1);AC=1686;", "Hex(1)HexNAc(3)NeuAc(2)": "NT=Hex(1)HexNAc(3)NeuAc(2);AC=1687;", "dHex(1)Hex(2)HexNAc(3)NeuAc(1)": "NT=dHex(1)Hex(2)HexNAc(3)NeuAc(1);AC=1688;", "dHex(3)Hex(2)HexNAc(3)": "NT=dHex(3)Hex(2)HexNAc(3);AC=1689;", "Hex(7)Phos(3)": "NT=Hex(7)Phos(3);AC=1690;", "dHex(1)Hex(4)HexA(1)HexNAc(2)": "NT=dHex(1)Hex(4)HexA(1)HexNAc(2);AC=1691;", "Hex(3)HexNAc(3)NeuAc(1)": "NT=Hex(3)HexNAc(3)NeuAc(1);AC=1692;", "dHex(1)Hex(3)HexA(2)HexNAc(2)": "NT=dHex(1)Hex(3)HexA(2)HexNAc(2);AC=1693;", "Hex(2)HexNAc(2)NeuAc(2)Sulf(1)": "NT=Hex(2)HexNAc(2)NeuAc(2)Sulf(1);AC=1694;", "dHex(2)Hex(2)HexNAc(2)NeuAc(1)Sulf(1)": "NT=dHex(2)Hex(2)HexNAc(2)NeuAc(1)Sulf(1);AC=1695;", "Hex(3)HexNAc(3)NeuGc(1)": "NT=Hex(3)HexNAc(3)NeuGc(1);AC=1696;", "dHex(4)Hex(1)HexNAc(2)Kdn(1)": "NT=dHex(4)Hex(1)HexNAc(2)Kdn(1);AC=1697;", "dHex(3)Hex(2)HexNAc(2)Kdn(1)": "NT=dHex(3)Hex(2)HexNAc(2)Kdn(1);AC=1698;", "dHex(3)Hex(2)HexA(1)HexNAc(2)Sulf(1)": "NT=dHex(3)Hex(2)HexA(1)HexNAc(2)Sulf(1);AC=1699;", "Hex(2)HexNAc(4)NeuAc(1)": "NT=Hex(2)HexNAc(4)NeuAc(1);AC=1700;", "dHex(2)Hex(2)HexNAc(4)": "NT=dHex(2)Hex(2)HexNAc(4);AC=1701;", "dHex(2)Hex(3)HexA(1)HexNAc(2)Sulf(1)": "NT=dHex(2)Hex(3)HexA(1)HexNAc(2)Sulf(1);AC=1702;", "dHex(4)HexNAc(3)Kdn(1)": "NT=dHex(4)HexNAc(3)Kdn(1);AC=1703;", "Hex(2)HexNAc(1)NeuGc(3)": "NT=Hex(2)HexNAc(1)NeuGc(3);AC=1705;", "dHex(4)Hex(1)HexNAc(1)Kdn(2)": "NT=dHex(4)Hex(1)HexNAc(1)Kdn(2);AC=1706;", "dHex(1)Hex(2)HexNAc(3)NeuAc(1)Sulf(1)": "NT=dHex(1)Hex(2)HexNAc(3)NeuAc(1)Sulf(1);AC=1707;", "dHex(1)Hex(2)HexNAc(2)NeuAc(2)": "NT=dHex(1)Hex(2)HexNAc(2)NeuAc(2);AC=1708;", "dHex(3)Hex(1)HexNAc(3)Kdn(1)": "NT=dHex(3)Hex(1)HexNAc(3)Kdn(1);AC=1709;", "Hex(3)HexNAc(3)NeuAc(1)Sulf(1)": "NT=Hex(3)HexNAc(3)NeuAc(1)Sulf(1);AC=1711;", "Hex(3)HexNAc(2)NeuAc(2)": "NT=Hex(3)HexNAc(2)NeuAc(2);AC=1712;", "Hex(3)HexNAc(3)NeuGc(1)Sulf(1)": "NT=Hex(3)HexNAc(3)NeuGc(1)Sulf(1);AC=1713;", "dHex(1)Hex(2)HexNAc(2)NeuGc(2)": "NT=dHex(1)Hex(2)HexNAc(2)NeuGc(2);AC=1714;", "dHex(2)Hex(3)HexNAc(2)NeuGc(1)": "NT=dHex(2)Hex(3)HexNAc(2)NeuGc(1);AC=1715;", "dHex(1)Hex(3)HexA(1)HexNAc(3)Sulf(1)": "NT=dHex(1)Hex(3)HexA(1)HexNAc(3)Sulf(1);AC=1716;", "Hex(2)HexNAc(3)NeuAc(2)": "NT=Hex(2)HexNAc(3)NeuAc(2);AC=1717;", "dHex(2)Hex(2)HexNAc(3)NeuAc(1)": "NT=dHex(2)Hex(2)HexNAc(3)NeuAc(1);AC=1718;", "dHex(4)Hex(2)HexNAc(3)": "NT=dHex(4)Hex(2)HexNAc(3);AC=1719;", "Hex(2)HexNAc(3)NeuAc(1)NeuGc(1)": "NT=Hex(2)HexNAc(3)NeuAc(1)NeuGc(1);AC=1720;", "dHex(2)Hex(2)HexNAc(3)NeuGc(1)": "NT=dHex(2)Hex(2)HexNAc(3)NeuGc(1);AC=1721;", "dHex(3)Hex(3)HexNAc(3)": "NT=dHex(3)Hex(3)HexNAc(3);AC=1722;", "Hex(8)Phos(3)": "NT=Hex(8)Phos(3);AC=1723;", "dHex(1)Hex(2)HexNAc(2)NeuAc(2)Sulf(1)": "NT=dHex(1)Hex(2)HexNAc(2)NeuAc(2)Sulf(1);AC=1724;", "Hex(2)HexNAc(3)NeuGc(2)": "NT=Hex(2)HexNAc(3)NeuGc(2);AC=1725;", "dHex(4)Hex(2)HexNAc(2)Kdn(1)": "NT=dHex(4)Hex(2)HexNAc(2)Kdn(1);AC=1726;", "dHex(1)Hex(2)HexNAc(4)NeuAc(1)": "NT=dHex(1)Hex(2)HexNAc(4)NeuAc(1);AC=1727;", "dHex(3)Hex(2)HexNAc(4)": "NT=dHex(3)Hex(2)HexNAc(4);AC=1728;", "Hex(1)HexNAc(1)NeuGc(4)": "NT=Hex(1)HexNAc(1)NeuGc(4);AC=1729;", "dHex(4)Hex(1)HexNAc(3)Kdn(1)": "NT=dHex(4)Hex(1)HexNAc(3)Kdn(1);AC=1730;", "Hex(4)HexNAc(4)Sulf(2)": "NT=Hex(4)HexNAc(4)Sulf(2);AC=1732;", "dHex(3)Hex(2)HexNAc(3)Kdn(1)": "NT=dHex(3)Hex(2)HexNAc(3)Kdn(1);AC=1733;", "dHex(2)Hex(2)HexNAc(5)": "NT=dHex(2)Hex(2)HexNAc(5);AC=1735;", "dHex(2)Hex(3)HexA(1)HexNAc(3)Sulf(1)": "NT=dHex(2)Hex(3)HexA(1)HexNAc(3)Sulf(1);AC=1736;", "dHex(1)Hex(4)HexA(1)HexNAc(3)Sulf(1)": "NT=dHex(1)Hex(4)HexA(1)HexNAc(3)Sulf(1);AC=1737;", "Hex(3)HexNAc(3)NeuAc(2)": "NT=Hex(3)HexNAc(3)NeuAc(2);AC=1738;", "dHex(2)Hex(3)HexNAc(3)NeuAc(1)": "NT=dHex(2)Hex(3)HexNAc(3)NeuAc(1);AC=1739;", "dHex(4)Hex(3)HexNAc(3)": "NT=dHex(4)Hex(3)HexNAc(3);AC=1740;", "Hex(9)Phos(3)": "NT=Hex(9)Phos(3);AC=1742;", "dHex(2)HexNAc(7)": "NT=dHex(2)HexNAc(7);AC=1743;", "Hex(2)HexNAc(1)NeuGc(4)": "NT=Hex(2)HexNAc(1)NeuGc(4);AC=1744;", "Hex(3)HexNAc(3)NeuAc(2)Sulf(1)": "NT=Hex(3)HexNAc(3)NeuAc(2)Sulf(1);AC=1745;", "dHex(2)Hex(3)HexNAc(5)": "NT=dHex(2)Hex(3)HexNAc(5);AC=1746;", "dHex(1)Hex(2)HexNAc(2)NeuGc(3)": "NT=dHex(1)Hex(2)HexNAc(2)NeuGc(3);AC=1747;", "dHex(2)Hex(4)HexA(1)HexNAc(3)Sulf(1)": "NT=dHex(2)Hex(4)HexA(1)HexNAc(3)Sulf(1);AC=1748;", "Hex(2)HexNAc(3)NeuAc(3)": "NT=Hex(2)HexNAc(3)NeuAc(3);AC=1749;", "dHex(1)Hex(3)HexNAc(3)NeuAc(2)": "NT=dHex(1)Hex(3)HexNAc(3)NeuAc(2);AC=1750;", "dHex(3)Hex(3)HexNAc(3)NeuAc(1)": "NT=dHex(3)Hex(3)HexNAc(3)NeuAc(1);AC=1751;", "Hex(2)HexNAc(3)NeuGc(3)": "NT=Hex(2)HexNAc(3)NeuGc(3);AC=1752;", "Hex(10)Phos(3)": "NT=Hex(10)Phos(3);AC=1753;", "dHex(1)Hex(2)HexNAc(4)NeuAc(2)": "NT=dHex(1)Hex(2)HexNAc(4)NeuAc(2);AC=1754;", "Hex(1)HexNAc(1)NeuGc(5)": "NT=Hex(1)HexNAc(1)NeuGc(5);AC=1755;", "Hex(4)HexNAc(4)NeuAc(1)Sulf(2)": "NT=Hex(4)HexNAc(4)NeuAc(1)Sulf(2);AC=1756;", "Hex(4)HexNAc(4)NeuGc(1)Sulf(2)": "NT=Hex(4)HexNAc(4)NeuGc(1)Sulf(2);AC=1757;", "dHex(2)Hex(3)HexNAc(3)NeuAc(2)": "NT=dHex(2)Hex(3)HexNAc(3)NeuAc(2);AC=1758;", "Hex(4)HexNAc(4)NeuAc(1)Sulf(3)": "NT=Hex(4)HexNAc(4)NeuAc(1)Sulf(3);AC=1759;", "dHex(2)Hex(2)HexNAc(2)": "NT=dHex(2)Hex(2)HexNAc(2);AC=1760;", "dHex(1)Hex(3)HexNAc(2)": "NT=dHex(1)Hex(3)HexNAc(2);AC=1761;", "dHex(1)Hex(2)HexNAc(3)": "NT=dHex(1)Hex(2)HexNAc(3);AC=1762;", "Hex(3)HexNAc(3)": "NT=Hex(3)HexNAc(3);AC=1763;", "dHex(1)Hex(3)HexNAc(2)Sulf(1)": "NT=dHex(1)Hex(3)HexNAc(2)Sulf(1);AC=1764;", "dHex(2)Hex(3)HexNAc(2)": "NT=dHex(2)Hex(3)HexNAc(2);AC=1765;", "dHex(1)Hex(4)HexNAc(2)": "NT=dHex(1)Hex(4)HexNAc(2);AC=1766;", "dHex(2)Hex(2)HexNAc(3)": "NT=dHex(2)Hex(2)HexNAc(3);AC=1767;", "dHex(1)Hex(3)HexNAc(3)": "NT=dHex(1)Hex(3)HexNAc(3);AC=1768;", "Hex(4)HexNAc(3)": "NT=Hex(4)HexNAc(3);AC=1769;", "dHex(2)Hex(4)HexNAc(2)": "NT=dHex(2)Hex(4)HexNAc(2);AC=1770;", "dHex(2)Hex(3)HexNAc(3)": "NT=dHex(2)Hex(3)HexNAc(3);AC=1771;", "Hex(3)HexNAc(5)": "NT=Hex(3)HexNAc(5);AC=1772;", "Hex(4)HexNAc(3)NeuAc(1)": "NT=Hex(4)HexNAc(3)NeuAc(1);AC=1773;", "dHex(2)Hex(3)HexNAc(4)": "NT=dHex(2)Hex(3)HexNAc(4);AC=1774;", "dHex(1)Hex(3)HexNAc(5)": "NT=dHex(1)Hex(3)HexNAc(5);AC=1775;", "Hex(3)HexNAc(6)": "NT=Hex(3)HexNAc(6);AC=1776;", "Hex(4)HexNAc(4)NeuAc(1)": "NT=Hex(4)HexNAc(4)NeuAc(1);AC=1777;", "dHex(2)Hex(4)HexNAc(4)": "NT=dHex(2)Hex(4)HexNAc(4);AC=1778;", "Hex(6)HexNAc(4)": "NT=Hex(6)HexNAc(4);AC=1779;", "Hex(5)HexNAc(5)": "NT=Hex(5)HexNAc(5);AC=1780;", "dHex(1)Hex(3)HexNAc(6)": "NT=dHex(1)Hex(3)HexNAc(6);AC=1781;", "dHex(1)Hex(4)HexNAc(4)NeuAc(1)": "NT=dHex(1)Hex(4)HexNAc(4)NeuAc(1);AC=1782;", "dHex(3)Hex(4)HexNAc(4)": "NT=dHex(3)Hex(4)HexNAc(4);AC=1783;", "dHex(1)Hex(3)HexNAc(5)NeuAc(1)": "NT=dHex(1)Hex(3)HexNAc(5)NeuAc(1);AC=1784;", "dHex(2)Hex(4)HexNAc(5)": "NT=dHex(2)Hex(4)HexNAc(5);AC=1785;", "Hex(1)HexNAc(1)NeuAc(1)Ac(1)": "NT=Hex(1)HexNAc(1)NeuAc(1)Ac(1);AC=1786;", "Label:13C(2)15N(2)": "NT=Label:13C(2)15N(2);AC=1787;", "Xlink:DSS[155]": "NT=Xlink:DSS[155];AC=1789;", "NQIGG": "NT=NQIGG;AC=1799;", "Carboxyethylpyrrole": "NT=Carboxyethylpyrrole;AC=1800;", "Fluorescein-tyramine": "NT=Fluorescein-tyramine;AC=1801;", "GEE": "NT=GEE;AC=1824;", "RNPXL": "NT=RNPXL;AC=1825;", "Glu->pyro-Glu+Methyl": "NT=Glu->pyro-Glu+Methyl;AC=1826;", "Glu->pyro-Glu+Methyl:2H(2)13C(1)": "NT=Glu->pyro-Glu+Methyl:2H(2)13C(1);AC=1827;", "LRGG+methyl": "NT=LRGG+methyl;AC=1828;", "LRGG+dimethyl": "NT=LRGG+dimethyl;AC=1829;", "Biotin-tyramide": "NT=Biotin-tyramide;AC=1830;", "Tris": "NT=Tris;AC=1831;", "IASD": "NT=IASD;AC=1832;", "NP40": "NT=NP40;AC=1833;", "Tween20": "NT=Tween20;AC=1834;", "Tween80": "NT=Tween80;AC=1835;", "Triton": "NT=Triton;AC=1836;", "Brij35": "NT=Brij35;AC=1837;", "Brij58": "NT=Brij58;AC=1838;", "betaFNA": "NT=betaFNA;AC=1839;", "dHex(1)Hex(7)HexNAc(4)": "NT=dHex(1)Hex(7)HexNAc(4);AC=1840;", "Biotin:Thermo-21328": "NT=Biotin:Thermo-21328;AC=1841;", "Xlink:DSSO": "NT=Xlink:DSSO;AC=1842;", "PhosphoCytidine": "NT=PhosphoCytidine;AC=1843;", "Xlink:EGS": "NT=Xlink:EGS;AC=1844;", "AzidoF": "NT=AzidoF;AC=1845;", "Dimethylaminoethyl": "NT=Dimethylaminoethyl;AC=1846;", "Gluratylation": "NT=Gluratylation;AC=1848;", "hydroxyisobutyryl": "NT=hydroxyisobutyryl;AC=1849;", "MeMePhosphorothioate": "NT=MeMePhosphorothioate;AC=1868;", "Cation:Fe[III]": "NT=Cation:Fe[III];AC=1870;", "DTT": "NT=DTT;AC=1871;", "DYn-2": "NT=DYn-2;AC=1872;", "MesitylOxide": "NT=MesitylOxide;AC=1873;", "methylol": "NT=methylol;AC=1875;", "Xlink:DSS": "NT=Xlink:DSS;AC=1876;", "Xlink:DSS[259]": "NT=Xlink:DSS[259];AC=1877;", "Xlink:DSSO[176]": "NT=Xlink:DSSO[176];AC=1878;", "Xlink:DSSO[175]": "NT=Xlink:DSSO[175];AC=1879;", "Xlink:DSSO[279]": "NT=Xlink:DSSO[279];AC=1880;", "Xlink:DSSO[54]": "NT=Xlink:DSSO[54];AC=1881;", "Xlink:DSSO[86]": "NT=Xlink:DSSO[86];AC=1882;", "Xlink:DSSO[104]": "NT=Xlink:DSSO[104];AC=1883;", "Xlink:BuUrBu": "NT=Xlink:BuUrBu;AC=1884;", "Xlink:BuUrBu[111]": "NT=Xlink:BuUrBu[111];AC=1885;", "Xlink:BuUrBu[85]": "NT=Xlink:BuUrBu[85];AC=1886;", "Xlink:BuUrBu[213]": "NT=Xlink:BuUrBu[213];AC=1887;", "Xlink:BuUrBu[214]": "NT=Xlink:BuUrBu[214];AC=1888;", "Xlink:BuUrBu[317]": "NT=Xlink:BuUrBu[317];AC=1889;", "Xlink:DTBP": "NT=Xlink:DTBP;AC=1891;", "Xlink:DST": "NT=Xlink:DST;AC=1892;", "Xlink:DTSSP": "NT=Xlink:DTSSP;AC=1893;", "Xlink:SMCC": "NT=Xlink:SMCC;AC=1895;", "Xlink:DSSO[158]": "NT=Xlink:DSSO[158];AC=1896;", "Xlink:EGS[226]": "NT=Xlink:EGS[226];AC=1897;", "Xlink:DSS[138]": "NT=Xlink:DSS[138];AC=1898;", "Xlink:BuUrBu[196]": "NT=Xlink:BuUrBu[196];AC=1899;", "Xlink:DTBP[172]": "NT=Xlink:DTBP[172];AC=1900;", "Xlink:DST[114]": "NT=Xlink:DST[114];AC=1901;", "Xlink:DTSSP[174]": "NT=Xlink:DTSSP[174];AC=1902;", "Xlink:SMCC[219]": "NT=Xlink:SMCC[219];AC=1903;", "Xlink:BS2G[96]": "NT=Xlink:BS2G[96];AC=1905;", "Xlink:BS2G[113]": "NT=Xlink:BS2G[113];AC=1906;", "Xlink:BS2G[114]": "NT=Xlink:BS2G[114];AC=1907;", "Xlink:BS2G[217]": "NT=Xlink:BS2G[217];AC=1908;", "Xlink:BS2G": "NT=Xlink:BS2G;AC=1909;", "Cation:Al[III]": "NT=Cation:Al[III];AC=1910;", "Xlink:DMP[139]": "NT=Xlink:DMP[139];AC=1911;", "Xlink:DMP[122]": "NT=Xlink:DMP[122];AC=1912;", "glyoxalAGE": "NT=glyoxalAGE;AC=1913;", "Met->AspSA": "NT=Met->AspSA;AC=1914;", "Decarboxylation": "NT=Decarboxylation;AC=1915;", "Aspartylurea": "NT=Aspartylurea;AC=1916;", "Formylasparagine": "NT=Formylasparagine;AC=1917;", "Carbonyl": "NT=Carbonyl;AC=1918;", "AFB1_Dialdehyde": "NT=AFB1_Dialdehyde;AC=1920;", "Pro->HAVA": "NT=Pro->HAVA;AC=1922;", "Delta:H(-4)O(2)": "NT=Delta:H(-4)O(2);AC=1923;", "Delta:H(-4)O(3)": "NT=Delta:H(-4)O(3);AC=1924;", "Delta:O(4)": "NT=Delta:O(4);AC=1925;", "Delta:H(4)C(3)O(2)": "NT=Delta:H(4)C(3)O(2);AC=1926;", "Delta:H(4)C(5)O(1)": "NT=Delta:H(4)C(5)O(1);AC=1927;", "Delta:H(10)C(8)O(1)": "NT=Delta:H(10)C(8)O(1);AC=1928;", "Delta:H(6)C(7)O(4)": "NT=Delta:H(6)C(7)O(4);AC=1929;", "Pent(2)": "NT=Pent(2);AC=1930;", "Pent(1)HexNAc(1)": "NT=Pent(1)HexNAc(1);AC=1931;", "Hex(2)Sulf(1)": "NT=Hex(2)Sulf(1);AC=1932;", "Hex(1)Pent(2)Me(1)": "NT=Hex(1)Pent(2)Me(1);AC=1933;", "HexNAc(2)Sulf(1)": "NT=HexNAc(2)Sulf(1);AC=1934;", "Hex(1)Pent(3)Me(1)": "NT=Hex(1)Pent(3)Me(1);AC=1935;", "Hex(2)Pent(2)": "NT=Hex(2)Pent(2);AC=1936;", "Hex(2)Pent(2)Me(1)": "NT=Hex(2)Pent(2)Me(1);AC=1937;", "Hex(4)HexA(1)": "NT=Hex(4)HexA(1);AC=1938;", "Hex(2)HexNAc(1)Pent(1)HexA(1)": "NT=Hex(2)HexNAc(1)Pent(1)HexA(1);AC=1939;", "Hex(3)HexNAc(1)HexA(1)": "NT=Hex(3)HexNAc(1)HexA(1);AC=1940;", "Hex(1)HexNAc(2)dHex(2)Sulf(1)": "NT=Hex(1)HexNAc(2)dHex(2)Sulf(1);AC=1941;", "HexA(2)HexNAc(3)": "NT=HexA(2)HexNAc(3);AC=1942;", "dHex(1)Hex(4)HexA(1)": "NT=dHex(1)Hex(4)HexA(1);AC=1943;", "Hex(5)HexA(1)": "NT=Hex(5)HexA(1);AC=1944;", "Hex(4)HexA(1)HexNAc(1)": "NT=Hex(4)HexA(1)HexNAc(1);AC=1945;", "dHex(3)Hex(3)HexNAc(1)": "NT=dHex(3)Hex(3)HexNAc(1);AC=1946;", "Hex(6)HexNAc(1)": "NT=Hex(6)HexNAc(1);AC=1947;", "Hex(1)HexNAc(4)dHex(1)Sulf(1)": "NT=Hex(1)HexNAc(4)dHex(1)Sulf(1);AC=1948;", "dHex(1)Hex(2)HexNAc(1)NeuAc(2)": "NT=dHex(1)Hex(2)HexNAc(1)NeuAc(2);AC=1949;", "dHex(3)Hex(3)HexNAc(2)": "NT=dHex(3)Hex(3)HexNAc(2);AC=1950;", "dHex(2)Hex(1)HexNAc(4)Sulf(1)": "NT=dHex(2)Hex(1)HexNAc(4)Sulf(1);AC=1951;", "dHex(1)Hex(2)HexNAc(4)Sulf(2)": "NT=dHex(1)Hex(2)HexNAc(4)Sulf(2);AC=1952;", "Hex(9)": "NT=Hex(9);AC=1953;", "dHex(2)Hex(3)HexNAc(3)Sulf(1)": "NT=dHex(2)Hex(3)HexNAc(3)Sulf(1);AC=1954;", "dHex(2)Hex(5)HexNAc(2)Me(1)": "NT=dHex(2)Hex(5)HexNAc(2)Me(1);AC=1955;", "dHex(2)Hex(2)HexNAc(4)Sulf(2)": "NT=dHex(2)Hex(2)HexNAc(4)Sulf(2);AC=1956;", "Hex(9)HexNAc(1)": "NT=Hex(9)HexNAc(1);AC=1957;", "dHex(3)Hex(2)HexNAc(4)Sulf(2)": "NT=dHex(3)Hex(2)HexNAc(4)Sulf(2);AC=1958;", "Hex(4)HexNAc(4)NeuGc(1)": "NT=Hex(4)HexNAc(4)NeuGc(1);AC=1959;", "dHex(4)Hex(3)HexNAc(2)NeuAc(1)": "NT=dHex(4)Hex(3)HexNAc(2)NeuAc(1);AC=1960;", "Hex(3)HexNAc(5)NeuAc(1)": "NT=Hex(3)HexNAc(5)NeuAc(1);AC=1961;", "Hex(10)HexNAc(1)": "NT=Hex(10)HexNAc(1);AC=1962;", "dHex(1)Hex(8)HexNAc(2)": "NT=dHex(1)Hex(8)HexNAc(2);AC=1963;", "Hex(3)HexNAc(4)NeuAc(2)": "NT=Hex(3)HexNAc(4)NeuAc(2);AC=1964;", "dHex(2)Hex(3)HexNAc(4)NeuAc(1)": "NT=dHex(2)Hex(3)HexNAc(4)NeuAc(1);AC=1965;", "dHex(2)Hex(2)HexNAc(6)Sulf(1)": "NT=dHex(2)Hex(2)HexNAc(6)Sulf(1);AC=1966;", "Hex(5)HexNAc(4)NeuAc(1)Ac(1)": "NT=Hex(5)HexNAc(4)NeuAc(1)Ac(1);AC=1967;", "Hex(3)HexNAc(3)NeuAc(3)": "NT=Hex(3)HexNAc(3)NeuAc(3);AC=1968;", "Hex(5)HexNAc(4)NeuAc(1)Ac(2)": "NT=Hex(5)HexNAc(4)NeuAc(1)Ac(2);AC=1969;", "Unknown:162": "NT=Unknown:162;AC=1970;", "Unknown:177": "NT=Unknown:177;AC=1971;", "Unknown:210": "NT=Unknown:210;AC=1972;", "Unknown:216": "NT=Unknown:216;AC=1973;", "Unknown:234": "NT=Unknown:234;AC=1974;", "Unknown:248": "NT=Unknown:248;AC=1975;", "Unknown:250": "NT=Unknown:250;AC=1976;", "Unknown:302": "NT=Unknown:302;AC=1977;", "Unknown:306": "NT=Unknown:306;AC=1978;", "Unknown:420": "NT=Unknown:420;AC=1979;", "Diethylphosphothione": "NT=Diethylphosphothione;AC=1986;", "Dimethylphosphothione": "NT=Dimethylphosphothione;AC=1987;", "monomethylphosphothione": "NT=monomethylphosphothione;AC=1989;", "CIGG": "NT=CIGG;AC=1990;", "GNLLFLACYCIGG": "NT=GNLLFLACYCIGG;AC=1991;", "serotonylation": "NT=serotonylation;AC=1992;", "TMPP-Ac:13C(9)": "NT=TMPP-Ac:13C(9);AC=1993;", "Xlink:DST[56]": "NT=Xlink:DST[56];AC=1999;", "Xlink:SDA": "NT=Xlink:SDA;AC=2000;", "ZQG": "NT=ZQG;AC=2001;", "Haloxon": "NT=Haloxon;AC=2006;", "Methamidophos-S": "NT=Methamidophos-S;AC=2007;", "Methamidophos-O": "NT=Methamidophos-O;AC=2008;", "Nitrene": "NT=Nitrene;AC=2014;", "shTMT": "NT=shTMT;AC=2015;", "TMTpro": "NT=TMTpro;AC=2016;", "TMTpro_zero": "NT=TMTpro_zero;AC=2017;", "Xlink:EDC": "NT=Xlink:EDC;AC=2018;", "Xlink:Disulfide": "NT=Xlink:Disulfide;AC=2020;", "Ser/Thr-KDO": "NT=Ser/Thr-KDO;AC=2022;", "Andro-H2O": "NT=Andro-H2O;AC=2025;", "Xlink:KQisopeptide": "NT=Xlink:KQisopeptide;AC=2026;", "His+O(2)": "NT=His+O(2);AC=2027;", "Hex(6)HexNAc(5)NeuAc(3)": "NT=Hex(6)HexNAc(5)NeuAc(3);AC=2028;", "Hex(7)HexNAc(6)": "NT=Hex(7)HexNAc(6);AC=2029;", "Met+O(2)": "NT=Met+O(2);AC=2033;", "Gly+O(2)": "NT=Gly+O(2);AC=2034;", "Pro+O(2)": "NT=Pro+O(2);AC=2035;", "Lys+O(2)": "NT=Lys+O(2);AC=2036;", "Glu+O(2)": "NT=Glu+O(2);AC=2037;", "LTX+Lophotoxin": "NT=LTX+Lophotoxin;AC=2039;", "MBS+peptide": "NT=MBS+peptide;AC=2040;", "3-hydroxybenzyl-phosphate": "NT=3-hydroxybenzyl-phosphate;AC=2041;", "phenyl-phosphate": "NT=phenyl-phosphate;AC=2042;", "RBS-ID_Uridine": "NT=RBS-ID_Uridine;AC=2044;", "shTMTpro": "NT=shTMTpro;AC=2050;", "Biotin:Aha-DADPS": "NT=Biotin:Aha-DADPS;AC=2052;", "Biotin:Aha-PC": "NT=Biotin:Aha-PC;AC=2053;", "pRBS-ID_4-thiouridine": "NT=pRBS-ID_4-thiouridine;AC=2054;", "pRBS-ID_6-thioguanosine": "NT=pRBS-ID_6-thioguanosine;AC=2055;", "6C-CysPAT": "NT=6C-CysPAT;AC=2057;", "Xlink:DSPP[210]": "NT=Xlink:DSPP[210];AC=2058;", "Xlink:DSPP[228]": "NT=Xlink:DSPP[228];AC=2059;", "Xlink:DSPP[331]": "NT=Xlink:DSPP[331];AC=2060;", "Xlink:DSPP[226]": "NT=Xlink:DSPP[226];AC=2061;", "DBIA": "NT=DBIA;AC=2062;", "Mono_N\u03b3-propargyl-L-Gln_desthiobiotin": "NT=Mono_N\u03b3-propargyl-L-Gln_desthiobiotin;AC=2067;", "Di_L-Glu_N\u03b3-propargyl-L-Gln_desthiobiotin": "NT=Di_L-Glu_N\u03b3-propargyl-L-Gln_desthiobiotin;AC=2068;", "Di_L-Gln_N\u03b3-propargyl-L-Gln_desthiobiotin": "NT=Di_L-Gln_N\u03b3-propargyl-L-Gln_desthiobiotin;AC=2069;", "L-Gln": "NT=L-Gln;AC=2070;", "Glyceroyl": "NT=Glyceroyl;AC=2072;", "N6pAMP": "NT=N6pAMP;AC=2073;", "DabMal": "NT=DabMal;AC=2074;", "NBF": "NT=NBF;AC=2079;", "DCP": "NT=DCP;AC=2080;", "Ethynylation": "NT=Ethynylation;AC=2081;", "Acetylation": "NT=Acetyl;AC=1;", "Amidation": "NT=Amidated;AC=2;", "Biotinylation": "NT=Biotin;AC=3;", "Iodoacetamide derivative": "NT=Carbamidomethyl;AC=4;", "Carbamylation": "NT=Carbamyl;AC=5;", "Iodoacetic acid derivative": "NT=Carboxymethyl;AC=6;", "Deamidation": "NT=Deamidated;AC=7;", "Gygi ICAT(TM) d0": "NT=ICAT-G;AC=8;", "Gygi ICAT(TM) d8": "NT=ICAT-G:2H(8);AC=9;", "Homoserine": "NT=Met->Hse;AC=10;", "Homoserine lactone": "NT=Met->Hsl;AC=11;", "Applied Biosystems original ICAT(TM) d8": "NT=ICAT-D:2H(8);AC=12;", "Applied Biosystems original ICAT(TM) d0": "NT=ICAT-D;AC=13;", "N-isopropylcarboxamidomethyl": "NT=NIPCAM;AC=17;", "Biotinyl-iodoacetamidyl-3,6-dioxaoctanediamine": "NT=PEO-Iodoacetyl-LC-Biotin;AC=20;", "Phosphorylation": "NT=Phospho;AC=21;", "Dehydration": "NT=Dehydrated;AC=23;", "Acrylamide adduct": "NT=Propionamide;AC=24;", "pyridylacetyl": "NT=Pyridylacetyl;AC=25;", "S-carbamoylmethylcysteine cyclization (N-terminus)": "NT=Pyro-carbamidomethyl;AC=26;", "Pyro-glu from E": "NT=Glu->pyro-Glu;AC=27;", "Pyro-glu from Q": "NT=Gln->pyro-Glu;AC=28;", "N-Succinimidyl-2-morpholine acetate": "NT=SMA;AC=29;", "Sodium adduct": "NT=Cation:Na;AC=30;", "S-pyridylethylation": "NT=Pyridylethyl;AC=31;", "Methylation": "NT=Methyl;AC=34;", "Oxidation or Hydroxylation": "NT=Oxidation;AC=35;", "di-Methylation": "NT=Dimethyl;AC=36;", "tri-Methylation": "NT=Trimethyl;AC=37;", "Beta-methylthiolation": "NT=Methylthio;AC=39;", "O-Sulfonation": "NT=Sulfo;AC=40;", "Hexose": "NT=Hex;AC=41;", "N-Acetylhexosamine": "NT=HexNAc;AC=43;", "Farnesylation": "NT=Farnesyl;AC=44;", "Myristoylation": "NT=Myristoyl;AC=45;", "Pyridoxal phosphate": "NT=PyridoxalPhosphate;AC=46;", "Palmitoylation": "NT=Palmitoyl;AC=47;", "Geranyl-geranyl": "NT=GeranylGeranyl;AC=48;", "Flavin adenine dinucleotide": "NT=FAD;AC=50;", "N-acyl diglyceride cysteine": "NT=Tripalmitate;AC=51;", "Guanidination": "NT=Guanidinyl;AC=52;", "4-hydroxynonenal (HNE)": "NT=HNE;AC=53;", "hexuronic acid": "NT=Glucuronyl;AC=54;", "glutathione disulfide": "NT=Glutathione;AC=55;", "Acetate labeling reagent (N-term & K) (heavy form, +3amu)": "NT=Acetyl:2H(3);AC=56;", "Propionate labeling reagent light form (N-term & K)": "NT=Propionyl;AC=58;", "Propionate labeling reagent heavy form (+3amu), N-term & K": "NT=Propionyl:13C(3);AC=59;", "Quaternary amine labeling reagent light form (N-term & K)": "NT=GIST-Quat;AC=60;", "Quaternary amine labeling reagent heavy (+3amu) form, N-term & K": "NT=GIST-Quat:2H(3);AC=61;", "Quaternary amine labeling reagent heavy form (+6amu), N-term & K": "NT=GIST-Quat:2H(6);AC=62;", "Quaternary amine labeling reagent heavy form (+9amu), N-term & K": "NT=GIST-Quat:2H(9);AC=63;", "Succinic anhydride labeling reagent light form (N-term & K)": "NT=Succinyl;AC=64;", "Succinic anhydride labeling reagent, heavy form (+4amu, 4H2), N-term & K": "NT=Succinyl:2H(4);AC=65;", "Succinic anhydride labeling reagent, heavy form (+4amu, 4C13), N-term & K": "NT=Succinyl:13C(4);AC=66;", "Iminobiotinylation": "NT=Iminobiotin;AC=89;", "ESP-Tag light d0": "NT=ESP;AC=90;", "ESP-Tag heavy d10": "NT=ESP:2H(10);AC=91;", "IMID d0": "NT=IMID;AC=94;", "IMID d4": "NT=IMID:2H(4);AC=95;", "Acrylamide d3": "NT=Propionamide:2H(3);AC=97;", "Applied Biosystems cleavable ICAT(TM) light": "NT=ICAT-C;AC=105;", "Applied Biosystems cleavable ICAT(TM) heavy": "NT=ICAT-C:13C(9);AC=106;", "Addition of N-formyl met": "NT=FormylMet;AC=107;", "N-ethylmaleimide on cysteines": "NT=Nethylmaleimide;AC=108;", "Oxidized lysine biotinylated with biotin-LC-hydrazide, reduced": "NT=OxLysBiotinRed;AC=112;", "Oxidized lysine biotinylated with biotin-LC-hydrazide": "NT=OxLysBiotin;AC=113;", "Oxidized proline biotinylated with biotin-LC-hydrazide, reduced": "NT=OxProBiotinRed;AC=114;", "Oxidized Proline biotinylated with biotin-LC-hydrazide": "NT=OxProBiotin;AC=115;", "Oxidized arginine biotinylated with biotin-LC-hydrazide": "NT=OxArgBiotin;AC=116;", "Oxidized arginine biotinylated with biotin-LC-hydrazide, reduced": "NT=OxArgBiotinRed;AC=117;", "EDT-iodo-PEO-biotin": "NT=EDT-iodoacetyl-PEO-biotin;AC=118;", "Thio Ether Formation - BTP Adduct": "NT=IBTP;AC=119;", "ubiquitinylation residue": "NT=GG;AC=121;", "Formylation": "NT=Formyl;AC=122;", "N-iodoacetyl, p-chlorobenzyl-12C6-glucamine": "NT=ICAT-H;AC=123;", "N-iodoacetyl, p-chlorobenzyl-13C6-glucamine": "NT=ICAT-H:13C(6);AC=124;", "Cleaved and reduced DSP/DTSSP crosslinker": "NT=Xlink:DTSSP[88];AC=126;", "fluorination": "NT=Fluoro;AC=127;", "5-Iodoacetamidofluorescein (Molecular Probe, Eugene, OR)": "NT=Fluorescein;AC=128;", "Iodination": "NT=Iodo;AC=129;", "di-Iodination": "NT=Diiodo;AC=130;", "tri-Iodination": "NT=Triiodo;AC=131;", "(cis-delta 5)-tetradecaenoyl": "NT=Myristoleyl;AC=134;", "(cis,cis-delta 5, delta 8)-tetradecadienoyl": "NT=Myristoyl+Delta:H(-4);AC=135;", "labeling reagent light form (N-term & K)": "NT=Benzoyl;AC=136;", "M5/Man5": "NT=Hex(5)HexNAc(2);AC=137;", "5-dimethylaminonaphthalene-1-sulfonyl": "NT=Dansyl;AC=139;", "ISD a-series (C-Term)": "NT=a-type-ion;AC=140;", "amidination of lysines or N-terminal amines with methyl acetimidate": "NT=Amidine;AC=141;", "HexNAc1dHex1": "NT=HexNAc(1)dHex(1);AC=142;", "HexNAc2": "NT=HexNAc(2);AC=143;", "Hex3": "NT=Hex(3);AC=144;", "HexNAc1dHex2": "NT=HexNAc(1)dHex(2);AC=145;", "Hex1HexNAc1dHex1": "NT=Hex(1)HexNAc(1)dHex(1);AC=146;", "HexNAc2dHex1": "NT=HexNAc(2)dHex(1);AC=147;", "Hex1HexNAc2": "NT=Hex(1)HexNAc(2);AC=148;", "Hex1HexNAc1NeuAc1": "NT=Hex(1)HexNAc(1)NeuAc(1);AC=149;", "HexNAc2dHex2": "NT=HexNAc(2)dHex(2);AC=150;", "Hex1HexNAc2Pent1": "NT=Hex(1)HexNAc(2)Pent(1);AC=151;", "Hex1HexNAc2dHex1": "NT=Hex(1)HexNAc(2)dHex(1);AC=152;", "Hex2HexNAc2": "NT=Hex(2)HexNAc(2);AC=153;", "Hex3HexNAc1Pent1": "NT=Hex(3)HexNAc(1)Pent(1);AC=154;", "Hex1HexNAc2dHex1Pent1": "NT=Hex(1)HexNAc(2)dHex(1)Pent(1);AC=155;", "Hex1HexNAc2dHex2": "NT=Hex(1)HexNAc(2)dHex(2);AC=156;", "Hex2HexNAc2Pent1": "NT=Hex(2)HexNAc(2)Pent(1);AC=157;", "Hex2HexNAc2dHex1": "NT=Hex(2)HexNAc(2)dHex(1);AC=158;", "M3/Man3": "NT=Hex(3)HexNAc(2);AC=159;", "Hex HexNAc NeuAc(2) ---OR--- Hex HexNAc(3) HexA": "NT=Hex(1)HexNAc(1)NeuAc(2);AC=160;", "Hex(3) HexNAc(2) Phos": "NT=Hex(3)HexNAc(2)Phos(1);AC=161;", "Selenium replaces sulfur": "NT=Delta:S(-1)Se(1);AC=162;", "glycosylated asparagine 18O labeling": "NT=Delta:H(-1)N(-1)18O(1);AC=170;", "Shimadzu NBS-13C": "NT=NBS:13C(6);AC=171;", "Shimadzu NBS-12C": "NT=NBS;AC=172;", "Michael addition of BHT quinone methide to Cysteine and Lysine": "NT=BHT;AC=176;", "phosphorylation to amine thiol": "NT=DAET;AC=178;", "13C(9) Silac label": "NT=Label:13C(9);AC=184;", "C13 label (Phosphotyrosine)": "NT=Label:13C(9)+Phospho;AC=185;", "Hydroxyphenylglyoxal arginine": "NT=HPG;AC=186;", "bis(hydroxphenylglyoxal) arginine": "NT=2HPG;AC=187;", "13C(6) Silac label": "NT=Label:13C(6);AC=188;", "O18 label at both C-terminal oxygens": "NT=Label:18O(2);AC=193;", "6-aminoquinolyl-N-hydroxysuccinimidyl carbamate": "NT=AccQTag;AC=194;", "APTA-d0": "NT=QAT;AC=195;", "APTA d3": "NT=QAT:2H(3);AC=196;", "EAPTA d0": "NT=EQAT;AC=197;", "EAPTA d5": "NT=EQAT:2H(5);AC=198;", "DiMethyl-CHD2": "NT=Dimethyl:2H(4);AC=199;", "EDT": "NT=Ethanedithiol;AC=200;", "Acrolein addition +94": "NT=Delta:H(6)C(6)O(1);AC=205;", "Acrolein addition +56": "NT=Delta:H(4)C(3)O(1);AC=206;", "Acrolein addition +38": "NT=Delta:H(2)C(3);AC=207;", "Acrolein addition +76": "NT=Delta:H(4)C(6);AC=208;", "Acrolein addition +112": "NT=Delta:H(8)C(6)O(2);AC=209;", "N-ethyl iodoacetamide-d0": "NT=NEIAA;AC=211;", "N-ethyl iodoacetamide-d5": "NT=NEIAA:2H(5);AC=212;", "ADP Ribose addition": "NT=ADP-Ribosyl;AC=213;", "Representative mass and accurate mass for 116 & 117": "NT=iTRAQ4plex;AC=214;", "Light IDBEST tag for quantitation": "NT=IGBP;AC=243;", "Acetaldehyde +26": "NT=Delta:H(2)C(2);AC=254;", "Acetaldehyde +28": "NT=Delta:H(4)C(2);AC=255;", "Propionaldehyde +40": "NT=Delta:H(4)C(3);AC=256;", "O18 Labeling": "NT=Label:18O(1);AC=258;", "13C(6) 15N(2) Silac label": "NT=Label:13C(6)15N(2);AC=259;", "Thiophosphorylation": "NT=Thiophospho;AC=260;", "4-sulfophenyl isothiocyanate": "NT=SPITC;AC=261;", "Trideuteration": "NT=Label:2H(3);AC=262;", "phosphorylation to pyridyl thiol": "NT=PET;AC=264;", "13C(6) 15N(4) Silac label": "NT=Label:13C(6)15N(4);AC=267;", "13C(5) 15N(1) Silac label": "NT=Label:13C(5)15N(1);AC=268;", "13C(9) 15N(1) Silac label": "NT=Label:13C(9)15N(1);AC=269;", "nucleophilic addtion to cytopiloyne": "NT=Cytopiloyne;AC=270;", "nucleophilic addition to cytopiloyne+H2O": "NT=Cytopiloyne+water;AC=271;", "sulfonation of N-terminus": "NT=CAF;AC=272;", "nitrosylation": "NT=Nitrosyl;AC=275;", "Aminoethylbenzenesulfonylation": "NT=AEBS;AC=276;", "Ethanolation": "NT=Ethanolyl;AC=278;", "Ethylation": "NT=Ethyl;AC=280;", "Cysteine modified Coenzyme A": "NT=CoenzymeA;AC=281;", "Deuterium Methylation of Lysine": "NT=Methyl:2H(2);AC=284;", "Light Sulfanilic Acid (SA) C12": "NT=SulfanilicAcid;AC=285;", "Heavy Sulfanilic Acid (SA) C13": "NT=SulfanilicAcid:13C(6);AC=286;", "Tryptophan oxidation to oxolactone": "NT=Trp->Oxolactone;AC=288;", "Biotin polyethyleneoxide amine": "NT=Biotin-PEO-Amine;AC=289;", "Pierce EZ-Link Biotin-HPDP": "NT=Biotin-HPDP;AC=290;", "Mercury Mercaptan": "NT=Delta:Hg(1);AC=291;", "(Iodo)-uracil MP": "NT=IodoU-AMP;AC=292;", "3-(carbamidomethylthio)propanoyl": "NT=CAMthiopropanoyl;AC=293;", "biotinoyl-iodoacetyl-ethylenediamine": "NT=IED-Biotin;AC=294;", "Fucose": "NT=dHex;AC=295;", "deuterated methyl ester": "NT=Methyl:2H(3);AC=298;", "Carboxylation": "NT=Carboxy;AC=299;", "Monobromobimane derivative": "NT=Bromobimane;AC=301;", "Menadione quinone derivative": "NT=Menadione;AC=302;", "Cysteine mercaptoethanol": "NT=DeStreak;AC=303;", "FA2/G0F": "NT=dHex(1)Hex(3)HexNAc(4);AC=305;", "FA2G1/G1F": "NT=dHex(1)Hex(4)HexNAc(4);AC=307;", "FA2G2/G2F": "NT=dHex(1)Hex(5)HexNAc(4);AC=308;", "A2/G0": "NT=Hex(3)HexNAc(4);AC=309;", "A2G1/G1": "NT=Hex(4)HexNAc(4);AC=310;", "A2G2/G2": "NT=Hex(5)HexNAc(4);AC=311;", "Cysteinylation": "NT=Cysteinyl;AC=312;", "Loss of Lysine": "NT=Lys-loss;AC=313;", "2,5-dimethypyrrole": "NT=DimethylpyrroleAdduct;AC=316;", "MDA adduct +62": "NT=Delta:H(2)C(5);AC=318;", "MDA adduct +54": "NT=Delta:H(2)C(3)O(1);AC=319;", "Nethylmaleimidehydrolysis": "NT=Nethylmaleimide+water;AC=320;", "bis-((N-iodoacetyl)piperazinyl)sulfonerhodamine": "NT=Xlink:B10621;AC=323;", "Cleaved and reduced DTBP crosslinker": "NT=Xlink:DTBP[87];AC=324;", "10-ethoxyphosphinyl-N-(biotinamidopentyl)decanamide": "NT=FP-Biotin;AC=325;", "S-Ethylcystine from Serine": "NT=Delta:H(4)C(2)O(-1)S(1);AC=327;", "monomethylation": "NT=Methyl:2H(3)13C(1);AC=329;", "dimethylation": "NT=Dimethyl:2H(6)13C(2);AC=330;", "thiophosphate labeled with biotin-HPDP": "NT=Thiophos-S-S-biotin;AC=332;", "6-N-biotinylaminohexyl isopropyl phosphate": "NT=Can-FP-biotin;AC=333;", "reduced 4-Hydroxynonenal": "NT=HNE+Delta:H(2);AC=335;", "Michael addition with methylamine": "NT=Methylamine;AC=337;", "bromination": "NT=Bromo;AC=340;", "Tyrosine oxidation to 2-aminotyrosine": "NT=Amino;AC=342;", "oxidized Arginine biotinylated with biotin hydrazide": "NT=Argbiotinhydrazide;AC=343;", "Arginine oxidation to glutamic semialdehyde": "NT=Arg->GluSA;AC=344;", "cysteine oxidation to cysteic acid": "NT=Trioxidation;AC=345;", "His->Asn substitution": "NT=His->Asn;AC=348;", "His->Asp substitution": "NT=His->Asp;AC=349;", "tryptophan oxidation to hydroxykynurenin": "NT=Trp->Hydroxykynurenin;AC=350;", "tryptophan oxidation to kynurenin": "NT=Trp->Kynurenin;AC=351;", "Lysine oxidation to aminoadipic semialdehyde": "NT=Lys->Allysine;AC=352;", "oxidized Lysine biotinylated with biotin hydrazide": "NT=Lysbiotinhydrazide;AC=353;", "Oxidation to nitro": "NT=Nitro;AC=354;", "oxidized proline biotinylated with biotin hydrazide": "NT=probiotinhydrazide;AC=357;", "proline oxidation to pyroglutamic acid": "NT=Pro->pyro-Glu;AC=359;", "Proline oxidation to pyrrolidinone": "NT=Pro->Pyrrolidinone;AC=360;", "oxidized Threonine biotinylated with biotin hydrazide": "NT=Thrbiotinhydrazide;AC=361;", "O-Diisopropylphosphorylation": "NT=Diisopropylphosphate;AC=362;", "O-Isopropylphosphorylation": "NT=Isopropylphospho;AC=363;", "Bruker Daltonics SERVA-ICPL(TM) quantification chemistry, heavy form": "NT=ICPL:13C(6);AC=364;", "Bruker Daltonics SERVA-ICPL(TM) quantification chemistry, light form": "NT=ICPL;AC=365;", "Deamidation in presence of O18": "NT=Deamidated:18O(1);AC=366;", "Dehydroalanine (from Cysteine)": "NT=Cys->Dha;AC=368;", "Pyrrolidone from Proline": "NT=Pro->Pyrrolidone;AC=369;", "Michael addition of hydroxymethylvinyl ketone to cysteine": "NT=HMVK;AC=371;", "Ornithine from Arginine": "NT=Arg->Orn;AC=372;", "Half of a disulfide bridge": "NT=Dehydro;AC=374;", "hydroxyfarnesyl": "NT=Hydroxyfarnesyl;AC=376;", "diacylglycerol": "NT=Diacylglycerol;AC=377;", "carboxyethyl": "NT=Carboxyethyl;AC=378;", "hypusine": "NT=Hypusine;AC=379;", "retinal": "NT=Retinylidene;AC=380;", "alpha-amino adipic acid": "NT=Lys->AminoadipicAcid;AC=381;", "pyruvic acid from N-term cys": "NT=Cys->PyruvicAcid;AC=382;", "Loss of ammonia": "NT=Ammonia-loss;AC=385;", "phycocyanobilin": "NT=Phycocyanobilin;AC=387;", "phycoerythrobilin": "NT=Phycoerythrobilin;AC=388;", "phytochromobilin": "NT=Phytochromobilin;AC=389;", "heme": "NT=Heme;AC=390;", "molybdopterin": "NT=Molybdopterin;AC=391;", "quinone": "NT=Quinone;AC=392;", "glucosylgalactosyl hydroxylysine": "NT=Glucosylgalactosyl;AC=393;", "glycosylphosphatidylinositol": "NT=GPIanchor;AC=394;", "phosphoribosyl dephospho-coenzyme A": "NT=PhosphoribosyldephosphoCoA;AC=395;", "glycerylphosphorylethanolamine": "NT=GlycerylPE;AC=396;", "triiodo": "NT=Triiodothyronine;AC=397;", "tetraiodo": "NT=Thyroxine;AC=398;", "Dehydroalanine (from Tyrosine)": "NT=Tyr->Dha;AC=400;", "2-amino-3-oxo-butanoic_acid": "NT=Didehydro;AC=401;", "oxoalanine": "NT=Cys->Oxoalanine;AC=402;", "lactic acid from N-term Ser": "NT=Ser->LacticAcid;AC=403;", "AMP": "NT=Phosphoadenosine;AC=405;", "hydroxycinnamyl": "NT=Hydroxycinnamyl;AC=407;", "glycosyl-L-hydroxyproline": "NT=Glycosyl;AC=408;", "flavin mononucleotide": "NT=FMNH;AC=409;", "S-diphytanylglycerol diether": "NT=Archaeol;AC=410;", "phenyl isocyanate": "NT=Phenylisocyanate;AC=411;", "d5-phenyl isocyanate": "NT=Phenylisocyanate:2H(5);AC=412;", "phospho-guanosine": "NT=Phosphoguanosine;AC=413;", "hydroxymethyl": "NT=Hydroxymethyl;AC=414;", "L-selenocysteinyl molybdenum bis(molybdopterin guanine dinucleotide)": "NT=MolybdopterinGD+Delta:S(-1)Se(1);AC=415;", "dipyrrolylmethanemethyl": "NT=Dipyrrolylmethanemethyl;AC=416;", "uridine phosphodiester": "NT=PhosphoUridine;AC=417;", "glycerophospho": "NT=Glycerophospho;AC=419;", "thiocarboxylic acid": "NT=Carboxy->Thiocarboxy;AC=420;", "persulfide": "NT=Sulfide;AC=421;", "N-pyruvic acid 2-iminyl": "NT=PyruvicAcidIminyl;AC=422;", "selenyl": "NT=Delta:Se(1);AC=423;", "molybdenum bis(molybdopterin guanine dinucleotide)": "NT=MolybdopterinGD;AC=424;", "dihydroxy": "NT=Dioxidation;AC=425;", "octanoyl": "NT=Octanoyl;AC=426;", "N-acetylglucosamine-1-phosphoryl": "NT=PhosphoHexNAc;AC=428;", "phosphoglycosyl-D-mannose-1-phosphoryl": "NT=PhosphoHex;AC=429;", "palmitoleyl": "NT=Palmitoleyl;AC=431;", "cholesterol ester": "NT=Cholesterol;AC=432;", "3,4-didehydroretinylidene": "NT=Didehydroretinylidene;AC=433;", "cis-14-hydroxy-10,13-dioxo-7-heptadecenoic ester": "NT=CHDH;AC=434;", "4-methyl-delta-1-pyrroline-5-carboxyl": "NT=Methylpyrroline;AC=435;", "hydroxyheme": "NT=Hydroxyheme;AC=436;", "(3-aminopropyl)(L-aspartyl-1-amino)phosphoryl-5-adenosine": "NT=MicrocinC7;AC=437;", "cyano": "NT=Cyano;AC=438;", "hydrogenase diiron subcluster": "NT=Diironsubcluster;AC=439;", "amidino": "NT=Amidino;AC=440;", "O3-(riboflavin phosphoryl)": "NT=FMN;AC=442;", "S-(4a-FMN)": "NT=FMNC;AC=443;", "copper sulfido molybdopterin cytosine dinuncleotide": "NT=CuSMo;AC=444;", "5-hydroxy-N6,N6,N6-trimethyl": "NT=Hydroxytrimethyl;AC=445;", "reduction": "NT=Deoxy;AC=447;", "microcin E492 siderophore ester from serine": "NT=Microcin;AC=448;", "lipid": "NT=Decanoyl;AC=449;", "monoglutamyl": "NT=Glu;AC=450;", "diglutamyl": "NT=GluGlu;AC=451;", "triglutamyl": "NT=GluGluGlu;AC=452;", "tetraglutamyl": "NT=GluGluGluGlu;AC=453;", "Hexosamine": "NT=HexN;AC=454;", "Free monolink of DMP crosslinker": "NT=Xlink:DMP[154];AC=455;", "Dimethyl pimelimidate crosslink": "NT=Xlink:DMP;AC=456;", "naphthalene-2,3-dicarboxaldehyde": "NT=NDA;AC=457;", "4-sulfophenyl isothiocyanate (Heavy C13)": "NT=SPITC:13C(6);AC=464;", "aminoethylcysteine": "NT=AEC-MAEC;AC=472;", "4-trimethyllammoniumbutyryl-": "NT=TMAB;AC=476;", "d9-4-trimethyllammoniumbutyryl-": "NT=TMAB:2H(9);AC=477;", "fluorescein-5-thiosemicarbazide": "NT=FTC;AC=478;", "4,4,5,5-D4 Lysine": "NT=Label:2H(4);AC=481;", "Dehydropyrrolizidine alkaloid (dehydroretronecine) on cysteines": "NT=DHP;AC=488;", "Heptose": "NT=Hep;AC=490;", "Bisphenol A diglycidyl ether derivative": "NT=BADGE;AC=493;", "Cy3 CyDye DIGE Fluor saturation dye": "NT=CyDye-Cy3;AC=494;", "Cy5 CyDye DIGE Fluor saturation dye": "NT=CyDye-Cy5;AC=495;", "Michael addition of t-butyl hydroxylated BHT (BHTOH) to C, H or K": "NT=BHTOH;AC=498;", "Heavy IDBEST tag for quantitation": "NT=IGBP:13C(2);AC=499;", "Nmethylmaleimidehydrolysis": "NT=Nmethylmaleimide+water;AC=500;", "3-methyl-2-pyridyl isocyanate": "NT=PyMIC;AC=501;", "Levuglandinyl - lysine lactam adduct": "NT=LG-lactam-K;AC=503;", "Levuglandinyl - lysine hydroxylactam adduct": "NT=LG-Hlactam-K;AC=504;", "Levuglandinyl - arginine lactam adduct": "NT=LG-lactam-R;AC=505;", "Levuglandinyl - arginine hydroxylactam adduct": "NT=LG-Hlactam-R;AC=506;", "DiMethyl-C13HD2": "NT=Dimethyl:2H(4)13C(2);AC=510;", "Lactosylation": "NT=Hex(2);AC=512;", "[3-(2,5)-Dioxopyrrolidin-1-yloxycarbonyl)-propyl]dimethyloctylammonium": "NT=C8-QAT;AC=513;", "propyl-1,2-dideoxy-2\\'-methyl-alpha-D-glucopyranoso-[2,1-d]-Delta2\\'-thiazoline": "NT=PropylNAGthiazoline;AC=514;", "fluorescein-5-maleimide": "NT=FNEM;AC=515;", "Diethylation, analogous to Dimethylation": "NT=Diethyl;AC=518;", "4,4\\'-dianilino-1,1\\'-binaphthyl-5,5\\'-disulfonic acid": "NT=BisANS;AC=519;", "Piperidination": "NT=Piperidine;AC=520;", "Maleimide-Biotin": "NT=Maleimide-PEO2-Biotin;AC=522;", "Biot_LC_LC": "NT=Sulfo-NHS-LC-LC-Biotin;AC=523;", "Prompt loss of side chain from oxidised Met": "NT=Dethiomethyl;AC=526;", "Deamidation followed by a methylation": "NT=Methyl+Deamidated;AC=528;", "Dimethylation of proline residue": "NT=Delta:H(5)C(2);AC=529;", "Replacement of proton by potassium": "NT=Cation:K;AC=530;", "Replacement of proton by copper": "NT=Cation:Cu[I];AC=531;", "Accurate mass for 114": "NT=iTRAQ4plex114;AC=532;", "Accurate mass for 115": "NT=iTRAQ4plex115;AC=533;", "Ubiquitination": "NT=LRGG;AC=535;", "was 15dB-biotin": "NT=Biotin:Cayman-10141;AC=538;", "was PGA1-biotin": "NT=Biotin:Cayman-10013;AC=539;", "Ala->Ser substitution": "NT=Ala->Ser;AC=540;", "Ala->Thr substitution": "NT=Ala->Thr;AC=541;", "Ala->Asp substitution": "NT=Ala->Asp;AC=542;", "Ala->Pro substitution": "NT=Ala->Pro;AC=543;", "Ala->Gly substitution": "NT=Ala->Gly;AC=544;", "Ala->Glu substitution": "NT=Ala->Glu;AC=545;", "Ala->Val substitution": "NT=Ala->Val;AC=546;", "Cys->Phe substitution": "NT=Cys->Phe;AC=547;", "Cys->Ser substitution": "NT=Cys->Ser;AC=548;", "Cys->Trp substitution": "NT=Cys->Trp;AC=549;", "Cys->Tyr substitution": "NT=Cys->Tyr;AC=550;", "Cys->Arg substitution": "NT=Cys->Arg;AC=551;", "Cys->Gly substitution": "NT=Cys->Gly;AC=552;", "Asp->Ala substitution": "NT=Asp->Ala;AC=553;", "Asp->His substitution": "NT=Asp->His;AC=554;", "Asp->Asn substitution": "NT=Asp->Asn;AC=555;", "Asp->Gly substitution": "NT=Asp->Gly;AC=556;", "Asp->Tyr substitution": "NT=Asp->Tyr;AC=557;", "Asp->Glu substitution": "NT=Asp->Glu;AC=558;", "Asp->Val substitution": "NT=Asp->Val;AC=559;", "Glu->Ala substitution": "NT=Glu->Ala;AC=560;", "Glu->Gln substitution": "NT=Glu->Gln;AC=561;", "Glu->Asp substitution": "NT=Glu->Asp;AC=562;", "Glu->Lys substitution": "NT=Glu->Lys;AC=563;", "Glu->Gly substitution": "NT=Glu->Gly;AC=564;", "Glu->Val substitution": "NT=Glu->Val;AC=565;", "Phe->Ser substitution": "NT=Phe->Ser;AC=566;", "Phe->Cys substitution": "NT=Phe->Cys;AC=567;", "Phe->Leu/Ile substitution": "NT=Phe->Xle;AC=568;", "Phe->Tyr substitution": "NT=Phe->Tyr;AC=569;", "Phe->Val substitution": "NT=Phe->Val;AC=570;", "Gly->Ala substitution": "NT=Gly->Ala;AC=571;", "Gly->Ser substitution": "NT=Gly->Ser;AC=572;", "Gly->Trp substitution": "NT=Gly->Trp;AC=573;", "Gly->Glu substitution": "NT=Gly->Glu;AC=574;", "Gly->Val substitution": "NT=Gly->Val;AC=575;", "Gly->Asp substitution": "NT=Gly->Asp;AC=576;", "Gly->Cys substitution": "NT=Gly->Cys;AC=577;", "Gly->Arg substitution": "NT=Gly->Arg;AC=578;", "His->Pro substitution": "NT=His->Pro;AC=580;", "His->Tyr substitution": "NT=His->Tyr;AC=581;", "His->Gln substitution": "NT=His->Gln;AC=582;", "His->Arg substitution": "NT=His->Arg;AC=584;", "His->Leu/Ile substitution": "NT=His->Xle;AC=585;", "Leu/Ile->Thr substitution": "NT=Xle->Thr;AC=588;", "Leu/Ile->Asn substitution": "NT=Xle->Asn;AC=589;", "Leu/Ile->Lys substitution": "NT=Xle->Lys;AC=590;", "Lys->Thr substitution": "NT=Lys->Thr;AC=594;", "Lys->Asn substitution": "NT=Lys->Asn;AC=595;", "Lys->Glu substitution": "NT=Lys->Glu;AC=596;", "Lys->Gln substitution": "NT=Lys->Gln;AC=597;", "Lys->Met substitution": "NT=Lys->Met;AC=598;", "Lys->Arg substitution": "NT=Lys->Arg;AC=599;", "Lys->Leu/Ile substitution": "NT=Lys->Xle;AC=600;", "Leu/Ile->Ser substitution": "NT=Xle->Ser;AC=601;", "Leu/Ile->Phe substitution": "NT=Xle->Phe;AC=602;", "Leu/Ile->Trp substitution": "NT=Xle->Trp;AC=603;", "Leu/Ile->Pro substitution": "NT=Xle->Pro;AC=604;", "Leu/Ile->Val substitution": "NT=Xle->Val;AC=605;", "Leu/Ile->His substitution": "NT=Xle->His;AC=606;", "Leu/Ile->Gln substitution": "NT=Xle->Gln;AC=607;", "Leu/Ile->Met substitution": "NT=Xle->Met;AC=608;", "Leu/Ile->Arg substitution": "NT=Xle->Arg;AC=609;", "Met->Thr substitution": "NT=Met->Thr;AC=610;", "Met->Arg substitution": "NT=Met->Arg;AC=611;", "Met->Lys substitution": "NT=Met->Lys;AC=613;", "Met->Leu/Ile substitution": "NT=Met->Xle;AC=614;", "Met->Val substitution": "NT=Met->Val;AC=615;", "Asn->Ser substitution": "NT=Asn->Ser;AC=616;", "Asn->Thr substitution": "NT=Asn->Thr;AC=617;", "Asn->Lys substitution": "NT=Asn->Lys;AC=618;", "Asn->Tyr substitution": "NT=Asn->Tyr;AC=619;", "Asn->His substitution": "NT=Asn->His;AC=620;", "Asn->Asp substitution": "NT=Asn->Asp;AC=621;", "Asn->Leu/Ile substitution": "NT=Asn->Xle;AC=622;", "Pro->Ser substitution": "NT=Pro->Ser;AC=623;", "Pro->Ala substitution": "NT=Pro->Ala;AC=624;", "Pro->His substitution": "NT=Pro->His;AC=625;", "Pro->Gln substitution": "NT=Pro->Gln;AC=626;", "Pro->Thr substitution": "NT=Pro->Thr;AC=627;", "Pro->Arg substitution": "NT=Pro->Arg;AC=628;", "Pro->Leu/Ile substitution": "NT=Pro->Xle;AC=629;", "Gln->Pro substitution": "NT=Gln->Pro;AC=630;", "Gln->Lys substitution": "NT=Gln->Lys;AC=631;", "Gln->Glu substitution": "NT=Gln->Glu;AC=632;", "Gln->His substitution": "NT=Gln->His;AC=633;", "Gln->Arg substitution": "NT=Gln->Arg;AC=634;", "Gln->Leu/Ile substitution": "NT=Gln->Xle;AC=635;", "Arg->Ser substitution": "NT=Arg->Ser;AC=636;", "Arg->Trp substitution": "NT=Arg->Trp;AC=637;", "Arg->Thr substitution": "NT=Arg->Thr;AC=638;", "Arg->Pro substitution": "NT=Arg->Pro;AC=639;", "Arg->Lys substitution": "NT=Arg->Lys;AC=640;", "Arg->His substitution": "NT=Arg->His;AC=641;", "Arg->Gln substitution": "NT=Arg->Gln;AC=642;", "Arg->Met substitution": "NT=Arg->Met;AC=643;", "Arg->Cys substitution": "NT=Arg->Cys;AC=644;", "Arg->Leu/Ile substitution": "NT=Arg->Xle;AC=645;", "Arg->Gly substitution": "NT=Arg->Gly;AC=646;", "Ser->Phe substitution": "NT=Ser->Phe;AC=647;", "Ser->Ala substitution": "NT=Ser->Ala;AC=648;", "Ser->Trp substitution": "NT=Ser->Trp;AC=649;", "Ser->Thr substitution": "NT=Ser->Thr;AC=650;", "Ser->Asn substitution": "NT=Ser->Asn;AC=651;", "Ser->Pro substitution": "NT=Ser->Pro;AC=652;", "Ser->Tyr substitution": "NT=Ser->Tyr;AC=653;", "Ser->Cys substitution": "NT=Ser->Cys;AC=654;", "Ser->Arg substitution": "NT=Ser->Arg;AC=655;", "Ser->Leu/Ile substitution": "NT=Ser->Xle;AC=656;", "Ser->Gly substitution": "NT=Ser->Gly;AC=657;", "Thr->Ser substitution": "NT=Thr->Ser;AC=658;", "Thr->Ala substitution": "NT=Thr->Ala;AC=659;", "Thr->Asn substitution": "NT=Thr->Asn;AC=660;", "Thr->Lys substitution": "NT=Thr->Lys;AC=661;", "Thr->Pro substitution": "NT=Thr->Pro;AC=662;", "Thr->Met substitution": "NT=Thr->Met;AC=663;", "Thr->Leu/Ile substitution": "NT=Thr->Xle;AC=664;", "Thr->Arg substitution": "NT=Thr->Arg;AC=665;", "Val->Phe substitution": "NT=Val->Phe;AC=666;", "Val->Ala substitution": "NT=Val->Ala;AC=667;", "Val->Glu substitution": "NT=Val->Glu;AC=668;", "Val->Met substitution": "NT=Val->Met;AC=669;", "Val->Asp substitution": "NT=Val->Asp;AC=670;", "Val->Leu/Ile substitution": "NT=Val->Xle;AC=671;", "Val->Gly substitution": "NT=Val->Gly;AC=672;", "Trp->Ser substitution": "NT=Trp->Ser;AC=673;", "Trp->Cys substitution": "NT=Trp->Cys;AC=674;", "Trp->Arg substitution": "NT=Trp->Arg;AC=675;", "Trp->Gly substitution": "NT=Trp->Gly;AC=676;", "Trp->Leu/Ile substitution": "NT=Trp->Xle;AC=677;", "Tyr->Phe substitution": "NT=Tyr->Phe;AC=678;", "Tyr->Ser substitution": "NT=Tyr->Ser;AC=679;", "Tyr->Asn substitution": "NT=Tyr->Asn;AC=680;", "Tyr->His substitution": "NT=Tyr->His;AC=681;", "Tyr->Asp substitution": "NT=Tyr->Asp;AC=682;", "Tyr->Cys substitution": "NT=Tyr->Cys;AC=683;", "Mass Defect Tag on lysine e-amino": "NT=BDMAPP;AC=684;", "Nitroalkylation by Nitro Linoleic Acid": "NT=NA-LNO2;AC=685;", "Nitroalkylation by Nitro Oleic Acid": "NT=NA-OA-NO2;AC=686;", "Bruker Daltonics SERVA-ICPL(TM) quantification chemistry, medium form": "NT=ICPL:2H(4);AC=687;", "13C(6) 15N(1) Silac label": "NT=Label:13C(6)15N(1);AC=695;", "13C(6) 15N(2) (D)9 SILAC label": "NT=Label:2H(9)13C(6)15N(2);AC=696;", "Nicotinic Acid": "NT=NIC;AC=697;", "deuterated Nicotinic Acid": "NT=dNIC;AC=698;", "Dehydrated 4-hydroxynonenal": "NT=HNE-Delta:H(2)O;AC=720;", "4-Oxononenal (ONE)": "NT=4-ONE;AC=721;", "O-Dimethylphosphorylation": "NT=O-Dimethylphosphate;AC=723;", "O-Methylphosphorylation": "NT=O-Methylphosphate;AC=724;", "O-Diethylphosphorylation": "NT=Diethylphosphate;AC=725;", "O-Ethylphosphorylation": "NT=Ethylphosphate;AC=726;", "O-pinacolylmethylphosphonylation": "NT=O-pinacolylmethylphosphonate;AC=727;", "Methylphosphonylation": "NT=Methylphosphonate;AC=728;", "O-Isopropylmethylphosphonylation": "NT=O-Isopropylmethylphosphonate;AC=729;", "Representative mass and accurate mass for 113, 114, 116 & 117": "NT=iTRAQ8plex;AC=730;", "Accurate mass for 115, 118, 119 & 121": "NT=iTRAQ8plex:13C(6)15N(2);AC=731;", "Carboxyl modification with ethanolamine": "NT=Ethanolamine;AC=734;", "Beta elimination of modified S or T followed by Michael addition of DTT": "NT=BEMAD_ST;AC=735;", "Beta elimination of alkylated Cys followed by Michael addition of DTT": "NT=BEMAD_C;AC=736;", "Sixplex Tandem Mass Tag\u00ae": "NT=TMT6plex;AC=737;", "Duplex Tandem Mass Tag\u00ae": "NT=TMT2plex;AC=738;", "Native Tandem Mass Tag\u00ae": "NT=TMT;AC=739;", "ExacTag Thiol label mass for 2-4-7-10 plex": "NT=ExacTagThiol;AC=740;", "ExacTag Amine label mass for 2-4-7-10 plex": "NT=ExacTagAmine;AC=741;", "Dehydrated 4-Oxononenal Michael adduct": "NT=4-ONE+Delta:H(-2)O(-1);AC=743;", "Nitroso Sulfamethoxazole Sulphenamide thiol adduct": "NT=NO_SMX_SEMD;AC=744;", "Nitroso Sulfamethoxazole Sulfinamide thiol adduct": "NT=NO_SMX_SIMD;AC=746;", "Malonylation": "NT=Malonyl;AC=747;", "derivatization by N-term modification using 3-Sulfobenzoic succinimidyl ester": "NT=3sulfo;AC=748;", "trifluoroleucine replacement of leucine": "NT=trifluoro;AC=750;", "tri nitro benzene": "NT=TNBS;AC=751;", "Isotope Distribution Encoded Tag": "NT=IDEnT;AC=762;", "Beta elimination of modified S or T followed by Michael addition of labelled DTT": "NT=BEMAD_ST:2H(6);AC=763;", "Beta elimination of alkylated Cys followed by Michael addition of labelled DTT": "NT=BEMAD_C:2H(6);AC=764;", "Removal of initiator methionine from protein N-terminus": "NT=Met-loss;AC=765;", "Removal of initiator methionine from protein N-terminus, then acetylation of the new N-terminus": "NT=Met-loss+Acetyl;AC=766;", "Menadione hydroquinone derivative": "NT=Menadione-HQ;AC=767;", "Mono-methylated lysine labelled with Acetyl_heavy": "NT=Methyl+Acetyl:2H(3);AC=768;", "lapachenole photochemically added to cysteine": "NT=lapachenole;AC=771;", "13C(5) Silac label": "NT=Label:13C(5);AC=772;", "Alkylation by biotinylated form of phenacyl bromide": "NT=Biotin-phenacyl;AC=774;", "Iodoacetic acid derivative w/ 13C label": "NT=Carboxymethyl:13C(2);AC=775;", "D5 N-ethylmaleimide on cysteines": "NT=NEM:2H(5);AC=776;", "deuterium cysteamine modification to S or T": "NT=AEC-MAEC:2H(4);AC=792;", "Hex1HexNAc1": "NT=Hex(1)HexNAc(1);AC=793;", "13C6 labeled ubiquitinylation residue": "NT=Label:13C(6)+GG;AC=799;", "was PentylamineBiotin": "NT=Biotin:Thermo-21345;AC=800;", "Labeling transglutaminase substrate on glutamine side chain": "NT=Pentylamine;AC=801;", "was Biotin-PEO4-hydrazide": "NT=Biotin:Thermo-21360;AC=811;", "fluorescent dye that labels cysteines": "NT=Cy3b-maleimide;AC=821;", "Enzymatic glycine removal leaving an amidated C-terminus": "NT=Gly-loss+Amide;AC=822;", "Intact or monolink BMOE crosslinker": "NT=Xlink:BMOE;AC=824;", "Intact DFDNB crosslinker": "NT=Xlink:DFDNB;AC=825;", "tris(2,4,6-trimethoxyphenyl)phosphonium acetic acid N-hydroxysuccinimide ester derivative": "NT=TMPP-Ac;AC=827;", "Dihydroxy methylglyoxal adduct": "NT=Dihydroxyimidazolidine;AC=830;", "Acetyl 4,4,5,5-D4 Lysine": "NT=Label:2H(4)+Acetyl;AC=834;", "Acetyl 13C(6) Silac label": "NT=Label:13C(6)+Acetyl;AC=835;", "Acetyl_13C(6) 15N(2) Silac label": "NT=Label:13C(6)15N(2)+Acetyl;AC=836;", "Arginine replacement by Nitropyrimidyl ornithine": "NT=Arg->Npo;AC=837;", "Sumo mutant Smt3-WT tail following trypsin digestion": "NT=EQIGG;AC=846;", "Adduct of phenylglyoxal with Arg": "NT=Arg2PG;AC=848;", "S-guanylation": "NT=cGMP;AC=849;", "S-guanylation-2": "NT=cGMP+RMP-loss;AC=851;", "Ubiquitination 2H4 lysine": "NT=Label:2H(4)+GG;AC=853;", "Methylglyoxal-derived hydroimidazolone": "NT=MG-H1;AC=859;", "Glyoxal-derived hydroimiadazolone": "NT=G-H1;AC=860;", "NHS ester linked Green Fluorescent Bodipy Dye": "NT=ZGB;AC=861;", "SILAC": "NT=Label:13C(1)2H(3);AC=862;", "13C(6) 15N(2) Lysine glygly": "NT=Label:13C(6)15N(2)+GG;AC=864;", "Bruker Daltonics SERVA-ICPL(TM) quantification chemistry, +10 Da form": "NT=ICPL:13C(6)2H(4);AC=866;", "SUMOylation by SUMO-1": "NT=QEQTGG;AC=876;", "SUMOylation by SUMO-2/3": "NT=QQQTGG;AC=877;", "was ChromoBiotin": "NT=Biotin:Thermo-21325;AC=884;", "Oxidised methionine 13C(1)2H(3) SILAC label": "NT=Label:13C(1)2H(3)+Oxidation;AC=885;", "2-ammonio-6-[4-(hydroxymethyl)-3-oxidopyridinium-1-yl]- hexanoate": "NT=HydroxymethylOP;AC=886;", "covalent linkage of maleimidyl coumarin probe (Molecular Probes D-10253)": "NT=MDCC;AC=887;", "mTRAQ light": "NT=mTRAQ;AC=888;", "mTRAQ medium": "NT=mTRAQ:13C(3)15N(1);AC=889;", "Thiol-reactive dye for fluorescence labelling of proteins": "NT=DyLight-maleimide;AC=890;", "Carbamidomethylated DTT modification of cysteine": "NT=CarbamidomethylDTT;AC=893;", "Carboxymethylated DTT modification of cysteine": "NT=CarboxymethylDTT;AC=894;", "Biotin polyethyleneoxide (n=3) alkyne": "NT=Biotin-PEG-PRA;AC=895;", "Methionine replacement by azido homoalanine": "NT=Met->Aha;AC=896;", "SILAC 15N(4)": "NT=Label:15N(4);AC=897;", "pyrophosphorylation of Ser/Thr": "NT=pyrophospho;AC=898;", "methionine replacement by homopropargylglycine": "NT=Met->Hpg;AC=899;", "2,3,4,6-tetra-O-Acetyl-1-allyl-alpha-D-galactopyranoside modification of cysteine": "NT=4AcAllylGal;AC=901;", "Reaction with dimethylarsinous (AsIII) acid": "NT=DimethylArsino;AC=902;", "Lys->Cys substitution and carbamidomethylation": "NT=Lys->CamCys;AC=903;", "Phe->Cys substitution and carbamidomethylation": "NT=Phe->CamCys;AC=904;", "Leu->Met substitution and sulfoxidation": "NT=Leu->MetOx;AC=905;", "Lys->Met substitution and sulfoxidation": "NT=Lys->MetOx;AC=906;", "Gluconoylation": "NT=Galactosyl;AC=907;", "Monolink of SMCC terminated with 3-(dimethylamino)-1-propylamine": "NT=Xlink:SMCC[321];AC=908;", "2,4-diacetamido-2,4,6-trideoxyglucopyranose": "NT=Bacillosamine;AC=910;", "Cys modification by (1-oxyl-2,2,5,5-tetramethyl-3-pyrroline-3-methyl)methanesulfonate (MTSL)": "NT=MTSL;AC=911;", "4-hydroxy-2-nonenal and biotinamidohexanoic acid hydrazide, reduced": "NT=HNE-BAHAH;AC=912;", "Methylmalonylation on Serine": "NT=Methylmalonylation;AC=914;", "13C(4) 15N(2) Lysine glygly": "NT=Label:13C(4)15N(2)+GG;AC=923;", "ethyl amino": "NT=ethylamino;AC=926;", "2-OH-ethyl thio-Ser": "NT=MercaptoEthanol;AC=928;", "deamidation followed by esterification with ethanol": "NT=Ethyl+Deamidated;AC=931;", "SUMOylation by SUMO-2/3 (formic acid cleavage)": "NT=VFQQQTGG;AC=932;", "SUMOylation by SUMO-1 (formic acid cleavage)": "NT=VIEVYQEQTGG;AC=933;", "Photocleavable Biotin + GalNAz on O-GlcNAc": "NT=AMTzHexNAc2;AC=934;", "High molecular absorption maleimide label for proteins": "NT=Atto495Maleimide;AC=935;", "Chlorination of tyrosine residues": "NT=Chlorination;AC=936;", "Dichlorination": "NT=dichlorination;AC=937;", "Cysteine modifier": "NT=AROD;AC=938;", "carbamidomethylated Cys that undergoes beta-elimination and Michael addition of methylamine": "NT=Cys->methylaminoAla;AC=939;", "Carbamidomethylated Cys that undergoes beta-elimination and Michael addition of ethylamine": "NT=Cys->ethylaminoAla;AC=940;", "2,4-Dinitrobenzenesulfenyl": "NT=DNPS;AC=941;", "High molecular absorption label for proteins": "NT=SulfoGMBS;AC=942;", "Modified GMBS X linker": "NT=DimethylamineGMBS;AC=943;", "SILAC label": "NT=Label:15N(2)2H(9);AC=944;", "Levuglandinyl-lysine anhydrolactam adduct": "NT=LG-anhydrolactam;AC=946;", "Levuglandinyl-lysine pyrrole adduct": "NT=LG-pyrrole;AC=947;", "Levuglandinyl-lysine anhyropyrrole adduct": "NT=LG-anhyropyrrole;AC=948;", "Condensation product of 3-deoxyglucosone": "NT=3-deoxyglucosone;AC=949;", "Replacement of proton by lithium": "NT=Cation:Li;AC=950;", "Replacement of 2 protons by calcium": "NT=Cation:Ca[II];AC=951;", "Replacement of 2 protons by iron": "NT=Cation:Fe[II];AC=952;", "Replacement of 2 protons by nickel": "NT=Cation:Ni[II];AC=953;", "Replacement of 2 protons by zinc": "NT=Cation:Zn[II];AC=954;", "Replacement of proton by silver": "NT=Cation:Ag;AC=955;", "Replacement of 2 protons by magnesium": "NT=Cation:Mg[II];AC=956;", "S-(2-succinyl) cysteine": "NT=2-succinyl;AC=957;", "propargylamine": "NT=Propargylamine;AC=958;", "phospho-propargylamine": "NT=Phosphopropargyl;AC=959;", "SUMOylation by SUMO-1 after tryptic cleavage": "NT=SUMO2135;AC=960;", "SUMOylation by SUMO-2/3 after tryptic cleavage": "NT=SUMO3549;AC=961;", "membrane protein extraction": "NT=thioacylPA;AC=967;", "maleimide-3-saccharide": "NT=maleimide3;AC=971;", "maleimide-5-saccharide": "NT=maleimide5;AC=972;", "2,3-dihydro-2,2-dimethyl-7-benzofuranol N-methyl carbamate": "NT=Carbofuran;AC=977;", "Benzyl isothiocyanate": "NT=BITC;AC=978;", "Phenethyl isothiocyanate": "NT=PEITC;AC=979;", "Condensation product of glucosone": "NT=glucosone;AC=981;", "Native cysteine-reactive Tandem Mass Tag\u00ae": "NT=cysTMT;AC=984;", "cysteine-reactive Sixplex Tandem Mass Tag\u00ae": "NT=cysTMT6plex;AC=985;", "Dimethyl 13C(6) Silac label": "NT=Label:13C(6)+Dimethyl;AC=986;", "Dimethyl 13C(6)15N(2) Silac label": "NT=Label:13C(6)15N(2)+Dimethyl;AC=987;", "replacement of proton with ammonium ion": "NT=Ammonium;AC=989;", "ISD (z+2)-series": "NT=ISD_z+2_ion;AC=991;", "was Biotin-maleimide": "NT=Biotin:Sigma-B1267;AC=993;", "15N(1)": "NT=Label:15N(1);AC=994;", "15N(2)": "NT=Label:15N(2);AC=995;", "15N(3)": "NT=Label:15N(3);AC=996;", "aminotyrosine with sulfation": "NT=sulfo+amino;AC=997;", "Azidohomoalanine (AHA) bound to propargylglycine-NH2 (alkyne)": "NT=AHA-Alkyne;AC=1000;", "Azidohomoalanine (AHA) bound to DDDDK-propargylglycine-NH2 (alkyne)": "NT=AHA-Alkyne-KDDDD;AC=1001;", "(-)-epigallocatechin-3-gallate": "NT=EGCG1;AC=1002;", "(-)-dehydroepigallocatechin": "NT=EGCG2;AC=1003;", "Monomethylated Arg13C(6) 15N(4)": "NT=Label:13C(6)15N(4)+Methyl;AC=1004;", "Dimethylated Arg13C(6) 15N(4)": "NT=Label:13C(6)15N(4)+Dimethyl;AC=1005;", "2H(3) 13C(1) monomethylated Arg13C(6) 15N(4)": "NT=Label:13C(6)15N(4)+Methyl:2H(3)13C(1);AC=1006;", "2H(6) 13C(2) Dimethylated Arg13C(6) 15N(4)": "NT=Label:13C(6)15N(4)+Dimethyl:2H(6)13C(2);AC=1007;", "Sec Iodoacetamide derivative": "NT=Cys->CamSec;AC=1008;", "formaldehyde adduct": "NT=Thiazolidine;AC=1009;", "Addition of DEDGFLYMVYASQETFG": "NT=DEDGFLYMVYASQETFG;AC=1010;", "Nalpha-(3-maleimidylpropionyl)biocytin": "NT=Biotin:Invitrogen-M1602;AC=1012;", "glycidamide adduct": "NT=glycidamide;AC=1014;", "C-terminal homoserine lactone and two aminohexanoic acids": "NT=Ahx2+Hsl;AC=1015;", "DMPO spin-trap nitrone adduct": "NT=DMPO;AC=1017;", "Isotope-Coded Dimedone light form": "NT=ICDID;AC=1018;", "Isotope-Coded Dimedone heavy form": "NT=ICDID:2H(6);AC=1019;", "Water-quenched monolink of DSS/BS3 crosslinker": "NT=Xlink:DSS[156];AC=1020;", "Water quenched monolink of EGS cross-linker": "NT=Xlink:EGS[244];AC=1021;", "Water quenched monolink of DST crosslinker": "NT=Xlink:DST[132];AC=1022;", "Water quenched monolink of DSP/DTSSP crosslinker": "NT=Xlink:DTSSP[192];AC=1023;", "Water quenched monolink of SMCC": "NT=Xlink:SMCC[237];AC=1024;", "Water quenched monolink of DMP crosslinker": "NT=Xlink:DMP[140];AC=1027;", "Cleavage product of EGS protein crosslinks by hydroylamine treatment": "NT=Xlink:EGS[115];AC=1028;", "desthiobiotin modification of lysine": "NT=Biotin:Thermo-88310;AC=1031;", "Tyrosine caged with 2-nitrobenzyl (ONB)": "NT=2-nitrobenzyl;AC=1032;", "N-ethylmaleimide on selenocysteines": "NT=Cys->SecNEM;AC=1033;", "D5 N-ethylmaleimide on selenocysteines": "NT=Cys->SecNEM:2H(5);AC=1034;", "Thiadiazolydation of Cys": "NT=Thiadiazole;AC=1035;", "Modification of cystein by withaferin": "NT=Withaferin;AC=1036;", "desthiobiotin fluorophosphonate": "NT=Biotin:Thermo-88317;AC=1037;", "TAMRA fluorophosphonate modification of serine": "NT=TAMRA-FP;AC=1038;", "Maleimide-Biotin + Water": "NT=Biotin:Thermo-21901+H2O;AC=1039;", "Ala->Cys substitution": "NT=Ala->Cys;AC=1044;", "Ala->Phe substitution": "NT=Ala->Phe;AC=1045;", "Ala->His substitution": "NT=Ala->His;AC=1046;", "Ala->Leu/Ile substitution": "NT=Ala->Xle;AC=1047;", "Ala->Lys substitution": "NT=Ala->Lys;AC=1048;", "Ala->Met substitution": "NT=Ala->Met;AC=1049;", "Ala->Asn substitution": "NT=Ala->Asn;AC=1050;", "Ala->Gln substitution": "NT=Ala->Gln;AC=1051;", "Ala->Arg substitution": "NT=Ala->Arg;AC=1052;", "Ala->Trp substitution": "NT=Ala->Trp;AC=1053;", "Ala->Tyr substitution": "NT=Ala->Tyr;AC=1054;", "Cys->Ala substitution": "NT=Cys->Ala;AC=1055;", "Cys->Asp substitution": "NT=Cys->Asp;AC=1056;", "Cys->Glu substitution": "NT=Cys->Glu;AC=1057;", "Cys->His substitution": "NT=Cys->His;AC=1058;", "Cys->Leu/Ile substitution": "NT=Cys->Xle;AC=1059;", "Cys->Lys substitution": "NT=Cys->Lys;AC=1060;", "Cys->Met substitution": "NT=Cys->Met;AC=1061;", "Cys->Asn substitution": "NT=Cys->Asn;AC=1062;", "Cys->Pro substitution": "NT=Cys->Pro;AC=1063;", "Cys->Gln substitution": "NT=Cys->Gln;AC=1064;", "Cys->Thr substitution": "NT=Cys->Thr;AC=1065;", "Cys->Val substitution": "NT=Cys->Val;AC=1066;", "Asp->Cys substitution": "NT=Asp->Cys;AC=1067;", "Asp->Phe substitution": "NT=Asp->Phe;AC=1068;", "Asp->Leu/Ile substitution": "NT=Asp->Xle;AC=1069;", "Asp->Lys substitution": "NT=Asp->Lys;AC=1070;", "Asp->Met substitution": "NT=Asp->Met;AC=1071;", "Asp->Pro substitution": "NT=Asp->Pro;AC=1072;", "Asp->Gln substitution": "NT=Asp->Gln;AC=1073;", "Asp->Arg substitution": "NT=Asp->Arg;AC=1074;", "Asp->Ser substitution": "NT=Asp->Ser;AC=1075;", "Asp->Thr substitution": "NT=Asp->Thr;AC=1076;", "Asp->Trp substitution": "NT=Asp->Trp;AC=1077;", "Glu->Cys substitution": "NT=Glu->Cys;AC=1078;", "Glu->Phe substitution": "NT=Glu->Phe;AC=1079;", "Glu->His substitution": "NT=Glu->His;AC=1080;", "Glu->Leu/Ile substitution": "NT=Glu->Xle;AC=1081;", "Glu->Met substitution": "NT=Glu->Met;AC=1082;", "Glu->Asn substitution": "NT=Glu->Asn;AC=1083;", "Glu->Pro substitution": "NT=Glu->Pro;AC=1084;", "Glu->Arg substitution": "NT=Glu->Arg;AC=1085;", "Glu->Ser substitution": "NT=Glu->Ser;AC=1086;", "Glu->Thr substitution": "NT=Glu->Thr;AC=1087;", "Glu->Trp substitution": "NT=Glu->Trp;AC=1088;", "Glu->Tyr substitution": "NT=Glu->Tyr;AC=1089;", "Phe->Ala substitution": "NT=Phe->Ala;AC=1090;", "Phe->Asp substitution": "NT=Phe->Asp;AC=1091;", "Phe->Glu substitution": "NT=Phe->Glu;AC=1092;", "Phe->Gly substitution": "NT=Phe->Gly;AC=1093;", "Phe->His substitution": "NT=Phe->His;AC=1094;", "Phe->Lys substitution": "NT=Phe->Lys;AC=1095;", "Phe->Met substitution": "NT=Phe->Met;AC=1096;", "Phe->Asn substitution": "NT=Phe->Asn;AC=1097;", "Phe->Pro substitution": "NT=Phe->Pro;AC=1098;", "Phe->Gln substitution": "NT=Phe->Gln;AC=1099;", "Phe->Arg substitution": "NT=Phe->Arg;AC=1100;", "Phe->Thr substitution": "NT=Phe->Thr;AC=1101;", "Phe->Trp substitution": "NT=Phe->Trp;AC=1102;", "Gly->Phe substitution": "NT=Gly->Phe;AC=1103;", "Gly->His substitution": "NT=Gly->His;AC=1104;", "Gly->Leu/Ile substitution": "NT=Gly->Xle;AC=1105;", "Gly->Lys substitution": "NT=Gly->Lys;AC=1106;", "Gly->Met substitution": "NT=Gly->Met;AC=1107;", "Gly->Asn substitution": "NT=Gly->Asn;AC=1108;", "Gly->Pro substitution": "NT=Gly->Pro;AC=1109;", "Gly->Gln substitution": "NT=Gly->Gln;AC=1110;", "Gly->Thr substitution": "NT=Gly->Thr;AC=1111;", "Gly->Tyr substitution": "NT=Gly->Tyr;AC=1112;", "His->Ala substitution": "NT=His->Ala;AC=1113;", "His->Cys substitution": "NT=His->Cys;AC=1114;", "His->Glu substitution": "NT=His->Glu;AC=1115;", "His->Phe substitution": "NT=His->Phe;AC=1116;", "His->Gly substitution": "NT=His->Gly;AC=1117;", "His->Lys substitution": "NT=His->Lys;AC=1119;", "His->Met substitution": "NT=His->Met;AC=1120;", "His->Ser substitution": "NT=His->Ser;AC=1121;", "His->Thr substitution": "NT=His->Thr;AC=1122;", "His->Val substitution": "NT=His->Val;AC=1123;", "His->Trp substitution": "NT=His->Trp;AC=1124;", "Leu/Ile->Ala substitution": "NT=Xle->Ala;AC=1125;", "Leu/Ile->Cys substitution": "NT=Xle->Cys;AC=1126;", "Leu/Ile->Asp substitution": "NT=Xle->Asp;AC=1127;", "Leu/Ile->Glu substitution": "NT=Xle->Glu;AC=1128;", "Leu/Ile->Gly substitution": "NT=Xle->Gly;AC=1129;", "Leu/Ile->Tyr substitution": "NT=Xle->Tyr;AC=1130;", "Lys->Ala substitution": "NT=Lys->Ala;AC=1131;", "Lys->Cys substitution": "NT=Lys->Cys;AC=1132;", "Lys->Asp substitution": "NT=Lys->Asp;AC=1133;", "Lys->Phe substitution": "NT=Lys->Phe;AC=1134;", "Lys->Gly substitution": "NT=Lys->Gly;AC=1135;", "Lys->His substitution": "NT=Lys->His;AC=1136;", "Lys->Pro substitution": "NT=Lys->Pro;AC=1137;", "Lys->Ser substitution": "NT=Lys->Ser;AC=1138;", "Lys->Val substitution": "NT=Lys->Val;AC=1139;", "Lys->Trp substitution": "NT=Lys->Trp;AC=1140;", "Lys->Tyr substitution": "NT=Lys->Tyr;AC=1141;", "Met->Ala substitution": "NT=Met->Ala;AC=1142;", "Met->Cys substitution": "NT=Met->Cys;AC=1143;", "Met->Asp substitution": "NT=Met->Asp;AC=1144;", "Met->Glu substitution": "NT=Met->Glu;AC=1145;", "Met->Phe substitution": "NT=Met->Phe;AC=1146;", "Met->Gly substitution": "NT=Met->Gly;AC=1147;", "Met->His substitution": "NT=Met->His;AC=1148;", "Met->Asn substitution": "NT=Met->Asn;AC=1149;", "Met->Pro substitution": "NT=Met->Pro;AC=1150;", "Met->Gln substitution": "NT=Met->Gln;AC=1151;", "Met->Ser substitution": "NT=Met->Ser;AC=1152;", "Met->Trp substitution": "NT=Met->Trp;AC=1153;", "Met->Tyr substitution": "NT=Met->Tyr;AC=1154;", "Asn->Ala substitution": "NT=Asn->Ala;AC=1155;", "Asn->Cys substitution": "NT=Asn->Cys;AC=1156;", "Asn->Glu substitution": "NT=Asn->Glu;AC=1157;", "Asn->Phe substitution": "NT=Asn->Phe;AC=1158;", "Asn->Gly substitution": "NT=Asn->Gly;AC=1159;", "Asn->Met substitution": "NT=Asn->Met;AC=1160;", "Asn->Pro substitution": "NT=Asn->Pro;AC=1161;", "Asn->Gln substitution": "NT=Asn->Gln;AC=1162;", "Asn->Arg substitution": "NT=Asn->Arg;AC=1163;", "Asn->Val substitution": "NT=Asn->Val;AC=1164;", "Asn->Trp substitution": "NT=Asn->Trp;AC=1165;", "Pro->Cys substitution": "NT=Pro->Cys;AC=1166;", "Pro->Asp substitution": "NT=Pro->Asp;AC=1167;", "Pro->Glu substitution": "NT=Pro->Glu;AC=1168;", "Pro->Phe substitution": "NT=Pro->Phe;AC=1169;", "Pro->Gly substitution": "NT=Pro->Gly;AC=1170;", "Pro->Lys substitution": "NT=Pro->Lys;AC=1171;", "Pro->Met substitution": "NT=Pro->Met;AC=1172;", "Pro->Asn substitution": "NT=Pro->Asn;AC=1173;", "Pro->Val substitution": "NT=Pro->Val;AC=1174;", "Pro->Trp substitution": "NT=Pro->Trp;AC=1175;", "Pro->Tyr substitution": "NT=Pro->Tyr;AC=1176;", "Gln->Ala substitution": "NT=Gln->Ala;AC=1177;", "Gln->Cys substitution": "NT=Gln->Cys;AC=1178;", "Gln->Asp substitution": "NT=Gln->Asp;AC=1179;", "Gln->Phe substitution": "NT=Gln->Phe;AC=1180;", "Gln->Gly substitution": "NT=Gln->Gly;AC=1181;", "Gln->Met substitution": "NT=Gln->Met;AC=1182;", "Gln->Asn substitution": "NT=Gln->Asn;AC=1183;", "Gln->Ser substitution": "NT=Gln->Ser;AC=1184;", "Gln->Thr substitution": "NT=Gln->Thr;AC=1185;", "Gln->Val substitution": "NT=Gln->Val;AC=1186;", "Gln->Trp substitution": "NT=Gln->Trp;AC=1187;", "Gln->Tyr substitution": "NT=Gln->Tyr;AC=1188;", "Arg->Ala substitution": "NT=Arg->Ala;AC=1189;", "Arg->Asp substitution": "NT=Arg->Asp;AC=1190;", "Arg->Glu substitution": "NT=Arg->Glu;AC=1191;", "Arg->Asn substitution": "NT=Arg->Asn;AC=1192;", "Arg->Val substitution": "NT=Arg->Val;AC=1193;", "Arg->Tyr substitution": "NT=Arg->Tyr;AC=1194;", "Arg->Phe substitution": "NT=Arg->Phe;AC=1195;", "Ser->Asp substitution": "NT=Ser->Asp;AC=1196;", "Ser->Glu substitution": "NT=Ser->Glu;AC=1197;", "Ser->His substitution": "NT=Ser->His;AC=1198;", "Ser->Lys substitution": "NT=Ser->Lys;AC=1199;", "Ser->Met substitution": "NT=Ser->Met;AC=1200;", "Ser->Gln substitution": "NT=Ser->Gln;AC=1201;", "Ser->Val substitution": "NT=Ser->Val;AC=1202;", "Thr->Cys substitution": "NT=Thr->Cys;AC=1203;", "Thr->Asp substitution": "NT=Thr->Asp;AC=1204;", "Thr->Glu substitution": "NT=Thr->Glu;AC=1205;", "Thr->Phe substitution": "NT=Thr->Phe;AC=1206;", "Thr->Gly substitution": "NT=Thr->Gly;AC=1207;", "Thr->His substitution": "NT=Thr->His;AC=1208;", "Thr->Gln substitution": "NT=Thr->Gln;AC=1209;", "Thr->Val substitution": "NT=Thr->Val;AC=1210;", "Thr->Trp substitution": "NT=Thr->Trp;AC=1211;", "Thr->Tyr substitution": "NT=Thr->Tyr;AC=1212;", "Val->Cys substitution": "NT=Val->Cys;AC=1213;", "Val->His substitution": "NT=Val->His;AC=1214;", "Val->Lys substitution": "NT=Val->Lys;AC=1215;", "Val->Asn substitution": "NT=Val->Asn;AC=1216;", "Val->Pro substitution": "NT=Val->Pro;AC=1217;", "Val->Gln substitution": "NT=Val->Gln;AC=1218;", "Val->Arg substitution": "NT=Val->Arg;AC=1219;", "Val->Ser substitution": "NT=Val->Ser;AC=1220;", "Val->Thr substitution": "NT=Val->Thr;AC=1221;", "Val->Trp substitution": "NT=Val->Trp;AC=1222;", "Val->Tyr substitution": "NT=Val->Tyr;AC=1223;", "Trp->Ala substitution": "NT=Trp->Ala;AC=1224;", "Trp->Asp substitution": "NT=Trp->Asp;AC=1225;", "Trp->Glu substitution": "NT=Trp->Glu;AC=1226;", "Trp->Phe substitution": "NT=Trp->Phe;AC=1227;", "Trp->His substitution": "NT=Trp->His;AC=1228;", "Trp->Lys substitution": "NT=Trp->Lys;AC=1229;", "Trp->Met substitution": "NT=Trp->Met;AC=1230;", "Trp->Asn substitution": "NT=Trp->Asn;AC=1231;", "Trp->Pro substitution": "NT=Trp->Pro;AC=1232;", "Trp->Gln substitution": "NT=Trp->Gln;AC=1233;", "Trp->Thr substitution": "NT=Trp->Thr;AC=1234;", "Trp->Val substitution": "NT=Trp->Val;AC=1235;", "Trp->Tyr substitution": "NT=Trp->Tyr;AC=1236;", "Tyr->Ala substitution": "NT=Tyr->Ala;AC=1237;", "Tyr->Glu substitution": "NT=Tyr->Glu;AC=1238;", "Tyr->Gly substitution": "NT=Tyr->Gly;AC=1239;", "Tyr->Lys substitution": "NT=Tyr->Lys;AC=1240;", "Tyr->Met substitution": "NT=Tyr->Met;AC=1241;", "Tyr->Pro substitution": "NT=Tyr->Pro;AC=1242;", "Tyr->Gln substitution": "NT=Tyr->Gln;AC=1243;", "Tyr->Arg substitution": "NT=Tyr->Arg;AC=1244;", "Tyr->Thr substitution": "NT=Tyr->Thr;AC=1245;", "Tyr->Val substitution": "NT=Tyr->Val;AC=1246;", "Tyr->Trp substitution": "NT=Tyr->Trp;AC=1247;", "Tyr->Leu/Ile substitution": "NT=Tyr->Xle;AC=1248;", "Azidohomoalanine coupled to reductively cleaved tag": "NT=AHA-SS;AC=1249;", "carbamidomethylated form of reductively cleaved tag coupled to azidohomoalanine": "NT=AHA-SS_CAM;AC=1250;", "Sulfo-SBED Label Photoreactive Biotin Crosslinker": "NT=Biotin:Thermo-33033;AC=1251;", "Sulfo-SBED Label Photoreactive Biotin Crosslinker minus Hydrogen": "NT=Biotin:Thermo-33033-H;AC=1252;", "S-(2-monomethylsuccinyl) cysteine": "NT=2-monomethylsuccinyl;AC=1253;", "o-toluene": "NT=Saligenin;AC=1254;", "o-toluyl-phosphorylation": "NT=Cresylphosphate;AC=1255;", "Cresyl-Saligenin-phosphorylation": "NT=CresylSaligeninPhosphate;AC=1256;", "Ub Bromide probe addition": "NT=Ub-Br2;AC=1257;", "Ubiquitin vinylmethylester": "NT=Ub-VME;AC=1258;", "Ub Fluorescein probe addition": "NT=Ub-fluorescein;AC=1261;", "S-(2-dimethylsuccinyl) cysteine": "NT=2-dimethylsuccinyl;AC=1262;", "Addition of Glycine": "NT=Gly;AC=1263;", "addition of GGE": "NT=pupylation;AC=1264;", "13C4 Methionine label": "NT=Label:13C(4);AC=1266;", "Oxidised 13C4 labelled Methionine": "NT=Label:13C(4)+Oxidation;AC=1267;", "N-Homocysteine thiolactone": "NT=HCysThiolactone;AC=1270;", "S-homocysteinylation": "NT=HCysteinyl;AC=1271;", "Side reaction of HisTag": "NT=UgiJoullie;AC=1276;", "Cys modified with dipy ligand": "NT=Dipyridyl;AC=1277;", "Chemical modification of the iodinated sites of thyroglobulin by Suzuki reaction": "NT=Furan;AC=1278;", "Chemical modification of the diiodinated sites of thyroglobulin by Suzuki reaction": "NT=Difuran;AC=1279;", "1-methyl-3-benzoyl-4-hydroxy-4-phenylpiperidine": "NT=BMP-piperidinol;AC=1281;", "Side reaction of PG with Side chain of aspartic or glutamic acid": "NT=UgiJoullieProGly;AC=1282;", "Side reaction of PGPG with Side chain of aspartic or glutamic acid": "NT=UgiJoullieProGlyProGly;AC=1283;", "Glycosylation with IME linked Hex(2) NeuAc": "NT=IMEHex(2)NeuAc(1);AC=1286;", "Loss of arginine due to transpeptidation": "NT=Arg-loss;AC=1287;", "Addition of arginine due to transpeptidation": "NT=Arg;AC=1288;", "Double Carbamidomethylation": "NT=Dicarbamidomethyl;AC=1290;", "Dimethyl-Medium": "NT=Dimethyl:2H(6);AC=1291;", "SUMOylation leaving GlyGlyGln": "NT=GGQ;AC=1292;", "SUMOylation leaving GlnThrGlyGly": "NT=QTGG;AC=1293;", "13C3 label for SILAC": "NT=Label:13C(3);AC=1296;", "SILAC or AQUA label": "NT=Label:13C(3)15N(1);AC=1297;", "13C4 15N1 label for SILAC": "NT=Label:13C(4)15N(1);AC=1298;", "2H(10) label": "NT=Label:2H(10);AC=1299;", "Addition of lysine due to transpeptidation": "NT=Lys;AC=1301;", "mTRAQ heavy": "NT=mTRAQ:13C(6)15N(2);AC=1302;", "N-acetyl neuraminic acid": "NT=NeuAc;AC=1303;", "N-glycoyl neuraminic acid": "NT=NeuGc;AC=1304;", "Reduced acrolein addition +58": "NT=Delta:H(6)C(3)O(1);AC=1312;", "Reduced acrolein addition +96": "NT=Delta:H(8)C(6)O(1);AC=1313;", "biotin hydrazide labeled acrolein addition +298": "NT=biotinAcrolein298;AC=1314;", "3-methyl-5-(methylamino)-1,3-diphenylpentan-1-one": "NT=MM-diphenylpentanone;AC=1315;", "2-ethyl-3-hydroxy-1,3-diphenylpentan-1-one": "NT=EHD-diphenylpentanone;AC=1317;", "Maleimide-Biotin + 2Water": "NT=Biotin:Thermo-21901+2H2O;AC=1320;", "Accurate mass for DiLeu 115 isobaric tag": "NT=DiLeu4plex115;AC=1321;", "Accurate mass for DiLeu 116 isobaric tag": "NT=DiLeu4plex;AC=1322;", "Accurate mass for DiLeu 117 isobaric tag": "NT=DiLeu4plex117;AC=1323;", "Accurate mass for DiLeu 118 isobaric tag": "NT=DiLeu4plex118;AC=1324;", "N-ethylmaleimideSulfur": "NT=NEMsulfur;AC=1326;", "N-ethylmaleimideSulfurWater": "NT=NEMsulfurWater;AC=1328;", "BisANS with loss of both sulfonates": "NT=bisANS-sulfonates;AC=1330;", "Chemical reaction with 2,4-dinitro-1-chloro benzene (DNCB)": "NT=DNCB_hapten;AC=1331;", "Biotin-PEG11-maleimide": "NT=Biotin:Thermo-21911;AC=1340;", "Native iodoacetyl Tandem Mass Tag\u00ae": "NT=iodoTMT;AC=1341;", "Sixplex iodoacetyl Tandem Mass Tag\u00ae": "NT=iodoTMT6plex;AC=1342;", "reaction with phenyl salicylate (PS)": "NT=PS_Hapten;AC=1345;", "Cy3 Maleimide mono-Reactive dye": "NT=Cy3-maleimide;AC=1348;", "modification of the lysine side chain from NH2 to guanidine with a H removed in favor of a benzyl group": "NT=benzylguanidine;AC=1349;", "A fixed +1 charge tag attached to the N-terminus of peptides": "NT=CarboxymethylDMAP;AC=1350;", "Formation of five membered aromatic heterocycle": "NT=azole;AC=1355;", "phosphate-ribosylation": "NT=phosphoRibosyl;AC=1356;", "D5 N-ethylmaleimide+water on cysteines": "NT=NEM:2H(5)+H2O;AC=1358;", "Crotonylation": "NT=Crotonyl;AC=1363;", "O-ethyl, N-dimethyl phosphate": "NT=O-Et-N-diMePhospho;AC=1364;", "Hex1dHex1": "NT=dHex(1)Hex(1);AC=1367;", "3-fold methylated lysine labelled with Acetyl_heavy": "NT=Methyl:2H(3)+Acetyl:2H(3);AC=1368;", "Oxidised 2H(3) labelled Methionine": "NT=Label:2H(3)+Oxidation;AC=1370;", "3-fold methylation with deuterated methyl groups": "NT=Trimethyl:2H(9);AC=1371;", "heavy acetylation": "NT=Acetyl:13C(2);AC=1372;", "Hex2dHex1": "NT=dHex(1)Hex(2);AC=1375;", "Hex3dHex1": "NT=dHex(1)Hex(3);AC=1376;", "Hex4dHex1": "NT=dHex(1)Hex(4);AC=1377;", "Hex5dHex1": "NT=dHex(1)Hex(5);AC=1378;", "Hex6dHex1": "NT=dHex(1)Hex(6);AC=1379;", "reaction with methyl vinyl sulfone": "NT=methylsulfonylethyl;AC=1380;", "reaction with ethyl vinyl sulfone": "NT=ethylsulfonylethyl;AC=1381;", "reaction with phenyl vinyl sulfone": "NT=phenylsulfonylethyl;AC=1382;", "PLP bound to lysine reduced by sodium borohydride (NaBH4) to create amine linkage": "NT=PyridoxalPhosphateH2;AC=1383;", "methionine oxidation to homocysteic acid": "NT=Homocysteic_acid;AC=1384;", "ADP-ribosylation followed by conversion to hydroxamic acid via hydroxylamine": "NT=Hydroxamic_acid;AC=1385;", "Modification by hydroxylated mechloroethamine (HN-2)": "NT=HN2_mustard;AC=1388;", "Modification by hydroxylated tris-(2-chloroethyl)amine (HN-3)": "NT=HN3_mustard;AC=1389;", "N-ethylmaleimide on cysteine sulfenic acid": "NT=Oxidation+NEM;AC=1390;", "fluorescein-hexanoate-NHS hydrolysis": "NT=NHS-fluorescein;AC=1391;", "Representative mass and accurate mass for 114": "NT=DiART6plex;AC=1392;", "Accurate mass for DiART6plex 115": "NT=DiART6plex115;AC=1393;", "Accurate mass for DiART6plex 116 and 119": "NT=DiART6plex116/119;AC=1394;", "Accurate mass for DiART6plex 117": "NT=DiART6plex117;AC=1395;", "Accurate mass for DiART6plex 118": "NT=DiART6plex118;AC=1396;", "iodoacetanilide derivative": "NT=Iodoacetanilide;AC=1397;", "13C labelled iodoacetanilide derivative": "NT=Iodoacetanilide:13C(6);AC=1398;", "Diaminopimelic acid-DSP monolinked": "NT=Dap-DSP;AC=1399;", "N-Acetylmuramic acid": "NT=MurNAc;AC=1400;", "Sumoylation by SUMO-1 after Cyanogen bromide (CNBr) cleavage": "NT=EEEDVIEVYQEQTGG;AC=1405;", "Sumoylation by SUMO-2/3 after Cyanogen bromide (CNBr) cleavage": "NT=EDEDTIDVFQQQTGG;AC=1406;", "A2G2S2/G2S2": "NT=Hex(5)HexNAc(4)NeuAc(2);AC=1408;", "A2G2S1/G2S1": "NT=Hex(5)HexNAc(4)NeuAc(1);AC=1409;", "FA2G2S1/G2FS1": "NT=dHex(1)Hex(5)HexNAc(4)NeuAc(1);AC=1410;", "FA2G2S2/G2FS2": "NT=dHex(1)Hex(5)HexNAc(4)NeuAc(2);AC=1411;", "O3S1HexNAc1": "NT=s-GlcNAc;AC=1412;", "H1O3P1Hex2": "NT=PhosphoHex(2);AC=1413;", "3-fold methylation with fully labelled methyl groups": "NT=Trimethyl:13C(3)2H(9);AC=1414;", "Loss of ammonia (15N)": "NT=15N-oxobutanoic;AC=1419;", "spermine adduct": "NT=spermine;AC=1420;", "spermidine adduct": "NT=spermidine;AC=1421;", "Biotin_PEG4": "NT=Biotin:Thermo-21330;AC=1423;", "Hex Pent": "NT=Hex(1)Pent(1);AC=1426;", "Hex HexA": "NT=Hex(1)HexA(1);AC=1427;", "Hex Pent(2)": "NT=Hex(1)Pent(2);AC=1428;", "Hex HexNAc Phos": "NT=Hex(1)HexNAc(1)Phos(1);AC=1429;", "Hex HexNAc Sulf": "NT=Hex(1)HexNAc(1)Sulf(1);AC=1430;", "Hex NeuAc ---OR--- HexNAc Kdn": "NT=Hex(1)NeuAc(1);AC=1431;", "Hex NeuGc": "NT=Hex(1)NeuGc(1);AC=1432;", "HexNAc NeuAc": "NT=HexNAc(1)NeuAc(1);AC=1434;", "HexNAc NeuGc": "NT=HexNAc(1)NeuGc(1);AC=1435;", "Hex HexNAc dHex Me": "NT=Hex(1)HexNAc(1)dHex(1)Me(1);AC=1436;", "Hex HexNAc dHex Me(2)": "NT=Hex(1)HexNAc(1)dHex(1)Me(2);AC=1437;", "Hex(2) HexNAc": "NT=Hex(2)HexNAc(1);AC=1438;", "Hex HexA HexNAc": "NT=Hex(1)HexA(1)HexNAc(1);AC=1439;", "Hex(2) HexNAc Me": "NT=Hex(2)HexNAc(1)Me(1);AC=1440;", "Hex Pent(3)": "NT=Hex(1)Pent(3);AC=1441;", "Hex NeuAc Pent": "NT=Hex(1)NeuAc(1)Pent(1);AC=1442;", "Hex(2) HexNAc Sulf": "NT=Hex(2)HexNAc(1)Sulf(1);AC=1443;", "Hex(2) NeuAc ---OR--- Hex HexNAc Kdn": "NT=Hex(2)NeuAc(1);AC=1444;", "Hex2 dHex2": "NT=dHex(2)Hex(2);AC=1445;", "dHex Hex(2) HexA": "NT=dHex(1)Hex(2)HexA(1);AC=1446;", "Hex HexNAc(2) Sulf": "NT=Hex(1)HexNAc(2)Sulf(1);AC=1447;", "dHex Hex(2) HexNAc(2) Pent": "NT=dHex(1)Hex(2)HexNAc(2)Pent(1);AC=1449;", "Hex(2) HexNAc(2) NeuAc ---OR--- dHex Hex HexNAc(2) NeuGc": "NT=Hex(2)HexNAc(2)NeuAc(1);AC=1450;", "Hex(3) HexNAc(2) Pent": "NT=Hex(3)HexNAc(2)Pent(1);AC=1451;", "Hex(4) HexNAc(2)": "NT=Hex(4)HexNAc(2);AC=1452;", "dHex Hex(4) HexNAc Pent": "NT=dHex(1)Hex(4)HexNAc(1)Pent(1);AC=1453;", "dHex Hex(3) HexNAc(2) Pent": "NT=dHex(1)Hex(3)HexNAc(2)Pent(1);AC=1454;", "Hex(3) HexNAc(2) NeuAc": "NT=Hex(3)HexNAc(2)NeuAc(1);AC=1455;", "Hex(4) HexNAc(2) Pent": "NT=Hex(4)HexNAc(2)Pent(1);AC=1456;", "Hex(3) HexNAc(3) Pent": "NT=Hex(3)HexNAc(3)Pent(1);AC=1457;", "Hex(5) HexNAc(2) Phos": "NT=Hex(5)HexNAc(2)Phos(1);AC=1458;", "dHex Hex(4) HexNAc(2) Pent": "NT=dHex(1)Hex(4)HexNAc(2)Pent(1);AC=1459;", "Hex(7) HexNAc": "NT=Hex(7)HexNAc(1);AC=1460;", "Hex(4) HexNAc(2) NeuAc ---OR--- Hex(3) HexNAc(2) dHex NeuGc": "NT=Hex(4)HexNAc(2)NeuAc(1);AC=1461;", "dHex Hex(5) HexNAc(2)": "NT=dHex(1)Hex(5)HexNAc(2);AC=1462;", "dHex Hex(3) HexNAc(3) Pent": "NT=dHex(1)Hex(3)HexNAc(3)Pent(1);AC=1463;", "Hex(3) HexNAc(4) Sulf": "NT=Hex(3)HexNAc(4)Sulf(1);AC=1464;", "M6/Man6": "NT=Hex(6)HexNAc(2);AC=1465;", "Hex(4) HexNAc(3) Pent": "NT=Hex(4)HexNAc(3)Pent(1);AC=1466;", "dHex Hex(4) HexNAc(3)": "NT=dHex(1)Hex(4)HexNAc(3);AC=1467;", "Hex(5) HexNAc(3)": "NT=Hex(5)HexNAc(3);AC=1468;", "Hex(3) HexNAc(4) Pent": "NT=Hex(3)HexNAc(4)Pent(1);AC=1469;", "Hex(6) HexNAc(2) Phos": "NT=Hex(6)HexNAc(2)Phos(1);AC=1470;", "dHex Hex(4) HexNAc(3) Sulf": "NT=dHex(1)Hex(4)HexNAc(3)Sulf(1);AC=1471;", "dHex Hex(5) HexNAc(2) Pent": "NT=dHex(1)Hex(5)HexNAc(2)Pent(1);AC=1472;", "Hex(8) HexNAc": "NT=Hex(8)HexNAc(1);AC=1473;", "dHex Hex(3) HexNAc(3) Pent(2)": "NT=dHex(1)Hex(3)HexNAc(3)Pent(2);AC=1474;", "dHex(2) Hex(3) HexNAc(3) Pent": "NT=dHex(2)Hex(3)HexNAc(3)Pent(1);AC=1475;", "dHex Hex(3) HexNAc(4) Sulf": "NT=dHex(1)Hex(3)HexNAc(4)Sulf(1);AC=1476;", "dHex Hex(6) HexNAc(2)": "NT=dHex(1)Hex(6)HexNAc(2);AC=1477;", "dHex Hex(4) HexNAc(3) Pent": "NT=dHex(1)Hex(4)HexNAc(3)Pent(1);AC=1478;", "Hex(4) HexNAc(4) Sulf": "NT=Hex(4)HexNAc(4)Sulf(1);AC=1479;", "M7/Man7": "NT=Hex(7)HexNAc(2);AC=1480;", "dHex(2) Hex(4) HexNAc(3)": "NT=dHex(2)Hex(4)HexNAc(3);AC=1481;", "Hex(5) HexNAc(3) Pent": "NT=Hex(5)HexNAc(3)Pent(1);AC=1482;", "Hex(4) HexNAc(3) NeuGc": "NT=Hex(4)HexNAc(3)NeuGc(1);AC=1483;", "dHex Hex(5) HexNAc(3)": "NT=dHex(1)Hex(5)HexNAc(3);AC=1484;", "dHex Hex(3) HexNAc(4) Pent": "NT=dHex(1)Hex(3)HexNAc(4)Pent(1);AC=1485;", "Hex(3) HexNAc(5) Sulf": "NT=Hex(3)HexNAc(5)Sulf(1);AC=1486;", "Hex(6) HexNAc(3)": "NT=Hex(6)HexNAc(3);AC=1487;", "Hex(3) HexNAc(4) NeuAc ---OR--- Hex(2) HexNAc(4) dHex NeuGc": "NT=Hex(3)HexNAc(4)NeuAc(1);AC=1488;", "Hex(4) HexNAc(4) Pent": "NT=Hex(4)HexNAc(4)Pent(1);AC=1489;", "Hex(7) HexNAc(2) Phos": "NT=Hex(7)HexNAc(2)Phos(1);AC=1490;", "Hex(4) HexNAc(4) Me(2) Pent": "NT=Hex(4)HexNAc(4)Me(2)Pent(1);AC=1491;", "dHex Hex(3) HexNAc(3) Pent(3) ---OR--- Hex(4) HexNAc(2) dHex(2) NeuAc": "NT=dHex(1)Hex(3)HexNAc(3)Pent(3);AC=1492;", "dHex Hex(5) HexNAc(3) Sulf": "NT=dHex(1)Hex(5)HexNAc(3)Sulf(1);AC=1493;", "dHex(2) Hex(3) HexNAc(3) Pent(2)": "NT=dHex(2)Hex(3)HexNAc(3)Pent(2);AC=1494;", "Hex(6) HexNAc(3) Phos": "NT=Hex(6)HexNAc(3)Phos(1);AC=1495;", "Hex(4) HexNAc(5)": "NT=Hex(4)HexNAc(5);AC=1496;", "dHex(3) Hex(3) HexNAc(3) Pent": "NT=dHex(3)Hex(3)HexNAc(3)Pent(1);AC=1497;", "dHex(2) Hex(4) HexNAc(3) Pent": "NT=dHex(2)Hex(4)HexNAc(3)Pent(1);AC=1498;", "dHex Hex(4) HexNAc(4) Sulf": "NT=dHex(1)Hex(4)HexNAc(4)Sulf(1);AC=1499;", "dHex Hex(7) HexNAc(2)": "NT=dHex(1)Hex(7)HexNAc(2);AC=1500;", "dHex Hex(4) HexNAc(3) NeuAc ---OR--- dHex(2) Hex(3) HexNAc(3) NeuGc": "NT=dHex(1)Hex(4)HexNAc(3)NeuAc(1);AC=1501;", "Hex(7) HexNAc(2) Phos(2)": "NT=Hex(7)HexNAc(2)Phos(2);AC=1502;", "Hex(5) HexNAc(4) Sulf": "NT=Hex(5)HexNAc(4)Sulf(1);AC=1503;", "M8/Man8": "NT=Hex(8)HexNAc(2);AC=1504;", "dHex Hex(3) HexNAc(4) Pent(2)": "NT=dHex(1)Hex(3)HexNAc(4)Pent(2);AC=1505;", "dHex Hex(4) HexNAc(3) NeuGc ---OR--- Hex(5) HexNAc(3) NeuAc": "NT=dHex(1)Hex(4)HexNAc(3)NeuGc(1);AC=1506;", "dHex(2) Hex(3) HexNAc(4) Pent": "NT=dHex(2)Hex(3)HexNAc(4)Pent(1);AC=1507;", "dHex Hex(3) HexNAc(5) Sulf": "NT=dHex(1)Hex(3)HexNAc(5)Sulf(1);AC=1508;", "dHex Hex(6) HexNAc(3)": "NT=dHex(1)Hex(6)HexNAc(3);AC=1509;", "dHex Hex(3) HexNAc(4) NeuAc": "NT=dHex(1)Hex(3)HexNAc(4)NeuAc(1);AC=1510;", "dHex(3) Hex(3) HexNAc(4)": "NT=dHex(3)Hex(3)HexNAc(4);AC=1511;", "dHex Hex(4) HexNAc(4) Pent": "NT=dHex(1)Hex(4)HexNAc(4)Pent(1);AC=1512;", "Hex(4) HexNAc(5) Sulf": "NT=Hex(4)HexNAc(5)Sulf(1);AC=1513;", "Hex(7) HexNAc(3)": "NT=Hex(7)HexNAc(3);AC=1514;", "dHex Hex(4) HexNAc(3) NeuAc Sulf": "NT=dHex(1)Hex(4)HexNAc(3)NeuAc(1)Sulf(1);AC=1515;", "Hex(5) HexNAc(4) Me(2) Pent": "NT=Hex(5)HexNAc(4)Me(2)Pent(1);AC=1516;", "Hex(3) HexNAc(6) Sulf": "NT=Hex(3)HexNAc(6)Sulf(1);AC=1517;", "dHex Hex(6) HexNAc(3) Sulf": "NT=dHex(1)Hex(6)HexNAc(3)Sulf(1);AC=1518;", "dHex Hex(4) HexNAc(5)": "NT=dHex(1)Hex(4)HexNAc(5);AC=1519;", "dHex Hex(5) HexA HexNAc(3) Sulf": "NT=dHex(1)Hex(5)HexA(1)HexNAc(3)Sulf(1);AC=1520;", "Hex(7) HexNAc(3) Phos": "NT=Hex(7)HexNAc(3)Phos(1);AC=1521;", "Hex(6) HexNAc(4) Me(3)": "NT=Hex(6)HexNAc(4)Me(3);AC=1522;", "dHex(2) Hex(4) HexNAc(4) Sulf": "NT=dHex(2)Hex(4)HexNAc(4)Sulf(1);AC=1523;", "Hex(4) HexNAc(3) NeuAc(2)": "NT=Hex(4)HexNAc(3)NeuAc(2);AC=1524;", "dHex Hex(3) HexNAc(4) Pent(3)": "NT=dHex(1)Hex(3)HexNAc(4)Pent(3);AC=1525;", "dHex(2) Hex(5) HexNAc(3) Pent": "NT=dHex(2)Hex(5)HexNAc(3)Pent(1);AC=1526;", "dHex Hex(5) HexNAc(4) Sulf": "NT=dHex(1)Hex(5)HexNAc(4)Sulf(1);AC=1527;", "dHex(2) Hex(3) HexNAc(4) Pent(2)": "NT=dHex(2)Hex(3)HexNAc(4)Pent(2);AC=1528;", "dHex Hex(5) HexNAc(3) NeuAc": "NT=dHex(1)Hex(5)HexNAc(3)NeuAc(1);AC=1529;", "Hex(3) HexNAc(6) Sulf(2)": "NT=Hex(3)HexNAc(6)Sulf(2);AC=1530;", "M9/Man9": "NT=Hex(9)HexNAc(2);AC=1531;", "Hex(4) HexNAc(6)": "NT=Hex(4)HexNAc(6);AC=1532;", "dHex(3) Hex(3) HexNAc(4) Pent": "NT=dHex(3)Hex(3)HexNAc(4)Pent(1);AC=1533;", "dHex Hex(5) HexNAc(3) NeuGc ---OR--- Hex(6) HexNAc(3) NeuAc": "NT=dHex(1)Hex(5)HexNAc(3)NeuGc(1);AC=1534;", "dHex(2) Hex(4) HexNAc(4) Pent": "NT=dHex(2)Hex(4)HexNAc(4)Pent(1);AC=1535;", "dHex Hex(4) HexNAc(5) Sulf": "NT=dHex(1)Hex(4)HexNAc(5)Sulf(1);AC=1536;", "dHex Hex(7) HexNAc(3)": "NT=dHex(1)Hex(7)HexNAc(3);AC=1537;", "dHex Hex(5) HexNAc(4) Pent": "NT=dHex(1)Hex(5)HexNAc(4)Pent(1);AC=1538;", "dHex Hex(5) HexA HexNAc(3) Sulf(2)": "NT=dHex(1)Hex(5)HexA(1)HexNAc(3)Sulf(2);AC=1539;", "Hex(3) HexNAc(7)": "NT=Hex(3)HexNAc(7);AC=1540;", "dHex(2) Hex(5) HexNAc(4)": "NT=dHex(2)Hex(5)HexNAc(4);AC=1541;", "dHex(2) Hex(4) HexNAc(3) NeuAc Sulf": "NT=dHex(2)Hex(4)HexNAc(3)NeuAc(1)Sulf(1);AC=1542;", "dHex Hex(5) HexNAc(4) Sulf(2)": "NT=dHex(1)Hex(5)HexNAc(4)Sulf(2);AC=1543;", "dHex Hex(5) HexNAc(4) Me(2) Pent": "NT=dHex(1)Hex(5)HexNAc(4)Me(2)Pent(1);AC=1544;", "Hex(5) HexNAc(4) NeuGc": "NT=Hex(5)HexNAc(4)NeuGc(1);AC=1545;", "dHex Hex(3) HexNAc(6) Sulf": "NT=dHex(1)Hex(3)HexNAc(6)Sulf(1);AC=1546;", "dHex Hex(6) HexNAc(4)": "NT=dHex(1)Hex(6)HexNAc(4);AC=1547;", "dHex Hex(5) HexNAc(3) NeuAc Sulf": "NT=dHex(1)Hex(5)HexNAc(3)NeuAc(1)Sulf(1);AC=1548;", "Hex(7) HexNAc(4)": "NT=Hex(7)HexNAc(4);AC=1549;", "dHex Hex(5) HexNAc(3) NeuGc Sulf": "NT=dHex(1)Hex(5)HexNAc(3)NeuGc(1)Sulf(1);AC=1550;", "Hex(4) HexNAc(5) NeuAc": "NT=Hex(4)HexNAc(5)NeuAc(1);AC=1551;", "Hex(6) HexNAc(4) Me(3) Pent": "NT=Hex(6)HexNAc(4)Me(3)Pent(1);AC=1552;", "dHex Hex(7) HexNAc(3) Sulf": "NT=dHex(1)Hex(7)HexNAc(3)Sulf(1);AC=1553;", "dHex Hex(7) HexNAc(3) Phos": "NT=dHex(1)Hex(7)HexNAc(3)Phos(1);AC=1554;", "dHex Hex(5) HexNAc(5)": "NT=dHex(1)Hex(5)HexNAc(5);AC=1555;", "dHex Hex(4) HexNAc(4) NeuAc Sulf": "NT=dHex(1)Hex(4)HexNAc(4)NeuAc(1)Sulf(1);AC=1556;", "dHex(3) Hex(4) HexNAc(4) Sulf": "NT=dHex(3)Hex(4)HexNAc(4)Sulf(1);AC=1557;", "Hex(3) HexNAc(7) Sulf": "NT=Hex(3)HexNAc(7)Sulf(1);AC=1558;", "A3G3": "NT=Hex(6)HexNAc(5);AC=1559;", "Hex(5) HexNAc(4) NeuAc Sulf": "NT=Hex(5)HexNAc(4)NeuAc(1)Sulf(1);AC=1560;", "Hex(3) HexNAc(6) NeuAc": "NT=Hex(3)HexNAc(6)NeuAc(1);AC=1561;", "dHex(2) Hex(3) HexNAc(6)": "NT=dHex(2)Hex(3)HexNAc(6);AC=1562;", "Hex HexNAc NeuGc": "NT=Hex(1)HexNAc(1)NeuGc(1);AC=1563;", "dHex Hex(2) HexNAc": "NT=dHex(1)Hex(2)HexNAc(1);AC=1564;", "HexNAc(3) Sulf": "NT=HexNAc(3)Sulf(1);AC=1565;", "Hex(3) HexNAc": "NT=Hex(3)HexNAc(1);AC=1566;", "Hex HexNAc Kdn Sulf": "NT=Hex(1)HexNAc(1)Kdn(1)Sulf(1);AC=1567;", "HexNAc(2) NeuAc": "NT=HexNAc(2)NeuAc(1);AC=1568;", "HexNAc Kdn(2) ---OR--- Hex(2) HexNAc HexA": "NT=HexNAc(1)Kdn(2);AC=1570;", "Hex(3) HexNAc Me": "NT=Hex(3)HexNAc(1)Me(1);AC=1571;", "Hex(2) HexA Pent Sulf": "NT=Hex(2)HexA(1)Pent(1)Sulf(1);AC=1572;", "HexNAc(2) NeuGc": "NT=HexNAc(2)NeuGc(1);AC=1573;", "Hex(4) Phos": "NT=Hex(4)Phos(1);AC=1575;", "Hex HexNAc NeuAc Sulf": "NT=Hex(1)HexNAc(1)NeuAc(1)Sulf(1);AC=1577;", "Hex HexA HexNAc(2)": "NT=Hex(1)HexA(1)HexNAc(2);AC=1578;", "dHex Hex(2) HexNAc Sulf": "NT=dHex(1)Hex(2)HexNAc(1)Sulf(1);AC=1579;", "dHex HexNAc(3)": "NT=dHex(1)HexNAc(3);AC=1580;", "dHex Hex HexNAc Kdn ---OR--- Hex(2) dHex NeuAc": "NT=dHex(1)Hex(1)HexNAc(1)Kdn(1);AC=1581;", "Hex HexNAc(3)": "NT=Hex(1)HexNAc(3);AC=1582;", "HexNAc(2) NeuAc Sulf": "NT=HexNAc(2)NeuAc(1)Sulf(1);AC=1583;", "dHex(2) Hex(3)": "NT=dHex(2)Hex(3);AC=1584;", "Hex(2) HexA HexNAc Sulf": "NT=Hex(2)HexA(1)HexNAc(1)Sulf(1);AC=1585;", "dHex(2) Hex(2) HexA": "NT=dHex(2)Hex(2)HexA(1);AC=1586;", "dHex Hex HexNAc(2) Sulf": "NT=dHex(1)Hex(1)HexNAc(2)Sulf(1);AC=1587;", "dHex Hex HexNAc NeuAc": "NT=dHex(1)Hex(1)HexNAc(1)NeuAc(1);AC=1588;", "Hex(2) HexNAc(2) Sulf": "NT=Hex(2)HexNAc(2)Sulf(1);AC=1589;", "HexNAc NeuGc(2)": "NT=HexNAc(1)NeuGc(2);AC=1592;", "dHex Hex HexNAc NeuGc ---OR--- Hex(2) HexNAc NeuAc": "NT=dHex(1)Hex(1)HexNAc(1)NeuGc(1);AC=1593;", "dHex(2) Hex(2) HexNAc": "NT=dHex(2)Hex(2)HexNAc(1);AC=1594;", "Hex(2) HexNAc NeuGc": "NT=Hex(2)HexNAc(1)NeuGc(1);AC=1595;", "dHex Hex(3) HexNAc": "NT=dHex(1)Hex(3)HexNAc(1);AC=1596;", "dHex Hex(2) HexA HexNAc": "NT=dHex(1)Hex(2)HexA(1)HexNAc(1);AC=1597;", "Hex HexNAc(3) Sulf": "NT=Hex(1)HexNAc(3)Sulf(1);AC=1598;", "Hex(4) HexNAc": "NT=Hex(4)HexNAc(1);AC=1599;", "Hex HexNAc(2) NeuAc": "NT=Hex(1)HexNAc(2)NeuAc(1);AC=1600;", "Hex HexNAc(2) NeuGc": "NT=Hex(1)HexNAc(2)NeuGc(1);AC=1602;", "Hex(5) Phos": "NT=Hex(5)Phos(1);AC=1604;", "dHex(2) Hex HexNAc Kdn": "NT=dHex(2)Hex(1)HexNAc(1)Kdn(1);AC=1606;", "dHex Hex(3) HexNAc Sulf": "NT=dHex(1)Hex(3)HexNAc(1)Sulf(1);AC=1607;", "dHex Hex HexNAc(3)": "NT=dHex(1)Hex(1)HexNAc(3);AC=1608;", "dHex Hex(2) HexA HexNAc Sulf": "NT=dHex(1)Hex(2)HexA(1)HexNAc(1)Sulf(1);AC=1609;", "Hex(2) HexNAc(3)": "NT=Hex(2)HexNAc(3);AC=1610;", "Hex HexNAc(2) NeuAc Sulf": "NT=Hex(1)HexNAc(2)NeuAc(1)Sulf(1);AC=1611;", "dHex(2) Hex(4)": "NT=dHex(2)Hex(4);AC=1612;", "dHex(2) HexNAc(2) Kdn": "NT=dHex(2)HexNAc(2)Kdn(1);AC=1614;", "dHex Hex(2) HexNAc(2) Sulf": "NT=dHex(1)Hex(2)HexNAc(2)Sulf(1);AC=1615;", "dHex HexNAc(4)": "NT=dHex(1)HexNAc(4);AC=1616;", "Hex HexNAc NeuAc NeuGc": "NT=Hex(1)HexNAc(1)NeuAc(1)NeuGc(1);AC=1617;", "dHex Hex HexNAc(2) Kdn ---OR--- Hex(2) HexNAc dHex NeuAc": "NT=dHex(1)Hex(1)HexNAc(2)Kdn(1);AC=1618;", "Hex HexNAc NeuGc(2)": "NT=Hex(1)HexNAc(1)NeuGc(2);AC=1619;", "Ac Hex HexNAc NeuAc(2)": "NT=Hex(1)HexNAc(1)NeuAc(2)Ac(1);AC=1620;", "dHex(2) Hex(2) HexA HexNAc": "NT=dHex(2)Hex(2)HexA(1)HexNAc(1);AC=1621;", "dHex Hex HexNAc(3) Sulf": "NT=dHex(1)Hex(1)HexNAc(3)Sulf(1);AC=1622;", "Hex(2) HexA NeuAc Pent Sulf": "NT=Hex(2)HexA(1)NeuAc(1)Pent(1)Sulf(1);AC=1623;", "dHex Hex HexNAc(2) NeuAc": "NT=dHex(1)Hex(1)HexNAc(2)NeuAc(1);AC=1624;", "dHex Hex(3) HexA HexNAc": "NT=dHex(1)Hex(3)HexA(1)HexNAc(1);AC=1625;", "Hex(2) HexNAc(3) Sulf": "NT=Hex(2)HexNAc(3)Sulf(1);AC=1626;", "Hex(5) HexNAc": "NT=Hex(5)HexNAc(1);AC=1627;", "Ac(2) Hex HexNAc NeuAc(2)": "NT=Hex(1)HexNAc(1)NeuAc(2)Ac(2);AC=1630;", "Hex(2) HexNAc(2) NeuGc": "NT=Hex(2)HexNAc(2)NeuGc(1);AC=1631;", "Hex(5) Phos(3)": "NT=Hex(5)Phos(3);AC=1632;", "Hex(6) Phos": "NT=Hex(6)Phos(1);AC=1633;", "dHex Hex(2) HexA HexNAc(2)": "NT=dHex(1)Hex(2)HexA(1)HexNAc(2);AC=1634;", "dHex(2) Hex(3) HexNAc Sulf": "NT=dHex(2)Hex(3)HexNAc(1)Sulf(1);AC=1635;", "Hex HexNAc(3) NeuAc": "NT=Hex(1)HexNAc(3)NeuAc(1);AC=1636;", "dHex(2) Hex HexNAc(3)": "NT=dHex(2)Hex(1)HexNAc(3);AC=1637;", "Hex HexNAc(3) NeuGc": "NT=Hex(1)HexNAc(3)NeuGc(1);AC=1638;", "dHex Hex HexNAc(2) NeuAc Sulf": "NT=dHex(1)Hex(1)HexNAc(2)NeuAc(1)Sulf(1);AC=1639;", "dHex Hex(3) HexA HexNAc Sulf": "NT=dHex(1)Hex(3)HexA(1)HexNAc(1)Sulf(1);AC=1640;", "dHex Hex HexA HexNAc(3)": "NT=dHex(1)Hex(1)HexA(1)HexNAc(3);AC=1641;", "Hex(2) HexNAc(2) NeuAc Sulf": "NT=Hex(2)HexNAc(2)NeuAc(1)Sulf(1);AC=1642;", "dHex(2) Hex(2) HexNAc(2) Sulf": "NT=dHex(2)Hex(2)HexNAc(2)Sulf(1);AC=1643;", "dHex(2) Hex HexNAc(2) Kdn ---OR--- Hex(2) HexNAc dHex(2) NeuAc": "NT=dHex(2)Hex(1)HexNAc(2)Kdn(1);AC=1644;", "dHex Hex HexNAc(4)": "NT=dHex(1)Hex(1)HexNAc(4);AC=1645;", "Hex(2) HexNAc(4)": "NT=Hex(2)HexNAc(4);AC=1646;", "Hex(2) HexNAc NeuGc(2)": "NT=Hex(2)HexNAc(1)NeuGc(2);AC=1647;", "dHex(2) Hex(4) HexNAc": "NT=dHex(2)Hex(4)HexNAc(1);AC=1648;", "Hex HexNAc(2) NeuAc(2)": "NT=Hex(1)HexNAc(2)NeuAc(2);AC=1649;", "dHex(2) Hex HexNAc(2) NeuAc": "NT=dHex(2)Hex(1)HexNAc(2)NeuAc(1);AC=1650;", "dHex Hex(2) HexNAc(3) Sulf": "NT=dHex(1)Hex(2)HexNAc(3)Sulf(1);AC=1651;", "dHex HexNAc(5)": "NT=dHex(1)HexNAc(5);AC=1652;", "dHex(2) Hex HexNAc(2) NeuGc ---OR--- Hex(2) HexNAc(2) dHex NeuAc ---OR--- Hex HexNAc(3) dHex Kdn": "NT=dHex(2)Hex(1)HexNAc(2)NeuGc(1);AC=1653;", "dHex(3) Hex(2) HexNAc(2)": "NT=dHex(3)Hex(2)HexNAc(2);AC=1654;", "Hex(3) HexNAc(3) Sulf": "NT=Hex(3)HexNAc(3)Sulf(1);AC=1655;", "dHex(2) Hex(2) HexNAc(2) Sulf(2)": "NT=dHex(2)Hex(2)HexNAc(2)Sulf(2);AC=1656;", "dHex Hex(2) HexNAc(2) NeuGc ---OR--- Hex(3) HexNAc(2) NeuAc": "NT=dHex(1)Hex(2)HexNAc(2)NeuGc(1);AC=1657;", "dHex Hex HexNAc(3) NeuAc": "NT=dHex(1)Hex(1)HexNAc(3)NeuAc(1);AC=1658;", "Hex(6) Phos(3)": "NT=Hex(6)Phos(3);AC=1659;", "dHex Hex(3) HexA HexNAc(2)": "NT=dHex(1)Hex(3)HexA(1)HexNAc(2);AC=1660;", "dHex Hex HexNAc(3) NeuGc ---OR--- Hex(2) HexNAc(3) NeuAc": "NT=dHex(1)Hex(1)HexNAc(3)NeuGc(1);AC=1661;", "Hex HexNAc(2) NeuAc(2) Sulf": "NT=Hex(1)HexNAc(2)NeuAc(2)Sulf(1);AC=1662;", "dHex(2) Hex(3) HexA HexNAc Sulf": "NT=dHex(2)Hex(3)HexA(1)HexNAc(1)Sulf(1);AC=1663;", "Hex HexNAc NeuAc(3)": "NT=Hex(1)HexNAc(1)NeuAc(3);AC=1664;", "Hex(2) HexNAc(3) NeuGc": "NT=Hex(2)HexNAc(3)NeuGc(1);AC=1665;", "dHex Hex(2) HexNAc(2) NeuAc Sulf": "NT=dHex(1)Hex(2)HexNAc(2)NeuAc(1)Sulf(1);AC=1666;", "dHex(3) Hex HexNAc(2) Kdn": "NT=dHex(3)Hex(1)HexNAc(2)Kdn(1);AC=1667;", "dHex(2) Hex(3) HexNAc(2) Sulf": "NT=dHex(2)Hex(3)HexNAc(2)Sulf(1);AC=1668;", "dHex(2) Hex(2) HexNAc(2) Kdn": "NT=dHex(2)Hex(2)HexNAc(2)Kdn(1);AC=1669;", "dHex(2) Hex(2) HexA HexNAc(2) Sulf": "NT=dHex(2)Hex(2)HexA(1)HexNAc(2)Sulf(1);AC=1670;", "dHex Hex(2) HexNAc(4)": "NT=dHex(1)Hex(2)HexNAc(4);AC=1671;", "Hex HexNAc NeuGc(3)": "NT=Hex(1)HexNAc(1)NeuGc(3);AC=1672;", "dHex Hex HexNAc(3) NeuAc Sulf": "NT=dHex(1)Hex(1)HexNAc(3)NeuAc(1)Sulf(1);AC=1673;", "dHex Hex(3) HexA HexNAc(2) Sulf": "NT=dHex(1)Hex(3)HexA(1)HexNAc(2)Sulf(1);AC=1674;", "dHex Hex HexNAc(2) NeuAc(2)": "NT=dHex(1)Hex(1)HexNAc(2)NeuAc(2);AC=1675;", "dHex(3) HexNAc(3) Kdn": "NT=dHex(3)HexNAc(3)Kdn(1);AC=1676;", "Hex(2) HexNAc(3) NeuAc Sulf": "NT=Hex(2)HexNAc(3)NeuAc(1)Sulf(1);AC=1678;", "dHex(2) Hex(2) HexNAc(3) Sulf": "NT=dHex(2)Hex(2)HexNAc(3)Sulf(1);AC=1679;", "dHex(2) HexNAc(5)": "NT=dHex(2)HexNAc(5);AC=1680;", "Hex(2) HexNAc(2) NeuAc(2)": "NT=Hex(2)HexNAc(2)NeuAc(2);AC=1681;", "dHex(2) Hex(2) HexNAc(2) NeuAc ---OR--- Hex HexNAc(3) dHex(2) Kdn": "NT=dHex(2)Hex(2)HexNAc(2)NeuAc(1);AC=1682;", "dHex Hex(3) HexNAc(3) Sulf": "NT=dHex(1)Hex(3)HexNAc(3)Sulf(1);AC=1683;", "dHex(2) Hex(2) HexNAc(2) NeuGc ---OR--- Hex(3) HexNAc(2) dHex NeuAc ---OR--- Hex(2) HexNAc(3) dHex Kdn": "NT=dHex(2)Hex(2)HexNAc(2)NeuGc(1);AC=1684;", "Hex(2) HexNAc(5)": "NT=Hex(2)HexNAc(5);AC=1685;", "dHex Hex(3) HexNAc(2) NeuGc": "NT=dHex(1)Hex(3)HexNAc(2)NeuGc(1);AC=1686;", "Hex HexNAc(3) NeuAc(2)": "NT=Hex(1)HexNAc(3)NeuAc(2);AC=1687;", "dHex Hex(2) HexNAc(3) NeuAc": "NT=dHex(1)Hex(2)HexNAc(3)NeuAc(1);AC=1688;", "dHex(3) Hex(2) HexNAc(3)": "NT=dHex(3)Hex(2)HexNAc(3);AC=1689;", "Hex(7) Phos(3)": "NT=Hex(7)Phos(3);AC=1690;", "dHex Hex(4) HexA HexNAc(2)": "NT=dHex(1)Hex(4)HexA(1)HexNAc(2);AC=1691;", "Hex(3) HexNAc(3) NeuAc ---OR--- Hex(2) HexNAc(3) dHex NeuGc ---OR--- Hex(2) HexNAc(4) Kdn": "NT=Hex(3)HexNAc(3)NeuAc(1);AC=1692;", "dHex Hex(3) HexA(2) HexNAc(2)": "NT=dHex(1)Hex(3)HexA(2)HexNAc(2);AC=1693;", "Hex(2) HexNAc(2) NeuAc(2) Sulf": "NT=Hex(2)HexNAc(2)NeuAc(2)Sulf(1);AC=1694;", "dHex(2) Hex(2) HexNAc(2) NeuAc Sulf": "NT=dHex(2)Hex(2)HexNAc(2)NeuAc(1)Sulf(1);AC=1695;", "Hex(3) HexNAc(3) NeuGc": "NT=Hex(3)HexNAc(3)NeuGc(1);AC=1696;", "dHex(4) Hex HexNAc(2) Kdn": "NT=dHex(4)Hex(1)HexNAc(2)Kdn(1);AC=1697;", "dHex(3) Hex(2) HexNAc(2) Kdn": "NT=dHex(3)Hex(2)HexNAc(2)Kdn(1);AC=1698;", "dHex(3) Hex(2) HexA HexNAc(2) Sulf": "NT=dHex(3)Hex(2)HexA(1)HexNAc(2)Sulf(1);AC=1699;", "Hex(2) HexNAc(4) NeuAc": "NT=Hex(2)HexNAc(4)NeuAc(1);AC=1700;", "dHex(2) Hex(2) HexNAc(4)": "NT=dHex(2)Hex(2)HexNAc(4);AC=1701;", "dHex(2) Hex(3) HexA HexNAc(2) Sulf": "NT=dHex(2)Hex(3)HexA(1)HexNAc(2)Sulf(1);AC=1702;", "dHex(4) HexNAc(3) Kdn": "NT=dHex(4)HexNAc(3)Kdn(1);AC=1703;", "Hex(2) HexNAc NeuGc(3)": "NT=Hex(2)HexNAc(1)NeuGc(3);AC=1705;", "dHex(4) Hex HexNAc Kdn(2)": "NT=dHex(4)Hex(1)HexNAc(1)Kdn(2);AC=1706;", "dHex Hex(2) HexNAc(3) NeuAc Sulf": "NT=dHex(1)Hex(2)HexNAc(3)NeuAc(1)Sulf(1);AC=1707;", "dHex Hex(2) HexNAc(2) NeuAc(2)": "NT=dHex(1)Hex(2)HexNAc(2)NeuAc(2);AC=1708;", "dHex(3) Hex HexNAc(3) Kdn": "NT=dHex(3)Hex(1)HexNAc(3)Kdn(1);AC=1709;", "Hex(3) HexNAc(3) NeuAc Sulf": "NT=Hex(3)HexNAc(3)NeuAc(1)Sulf(1);AC=1711;", "Hex(3) HexNAc(2) NeuAc(2)": "NT=Hex(3)HexNAc(2)NeuAc(2);AC=1712;", "Hex(3) HexNAc(3) NeuGc Sulf": "NT=Hex(3)HexNAc(3)NeuGc(1)Sulf(1);AC=1713;", "dHex Hex(2) HexNAc(2) NeuGc(2)": "NT=dHex(1)Hex(2)HexNAc(2)NeuGc(2);AC=1714;", "dHex(2) Hex(3) HexNAc(2) NeuGc ---OR--- Hex(4) HexNAc(2) dHex NeuAc": "NT=dHex(2)Hex(3)HexNAc(2)NeuGc(1);AC=1715;", "dHex Hex(3) HexA HexNAc(3) Sulf": "NT=dHex(1)Hex(3)HexA(1)HexNAc(3)Sulf(1);AC=1716;", "Hex(2) HexNAc(3) NeuAc(2)": "NT=Hex(2)HexNAc(3)NeuAc(2);AC=1717;", "dHex(2) Hex(2) HexNAc(3) NeuAc": "NT=dHex(2)Hex(2)HexNAc(3)NeuAc(1);AC=1718;", "dHex(4) Hex(2) HexNAc(3)": "NT=dHex(4)Hex(2)HexNAc(3);AC=1719;", "Hex(2) HexNAc(3) NeuAc NeuGc": "NT=Hex(2)HexNAc(3)NeuAc(1)NeuGc(1);AC=1720;", "dHex(2) Hex(2) HexNAc(3) NeuGc ---OR--- Hex(3) HexNAc(3) dHex NeuAc ---OR--- Hex(2) HexNAc(4) dHex Kdn": "NT=dHex(2)Hex(2)HexNAc(3)NeuGc(1);AC=1721;", "dHex(3) Hex(3) HexNAc(3)": "NT=dHex(3)Hex(3)HexNAc(3);AC=1722;", "Hex(8) Phos(3)": "NT=Hex(8)Phos(3);AC=1723;", "dHex Hex(2) HexNAc(2) NeuAc(2) Sulf": "NT=dHex(1)Hex(2)HexNAc(2)NeuAc(2)Sulf(1);AC=1724;", "Hex(2) HexNAc(3) NeuGc(2)": "NT=Hex(2)HexNAc(3)NeuGc(2);AC=1725;", "dHex(4) Hex(2) HexNAc(2) Kdn": "NT=dHex(4)Hex(2)HexNAc(2)Kdn(1);AC=1726;", "dHex Hex(2) HexNAc(4) NeuAc": "NT=dHex(1)Hex(2)HexNAc(4)NeuAc(1);AC=1727;", "dHex(3) Hex(2) HexNAc(4)": "NT=dHex(3)Hex(2)HexNAc(4);AC=1728;", "Hex HexNAc NeuGc(4)": "NT=Hex(1)HexNAc(1)NeuGc(4);AC=1729;", "dHex(4) Hex HexNAc(3) Kdn": "NT=dHex(4)Hex(1)HexNAc(3)Kdn(1);AC=1730;", "Hex(4) HexNAc(4) Sulf(2)": "NT=Hex(4)HexNAc(4)Sulf(2);AC=1732;", "dHex(3) Hex(2) HexNAc(3) Kdn ---OR--- Hex(3) HexNAc(2) dHex(3) NeuAc": "NT=dHex(3)Hex(2)HexNAc(3)Kdn(1);AC=1733;", "dHex(2) Hex(2) HexNAc(5)": "NT=dHex(2)Hex(2)HexNAc(5);AC=1735;", "dHex(2) Hex(3) HexA HexNAc(3) Sulf": "NT=dHex(2)Hex(3)HexA(1)HexNAc(3)Sulf(1);AC=1736;", "dHex Hex(4) HexA HexNAc(3) Sulf": "NT=dHex(1)Hex(4)HexA(1)HexNAc(3)Sulf(1);AC=1737;", "Hex(3) HexNAc(3) NeuAc(2)": "NT=Hex(3)HexNAc(3)NeuAc(2);AC=1738;", "dHex(2) Hex(3) HexNAc(3) NeuAc ---OR--- Hex(2) HexNAc(4) dHex(2) Kdn": "NT=dHex(2)Hex(3)HexNAc(3)NeuAc(1);AC=1739;", "dHex(4) Hex(3) HexNAc(3)": "NT=dHex(4)Hex(3)HexNAc(3);AC=1740;", "Hex(9) Phos(3)": "NT=Hex(9)Phos(3);AC=1742;", "dHex(2) HexNAc(7)": "NT=dHex(2)HexNAc(7);AC=1743;", "Hex(2) HexNAc NeuGc(4)": "NT=Hex(2)HexNAc(1)NeuGc(4);AC=1744;", "Hex(3) HexNAc(3) NeuAc(2) Sulf": "NT=Hex(3)HexNAc(3)NeuAc(2)Sulf(1);AC=1745;", "dHex(2) Hex(3) HexNAc(5)": "NT=dHex(2)Hex(3)HexNAc(5);AC=1746;", "dHex Hex(2) HexNAc(2) NeuGc(3)": "NT=dHex(1)Hex(2)HexNAc(2)NeuGc(3);AC=1747;", "dHex(2) Hex(4) HexA HexNAc(3) Sulf": "NT=dHex(2)Hex(4)HexA(1)HexNAc(3)Sulf(1);AC=1748;", "Hex(2) HexNAc(3) NeuAc(3)": "NT=Hex(2)HexNAc(3)NeuAc(3);AC=1749;", "dHex Hex(3) HexNAc(3) NeuAc(2)": "NT=dHex(1)Hex(3)HexNAc(3)NeuAc(2);AC=1750;", "dHex(3) Hex(3) HexNAc(3) NeuAc": "NT=dHex(3)Hex(3)HexNAc(3)NeuAc(1);AC=1751;", "Hex(2) HexNAc(3) NeuGc(3)": "NT=Hex(2)HexNAc(3)NeuGc(3);AC=1752;", "Hex(10) Phos(3)": "NT=Hex(10)Phos(3);AC=1753;", "dHex Hex(2) HexNAc(4) NeuAc(2)": "NT=dHex(1)Hex(2)HexNAc(4)NeuAc(2);AC=1754;", "Hex HexNAc NeuGc(5)": "NT=Hex(1)HexNAc(1)NeuGc(5);AC=1755;", "Hex(4) HexNAc(4) NeuAc Sulf(2)": "NT=Hex(4)HexNAc(4)NeuAc(1)Sulf(2);AC=1756;", "Hex(4) HexNAc(4) NeuGc Sulf(2)": "NT=Hex(4)HexNAc(4)NeuGc(1)Sulf(2);AC=1757;", "dHex(2) Hex(3) HexNAc(3) NeuAc(2)": "NT=dHex(2)Hex(3)HexNAc(3)NeuAc(2);AC=1758;", "Hex(4) HexNAc(4) NeuAc Sulf(3)": "NT=Hex(4)HexNAc(4)NeuAc(1)Sulf(3);AC=1759;", "dHex(2) Hex(2) HexNAc(2)": "NT=dHex(2)Hex(2)HexNAc(2);AC=1760;", "dHex Hex(3) HexNAc(2)": "NT=dHex(1)Hex(3)HexNAc(2);AC=1761;", "dHex Hex(2) HexNAc(3)": "NT=dHex(1)Hex(2)HexNAc(3);AC=1762;", "Hex(3) HexNAc(3)": "NT=Hex(3)HexNAc(3);AC=1763;", "dHex Hex(3) HexNAc(2) Sulf": "NT=dHex(1)Hex(3)HexNAc(2)Sulf(1);AC=1764;", "dHex(2) Hex(3) HexNAc(2)": "NT=dHex(2)Hex(3)HexNAc(2);AC=1765;", "dHex Hex(4) HexNAc(2)": "NT=dHex(1)Hex(4)HexNAc(2);AC=1766;", "dHex(2) Hex(2) HexNAc(3)": "NT=dHex(2)Hex(2)HexNAc(3);AC=1767;", "dHex Hex(3) HexNAc(3)": "NT=dHex(1)Hex(3)HexNAc(3);AC=1768;", "Hex(4) HexNAc(3)": "NT=Hex(4)HexNAc(3);AC=1769;", "dHex(2) Hex(4) HexNAc(2)": "NT=dHex(2)Hex(4)HexNAc(2);AC=1770;", "dHex(2) Hex(3) HexNAc(3)": "NT=dHex(2)Hex(3)HexNAc(3);AC=1771;", "A3": "NT=Hex(3)HexNAc(5);AC=1772;", "Hex(4) HexNAc(3) NeuAc ---OR--- Hex(3) HexNAc(4) Kdn": "NT=Hex(4)HexNAc(3)NeuAc(1);AC=1773;", "dHex(2) Hex(3) HexNAc(4)": "NT=dHex(2)Hex(3)HexNAc(4);AC=1774;", "dHex Hex(3) HexNAc(5)": "NT=dHex(1)Hex(3)HexNAc(5);AC=1775;", "A4": "NT=Hex(3)HexNAc(6);AC=1776;", "Hex(4) HexNAc(4) NeuAc": "NT=Hex(4)HexNAc(4)NeuAc(1);AC=1777;", "dHex(2) Hex(4) HexNAc(4) ---OR--- Hex(4) HexNAc(4) dHex Pent Me": "NT=dHex(2)Hex(4)HexNAc(4);AC=1778;", "Hex(6) HexNAc(4)": "NT=Hex(6)HexNAc(4);AC=1779;", "Hex(5) HexNAc(5)": "NT=Hex(5)HexNAc(5);AC=1780;", "dHex Hex(3) HexNAc(6)": "NT=dHex(1)Hex(3)HexNAc(6);AC=1781;", "dHex Hex(4) HexNAc(4) NeuAc ---OR--- Hex(3) HexNAc(5) dHex Kdn": "NT=dHex(1)Hex(4)HexNAc(4)NeuAc(1);AC=1782;", "dHex(3) Hex(4) HexNAc(4)": "NT=dHex(3)Hex(4)HexNAc(4);AC=1783;", "dHex Hex(3) HexNAc(5) NeuAc": "NT=dHex(1)Hex(3)HexNAc(5)NeuAc(1);AC=1784;", "dHex(2) Hex(4) HexNAc(5)": "NT=dHex(2)Hex(4)HexNAc(5);AC=1785;", "Ac Hex HexNAc NeuAc": "NT=Hex(1)HexNAc(1)NeuAc(1)Ac(1);AC=1786;", "13C(2) 15N(2)": "NT=Label:13C(2)15N(2);AC=1787;", "Ammonium-quenched monolink of DSS/BS3 crosslinker": "NT=Xlink:DSS[155];AC=1789;", "SUMOylation by Giardia lamblia": "NT=NQIGG;AC=1799;", "Fluorescein-tyramine adduct by peroxidase activity": "NT=Fluorescein-tyramine;AC=1801;", "transamidation of glycine ethyl ester to glutamine": "NT=GEE;AC=1824;", "Simulate peptide-RNA conjugates": "NT=RNPXL;AC=1825;", "Pyro-Glu from E + Methylation": "NT=Glu->pyro-Glu+Methyl;AC=1826;", "Pyro-Glu from E + Methylation Medium": "NT=Glu->pyro-Glu+Methyl:2H(2)13C(1);AC=1827;", "LeumethylArgGlyGly": "NT=LRGG+methyl;AC=1828;", "LeudimethylArgGlyGly": "NT=LRGG+dimethyl;AC=1829;", "Biotin-Phenol": "NT=Biotin-tyramide;AC=1830;", "tris adduct causes 104 Da addition at asparagine-succinimide intermediate": "NT=Tris;AC=1831;", "Iodoacetamide derivative of stilbene (reaction product with thiol)": "NT=IASD;AC=1832;", "NP-40 synthetic polymer terminus": "NT=NP40;AC=1833;", "Tween 20 synthetic polymer terminus": "NT=Tween20;AC=1834;", "Tween 80 synthetic polymer terminus": "NT=Tween80;AC=1835;", "Triton synthetic polymer terminus": "NT=Triton;AC=1836;", "Brij 35 synthetic polymer terminus": "NT=Brij35;AC=1837;", "Brij 58 synthetic polymer terminus": "NT=Brij58;AC=1838;", "beta-Funaltrexamine": "NT=betaFNA;AC=1839;", "Fucosylated biantennary + 2 alphaGal": "NT=dHex(1)Hex(7)HexNAc(4);AC=1840;", "EZ-Link Sulfo-NHS-SS-Biotin": "NT=Biotin:Thermo-21328;AC=1841;", "disuccinimidyl sulfoxide CID cleavable cross-link": "NT=Xlink:DSSO;AC=1842;", "Cytidine monophosphate": "NT=PhosphoCytidine;AC=1843;", "EGS cross-linker": "NT=Xlink:EGS;AC=1844;", "Azidophenylalanine": "NT=AzidoF;AC=1845;", "Cys alkylation by dimethylaminoethyl halide": "NT=Dimethylaminoethyl;AC=1846;", "Glutarylation": "NT=Gluratylation;AC=1848;", "2-hydroxyisobutyrylation": "NT=hydroxyisobutyryl;AC=1849;", "S-Methyl Methyl phosphorothioate": "NT=MeMePhosphorothioate;AC=1868;", "Replacement of 3 protons by iron": "NT=Cation:Fe[III];AC=1870;", "DTT adduct of cysteine": "NT=DTT;AC=1871;", "Sulfenic Acid specific probe": "NT=DYn-2;AC=1872;", "Acetone chemical artifact": "NT=MesitylOxide;AC=1873;", "formaldehyde induced modifications": "NT=methylol;AC=1875;", "disuccinimidyl suberate (DSS)": "NT=Xlink:DSS;AC=1876;", "Tris-quenched monolink of DSS/BS3 crosslinker": "NT=Xlink:DSS[259];AC=1877;", "Water-quenched monolink of DSSO crosslinker": "NT=Xlink:DSSO[176];AC=1878;", "Ammonia-quenched monolink of DSSO crosslinker": "NT=Xlink:DSSO[175];AC=1879;", "Tris-quenched monolink of DSSO crosslinker": "NT=Xlink:DSSO[279];AC=1880;", "Alkene fragment of DSSO crosslinker": "NT=Xlink:DSSO[54];AC=1881;", "Thiol fragment of DSSO crosslinker": "NT=Xlink:DSSO[86];AC=1882;", "Sulfenic acid fragment of DSSO crosslinker": "NT=Xlink:DSSO[104];AC=1883;", "disuccinimidyl dibutyric urea CID cleavable cross-link": "NT=Xlink:BuUrBu;AC=1884;", "BuUr fragment of BuUrBu crosslinker": "NT=Xlink:BuUrBu[111];AC=1885;", "Bu fragment of BuUrBu crosslinker": "NT=Xlink:BuUrBu[85];AC=1886;", "Ammonia quenched monolink of BuUrBu crosslinker": "NT=Xlink:BuUrBu[213];AC=1887;", "Water quenched monolink of BuUrBu crosslinker": "NT=Xlink:BuUrBu[214];AC=1888;", "Tris quenched monolink of BuUrBu crosslinker": "NT=Xlink:BuUrBu[317];AC=1889;", "dimethyl 3,3\\'-dithiobispropionimidate": "NT=Xlink:DTBP;AC=1891;", "Disuccinimidyl tartrate crosslinker": "NT=Xlink:DST;AC=1892;", "dithiobis[succinimidylpropionate]": "NT=Xlink:DTSSP;AC=1893;", "succinimidyl 4-[N-maleimidomethyl]cyclohexane-1-carboxylate": "NT=Xlink:SMCC;AC=1895;", "Intact DSSO crosslinker": "NT=Xlink:DSSO[158];AC=1896;", "Intact EGS cross-linker": "NT=Xlink:EGS[226];AC=1897;", "Intact DSS/BS3 crosslinker": "NT=Xlink:DSS[138];AC=1898;", "Intact BuUrBu crosslinker": "NT=Xlink:BuUrBu[196];AC=1899;", "Intact DTBP crosslinker": "NT=Xlink:DTBP[172];AC=1900;", "Intact DST crosslinker": "NT=Xlink:DST[114];AC=1901;", "Intact DSP/DTSSP crosslinker": "NT=Xlink:DTSSP[174];AC=1902;", "Intact SMCC cross-link": "NT=Xlink:SMCC[219];AC=1903;", "Intact BS2-G crosslinker": "NT=Xlink:BS2G[96];AC=1905;", "Ammonium-quenched monolink of BS2-G crosslinker": "NT=Xlink:BS2G[113];AC=1906;", "Water-quenched monolink of BS2-G crosslinker": "NT=Xlink:BS2G[114];AC=1907;", "Tris-quenched monolink of BS2-G crosslinker": "NT=Xlink:BS2G[217];AC=1908;", "bis[sulfosuccinimidyl] glutarate": "NT=Xlink:BS2G;AC=1909;", "Replacement of 3 protons by aluminium": "NT=Cation:Al[III];AC=1910;", "Ammonia quenched monolink of DMP crosslinker": "NT=Xlink:DMP[139];AC=1911;", "Intact DMP crosslinker": "NT=Xlink:DMP[122];AC=1912;", "glyoxal-derived AGE": "NT=glyoxalAGE;AC=1913;", "Methionine oxidation to aspartic semialdehyde": "NT=Met->AspSA;AC=1914;", "In Bachi as Formylaspargine (typo?)": "NT=Formylasparagine;AC=1917;", "aldehyde and ketone modifications": "NT=Carbonyl;AC=1918;", "adduction of aflatoxin B1 Dialdehyde to lysine": "NT=AFB1_Dialdehyde;AC=1920;", "Proline oxidation to 5-hydroxy-2-aminovaleric acid": "NT=Pro->HAVA;AC=1922;", "Tryptophan oxidation to beta-unsaturated-2,4-bis-tryptophandione": "NT=Delta:H(-4)O(2);AC=1923;", "Tryptophan oxidation to hydroxy-bis-tryptophandione": "NT=Delta:H(-4)O(3);AC=1924;", "Tryptophan oxidation to dihydroxy-N-formaylkynurenine": "NT=Delta:O(4);AC=1925;", "methylglyoxal-derived carboxyethyllysine": "NT=Delta:H(4)C(3)O(2);AC=1926;", "methylglyoxal-derived argpyrimidine": "NT=Delta:H(4)C(5)O(1);AC=1927;", "crotonaldehyde-derived dimethyl-FDP-lysine": "NT=Delta:H(10)C(8)O(1);AC=1928;", "methylglyoxal-derived tetrahydropyrimidine": "NT=Delta:H(6)C(7)O(4);AC=1929;", "Pent HexNAc": "NT=Pent(1)HexNAc(1);AC=1931;", "Hex(2) O(3) S": "NT=Hex(2)Sulf(1);AC=1932;", "Hex:1 Pent:2 Me:1": "NT=Hex(1)Pent(2)Me(1);AC=1933;", "HexNAc(2) Sulf": "NT=HexNAc(2)Sulf(1);AC=1934;", "Hex Pent(3) Me": "NT=Hex(1)Pent(3)Me(1);AC=1935;", "Hex(2) Pent(2)": "NT=Hex(2)Pent(2);AC=1936;", "Hex(2) Pent(2) Me": "NT=Hex(2)Pent(2)Me(1);AC=1937;", "Hex(4) HexA": "NT=Hex(4)HexA(1);AC=1938;", "Hex(2) HexNAc Pent HexA": "NT=Hex(2)HexNAc(1)Pent(1)HexA(1);AC=1939;", "Hex(3) HexNAc HexA": "NT=Hex(3)HexNAc(1)HexA(1);AC=1940;", "Hex HexNAc(2) dHex(2) Sulf": "NT=Hex(1)HexNAc(2)dHex(2)Sulf(1);AC=1941;", "HexA(2) HexNAc(3)": "NT=HexA(2)HexNAc(3);AC=1942;", "dHex Hex(4) HexA": "NT=dHex(1)Hex(4)HexA(1);AC=1943;", "Hex(5) HexA": "NT=Hex(5)HexA(1);AC=1944;", "Hex(4) HexA HexNAc": "NT=Hex(4)HexA(1)HexNAc(1);AC=1945;", "dHex(3) Hex(3) HexNAc": "NT=dHex(3)Hex(3)HexNAc(1);AC=1946;", "Hex(6) HexNAc": "NT=Hex(6)HexNAc(1);AC=1947;", "Sulf dHex Hex HexNAc(4)": "NT=Hex(1)HexNAc(4)dHex(1)Sulf(1);AC=1948;", "dHex Hex(2) HexNAc NeuAc(2)": "NT=dHex(1)Hex(2)HexNAc(1)NeuAc(2);AC=1949;", "dHex(3) Hex(3) HexNAc(2)": "NT=dHex(3)Hex(3)HexNAc(2);AC=1950;", "dHex(2) Hex HexNAc(4) Sulf": "NT=dHex(2)Hex(1)HexNAc(4)Sulf(1);AC=1951;", "dHex Hex(2) HexNAc(4) Sulf(2)": "NT=dHex(1)Hex(2)HexNAc(4)Sulf(2);AC=1952;", "Sulf dHex(2) Hex(3) HexNAc(3)": "NT=dHex(2)Hex(3)HexNAc(3)Sulf(1);AC=1954;", "Me dHex(2) Hex(5) HexNAc(2)": "NT=dHex(2)Hex(5)HexNAc(2)Me(1);AC=1955;", "Sulf(2) dHex(2) Hex(2) HexNAc(4)": "NT=dHex(2)Hex(2)HexNAc(4)Sulf(2);AC=1956;", "Hex(9) HexNAc": "NT=Hex(9)HexNAc(1);AC=1957;", "dHex(3) Hex(2) HexNAc(4) Sulf(2)": "NT=dHex(3)Hex(2)HexNAc(4)Sulf(2);AC=1958;", "Hex(4) HexNAc(4) NeuGc": "NT=Hex(4)HexNAc(4)NeuGc(1);AC=1959;", "dHex(4) Hex(3) HexNAc(2) NeuAc(1)": "NT=dHex(4)Hex(3)HexNAc(2)NeuAc(1);AC=1960;", "Hex(3) HexNAc(5) NeuAc(1)": "NT=Hex(3)HexNAc(5)NeuAc(1);AC=1961;", "Hex(10) HexNAc(1)": "NT=Hex(10)HexNAc(1);AC=1962;", "dHex Hex(8) HexNAc(2)": "NT=dHex(1)Hex(8)HexNAc(2);AC=1963;", "Hex(3) HexNAc(4) NeuAc(2)": "NT=Hex(3)HexNAc(4)NeuAc(2);AC=1964;", "dHex(2) Hex(3) HexNAc(4) NeuAc": "NT=dHex(2)Hex(3)HexNAc(4)NeuAc(1);AC=1965;", "dHex(2) Hex(2) HexNAc(6) Sulf": "NT=dHex(2)Hex(2)HexNAc(6)Sulf(1);AC=1966;", "Hex(5) HexNAc(4) NeuAc Ac": "NT=Hex(5)HexNAc(4)NeuAc(1)Ac(1);AC=1967;", "Hex(3) HexNAc(3) NeuAc(3)": "NT=Hex(3)HexNAc(3)NeuAc(3);AC=1968;", "Hex(5) HexNAc(4) NeuAc Ac(2)": "NT=Hex(5)HexNAc(4)NeuAc(1)Ac(2);AC=1969;", "Unidentified modification of 162.1258 found in open search": "NT=Unknown:162;AC=1970;", "Unidentified modification of 176.7462 found in open search": "NT=Unknown:177;AC=1971;", "Unidentified modification of 210.1616 found in open search": "NT=Unknown:210;AC=1972;", "Unidentified modification of 216.1002 found in open search": "NT=Unknown:216;AC=1973;", "Unidentified modification of 234.0742 found in open search": "NT=Unknown:234;AC=1974;", "Unidentified modification of 248.1986 found in open search": "NT=Unknown:248;AC=1975;", "Unidentified modification of 249.981 found in open search": "NT=Unknown:250;AC=1976;", "Unidentified modification of 301.9864 found in open search": "NT=Unknown:302;AC=1977;", "Unidentified modification of 306.0952 found in open search": "NT=Unknown:306;AC=1978;", "Unidentified modification of 420.0506 found in open search": "NT=Unknown:420;AC=1979;", "O-diethylphosphothione": "NT=Diethylphosphothione;AC=1986;", "O-dimethylphosphothione": "NT=Dimethylphosphothione;AC=1987;", "O-methylphosphothione": "NT=monomethylphosphothione;AC=1989;", "Ubiquitin D (FAT10) leaving after chymotrypsin digestion Cys-Ile-Gly-Gly": "NT=CIGG;AC=1990;", "Ubiquitin D (FAT10) leaving after trypsin digestion Gly-Asn-Leu-Leu-Phe-Leu-Ala-Cys-Tyr-Cys-Ile-Gly-Gly": "NT=GNLLFLACYCIGG;AC=1991;", "5-glutamyl serotonin": "NT=serotonylation;AC=1992;", "heavy tris(2,4,6-trimethoxyphenyl)phosphonium acetic acid N-hydroxysuccinimide ester derivative": "NT=TMPP-Ac:13C(9);AC=1993;", "DST crosslinker cleaved by sodium periodate": "NT=Xlink:DST[56];AC=1999;", "NHS-Diazirine crosslinker": "NT=Xlink:SDA;AC=2000;", "carbobenzoxy-L-glutaminyl-glycine": "NT=ZQG;AC=2001;", "O-Dichloroethylphosphate": "NT=Haloxon;AC=2006;", "S-methyl amino phosphinate": "NT=Methamidophos-S;AC=2007;", "O-methyl amino phosphinate": "NT=Methamidophos-O;AC=2008;", "Loss of O2; nitro photochemical decomposition": "NT=Nitrene;AC=2014;", "Super Heavy Tandem Mass Tag": "NT=shTMT;AC=2015;", "TMTpro 16plex Tandem Mass Tag": "NT=TMTpro;AC=2016;", "Native TMTpro Tandem Mass Tag": "NT=TMTpro_zero;AC=2017;", "carbodiimide crosslinker": "NT=Xlink:EDC;AC=2018;", "Intact disulfide bridge": "NT=Xlink:Disulfide;AC=2020;", "Glycosylation of Serine/Threonine residues with KDO": "NT=Ser/Thr-KDO;AC=2022;", "andrographolide with the loss of H2O": "NT=Andro-H2O;AC=2025;", "Isopeptide bond formation with loss of ammonia": "NT=Xlink:KQisopeptide;AC=2026;", "Photo-induced histidine adduct": "NT=His+O(2);AC=2027;", "A3G3S3": "NT=Hex(6)HexNAc(5)NeuAc(3);AC=2028;", "A4G4": "NT=Hex(7)HexNAc(6);AC=2029;", "Photo-induced Methionine Adduct": "NT=Met+O(2);AC=2033;", "Photo-induced Glycine Adduct": "NT=Gly+O(2);AC=2034;", "Photo-induced Proline adduct": "NT=Pro+O(2);AC=2035;", "Photo-induced Lysine adduct": "NT=Lys+O(2);AC=2036;", "Photo-induced Glutamate adduct": "NT=Glu+O(2);AC=2037;", "addition of lophotoxin to tyrosine": "NT=LTX+Lophotoxin;AC=2039;", "MBS_233p24 plus peptide 1250p53": "NT=MBS+peptide;AC=2040;", "3-hydroxybenzyl phosphate": "NT=3-hydroxybenzyl-phosphate;AC=2041;", "phenyl phosphate": "NT=phenyl-phosphate;AC=2042;", "RNA-protein UVC-crosslinked, hydrofluoride-digested uridine adduct": "NT=RBS-ID_Uridine;AC=2044;", "Super Heavy TMTpro": "NT=shTMTpro;AC=2050;", "Intact DADPS Biotin Alkyne tag": "NT=Biotin:Aha-DADPS;AC=2052;", "Intact PC Biotin Alkyne tag": "NT=Biotin:Aha-PC;AC=2053;", "RNA-protein UVA-crosslinked, hydrofluoride-digested 4-thiouridine adduct": "NT=pRBS-ID_4-thiouridine;AC=2054;", "RNA-protein UVA-crosslinked, hydrofluoride-digested 6-thioguanosine adduct": "NT=pRBS-ID_6-thioguanosine;AC=2055;", "Iodoacetamido-LC-Phosphonic Acid derivative": "NT=6C-CysPAT;AC=2057;", "Intact DSPP/TBDSPP crosslinker": "NT=Xlink:DSPP[210];AC=2058;", "Water-quenched monolink of DSPP/TBDSPP crosslinker": "NT=Xlink:DSPP[228];AC=2059;", "Tris-quenched monolink of DSPP/TBDSPP crosslinker": "NT=Xlink:DSPP[331];AC=2060;", "Ammonia-quenched monolink of DSPP/TBDSPP crosslinker": "NT=Xlink:DSPP[226];AC=2061;", "desthiobiotinylation of cysteine with DBIA probe": "NT=DBIA;AC=2062;", "Monomodification of N\u03b3-propargyl-L-Gln probe with clicked desthiobiotin-azide": "NT=Mono_N\u03b3-propargyl-L-Gln_desthiobiotin;AC=2067;", "Dimodification of L-Glu and N\u03b3-propargyl-L-Gln probe with clicked desthiobiotin-azide": "NT=Di_L-Glu_N\u03b3-propargyl-L-Gln_desthiobiotin;AC=2068;", "Dimodification of L-Gln and N\u03b3-propargyl-L-Gln probe with clicked desthiobiotin-azide": "NT=Di_L-Gln_N\u03b3-propargyl-L-Gln_desthiobiotin;AC=2069;", "Monomodification with glutamine": "NT=L-Gln;AC=2070;", "Glyceroylation": "NT=Glyceroyl;AC=2072;", "probe; AMP analogon": "NT=N6pAMP;AC=2073;", "Dabcyl C2 Maleimide": "NT=DabMal;AC=2074;", "Thiol blocking reagent": "NT=NBF;AC=2079;", "Dimedone-Based Chemical Probes": "NT=DCP;AC=2080;", "Ethynlation of cysteine residues": "NT=Ethynylation;AC=2081;",
\ No newline at end of file
diff --git a/.history/unimod_dict_20240927142133.json b/.history/unimod_dict_20240927142133.json
new file mode 100644
index 0000000..83a5ece
--- /dev/null
+++ b/.history/unimod_dict_20240927142133.json
@@ -0,0 +1 @@
+{"Acetyl": "NT=Acetyl;AC=1;", "Amidated": "NT=Amidated;AC=2;", "Biotin": "NT=Biotin;AC=3;", "Carbamidomethyl": "NT=Carbamidomethyl;AC=4;", "Carbamyl": "NT=Carbamyl;AC=5;", "Carboxymethyl": "NT=Carboxymethyl;AC=6;", "Deamidated": "NT=Deamidated;AC=7;", "ICAT-G": "NT=ICAT-G;AC=8;", "ICAT-G:2H(8)": "NT=ICAT-G:2H(8);AC=9;", "Met->Hse": "NT=Met->Hse;AC=10;", "Met->Hsl": "NT=Met->Hsl;AC=11;", "ICAT-D:2H(8)": "NT=ICAT-D:2H(8);AC=12;", "ICAT-D": "NT=ICAT-D;AC=13;", "NIPCAM": "NT=NIPCAM;AC=17;", "PEO-Iodoacetyl-LC-Biotin": "NT=PEO-Iodoacetyl-LC-Biotin;AC=20;", "Phospho": "NT=Phospho;AC=21;", "Dehydrated": "NT=Dehydrated;AC=23;", "Propionamide": "NT=Propionamide;AC=24;", "Pyridylacetyl": "NT=Pyridylacetyl;AC=25;", "Pyro-carbamidomethyl": "NT=Pyro-carbamidomethyl;AC=26;", "Glu->pyro-Glu": "NT=Glu->pyro-Glu;AC=27;", "Gln->pyro-Glu": "NT=Gln->pyro-Glu;AC=28;", "SMA": "NT=SMA;AC=29;", "Cation:Na": "NT=Cation:Na;AC=30;", "Pyridylethyl": "NT=Pyridylethyl;AC=31;", "Methyl": "NT=Methyl;AC=34;", "Oxidation": "NT=Oxidation;AC=35;", "Dimethyl": "NT=Dimethyl;AC=36;", "Trimethyl": "NT=Trimethyl;AC=37;", "Methylthio": "NT=Methylthio;AC=39;", "Sulfo": "NT=Sulfo;AC=40;", "Hex": "NT=Hex;AC=41;", "Lipoyl": "NT=Lipoyl;AC=42;", "HexNAc": "NT=HexNAc;AC=43;", "Farnesyl": "NT=Farnesyl;AC=44;", "Myristoyl": "NT=Myristoyl;AC=45;", "PyridoxalPhosphate": "NT=PyridoxalPhosphate;AC=46;", "Palmitoyl": "NT=Palmitoyl;AC=47;", "GeranylGeranyl": "NT=GeranylGeranyl;AC=48;", "Phosphopantetheine": "NT=Phosphopantetheine;AC=49;", "FAD": "NT=FAD;AC=50;", "Tripalmitate": "NT=Tripalmitate;AC=51;", "Guanidinyl": "NT=Guanidinyl;AC=52;", "HNE": "NT=HNE;AC=53;", "Glucuronyl": "NT=Glucuronyl;AC=54;", "Glutathione": "NT=Glutathione;AC=55;", "Acetyl:2H(3)": "NT=Acetyl:2H(3);AC=56;", "Propionyl": "NT=Propionyl;AC=58;", "Propionyl:13C(3)": "NT=Propionyl:13C(3);AC=59;", "GIST-Quat": "NT=GIST-Quat;AC=60;", "GIST-Quat:2H(3)": "NT=GIST-Quat:2H(3);AC=61;", "GIST-Quat:2H(6)": "NT=GIST-Quat:2H(6);AC=62;", "GIST-Quat:2H(9)": "NT=GIST-Quat:2H(9);AC=63;", "Succinyl": "NT=Succinyl;AC=64;", "Succinyl:2H(4)": "NT=Succinyl:2H(4);AC=65;", "Succinyl:13C(4)": "NT=Succinyl:13C(4);AC=66;", "Iminobiotin": "NT=Iminobiotin;AC=89;", "ESP": "NT=ESP;AC=90;", "ESP:2H(10)": "NT=ESP:2H(10);AC=91;", "NHS-LC-Biotin": "NT=NHS-LC-Biotin;AC=92;", "EDT-maleimide-PEO-biotin": "NT=EDT-maleimide-PEO-biotin;AC=93;", "IMID": "NT=IMID;AC=94;", "IMID:2H(4)": "NT=IMID:2H(4);AC=95;", "Propionamide:2H(3)": "NT=Propionamide:2H(3);AC=97;", "ICAT-C": "NT=ICAT-C;AC=105;", "ICAT-C:13C(9)": "NT=ICAT-C:13C(9);AC=106;", "FormylMet": "NT=FormylMet;AC=107;", "Nethylmaleimide": "NT=Nethylmaleimide;AC=108;", "OxLysBiotinRed": "NT=OxLysBiotinRed;AC=112;", "OxLysBiotin": "NT=OxLysBiotin;AC=113;", "OxProBiotinRed": "NT=OxProBiotinRed;AC=114;", "OxProBiotin": "NT=OxProBiotin;AC=115;", "OxArgBiotin": "NT=OxArgBiotin;AC=116;", "OxArgBiotinRed": "NT=OxArgBiotinRed;AC=117;", "EDT-iodoacetyl-PEO-biotin": "NT=EDT-iodoacetyl-PEO-biotin;AC=118;", "IBTP": "NT=IBTP;AC=119;", "GG": "NT=GG;AC=121;", "Formyl": "NT=Formyl;AC=122;", "ICAT-H": "NT=ICAT-H;AC=123;", "ICAT-H:13C(6)": "NT=ICAT-H:13C(6);AC=124;", "Xlink:DTSSP[88]": "NT=Xlink:DTSSP[88];AC=126;", "Fluoro": "NT=Fluoro;AC=127;", "Fluorescein": "NT=Fluorescein;AC=128;", "Iodo": "NT=Iodo;AC=129;", "Diiodo": "NT=Diiodo;AC=130;", "Triiodo": "NT=Triiodo;AC=131;", "Myristoleyl": "NT=Myristoleyl;AC=134;", "Myristoyl+Delta:H(-4)": "NT=Myristoyl+Delta:H(-4);AC=135;", "Benzoyl": "NT=Benzoyl;AC=136;", "Hex(5)HexNAc(2)": "NT=Hex(5)HexNAc(2);AC=137;", "Dansyl": "NT=Dansyl;AC=139;", "a-type-ion": "NT=a-type-ion;AC=140;", "Amidine": "NT=Amidine;AC=141;", "HexNAc(1)dHex(1)": "NT=HexNAc(1)dHex(1);AC=142;", "HexNAc(2)": "NT=HexNAc(2);AC=143;", "Hex(3)": "NT=Hex(3);AC=144;", "HexNAc(1)dHex(2)": "NT=HexNAc(1)dHex(2);AC=145;", "Hex(1)HexNAc(1)dHex(1)": "NT=Hex(1)HexNAc(1)dHex(1);AC=146;", "HexNAc(2)dHex(1)": "NT=HexNAc(2)dHex(1);AC=147;", "Hex(1)HexNAc(2)": "NT=Hex(1)HexNAc(2);AC=148;", "Hex(1)HexNAc(1)NeuAc(1)": "NT=Hex(1)HexNAc(1)NeuAc(1);AC=149;", "HexNAc(2)dHex(2)": "NT=HexNAc(2)dHex(2);AC=150;", "Hex(1)HexNAc(2)Pent(1)": "NT=Hex(1)HexNAc(2)Pent(1);AC=151;", "Hex(1)HexNAc(2)dHex(1)": "NT=Hex(1)HexNAc(2)dHex(1);AC=152;", "Hex(2)HexNAc(2)": "NT=Hex(2)HexNAc(2);AC=153;", "Hex(3)HexNAc(1)Pent(1)": "NT=Hex(3)HexNAc(1)Pent(1);AC=154;", "Hex(1)HexNAc(2)dHex(1)Pent(1)": "NT=Hex(1)HexNAc(2)dHex(1)Pent(1);AC=155;", "Hex(1)HexNAc(2)dHex(2)": "NT=Hex(1)HexNAc(2)dHex(2);AC=156;", "Hex(2)HexNAc(2)Pent(1)": "NT=Hex(2)HexNAc(2)Pent(1);AC=157;", "Hex(2)HexNAc(2)dHex(1)": "NT=Hex(2)HexNAc(2)dHex(1);AC=158;", "Hex(3)HexNAc(2)": "NT=Hex(3)HexNAc(2);AC=159;", "Hex(1)HexNAc(1)NeuAc(2)": "NT=Hex(1)HexNAc(1)NeuAc(2);AC=160;", "Hex(3)HexNAc(2)Phos(1)": "NT=Hex(3)HexNAc(2)Phos(1);AC=161;", "Delta:S(-1)Se(1)": "NT=Delta:S(-1)Se(1);AC=162;", "Delta:H(-1)N(-1)18O(1)": "NT=Delta:H(-1)N(-1)18O(1);AC=170;", "NBS:13C(6)": "NT=NBS:13C(6);AC=171;", "NBS": "NT=NBS;AC=172;", "BHT": "NT=BHT;AC=176;", "DAET": "NT=DAET;AC=178;", "Label:13C(9)": "NT=Label:13C(9);AC=184;", "Label:13C(9)+Phospho": "NT=Label:13C(9)+Phospho;AC=185;", "HPG": "NT=HPG;AC=186;", "2HPG": "NT=2HPG;AC=187;", "Label:13C(6)": "NT=Label:13C(6);AC=188;", "Label:18O(2)": "NT=Label:18O(2);AC=193;", "AccQTag": "NT=AccQTag;AC=194;", "QAT": "NT=QAT;AC=195;", "QAT:2H(3)": "NT=QAT:2H(3);AC=196;", "EQAT": "NT=EQAT;AC=197;", "EQAT:2H(5)": "NT=EQAT:2H(5);AC=198;", "Dimethyl:2H(4)": "NT=Dimethyl:2H(4);AC=199;", "Ethanedithiol": "NT=Ethanedithiol;AC=200;", "Delta:H(6)C(6)O(1)": "NT=Delta:H(6)C(6)O(1);AC=205;", "Delta:H(4)C(3)O(1)": "NT=Delta:H(4)C(3)O(1);AC=206;", "Delta:H(2)C(3)": "NT=Delta:H(2)C(3);AC=207;", "Delta:H(4)C(6)": "NT=Delta:H(4)C(6);AC=208;", "Delta:H(8)C(6)O(2)": "NT=Delta:H(8)C(6)O(2);AC=209;", "NEIAA": "NT=NEIAA;AC=211;", "NEIAA:2H(5)": "NT=NEIAA:2H(5);AC=212;", "ADP-Ribosyl": "NT=ADP-Ribosyl;AC=213;", "iTRAQ4plex": "NT=iTRAQ4plex;AC=214;", "IGBP": "NT=IGBP;AC=243;", "Crotonaldehyde": "NT=Crotonaldehyde;AC=253;", "Delta:H(2)C(2)": "NT=Delta:H(2)C(2);AC=254;", "Delta:H(4)C(2)": "NT=Delta:H(4)C(2);AC=255;", "Delta:H(4)C(3)": "NT=Delta:H(4)C(3);AC=256;", "Label:18O(1)": "NT=Label:18O(1);AC=258;", "Label:13C(6)15N(2)": "NT=Label:13C(6)15N(2);AC=259;", "Thiophospho": "NT=Thiophospho;AC=260;", "SPITC": "NT=SPITC;AC=261;", "Label:2H(3)": "NT=Label:2H(3);AC=262;", "PET": "NT=PET;AC=264;", "Label:13C(6)15N(4)": "NT=Label:13C(6)15N(4);AC=267;", "Label:13C(5)15N(1)": "NT=Label:13C(5)15N(1);AC=268;", "Label:13C(9)15N(1)": "NT=Label:13C(9)15N(1);AC=269;", "Cytopiloyne": "NT=Cytopiloyne;AC=270;", "Cytopiloyne+water": "NT=Cytopiloyne+water;AC=271;", "CAF": "NT=CAF;AC=272;", "Nitrosyl": "NT=Nitrosyl;AC=275;", "AEBS": "NT=AEBS;AC=276;", "Ethanolyl": "NT=Ethanolyl;AC=278;", "Ethyl": "NT=Ethyl;AC=280;", "CoenzymeA": "NT=CoenzymeA;AC=281;", "Methyl:2H(2)": "NT=Methyl:2H(2);AC=284;", "SulfanilicAcid": "NT=SulfanilicAcid;AC=285;", "SulfanilicAcid:13C(6)": "NT=SulfanilicAcid:13C(6);AC=286;", "Trp->Oxolactone": "NT=Trp->Oxolactone;AC=288;", "Biotin-PEO-Amine": "NT=Biotin-PEO-Amine;AC=289;", "Biotin-HPDP": "NT=Biotin-HPDP;AC=290;", "Delta:Hg(1)": "NT=Delta:Hg(1);AC=291;", "IodoU-AMP": "NT=IodoU-AMP;AC=292;", "CAMthiopropanoyl": "NT=CAMthiopropanoyl;AC=293;", "IED-Biotin": "NT=IED-Biotin;AC=294;", "dHex": "NT=dHex;AC=295;", "Methyl:2H(3)": "NT=Methyl:2H(3);AC=298;", "Carboxy": "NT=Carboxy;AC=299;", "Bromobimane": "NT=Bromobimane;AC=301;", "Menadione": "NT=Menadione;AC=302;", "DeStreak": "NT=DeStreak;AC=303;", "dHex(1)Hex(3)HexNAc(4)": "NT=dHex(1)Hex(3)HexNAc(4);AC=305;", "dHex(1)Hex(4)HexNAc(4)": "NT=dHex(1)Hex(4)HexNAc(4);AC=307;", "dHex(1)Hex(5)HexNAc(4)": "NT=dHex(1)Hex(5)HexNAc(4);AC=308;", "Hex(3)HexNAc(4)": "NT=Hex(3)HexNAc(4);AC=309;", "Hex(4)HexNAc(4)": "NT=Hex(4)HexNAc(4);AC=310;", "Hex(5)HexNAc(4)": "NT=Hex(5)HexNAc(4);AC=311;", "Cysteinyl": "NT=Cysteinyl;AC=312;", "Lys-loss": "NT=Lys-loss;AC=313;", "Nmethylmaleimide": "NT=Nmethylmaleimide;AC=314;", "DimethylpyrroleAdduct": "NT=DimethylpyrroleAdduct;AC=316;", "Delta:H(2)C(5)": "NT=Delta:H(2)C(5);AC=318;", "Delta:H(2)C(3)O(1)": "NT=Delta:H(2)C(3)O(1);AC=319;", "Nethylmaleimide+water": "NT=Nethylmaleimide+water;AC=320;", "Xlink:B10621": "NT=Xlink:B10621;AC=323;", "Xlink:DTBP[87]": "NT=Xlink:DTBP[87];AC=324;", "FP-Biotin": "NT=FP-Biotin;AC=325;", "Delta:H(4)C(2)O(-1)S(1)": "NT=Delta:H(4)C(2)O(-1)S(1);AC=327;", "Methyl:2H(3)13C(1)": "NT=Methyl:2H(3)13C(1);AC=329;", "Dimethyl:2H(6)13C(2)": "NT=Dimethyl:2H(6)13C(2);AC=330;", "Thiophos-S-S-biotin": "NT=Thiophos-S-S-biotin;AC=332;", "Can-FP-biotin": "NT=Can-FP-biotin;AC=333;", "HNE+Delta:H(2)": "NT=HNE+Delta:H(2);AC=335;", "Methylamine": "NT=Methylamine;AC=337;", "Bromo": "NT=Bromo;AC=340;", "Amino": "NT=Amino;AC=342;", "Argbiotinhydrazide": "NT=Argbiotinhydrazide;AC=343;", "Arg->GluSA": "NT=Arg->GluSA;AC=344;", "Trioxidation": "NT=Trioxidation;AC=345;", "His->Asn": "NT=His->Asn;AC=348;", "His->Asp": "NT=His->Asp;AC=349;", "Trp->Hydroxykynurenin": "NT=Trp->Hydroxykynurenin;AC=350;", "Trp->Kynurenin": "NT=Trp->Kynurenin;AC=351;", "Lys->Allysine": "NT=Lys->Allysine;AC=352;", "Lysbiotinhydrazide": "NT=Lysbiotinhydrazide;AC=353;", "Nitro": "NT=Nitro;AC=354;", "probiotinhydrazide": "NT=probiotinhydrazide;AC=357;", "Pro->pyro-Glu": "NT=Pro->pyro-Glu;AC=359;", "Pro->Pyrrolidinone": "NT=Pro->Pyrrolidinone;AC=360;", "Thrbiotinhydrazide": "NT=Thrbiotinhydrazide;AC=361;", "Diisopropylphosphate": "NT=Diisopropylphosphate;AC=362;", "Isopropylphospho": "NT=Isopropylphospho;AC=363;", "ICPL:13C(6)": "NT=ICPL:13C(6);AC=364;", "ICPL": "NT=ICPL;AC=365;", "Deamidated:18O(1)": "NT=Deamidated:18O(1);AC=366;", "Cys->Dha": "NT=Cys->Dha;AC=368;", "Pro->Pyrrolidone": "NT=Pro->Pyrrolidone;AC=369;", "HMVK": "NT=HMVK;AC=371;", "Arg->Orn": "NT=Arg->Orn;AC=372;", "Dehydro": "NT=Dehydro;AC=374;", "Diphthamide": "NT=Diphthamide;AC=375;", "Hydroxyfarnesyl": "NT=Hydroxyfarnesyl;AC=376;", "Diacylglycerol": "NT=Diacylglycerol;AC=377;", "Carboxyethyl": "NT=Carboxyethyl;AC=378;", "Hypusine": "NT=Hypusine;AC=379;", "Retinylidene": "NT=Retinylidene;AC=380;", "Lys->AminoadipicAcid": "NT=Lys->AminoadipicAcid;AC=381;", "Cys->PyruvicAcid": "NT=Cys->PyruvicAcid;AC=382;", "Ammonia-loss": "NT=Ammonia-loss;AC=385;", "Phycocyanobilin": "NT=Phycocyanobilin;AC=387;", "Phycoerythrobilin": "NT=Phycoerythrobilin;AC=388;", "Phytochromobilin": "NT=Phytochromobilin;AC=389;", "Heme": "NT=Heme;AC=390;", "Molybdopterin": "NT=Molybdopterin;AC=391;", "Quinone": "NT=Quinone;AC=392;", "Glucosylgalactosyl": "NT=Glucosylgalactosyl;AC=393;", "GPIanchor": "NT=GPIanchor;AC=394;", "PhosphoribosyldephosphoCoA": "NT=PhosphoribosyldephosphoCoA;AC=395;", "GlycerylPE": "NT=GlycerylPE;AC=396;", "Triiodothyronine": "NT=Triiodothyronine;AC=397;", "Thyroxine": "NT=Thyroxine;AC=398;", "Tyr->Dha": "NT=Tyr->Dha;AC=400;", "Didehydro": "NT=Didehydro;AC=401;", "Cys->Oxoalanine": "NT=Cys->Oxoalanine;AC=402;", "Ser->LacticAcid": "NT=Ser->LacticAcid;AC=403;", "Phosphoadenosine": "NT=Phosphoadenosine;AC=405;", "Hydroxycinnamyl": "NT=Hydroxycinnamyl;AC=407;", "Glycosyl": "NT=Glycosyl;AC=408;", "FMNH": "NT=FMNH;AC=409;", "Archaeol": "NT=Archaeol;AC=410;", "Phenylisocyanate": "NT=Phenylisocyanate;AC=411;", "Phenylisocyanate:2H(5)": "NT=Phenylisocyanate:2H(5);AC=412;", "Phosphoguanosine": "NT=Phosphoguanosine;AC=413;", "Hydroxymethyl": "NT=Hydroxymethyl;AC=414;", "MolybdopterinGD+Delta:S(-1)Se(1)": "NT=MolybdopterinGD+Delta:S(-1)Se(1);AC=415;", "Dipyrrolylmethanemethyl": "NT=Dipyrrolylmethanemethyl;AC=416;", "PhosphoUridine": "NT=PhosphoUridine;AC=417;", "Glycerophospho": "NT=Glycerophospho;AC=419;", "Carboxy->Thiocarboxy": "NT=Carboxy->Thiocarboxy;AC=420;", "Sulfide": "NT=Sulfide;AC=421;", "PyruvicAcidIminyl": "NT=PyruvicAcidIminyl;AC=422;", "Delta:Se(1)": "NT=Delta:Se(1);AC=423;", "MolybdopterinGD": "NT=MolybdopterinGD;AC=424;", "Dioxidation": "NT=Dioxidation;AC=425;", "Octanoyl": "NT=Octanoyl;AC=426;", "PhosphoHexNAc": "NT=PhosphoHexNAc;AC=428;", "PhosphoHex": "NT=PhosphoHex;AC=429;", "Palmitoleyl": "NT=Palmitoleyl;AC=431;", "Cholesterol": "NT=Cholesterol;AC=432;", "Didehydroretinylidene": "NT=Didehydroretinylidene;AC=433;", "CHDH": "NT=CHDH;AC=434;", "Methylpyrroline": "NT=Methylpyrroline;AC=435;", "Hydroxyheme": "NT=Hydroxyheme;AC=436;", "MicrocinC7": "NT=MicrocinC7;AC=437;", "Cyano": "NT=Cyano;AC=438;", "Diironsubcluster": "NT=Diironsubcluster;AC=439;", "Amidino": "NT=Amidino;AC=440;", "FMN": "NT=FMN;AC=442;", "FMNC": "NT=FMNC;AC=443;", "CuSMo": "NT=CuSMo;AC=444;", "Hydroxytrimethyl": "NT=Hydroxytrimethyl;AC=445;", "Deoxy": "NT=Deoxy;AC=447;", "Microcin": "NT=Microcin;AC=448;", "Decanoyl": "NT=Decanoyl;AC=449;", "Glu": "NT=Glu;AC=450;", "GluGlu": "NT=GluGlu;AC=451;", "GluGluGlu": "NT=GluGluGlu;AC=452;", "GluGluGluGlu": "NT=GluGluGluGlu;AC=453;", "HexN": "NT=HexN;AC=454;", "Xlink:DMP[154]": "NT=Xlink:DMP[154];AC=455;", "Xlink:DMP": "NT=Xlink:DMP;AC=456;", "NDA": "NT=NDA;AC=457;", "SPITC:13C(6)": "NT=SPITC:13C(6);AC=464;", "AEC-MAEC": "NT=AEC-MAEC;AC=472;", "TMAB": "NT=TMAB;AC=476;", "TMAB:2H(9)": "NT=TMAB:2H(9);AC=477;", "FTC": "NT=FTC;AC=478;", "Label:2H(4)": "NT=Label:2H(4);AC=481;", "DHP": "NT=DHP;AC=488;", "Hep": "NT=Hep;AC=490;", "BADGE": "NT=BADGE;AC=493;", "CyDye-Cy3": "NT=CyDye-Cy3;AC=494;", "CyDye-Cy5": "NT=CyDye-Cy5;AC=495;", "BHTOH": "NT=BHTOH;AC=498;", "IGBP:13C(2)": "NT=IGBP:13C(2);AC=499;", "Nmethylmaleimide+water": "NT=Nmethylmaleimide+water;AC=500;", "PyMIC": "NT=PyMIC;AC=501;", "LG-lactam-K": "NT=LG-lactam-K;AC=503;", "LG-Hlactam-K": "NT=LG-Hlactam-K;AC=504;", "LG-lactam-R": "NT=LG-lactam-R;AC=505;", "LG-Hlactam-R": "NT=LG-Hlactam-R;AC=506;", "Dimethyl:2H(4)13C(2)": "NT=Dimethyl:2H(4)13C(2);AC=510;", "Hex(2)": "NT=Hex(2);AC=512;", "C8-QAT": "NT=C8-QAT;AC=513;", "PropylNAGthiazoline": "NT=PropylNAGthiazoline;AC=514;", "FNEM": "NT=FNEM;AC=515;", "Diethyl": "NT=Diethyl;AC=518;", "BisANS": "NT=BisANS;AC=519;", "Piperidine": "NT=Piperidine;AC=520;", "Maleimide-PEO2-Biotin": "NT=Maleimide-PEO2-Biotin;AC=522;", "Sulfo-NHS-LC-LC-Biotin": "NT=Sulfo-NHS-LC-LC-Biotin;AC=523;", "CLIP_TRAQ_2": "NT=CLIP_TRAQ_2;AC=525;", "Dethiomethyl": "NT=Dethiomethyl;AC=526;", "Methyl+Deamidated": "NT=Methyl+Deamidated;AC=528;", "Delta:H(5)C(2)": "NT=Delta:H(5)C(2);AC=529;", "Cation:K": "NT=Cation:K;AC=530;", "Cation:Cu[I]": "NT=Cation:Cu[I];AC=531;", "iTRAQ4plex114": "NT=iTRAQ4plex114;AC=532;", "iTRAQ4plex115": "NT=iTRAQ4plex115;AC=533;", "Dibromo": "NT=Dibromo;AC=534;", "LRGG": "NT=LRGG;AC=535;", "CLIP_TRAQ_3": "NT=CLIP_TRAQ_3;AC=536;", "CLIP_TRAQ_4": "NT=CLIP_TRAQ_4;AC=537;", "Biotin:Cayman-10141": "NT=Biotin:Cayman-10141;AC=538;", "Biotin:Cayman-10013": "NT=Biotin:Cayman-10013;AC=539;", "Ala->Ser": "NT=Ala->Ser;AC=540;", "Ala->Thr": "NT=Ala->Thr;AC=541;", "Ala->Asp": "NT=Ala->Asp;AC=542;", "Ala->Pro": "NT=Ala->Pro;AC=543;", "Ala->Gly": "NT=Ala->Gly;AC=544;", "Ala->Glu": "NT=Ala->Glu;AC=545;", "Ala->Val": "NT=Ala->Val;AC=546;", "Cys->Phe": "NT=Cys->Phe;AC=547;", "Cys->Ser": "NT=Cys->Ser;AC=548;", "Cys->Trp": "NT=Cys->Trp;AC=549;", "Cys->Tyr": "NT=Cys->Tyr;AC=550;", "Cys->Arg": "NT=Cys->Arg;AC=551;", "Cys->Gly": "NT=Cys->Gly;AC=552;", "Asp->Ala": "NT=Asp->Ala;AC=553;", "Asp->His": "NT=Asp->His;AC=554;", "Asp->Asn": "NT=Asp->Asn;AC=555;", "Asp->Gly": "NT=Asp->Gly;AC=556;", "Asp->Tyr": "NT=Asp->Tyr;AC=557;", "Asp->Glu": "NT=Asp->Glu;AC=558;", "Asp->Val": "NT=Asp->Val;AC=559;", "Glu->Ala": "NT=Glu->Ala;AC=560;", "Glu->Gln": "NT=Glu->Gln;AC=561;", "Glu->Asp": "NT=Glu->Asp;AC=562;", "Glu->Lys": "NT=Glu->Lys;AC=563;", "Glu->Gly": "NT=Glu->Gly;AC=564;", "Glu->Val": "NT=Glu->Val;AC=565;", "Phe->Ser": "NT=Phe->Ser;AC=566;", "Phe->Cys": "NT=Phe->Cys;AC=567;", "Phe->Xle": "NT=Phe->Xle;AC=568;", "Phe->Tyr": "NT=Phe->Tyr;AC=569;", "Phe->Val": "NT=Phe->Val;AC=570;", "Gly->Ala": "NT=Gly->Ala;AC=571;", "Gly->Ser": "NT=Gly->Ser;AC=572;", "Gly->Trp": "NT=Gly->Trp;AC=573;", "Gly->Glu": "NT=Gly->Glu;AC=574;", "Gly->Val": "NT=Gly->Val;AC=575;", "Gly->Asp": "NT=Gly->Asp;AC=576;", "Gly->Cys": "NT=Gly->Cys;AC=577;", "Gly->Arg": "NT=Gly->Arg;AC=578;", "His->Pro": "NT=His->Pro;AC=580;", "His->Tyr": "NT=His->Tyr;AC=581;", "His->Gln": "NT=His->Gln;AC=582;", "His->Arg": "NT=His->Arg;AC=584;", "His->Xle": "NT=His->Xle;AC=585;", "Xle->Thr": "NT=Xle->Thr;AC=588;", "Xle->Asn": "NT=Xle->Asn;AC=589;", "Xle->Lys": "NT=Xle->Lys;AC=590;", "Lys->Thr": "NT=Lys->Thr;AC=594;", "Lys->Asn": "NT=Lys->Asn;AC=595;", "Lys->Glu": "NT=Lys->Glu;AC=596;", "Lys->Gln": "NT=Lys->Gln;AC=597;", "Lys->Met": "NT=Lys->Met;AC=598;", "Lys->Arg": "NT=Lys->Arg;AC=599;", "Lys->Xle": "NT=Lys->Xle;AC=600;", "Xle->Ser": "NT=Xle->Ser;AC=601;", "Xle->Phe": "NT=Xle->Phe;AC=602;", "Xle->Trp": "NT=Xle->Trp;AC=603;", "Xle->Pro": "NT=Xle->Pro;AC=604;", "Xle->Val": "NT=Xle->Val;AC=605;", "Xle->His": "NT=Xle->His;AC=606;", "Xle->Gln": "NT=Xle->Gln;AC=607;", "Xle->Met": "NT=Xle->Met;AC=608;", "Xle->Arg": "NT=Xle->Arg;AC=609;", "Met->Thr": "NT=Met->Thr;AC=610;", "Met->Arg": "NT=Met->Arg;AC=611;", "Met->Lys": "NT=Met->Lys;AC=613;", "Met->Xle": "NT=Met->Xle;AC=614;", "Met->Val": "NT=Met->Val;AC=615;", "Asn->Ser": "NT=Asn->Ser;AC=616;", "Asn->Thr": "NT=Asn->Thr;AC=617;", "Asn->Lys": "NT=Asn->Lys;AC=618;", "Asn->Tyr": "NT=Asn->Tyr;AC=619;", "Asn->His": "NT=Asn->His;AC=620;", "Asn->Asp": "NT=Asn->Asp;AC=621;", "Asn->Xle": "NT=Asn->Xle;AC=622;", "Pro->Ser": "NT=Pro->Ser;AC=623;", "Pro->Ala": "NT=Pro->Ala;AC=624;", "Pro->His": "NT=Pro->His;AC=625;", "Pro->Gln": "NT=Pro->Gln;AC=626;", "Pro->Thr": "NT=Pro->Thr;AC=627;", "Pro->Arg": "NT=Pro->Arg;AC=628;", "Pro->Xle": "NT=Pro->Xle;AC=629;", "Gln->Pro": "NT=Gln->Pro;AC=630;", "Gln->Lys": "NT=Gln->Lys;AC=631;", "Gln->Glu": "NT=Gln->Glu;AC=632;", "Gln->His": "NT=Gln->His;AC=633;", "Gln->Arg": "NT=Gln->Arg;AC=634;", "Gln->Xle": "NT=Gln->Xle;AC=635;", "Arg->Ser": "NT=Arg->Ser;AC=636;", "Arg->Trp": "NT=Arg->Trp;AC=637;", "Arg->Thr": "NT=Arg->Thr;AC=638;", "Arg->Pro": "NT=Arg->Pro;AC=639;", "Arg->Lys": "NT=Arg->Lys;AC=640;", "Arg->His": "NT=Arg->His;AC=641;", "Arg->Gln": "NT=Arg->Gln;AC=642;", "Arg->Met": "NT=Arg->Met;AC=643;", "Arg->Cys": "NT=Arg->Cys;AC=644;", "Arg->Xle": "NT=Arg->Xle;AC=645;", "Arg->Gly": "NT=Arg->Gly;AC=646;", "Ser->Phe": "NT=Ser->Phe;AC=647;", "Ser->Ala": "NT=Ser->Ala;AC=648;", "Ser->Trp": "NT=Ser->Trp;AC=649;", "Ser->Thr": "NT=Ser->Thr;AC=650;", "Ser->Asn": "NT=Ser->Asn;AC=651;", "Ser->Pro": "NT=Ser->Pro;AC=652;", "Ser->Tyr": "NT=Ser->Tyr;AC=653;", "Ser->Cys": "NT=Ser->Cys;AC=654;", "Ser->Arg": "NT=Ser->Arg;AC=655;", "Ser->Xle": "NT=Ser->Xle;AC=656;", "Ser->Gly": "NT=Ser->Gly;AC=657;", "Thr->Ser": "NT=Thr->Ser;AC=658;", "Thr->Ala": "NT=Thr->Ala;AC=659;", "Thr->Asn": "NT=Thr->Asn;AC=660;", "Thr->Lys": "NT=Thr->Lys;AC=661;", "Thr->Pro": "NT=Thr->Pro;AC=662;", "Thr->Met": "NT=Thr->Met;AC=663;", "Thr->Xle": "NT=Thr->Xle;AC=664;", "Thr->Arg": "NT=Thr->Arg;AC=665;", "Val->Phe": "NT=Val->Phe;AC=666;", "Val->Ala": "NT=Val->Ala;AC=667;", "Val->Glu": "NT=Val->Glu;AC=668;", "Val->Met": "NT=Val->Met;AC=669;", "Val->Asp": "NT=Val->Asp;AC=670;", "Val->Xle": "NT=Val->Xle;AC=671;", "Val->Gly": "NT=Val->Gly;AC=672;", "Trp->Ser": "NT=Trp->Ser;AC=673;", "Trp->Cys": "NT=Trp->Cys;AC=674;", "Trp->Arg": "NT=Trp->Arg;AC=675;", "Trp->Gly": "NT=Trp->Gly;AC=676;", "Trp->Xle": "NT=Trp->Xle;AC=677;", "Tyr->Phe": "NT=Tyr->Phe;AC=678;", "Tyr->Ser": "NT=Tyr->Ser;AC=679;", "Tyr->Asn": "NT=Tyr->Asn;AC=680;", "Tyr->His": "NT=Tyr->His;AC=681;", "Tyr->Asp": "NT=Tyr->Asp;AC=682;", "Tyr->Cys": "NT=Tyr->Cys;AC=683;", "BDMAPP": "NT=BDMAPP;AC=684;", "NA-LNO2": "NT=NA-LNO2;AC=685;", "NA-OA-NO2": "NT=NA-OA-NO2;AC=686;", "ICPL:2H(4)": "NT=ICPL:2H(4);AC=687;", "Label:13C(6)15N(1)": "NT=Label:13C(6)15N(1);AC=695;", "Label:2H(9)13C(6)15N(2)": "NT=Label:2H(9)13C(6)15N(2);AC=696;", "NIC": "NT=NIC;AC=697;", "dNIC": "NT=dNIC;AC=698;", "HNE-Delta:H(2)O": "NT=HNE-Delta:H(2)O;AC=720;", "4-ONE": "NT=4-ONE;AC=721;", "O-Dimethylphosphate": "NT=O-Dimethylphosphate;AC=723;", "O-Methylphosphate": "NT=O-Methylphosphate;AC=724;", "Diethylphosphate": "NT=Diethylphosphate;AC=725;", "Ethylphosphate": "NT=Ethylphosphate;AC=726;", "O-pinacolylmethylphosphonate": "NT=O-pinacolylmethylphosphonate;AC=727;", "Methylphosphonate": "NT=Methylphosphonate;AC=728;", "O-Isopropylmethylphosphonate": "NT=O-Isopropylmethylphosphonate;AC=729;", "iTRAQ8plex": "NT=iTRAQ8plex;AC=730;", "iTRAQ8plex:13C(6)15N(2)": "NT=iTRAQ8plex:13C(6)15N(2);AC=731;", "Ethanolamine": "NT=Ethanolamine;AC=734;", "BEMAD_ST": "NT=BEMAD_ST;AC=735;", "BEMAD_C": "NT=BEMAD_C;AC=736;", "TMT6plex": "NT=TMT6plex;AC=737;", "TMT2plex": "NT=TMT2plex;AC=738;", "TMT": "NT=TMT;AC=739;", "ExacTagThiol": "NT=ExacTagThiol;AC=740;", "ExacTagAmine": "NT=ExacTagAmine;AC=741;", "4-ONE+Delta:H(-2)O(-1)": "NT=4-ONE+Delta:H(-2)O(-1);AC=743;", "NO_SMX_SEMD": "NT=NO_SMX_SEMD;AC=744;", "NO_SMX_SIMD": "NT=NO_SMX_SIMD;AC=746;", "Malonyl": "NT=Malonyl;AC=747;", "3sulfo": "NT=3sulfo;AC=748;", "trifluoro": "NT=trifluoro;AC=750;", "TNBS": "NT=TNBS;AC=751;", "IDEnT": "NT=IDEnT;AC=762;", "BEMAD_ST:2H(6)": "NT=BEMAD_ST:2H(6);AC=763;", "BEMAD_C:2H(6)": "NT=BEMAD_C:2H(6);AC=764;", "Met-loss": "NT=Met-loss;AC=765;", "Met-loss+Acetyl": "NT=Met-loss+Acetyl;AC=766;", "Menadione-HQ": "NT=Menadione-HQ;AC=767;", "Methyl+Acetyl:2H(3)": "NT=Methyl+Acetyl:2H(3);AC=768;", "lapachenole": "NT=lapachenole;AC=771;", "Label:13C(5)": "NT=Label:13C(5);AC=772;", "maleimide": "NT=maleimide;AC=773;", "Biotin-phenacyl": "NT=Biotin-phenacyl;AC=774;", "Carboxymethyl:13C(2)": "NT=Carboxymethyl:13C(2);AC=775;", "NEM:2H(5)": "NT=NEM:2H(5);AC=776;", "AEC-MAEC:2H(4)": "NT=AEC-MAEC:2H(4);AC=792;", "Hex(1)HexNAc(1)": "NT=Hex(1)HexNAc(1);AC=793;", "Label:13C(6)+GG": "NT=Label:13C(6)+GG;AC=799;", "Biotin:Thermo-21345": "NT=Biotin:Thermo-21345;AC=800;", "Pentylamine": "NT=Pentylamine;AC=801;", "Biotin:Thermo-21360": "NT=Biotin:Thermo-21360;AC=811;", "Cy3b-maleimide": "NT=Cy3b-maleimide;AC=821;", "Gly-loss+Amide": "NT=Gly-loss+Amide;AC=822;", "Xlink:BMOE": "NT=Xlink:BMOE;AC=824;", "Xlink:DFDNB": "NT=Xlink:DFDNB;AC=825;", "TMPP-Ac": "NT=TMPP-Ac;AC=827;", "Dihydroxyimidazolidine": "NT=Dihydroxyimidazolidine;AC=830;", "Label:2H(4)+Acetyl": "NT=Label:2H(4)+Acetyl;AC=834;", "Label:13C(6)+Acetyl": "NT=Label:13C(6)+Acetyl;AC=835;", "Label:13C(6)15N(2)+Acetyl": "NT=Label:13C(6)15N(2)+Acetyl;AC=836;", "Arg->Npo": "NT=Arg->Npo;AC=837;", "EQIGG": "NT=EQIGG;AC=846;", "Arg2PG": "NT=Arg2PG;AC=848;", "cGMP": "NT=cGMP;AC=849;", "cGMP+RMP-loss": "NT=cGMP+RMP-loss;AC=851;", "Label:2H(4)+GG": "NT=Label:2H(4)+GG;AC=853;", "MG-H1": "NT=MG-H1;AC=859;", "G-H1": "NT=G-H1;AC=860;", "ZGB": "NT=ZGB;AC=861;", "Label:13C(1)2H(3)": "NT=Label:13C(1)2H(3);AC=862;", "Label:13C(6)15N(2)+GG": "NT=Label:13C(6)15N(2)+GG;AC=864;", "ICPL:13C(6)2H(4)": "NT=ICPL:13C(6)2H(4);AC=866;", "QEQTGG": "NT=QEQTGG;AC=876;", "QQQTGG": "NT=QQQTGG;AC=877;", "Biotin:Thermo-21325": "NT=Biotin:Thermo-21325;AC=884;", "Label:13C(1)2H(3)+Oxidation": "NT=Label:13C(1)2H(3)+Oxidation;AC=885;", "HydroxymethylOP": "NT=HydroxymethylOP;AC=886;", "MDCC": "NT=MDCC;AC=887;", "mTRAQ": "NT=mTRAQ;AC=888;", "mTRAQ:13C(3)15N(1)": "NT=mTRAQ:13C(3)15N(1);AC=889;", "DyLight-maleimide": "NT=DyLight-maleimide;AC=890;", "Methyl-PEO12-Maleimide": "NT=Methyl-PEO12-Maleimide;AC=891;", "CarbamidomethylDTT": "NT=CarbamidomethylDTT;AC=893;", "CarboxymethylDTT": "NT=CarboxymethylDTT;AC=894;", "Biotin-PEG-PRA": "NT=Biotin-PEG-PRA;AC=895;", "Met->Aha": "NT=Met->Aha;AC=896;", "Label:15N(4)": "NT=Label:15N(4);AC=897;", "pyrophospho": "NT=pyrophospho;AC=898;", "Met->Hpg": "NT=Met->Hpg;AC=899;", "4AcAllylGal": "NT=4AcAllylGal;AC=901;", "DimethylArsino": "NT=DimethylArsino;AC=902;", "Lys->CamCys": "NT=Lys->CamCys;AC=903;", "Phe->CamCys": "NT=Phe->CamCys;AC=904;", "Leu->MetOx": "NT=Leu->MetOx;AC=905;", "Lys->MetOx": "NT=Lys->MetOx;AC=906;", "Galactosyl": "NT=Galactosyl;AC=907;", "Xlink:SMCC[321]": "NT=Xlink:SMCC[321];AC=908;", "Bacillosamine": "NT=Bacillosamine;AC=910;", "MTSL": "NT=MTSL;AC=911;", "HNE-BAHAH": "NT=HNE-BAHAH;AC=912;", "Methylmalonylation": "NT=Methylmalonylation;AC=914;", "Label:13C(4)15N(2)+GG": "NT=Label:13C(4)15N(2)+GG;AC=923;", "ethylamino": "NT=ethylamino;AC=926;", "MercaptoEthanol": "NT=MercaptoEthanol;AC=928;", "Ethyl+Deamidated": "NT=Ethyl+Deamidated;AC=931;", "VFQQQTGG": "NT=VFQQQTGG;AC=932;", "VIEVYQEQTGG": "NT=VIEVYQEQTGG;AC=933;", "AMTzHexNAc2": "NT=AMTzHexNAc2;AC=934;", "Atto495Maleimide": "NT=Atto495Maleimide;AC=935;", "Chlorination": "NT=Chlorination;AC=936;", "dichlorination": "NT=dichlorination;AC=937;", "AROD": "NT=AROD;AC=938;", "Cys->methylaminoAla": "NT=Cys->methylaminoAla;AC=939;", "Cys->ethylaminoAla": "NT=Cys->ethylaminoAla;AC=940;", "DNPS": "NT=DNPS;AC=941;", "SulfoGMBS": "NT=SulfoGMBS;AC=942;", "DimethylamineGMBS": "NT=DimethylamineGMBS;AC=943;", "Label:15N(2)2H(9)": "NT=Label:15N(2)2H(9);AC=944;", "LG-anhydrolactam": "NT=LG-anhydrolactam;AC=946;", "LG-pyrrole": "NT=LG-pyrrole;AC=947;", "LG-anhyropyrrole": "NT=LG-anhyropyrrole;AC=948;", "3-deoxyglucosone": "NT=3-deoxyglucosone;AC=949;", "Cation:Li": "NT=Cation:Li;AC=950;", "Cation:Ca[II]": "NT=Cation:Ca[II];AC=951;", "Cation:Fe[II]": "NT=Cation:Fe[II];AC=952;", "Cation:Ni[II]": "NT=Cation:Ni[II];AC=953;", "Cation:Zn[II]": "NT=Cation:Zn[II];AC=954;", "Cation:Ag": "NT=Cation:Ag;AC=955;", "Cation:Mg[II]": "NT=Cation:Mg[II];AC=956;", "2-succinyl": "NT=2-succinyl;AC=957;", "Propargylamine": "NT=Propargylamine;AC=958;", "Phosphopropargyl": "NT=Phosphopropargyl;AC=959;", "SUMO2135": "NT=SUMO2135;AC=960;", "SUMO3549": "NT=SUMO3549;AC=961;", "thioacylPA": "NT=thioacylPA;AC=967;", "maleimide3": "NT=maleimide3;AC=971;", "maleimide5": "NT=maleimide5;AC=972;", "Puromycin": "NT=Puromycin;AC=973;", "Carbofuran": "NT=Carbofuran;AC=977;", "BITC": "NT=BITC;AC=978;", "PEITC": "NT=PEITC;AC=979;", "glucosone": "NT=glucosone;AC=981;", "cysTMT": "NT=cysTMT;AC=984;", "cysTMT6plex": "NT=cysTMT6plex;AC=985;", "Label:13C(6)+Dimethyl": "NT=Label:13C(6)+Dimethyl;AC=986;", "Label:13C(6)15N(2)+Dimethyl": "NT=Label:13C(6)15N(2)+Dimethyl;AC=987;", "Ammonium": "NT=Ammonium;AC=989;", "ISD_z+2_ion": "NT=ISD_z+2_ion;AC=991;", "Biotin:Sigma-B1267": "NT=Biotin:Sigma-B1267;AC=993;", "Label:15N(1)": "NT=Label:15N(1);AC=994;", "Label:15N(2)": "NT=Label:15N(2);AC=995;", "Label:15N(3)": "NT=Label:15N(3);AC=996;", "sulfo+amino": "NT=sulfo+amino;AC=997;", "AHA-Alkyne": "NT=AHA-Alkyne;AC=1000;", "AHA-Alkyne-KDDDD": "NT=AHA-Alkyne-KDDDD;AC=1001;", "EGCG1": "NT=EGCG1;AC=1002;", "EGCG2": "NT=EGCG2;AC=1003;", "Label:13C(6)15N(4)+Methyl": "NT=Label:13C(6)15N(4)+Methyl;AC=1004;", "Label:13C(6)15N(4)+Dimethyl": "NT=Label:13C(6)15N(4)+Dimethyl;AC=1005;", "Label:13C(6)15N(4)+Methyl:2H(3)13C(1)": "NT=Label:13C(6)15N(4)+Methyl:2H(3)13C(1);AC=1006;", "Label:13C(6)15N(4)+Dimethyl:2H(6)13C(2)": "NT=Label:13C(6)15N(4)+Dimethyl:2H(6)13C(2);AC=1007;", "Cys->CamSec": "NT=Cys->CamSec;AC=1008;", "Thiazolidine": "NT=Thiazolidine;AC=1009;", "DEDGFLYMVYASQETFG": "NT=DEDGFLYMVYASQETFG;AC=1010;", "Biotin:Invitrogen-M1602": "NT=Biotin:Invitrogen-M1602;AC=1012;", "glycidamide": "NT=glycidamide;AC=1014;", "Ahx2+Hsl": "NT=Ahx2+Hsl;AC=1015;", "DMPO": "NT=DMPO;AC=1017;", "ICDID": "NT=ICDID;AC=1018;", "ICDID:2H(6)": "NT=ICDID:2H(6);AC=1019;", "Xlink:DSS[156]": "NT=Xlink:DSS[156];AC=1020;", "Xlink:EGS[244]": "NT=Xlink:EGS[244];AC=1021;", "Xlink:DST[132]": "NT=Xlink:DST[132];AC=1022;", "Xlink:DTSSP[192]": "NT=Xlink:DTSSP[192];AC=1023;", "Xlink:SMCC[237]": "NT=Xlink:SMCC[237];AC=1024;", "Xlink:DMP[140]": "NT=Xlink:DMP[140];AC=1027;", "Xlink:EGS[115]": "NT=Xlink:EGS[115];AC=1028;", "Biotin:Thermo-88310": "NT=Biotin:Thermo-88310;AC=1031;", "2-nitrobenzyl": "NT=2-nitrobenzyl;AC=1032;", "Cys->SecNEM": "NT=Cys->SecNEM;AC=1033;", "Cys->SecNEM:2H(5)": "NT=Cys->SecNEM:2H(5);AC=1034;", "Thiadiazole": "NT=Thiadiazole;AC=1035;", "Withaferin": "NT=Withaferin;AC=1036;", "Biotin:Thermo-88317": "NT=Biotin:Thermo-88317;AC=1037;", "TAMRA-FP": "NT=TAMRA-FP;AC=1038;", "Biotin:Thermo-21901+H2O": "NT=Biotin:Thermo-21901+H2O;AC=1039;", "Deoxyhypusine": "NT=Deoxyhypusine;AC=1041;", "Acetyldeoxyhypusine": "NT=Acetyldeoxyhypusine;AC=1042;", "Acetylhypusine": "NT=Acetylhypusine;AC=1043;", "Ala->Cys": "NT=Ala->Cys;AC=1044;", "Ala->Phe": "NT=Ala->Phe;AC=1045;", "Ala->His": "NT=Ala->His;AC=1046;", "Ala->Xle": "NT=Ala->Xle;AC=1047;", "Ala->Lys": "NT=Ala->Lys;AC=1048;", "Ala->Met": "NT=Ala->Met;AC=1049;", "Ala->Asn": "NT=Ala->Asn;AC=1050;", "Ala->Gln": "NT=Ala->Gln;AC=1051;", "Ala->Arg": "NT=Ala->Arg;AC=1052;", "Ala->Trp": "NT=Ala->Trp;AC=1053;", "Ala->Tyr": "NT=Ala->Tyr;AC=1054;", "Cys->Ala": "NT=Cys->Ala;AC=1055;", "Cys->Asp": "NT=Cys->Asp;AC=1056;", "Cys->Glu": "NT=Cys->Glu;AC=1057;", "Cys->His": "NT=Cys->His;AC=1058;", "Cys->Xle": "NT=Cys->Xle;AC=1059;", "Cys->Lys": "NT=Cys->Lys;AC=1060;", "Cys->Met": "NT=Cys->Met;AC=1061;", "Cys->Asn": "NT=Cys->Asn;AC=1062;", "Cys->Pro": "NT=Cys->Pro;AC=1063;", "Cys->Gln": "NT=Cys->Gln;AC=1064;", "Cys->Thr": "NT=Cys->Thr;AC=1065;", "Cys->Val": "NT=Cys->Val;AC=1066;", "Asp->Cys": "NT=Asp->Cys;AC=1067;", "Asp->Phe": "NT=Asp->Phe;AC=1068;", "Asp->Xle": "NT=Asp->Xle;AC=1069;", "Asp->Lys": "NT=Asp->Lys;AC=1070;", "Asp->Met": "NT=Asp->Met;AC=1071;", "Asp->Pro": "NT=Asp->Pro;AC=1072;", "Asp->Gln": "NT=Asp->Gln;AC=1073;", "Asp->Arg": "NT=Asp->Arg;AC=1074;", "Asp->Ser": "NT=Asp->Ser;AC=1075;", "Asp->Thr": "NT=Asp->Thr;AC=1076;", "Asp->Trp": "NT=Asp->Trp;AC=1077;", "Glu->Cys": "NT=Glu->Cys;AC=1078;", "Glu->Phe": "NT=Glu->Phe;AC=1079;", "Glu->His": "NT=Glu->His;AC=1080;", "Glu->Xle": "NT=Glu->Xle;AC=1081;", "Glu->Met": "NT=Glu->Met;AC=1082;", "Glu->Asn": "NT=Glu->Asn;AC=1083;", "Glu->Pro": "NT=Glu->Pro;AC=1084;", "Glu->Arg": "NT=Glu->Arg;AC=1085;", "Glu->Ser": "NT=Glu->Ser;AC=1086;", "Glu->Thr": "NT=Glu->Thr;AC=1087;", "Glu->Trp": "NT=Glu->Trp;AC=1088;", "Glu->Tyr": "NT=Glu->Tyr;AC=1089;", "Phe->Ala": "NT=Phe->Ala;AC=1090;", "Phe->Asp": "NT=Phe->Asp;AC=1091;", "Phe->Glu": "NT=Phe->Glu;AC=1092;", "Phe->Gly": "NT=Phe->Gly;AC=1093;", "Phe->His": "NT=Phe->His;AC=1094;", "Phe->Lys": "NT=Phe->Lys;AC=1095;", "Phe->Met": "NT=Phe->Met;AC=1096;", "Phe->Asn": "NT=Phe->Asn;AC=1097;", "Phe->Pro": "NT=Phe->Pro;AC=1098;", "Phe->Gln": "NT=Phe->Gln;AC=1099;", "Phe->Arg": "NT=Phe->Arg;AC=1100;", "Phe->Thr": "NT=Phe->Thr;AC=1101;", "Phe->Trp": "NT=Phe->Trp;AC=1102;", "Gly->Phe": "NT=Gly->Phe;AC=1103;", "Gly->His": "NT=Gly->His;AC=1104;", "Gly->Xle": "NT=Gly->Xle;AC=1105;", "Gly->Lys": "NT=Gly->Lys;AC=1106;", "Gly->Met": "NT=Gly->Met;AC=1107;", "Gly->Asn": "NT=Gly->Asn;AC=1108;", "Gly->Pro": "NT=Gly->Pro;AC=1109;", "Gly->Gln": "NT=Gly->Gln;AC=1110;", "Gly->Thr": "NT=Gly->Thr;AC=1111;", "Gly->Tyr": "NT=Gly->Tyr;AC=1112;", "His->Ala": "NT=His->Ala;AC=1113;", "His->Cys": "NT=His->Cys;AC=1114;", "His->Glu": "NT=His->Glu;AC=1115;", "His->Phe": "NT=His->Phe;AC=1116;", "His->Gly": "NT=His->Gly;AC=1117;", "His->Lys": "NT=His->Lys;AC=1119;", "His->Met": "NT=His->Met;AC=1120;", "His->Ser": "NT=His->Ser;AC=1121;", "His->Thr": "NT=His->Thr;AC=1122;", "His->Val": "NT=His->Val;AC=1123;", "His->Trp": "NT=His->Trp;AC=1124;", "Xle->Ala": "NT=Xle->Ala;AC=1125;", "Xle->Cys": "NT=Xle->Cys;AC=1126;", "Xle->Asp": "NT=Xle->Asp;AC=1127;", "Xle->Glu": "NT=Xle->Glu;AC=1128;", "Xle->Gly": "NT=Xle->Gly;AC=1129;", "Xle->Tyr": "NT=Xle->Tyr;AC=1130;", "Lys->Ala": "NT=Lys->Ala;AC=1131;", "Lys->Cys": "NT=Lys->Cys;AC=1132;", "Lys->Asp": "NT=Lys->Asp;AC=1133;", "Lys->Phe": "NT=Lys->Phe;AC=1134;", "Lys->Gly": "NT=Lys->Gly;AC=1135;", "Lys->His": "NT=Lys->His;AC=1136;", "Lys->Pro": "NT=Lys->Pro;AC=1137;", "Lys->Ser": "NT=Lys->Ser;AC=1138;", "Lys->Val": "NT=Lys->Val;AC=1139;", "Lys->Trp": "NT=Lys->Trp;AC=1140;", "Lys->Tyr": "NT=Lys->Tyr;AC=1141;", "Met->Ala": "NT=Met->Ala;AC=1142;", "Met->Cys": "NT=Met->Cys;AC=1143;", "Met->Asp": "NT=Met->Asp;AC=1144;", "Met->Glu": "NT=Met->Glu;AC=1145;", "Met->Phe": "NT=Met->Phe;AC=1146;", "Met->Gly": "NT=Met->Gly;AC=1147;", "Met->His": "NT=Met->His;AC=1148;", "Met->Asn": "NT=Met->Asn;AC=1149;", "Met->Pro": "NT=Met->Pro;AC=1150;", "Met->Gln": "NT=Met->Gln;AC=1151;", "Met->Ser": "NT=Met->Ser;AC=1152;", "Met->Trp": "NT=Met->Trp;AC=1153;", "Met->Tyr": "NT=Met->Tyr;AC=1154;", "Asn->Ala": "NT=Asn->Ala;AC=1155;", "Asn->Cys": "NT=Asn->Cys;AC=1156;", "Asn->Glu": "NT=Asn->Glu;AC=1157;", "Asn->Phe": "NT=Asn->Phe;AC=1158;", "Asn->Gly": "NT=Asn->Gly;AC=1159;", "Asn->Met": "NT=Asn->Met;AC=1160;", "Asn->Pro": "NT=Asn->Pro;AC=1161;", "Asn->Gln": "NT=Asn->Gln;AC=1162;", "Asn->Arg": "NT=Asn->Arg;AC=1163;", "Asn->Val": "NT=Asn->Val;AC=1164;", "Asn->Trp": "NT=Asn->Trp;AC=1165;", "Pro->Cys": "NT=Pro->Cys;AC=1166;", "Pro->Asp": "NT=Pro->Asp;AC=1167;", "Pro->Glu": "NT=Pro->Glu;AC=1168;", "Pro->Phe": "NT=Pro->Phe;AC=1169;", "Pro->Gly": "NT=Pro->Gly;AC=1170;", "Pro->Lys": "NT=Pro->Lys;AC=1171;", "Pro->Met": "NT=Pro->Met;AC=1172;", "Pro->Asn": "NT=Pro->Asn;AC=1173;", "Pro->Val": "NT=Pro->Val;AC=1174;", "Pro->Trp": "NT=Pro->Trp;AC=1175;", "Pro->Tyr": "NT=Pro->Tyr;AC=1176;", "Gln->Ala": "NT=Gln->Ala;AC=1177;", "Gln->Cys": "NT=Gln->Cys;AC=1178;", "Gln->Asp": "NT=Gln->Asp;AC=1179;", "Gln->Phe": "NT=Gln->Phe;AC=1180;", "Gln->Gly": "NT=Gln->Gly;AC=1181;", "Gln->Met": "NT=Gln->Met;AC=1182;", "Gln->Asn": "NT=Gln->Asn;AC=1183;", "Gln->Ser": "NT=Gln->Ser;AC=1184;", "Gln->Thr": "NT=Gln->Thr;AC=1185;", "Gln->Val": "NT=Gln->Val;AC=1186;", "Gln->Trp": "NT=Gln->Trp;AC=1187;", "Gln->Tyr": "NT=Gln->Tyr;AC=1188;", "Arg->Ala": "NT=Arg->Ala;AC=1189;", "Arg->Asp": "NT=Arg->Asp;AC=1190;", "Arg->Glu": "NT=Arg->Glu;AC=1191;", "Arg->Asn": "NT=Arg->Asn;AC=1192;", "Arg->Val": "NT=Arg->Val;AC=1193;", "Arg->Tyr": "NT=Arg->Tyr;AC=1194;", "Arg->Phe": "NT=Arg->Phe;AC=1195;", "Ser->Asp": "NT=Ser->Asp;AC=1196;", "Ser->Glu": "NT=Ser->Glu;AC=1197;", "Ser->His": "NT=Ser->His;AC=1198;", "Ser->Lys": "NT=Ser->Lys;AC=1199;", "Ser->Met": "NT=Ser->Met;AC=1200;", "Ser->Gln": "NT=Ser->Gln;AC=1201;", "Ser->Val": "NT=Ser->Val;AC=1202;", "Thr->Cys": "NT=Thr->Cys;AC=1203;", "Thr->Asp": "NT=Thr->Asp;AC=1204;", "Thr->Glu": "NT=Thr->Glu;AC=1205;", "Thr->Phe": "NT=Thr->Phe;AC=1206;", "Thr->Gly": "NT=Thr->Gly;AC=1207;", "Thr->His": "NT=Thr->His;AC=1208;", "Thr->Gln": "NT=Thr->Gln;AC=1209;", "Thr->Val": "NT=Thr->Val;AC=1210;", "Thr->Trp": "NT=Thr->Trp;AC=1211;", "Thr->Tyr": "NT=Thr->Tyr;AC=1212;", "Val->Cys": "NT=Val->Cys;AC=1213;", "Val->His": "NT=Val->His;AC=1214;", "Val->Lys": "NT=Val->Lys;AC=1215;", "Val->Asn": "NT=Val->Asn;AC=1216;", "Val->Pro": "NT=Val->Pro;AC=1217;", "Val->Gln": "NT=Val->Gln;AC=1218;", "Val->Arg": "NT=Val->Arg;AC=1219;", "Val->Ser": "NT=Val->Ser;AC=1220;", "Val->Thr": "NT=Val->Thr;AC=1221;", "Val->Trp": "NT=Val->Trp;AC=1222;", "Val->Tyr": "NT=Val->Tyr;AC=1223;", "Trp->Ala": "NT=Trp->Ala;AC=1224;", "Trp->Asp": "NT=Trp->Asp;AC=1225;", "Trp->Glu": "NT=Trp->Glu;AC=1226;", "Trp->Phe": "NT=Trp->Phe;AC=1227;", "Trp->His": "NT=Trp->His;AC=1228;", "Trp->Lys": "NT=Trp->Lys;AC=1229;", "Trp->Met": "NT=Trp->Met;AC=1230;", "Trp->Asn": "NT=Trp->Asn;AC=1231;", "Trp->Pro": "NT=Trp->Pro;AC=1232;", "Trp->Gln": "NT=Trp->Gln;AC=1233;", "Trp->Thr": "NT=Trp->Thr;AC=1234;", "Trp->Val": "NT=Trp->Val;AC=1235;", "Trp->Tyr": "NT=Trp->Tyr;AC=1236;", "Tyr->Ala": "NT=Tyr->Ala;AC=1237;", "Tyr->Glu": "NT=Tyr->Glu;AC=1238;", "Tyr->Gly": "NT=Tyr->Gly;AC=1239;", "Tyr->Lys": "NT=Tyr->Lys;AC=1240;", "Tyr->Met": "NT=Tyr->Met;AC=1241;", "Tyr->Pro": "NT=Tyr->Pro;AC=1242;", "Tyr->Gln": "NT=Tyr->Gln;AC=1243;", "Tyr->Arg": "NT=Tyr->Arg;AC=1244;", "Tyr->Thr": "NT=Tyr->Thr;AC=1245;", "Tyr->Val": "NT=Tyr->Val;AC=1246;", "Tyr->Trp": "NT=Tyr->Trp;AC=1247;", "Tyr->Xle": "NT=Tyr->Xle;AC=1248;", "AHA-SS": "NT=AHA-SS;AC=1249;", "AHA-SS_CAM": "NT=AHA-SS_CAM;AC=1250;", "Biotin:Thermo-33033": "NT=Biotin:Thermo-33033;AC=1251;", "Biotin:Thermo-33033-H": "NT=Biotin:Thermo-33033-H;AC=1252;", "2-monomethylsuccinyl": "NT=2-monomethylsuccinyl;AC=1253;", "Saligenin": "NT=Saligenin;AC=1254;", "Cresylphosphate": "NT=Cresylphosphate;AC=1255;", "CresylSaligeninPhosphate": "NT=CresylSaligeninPhosphate;AC=1256;", "Ub-Br2": "NT=Ub-Br2;AC=1257;", "Ub-VME": "NT=Ub-VME;AC=1258;", "Ub-fluorescein": "NT=Ub-fluorescein;AC=1261;", "2-dimethylsuccinyl": "NT=2-dimethylsuccinyl;AC=1262;", "Gly": "NT=Gly;AC=1263;", "pupylation": "NT=pupylation;AC=1264;", "Label:13C(4)": "NT=Label:13C(4);AC=1266;", "Label:13C(4)+Oxidation": "NT=Label:13C(4)+Oxidation;AC=1267;", "HCysThiolactone": "NT=HCysThiolactone;AC=1270;", "HCysteinyl": "NT=HCysteinyl;AC=1271;", "UgiJoullie": "NT=UgiJoullie;AC=1276;", "Dipyridyl": "NT=Dipyridyl;AC=1277;", "Furan": "NT=Furan;AC=1278;", "Difuran": "NT=Difuran;AC=1279;", "BMP-piperidinol": "NT=BMP-piperidinol;AC=1281;", "UgiJoullieProGly": "NT=UgiJoullieProGly;AC=1282;", "UgiJoullieProGlyProGly": "NT=UgiJoullieProGlyProGly;AC=1283;", "IMEHex(2)NeuAc(1)": "NT=IMEHex(2)NeuAc(1);AC=1286;", "Arg-loss": "NT=Arg-loss;AC=1287;", "Arg": "NT=Arg;AC=1288;", "Butyryl": "NT=Butyryl;AC=1289;", "Dicarbamidomethyl": "NT=Dicarbamidomethyl;AC=1290;", "Dimethyl:2H(6)": "NT=Dimethyl:2H(6);AC=1291;", "GGQ": "NT=GGQ;AC=1292;", "QTGG": "NT=QTGG;AC=1293;", "Label:13C(3)": "NT=Label:13C(3);AC=1296;", "Label:13C(3)15N(1)": "NT=Label:13C(3)15N(1);AC=1297;", "Label:13C(4)15N(1)": "NT=Label:13C(4)15N(1);AC=1298;", "Label:2H(10)": "NT=Label:2H(10);AC=1299;", "Label:2H(4)13C(1)": "NT=Label:2H(4)13C(1);AC=1300;", "Lys": "NT=Lys;AC=1301;", "mTRAQ:13C(6)15N(2)": "NT=mTRAQ:13C(6)15N(2);AC=1302;", "NeuAc": "NT=NeuAc;AC=1303;", "NeuGc": "NT=NeuGc;AC=1304;", "Propyl": "NT=Propyl;AC=1305;", "Propyl:2H(6)": "NT=Propyl:2H(6);AC=1306;", "Propiophenone": "NT=Propiophenone;AC=1310;", "Delta:H(6)C(3)O(1)": "NT=Delta:H(6)C(3)O(1);AC=1312;", "Delta:H(8)C(6)O(1)": "NT=Delta:H(8)C(6)O(1);AC=1313;", "biotinAcrolein298": "NT=biotinAcrolein298;AC=1314;", "MM-diphenylpentanone": "NT=MM-diphenylpentanone;AC=1315;", "EHD-diphenylpentanone": "NT=EHD-diphenylpentanone;AC=1317;", "Biotin:Thermo-21901+2H2O": "NT=Biotin:Thermo-21901+2H2O;AC=1320;", "DiLeu4plex115": "NT=DiLeu4plex115;AC=1321;", "DiLeu4plex": "NT=DiLeu4plex;AC=1322;", "DiLeu4plex117": "NT=DiLeu4plex117;AC=1323;", "DiLeu4plex118": "NT=DiLeu4plex118;AC=1324;", "NEMsulfur": "NT=NEMsulfur;AC=1326;", "SulfurDioxide": "NT=SulfurDioxide;AC=1327;", "NEMsulfurWater": "NT=NEMsulfurWater;AC=1328;", "bisANS-sulfonates": "NT=bisANS-sulfonates;AC=1330;", "DNCB_hapten": "NT=DNCB_hapten;AC=1331;", "Biotin:Thermo-21911": "NT=Biotin:Thermo-21911;AC=1340;", "iodoTMT": "NT=iodoTMT;AC=1341;", "iodoTMT6plex": "NT=iodoTMT6plex;AC=1342;", "Phosphogluconoylation": "NT=Phosphogluconoylation;AC=1344;", "PS_Hapten": "NT=PS_Hapten;AC=1345;", "Cy3-maleimide": "NT=Cy3-maleimide;AC=1348;", "benzylguanidine": "NT=benzylguanidine;AC=1349;", "CarboxymethylDMAP": "NT=CarboxymethylDMAP;AC=1350;", "azole": "NT=azole;AC=1355;", "phosphoRibosyl": "NT=phosphoRibosyl;AC=1356;", "NEM:2H(5)+H2O": "NT=NEM:2H(5)+H2O;AC=1358;", "Crotonyl": "NT=Crotonyl;AC=1363;", "O-Et-N-diMePhospho": "NT=O-Et-N-diMePhospho;AC=1364;", "N-dimethylphosphate": "NT=N-dimethylphosphate;AC=1365;", "dHex(1)Hex(1)": "NT=dHex(1)Hex(1);AC=1367;", "Methyl:2H(3)+Acetyl:2H(3)": "NT=Methyl:2H(3)+Acetyl:2H(3);AC=1368;", "Label:2H(3)+Oxidation": "NT=Label:2H(3)+Oxidation;AC=1370;", "Trimethyl:2H(9)": "NT=Trimethyl:2H(9);AC=1371;", "Acetyl:13C(2)": "NT=Acetyl:13C(2);AC=1372;", "dHex(1)Hex(2)": "NT=dHex(1)Hex(2);AC=1375;", "dHex(1)Hex(3)": "NT=dHex(1)Hex(3);AC=1376;", "dHex(1)Hex(4)": "NT=dHex(1)Hex(4);AC=1377;", "dHex(1)Hex(5)": "NT=dHex(1)Hex(5);AC=1378;", "dHex(1)Hex(6)": "NT=dHex(1)Hex(6);AC=1379;", "methylsulfonylethyl": "NT=methylsulfonylethyl;AC=1380;", "ethylsulfonylethyl": "NT=ethylsulfonylethyl;AC=1381;", "phenylsulfonylethyl": "NT=phenylsulfonylethyl;AC=1382;", "PyridoxalPhosphateH2": "NT=PyridoxalPhosphateH2;AC=1383;", "Homocysteic_acid": "NT=Homocysteic_acid;AC=1384;", "Hydroxamic_acid": "NT=Hydroxamic_acid;AC=1385;", "3-phosphoglyceryl": "NT=3-phosphoglyceryl;AC=1387;", "HN2_mustard": "NT=HN2_mustard;AC=1388;", "HN3_mustard": "NT=HN3_mustard;AC=1389;", "Oxidation+NEM": "NT=Oxidation+NEM;AC=1390;", "NHS-fluorescein": "NT=NHS-fluorescein;AC=1391;", "DiART6plex": "NT=DiART6plex;AC=1392;", "DiART6plex115": "NT=DiART6plex115;AC=1393;", "DiART6plex116/119": "NT=DiART6plex116/119;AC=1394;", "DiART6plex117": "NT=DiART6plex117;AC=1395;", "DiART6plex118": "NT=DiART6plex118;AC=1396;", "Iodoacetanilide": "NT=Iodoacetanilide;AC=1397;", "Iodoacetanilide:13C(6)": "NT=Iodoacetanilide:13C(6);AC=1398;", "Dap-DSP": "NT=Dap-DSP;AC=1399;", "MurNAc": "NT=MurNAc;AC=1400;", "Label:2H(7)15N(4)": "NT=Label:2H(7)15N(4);AC=1402;", "Label:2H(6)15N(1)": "NT=Label:2H(6)15N(1);AC=1403;", "EEEDVIEVYQEQTGG": "NT=EEEDVIEVYQEQTGG;AC=1405;", "EDEDTIDVFQQQTGG": "NT=EDEDTIDVFQQQTGG;AC=1406;", "Hex(5)HexNAc(4)NeuAc(2)": "NT=Hex(5)HexNAc(4)NeuAc(2);AC=1408;", "Hex(5)HexNAc(4)NeuAc(1)": "NT=Hex(5)HexNAc(4)NeuAc(1);AC=1409;", "dHex(1)Hex(5)HexNAc(4)NeuAc(1)": "NT=dHex(1)Hex(5)HexNAc(4)NeuAc(1);AC=1410;", "dHex(1)Hex(5)HexNAc(4)NeuAc(2)": "NT=dHex(1)Hex(5)HexNAc(4)NeuAc(2);AC=1411;", "s-GlcNAc": "NT=s-GlcNAc;AC=1412;", "PhosphoHex(2)": "NT=PhosphoHex(2);AC=1413;", "Trimethyl:13C(3)2H(9)": "NT=Trimethyl:13C(3)2H(9);AC=1414;", "15N-oxobutanoic": "NT=15N-oxobutanoic;AC=1419;", "spermine": "NT=spermine;AC=1420;", "spermidine": "NT=spermidine;AC=1421;", "Biotin:Thermo-21330": "NT=Biotin:Thermo-21330;AC=1423;", "Pentose": "NT=Pentose;AC=1425;", "Hex(1)Pent(1)": "NT=Hex(1)Pent(1);AC=1426;", "Hex(1)HexA(1)": "NT=Hex(1)HexA(1);AC=1427;", "Hex(1)Pent(2)": "NT=Hex(1)Pent(2);AC=1428;", "Hex(1)HexNAc(1)Phos(1)": "NT=Hex(1)HexNAc(1)Phos(1);AC=1429;", "Hex(1)HexNAc(1)Sulf(1)": "NT=Hex(1)HexNAc(1)Sulf(1);AC=1430;", "Hex(1)NeuAc(1)": "NT=Hex(1)NeuAc(1);AC=1431;", "Hex(1)NeuGc(1)": "NT=Hex(1)NeuGc(1);AC=1432;", "HexNAc(3)": "NT=HexNAc(3);AC=1433;", "HexNAc(1)NeuAc(1)": "NT=HexNAc(1)NeuAc(1);AC=1434;", "HexNAc(1)NeuGc(1)": "NT=HexNAc(1)NeuGc(1);AC=1435;", "Hex(1)HexNAc(1)dHex(1)Me(1)": "NT=Hex(1)HexNAc(1)dHex(1)Me(1);AC=1436;", "Hex(1)HexNAc(1)dHex(1)Me(2)": "NT=Hex(1)HexNAc(1)dHex(1)Me(2);AC=1437;", "Hex(2)HexNAc(1)": "NT=Hex(2)HexNAc(1);AC=1438;", "Hex(1)HexA(1)HexNAc(1)": "NT=Hex(1)HexA(1)HexNAc(1);AC=1439;", "Hex(2)HexNAc(1)Me(1)": "NT=Hex(2)HexNAc(1)Me(1);AC=1440;", "Hex(1)Pent(3)": "NT=Hex(1)Pent(3);AC=1441;", "Hex(1)NeuAc(1)Pent(1)": "NT=Hex(1)NeuAc(1)Pent(1);AC=1442;", "Hex(2)HexNAc(1)Sulf(1)": "NT=Hex(2)HexNAc(1)Sulf(1);AC=1443;", "Hex(2)NeuAc(1)": "NT=Hex(2)NeuAc(1);AC=1444;", "dHex(2)Hex(2)": "NT=dHex(2)Hex(2);AC=1445;", "dHex(1)Hex(2)HexA(1)": "NT=dHex(1)Hex(2)HexA(1);AC=1446;", "Hex(1)HexNAc(2)Sulf(1)": "NT=Hex(1)HexNAc(2)Sulf(1);AC=1447;", "Hex(4)": "NT=Hex(4);AC=1448;", "dHex(1)Hex(2)HexNAc(2)Pent(1)": "NT=dHex(1)Hex(2)HexNAc(2)Pent(1);AC=1449;", "Hex(2)HexNAc(2)NeuAc(1)": "NT=Hex(2)HexNAc(2)NeuAc(1);AC=1450;", "Hex(3)HexNAc(2)Pent(1)": "NT=Hex(3)HexNAc(2)Pent(1);AC=1451;", "Hex(4)HexNAc(2)": "NT=Hex(4)HexNAc(2);AC=1452;", "dHex(1)Hex(4)HexNAc(1)Pent(1)": "NT=dHex(1)Hex(4)HexNAc(1)Pent(1);AC=1453;", "dHex(1)Hex(3)HexNAc(2)Pent(1)": "NT=dHex(1)Hex(3)HexNAc(2)Pent(1);AC=1454;", "Hex(3)HexNAc(2)NeuAc(1)": "NT=Hex(3)HexNAc(2)NeuAc(1);AC=1455;", "Hex(4)HexNAc(2)Pent(1)": "NT=Hex(4)HexNAc(2)Pent(1);AC=1456;", "Hex(3)HexNAc(3)Pent(1)": "NT=Hex(3)HexNAc(3)Pent(1);AC=1457;", "Hex(5)HexNAc(2)Phos(1)": "NT=Hex(5)HexNAc(2)Phos(1);AC=1458;", "dHex(1)Hex(4)HexNAc(2)Pent(1)": "NT=dHex(1)Hex(4)HexNAc(2)Pent(1);AC=1459;", "Hex(7)HexNAc(1)": "NT=Hex(7)HexNAc(1);AC=1460;", "Hex(4)HexNAc(2)NeuAc(1)": "NT=Hex(4)HexNAc(2)NeuAc(1);AC=1461;", "dHex(1)Hex(5)HexNAc(2)": "NT=dHex(1)Hex(5)HexNAc(2);AC=1462;", "dHex(1)Hex(3)HexNAc(3)Pent(1)": "NT=dHex(1)Hex(3)HexNAc(3)Pent(1);AC=1463;", "Hex(3)HexNAc(4)Sulf(1)": "NT=Hex(3)HexNAc(4)Sulf(1);AC=1464;", "Hex(6)HexNAc(2)": "NT=Hex(6)HexNAc(2);AC=1465;", "Hex(4)HexNAc(3)Pent(1)": "NT=Hex(4)HexNAc(3)Pent(1);AC=1466;", "dHex(1)Hex(4)HexNAc(3)": "NT=dHex(1)Hex(4)HexNAc(3);AC=1467;", "Hex(5)HexNAc(3)": "NT=Hex(5)HexNAc(3);AC=1468;", "Hex(3)HexNAc(4)Pent(1)": "NT=Hex(3)HexNAc(4)Pent(1);AC=1469;", "Hex(6)HexNAc(2)Phos(1)": "NT=Hex(6)HexNAc(2)Phos(1);AC=1470;", "dHex(1)Hex(4)HexNAc(3)Sulf(1)": "NT=dHex(1)Hex(4)HexNAc(3)Sulf(1);AC=1471;", "dHex(1)Hex(5)HexNAc(2)Pent(1)": "NT=dHex(1)Hex(5)HexNAc(2)Pent(1);AC=1472;", "Hex(8)HexNAc(1)": "NT=Hex(8)HexNAc(1);AC=1473;", "dHex(1)Hex(3)HexNAc(3)Pent(2)": "NT=dHex(1)Hex(3)HexNAc(3)Pent(2);AC=1474;", "dHex(2)Hex(3)HexNAc(3)Pent(1)": "NT=dHex(2)Hex(3)HexNAc(3)Pent(1);AC=1475;", "dHex(1)Hex(3)HexNAc(4)Sulf(1)": "NT=dHex(1)Hex(3)HexNAc(4)Sulf(1);AC=1476;", "dHex(1)Hex(6)HexNAc(2)": "NT=dHex(1)Hex(6)HexNAc(2);AC=1477;", "dHex(1)Hex(4)HexNAc(3)Pent(1)": "NT=dHex(1)Hex(4)HexNAc(3)Pent(1);AC=1478;", "Hex(4)HexNAc(4)Sulf(1)": "NT=Hex(4)HexNAc(4)Sulf(1);AC=1479;", "Hex(7)HexNAc(2)": "NT=Hex(7)HexNAc(2);AC=1480;", "dHex(2)Hex(4)HexNAc(3)": "NT=dHex(2)Hex(4)HexNAc(3);AC=1481;", "Hex(5)HexNAc(3)Pent(1)": "NT=Hex(5)HexNAc(3)Pent(1);AC=1482;", "Hex(4)HexNAc(3)NeuGc(1)": "NT=Hex(4)HexNAc(3)NeuGc(1);AC=1483;", "dHex(1)Hex(5)HexNAc(3)": "NT=dHex(1)Hex(5)HexNAc(3);AC=1484;", "dHex(1)Hex(3)HexNAc(4)Pent(1)": "NT=dHex(1)Hex(3)HexNAc(4)Pent(1);AC=1485;", "Hex(3)HexNAc(5)Sulf(1)": "NT=Hex(3)HexNAc(5)Sulf(1);AC=1486;", "Hex(6)HexNAc(3)": "NT=Hex(6)HexNAc(3);AC=1487;", "Hex(3)HexNAc(4)NeuAc(1)": "NT=Hex(3)HexNAc(4)NeuAc(1);AC=1488;", "Hex(4)HexNAc(4)Pent(1)": "NT=Hex(4)HexNAc(4)Pent(1);AC=1489;", "Hex(7)HexNAc(2)Phos(1)": "NT=Hex(7)HexNAc(2)Phos(1);AC=1490;", "Hex(4)HexNAc(4)Me(2)Pent(1)": "NT=Hex(4)HexNAc(4)Me(2)Pent(1);AC=1491;", "dHex(1)Hex(3)HexNAc(3)Pent(3)": "NT=dHex(1)Hex(3)HexNAc(3)Pent(3);AC=1492;", "dHex(1)Hex(5)HexNAc(3)Sulf(1)": "NT=dHex(1)Hex(5)HexNAc(3)Sulf(1);AC=1493;", "dHex(2)Hex(3)HexNAc(3)Pent(2)": "NT=dHex(2)Hex(3)HexNAc(3)Pent(2);AC=1494;", "Hex(6)HexNAc(3)Phos(1)": "NT=Hex(6)HexNAc(3)Phos(1);AC=1495;", "Hex(4)HexNAc(5)": "NT=Hex(4)HexNAc(5);AC=1496;", "dHex(3)Hex(3)HexNAc(3)Pent(1)": "NT=dHex(3)Hex(3)HexNAc(3)Pent(1);AC=1497;", "dHex(2)Hex(4)HexNAc(3)Pent(1)": "NT=dHex(2)Hex(4)HexNAc(3)Pent(1);AC=1498;", "dHex(1)Hex(4)HexNAc(4)Sulf(1)": "NT=dHex(1)Hex(4)HexNAc(4)Sulf(1);AC=1499;", "dHex(1)Hex(7)HexNAc(2)": "NT=dHex(1)Hex(7)HexNAc(2);AC=1500;", "dHex(1)Hex(4)HexNAc(3)NeuAc(1)": "NT=dHex(1)Hex(4)HexNAc(3)NeuAc(1);AC=1501;", "Hex(7)HexNAc(2)Phos(2)": "NT=Hex(7)HexNAc(2)Phos(2);AC=1502;", "Hex(5)HexNAc(4)Sulf(1)": "NT=Hex(5)HexNAc(4)Sulf(1);AC=1503;", "Hex(8)HexNAc(2)": "NT=Hex(8)HexNAc(2);AC=1504;", "dHex(1)Hex(3)HexNAc(4)Pent(2)": "NT=dHex(1)Hex(3)HexNAc(4)Pent(2);AC=1505;", "dHex(1)Hex(4)HexNAc(3)NeuGc(1)": "NT=dHex(1)Hex(4)HexNAc(3)NeuGc(1);AC=1506;", "dHex(2)Hex(3)HexNAc(4)Pent(1)": "NT=dHex(2)Hex(3)HexNAc(4)Pent(1);AC=1507;", "dHex(1)Hex(3)HexNAc(5)Sulf(1)": "NT=dHex(1)Hex(3)HexNAc(5)Sulf(1);AC=1508;", "dHex(1)Hex(6)HexNAc(3)": "NT=dHex(1)Hex(6)HexNAc(3);AC=1509;", "dHex(1)Hex(3)HexNAc(4)NeuAc(1)": "NT=dHex(1)Hex(3)HexNAc(4)NeuAc(1);AC=1510;", "dHex(3)Hex(3)HexNAc(4)": "NT=dHex(3)Hex(3)HexNAc(4);AC=1511;", "dHex(1)Hex(4)HexNAc(4)Pent(1)": "NT=dHex(1)Hex(4)HexNAc(4)Pent(1);AC=1512;", "Hex(4)HexNAc(5)Sulf(1)": "NT=Hex(4)HexNAc(5)Sulf(1);AC=1513;", "Hex(7)HexNAc(3)": "NT=Hex(7)HexNAc(3);AC=1514;", "dHex(1)Hex(4)HexNAc(3)NeuAc(1)Sulf(1)": "NT=dHex(1)Hex(4)HexNAc(3)NeuAc(1)Sulf(1);AC=1515;", "Hex(5)HexNAc(4)Me(2)Pent(1)": "NT=Hex(5)HexNAc(4)Me(2)Pent(1);AC=1516;", "Hex(3)HexNAc(6)Sulf(1)": "NT=Hex(3)HexNAc(6)Sulf(1);AC=1517;", "dHex(1)Hex(6)HexNAc(3)Sulf(1)": "NT=dHex(1)Hex(6)HexNAc(3)Sulf(1);AC=1518;", "dHex(1)Hex(4)HexNAc(5)": "NT=dHex(1)Hex(4)HexNAc(5);AC=1519;", "dHex(1)Hex(5)HexA(1)HexNAc(3)Sulf(1)": "NT=dHex(1)Hex(5)HexA(1)HexNAc(3)Sulf(1);AC=1520;", "Hex(7)HexNAc(3)Phos(1)": "NT=Hex(7)HexNAc(3)Phos(1);AC=1521;", "Hex(6)HexNAc(4)Me(3)": "NT=Hex(6)HexNAc(4)Me(3);AC=1522;", "dHex(2)Hex(4)HexNAc(4)Sulf(1)": "NT=dHex(2)Hex(4)HexNAc(4)Sulf(1);AC=1523;", "Hex(4)HexNAc(3)NeuAc(2)": "NT=Hex(4)HexNAc(3)NeuAc(2);AC=1524;", "dHex(1)Hex(3)HexNAc(4)Pent(3)": "NT=dHex(1)Hex(3)HexNAc(4)Pent(3);AC=1525;", "dHex(2)Hex(5)HexNAc(3)Pent(1)": "NT=dHex(2)Hex(5)HexNAc(3)Pent(1);AC=1526;", "dHex(1)Hex(5)HexNAc(4)Sulf(1)": "NT=dHex(1)Hex(5)HexNAc(4)Sulf(1);AC=1527;", "dHex(2)Hex(3)HexNAc(4)Pent(2)": "NT=dHex(2)Hex(3)HexNAc(4)Pent(2);AC=1528;", "dHex(1)Hex(5)HexNAc(3)NeuAc(1)": "NT=dHex(1)Hex(5)HexNAc(3)NeuAc(1);AC=1529;", "Hex(3)HexNAc(6)Sulf(2)": "NT=Hex(3)HexNAc(6)Sulf(2);AC=1530;", "Hex(9)HexNAc(2)": "NT=Hex(9)HexNAc(2);AC=1531;", "Hex(4)HexNAc(6)": "NT=Hex(4)HexNAc(6);AC=1532;", "dHex(3)Hex(3)HexNAc(4)Pent(1)": "NT=dHex(3)Hex(3)HexNAc(4)Pent(1);AC=1533;", "dHex(1)Hex(5)HexNAc(3)NeuGc(1)": "NT=dHex(1)Hex(5)HexNAc(3)NeuGc(1);AC=1534;", "dHex(2)Hex(4)HexNAc(4)Pent(1)": "NT=dHex(2)Hex(4)HexNAc(4)Pent(1);AC=1535;", "dHex(1)Hex(4)HexNAc(5)Sulf(1)": "NT=dHex(1)Hex(4)HexNAc(5)Sulf(1);AC=1536;", "dHex(1)Hex(7)HexNAc(3)": "NT=dHex(1)Hex(7)HexNAc(3);AC=1537;", "dHex(1)Hex(5)HexNAc(4)Pent(1)": "NT=dHex(1)Hex(5)HexNAc(4)Pent(1);AC=1538;", "dHex(1)Hex(5)HexA(1)HexNAc(3)Sulf(2)": "NT=dHex(1)Hex(5)HexA(1)HexNAc(3)Sulf(2);AC=1539;", "Hex(3)HexNAc(7)": "NT=Hex(3)HexNAc(7);AC=1540;", "dHex(2)Hex(5)HexNAc(4)": "NT=dHex(2)Hex(5)HexNAc(4);AC=1541;", "dHex(2)Hex(4)HexNAc(3)NeuAc(1)Sulf(1)": "NT=dHex(2)Hex(4)HexNAc(3)NeuAc(1)Sulf(1);AC=1542;", "dHex(1)Hex(5)HexNAc(4)Sulf(2)": "NT=dHex(1)Hex(5)HexNAc(4)Sulf(2);AC=1543;", "dHex(1)Hex(5)HexNAc(4)Me(2)Pent(1)": "NT=dHex(1)Hex(5)HexNAc(4)Me(2)Pent(1);AC=1544;", "Hex(5)HexNAc(4)NeuGc(1)": "NT=Hex(5)HexNAc(4)NeuGc(1);AC=1545;", "dHex(1)Hex(3)HexNAc(6)Sulf(1)": "NT=dHex(1)Hex(3)HexNAc(6)Sulf(1);AC=1546;", "dHex(1)Hex(6)HexNAc(4)": "NT=dHex(1)Hex(6)HexNAc(4);AC=1547;", "dHex(1)Hex(5)HexNAc(3)NeuAc(1)Sulf(1)": "NT=dHex(1)Hex(5)HexNAc(3)NeuAc(1)Sulf(1);AC=1548;", "Hex(7)HexNAc(4)": "NT=Hex(7)HexNAc(4);AC=1549;", "dHex(1)Hex(5)HexNAc(3)NeuGc(1)Sulf(1)": "NT=dHex(1)Hex(5)HexNAc(3)NeuGc(1)Sulf(1);AC=1550;", "Hex(4)HexNAc(5)NeuAc(1)": "NT=Hex(4)HexNAc(5)NeuAc(1);AC=1551;", "Hex(6)HexNAc(4)Me(3)Pent(1)": "NT=Hex(6)HexNAc(4)Me(3)Pent(1);AC=1552;", "dHex(1)Hex(7)HexNAc(3)Sulf(1)": "NT=dHex(1)Hex(7)HexNAc(3)Sulf(1);AC=1553;", "dHex(1)Hex(7)HexNAc(3)Phos(1)": "NT=dHex(1)Hex(7)HexNAc(3)Phos(1);AC=1554;", "dHex(1)Hex(5)HexNAc(5)": "NT=dHex(1)Hex(5)HexNAc(5);AC=1555;", "dHex(1)Hex(4)HexNAc(4)NeuAc(1)Sulf(1)": "NT=dHex(1)Hex(4)HexNAc(4)NeuAc(1)Sulf(1);AC=1556;", "dHex(3)Hex(4)HexNAc(4)Sulf(1)": "NT=dHex(3)Hex(4)HexNAc(4)Sulf(1);AC=1557;", "Hex(3)HexNAc(7)Sulf(1)": "NT=Hex(3)HexNAc(7)Sulf(1);AC=1558;", "Hex(6)HexNAc(5)": "NT=Hex(6)HexNAc(5);AC=1559;", "Hex(5)HexNAc(4)NeuAc(1)Sulf(1)": "NT=Hex(5)HexNAc(4)NeuAc(1)Sulf(1);AC=1560;", "Hex(3)HexNAc(6)NeuAc(1)": "NT=Hex(3)HexNAc(6)NeuAc(1);AC=1561;", "dHex(2)Hex(3)HexNAc(6)": "NT=dHex(2)Hex(3)HexNAc(6);AC=1562;", "Hex(1)HexNAc(1)NeuGc(1)": "NT=Hex(1)HexNAc(1)NeuGc(1);AC=1563;", "dHex(1)Hex(2)HexNAc(1)": "NT=dHex(1)Hex(2)HexNAc(1);AC=1564;", "HexNAc(3)Sulf(1)": "NT=HexNAc(3)Sulf(1);AC=1565;", "Hex(3)HexNAc(1)": "NT=Hex(3)HexNAc(1);AC=1566;", "Hex(1)HexNAc(1)Kdn(1)Sulf(1)": "NT=Hex(1)HexNAc(1)Kdn(1)Sulf(1);AC=1567;", "HexNAc(2)NeuAc(1)": "NT=HexNAc(2)NeuAc(1);AC=1568;", "HexNAc(1)Kdn(2)": "NT=HexNAc(1)Kdn(2);AC=1570;", "Hex(3)HexNAc(1)Me(1)": "NT=Hex(3)HexNAc(1)Me(1);AC=1571;", "Hex(2)HexA(1)Pent(1)Sulf(1)": "NT=Hex(2)HexA(1)Pent(1)Sulf(1);AC=1572;", "HexNAc(2)NeuGc(1)": "NT=HexNAc(2)NeuGc(1);AC=1573;", "Hex(4)Phos(1)": "NT=Hex(4)Phos(1);AC=1575;", "Hex(1)HexNAc(1)NeuAc(1)Sulf(1)": "NT=Hex(1)HexNAc(1)NeuAc(1)Sulf(1);AC=1577;", "Hex(1)HexA(1)HexNAc(2)": "NT=Hex(1)HexA(1)HexNAc(2);AC=1578;", "dHex(1)Hex(2)HexNAc(1)Sulf(1)": "NT=dHex(1)Hex(2)HexNAc(1)Sulf(1);AC=1579;", "dHex(1)HexNAc(3)": "NT=dHex(1)HexNAc(3);AC=1580;", "dHex(1)Hex(1)HexNAc(1)Kdn(1)": "NT=dHex(1)Hex(1)HexNAc(1)Kdn(1);AC=1581;", "Hex(1)HexNAc(3)": "NT=Hex(1)HexNAc(3);AC=1582;", "HexNAc(2)NeuAc(1)Sulf(1)": "NT=HexNAc(2)NeuAc(1)Sulf(1);AC=1583;", "dHex(2)Hex(3)": "NT=dHex(2)Hex(3);AC=1584;", "Hex(2)HexA(1)HexNAc(1)Sulf(1)": "NT=Hex(2)HexA(1)HexNAc(1)Sulf(1);AC=1585;", "dHex(2)Hex(2)HexA(1)": "NT=dHex(2)Hex(2)HexA(1);AC=1586;", "dHex(1)Hex(1)HexNAc(2)Sulf(1)": "NT=dHex(1)Hex(1)HexNAc(2)Sulf(1);AC=1587;", "dHex(1)Hex(1)HexNAc(1)NeuAc(1)": "NT=dHex(1)Hex(1)HexNAc(1)NeuAc(1);AC=1588;", "Hex(2)HexNAc(2)Sulf(1)": "NT=Hex(2)HexNAc(2)Sulf(1);AC=1589;", "Hex(5)": "NT=Hex(5);AC=1590;", "HexNAc(4)": "NT=HexNAc(4);AC=1591;", "HexNAc(1)NeuGc(2)": "NT=HexNAc(1)NeuGc(2);AC=1592;", "dHex(1)Hex(1)HexNAc(1)NeuGc(1)": "NT=dHex(1)Hex(1)HexNAc(1)NeuGc(1);AC=1593;", "dHex(2)Hex(2)HexNAc(1)": "NT=dHex(2)Hex(2)HexNAc(1);AC=1594;", "Hex(2)HexNAc(1)NeuGc(1)": "NT=Hex(2)HexNAc(1)NeuGc(1);AC=1595;", "dHex(1)Hex(3)HexNAc(1)": "NT=dHex(1)Hex(3)HexNAc(1);AC=1596;", "dHex(1)Hex(2)HexA(1)HexNAc(1)": "NT=dHex(1)Hex(2)HexA(1)HexNAc(1);AC=1597;", "Hex(1)HexNAc(3)Sulf(1)": "NT=Hex(1)HexNAc(3)Sulf(1);AC=1598;", "Hex(4)HexNAc(1)": "NT=Hex(4)HexNAc(1);AC=1599;", "Hex(1)HexNAc(2)NeuAc(1)": "NT=Hex(1)HexNAc(2)NeuAc(1);AC=1600;", "Hex(1)HexNAc(2)NeuGc(1)": "NT=Hex(1)HexNAc(2)NeuGc(1);AC=1602;", "Hex(5)Phos(1)": "NT=Hex(5)Phos(1);AC=1604;", "dHex(2)Hex(1)HexNAc(1)Kdn(1)": "NT=dHex(2)Hex(1)HexNAc(1)Kdn(1);AC=1606;", "dHex(1)Hex(3)HexNAc(1)Sulf(1)": "NT=dHex(1)Hex(3)HexNAc(1)Sulf(1);AC=1607;", "dHex(1)Hex(1)HexNAc(3)": "NT=dHex(1)Hex(1)HexNAc(3);AC=1608;", "dHex(1)Hex(2)HexA(1)HexNAc(1)Sulf(1)": "NT=dHex(1)Hex(2)HexA(1)HexNAc(1)Sulf(1);AC=1609;", "Hex(2)HexNAc(3)": "NT=Hex(2)HexNAc(3);AC=1610;", "Hex(1)HexNAc(2)NeuAc(1)Sulf(1)": "NT=Hex(1)HexNAc(2)NeuAc(1)Sulf(1);AC=1611;", "dHex(2)Hex(4)": "NT=dHex(2)Hex(4);AC=1612;", "dHex(2)HexNAc(2)Kdn(1)": "NT=dHex(2)HexNAc(2)Kdn(1);AC=1614;", "dHex(1)Hex(2)HexNAc(2)Sulf(1)": "NT=dHex(1)Hex(2)HexNAc(2)Sulf(1);AC=1615;", "dHex(1)HexNAc(4)": "NT=dHex(1)HexNAc(4);AC=1616;", "Hex(1)HexNAc(1)NeuAc(1)NeuGc(1)": "NT=Hex(1)HexNAc(1)NeuAc(1)NeuGc(1);AC=1617;", "dHex(1)Hex(1)HexNAc(2)Kdn(1)": "NT=dHex(1)Hex(1)HexNAc(2)Kdn(1);AC=1618;", "Hex(1)HexNAc(1)NeuGc(2)": "NT=Hex(1)HexNAc(1)NeuGc(2);AC=1619;", "Hex(1)HexNAc(1)NeuAc(2)Ac(1)": "NT=Hex(1)HexNAc(1)NeuAc(2)Ac(1);AC=1620;", "dHex(2)Hex(2)HexA(1)HexNAc(1)": "NT=dHex(2)Hex(2)HexA(1)HexNAc(1);AC=1621;", "dHex(1)Hex(1)HexNAc(3)Sulf(1)": "NT=dHex(1)Hex(1)HexNAc(3)Sulf(1);AC=1622;", "Hex(2)HexA(1)NeuAc(1)Pent(1)Sulf(1)": "NT=Hex(2)HexA(1)NeuAc(1)Pent(1)Sulf(1);AC=1623;", "dHex(1)Hex(1)HexNAc(2)NeuAc(1)": "NT=dHex(1)Hex(1)HexNAc(2)NeuAc(1);AC=1624;", "dHex(1)Hex(3)HexA(1)HexNAc(1)": "NT=dHex(1)Hex(3)HexA(1)HexNAc(1);AC=1625;", "Hex(2)HexNAc(3)Sulf(1)": "NT=Hex(2)HexNAc(3)Sulf(1);AC=1626;", "Hex(5)HexNAc(1)": "NT=Hex(5)HexNAc(1);AC=1627;", "HexNAc(5)": "NT=HexNAc(5);AC=1628;", "Hex(1)HexNAc(1)NeuAc(2)Ac(2)": "NT=Hex(1)HexNAc(1)NeuAc(2)Ac(2);AC=1630;", "Hex(2)HexNAc(2)NeuGc(1)": "NT=Hex(2)HexNAc(2)NeuGc(1);AC=1631;", "Hex(5)Phos(3)": "NT=Hex(5)Phos(3);AC=1632;", "Hex(6)Phos(1)": "NT=Hex(6)Phos(1);AC=1633;", "dHex(1)Hex(2)HexA(1)HexNAc(2)": "NT=dHex(1)Hex(2)HexA(1)HexNAc(2);AC=1634;", "dHex(2)Hex(3)HexNAc(1)Sulf(1)": "NT=dHex(2)Hex(3)HexNAc(1)Sulf(1);AC=1635;", "Hex(1)HexNAc(3)NeuAc(1)": "NT=Hex(1)HexNAc(3)NeuAc(1);AC=1636;", "dHex(2)Hex(1)HexNAc(3)": "NT=dHex(2)Hex(1)HexNAc(3);AC=1637;", "Hex(1)HexNAc(3)NeuGc(1)": "NT=Hex(1)HexNAc(3)NeuGc(1);AC=1638;", "dHex(1)Hex(1)HexNAc(2)NeuAc(1)Sulf(1)": "NT=dHex(1)Hex(1)HexNAc(2)NeuAc(1)Sulf(1);AC=1639;", "dHex(1)Hex(3)HexA(1)HexNAc(1)Sulf(1)": "NT=dHex(1)Hex(3)HexA(1)HexNAc(1)Sulf(1);AC=1640;", "dHex(1)Hex(1)HexA(1)HexNAc(3)": "NT=dHex(1)Hex(1)HexA(1)HexNAc(3);AC=1641;", "Hex(2)HexNAc(2)NeuAc(1)Sulf(1)": "NT=Hex(2)HexNAc(2)NeuAc(1)Sulf(1);AC=1642;", "dHex(2)Hex(2)HexNAc(2)Sulf(1)": "NT=dHex(2)Hex(2)HexNAc(2)Sulf(1);AC=1643;", "dHex(2)Hex(1)HexNAc(2)Kdn(1)": "NT=dHex(2)Hex(1)HexNAc(2)Kdn(1);AC=1644;", "dHex(1)Hex(1)HexNAc(4)": "NT=dHex(1)Hex(1)HexNAc(4);AC=1645;", "Hex(2)HexNAc(4)": "NT=Hex(2)HexNAc(4);AC=1646;", "Hex(2)HexNAc(1)NeuGc(2)": "NT=Hex(2)HexNAc(1)NeuGc(2);AC=1647;", "dHex(2)Hex(4)HexNAc(1)": "NT=dHex(2)Hex(4)HexNAc(1);AC=1648;", "Hex(1)HexNAc(2)NeuAc(2)": "NT=Hex(1)HexNAc(2)NeuAc(2);AC=1649;", "dHex(2)Hex(1)HexNAc(2)NeuAc(1)": "NT=dHex(2)Hex(1)HexNAc(2)NeuAc(1);AC=1650;", "dHex(1)Hex(2)HexNAc(3)Sulf(1)": "NT=dHex(1)Hex(2)HexNAc(3)Sulf(1);AC=1651;", "dHex(1)HexNAc(5)": "NT=dHex(1)HexNAc(5);AC=1652;", "dHex(2)Hex(1)HexNAc(2)NeuGc(1)": "NT=dHex(2)Hex(1)HexNAc(2)NeuGc(1);AC=1653;", "dHex(3)Hex(2)HexNAc(2)": "NT=dHex(3)Hex(2)HexNAc(2);AC=1654;", "Hex(3)HexNAc(3)Sulf(1)": "NT=Hex(3)HexNAc(3)Sulf(1);AC=1655;", "dHex(2)Hex(2)HexNAc(2)Sulf(2)": "NT=dHex(2)Hex(2)HexNAc(2)Sulf(2);AC=1656;", "dHex(1)Hex(2)HexNAc(2)NeuGc(1)": "NT=dHex(1)Hex(2)HexNAc(2)NeuGc(1);AC=1657;", "dHex(1)Hex(1)HexNAc(3)NeuAc(1)": "NT=dHex(1)Hex(1)HexNAc(3)NeuAc(1);AC=1658;", "Hex(6)Phos(3)": "NT=Hex(6)Phos(3);AC=1659;", "dHex(1)Hex(3)HexA(1)HexNAc(2)": "NT=dHex(1)Hex(3)HexA(1)HexNAc(2);AC=1660;", "dHex(1)Hex(1)HexNAc(3)NeuGc(1)": "NT=dHex(1)Hex(1)HexNAc(3)NeuGc(1);AC=1661;", "Hex(1)HexNAc(2)NeuAc(2)Sulf(1)": "NT=Hex(1)HexNAc(2)NeuAc(2)Sulf(1);AC=1662;", "dHex(2)Hex(3)HexA(1)HexNAc(1)Sulf(1)": "NT=dHex(2)Hex(3)HexA(1)HexNAc(1)Sulf(1);AC=1663;", "Hex(1)HexNAc(1)NeuAc(3)": "NT=Hex(1)HexNAc(1)NeuAc(3);AC=1664;", "Hex(2)HexNAc(3)NeuGc(1)": "NT=Hex(2)HexNAc(3)NeuGc(1);AC=1665;", "dHex(1)Hex(2)HexNAc(2)NeuAc(1)Sulf(1)": "NT=dHex(1)Hex(2)HexNAc(2)NeuAc(1)Sulf(1);AC=1666;", "dHex(3)Hex(1)HexNAc(2)Kdn(1)": "NT=dHex(3)Hex(1)HexNAc(2)Kdn(1);AC=1667;", "dHex(2)Hex(3)HexNAc(2)Sulf(1)": "NT=dHex(2)Hex(3)HexNAc(2)Sulf(1);AC=1668;", "dHex(2)Hex(2)HexNAc(2)Kdn(1)": "NT=dHex(2)Hex(2)HexNAc(2)Kdn(1);AC=1669;", "dHex(2)Hex(2)HexA(1)HexNAc(2)Sulf(1)": "NT=dHex(2)Hex(2)HexA(1)HexNAc(2)Sulf(1);AC=1670;", "dHex(1)Hex(2)HexNAc(4)": "NT=dHex(1)Hex(2)HexNAc(4);AC=1671;", "Hex(1)HexNAc(1)NeuGc(3)": "NT=Hex(1)HexNAc(1)NeuGc(3);AC=1672;", "dHex(1)Hex(1)HexNAc(3)NeuAc(1)Sulf(1)": "NT=dHex(1)Hex(1)HexNAc(3)NeuAc(1)Sulf(1);AC=1673;", "dHex(1)Hex(3)HexA(1)HexNAc(2)Sulf(1)": "NT=dHex(1)Hex(3)HexA(1)HexNAc(2)Sulf(1);AC=1674;", "dHex(1)Hex(1)HexNAc(2)NeuAc(2)": "NT=dHex(1)Hex(1)HexNAc(2)NeuAc(2);AC=1675;", "dHex(3)HexNAc(3)Kdn(1)": "NT=dHex(3)HexNAc(3)Kdn(1);AC=1676;", "Hex(2)HexNAc(3)NeuAc(1)Sulf(1)": "NT=Hex(2)HexNAc(3)NeuAc(1)Sulf(1);AC=1678;", "dHex(2)Hex(2)HexNAc(3)Sulf(1)": "NT=dHex(2)Hex(2)HexNAc(3)Sulf(1);AC=1679;", "dHex(2)HexNAc(5)": "NT=dHex(2)HexNAc(5);AC=1680;", "Hex(2)HexNAc(2)NeuAc(2)": "NT=Hex(2)HexNAc(2)NeuAc(2);AC=1681;", "dHex(2)Hex(2)HexNAc(2)NeuAc(1)": "NT=dHex(2)Hex(2)HexNAc(2)NeuAc(1);AC=1682;", "dHex(1)Hex(3)HexNAc(3)Sulf(1)": "NT=dHex(1)Hex(3)HexNAc(3)Sulf(1);AC=1683;", "dHex(2)Hex(2)HexNAc(2)NeuGc(1)": "NT=dHex(2)Hex(2)HexNAc(2)NeuGc(1);AC=1684;", "Hex(2)HexNAc(5)": "NT=Hex(2)HexNAc(5);AC=1685;", "dHex(1)Hex(3)HexNAc(2)NeuGc(1)": "NT=dHex(1)Hex(3)HexNAc(2)NeuGc(1);AC=1686;", "Hex(1)HexNAc(3)NeuAc(2)": "NT=Hex(1)HexNAc(3)NeuAc(2);AC=1687;", "dHex(1)Hex(2)HexNAc(3)NeuAc(1)": "NT=dHex(1)Hex(2)HexNAc(3)NeuAc(1);AC=1688;", "dHex(3)Hex(2)HexNAc(3)": "NT=dHex(3)Hex(2)HexNAc(3);AC=1689;", "Hex(7)Phos(3)": "NT=Hex(7)Phos(3);AC=1690;", "dHex(1)Hex(4)HexA(1)HexNAc(2)": "NT=dHex(1)Hex(4)HexA(1)HexNAc(2);AC=1691;", "Hex(3)HexNAc(3)NeuAc(1)": "NT=Hex(3)HexNAc(3)NeuAc(1);AC=1692;", "dHex(1)Hex(3)HexA(2)HexNAc(2)": "NT=dHex(1)Hex(3)HexA(2)HexNAc(2);AC=1693;", "Hex(2)HexNAc(2)NeuAc(2)Sulf(1)": "NT=Hex(2)HexNAc(2)NeuAc(2)Sulf(1);AC=1694;", "dHex(2)Hex(2)HexNAc(2)NeuAc(1)Sulf(1)": "NT=dHex(2)Hex(2)HexNAc(2)NeuAc(1)Sulf(1);AC=1695;", "Hex(3)HexNAc(3)NeuGc(1)": "NT=Hex(3)HexNAc(3)NeuGc(1);AC=1696;", "dHex(4)Hex(1)HexNAc(2)Kdn(1)": "NT=dHex(4)Hex(1)HexNAc(2)Kdn(1);AC=1697;", "dHex(3)Hex(2)HexNAc(2)Kdn(1)": "NT=dHex(3)Hex(2)HexNAc(2)Kdn(1);AC=1698;", "dHex(3)Hex(2)HexA(1)HexNAc(2)Sulf(1)": "NT=dHex(3)Hex(2)HexA(1)HexNAc(2)Sulf(1);AC=1699;", "Hex(2)HexNAc(4)NeuAc(1)": "NT=Hex(2)HexNAc(4)NeuAc(1);AC=1700;", "dHex(2)Hex(2)HexNAc(4)": "NT=dHex(2)Hex(2)HexNAc(4);AC=1701;", "dHex(2)Hex(3)HexA(1)HexNAc(2)Sulf(1)": "NT=dHex(2)Hex(3)HexA(1)HexNAc(2)Sulf(1);AC=1702;", "dHex(4)HexNAc(3)Kdn(1)": "NT=dHex(4)HexNAc(3)Kdn(1);AC=1703;", "Hex(2)HexNAc(1)NeuGc(3)": "NT=Hex(2)HexNAc(1)NeuGc(3);AC=1705;", "dHex(4)Hex(1)HexNAc(1)Kdn(2)": "NT=dHex(4)Hex(1)HexNAc(1)Kdn(2);AC=1706;", "dHex(1)Hex(2)HexNAc(3)NeuAc(1)Sulf(1)": "NT=dHex(1)Hex(2)HexNAc(3)NeuAc(1)Sulf(1);AC=1707;", "dHex(1)Hex(2)HexNAc(2)NeuAc(2)": "NT=dHex(1)Hex(2)HexNAc(2)NeuAc(2);AC=1708;", "dHex(3)Hex(1)HexNAc(3)Kdn(1)": "NT=dHex(3)Hex(1)HexNAc(3)Kdn(1);AC=1709;", "Hex(3)HexNAc(3)NeuAc(1)Sulf(1)": "NT=Hex(3)HexNAc(3)NeuAc(1)Sulf(1);AC=1711;", "Hex(3)HexNAc(2)NeuAc(2)": "NT=Hex(3)HexNAc(2)NeuAc(2);AC=1712;", "Hex(3)HexNAc(3)NeuGc(1)Sulf(1)": "NT=Hex(3)HexNAc(3)NeuGc(1)Sulf(1);AC=1713;", "dHex(1)Hex(2)HexNAc(2)NeuGc(2)": "NT=dHex(1)Hex(2)HexNAc(2)NeuGc(2);AC=1714;", "dHex(2)Hex(3)HexNAc(2)NeuGc(1)": "NT=dHex(2)Hex(3)HexNAc(2)NeuGc(1);AC=1715;", "dHex(1)Hex(3)HexA(1)HexNAc(3)Sulf(1)": "NT=dHex(1)Hex(3)HexA(1)HexNAc(3)Sulf(1);AC=1716;", "Hex(2)HexNAc(3)NeuAc(2)": "NT=Hex(2)HexNAc(3)NeuAc(2);AC=1717;", "dHex(2)Hex(2)HexNAc(3)NeuAc(1)": "NT=dHex(2)Hex(2)HexNAc(3)NeuAc(1);AC=1718;", "dHex(4)Hex(2)HexNAc(3)": "NT=dHex(4)Hex(2)HexNAc(3);AC=1719;", "Hex(2)HexNAc(3)NeuAc(1)NeuGc(1)": "NT=Hex(2)HexNAc(3)NeuAc(1)NeuGc(1);AC=1720;", "dHex(2)Hex(2)HexNAc(3)NeuGc(1)": "NT=dHex(2)Hex(2)HexNAc(3)NeuGc(1);AC=1721;", "dHex(3)Hex(3)HexNAc(3)": "NT=dHex(3)Hex(3)HexNAc(3);AC=1722;", "Hex(8)Phos(3)": "NT=Hex(8)Phos(3);AC=1723;", "dHex(1)Hex(2)HexNAc(2)NeuAc(2)Sulf(1)": "NT=dHex(1)Hex(2)HexNAc(2)NeuAc(2)Sulf(1);AC=1724;", "Hex(2)HexNAc(3)NeuGc(2)": "NT=Hex(2)HexNAc(3)NeuGc(2);AC=1725;", "dHex(4)Hex(2)HexNAc(2)Kdn(1)": "NT=dHex(4)Hex(2)HexNAc(2)Kdn(1);AC=1726;", "dHex(1)Hex(2)HexNAc(4)NeuAc(1)": "NT=dHex(1)Hex(2)HexNAc(4)NeuAc(1);AC=1727;", "dHex(3)Hex(2)HexNAc(4)": "NT=dHex(3)Hex(2)HexNAc(4);AC=1728;", "Hex(1)HexNAc(1)NeuGc(4)": "NT=Hex(1)HexNAc(1)NeuGc(4);AC=1729;", "dHex(4)Hex(1)HexNAc(3)Kdn(1)": "NT=dHex(4)Hex(1)HexNAc(3)Kdn(1);AC=1730;", "Hex(4)HexNAc(4)Sulf(2)": "NT=Hex(4)HexNAc(4)Sulf(2);AC=1732;", "dHex(3)Hex(2)HexNAc(3)Kdn(1)": "NT=dHex(3)Hex(2)HexNAc(3)Kdn(1);AC=1733;", "dHex(2)Hex(2)HexNAc(5)": "NT=dHex(2)Hex(2)HexNAc(5);AC=1735;", "dHex(2)Hex(3)HexA(1)HexNAc(3)Sulf(1)": "NT=dHex(2)Hex(3)HexA(1)HexNAc(3)Sulf(1);AC=1736;", "dHex(1)Hex(4)HexA(1)HexNAc(3)Sulf(1)": "NT=dHex(1)Hex(4)HexA(1)HexNAc(3)Sulf(1);AC=1737;", "Hex(3)HexNAc(3)NeuAc(2)": "NT=Hex(3)HexNAc(3)NeuAc(2);AC=1738;", "dHex(2)Hex(3)HexNAc(3)NeuAc(1)": "NT=dHex(2)Hex(3)HexNAc(3)NeuAc(1);AC=1739;", "dHex(4)Hex(3)HexNAc(3)": "NT=dHex(4)Hex(3)HexNAc(3);AC=1740;", "Hex(9)Phos(3)": "NT=Hex(9)Phos(3);AC=1742;", "dHex(2)HexNAc(7)": "NT=dHex(2)HexNAc(7);AC=1743;", "Hex(2)HexNAc(1)NeuGc(4)": "NT=Hex(2)HexNAc(1)NeuGc(4);AC=1744;", "Hex(3)HexNAc(3)NeuAc(2)Sulf(1)": "NT=Hex(3)HexNAc(3)NeuAc(2)Sulf(1);AC=1745;", "dHex(2)Hex(3)HexNAc(5)": "NT=dHex(2)Hex(3)HexNAc(5);AC=1746;", "dHex(1)Hex(2)HexNAc(2)NeuGc(3)": "NT=dHex(1)Hex(2)HexNAc(2)NeuGc(3);AC=1747;", "dHex(2)Hex(4)HexA(1)HexNAc(3)Sulf(1)": "NT=dHex(2)Hex(4)HexA(1)HexNAc(3)Sulf(1);AC=1748;", "Hex(2)HexNAc(3)NeuAc(3)": "NT=Hex(2)HexNAc(3)NeuAc(3);AC=1749;", "dHex(1)Hex(3)HexNAc(3)NeuAc(2)": "NT=dHex(1)Hex(3)HexNAc(3)NeuAc(2);AC=1750;", "dHex(3)Hex(3)HexNAc(3)NeuAc(1)": "NT=dHex(3)Hex(3)HexNAc(3)NeuAc(1);AC=1751;", "Hex(2)HexNAc(3)NeuGc(3)": "NT=Hex(2)HexNAc(3)NeuGc(3);AC=1752;", "Hex(10)Phos(3)": "NT=Hex(10)Phos(3);AC=1753;", "dHex(1)Hex(2)HexNAc(4)NeuAc(2)": "NT=dHex(1)Hex(2)HexNAc(4)NeuAc(2);AC=1754;", "Hex(1)HexNAc(1)NeuGc(5)": "NT=Hex(1)HexNAc(1)NeuGc(5);AC=1755;", "Hex(4)HexNAc(4)NeuAc(1)Sulf(2)": "NT=Hex(4)HexNAc(4)NeuAc(1)Sulf(2);AC=1756;", "Hex(4)HexNAc(4)NeuGc(1)Sulf(2)": "NT=Hex(4)HexNAc(4)NeuGc(1)Sulf(2);AC=1757;", "dHex(2)Hex(3)HexNAc(3)NeuAc(2)": "NT=dHex(2)Hex(3)HexNAc(3)NeuAc(2);AC=1758;", "Hex(4)HexNAc(4)NeuAc(1)Sulf(3)": "NT=Hex(4)HexNAc(4)NeuAc(1)Sulf(3);AC=1759;", "dHex(2)Hex(2)HexNAc(2)": "NT=dHex(2)Hex(2)HexNAc(2);AC=1760;", "dHex(1)Hex(3)HexNAc(2)": "NT=dHex(1)Hex(3)HexNAc(2);AC=1761;", "dHex(1)Hex(2)HexNAc(3)": "NT=dHex(1)Hex(2)HexNAc(3);AC=1762;", "Hex(3)HexNAc(3)": "NT=Hex(3)HexNAc(3);AC=1763;", "dHex(1)Hex(3)HexNAc(2)Sulf(1)": "NT=dHex(1)Hex(3)HexNAc(2)Sulf(1);AC=1764;", "dHex(2)Hex(3)HexNAc(2)": "NT=dHex(2)Hex(3)HexNAc(2);AC=1765;", "dHex(1)Hex(4)HexNAc(2)": "NT=dHex(1)Hex(4)HexNAc(2);AC=1766;", "dHex(2)Hex(2)HexNAc(3)": "NT=dHex(2)Hex(2)HexNAc(3);AC=1767;", "dHex(1)Hex(3)HexNAc(3)": "NT=dHex(1)Hex(3)HexNAc(3);AC=1768;", "Hex(4)HexNAc(3)": "NT=Hex(4)HexNAc(3);AC=1769;", "dHex(2)Hex(4)HexNAc(2)": "NT=dHex(2)Hex(4)HexNAc(2);AC=1770;", "dHex(2)Hex(3)HexNAc(3)": "NT=dHex(2)Hex(3)HexNAc(3);AC=1771;", "Hex(3)HexNAc(5)": "NT=Hex(3)HexNAc(5);AC=1772;", "Hex(4)HexNAc(3)NeuAc(1)": "NT=Hex(4)HexNAc(3)NeuAc(1);AC=1773;", "dHex(2)Hex(3)HexNAc(4)": "NT=dHex(2)Hex(3)HexNAc(4);AC=1774;", "dHex(1)Hex(3)HexNAc(5)": "NT=dHex(1)Hex(3)HexNAc(5);AC=1775;", "Hex(3)HexNAc(6)": "NT=Hex(3)HexNAc(6);AC=1776;", "Hex(4)HexNAc(4)NeuAc(1)": "NT=Hex(4)HexNAc(4)NeuAc(1);AC=1777;", "dHex(2)Hex(4)HexNAc(4)": "NT=dHex(2)Hex(4)HexNAc(4);AC=1778;", "Hex(6)HexNAc(4)": "NT=Hex(6)HexNAc(4);AC=1779;", "Hex(5)HexNAc(5)": "NT=Hex(5)HexNAc(5);AC=1780;", "dHex(1)Hex(3)HexNAc(6)": "NT=dHex(1)Hex(3)HexNAc(6);AC=1781;", "dHex(1)Hex(4)HexNAc(4)NeuAc(1)": "NT=dHex(1)Hex(4)HexNAc(4)NeuAc(1);AC=1782;", "dHex(3)Hex(4)HexNAc(4)": "NT=dHex(3)Hex(4)HexNAc(4);AC=1783;", "dHex(1)Hex(3)HexNAc(5)NeuAc(1)": "NT=dHex(1)Hex(3)HexNAc(5)NeuAc(1);AC=1784;", "dHex(2)Hex(4)HexNAc(5)": "NT=dHex(2)Hex(4)HexNAc(5);AC=1785;", "Hex(1)HexNAc(1)NeuAc(1)Ac(1)": "NT=Hex(1)HexNAc(1)NeuAc(1)Ac(1);AC=1786;", "Label:13C(2)15N(2)": "NT=Label:13C(2)15N(2);AC=1787;", "Xlink:DSS[155]": "NT=Xlink:DSS[155];AC=1789;", "NQIGG": "NT=NQIGG;AC=1799;", "Carboxyethylpyrrole": "NT=Carboxyethylpyrrole;AC=1800;", "Fluorescein-tyramine": "NT=Fluorescein-tyramine;AC=1801;", "GEE": "NT=GEE;AC=1824;", "RNPXL": "NT=RNPXL;AC=1825;", "Glu->pyro-Glu+Methyl": "NT=Glu->pyro-Glu+Methyl;AC=1826;", "Glu->pyro-Glu+Methyl:2H(2)13C(1)": "NT=Glu->pyro-Glu+Methyl:2H(2)13C(1);AC=1827;", "LRGG+methyl": "NT=LRGG+methyl;AC=1828;", "LRGG+dimethyl": "NT=LRGG+dimethyl;AC=1829;", "Biotin-tyramide": "NT=Biotin-tyramide;AC=1830;", "Tris": "NT=Tris;AC=1831;", "IASD": "NT=IASD;AC=1832;", "NP40": "NT=NP40;AC=1833;", "Tween20": "NT=Tween20;AC=1834;", "Tween80": "NT=Tween80;AC=1835;", "Triton": "NT=Triton;AC=1836;", "Brij35": "NT=Brij35;AC=1837;", "Brij58": "NT=Brij58;AC=1838;", "betaFNA": "NT=betaFNA;AC=1839;", "dHex(1)Hex(7)HexNAc(4)": "NT=dHex(1)Hex(7)HexNAc(4);AC=1840;", "Biotin:Thermo-21328": "NT=Biotin:Thermo-21328;AC=1841;", "Xlink:DSSO": "NT=Xlink:DSSO;AC=1842;", "PhosphoCytidine": "NT=PhosphoCytidine;AC=1843;", "Xlink:EGS": "NT=Xlink:EGS;AC=1844;", "AzidoF": "NT=AzidoF;AC=1845;", "Dimethylaminoethyl": "NT=Dimethylaminoethyl;AC=1846;", "Gluratylation": "NT=Gluratylation;AC=1848;", "hydroxyisobutyryl": "NT=hydroxyisobutyryl;AC=1849;", "MeMePhosphorothioate": "NT=MeMePhosphorothioate;AC=1868;", "Cation:Fe[III]": "NT=Cation:Fe[III];AC=1870;", "DTT": "NT=DTT;AC=1871;", "DYn-2": "NT=DYn-2;AC=1872;", "MesitylOxide": "NT=MesitylOxide;AC=1873;", "methylol": "NT=methylol;AC=1875;", "Xlink:DSS": "NT=Xlink:DSS;AC=1876;", "Xlink:DSS[259]": "NT=Xlink:DSS[259];AC=1877;", "Xlink:DSSO[176]": "NT=Xlink:DSSO[176];AC=1878;", "Xlink:DSSO[175]": "NT=Xlink:DSSO[175];AC=1879;", "Xlink:DSSO[279]": "NT=Xlink:DSSO[279];AC=1880;", "Xlink:DSSO[54]": "NT=Xlink:DSSO[54];AC=1881;", "Xlink:DSSO[86]": "NT=Xlink:DSSO[86];AC=1882;", "Xlink:DSSO[104]": "NT=Xlink:DSSO[104];AC=1883;", "Xlink:BuUrBu": "NT=Xlink:BuUrBu;AC=1884;", "Xlink:BuUrBu[111]": "NT=Xlink:BuUrBu[111];AC=1885;", "Xlink:BuUrBu[85]": "NT=Xlink:BuUrBu[85];AC=1886;", "Xlink:BuUrBu[213]": "NT=Xlink:BuUrBu[213];AC=1887;", "Xlink:BuUrBu[214]": "NT=Xlink:BuUrBu[214];AC=1888;", "Xlink:BuUrBu[317]": "NT=Xlink:BuUrBu[317];AC=1889;", "Xlink:DTBP": "NT=Xlink:DTBP;AC=1891;", "Xlink:DST": "NT=Xlink:DST;AC=1892;", "Xlink:DTSSP": "NT=Xlink:DTSSP;AC=1893;", "Xlink:SMCC": "NT=Xlink:SMCC;AC=1895;", "Xlink:DSSO[158]": "NT=Xlink:DSSO[158];AC=1896;", "Xlink:EGS[226]": "NT=Xlink:EGS[226];AC=1897;", "Xlink:DSS[138]": "NT=Xlink:DSS[138];AC=1898;", "Xlink:BuUrBu[196]": "NT=Xlink:BuUrBu[196];AC=1899;", "Xlink:DTBP[172]": "NT=Xlink:DTBP[172];AC=1900;", "Xlink:DST[114]": "NT=Xlink:DST[114];AC=1901;", "Xlink:DTSSP[174]": "NT=Xlink:DTSSP[174];AC=1902;", "Xlink:SMCC[219]": "NT=Xlink:SMCC[219];AC=1903;", "Xlink:BS2G[96]": "NT=Xlink:BS2G[96];AC=1905;", "Xlink:BS2G[113]": "NT=Xlink:BS2G[113];AC=1906;", "Xlink:BS2G[114]": "NT=Xlink:BS2G[114];AC=1907;", "Xlink:BS2G[217]": "NT=Xlink:BS2G[217];AC=1908;", "Xlink:BS2G": "NT=Xlink:BS2G;AC=1909;", "Cation:Al[III]": "NT=Cation:Al[III];AC=1910;", "Xlink:DMP[139]": "NT=Xlink:DMP[139];AC=1911;", "Xlink:DMP[122]": "NT=Xlink:DMP[122];AC=1912;", "glyoxalAGE": "NT=glyoxalAGE;AC=1913;", "Met->AspSA": "NT=Met->AspSA;AC=1914;", "Decarboxylation": "NT=Decarboxylation;AC=1915;", "Aspartylurea": "NT=Aspartylurea;AC=1916;", "Formylasparagine": "NT=Formylasparagine;AC=1917;", "Carbonyl": "NT=Carbonyl;AC=1918;", "AFB1_Dialdehyde": "NT=AFB1_Dialdehyde;AC=1920;", "Pro->HAVA": "NT=Pro->HAVA;AC=1922;", "Delta:H(-4)O(2)": "NT=Delta:H(-4)O(2);AC=1923;", "Delta:H(-4)O(3)": "NT=Delta:H(-4)O(3);AC=1924;", "Delta:O(4)": "NT=Delta:O(4);AC=1925;", "Delta:H(4)C(3)O(2)": "NT=Delta:H(4)C(3)O(2);AC=1926;", "Delta:H(4)C(5)O(1)": "NT=Delta:H(4)C(5)O(1);AC=1927;", "Delta:H(10)C(8)O(1)": "NT=Delta:H(10)C(8)O(1);AC=1928;", "Delta:H(6)C(7)O(4)": "NT=Delta:H(6)C(7)O(4);AC=1929;", "Pent(2)": "NT=Pent(2);AC=1930;", "Pent(1)HexNAc(1)": "NT=Pent(1)HexNAc(1);AC=1931;", "Hex(2)Sulf(1)": "NT=Hex(2)Sulf(1);AC=1932;", "Hex(1)Pent(2)Me(1)": "NT=Hex(1)Pent(2)Me(1);AC=1933;", "HexNAc(2)Sulf(1)": "NT=HexNAc(2)Sulf(1);AC=1934;", "Hex(1)Pent(3)Me(1)": "NT=Hex(1)Pent(3)Me(1);AC=1935;", "Hex(2)Pent(2)": "NT=Hex(2)Pent(2);AC=1936;", "Hex(2)Pent(2)Me(1)": "NT=Hex(2)Pent(2)Me(1);AC=1937;", "Hex(4)HexA(1)": "NT=Hex(4)HexA(1);AC=1938;", "Hex(2)HexNAc(1)Pent(1)HexA(1)": "NT=Hex(2)HexNAc(1)Pent(1)HexA(1);AC=1939;", "Hex(3)HexNAc(1)HexA(1)": "NT=Hex(3)HexNAc(1)HexA(1);AC=1940;", "Hex(1)HexNAc(2)dHex(2)Sulf(1)": "NT=Hex(1)HexNAc(2)dHex(2)Sulf(1);AC=1941;", "HexA(2)HexNAc(3)": "NT=HexA(2)HexNAc(3);AC=1942;", "dHex(1)Hex(4)HexA(1)": "NT=dHex(1)Hex(4)HexA(1);AC=1943;", "Hex(5)HexA(1)": "NT=Hex(5)HexA(1);AC=1944;", "Hex(4)HexA(1)HexNAc(1)": "NT=Hex(4)HexA(1)HexNAc(1);AC=1945;", "dHex(3)Hex(3)HexNAc(1)": "NT=dHex(3)Hex(3)HexNAc(1);AC=1946;", "Hex(6)HexNAc(1)": "NT=Hex(6)HexNAc(1);AC=1947;", "Hex(1)HexNAc(4)dHex(1)Sulf(1)": "NT=Hex(1)HexNAc(4)dHex(1)Sulf(1);AC=1948;", "dHex(1)Hex(2)HexNAc(1)NeuAc(2)": "NT=dHex(1)Hex(2)HexNAc(1)NeuAc(2);AC=1949;", "dHex(3)Hex(3)HexNAc(2)": "NT=dHex(3)Hex(3)HexNAc(2);AC=1950;", "dHex(2)Hex(1)HexNAc(4)Sulf(1)": "NT=dHex(2)Hex(1)HexNAc(4)Sulf(1);AC=1951;", "dHex(1)Hex(2)HexNAc(4)Sulf(2)": "NT=dHex(1)Hex(2)HexNAc(4)Sulf(2);AC=1952;", "Hex(9)": "NT=Hex(9);AC=1953;", "dHex(2)Hex(3)HexNAc(3)Sulf(1)": "NT=dHex(2)Hex(3)HexNAc(3)Sulf(1);AC=1954;", "dHex(2)Hex(5)HexNAc(2)Me(1)": "NT=dHex(2)Hex(5)HexNAc(2)Me(1);AC=1955;", "dHex(2)Hex(2)HexNAc(4)Sulf(2)": "NT=dHex(2)Hex(2)HexNAc(4)Sulf(2);AC=1956;", "Hex(9)HexNAc(1)": "NT=Hex(9)HexNAc(1);AC=1957;", "dHex(3)Hex(2)HexNAc(4)Sulf(2)": "NT=dHex(3)Hex(2)HexNAc(4)Sulf(2);AC=1958;", "Hex(4)HexNAc(4)NeuGc(1)": "NT=Hex(4)HexNAc(4)NeuGc(1);AC=1959;", "dHex(4)Hex(3)HexNAc(2)NeuAc(1)": "NT=dHex(4)Hex(3)HexNAc(2)NeuAc(1);AC=1960;", "Hex(3)HexNAc(5)NeuAc(1)": "NT=Hex(3)HexNAc(5)NeuAc(1);AC=1961;", "Hex(10)HexNAc(1)": "NT=Hex(10)HexNAc(1);AC=1962;", "dHex(1)Hex(8)HexNAc(2)": "NT=dHex(1)Hex(8)HexNAc(2);AC=1963;", "Hex(3)HexNAc(4)NeuAc(2)": "NT=Hex(3)HexNAc(4)NeuAc(2);AC=1964;", "dHex(2)Hex(3)HexNAc(4)NeuAc(1)": "NT=dHex(2)Hex(3)HexNAc(4)NeuAc(1);AC=1965;", "dHex(2)Hex(2)HexNAc(6)Sulf(1)": "NT=dHex(2)Hex(2)HexNAc(6)Sulf(1);AC=1966;", "Hex(5)HexNAc(4)NeuAc(1)Ac(1)": "NT=Hex(5)HexNAc(4)NeuAc(1)Ac(1);AC=1967;", "Hex(3)HexNAc(3)NeuAc(3)": "NT=Hex(3)HexNAc(3)NeuAc(3);AC=1968;", "Hex(5)HexNAc(4)NeuAc(1)Ac(2)": "NT=Hex(5)HexNAc(4)NeuAc(1)Ac(2);AC=1969;", "Unknown:162": "NT=Unknown:162;AC=1970;", "Unknown:177": "NT=Unknown:177;AC=1971;", "Unknown:210": "NT=Unknown:210;AC=1972;", "Unknown:216": "NT=Unknown:216;AC=1973;", "Unknown:234": "NT=Unknown:234;AC=1974;", "Unknown:248": "NT=Unknown:248;AC=1975;", "Unknown:250": "NT=Unknown:250;AC=1976;", "Unknown:302": "NT=Unknown:302;AC=1977;", "Unknown:306": "NT=Unknown:306;AC=1978;", "Unknown:420": "NT=Unknown:420;AC=1979;", "Diethylphosphothione": "NT=Diethylphosphothione;AC=1986;", "Dimethylphosphothione": "NT=Dimethylphosphothione;AC=1987;", "monomethylphosphothione": "NT=monomethylphosphothione;AC=1989;", "CIGG": "NT=CIGG;AC=1990;", "GNLLFLACYCIGG": "NT=GNLLFLACYCIGG;AC=1991;", "serotonylation": "NT=serotonylation;AC=1992;", "TMPP-Ac:13C(9)": "NT=TMPP-Ac:13C(9);AC=1993;", "Xlink:DST[56]": "NT=Xlink:DST[56];AC=1999;", "Xlink:SDA": "NT=Xlink:SDA;AC=2000;", "ZQG": "NT=ZQG;AC=2001;", "Haloxon": "NT=Haloxon;AC=2006;", "Methamidophos-S": "NT=Methamidophos-S;AC=2007;", "Methamidophos-O": "NT=Methamidophos-O;AC=2008;", "Nitrene": "NT=Nitrene;AC=2014;", "shTMT": "NT=shTMT;AC=2015;", "TMTpro": "NT=TMTpro;AC=2016;", "TMTpro_zero": "NT=TMTpro_zero;AC=2017;", "Xlink:EDC": "NT=Xlink:EDC;AC=2018;", "Xlink:Disulfide": "NT=Xlink:Disulfide;AC=2020;", "Ser/Thr-KDO": "NT=Ser/Thr-KDO;AC=2022;", "Andro-H2O": "NT=Andro-H2O;AC=2025;", "Xlink:KQisopeptide": "NT=Xlink:KQisopeptide;AC=2026;", "His+O(2)": "NT=His+O(2);AC=2027;", "Hex(6)HexNAc(5)NeuAc(3)": "NT=Hex(6)HexNAc(5)NeuAc(3);AC=2028;", "Hex(7)HexNAc(6)": "NT=Hex(7)HexNAc(6);AC=2029;", "Met+O(2)": "NT=Met+O(2);AC=2033;", "Gly+O(2)": "NT=Gly+O(2);AC=2034;", "Pro+O(2)": "NT=Pro+O(2);AC=2035;", "Lys+O(2)": "NT=Lys+O(2);AC=2036;", "Glu+O(2)": "NT=Glu+O(2);AC=2037;", "LTX+Lophotoxin": "NT=LTX+Lophotoxin;AC=2039;", "MBS+peptide": "NT=MBS+peptide;AC=2040;", "3-hydroxybenzyl-phosphate": "NT=3-hydroxybenzyl-phosphate;AC=2041;", "phenyl-phosphate": "NT=phenyl-phosphate;AC=2042;", "RBS-ID_Uridine": "NT=RBS-ID_Uridine;AC=2044;", "shTMTpro": "NT=shTMTpro;AC=2050;", "Biotin:Aha-DADPS": "NT=Biotin:Aha-DADPS;AC=2052;", "Biotin:Aha-PC": "NT=Biotin:Aha-PC;AC=2053;", "pRBS-ID_4-thiouridine": "NT=pRBS-ID_4-thiouridine;AC=2054;", "pRBS-ID_6-thioguanosine": "NT=pRBS-ID_6-thioguanosine;AC=2055;", "6C-CysPAT": "NT=6C-CysPAT;AC=2057;", "Xlink:DSPP[210]": "NT=Xlink:DSPP[210];AC=2058;", "Xlink:DSPP[228]": "NT=Xlink:DSPP[228];AC=2059;", "Xlink:DSPP[331]": "NT=Xlink:DSPP[331];AC=2060;", "Xlink:DSPP[226]": "NT=Xlink:DSPP[226];AC=2061;", "DBIA": "NT=DBIA;AC=2062;", "Mono_N\u03b3-propargyl-L-Gln_desthiobiotin": "NT=Mono_N\u03b3-propargyl-L-Gln_desthiobiotin;AC=2067;", "Di_L-Glu_N\u03b3-propargyl-L-Gln_desthiobiotin": "NT=Di_L-Glu_N\u03b3-propargyl-L-Gln_desthiobiotin;AC=2068;", "Di_L-Gln_N\u03b3-propargyl-L-Gln_desthiobiotin": "NT=Di_L-Gln_N\u03b3-propargyl-L-Gln_desthiobiotin;AC=2069;", "L-Gln": "NT=L-Gln;AC=2070;", "Glyceroyl": "NT=Glyceroyl;AC=2072;", "N6pAMP": "NT=N6pAMP;AC=2073;", "DabMal": "NT=DabMal;AC=2074;", "NBF": "NT=NBF;AC=2079;", "DCP": "NT=DCP;AC=2080;", "Ethynylation": "NT=Ethynylation;AC=2081;", "Acetylation": "NT=Acetyl;AC=1;", "Amidation": "NT=Amidated;AC=2;", "Biotinylation": "NT=Biotin;AC=3;", "Iodoacetamide derivative": "NT=Carbamidomethyl;AC=4;", "Carbamylation": "NT=Carbamyl;AC=5;", "Iodoacetic acid derivative": "NT=Carboxymethyl;AC=6;", "Deamidation": "NT=Deamidated;AC=7;", "Gygi ICAT(TM) d0": "NT=ICAT-G;AC=8;", "Gygi ICAT(TM) d8": "NT=ICAT-G:2H(8);AC=9;", "Homoserine": "NT=Met->Hse;AC=10;", "Homoserine lactone": "NT=Met->Hsl;AC=11;", "Applied Biosystems original ICAT(TM) d8": "NT=ICAT-D:2H(8);AC=12;", "Applied Biosystems original ICAT(TM) d0": "NT=ICAT-D;AC=13;", "N-isopropylcarboxamidomethyl": "NT=NIPCAM;AC=17;", "Biotinyl-iodoacetamidyl-3,6-dioxaoctanediamine": "NT=PEO-Iodoacetyl-LC-Biotin;AC=20;", "Phosphorylation": "NT=Phospho;AC=21;", "Dehydration": "NT=Dehydrated;AC=23;", "Acrylamide adduct": "NT=Propionamide;AC=24;", "pyridylacetyl": "NT=Pyridylacetyl;AC=25;", "S-carbamoylmethylcysteine cyclization (N-terminus)": "NT=Pyro-carbamidomethyl;AC=26;", "Pyro-glu from E": "NT=Glu->pyro-Glu;AC=27;", "Pyro-glu from Q": "NT=Gln->pyro-Glu;AC=28;", "N-Succinimidyl-2-morpholine acetate": "NT=SMA;AC=29;", "Sodium adduct": "NT=Cation:Na;AC=30;", "S-pyridylethylation": "NT=Pyridylethyl;AC=31;", "Methylation": "NT=Methyl;AC=34;", "Oxidation or Hydroxylation": "NT=Oxidation;AC=35;", "di-Methylation": "NT=Dimethyl;AC=36;", "tri-Methylation": "NT=Trimethyl;AC=37;", "Beta-methylthiolation": "NT=Methylthio;AC=39;", "O-Sulfonation": "NT=Sulfo;AC=40;", "Hexose": "NT=Hex;AC=41;", "N-Acetylhexosamine": "NT=HexNAc;AC=43;", "Farnesylation": "NT=Farnesyl;AC=44;", "Myristoylation": "NT=Myristoyl;AC=45;", "Pyridoxal phosphate": "NT=PyridoxalPhosphate;AC=46;", "Palmitoylation": "NT=Palmitoyl;AC=47;", "Geranyl-geranyl": "NT=GeranylGeranyl;AC=48;", "Flavin adenine dinucleotide": "NT=FAD;AC=50;", "N-acyl diglyceride cysteine": "NT=Tripalmitate;AC=51;", "Guanidination": "NT=Guanidinyl;AC=52;", "4-hydroxynonenal (HNE)": "NT=HNE;AC=53;", "hexuronic acid": "NT=Glucuronyl;AC=54;", "glutathione disulfide": "NT=Glutathione;AC=55;", "Acetate labeling reagent (N-term & K) (heavy form, +3amu)": "NT=Acetyl:2H(3);AC=56;", "Propionate labeling reagent light form (N-term & K)": "NT=Propionyl;AC=58;", "Propionate labeling reagent heavy form (+3amu), N-term & K": "NT=Propionyl:13C(3);AC=59;", "Quaternary amine labeling reagent light form (N-term & K)": "NT=GIST-Quat;AC=60;", "Quaternary amine labeling reagent heavy (+3amu) form, N-term & K": "NT=GIST-Quat:2H(3);AC=61;", "Quaternary amine labeling reagent heavy form (+6amu), N-term & K": "NT=GIST-Quat:2H(6);AC=62;", "Quaternary amine labeling reagent heavy form (+9amu), N-term & K": "NT=GIST-Quat:2H(9);AC=63;", "Succinic anhydride labeling reagent light form (N-term & K)": "NT=Succinyl;AC=64;", "Succinic anhydride labeling reagent, heavy form (+4amu, 4H2), N-term & K": "NT=Succinyl:2H(4);AC=65;", "Succinic anhydride labeling reagent, heavy form (+4amu, 4C13), N-term & K": "NT=Succinyl:13C(4);AC=66;", "Iminobiotinylation": "NT=Iminobiotin;AC=89;", "ESP-Tag light d0": "NT=ESP;AC=90;", "ESP-Tag heavy d10": "NT=ESP:2H(10);AC=91;", "IMID d0": "NT=IMID;AC=94;", "IMID d4": "NT=IMID:2H(4);AC=95;", "Acrylamide d3": "NT=Propionamide:2H(3);AC=97;", "Applied Biosystems cleavable ICAT(TM) light": "NT=ICAT-C;AC=105;", "Applied Biosystems cleavable ICAT(TM) heavy": "NT=ICAT-C:13C(9);AC=106;", "Addition of N-formyl met": "NT=FormylMet;AC=107;", "N-ethylmaleimide on cysteines": "NT=Nethylmaleimide;AC=108;", "Oxidized lysine biotinylated with biotin-LC-hydrazide, reduced": "NT=OxLysBiotinRed;AC=112;", "Oxidized lysine biotinylated with biotin-LC-hydrazide": "NT=OxLysBiotin;AC=113;", "Oxidized proline biotinylated with biotin-LC-hydrazide, reduced": "NT=OxProBiotinRed;AC=114;", "Oxidized Proline biotinylated with biotin-LC-hydrazide": "NT=OxProBiotin;AC=115;", "Oxidized arginine biotinylated with biotin-LC-hydrazide": "NT=OxArgBiotin;AC=116;", "Oxidized arginine biotinylated with biotin-LC-hydrazide, reduced": "NT=OxArgBiotinRed;AC=117;", "EDT-iodo-PEO-biotin": "NT=EDT-iodoacetyl-PEO-biotin;AC=118;", "Thio Ether Formation - BTP Adduct": "NT=IBTP;AC=119;", "ubiquitinylation residue": "NT=GG;AC=121;", "Formylation": "NT=Formyl;AC=122;", "N-iodoacetyl, p-chlorobenzyl-12C6-glucamine": "NT=ICAT-H;AC=123;", "N-iodoacetyl, p-chlorobenzyl-13C6-glucamine": "NT=ICAT-H:13C(6);AC=124;", "Cleaved and reduced DSP/DTSSP crosslinker": "NT=Xlink:DTSSP[88];AC=126;", "fluorination": "NT=Fluoro;AC=127;", "5-Iodoacetamidofluorescein (Molecular Probe, Eugene, OR)": "NT=Fluorescein;AC=128;", "Iodination": "NT=Iodo;AC=129;", "di-Iodination": "NT=Diiodo;AC=130;", "tri-Iodination": "NT=Triiodo;AC=131;", "(cis-delta 5)-tetradecaenoyl": "NT=Myristoleyl;AC=134;", "(cis,cis-delta 5, delta 8)-tetradecadienoyl": "NT=Myristoyl+Delta:H(-4);AC=135;", "labeling reagent light form (N-term & K)": "NT=Benzoyl;AC=136;", "M5/Man5": "NT=Hex(5)HexNAc(2);AC=137;", "5-dimethylaminonaphthalene-1-sulfonyl": "NT=Dansyl;AC=139;", "ISD a-series (C-Term)": "NT=a-type-ion;AC=140;", "amidination of lysines or N-terminal amines with methyl acetimidate": "NT=Amidine;AC=141;", "HexNAc1dHex1": "NT=HexNAc(1)dHex(1);AC=142;", "HexNAc2": "NT=HexNAc(2);AC=143;", "Hex3": "NT=Hex(3);AC=144;", "HexNAc1dHex2": "NT=HexNAc(1)dHex(2);AC=145;", "Hex1HexNAc1dHex1": "NT=Hex(1)HexNAc(1)dHex(1);AC=146;", "HexNAc2dHex1": "NT=HexNAc(2)dHex(1);AC=147;", "Hex1HexNAc2": "NT=Hex(1)HexNAc(2);AC=148;", "Hex1HexNAc1NeuAc1": "NT=Hex(1)HexNAc(1)NeuAc(1);AC=149;", "HexNAc2dHex2": "NT=HexNAc(2)dHex(2);AC=150;", "Hex1HexNAc2Pent1": "NT=Hex(1)HexNAc(2)Pent(1);AC=151;", "Hex1HexNAc2dHex1": "NT=Hex(1)HexNAc(2)dHex(1);AC=152;", "Hex2HexNAc2": "NT=Hex(2)HexNAc(2);AC=153;", "Hex3HexNAc1Pent1": "NT=Hex(3)HexNAc(1)Pent(1);AC=154;", "Hex1HexNAc2dHex1Pent1": "NT=Hex(1)HexNAc(2)dHex(1)Pent(1);AC=155;", "Hex1HexNAc2dHex2": "NT=Hex(1)HexNAc(2)dHex(2);AC=156;", "Hex2HexNAc2Pent1": "NT=Hex(2)HexNAc(2)Pent(1);AC=157;", "Hex2HexNAc2dHex1": "NT=Hex(2)HexNAc(2)dHex(1);AC=158;", "M3/Man3": "NT=Hex(3)HexNAc(2);AC=159;", "Hex HexNAc NeuAc(2) ---OR--- Hex HexNAc(3) HexA": "NT=Hex(1)HexNAc(1)NeuAc(2);AC=160;", "Hex(3) HexNAc(2) Phos": "NT=Hex(3)HexNAc(2)Phos(1);AC=161;", "Selenium replaces sulfur": "NT=Delta:S(-1)Se(1);AC=162;", "glycosylated asparagine 18O labeling": "NT=Delta:H(-1)N(-1)18O(1);AC=170;", "Shimadzu NBS-13C": "NT=NBS:13C(6);AC=171;", "Shimadzu NBS-12C": "NT=NBS;AC=172;", "Michael addition of BHT quinone methide to Cysteine and Lysine": "NT=BHT;AC=176;", "phosphorylation to amine thiol": "NT=DAET;AC=178;", "13C(9) Silac label": "NT=Label:13C(9);AC=184;", "C13 label (Phosphotyrosine)": "NT=Label:13C(9)+Phospho;AC=185;", "Hydroxyphenylglyoxal arginine": "NT=HPG;AC=186;", "bis(hydroxphenylglyoxal) arginine": "NT=2HPG;AC=187;", "13C(6) Silac label": "NT=Label:13C(6);AC=188;", "O18 label at both C-terminal oxygens": "NT=Label:18O(2);AC=193;", "6-aminoquinolyl-N-hydroxysuccinimidyl carbamate": "NT=AccQTag;AC=194;", "APTA-d0": "NT=QAT;AC=195;", "APTA d3": "NT=QAT:2H(3);AC=196;", "EAPTA d0": "NT=EQAT;AC=197;", "EAPTA d5": "NT=EQAT:2H(5);AC=198;", "DiMethyl-CHD2": "NT=Dimethyl:2H(4);AC=199;", "EDT": "NT=Ethanedithiol;AC=200;", "Acrolein addition +94": "NT=Delta:H(6)C(6)O(1);AC=205;", "Acrolein addition +56": "NT=Delta:H(4)C(3)O(1);AC=206;", "Acrolein addition +38": "NT=Delta:H(2)C(3);AC=207;", "Acrolein addition +76": "NT=Delta:H(4)C(6);AC=208;", "Acrolein addition +112": "NT=Delta:H(8)C(6)O(2);AC=209;", "N-ethyl iodoacetamide-d0": "NT=NEIAA;AC=211;", "N-ethyl iodoacetamide-d5": "NT=NEIAA:2H(5);AC=212;", "ADP Ribose addition": "NT=ADP-Ribosyl;AC=213;", "Representative mass and accurate mass for 116 & 117": "NT=iTRAQ4plex;AC=214;", "Light IDBEST tag for quantitation": "NT=IGBP;AC=243;", "Acetaldehyde +26": "NT=Delta:H(2)C(2);AC=254;", "Acetaldehyde +28": "NT=Delta:H(4)C(2);AC=255;", "Propionaldehyde +40": "NT=Delta:H(4)C(3);AC=256;", "O18 Labeling": "NT=Label:18O(1);AC=258;", "13C(6) 15N(2) Silac label": "NT=Label:13C(6)15N(2);AC=259;", "Thiophosphorylation": "NT=Thiophospho;AC=260;", "4-sulfophenyl isothiocyanate": "NT=SPITC;AC=261;", "Trideuteration": "NT=Label:2H(3);AC=262;", "phosphorylation to pyridyl thiol": "NT=PET;AC=264;", "13C(6) 15N(4) Silac label": "NT=Label:13C(6)15N(4);AC=267;", "13C(5) 15N(1) Silac label": "NT=Label:13C(5)15N(1);AC=268;", "13C(9) 15N(1) Silac label": "NT=Label:13C(9)15N(1);AC=269;", "nucleophilic addtion to cytopiloyne": "NT=Cytopiloyne;AC=270;", "nucleophilic addition to cytopiloyne+H2O": "NT=Cytopiloyne+water;AC=271;", "sulfonation of N-terminus": "NT=CAF;AC=272;", "nitrosylation": "NT=Nitrosyl;AC=275;", "Aminoethylbenzenesulfonylation": "NT=AEBS;AC=276;", "Ethanolation": "NT=Ethanolyl;AC=278;", "Ethylation": "NT=Ethyl;AC=280;", "Cysteine modified Coenzyme A": "NT=CoenzymeA;AC=281;", "Deuterium Methylation of Lysine": "NT=Methyl:2H(2);AC=284;", "Light Sulfanilic Acid (SA) C12": "NT=SulfanilicAcid;AC=285;", "Heavy Sulfanilic Acid (SA) C13": "NT=SulfanilicAcid:13C(6);AC=286;", "Tryptophan oxidation to oxolactone": "NT=Trp->Oxolactone;AC=288;", "Biotin polyethyleneoxide amine": "NT=Biotin-PEO-Amine;AC=289;", "Pierce EZ-Link Biotin-HPDP": "NT=Biotin-HPDP;AC=290;", "Mercury Mercaptan": "NT=Delta:Hg(1);AC=291;", "(Iodo)-uracil MP": "NT=IodoU-AMP;AC=292;", "3-(carbamidomethylthio)propanoyl": "NT=CAMthiopropanoyl;AC=293;", "biotinoyl-iodoacetyl-ethylenediamine": "NT=IED-Biotin;AC=294;", "Fucose": "NT=dHex;AC=295;", "deuterated methyl ester": "NT=Methyl:2H(3);AC=298;", "Carboxylation": "NT=Carboxy;AC=299;", "Monobromobimane derivative": "NT=Bromobimane;AC=301;", "Menadione quinone derivative": "NT=Menadione;AC=302;", "Cysteine mercaptoethanol": "NT=DeStreak;AC=303;", "FA2/G0F": "NT=dHex(1)Hex(3)HexNAc(4);AC=305;", "FA2G1/G1F": "NT=dHex(1)Hex(4)HexNAc(4);AC=307;", "FA2G2/G2F": "NT=dHex(1)Hex(5)HexNAc(4);AC=308;", "A2/G0": "NT=Hex(3)HexNAc(4);AC=309;", "A2G1/G1": "NT=Hex(4)HexNAc(4);AC=310;", "A2G2/G2": "NT=Hex(5)HexNAc(4);AC=311;", "Cysteinylation": "NT=Cysteinyl;AC=312;", "Loss of Lysine": "NT=Lys-loss;AC=313;", "2,5-dimethypyrrole": "NT=DimethylpyrroleAdduct;AC=316;", "MDA adduct +62": "NT=Delta:H(2)C(5);AC=318;", "MDA adduct +54": "NT=Delta:H(2)C(3)O(1);AC=319;", "Nethylmaleimidehydrolysis": "NT=Nethylmaleimide+water;AC=320;", "bis-((N-iodoacetyl)piperazinyl)sulfonerhodamine": "NT=Xlink:B10621;AC=323;", "Cleaved and reduced DTBP crosslinker": "NT=Xlink:DTBP[87];AC=324;", "10-ethoxyphosphinyl-N-(biotinamidopentyl)decanamide": "NT=FP-Biotin;AC=325;", "S-Ethylcystine from Serine": "NT=Delta:H(4)C(2)O(-1)S(1);AC=327;", "monomethylation": "NT=Methyl:2H(3)13C(1);AC=329;", "dimethylation": "NT=Dimethyl:2H(6)13C(2);AC=330;", "thiophosphate labeled with biotin-HPDP": "NT=Thiophos-S-S-biotin;AC=332;", "6-N-biotinylaminohexyl isopropyl phosphate": "NT=Can-FP-biotin;AC=333;", "reduced 4-Hydroxynonenal": "NT=HNE+Delta:H(2);AC=335;", "Michael addition with methylamine": "NT=Methylamine;AC=337;", "bromination": "NT=Bromo;AC=340;", "Tyrosine oxidation to 2-aminotyrosine": "NT=Amino;AC=342;", "oxidized Arginine biotinylated with biotin hydrazide": "NT=Argbiotinhydrazide;AC=343;", "Arginine oxidation to glutamic semialdehyde": "NT=Arg->GluSA;AC=344;", "cysteine oxidation to cysteic acid": "NT=Trioxidation;AC=345;", "His->Asn substitution": "NT=His->Asn;AC=348;", "His->Asp substitution": "NT=His->Asp;AC=349;", "tryptophan oxidation to hydroxykynurenin": "NT=Trp->Hydroxykynurenin;AC=350;", "tryptophan oxidation to kynurenin": "NT=Trp->Kynurenin;AC=351;", "Lysine oxidation to aminoadipic semialdehyde": "NT=Lys->Allysine;AC=352;", "oxidized Lysine biotinylated with biotin hydrazide": "NT=Lysbiotinhydrazide;AC=353;", "Oxidation to nitro": "NT=Nitro;AC=354;", "oxidized proline biotinylated with biotin hydrazide": "NT=probiotinhydrazide;AC=357;", "proline oxidation to pyroglutamic acid": "NT=Pro->pyro-Glu;AC=359;", "Proline oxidation to pyrrolidinone": "NT=Pro->Pyrrolidinone;AC=360;", "oxidized Threonine biotinylated with biotin hydrazide": "NT=Thrbiotinhydrazide;AC=361;", "O-Diisopropylphosphorylation": "NT=Diisopropylphosphate;AC=362;", "O-Isopropylphosphorylation": "NT=Isopropylphospho;AC=363;", "Bruker Daltonics SERVA-ICPL(TM) quantification chemistry, heavy form": "NT=ICPL:13C(6);AC=364;", "Bruker Daltonics SERVA-ICPL(TM) quantification chemistry, light form": "NT=ICPL;AC=365;", "Deamidation in presence of O18": "NT=Deamidated:18O(1);AC=366;", "Dehydroalanine (from Cysteine)": "NT=Cys->Dha;AC=368;", "Pyrrolidone from Proline": "NT=Pro->Pyrrolidone;AC=369;", "Michael addition of hydroxymethylvinyl ketone to cysteine": "NT=HMVK;AC=371;", "Ornithine from Arginine": "NT=Arg->Orn;AC=372;", "Half of a disulfide bridge": "NT=Dehydro;AC=374;", "hydroxyfarnesyl": "NT=Hydroxyfarnesyl;AC=376;", "diacylglycerol": "NT=Diacylglycerol;AC=377;", "carboxyethyl": "NT=Carboxyethyl;AC=378;", "hypusine": "NT=Hypusine;AC=379;", "retinal": "NT=Retinylidene;AC=380;", "alpha-amino adipic acid": "NT=Lys->AminoadipicAcid;AC=381;", "pyruvic acid from N-term cys": "NT=Cys->PyruvicAcid;AC=382;", "Loss of ammonia": "NT=Ammonia-loss;AC=385;", "phycocyanobilin": "NT=Phycocyanobilin;AC=387;", "phycoerythrobilin": "NT=Phycoerythrobilin;AC=388;", "phytochromobilin": "NT=Phytochromobilin;AC=389;", "heme": "NT=Heme;AC=390;", "molybdopterin": "NT=Molybdopterin;AC=391;", "quinone": "NT=Quinone;AC=392;", "glucosylgalactosyl hydroxylysine": "NT=Glucosylgalactosyl;AC=393;", "glycosylphosphatidylinositol": "NT=GPIanchor;AC=394;", "phosphoribosyl dephospho-coenzyme A": "NT=PhosphoribosyldephosphoCoA;AC=395;", "glycerylphosphorylethanolamine": "NT=GlycerylPE;AC=396;", "triiodo": "NT=Triiodothyronine;AC=397;", "tetraiodo": "NT=Thyroxine;AC=398;", "Dehydroalanine (from Tyrosine)": "NT=Tyr->Dha;AC=400;", "2-amino-3-oxo-butanoic_acid": "NT=Didehydro;AC=401;", "oxoalanine": "NT=Cys->Oxoalanine;AC=402;", "lactic acid from N-term Ser": "NT=Ser->LacticAcid;AC=403;", "AMP": "NT=Phosphoadenosine;AC=405;", "hydroxycinnamyl": "NT=Hydroxycinnamyl;AC=407;", "glycosyl-L-hydroxyproline": "NT=Glycosyl;AC=408;", "flavin mononucleotide": "NT=FMNH;AC=409;", "S-diphytanylglycerol diether": "NT=Archaeol;AC=410;", "phenyl isocyanate": "NT=Phenylisocyanate;AC=411;", "d5-phenyl isocyanate": "NT=Phenylisocyanate:2H(5);AC=412;", "phospho-guanosine": "NT=Phosphoguanosine;AC=413;", "hydroxymethyl": "NT=Hydroxymethyl;AC=414;", "L-selenocysteinyl molybdenum bis(molybdopterin guanine dinucleotide)": "NT=MolybdopterinGD+Delta:S(-1)Se(1);AC=415;", "dipyrrolylmethanemethyl": "NT=Dipyrrolylmethanemethyl;AC=416;", "uridine phosphodiester": "NT=PhosphoUridine;AC=417;", "glycerophospho": "NT=Glycerophospho;AC=419;", "thiocarboxylic acid": "NT=Carboxy->Thiocarboxy;AC=420;", "persulfide": "NT=Sulfide;AC=421;", "N-pyruvic acid 2-iminyl": "NT=PyruvicAcidIminyl;AC=422;", "selenyl": "NT=Delta:Se(1);AC=423;", "molybdenum bis(molybdopterin guanine dinucleotide)": "NT=MolybdopterinGD;AC=424;", "dihydroxy": "NT=Dioxidation;AC=425;", "octanoyl": "NT=Octanoyl;AC=426;", "N-acetylglucosamine-1-phosphoryl": "NT=PhosphoHexNAc;AC=428;", "phosphoglycosyl-D-mannose-1-phosphoryl": "NT=PhosphoHex;AC=429;", "palmitoleyl": "NT=Palmitoleyl;AC=431;", "cholesterol ester": "NT=Cholesterol;AC=432;", "3,4-didehydroretinylidene": "NT=Didehydroretinylidene;AC=433;", "cis-14-hydroxy-10,13-dioxo-7-heptadecenoic ester": "NT=CHDH;AC=434;", "4-methyl-delta-1-pyrroline-5-carboxyl": "NT=Methylpyrroline;AC=435;", "hydroxyheme": "NT=Hydroxyheme;AC=436;", "(3-aminopropyl)(L-aspartyl-1-amino)phosphoryl-5-adenosine": "NT=MicrocinC7;AC=437;", "cyano": "NT=Cyano;AC=438;", "hydrogenase diiron subcluster": "NT=Diironsubcluster;AC=439;", "amidino": "NT=Amidino;AC=440;", "O3-(riboflavin phosphoryl)": "NT=FMN;AC=442;", "S-(4a-FMN)": "NT=FMNC;AC=443;", "copper sulfido molybdopterin cytosine dinuncleotide": "NT=CuSMo;AC=444;", "5-hydroxy-N6,N6,N6-trimethyl": "NT=Hydroxytrimethyl;AC=445;", "reduction": "NT=Deoxy;AC=447;", "microcin E492 siderophore ester from serine": "NT=Microcin;AC=448;", "lipid": "NT=Decanoyl;AC=449;", "monoglutamyl": "NT=Glu;AC=450;", "diglutamyl": "NT=GluGlu;AC=451;", "triglutamyl": "NT=GluGluGlu;AC=452;", "tetraglutamyl": "NT=GluGluGluGlu;AC=453;", "Hexosamine": "NT=HexN;AC=454;", "Free monolink of DMP crosslinker": "NT=Xlink:DMP[154];AC=455;", "Dimethyl pimelimidate crosslink": "NT=Xlink:DMP;AC=456;", "naphthalene-2,3-dicarboxaldehyde": "NT=NDA;AC=457;", "4-sulfophenyl isothiocyanate (Heavy C13)": "NT=SPITC:13C(6);AC=464;", "aminoethylcysteine": "NT=AEC-MAEC;AC=472;", "4-trimethyllammoniumbutyryl-": "NT=TMAB;AC=476;", "d9-4-trimethyllammoniumbutyryl-": "NT=TMAB:2H(9);AC=477;", "fluorescein-5-thiosemicarbazide": "NT=FTC;AC=478;", "4,4,5,5-D4 Lysine": "NT=Label:2H(4);AC=481;", "Dehydropyrrolizidine alkaloid (dehydroretronecine) on cysteines": "NT=DHP;AC=488;", "Heptose": "NT=Hep;AC=490;", "Bisphenol A diglycidyl ether derivative": "NT=BADGE;AC=493;", "Cy3 CyDye DIGE Fluor saturation dye": "NT=CyDye-Cy3;AC=494;", "Cy5 CyDye DIGE Fluor saturation dye": "NT=CyDye-Cy5;AC=495;", "Michael addition of t-butyl hydroxylated BHT (BHTOH) to C, H or K": "NT=BHTOH;AC=498;", "Heavy IDBEST tag for quantitation": "NT=IGBP:13C(2);AC=499;", "Nmethylmaleimidehydrolysis": "NT=Nmethylmaleimide+water;AC=500;", "3-methyl-2-pyridyl isocyanate": "NT=PyMIC;AC=501;", "Levuglandinyl - lysine lactam adduct": "NT=LG-lactam-K;AC=503;", "Levuglandinyl - lysine hydroxylactam adduct": "NT=LG-Hlactam-K;AC=504;", "Levuglandinyl - arginine lactam adduct": "NT=LG-lactam-R;AC=505;", "Levuglandinyl - arginine hydroxylactam adduct": "NT=LG-Hlactam-R;AC=506;", "DiMethyl-C13HD2": "NT=Dimethyl:2H(4)13C(2);AC=510;", "Lactosylation": "NT=Hex(2);AC=512;", "[3-(2,5)-Dioxopyrrolidin-1-yloxycarbonyl)-propyl]dimethyloctylammonium": "NT=C8-QAT;AC=513;", "propyl-1,2-dideoxy-2\\'-methyl-alpha-D-glucopyranoso-[2,1-d]-Delta2\\'-thiazoline": "NT=PropylNAGthiazoline;AC=514;", "fluorescein-5-maleimide": "NT=FNEM;AC=515;", "Diethylation, analogous to Dimethylation": "NT=Diethyl;AC=518;", "4,4\\'-dianilino-1,1\\'-binaphthyl-5,5\\'-disulfonic acid": "NT=BisANS;AC=519;", "Piperidination": "NT=Piperidine;AC=520;", "Maleimide-Biotin": "NT=Maleimide-PEO2-Biotin;AC=522;", "Biot_LC_LC": "NT=Sulfo-NHS-LC-LC-Biotin;AC=523;", "Prompt loss of side chain from oxidised Met": "NT=Dethiomethyl;AC=526;", "Deamidation followed by a methylation": "NT=Methyl+Deamidated;AC=528;", "Dimethylation of proline residue": "NT=Delta:H(5)C(2);AC=529;", "Replacement of proton by potassium": "NT=Cation:K;AC=530;", "Replacement of proton by copper": "NT=Cation:Cu[I];AC=531;", "Accurate mass for 114": "NT=iTRAQ4plex114;AC=532;", "Accurate mass for 115": "NT=iTRAQ4plex115;AC=533;", "Ubiquitination": "NT=LRGG;AC=535;", "was 15dB-biotin": "NT=Biotin:Cayman-10141;AC=538;", "was PGA1-biotin": "NT=Biotin:Cayman-10013;AC=539;", "Ala->Ser substitution": "NT=Ala->Ser;AC=540;", "Ala->Thr substitution": "NT=Ala->Thr;AC=541;", "Ala->Asp substitution": "NT=Ala->Asp;AC=542;", "Ala->Pro substitution": "NT=Ala->Pro;AC=543;", "Ala->Gly substitution": "NT=Ala->Gly;AC=544;", "Ala->Glu substitution": "NT=Ala->Glu;AC=545;", "Ala->Val substitution": "NT=Ala->Val;AC=546;", "Cys->Phe substitution": "NT=Cys->Phe;AC=547;", "Cys->Ser substitution": "NT=Cys->Ser;AC=548;", "Cys->Trp substitution": "NT=Cys->Trp;AC=549;", "Cys->Tyr substitution": "NT=Cys->Tyr;AC=550;", "Cys->Arg substitution": "NT=Cys->Arg;AC=551;", "Cys->Gly substitution": "NT=Cys->Gly;AC=552;", "Asp->Ala substitution": "NT=Asp->Ala;AC=553;", "Asp->His substitution": "NT=Asp->His;AC=554;", "Asp->Asn substitution": "NT=Asp->Asn;AC=555;", "Asp->Gly substitution": "NT=Asp->Gly;AC=556;", "Asp->Tyr substitution": "NT=Asp->Tyr;AC=557;", "Asp->Glu substitution": "NT=Asp->Glu;AC=558;", "Asp->Val substitution": "NT=Asp->Val;AC=559;", "Glu->Ala substitution": "NT=Glu->Ala;AC=560;", "Glu->Gln substitution": "NT=Glu->Gln;AC=561;", "Glu->Asp substitution": "NT=Glu->Asp;AC=562;", "Glu->Lys substitution": "NT=Glu->Lys;AC=563;", "Glu->Gly substitution": "NT=Glu->Gly;AC=564;", "Glu->Val substitution": "NT=Glu->Val;AC=565;", "Phe->Ser substitution": "NT=Phe->Ser;AC=566;", "Phe->Cys substitution": "NT=Phe->Cys;AC=567;", "Phe->Leu/Ile substitution": "NT=Phe->Xle;AC=568;", "Phe->Tyr substitution": "NT=Phe->Tyr;AC=569;", "Phe->Val substitution": "NT=Phe->Val;AC=570;", "Gly->Ala substitution": "NT=Gly->Ala;AC=571;", "Gly->Ser substitution": "NT=Gly->Ser;AC=572;", "Gly->Trp substitution": "NT=Gly->Trp;AC=573;", "Gly->Glu substitution": "NT=Gly->Glu;AC=574;", "Gly->Val substitution": "NT=Gly->Val;AC=575;", "Gly->Asp substitution": "NT=Gly->Asp;AC=576;", "Gly->Cys substitution": "NT=Gly->Cys;AC=577;", "Gly->Arg substitution": "NT=Gly->Arg;AC=578;", "His->Pro substitution": "NT=His->Pro;AC=580;", "His->Tyr substitution": "NT=His->Tyr;AC=581;", "His->Gln substitution": "NT=His->Gln;AC=582;", "His->Arg substitution": "NT=His->Arg;AC=584;", "His->Leu/Ile substitution": "NT=His->Xle;AC=585;", "Leu/Ile->Thr substitution": "NT=Xle->Thr;AC=588;", "Leu/Ile->Asn substitution": "NT=Xle->Asn;AC=589;", "Leu/Ile->Lys substitution": "NT=Xle->Lys;AC=590;", "Lys->Thr substitution": "NT=Lys->Thr;AC=594;", "Lys->Asn substitution": "NT=Lys->Asn;AC=595;", "Lys->Glu substitution": "NT=Lys->Glu;AC=596;", "Lys->Gln substitution": "NT=Lys->Gln;AC=597;", "Lys->Met substitution": "NT=Lys->Met;AC=598;", "Lys->Arg substitution": "NT=Lys->Arg;AC=599;", "Lys->Leu/Ile substitution": "NT=Lys->Xle;AC=600;", "Leu/Ile->Ser substitution": "NT=Xle->Ser;AC=601;", "Leu/Ile->Phe substitution": "NT=Xle->Phe;AC=602;", "Leu/Ile->Trp substitution": "NT=Xle->Trp;AC=603;", "Leu/Ile->Pro substitution": "NT=Xle->Pro;AC=604;", "Leu/Ile->Val substitution": "NT=Xle->Val;AC=605;", "Leu/Ile->His substitution": "NT=Xle->His;AC=606;", "Leu/Ile->Gln substitution": "NT=Xle->Gln;AC=607;", "Leu/Ile->Met substitution": "NT=Xle->Met;AC=608;", "Leu/Ile->Arg substitution": "NT=Xle->Arg;AC=609;", "Met->Thr substitution": "NT=Met->Thr;AC=610;", "Met->Arg substitution": "NT=Met->Arg;AC=611;", "Met->Lys substitution": "NT=Met->Lys;AC=613;", "Met->Leu/Ile substitution": "NT=Met->Xle;AC=614;", "Met->Val substitution": "NT=Met->Val;AC=615;", "Asn->Ser substitution": "NT=Asn->Ser;AC=616;", "Asn->Thr substitution": "NT=Asn->Thr;AC=617;", "Asn->Lys substitution": "NT=Asn->Lys;AC=618;", "Asn->Tyr substitution": "NT=Asn->Tyr;AC=619;", "Asn->His substitution": "NT=Asn->His;AC=620;", "Asn->Asp substitution": "NT=Asn->Asp;AC=621;", "Asn->Leu/Ile substitution": "NT=Asn->Xle;AC=622;", "Pro->Ser substitution": "NT=Pro->Ser;AC=623;", "Pro->Ala substitution": "NT=Pro->Ala;AC=624;", "Pro->His substitution": "NT=Pro->His;AC=625;", "Pro->Gln substitution": "NT=Pro->Gln;AC=626;", "Pro->Thr substitution": "NT=Pro->Thr;AC=627;", "Pro->Arg substitution": "NT=Pro->Arg;AC=628;", "Pro->Leu/Ile substitution": "NT=Pro->Xle;AC=629;", "Gln->Pro substitution": "NT=Gln->Pro;AC=630;", "Gln->Lys substitution": "NT=Gln->Lys;AC=631;", "Gln->Glu substitution": "NT=Gln->Glu;AC=632;", "Gln->His substitution": "NT=Gln->His;AC=633;", "Gln->Arg substitution": "NT=Gln->Arg;AC=634;", "Gln->Leu/Ile substitution": "NT=Gln->Xle;AC=635;", "Arg->Ser substitution": "NT=Arg->Ser;AC=636;", "Arg->Trp substitution": "NT=Arg->Trp;AC=637;", "Arg->Thr substitution": "NT=Arg->Thr;AC=638;", "Arg->Pro substitution": "NT=Arg->Pro;AC=639;", "Arg->Lys substitution": "NT=Arg->Lys;AC=640;", "Arg->His substitution": "NT=Arg->His;AC=641;", "Arg->Gln substitution": "NT=Arg->Gln;AC=642;", "Arg->Met substitution": "NT=Arg->Met;AC=643;", "Arg->Cys substitution": "NT=Arg->Cys;AC=644;", "Arg->Leu/Ile substitution": "NT=Arg->Xle;AC=645;", "Arg->Gly substitution": "NT=Arg->Gly;AC=646;", "Ser->Phe substitution": "NT=Ser->Phe;AC=647;", "Ser->Ala substitution": "NT=Ser->Ala;AC=648;", "Ser->Trp substitution": "NT=Ser->Trp;AC=649;", "Ser->Thr substitution": "NT=Ser->Thr;AC=650;", "Ser->Asn substitution": "NT=Ser->Asn;AC=651;", "Ser->Pro substitution": "NT=Ser->Pro;AC=652;", "Ser->Tyr substitution": "NT=Ser->Tyr;AC=653;", "Ser->Cys substitution": "NT=Ser->Cys;AC=654;", "Ser->Arg substitution": "NT=Ser->Arg;AC=655;", "Ser->Leu/Ile substitution": "NT=Ser->Xle;AC=656;", "Ser->Gly substitution": "NT=Ser->Gly;AC=657;", "Thr->Ser substitution": "NT=Thr->Ser;AC=658;", "Thr->Ala substitution": "NT=Thr->Ala;AC=659;", "Thr->Asn substitution": "NT=Thr->Asn;AC=660;", "Thr->Lys substitution": "NT=Thr->Lys;AC=661;", "Thr->Pro substitution": "NT=Thr->Pro;AC=662;", "Thr->Met substitution": "NT=Thr->Met;AC=663;", "Thr->Leu/Ile substitution": "NT=Thr->Xle;AC=664;", "Thr->Arg substitution": "NT=Thr->Arg;AC=665;", "Val->Phe substitution": "NT=Val->Phe;AC=666;", "Val->Ala substitution": "NT=Val->Ala;AC=667;", "Val->Glu substitution": "NT=Val->Glu;AC=668;", "Val->Met substitution": "NT=Val->Met;AC=669;", "Val->Asp substitution": "NT=Val->Asp;AC=670;", "Val->Leu/Ile substitution": "NT=Val->Xle;AC=671;", "Val->Gly substitution": "NT=Val->Gly;AC=672;", "Trp->Ser substitution": "NT=Trp->Ser;AC=673;", "Trp->Cys substitution": "NT=Trp->Cys;AC=674;", "Trp->Arg substitution": "NT=Trp->Arg;AC=675;", "Trp->Gly substitution": "NT=Trp->Gly;AC=676;", "Trp->Leu/Ile substitution": "NT=Trp->Xle;AC=677;", "Tyr->Phe substitution": "NT=Tyr->Phe;AC=678;", "Tyr->Ser substitution": "NT=Tyr->Ser;AC=679;", "Tyr->Asn substitution": "NT=Tyr->Asn;AC=680;", "Tyr->His substitution": "NT=Tyr->His;AC=681;", "Tyr->Asp substitution": "NT=Tyr->Asp;AC=682;", "Tyr->Cys substitution": "NT=Tyr->Cys;AC=683;", "Mass Defect Tag on lysine e-amino": "NT=BDMAPP;AC=684;", "Nitroalkylation by Nitro Linoleic Acid": "NT=NA-LNO2;AC=685;", "Nitroalkylation by Nitro Oleic Acid": "NT=NA-OA-NO2;AC=686;", "Bruker Daltonics SERVA-ICPL(TM) quantification chemistry, medium form": "NT=ICPL:2H(4);AC=687;", "13C(6) 15N(1) Silac label": "NT=Label:13C(6)15N(1);AC=695;", "13C(6) 15N(2) (D)9 SILAC label": "NT=Label:2H(9)13C(6)15N(2);AC=696;", "Nicotinic Acid": "NT=NIC;AC=697;", "deuterated Nicotinic Acid": "NT=dNIC;AC=698;", "Dehydrated 4-hydroxynonenal": "NT=HNE-Delta:H(2)O;AC=720;", "4-Oxononenal (ONE)": "NT=4-ONE;AC=721;", "O-Dimethylphosphorylation": "NT=O-Dimethylphosphate;AC=723;", "O-Methylphosphorylation": "NT=O-Methylphosphate;AC=724;", "O-Diethylphosphorylation": "NT=Diethylphosphate;AC=725;", "O-Ethylphosphorylation": "NT=Ethylphosphate;AC=726;", "O-pinacolylmethylphosphonylation": "NT=O-pinacolylmethylphosphonate;AC=727;", "Methylphosphonylation": "NT=Methylphosphonate;AC=728;", "O-Isopropylmethylphosphonylation": "NT=O-Isopropylmethylphosphonate;AC=729;", "Representative mass and accurate mass for 113, 114, 116 & 117": "NT=iTRAQ8plex;AC=730;", "Accurate mass for 115, 118, 119 & 121": "NT=iTRAQ8plex:13C(6)15N(2);AC=731;", "Carboxyl modification with ethanolamine": "NT=Ethanolamine;AC=734;", "Beta elimination of modified S or T followed by Michael addition of DTT": "NT=BEMAD_ST;AC=735;", "Beta elimination of alkylated Cys followed by Michael addition of DTT": "NT=BEMAD_C;AC=736;", "Sixplex Tandem Mass Tag\u00ae": "NT=TMT6plex;AC=737;", "Duplex Tandem Mass Tag\u00ae": "NT=TMT2plex;AC=738;", "Native Tandem Mass Tag\u00ae": "NT=TMT;AC=739;", "ExacTag Thiol label mass for 2-4-7-10 plex": "NT=ExacTagThiol;AC=740;", "ExacTag Amine label mass for 2-4-7-10 plex": "NT=ExacTagAmine;AC=741;", "Dehydrated 4-Oxononenal Michael adduct": "NT=4-ONE+Delta:H(-2)O(-1);AC=743;", "Nitroso Sulfamethoxazole Sulphenamide thiol adduct": "NT=NO_SMX_SEMD;AC=744;", "Nitroso Sulfamethoxazole Sulfinamide thiol adduct": "NT=NO_SMX_SIMD;AC=746;", "Malonylation": "NT=Malonyl;AC=747;", "derivatization by N-term modification using 3-Sulfobenzoic succinimidyl ester": "NT=3sulfo;AC=748;", "trifluoroleucine replacement of leucine": "NT=trifluoro;AC=750;", "tri nitro benzene": "NT=TNBS;AC=751;", "Isotope Distribution Encoded Tag": "NT=IDEnT;AC=762;", "Beta elimination of modified S or T followed by Michael addition of labelled DTT": "NT=BEMAD_ST:2H(6);AC=763;", "Beta elimination of alkylated Cys followed by Michael addition of labelled DTT": "NT=BEMAD_C:2H(6);AC=764;", "Removal of initiator methionine from protein N-terminus": "NT=Met-loss;AC=765;", "Removal of initiator methionine from protein N-terminus, then acetylation of the new N-terminus": "NT=Met-loss+Acetyl;AC=766;", "Menadione hydroquinone derivative": "NT=Menadione-HQ;AC=767;", "Mono-methylated lysine labelled with Acetyl_heavy": "NT=Methyl+Acetyl:2H(3);AC=768;", "lapachenole photochemically added to cysteine": "NT=lapachenole;AC=771;", "13C(5) Silac label": "NT=Label:13C(5);AC=772;", "Alkylation by biotinylated form of phenacyl bromide": "NT=Biotin-phenacyl;AC=774;", "Iodoacetic acid derivative w/ 13C label": "NT=Carboxymethyl:13C(2);AC=775;", "D5 N-ethylmaleimide on cysteines": "NT=NEM:2H(5);AC=776;", "deuterium cysteamine modification to S or T": "NT=AEC-MAEC:2H(4);AC=792;", "Hex1HexNAc1": "NT=Hex(1)HexNAc(1);AC=793;", "13C6 labeled ubiquitinylation residue": "NT=Label:13C(6)+GG;AC=799;", "was PentylamineBiotin": "NT=Biotin:Thermo-21345;AC=800;", "Labeling transglutaminase substrate on glutamine side chain": "NT=Pentylamine;AC=801;", "was Biotin-PEO4-hydrazide": "NT=Biotin:Thermo-21360;AC=811;", "fluorescent dye that labels cysteines": "NT=Cy3b-maleimide;AC=821;", "Enzymatic glycine removal leaving an amidated C-terminus": "NT=Gly-loss+Amide;AC=822;", "Intact or monolink BMOE crosslinker": "NT=Xlink:BMOE;AC=824;", "Intact DFDNB crosslinker": "NT=Xlink:DFDNB;AC=825;", "tris(2,4,6-trimethoxyphenyl)phosphonium acetic acid N-hydroxysuccinimide ester derivative": "NT=TMPP-Ac;AC=827;", "Dihydroxy methylglyoxal adduct": "NT=Dihydroxyimidazolidine;AC=830;", "Acetyl 4,4,5,5-D4 Lysine": "NT=Label:2H(4)+Acetyl;AC=834;", "Acetyl 13C(6) Silac label": "NT=Label:13C(6)+Acetyl;AC=835;", "Acetyl_13C(6) 15N(2) Silac label": "NT=Label:13C(6)15N(2)+Acetyl;AC=836;", "Arginine replacement by Nitropyrimidyl ornithine": "NT=Arg->Npo;AC=837;", "Sumo mutant Smt3-WT tail following trypsin digestion": "NT=EQIGG;AC=846;", "Adduct of phenylglyoxal with Arg": "NT=Arg2PG;AC=848;", "S-guanylation": "NT=cGMP;AC=849;", "S-guanylation-2": "NT=cGMP+RMP-loss;AC=851;", "Ubiquitination 2H4 lysine": "NT=Label:2H(4)+GG;AC=853;", "Methylglyoxal-derived hydroimidazolone": "NT=MG-H1;AC=859;", "Glyoxal-derived hydroimiadazolone": "NT=G-H1;AC=860;", "NHS ester linked Green Fluorescent Bodipy Dye": "NT=ZGB;AC=861;", "SILAC": "NT=Label:13C(1)2H(3);AC=862;", "13C(6) 15N(2) Lysine glygly": "NT=Label:13C(6)15N(2)+GG;AC=864;", "Bruker Daltonics SERVA-ICPL(TM) quantification chemistry, +10 Da form": "NT=ICPL:13C(6)2H(4);AC=866;", "SUMOylation by SUMO-1": "NT=QEQTGG;AC=876;", "SUMOylation by SUMO-2/3": "NT=QQQTGG;AC=877;", "was ChromoBiotin": "NT=Biotin:Thermo-21325;AC=884;", "Oxidised methionine 13C(1)2H(3) SILAC label": "NT=Label:13C(1)2H(3)+Oxidation;AC=885;", "2-ammonio-6-[4-(hydroxymethyl)-3-oxidopyridinium-1-yl]- hexanoate": "NT=HydroxymethylOP;AC=886;", "covalent linkage of maleimidyl coumarin probe (Molecular Probes D-10253)": "NT=MDCC;AC=887;", "mTRAQ light": "NT=mTRAQ;AC=888;", "mTRAQ medium": "NT=mTRAQ:13C(3)15N(1);AC=889;", "Thiol-reactive dye for fluorescence labelling of proteins": "NT=DyLight-maleimide;AC=890;", "Carbamidomethylated DTT modification of cysteine": "NT=CarbamidomethylDTT;AC=893;", "Carboxymethylated DTT modification of cysteine": "NT=CarboxymethylDTT;AC=894;", "Biotin polyethyleneoxide (n=3) alkyne": "NT=Biotin-PEG-PRA;AC=895;", "Methionine replacement by azido homoalanine": "NT=Met->Aha;AC=896;", "SILAC 15N(4)": "NT=Label:15N(4);AC=897;", "pyrophosphorylation of Ser/Thr": "NT=pyrophospho;AC=898;", "methionine replacement by homopropargylglycine": "NT=Met->Hpg;AC=899;", "2,3,4,6-tetra-O-Acetyl-1-allyl-alpha-D-galactopyranoside modification of cysteine": "NT=4AcAllylGal;AC=901;", "Reaction with dimethylarsinous (AsIII) acid": "NT=DimethylArsino;AC=902;", "Lys->Cys substitution and carbamidomethylation": "NT=Lys->CamCys;AC=903;", "Phe->Cys substitution and carbamidomethylation": "NT=Phe->CamCys;AC=904;", "Leu->Met substitution and sulfoxidation": "NT=Leu->MetOx;AC=905;", "Lys->Met substitution and sulfoxidation": "NT=Lys->MetOx;AC=906;", "Gluconoylation": "NT=Galactosyl;AC=907;", "Monolink of SMCC terminated with 3-(dimethylamino)-1-propylamine": "NT=Xlink:SMCC[321];AC=908;", "2,4-diacetamido-2,4,6-trideoxyglucopyranose": "NT=Bacillosamine;AC=910;", "Cys modification by (1-oxyl-2,2,5,5-tetramethyl-3-pyrroline-3-methyl)methanesulfonate (MTSL)": "NT=MTSL;AC=911;", "4-hydroxy-2-nonenal and biotinamidohexanoic acid hydrazide, reduced": "NT=HNE-BAHAH;AC=912;", "Methylmalonylation on Serine": "NT=Methylmalonylation;AC=914;", "13C(4) 15N(2) Lysine glygly": "NT=Label:13C(4)15N(2)+GG;AC=923;", "ethyl amino": "NT=ethylamino;AC=926;", "2-OH-ethyl thio-Ser": "NT=MercaptoEthanol;AC=928;", "deamidation followed by esterification with ethanol": "NT=Ethyl+Deamidated;AC=931;", "SUMOylation by SUMO-2/3 (formic acid cleavage)": "NT=VFQQQTGG;AC=932;", "SUMOylation by SUMO-1 (formic acid cleavage)": "NT=VIEVYQEQTGG;AC=933;", "Photocleavable Biotin + GalNAz on O-GlcNAc": "NT=AMTzHexNAc2;AC=934;", "High molecular absorption maleimide label for proteins": "NT=Atto495Maleimide;AC=935;", "Chlorination of tyrosine residues": "NT=Chlorination;AC=936;", "Dichlorination": "NT=dichlorination;AC=937;", "Cysteine modifier": "NT=AROD;AC=938;", "carbamidomethylated Cys that undergoes beta-elimination and Michael addition of methylamine": "NT=Cys->methylaminoAla;AC=939;", "Carbamidomethylated Cys that undergoes beta-elimination and Michael addition of ethylamine": "NT=Cys->ethylaminoAla;AC=940;", "2,4-Dinitrobenzenesulfenyl": "NT=DNPS;AC=941;", "High molecular absorption label for proteins": "NT=SulfoGMBS;AC=942;", "Modified GMBS X linker": "NT=DimethylamineGMBS;AC=943;", "SILAC label": "NT=Label:15N(2)2H(9);AC=944;", "Levuglandinyl-lysine anhydrolactam adduct": "NT=LG-anhydrolactam;AC=946;", "Levuglandinyl-lysine pyrrole adduct": "NT=LG-pyrrole;AC=947;", "Levuglandinyl-lysine anhyropyrrole adduct": "NT=LG-anhyropyrrole;AC=948;", "Condensation product of 3-deoxyglucosone": "NT=3-deoxyglucosone;AC=949;", "Replacement of proton by lithium": "NT=Cation:Li;AC=950;", "Replacement of 2 protons by calcium": "NT=Cation:Ca[II];AC=951;", "Replacement of 2 protons by iron": "NT=Cation:Fe[II];AC=952;", "Replacement of 2 protons by nickel": "NT=Cation:Ni[II];AC=953;", "Replacement of 2 protons by zinc": "NT=Cation:Zn[II];AC=954;", "Replacement of proton by silver": "NT=Cation:Ag;AC=955;", "Replacement of 2 protons by magnesium": "NT=Cation:Mg[II];AC=956;", "S-(2-succinyl) cysteine": "NT=2-succinyl;AC=957;", "propargylamine": "NT=Propargylamine;AC=958;", "phospho-propargylamine": "NT=Phosphopropargyl;AC=959;", "SUMOylation by SUMO-1 after tryptic cleavage": "NT=SUMO2135;AC=960;", "SUMOylation by SUMO-2/3 after tryptic cleavage": "NT=SUMO3549;AC=961;", "membrane protein extraction": "NT=thioacylPA;AC=967;", "maleimide-3-saccharide": "NT=maleimide3;AC=971;", "maleimide-5-saccharide": "NT=maleimide5;AC=972;", "2,3-dihydro-2,2-dimethyl-7-benzofuranol N-methyl carbamate": "NT=Carbofuran;AC=977;", "Benzyl isothiocyanate": "NT=BITC;AC=978;", "Phenethyl isothiocyanate": "NT=PEITC;AC=979;", "Condensation product of glucosone": "NT=glucosone;AC=981;", "Native cysteine-reactive Tandem Mass Tag\u00ae": "NT=cysTMT;AC=984;", "cysteine-reactive Sixplex Tandem Mass Tag\u00ae": "NT=cysTMT6plex;AC=985;", "Dimethyl 13C(6) Silac label": "NT=Label:13C(6)+Dimethyl;AC=986;", "Dimethyl 13C(6)15N(2) Silac label": "NT=Label:13C(6)15N(2)+Dimethyl;AC=987;", "replacement of proton with ammonium ion": "NT=Ammonium;AC=989;", "ISD (z+2)-series": "NT=ISD_z+2_ion;AC=991;", "was Biotin-maleimide": "NT=Biotin:Sigma-B1267;AC=993;", "15N(1)": "NT=Label:15N(1);AC=994;", "15N(2)": "NT=Label:15N(2);AC=995;", "15N(3)": "NT=Label:15N(3);AC=996;", "aminotyrosine with sulfation": "NT=sulfo+amino;AC=997;", "Azidohomoalanine (AHA) bound to propargylglycine-NH2 (alkyne)": "NT=AHA-Alkyne;AC=1000;", "Azidohomoalanine (AHA) bound to DDDDK-propargylglycine-NH2 (alkyne)": "NT=AHA-Alkyne-KDDDD;AC=1001;", "(-)-epigallocatechin-3-gallate": "NT=EGCG1;AC=1002;", "(-)-dehydroepigallocatechin": "NT=EGCG2;AC=1003;", "Monomethylated Arg13C(6) 15N(4)": "NT=Label:13C(6)15N(4)+Methyl;AC=1004;", "Dimethylated Arg13C(6) 15N(4)": "NT=Label:13C(6)15N(4)+Dimethyl;AC=1005;", "2H(3) 13C(1) monomethylated Arg13C(6) 15N(4)": "NT=Label:13C(6)15N(4)+Methyl:2H(3)13C(1);AC=1006;", "2H(6) 13C(2) Dimethylated Arg13C(6) 15N(4)": "NT=Label:13C(6)15N(4)+Dimethyl:2H(6)13C(2);AC=1007;", "Sec Iodoacetamide derivative": "NT=Cys->CamSec;AC=1008;", "formaldehyde adduct": "NT=Thiazolidine;AC=1009;", "Addition of DEDGFLYMVYASQETFG": "NT=DEDGFLYMVYASQETFG;AC=1010;", "Nalpha-(3-maleimidylpropionyl)biocytin": "NT=Biotin:Invitrogen-M1602;AC=1012;", "glycidamide adduct": "NT=glycidamide;AC=1014;", "C-terminal homoserine lactone and two aminohexanoic acids": "NT=Ahx2+Hsl;AC=1015;", "DMPO spin-trap nitrone adduct": "NT=DMPO;AC=1017;", "Isotope-Coded Dimedone light form": "NT=ICDID;AC=1018;", "Isotope-Coded Dimedone heavy form": "NT=ICDID:2H(6);AC=1019;", "Water-quenched monolink of DSS/BS3 crosslinker": "NT=Xlink:DSS[156];AC=1020;", "Water quenched monolink of EGS cross-linker": "NT=Xlink:EGS[244];AC=1021;", "Water quenched monolink of DST crosslinker": "NT=Xlink:DST[132];AC=1022;", "Water quenched monolink of DSP/DTSSP crosslinker": "NT=Xlink:DTSSP[192];AC=1023;", "Water quenched monolink of SMCC": "NT=Xlink:SMCC[237];AC=1024;", "Water quenched monolink of DMP crosslinker": "NT=Xlink:DMP[140];AC=1027;", "Cleavage product of EGS protein crosslinks by hydroylamine treatment": "NT=Xlink:EGS[115];AC=1028;", "desthiobiotin modification of lysine": "NT=Biotin:Thermo-88310;AC=1031;", "Tyrosine caged with 2-nitrobenzyl (ONB)": "NT=2-nitrobenzyl;AC=1032;", "N-ethylmaleimide on selenocysteines": "NT=Cys->SecNEM;AC=1033;", "D5 N-ethylmaleimide on selenocysteines": "NT=Cys->SecNEM:2H(5);AC=1034;", "Thiadiazolydation of Cys": "NT=Thiadiazole;AC=1035;", "Modification of cystein by withaferin": "NT=Withaferin;AC=1036;", "desthiobiotin fluorophosphonate": "NT=Biotin:Thermo-88317;AC=1037;", "TAMRA fluorophosphonate modification of serine": "NT=TAMRA-FP;AC=1038;", "Maleimide-Biotin + Water": "NT=Biotin:Thermo-21901+H2O;AC=1039;", "Ala->Cys substitution": "NT=Ala->Cys;AC=1044;", "Ala->Phe substitution": "NT=Ala->Phe;AC=1045;", "Ala->His substitution": "NT=Ala->His;AC=1046;", "Ala->Leu/Ile substitution": "NT=Ala->Xle;AC=1047;", "Ala->Lys substitution": "NT=Ala->Lys;AC=1048;", "Ala->Met substitution": "NT=Ala->Met;AC=1049;", "Ala->Asn substitution": "NT=Ala->Asn;AC=1050;", "Ala->Gln substitution": "NT=Ala->Gln;AC=1051;", "Ala->Arg substitution": "NT=Ala->Arg;AC=1052;", "Ala->Trp substitution": "NT=Ala->Trp;AC=1053;", "Ala->Tyr substitution": "NT=Ala->Tyr;AC=1054;", "Cys->Ala substitution": "NT=Cys->Ala;AC=1055;", "Cys->Asp substitution": "NT=Cys->Asp;AC=1056;", "Cys->Glu substitution": "NT=Cys->Glu;AC=1057;", "Cys->His substitution": "NT=Cys->His;AC=1058;", "Cys->Leu/Ile substitution": "NT=Cys->Xle;AC=1059;", "Cys->Lys substitution": "NT=Cys->Lys;AC=1060;", "Cys->Met substitution": "NT=Cys->Met;AC=1061;", "Cys->Asn substitution": "NT=Cys->Asn;AC=1062;", "Cys->Pro substitution": "NT=Cys->Pro;AC=1063;", "Cys->Gln substitution": "NT=Cys->Gln;AC=1064;", "Cys->Thr substitution": "NT=Cys->Thr;AC=1065;", "Cys->Val substitution": "NT=Cys->Val;AC=1066;", "Asp->Cys substitution": "NT=Asp->Cys;AC=1067;", "Asp->Phe substitution": "NT=Asp->Phe;AC=1068;", "Asp->Leu/Ile substitution": "NT=Asp->Xle;AC=1069;", "Asp->Lys substitution": "NT=Asp->Lys;AC=1070;", "Asp->Met substitution": "NT=Asp->Met;AC=1071;", "Asp->Pro substitution": "NT=Asp->Pro;AC=1072;", "Asp->Gln substitution": "NT=Asp->Gln;AC=1073;", "Asp->Arg substitution": "NT=Asp->Arg;AC=1074;", "Asp->Ser substitution": "NT=Asp->Ser;AC=1075;", "Asp->Thr substitution": "NT=Asp->Thr;AC=1076;", "Asp->Trp substitution": "NT=Asp->Trp;AC=1077;", "Glu->Cys substitution": "NT=Glu->Cys;AC=1078;", "Glu->Phe substitution": "NT=Glu->Phe;AC=1079;", "Glu->His substitution": "NT=Glu->His;AC=1080;", "Glu->Leu/Ile substitution": "NT=Glu->Xle;AC=1081;", "Glu->Met substitution": "NT=Glu->Met;AC=1082;", "Glu->Asn substitution": "NT=Glu->Asn;AC=1083;", "Glu->Pro substitution": "NT=Glu->Pro;AC=1084;", "Glu->Arg substitution": "NT=Glu->Arg;AC=1085;", "Glu->Ser substitution": "NT=Glu->Ser;AC=1086;", "Glu->Thr substitution": "NT=Glu->Thr;AC=1087;", "Glu->Trp substitution": "NT=Glu->Trp;AC=1088;", "Glu->Tyr substitution": "NT=Glu->Tyr;AC=1089;", "Phe->Ala substitution": "NT=Phe->Ala;AC=1090;", "Phe->Asp substitution": "NT=Phe->Asp;AC=1091;", "Phe->Glu substitution": "NT=Phe->Glu;AC=1092;", "Phe->Gly substitution": "NT=Phe->Gly;AC=1093;", "Phe->His substitution": "NT=Phe->His;AC=1094;", "Phe->Lys substitution": "NT=Phe->Lys;AC=1095;", "Phe->Met substitution": "NT=Phe->Met;AC=1096;", "Phe->Asn substitution": "NT=Phe->Asn;AC=1097;", "Phe->Pro substitution": "NT=Phe->Pro;AC=1098;", "Phe->Gln substitution": "NT=Phe->Gln;AC=1099;", "Phe->Arg substitution": "NT=Phe->Arg;AC=1100;", "Phe->Thr substitution": "NT=Phe->Thr;AC=1101;", "Phe->Trp substitution": "NT=Phe->Trp;AC=1102;", "Gly->Phe substitution": "NT=Gly->Phe;AC=1103;", "Gly->His substitution": "NT=Gly->His;AC=1104;", "Gly->Leu/Ile substitution": "NT=Gly->Xle;AC=1105;", "Gly->Lys substitution": "NT=Gly->Lys;AC=1106;", "Gly->Met substitution": "NT=Gly->Met;AC=1107;", "Gly->Asn substitution": "NT=Gly->Asn;AC=1108;", "Gly->Pro substitution": "NT=Gly->Pro;AC=1109;", "Gly->Gln substitution": "NT=Gly->Gln;AC=1110;", "Gly->Thr substitution": "NT=Gly->Thr;AC=1111;", "Gly->Tyr substitution": "NT=Gly->Tyr;AC=1112;", "His->Ala substitution": "NT=His->Ala;AC=1113;", "His->Cys substitution": "NT=His->Cys;AC=1114;", "His->Glu substitution": "NT=His->Glu;AC=1115;", "His->Phe substitution": "NT=His->Phe;AC=1116;", "His->Gly substitution": "NT=His->Gly;AC=1117;", "His->Lys substitution": "NT=His->Lys;AC=1119;", "His->Met substitution": "NT=His->Met;AC=1120;", "His->Ser substitution": "NT=His->Ser;AC=1121;", "His->Thr substitution": "NT=His->Thr;AC=1122;", "His->Val substitution": "NT=His->Val;AC=1123;", "His->Trp substitution": "NT=His->Trp;AC=1124;", "Leu/Ile->Ala substitution": "NT=Xle->Ala;AC=1125;", "Leu/Ile->Cys substitution": "NT=Xle->Cys;AC=1126;", "Leu/Ile->Asp substitution": "NT=Xle->Asp;AC=1127;", "Leu/Ile->Glu substitution": "NT=Xle->Glu;AC=1128;", "Leu/Ile->Gly substitution": "NT=Xle->Gly;AC=1129;", "Leu/Ile->Tyr substitution": "NT=Xle->Tyr;AC=1130;", "Lys->Ala substitution": "NT=Lys->Ala;AC=1131;", "Lys->Cys substitution": "NT=Lys->Cys;AC=1132;", "Lys->Asp substitution": "NT=Lys->Asp;AC=1133;", "Lys->Phe substitution": "NT=Lys->Phe;AC=1134;", "Lys->Gly substitution": "NT=Lys->Gly;AC=1135;", "Lys->His substitution": "NT=Lys->His;AC=1136;", "Lys->Pro substitution": "NT=Lys->Pro;AC=1137;", "Lys->Ser substitution": "NT=Lys->Ser;AC=1138;", "Lys->Val substitution": "NT=Lys->Val;AC=1139;", "Lys->Trp substitution": "NT=Lys->Trp;AC=1140;", "Lys->Tyr substitution": "NT=Lys->Tyr;AC=1141;", "Met->Ala substitution": "NT=Met->Ala;AC=1142;", "Met->Cys substitution": "NT=Met->Cys;AC=1143;", "Met->Asp substitution": "NT=Met->Asp;AC=1144;", "Met->Glu substitution": "NT=Met->Glu;AC=1145;", "Met->Phe substitution": "NT=Met->Phe;AC=1146;", "Met->Gly substitution": "NT=Met->Gly;AC=1147;", "Met->His substitution": "NT=Met->His;AC=1148;", "Met->Asn substitution": "NT=Met->Asn;AC=1149;", "Met->Pro substitution": "NT=Met->Pro;AC=1150;", "Met->Gln substitution": "NT=Met->Gln;AC=1151;", "Met->Ser substitution": "NT=Met->Ser;AC=1152;", "Met->Trp substitution": "NT=Met->Trp;AC=1153;", "Met->Tyr substitution": "NT=Met->Tyr;AC=1154;", "Asn->Ala substitution": "NT=Asn->Ala;AC=1155;", "Asn->Cys substitution": "NT=Asn->Cys;AC=1156;", "Asn->Glu substitution": "NT=Asn->Glu;AC=1157;", "Asn->Phe substitution": "NT=Asn->Phe;AC=1158;", "Asn->Gly substitution": "NT=Asn->Gly;AC=1159;", "Asn->Met substitution": "NT=Asn->Met;AC=1160;", "Asn->Pro substitution": "NT=Asn->Pro;AC=1161;", "Asn->Gln substitution": "NT=Asn->Gln;AC=1162;", "Asn->Arg substitution": "NT=Asn->Arg;AC=1163;", "Asn->Val substitution": "NT=Asn->Val;AC=1164;", "Asn->Trp substitution": "NT=Asn->Trp;AC=1165;", "Pro->Cys substitution": "NT=Pro->Cys;AC=1166;", "Pro->Asp substitution": "NT=Pro->Asp;AC=1167;", "Pro->Glu substitution": "NT=Pro->Glu;AC=1168;", "Pro->Phe substitution": "NT=Pro->Phe;AC=1169;", "Pro->Gly substitution": "NT=Pro->Gly;AC=1170;", "Pro->Lys substitution": "NT=Pro->Lys;AC=1171;", "Pro->Met substitution": "NT=Pro->Met;AC=1172;", "Pro->Asn substitution": "NT=Pro->Asn;AC=1173;", "Pro->Val substitution": "NT=Pro->Val;AC=1174;", "Pro->Trp substitution": "NT=Pro->Trp;AC=1175;", "Pro->Tyr substitution": "NT=Pro->Tyr;AC=1176;", "Gln->Ala substitution": "NT=Gln->Ala;AC=1177;", "Gln->Cys substitution": "NT=Gln->Cys;AC=1178;", "Gln->Asp substitution": "NT=Gln->Asp;AC=1179;", "Gln->Phe substitution": "NT=Gln->Phe;AC=1180;", "Gln->Gly substitution": "NT=Gln->Gly;AC=1181;", "Gln->Met substitution": "NT=Gln->Met;AC=1182;", "Gln->Asn substitution": "NT=Gln->Asn;AC=1183;", "Gln->Ser substitution": "NT=Gln->Ser;AC=1184;", "Gln->Thr substitution": "NT=Gln->Thr;AC=1185;", "Gln->Val substitution": "NT=Gln->Val;AC=1186;", "Gln->Trp substitution": "NT=Gln->Trp;AC=1187;", "Gln->Tyr substitution": "NT=Gln->Tyr;AC=1188;", "Arg->Ala substitution": "NT=Arg->Ala;AC=1189;", "Arg->Asp substitution": "NT=Arg->Asp;AC=1190;", "Arg->Glu substitution": "NT=Arg->Glu;AC=1191;", "Arg->Asn substitution": "NT=Arg->Asn;AC=1192;", "Arg->Val substitution": "NT=Arg->Val;AC=1193;", "Arg->Tyr substitution": "NT=Arg->Tyr;AC=1194;", "Arg->Phe substitution": "NT=Arg->Phe;AC=1195;", "Ser->Asp substitution": "NT=Ser->Asp;AC=1196;", "Ser->Glu substitution": "NT=Ser->Glu;AC=1197;", "Ser->His substitution": "NT=Ser->His;AC=1198;", "Ser->Lys substitution": "NT=Ser->Lys;AC=1199;", "Ser->Met substitution": "NT=Ser->Met;AC=1200;", "Ser->Gln substitution": "NT=Ser->Gln;AC=1201;", "Ser->Val substitution": "NT=Ser->Val;AC=1202;", "Thr->Cys substitution": "NT=Thr->Cys;AC=1203;", "Thr->Asp substitution": "NT=Thr->Asp;AC=1204;", "Thr->Glu substitution": "NT=Thr->Glu;AC=1205;", "Thr->Phe substitution": "NT=Thr->Phe;AC=1206;", "Thr->Gly substitution": "NT=Thr->Gly;AC=1207;", "Thr->His substitution": "NT=Thr->His;AC=1208;", "Thr->Gln substitution": "NT=Thr->Gln;AC=1209;", "Thr->Val substitution": "NT=Thr->Val;AC=1210;", "Thr->Trp substitution": "NT=Thr->Trp;AC=1211;", "Thr->Tyr substitution": "NT=Thr->Tyr;AC=1212;", "Val->Cys substitution": "NT=Val->Cys;AC=1213;", "Val->His substitution": "NT=Val->His;AC=1214;", "Val->Lys substitution": "NT=Val->Lys;AC=1215;", "Val->Asn substitution": "NT=Val->Asn;AC=1216;", "Val->Pro substitution": "NT=Val->Pro;AC=1217;", "Val->Gln substitution": "NT=Val->Gln;AC=1218;", "Val->Arg substitution": "NT=Val->Arg;AC=1219;", "Val->Ser substitution": "NT=Val->Ser;AC=1220;", "Val->Thr substitution": "NT=Val->Thr;AC=1221;", "Val->Trp substitution": "NT=Val->Trp;AC=1222;", "Val->Tyr substitution": "NT=Val->Tyr;AC=1223;", "Trp->Ala substitution": "NT=Trp->Ala;AC=1224;", "Trp->Asp substitution": "NT=Trp->Asp;AC=1225;", "Trp->Glu substitution": "NT=Trp->Glu;AC=1226;", "Trp->Phe substitution": "NT=Trp->Phe;AC=1227;", "Trp->His substitution": "NT=Trp->His;AC=1228;", "Trp->Lys substitution": "NT=Trp->Lys;AC=1229;", "Trp->Met substitution": "NT=Trp->Met;AC=1230;", "Trp->Asn substitution": "NT=Trp->Asn;AC=1231;", "Trp->Pro substitution": "NT=Trp->Pro;AC=1232;", "Trp->Gln substitution": "NT=Trp->Gln;AC=1233;", "Trp->Thr substitution": "NT=Trp->Thr;AC=1234;", "Trp->Val substitution": "NT=Trp->Val;AC=1235;", "Trp->Tyr substitution": "NT=Trp->Tyr;AC=1236;", "Tyr->Ala substitution": "NT=Tyr->Ala;AC=1237;", "Tyr->Glu substitution": "NT=Tyr->Glu;AC=1238;", "Tyr->Gly substitution": "NT=Tyr->Gly;AC=1239;", "Tyr->Lys substitution": "NT=Tyr->Lys;AC=1240;", "Tyr->Met substitution": "NT=Tyr->Met;AC=1241;", "Tyr->Pro substitution": "NT=Tyr->Pro;AC=1242;", "Tyr->Gln substitution": "NT=Tyr->Gln;AC=1243;", "Tyr->Arg substitution": "NT=Tyr->Arg;AC=1244;", "Tyr->Thr substitution": "NT=Tyr->Thr;AC=1245;", "Tyr->Val substitution": "NT=Tyr->Val;AC=1246;", "Tyr->Trp substitution": "NT=Tyr->Trp;AC=1247;", "Tyr->Leu/Ile substitution": "NT=Tyr->Xle;AC=1248;", "Azidohomoalanine coupled to reductively cleaved tag": "NT=AHA-SS;AC=1249;", "carbamidomethylated form of reductively cleaved tag coupled to azidohomoalanine": "NT=AHA-SS_CAM;AC=1250;", "Sulfo-SBED Label Photoreactive Biotin Crosslinker": "NT=Biotin:Thermo-33033;AC=1251;", "Sulfo-SBED Label Photoreactive Biotin Crosslinker minus Hydrogen": "NT=Biotin:Thermo-33033-H;AC=1252;", "S-(2-monomethylsuccinyl) cysteine": "NT=2-monomethylsuccinyl;AC=1253;", "o-toluene": "NT=Saligenin;AC=1254;", "o-toluyl-phosphorylation": "NT=Cresylphosphate;AC=1255;", "Cresyl-Saligenin-phosphorylation": "NT=CresylSaligeninPhosphate;AC=1256;", "Ub Bromide probe addition": "NT=Ub-Br2;AC=1257;", "Ubiquitin vinylmethylester": "NT=Ub-VME;AC=1258;", "Ub Fluorescein probe addition": "NT=Ub-fluorescein;AC=1261;", "S-(2-dimethylsuccinyl) cysteine": "NT=2-dimethylsuccinyl;AC=1262;", "Addition of Glycine": "NT=Gly;AC=1263;", "addition of GGE": "NT=pupylation;AC=1264;", "13C4 Methionine label": "NT=Label:13C(4);AC=1266;", "Oxidised 13C4 labelled Methionine": "NT=Label:13C(4)+Oxidation;AC=1267;", "N-Homocysteine thiolactone": "NT=HCysThiolactone;AC=1270;", "S-homocysteinylation": "NT=HCysteinyl;AC=1271;", "Side reaction of HisTag": "NT=UgiJoullie;AC=1276;", "Cys modified with dipy ligand": "NT=Dipyridyl;AC=1277;", "Chemical modification of the iodinated sites of thyroglobulin by Suzuki reaction": "NT=Furan;AC=1278;", "Chemical modification of the diiodinated sites of thyroglobulin by Suzuki reaction": "NT=Difuran;AC=1279;", "1-methyl-3-benzoyl-4-hydroxy-4-phenylpiperidine": "NT=BMP-piperidinol;AC=1281;", "Side reaction of PG with Side chain of aspartic or glutamic acid": "NT=UgiJoullieProGly;AC=1282;", "Side reaction of PGPG with Side chain of aspartic or glutamic acid": "NT=UgiJoullieProGlyProGly;AC=1283;", "Glycosylation with IME linked Hex(2) NeuAc": "NT=IMEHex(2)NeuAc(1);AC=1286;", "Loss of arginine due to transpeptidation": "NT=Arg-loss;AC=1287;", "Addition of arginine due to transpeptidation": "NT=Arg;AC=1288;", "Double Carbamidomethylation": "NT=Dicarbamidomethyl;AC=1290;", "Dimethyl-Medium": "NT=Dimethyl:2H(6);AC=1291;", "SUMOylation leaving GlyGlyGln": "NT=GGQ;AC=1292;", "SUMOylation leaving GlnThrGlyGly": "NT=QTGG;AC=1293;", "13C3 label for SILAC": "NT=Label:13C(3);AC=1296;", "SILAC or AQUA label": "NT=Label:13C(3)15N(1);AC=1297;", "13C4 15N1 label for SILAC": "NT=Label:13C(4)15N(1);AC=1298;", "2H(10) label": "NT=Label:2H(10);AC=1299;", "Addition of lysine due to transpeptidation": "NT=Lys;AC=1301;", "mTRAQ heavy": "NT=mTRAQ:13C(6)15N(2);AC=1302;", "N-acetyl neuraminic acid": "NT=NeuAc;AC=1303;", "N-glycoyl neuraminic acid": "NT=NeuGc;AC=1304;", "Reduced acrolein addition +58": "NT=Delta:H(6)C(3)O(1);AC=1312;", "Reduced acrolein addition +96": "NT=Delta:H(8)C(6)O(1);AC=1313;", "biotin hydrazide labeled acrolein addition +298": "NT=biotinAcrolein298;AC=1314;", "3-methyl-5-(methylamino)-1,3-diphenylpentan-1-one": "NT=MM-diphenylpentanone;AC=1315;", "2-ethyl-3-hydroxy-1,3-diphenylpentan-1-one": "NT=EHD-diphenylpentanone;AC=1317;", "Maleimide-Biotin + 2Water": "NT=Biotin:Thermo-21901+2H2O;AC=1320;", "Accurate mass for DiLeu 115 isobaric tag": "NT=DiLeu4plex115;AC=1321;", "Accurate mass for DiLeu 116 isobaric tag": "NT=DiLeu4plex;AC=1322;", "Accurate mass for DiLeu 117 isobaric tag": "NT=DiLeu4plex117;AC=1323;", "Accurate mass for DiLeu 118 isobaric tag": "NT=DiLeu4plex118;AC=1324;", "N-ethylmaleimideSulfur": "NT=NEMsulfur;AC=1326;", "N-ethylmaleimideSulfurWater": "NT=NEMsulfurWater;AC=1328;", "BisANS with loss of both sulfonates": "NT=bisANS-sulfonates;AC=1330;", "Chemical reaction with 2,4-dinitro-1-chloro benzene (DNCB)": "NT=DNCB_hapten;AC=1331;", "Biotin-PEG11-maleimide": "NT=Biotin:Thermo-21911;AC=1340;", "Native iodoacetyl Tandem Mass Tag\u00ae": "NT=iodoTMT;AC=1341;", "Sixplex iodoacetyl Tandem Mass Tag\u00ae": "NT=iodoTMT6plex;AC=1342;", "reaction with phenyl salicylate (PS)": "NT=PS_Hapten;AC=1345;", "Cy3 Maleimide mono-Reactive dye": "NT=Cy3-maleimide;AC=1348;", "modification of the lysine side chain from NH2 to guanidine with a H removed in favor of a benzyl group": "NT=benzylguanidine;AC=1349;", "A fixed +1 charge tag attached to the N-terminus of peptides": "NT=CarboxymethylDMAP;AC=1350;", "Formation of five membered aromatic heterocycle": "NT=azole;AC=1355;", "phosphate-ribosylation": "NT=phosphoRibosyl;AC=1356;", "D5 N-ethylmaleimide+water on cysteines": "NT=NEM:2H(5)+H2O;AC=1358;", "Crotonylation": "NT=Crotonyl;AC=1363;", "O-ethyl, N-dimethyl phosphate": "NT=O-Et-N-diMePhospho;AC=1364;", "Hex1dHex1": "NT=dHex(1)Hex(1);AC=1367;", "3-fold methylated lysine labelled with Acetyl_heavy": "NT=Methyl:2H(3)+Acetyl:2H(3);AC=1368;", "Oxidised 2H(3) labelled Methionine": "NT=Label:2H(3)+Oxidation;AC=1370;", "3-fold methylation with deuterated methyl groups": "NT=Trimethyl:2H(9);AC=1371;", "heavy acetylation": "NT=Acetyl:13C(2);AC=1372;", "Hex2dHex1": "NT=dHex(1)Hex(2);AC=1375;", "Hex3dHex1": "NT=dHex(1)Hex(3);AC=1376;", "Hex4dHex1": "NT=dHex(1)Hex(4);AC=1377;", "Hex5dHex1": "NT=dHex(1)Hex(5);AC=1378;", "Hex6dHex1": "NT=dHex(1)Hex(6);AC=1379;", "reaction with methyl vinyl sulfone": "NT=methylsulfonylethyl;AC=1380;", "reaction with ethyl vinyl sulfone": "NT=ethylsulfonylethyl;AC=1381;", "reaction with phenyl vinyl sulfone": "NT=phenylsulfonylethyl;AC=1382;", "PLP bound to lysine reduced by sodium borohydride (NaBH4) to create amine linkage": "NT=PyridoxalPhosphateH2;AC=1383;", "methionine oxidation to homocysteic acid": "NT=Homocysteic_acid;AC=1384;", "ADP-ribosylation followed by conversion to hydroxamic acid via hydroxylamine": "NT=Hydroxamic_acid;AC=1385;", "Modification by hydroxylated mechloroethamine (HN-2)": "NT=HN2_mustard;AC=1388;", "Modification by hydroxylated tris-(2-chloroethyl)amine (HN-3)": "NT=HN3_mustard;AC=1389;", "N-ethylmaleimide on cysteine sulfenic acid": "NT=Oxidation+NEM;AC=1390;", "fluorescein-hexanoate-NHS hydrolysis": "NT=NHS-fluorescein;AC=1391;", "Representative mass and accurate mass for 114": "NT=DiART6plex;AC=1392;", "Accurate mass for DiART6plex 115": "NT=DiART6plex115;AC=1393;", "Accurate mass for DiART6plex 116 and 119": "NT=DiART6plex116/119;AC=1394;", "Accurate mass for DiART6plex 117": "NT=DiART6plex117;AC=1395;", "Accurate mass for DiART6plex 118": "NT=DiART6plex118;AC=1396;", "iodoacetanilide derivative": "NT=Iodoacetanilide;AC=1397;", "13C labelled iodoacetanilide derivative": "NT=Iodoacetanilide:13C(6);AC=1398;", "Diaminopimelic acid-DSP monolinked": "NT=Dap-DSP;AC=1399;", "N-Acetylmuramic acid": "NT=MurNAc;AC=1400;", "Sumoylation by SUMO-1 after Cyanogen bromide (CNBr) cleavage": "NT=EEEDVIEVYQEQTGG;AC=1405;", "Sumoylation by SUMO-2/3 after Cyanogen bromide (CNBr) cleavage": "NT=EDEDTIDVFQQQTGG;AC=1406;", "A2G2S2/G2S2": "NT=Hex(5)HexNAc(4)NeuAc(2);AC=1408;", "A2G2S1/G2S1": "NT=Hex(5)HexNAc(4)NeuAc(1);AC=1409;", "FA2G2S1/G2FS1": "NT=dHex(1)Hex(5)HexNAc(4)NeuAc(1);AC=1410;", "FA2G2S2/G2FS2": "NT=dHex(1)Hex(5)HexNAc(4)NeuAc(2);AC=1411;", "O3S1HexNAc1": "NT=s-GlcNAc;AC=1412;", "H1O3P1Hex2": "NT=PhosphoHex(2);AC=1413;", "3-fold methylation with fully labelled methyl groups": "NT=Trimethyl:13C(3)2H(9);AC=1414;", "Loss of ammonia (15N)": "NT=15N-oxobutanoic;AC=1419;", "spermine adduct": "NT=spermine;AC=1420;", "spermidine adduct": "NT=spermidine;AC=1421;", "Biotin_PEG4": "NT=Biotin:Thermo-21330;AC=1423;", "Hex Pent": "NT=Hex(1)Pent(1);AC=1426;", "Hex HexA": "NT=Hex(1)HexA(1);AC=1427;", "Hex Pent(2)": "NT=Hex(1)Pent(2);AC=1428;", "Hex HexNAc Phos": "NT=Hex(1)HexNAc(1)Phos(1);AC=1429;", "Hex HexNAc Sulf": "NT=Hex(1)HexNAc(1)Sulf(1);AC=1430;", "Hex NeuAc ---OR--- HexNAc Kdn": "NT=Hex(1)NeuAc(1);AC=1431;", "Hex NeuGc": "NT=Hex(1)NeuGc(1);AC=1432;", "HexNAc NeuAc": "NT=HexNAc(1)NeuAc(1);AC=1434;", "HexNAc NeuGc": "NT=HexNAc(1)NeuGc(1);AC=1435;", "Hex HexNAc dHex Me": "NT=Hex(1)HexNAc(1)dHex(1)Me(1);AC=1436;", "Hex HexNAc dHex Me(2)": "NT=Hex(1)HexNAc(1)dHex(1)Me(2);AC=1437;", "Hex(2) HexNAc": "NT=Hex(2)HexNAc(1);AC=1438;", "Hex HexA HexNAc": "NT=Hex(1)HexA(1)HexNAc(1);AC=1439;", "Hex(2) HexNAc Me": "NT=Hex(2)HexNAc(1)Me(1);AC=1440;", "Hex Pent(3)": "NT=Hex(1)Pent(3);AC=1441;", "Hex NeuAc Pent": "NT=Hex(1)NeuAc(1)Pent(1);AC=1442;", "Hex(2) HexNAc Sulf": "NT=Hex(2)HexNAc(1)Sulf(1);AC=1443;", "Hex(2) NeuAc ---OR--- Hex HexNAc Kdn": "NT=Hex(2)NeuAc(1);AC=1444;", "Hex2 dHex2": "NT=dHex(2)Hex(2);AC=1445;", "dHex Hex(2) HexA": "NT=dHex(1)Hex(2)HexA(1);AC=1446;", "Hex HexNAc(2) Sulf": "NT=Hex(1)HexNAc(2)Sulf(1);AC=1447;", "dHex Hex(2) HexNAc(2) Pent": "NT=dHex(1)Hex(2)HexNAc(2)Pent(1);AC=1449;", "Hex(2) HexNAc(2) NeuAc ---OR--- dHex Hex HexNAc(2) NeuGc": "NT=Hex(2)HexNAc(2)NeuAc(1);AC=1450;", "Hex(3) HexNAc(2) Pent": "NT=Hex(3)HexNAc(2)Pent(1);AC=1451;", "Hex(4) HexNAc(2)": "NT=Hex(4)HexNAc(2);AC=1452;", "dHex Hex(4) HexNAc Pent": "NT=dHex(1)Hex(4)HexNAc(1)Pent(1);AC=1453;", "dHex Hex(3) HexNAc(2) Pent": "NT=dHex(1)Hex(3)HexNAc(2)Pent(1);AC=1454;", "Hex(3) HexNAc(2) NeuAc": "NT=Hex(3)HexNAc(2)NeuAc(1);AC=1455;", "Hex(4) HexNAc(2) Pent": "NT=Hex(4)HexNAc(2)Pent(1);AC=1456;", "Hex(3) HexNAc(3) Pent": "NT=Hex(3)HexNAc(3)Pent(1);AC=1457;", "Hex(5) HexNAc(2) Phos": "NT=Hex(5)HexNAc(2)Phos(1);AC=1458;", "dHex Hex(4) HexNAc(2) Pent": "NT=dHex(1)Hex(4)HexNAc(2)Pent(1);AC=1459;", "Hex(7) HexNAc": "NT=Hex(7)HexNAc(1);AC=1460;", "Hex(4) HexNAc(2) NeuAc ---OR--- Hex(3) HexNAc(2) dHex NeuGc": "NT=Hex(4)HexNAc(2)NeuAc(1);AC=1461;", "dHex Hex(5) HexNAc(2)": "NT=dHex(1)Hex(5)HexNAc(2);AC=1462;", "dHex Hex(3) HexNAc(3) Pent": "NT=dHex(1)Hex(3)HexNAc(3)Pent(1);AC=1463;", "Hex(3) HexNAc(4) Sulf": "NT=Hex(3)HexNAc(4)Sulf(1);AC=1464;", "M6/Man6": "NT=Hex(6)HexNAc(2);AC=1465;", "Hex(4) HexNAc(3) Pent": "NT=Hex(4)HexNAc(3)Pent(1);AC=1466;", "dHex Hex(4) HexNAc(3)": "NT=dHex(1)Hex(4)HexNAc(3);AC=1467;", "Hex(5) HexNAc(3)": "NT=Hex(5)HexNAc(3);AC=1468;", "Hex(3) HexNAc(4) Pent": "NT=Hex(3)HexNAc(4)Pent(1);AC=1469;", "Hex(6) HexNAc(2) Phos": "NT=Hex(6)HexNAc(2)Phos(1);AC=1470;", "dHex Hex(4) HexNAc(3) Sulf": "NT=dHex(1)Hex(4)HexNAc(3)Sulf(1);AC=1471;", "dHex Hex(5) HexNAc(2) Pent": "NT=dHex(1)Hex(5)HexNAc(2)Pent(1);AC=1472;", "Hex(8) HexNAc": "NT=Hex(8)HexNAc(1);AC=1473;", "dHex Hex(3) HexNAc(3) Pent(2)": "NT=dHex(1)Hex(3)HexNAc(3)Pent(2);AC=1474;", "dHex(2) Hex(3) HexNAc(3) Pent": "NT=dHex(2)Hex(3)HexNAc(3)Pent(1);AC=1475;", "dHex Hex(3) HexNAc(4) Sulf": "NT=dHex(1)Hex(3)HexNAc(4)Sulf(1);AC=1476;", "dHex Hex(6) HexNAc(2)": "NT=dHex(1)Hex(6)HexNAc(2);AC=1477;", "dHex Hex(4) HexNAc(3) Pent": "NT=dHex(1)Hex(4)HexNAc(3)Pent(1);AC=1478;", "Hex(4) HexNAc(4) Sulf": "NT=Hex(4)HexNAc(4)Sulf(1);AC=1479;", "M7/Man7": "NT=Hex(7)HexNAc(2);AC=1480;", "dHex(2) Hex(4) HexNAc(3)": "NT=dHex(2)Hex(4)HexNAc(3);AC=1481;", "Hex(5) HexNAc(3) Pent": "NT=Hex(5)HexNAc(3)Pent(1);AC=1482;", "Hex(4) HexNAc(3) NeuGc": "NT=Hex(4)HexNAc(3)NeuGc(1);AC=1483;", "dHex Hex(5) HexNAc(3)": "NT=dHex(1)Hex(5)HexNAc(3);AC=1484;", "dHex Hex(3) HexNAc(4) Pent": "NT=dHex(1)Hex(3)HexNAc(4)Pent(1);AC=1485;", "Hex(3) HexNAc(5) Sulf": "NT=Hex(3)HexNAc(5)Sulf(1);AC=1486;", "Hex(6) HexNAc(3)": "NT=Hex(6)HexNAc(3);AC=1487;", "Hex(3) HexNAc(4) NeuAc ---OR--- Hex(2) HexNAc(4) dHex NeuGc": "NT=Hex(3)HexNAc(4)NeuAc(1);AC=1488;", "Hex(4) HexNAc(4) Pent": "NT=Hex(4)HexNAc(4)Pent(1);AC=1489;", "Hex(7) HexNAc(2) Phos": "NT=Hex(7)HexNAc(2)Phos(1);AC=1490;", "Hex(4) HexNAc(4) Me(2) Pent": "NT=Hex(4)HexNAc(4)Me(2)Pent(1);AC=1491;", "dHex Hex(3) HexNAc(3) Pent(3) ---OR--- Hex(4) HexNAc(2) dHex(2) NeuAc": "NT=dHex(1)Hex(3)HexNAc(3)Pent(3);AC=1492;", "dHex Hex(5) HexNAc(3) Sulf": "NT=dHex(1)Hex(5)HexNAc(3)Sulf(1);AC=1493;", "dHex(2) Hex(3) HexNAc(3) Pent(2)": "NT=dHex(2)Hex(3)HexNAc(3)Pent(2);AC=1494;", "Hex(6) HexNAc(3) Phos": "NT=Hex(6)HexNAc(3)Phos(1);AC=1495;", "Hex(4) HexNAc(5)": "NT=Hex(4)HexNAc(5);AC=1496;", "dHex(3) Hex(3) HexNAc(3) Pent": "NT=dHex(3)Hex(3)HexNAc(3)Pent(1);AC=1497;", "dHex(2) Hex(4) HexNAc(3) Pent": "NT=dHex(2)Hex(4)HexNAc(3)Pent(1);AC=1498;", "dHex Hex(4) HexNAc(4) Sulf": "NT=dHex(1)Hex(4)HexNAc(4)Sulf(1);AC=1499;", "dHex Hex(7) HexNAc(2)": "NT=dHex(1)Hex(7)HexNAc(2);AC=1500;", "dHex Hex(4) HexNAc(3) NeuAc ---OR--- dHex(2) Hex(3) HexNAc(3) NeuGc": "NT=dHex(1)Hex(4)HexNAc(3)NeuAc(1);AC=1501;", "Hex(7) HexNAc(2) Phos(2)": "NT=Hex(7)HexNAc(2)Phos(2);AC=1502;", "Hex(5) HexNAc(4) Sulf": "NT=Hex(5)HexNAc(4)Sulf(1);AC=1503;", "M8/Man8": "NT=Hex(8)HexNAc(2);AC=1504;", "dHex Hex(3) HexNAc(4) Pent(2)": "NT=dHex(1)Hex(3)HexNAc(4)Pent(2);AC=1505;", "dHex Hex(4) HexNAc(3) NeuGc ---OR--- Hex(5) HexNAc(3) NeuAc": "NT=dHex(1)Hex(4)HexNAc(3)NeuGc(1);AC=1506;", "dHex(2) Hex(3) HexNAc(4) Pent": "NT=dHex(2)Hex(3)HexNAc(4)Pent(1);AC=1507;", "dHex Hex(3) HexNAc(5) Sulf": "NT=dHex(1)Hex(3)HexNAc(5)Sulf(1);AC=1508;", "dHex Hex(6) HexNAc(3)": "NT=dHex(1)Hex(6)HexNAc(3);AC=1509;", "dHex Hex(3) HexNAc(4) NeuAc": "NT=dHex(1)Hex(3)HexNAc(4)NeuAc(1);AC=1510;", "dHex(3) Hex(3) HexNAc(4)": "NT=dHex(3)Hex(3)HexNAc(4);AC=1511;", "dHex Hex(4) HexNAc(4) Pent": "NT=dHex(1)Hex(4)HexNAc(4)Pent(1);AC=1512;", "Hex(4) HexNAc(5) Sulf": "NT=Hex(4)HexNAc(5)Sulf(1);AC=1513;", "Hex(7) HexNAc(3)": "NT=Hex(7)HexNAc(3);AC=1514;", "dHex Hex(4) HexNAc(3) NeuAc Sulf": "NT=dHex(1)Hex(4)HexNAc(3)NeuAc(1)Sulf(1);AC=1515;", "Hex(5) HexNAc(4) Me(2) Pent": "NT=Hex(5)HexNAc(4)Me(2)Pent(1);AC=1516;", "Hex(3) HexNAc(6) Sulf": "NT=Hex(3)HexNAc(6)Sulf(1);AC=1517;", "dHex Hex(6) HexNAc(3) Sulf": "NT=dHex(1)Hex(6)HexNAc(3)Sulf(1);AC=1518;", "dHex Hex(4) HexNAc(5)": "NT=dHex(1)Hex(4)HexNAc(5);AC=1519;", "dHex Hex(5) HexA HexNAc(3) Sulf": "NT=dHex(1)Hex(5)HexA(1)HexNAc(3)Sulf(1);AC=1520;", "Hex(7) HexNAc(3) Phos": "NT=Hex(7)HexNAc(3)Phos(1);AC=1521;", "Hex(6) HexNAc(4) Me(3)": "NT=Hex(6)HexNAc(4)Me(3);AC=1522;", "dHex(2) Hex(4) HexNAc(4) Sulf": "NT=dHex(2)Hex(4)HexNAc(4)Sulf(1);AC=1523;", "Hex(4) HexNAc(3) NeuAc(2)": "NT=Hex(4)HexNAc(3)NeuAc(2);AC=1524;", "dHex Hex(3) HexNAc(4) Pent(3)": "NT=dHex(1)Hex(3)HexNAc(4)Pent(3);AC=1525;", "dHex(2) Hex(5) HexNAc(3) Pent": "NT=dHex(2)Hex(5)HexNAc(3)Pent(1);AC=1526;", "dHex Hex(5) HexNAc(4) Sulf": "NT=dHex(1)Hex(5)HexNAc(4)Sulf(1);AC=1527;", "dHex(2) Hex(3) HexNAc(4) Pent(2)": "NT=dHex(2)Hex(3)HexNAc(4)Pent(2);AC=1528;", "dHex Hex(5) HexNAc(3) NeuAc": "NT=dHex(1)Hex(5)HexNAc(3)NeuAc(1);AC=1529;", "Hex(3) HexNAc(6) Sulf(2)": "NT=Hex(3)HexNAc(6)Sulf(2);AC=1530;", "M9/Man9": "NT=Hex(9)HexNAc(2);AC=1531;", "Hex(4) HexNAc(6)": "NT=Hex(4)HexNAc(6);AC=1532;", "dHex(3) Hex(3) HexNAc(4) Pent": "NT=dHex(3)Hex(3)HexNAc(4)Pent(1);AC=1533;", "dHex Hex(5) HexNAc(3) NeuGc ---OR--- Hex(6) HexNAc(3) NeuAc": "NT=dHex(1)Hex(5)HexNAc(3)NeuGc(1);AC=1534;", "dHex(2) Hex(4) HexNAc(4) Pent": "NT=dHex(2)Hex(4)HexNAc(4)Pent(1);AC=1535;", "dHex Hex(4) HexNAc(5) Sulf": "NT=dHex(1)Hex(4)HexNAc(5)Sulf(1);AC=1536;", "dHex Hex(7) HexNAc(3)": "NT=dHex(1)Hex(7)HexNAc(3);AC=1537;", "dHex Hex(5) HexNAc(4) Pent": "NT=dHex(1)Hex(5)HexNAc(4)Pent(1);AC=1538;", "dHex Hex(5) HexA HexNAc(3) Sulf(2)": "NT=dHex(1)Hex(5)HexA(1)HexNAc(3)Sulf(2);AC=1539;", "Hex(3) HexNAc(7)": "NT=Hex(3)HexNAc(7);AC=1540;", "dHex(2) Hex(5) HexNAc(4)": "NT=dHex(2)Hex(5)HexNAc(4);AC=1541;", "dHex(2) Hex(4) HexNAc(3) NeuAc Sulf": "NT=dHex(2)Hex(4)HexNAc(3)NeuAc(1)Sulf(1);AC=1542;", "dHex Hex(5) HexNAc(4) Sulf(2)": "NT=dHex(1)Hex(5)HexNAc(4)Sulf(2);AC=1543;", "dHex Hex(5) HexNAc(4) Me(2) Pent": "NT=dHex(1)Hex(5)HexNAc(4)Me(2)Pent(1);AC=1544;", "Hex(5) HexNAc(4) NeuGc": "NT=Hex(5)HexNAc(4)NeuGc(1);AC=1545;", "dHex Hex(3) HexNAc(6) Sulf": "NT=dHex(1)Hex(3)HexNAc(6)Sulf(1);AC=1546;", "dHex Hex(6) HexNAc(4)": "NT=dHex(1)Hex(6)HexNAc(4);AC=1547;", "dHex Hex(5) HexNAc(3) NeuAc Sulf": "NT=dHex(1)Hex(5)HexNAc(3)NeuAc(1)Sulf(1);AC=1548;", "Hex(7) HexNAc(4)": "NT=Hex(7)HexNAc(4);AC=1549;", "dHex Hex(5) HexNAc(3) NeuGc Sulf": "NT=dHex(1)Hex(5)HexNAc(3)NeuGc(1)Sulf(1);AC=1550;", "Hex(4) HexNAc(5) NeuAc": "NT=Hex(4)HexNAc(5)NeuAc(1);AC=1551;", "Hex(6) HexNAc(4) Me(3) Pent": "NT=Hex(6)HexNAc(4)Me(3)Pent(1);AC=1552;", "dHex Hex(7) HexNAc(3) Sulf": "NT=dHex(1)Hex(7)HexNAc(3)Sulf(1);AC=1553;", "dHex Hex(7) HexNAc(3) Phos": "NT=dHex(1)Hex(7)HexNAc(3)Phos(1);AC=1554;", "dHex Hex(5) HexNAc(5)": "NT=dHex(1)Hex(5)HexNAc(5);AC=1555;", "dHex Hex(4) HexNAc(4) NeuAc Sulf": "NT=dHex(1)Hex(4)HexNAc(4)NeuAc(1)Sulf(1);AC=1556;", "dHex(3) Hex(4) HexNAc(4) Sulf": "NT=dHex(3)Hex(4)HexNAc(4)Sulf(1);AC=1557;", "Hex(3) HexNAc(7) Sulf": "NT=Hex(3)HexNAc(7)Sulf(1);AC=1558;", "A3G3": "NT=Hex(6)HexNAc(5);AC=1559;", "Hex(5) HexNAc(4) NeuAc Sulf": "NT=Hex(5)HexNAc(4)NeuAc(1)Sulf(1);AC=1560;", "Hex(3) HexNAc(6) NeuAc": "NT=Hex(3)HexNAc(6)NeuAc(1);AC=1561;", "dHex(2) Hex(3) HexNAc(6)": "NT=dHex(2)Hex(3)HexNAc(6);AC=1562;", "Hex HexNAc NeuGc": "NT=Hex(1)HexNAc(1)NeuGc(1);AC=1563;", "dHex Hex(2) HexNAc": "NT=dHex(1)Hex(2)HexNAc(1);AC=1564;", "HexNAc(3) Sulf": "NT=HexNAc(3)Sulf(1);AC=1565;", "Hex(3) HexNAc": "NT=Hex(3)HexNAc(1);AC=1566;", "Hex HexNAc Kdn Sulf": "NT=Hex(1)HexNAc(1)Kdn(1)Sulf(1);AC=1567;", "HexNAc(2) NeuAc": "NT=HexNAc(2)NeuAc(1);AC=1568;", "HexNAc Kdn(2) ---OR--- Hex(2) HexNAc HexA": "NT=HexNAc(1)Kdn(2);AC=1570;", "Hex(3) HexNAc Me": "NT=Hex(3)HexNAc(1)Me(1);AC=1571;", "Hex(2) HexA Pent Sulf": "NT=Hex(2)HexA(1)Pent(1)Sulf(1);AC=1572;", "HexNAc(2) NeuGc": "NT=HexNAc(2)NeuGc(1);AC=1573;", "Hex(4) Phos": "NT=Hex(4)Phos(1);AC=1575;", "Hex HexNAc NeuAc Sulf": "NT=Hex(1)HexNAc(1)NeuAc(1)Sulf(1);AC=1577;", "Hex HexA HexNAc(2)": "NT=Hex(1)HexA(1)HexNAc(2);AC=1578;", "dHex Hex(2) HexNAc Sulf": "NT=dHex(1)Hex(2)HexNAc(1)Sulf(1);AC=1579;", "dHex HexNAc(3)": "NT=dHex(1)HexNAc(3);AC=1580;", "dHex Hex HexNAc Kdn ---OR--- Hex(2) dHex NeuAc": "NT=dHex(1)Hex(1)HexNAc(1)Kdn(1);AC=1581;", "Hex HexNAc(3)": "NT=Hex(1)HexNAc(3);AC=1582;", "HexNAc(2) NeuAc Sulf": "NT=HexNAc(2)NeuAc(1)Sulf(1);AC=1583;", "dHex(2) Hex(3)": "NT=dHex(2)Hex(3);AC=1584;", "Hex(2) HexA HexNAc Sulf": "NT=Hex(2)HexA(1)HexNAc(1)Sulf(1);AC=1585;", "dHex(2) Hex(2) HexA": "NT=dHex(2)Hex(2)HexA(1);AC=1586;", "dHex Hex HexNAc(2) Sulf": "NT=dHex(1)Hex(1)HexNAc(2)Sulf(1);AC=1587;", "dHex Hex HexNAc NeuAc": "NT=dHex(1)Hex(1)HexNAc(1)NeuAc(1);AC=1588;", "Hex(2) HexNAc(2) Sulf": "NT=Hex(2)HexNAc(2)Sulf(1);AC=1589;", "HexNAc NeuGc(2)": "NT=HexNAc(1)NeuGc(2);AC=1592;", "dHex Hex HexNAc NeuGc ---OR--- Hex(2) HexNAc NeuAc": "NT=dHex(1)Hex(1)HexNAc(1)NeuGc(1);AC=1593;", "dHex(2) Hex(2) HexNAc": "NT=dHex(2)Hex(2)HexNAc(1);AC=1594;", "Hex(2) HexNAc NeuGc": "NT=Hex(2)HexNAc(1)NeuGc(1);AC=1595;", "dHex Hex(3) HexNAc": "NT=dHex(1)Hex(3)HexNAc(1);AC=1596;", "dHex Hex(2) HexA HexNAc": "NT=dHex(1)Hex(2)HexA(1)HexNAc(1);AC=1597;", "Hex HexNAc(3) Sulf": "NT=Hex(1)HexNAc(3)Sulf(1);AC=1598;", "Hex(4) HexNAc": "NT=Hex(4)HexNAc(1);AC=1599;", "Hex HexNAc(2) NeuAc": "NT=Hex(1)HexNAc(2)NeuAc(1);AC=1600;", "Hex HexNAc(2) NeuGc": "NT=Hex(1)HexNAc(2)NeuGc(1);AC=1602;", "Hex(5) Phos": "NT=Hex(5)Phos(1);AC=1604;", "dHex(2) Hex HexNAc Kdn": "NT=dHex(2)Hex(1)HexNAc(1)Kdn(1);AC=1606;", "dHex Hex(3) HexNAc Sulf": "NT=dHex(1)Hex(3)HexNAc(1)Sulf(1);AC=1607;", "dHex Hex HexNAc(3)": "NT=dHex(1)Hex(1)HexNAc(3);AC=1608;", "dHex Hex(2) HexA HexNAc Sulf": "NT=dHex(1)Hex(2)HexA(1)HexNAc(1)Sulf(1);AC=1609;", "Hex(2) HexNAc(3)": "NT=Hex(2)HexNAc(3);AC=1610;", "Hex HexNAc(2) NeuAc Sulf": "NT=Hex(1)HexNAc(2)NeuAc(1)Sulf(1);AC=1611;", "dHex(2) Hex(4)": "NT=dHex(2)Hex(4);AC=1612;", "dHex(2) HexNAc(2) Kdn": "NT=dHex(2)HexNAc(2)Kdn(1);AC=1614;", "dHex Hex(2) HexNAc(2) Sulf": "NT=dHex(1)Hex(2)HexNAc(2)Sulf(1);AC=1615;", "dHex HexNAc(4)": "NT=dHex(1)HexNAc(4);AC=1616;", "Hex HexNAc NeuAc NeuGc": "NT=Hex(1)HexNAc(1)NeuAc(1)NeuGc(1);AC=1617;", "dHex Hex HexNAc(2) Kdn ---OR--- Hex(2) HexNAc dHex NeuAc": "NT=dHex(1)Hex(1)HexNAc(2)Kdn(1);AC=1618;", "Hex HexNAc NeuGc(2)": "NT=Hex(1)HexNAc(1)NeuGc(2);AC=1619;", "Ac Hex HexNAc NeuAc(2)": "NT=Hex(1)HexNAc(1)NeuAc(2)Ac(1);AC=1620;", "dHex(2) Hex(2) HexA HexNAc": "NT=dHex(2)Hex(2)HexA(1)HexNAc(1);AC=1621;", "dHex Hex HexNAc(3) Sulf": "NT=dHex(1)Hex(1)HexNAc(3)Sulf(1);AC=1622;", "Hex(2) HexA NeuAc Pent Sulf": "NT=Hex(2)HexA(1)NeuAc(1)Pent(1)Sulf(1);AC=1623;", "dHex Hex HexNAc(2) NeuAc": "NT=dHex(1)Hex(1)HexNAc(2)NeuAc(1);AC=1624;", "dHex Hex(3) HexA HexNAc": "NT=dHex(1)Hex(3)HexA(1)HexNAc(1);AC=1625;", "Hex(2) HexNAc(3) Sulf": "NT=Hex(2)HexNAc(3)Sulf(1);AC=1626;", "Hex(5) HexNAc": "NT=Hex(5)HexNAc(1);AC=1627;", "Ac(2) Hex HexNAc NeuAc(2)": "NT=Hex(1)HexNAc(1)NeuAc(2)Ac(2);AC=1630;", "Hex(2) HexNAc(2) NeuGc": "NT=Hex(2)HexNAc(2)NeuGc(1);AC=1631;", "Hex(5) Phos(3)": "NT=Hex(5)Phos(3);AC=1632;", "Hex(6) Phos": "NT=Hex(6)Phos(1);AC=1633;", "dHex Hex(2) HexA HexNAc(2)": "NT=dHex(1)Hex(2)HexA(1)HexNAc(2);AC=1634;", "dHex(2) Hex(3) HexNAc Sulf": "NT=dHex(2)Hex(3)HexNAc(1)Sulf(1);AC=1635;", "Hex HexNAc(3) NeuAc": "NT=Hex(1)HexNAc(3)NeuAc(1);AC=1636;", "dHex(2) Hex HexNAc(3)": "NT=dHex(2)Hex(1)HexNAc(3);AC=1637;", "Hex HexNAc(3) NeuGc": "NT=Hex(1)HexNAc(3)NeuGc(1);AC=1638;", "dHex Hex HexNAc(2) NeuAc Sulf": "NT=dHex(1)Hex(1)HexNAc(2)NeuAc(1)Sulf(1);AC=1639;", "dHex Hex(3) HexA HexNAc Sulf": "NT=dHex(1)Hex(3)HexA(1)HexNAc(1)Sulf(1);AC=1640;", "dHex Hex HexA HexNAc(3)": "NT=dHex(1)Hex(1)HexA(1)HexNAc(3);AC=1641;", "Hex(2) HexNAc(2) NeuAc Sulf": "NT=Hex(2)HexNAc(2)NeuAc(1)Sulf(1);AC=1642;", "dHex(2) Hex(2) HexNAc(2) Sulf": "NT=dHex(2)Hex(2)HexNAc(2)Sulf(1);AC=1643;", "dHex(2) Hex HexNAc(2) Kdn ---OR--- Hex(2) HexNAc dHex(2) NeuAc": "NT=dHex(2)Hex(1)HexNAc(2)Kdn(1);AC=1644;", "dHex Hex HexNAc(4)": "NT=dHex(1)Hex(1)HexNAc(4);AC=1645;", "Hex(2) HexNAc(4)": "NT=Hex(2)HexNAc(4);AC=1646;", "Hex(2) HexNAc NeuGc(2)": "NT=Hex(2)HexNAc(1)NeuGc(2);AC=1647;", "dHex(2) Hex(4) HexNAc": "NT=dHex(2)Hex(4)HexNAc(1);AC=1648;", "Hex HexNAc(2) NeuAc(2)": "NT=Hex(1)HexNAc(2)NeuAc(2);AC=1649;", "dHex(2) Hex HexNAc(2) NeuAc": "NT=dHex(2)Hex(1)HexNAc(2)NeuAc(1);AC=1650;", "dHex Hex(2) HexNAc(3) Sulf": "NT=dHex(1)Hex(2)HexNAc(3)Sulf(1);AC=1651;", "dHex HexNAc(5)": "NT=dHex(1)HexNAc(5);AC=1652;", "dHex(2) Hex HexNAc(2) NeuGc ---OR--- Hex(2) HexNAc(2) dHex NeuAc ---OR--- Hex HexNAc(3) dHex Kdn": "NT=dHex(2)Hex(1)HexNAc(2)NeuGc(1);AC=1653;", "dHex(3) Hex(2) HexNAc(2)": "NT=dHex(3)Hex(2)HexNAc(2);AC=1654;", "Hex(3) HexNAc(3) Sulf": "NT=Hex(3)HexNAc(3)Sulf(1);AC=1655;", "dHex(2) Hex(2) HexNAc(2) Sulf(2)": "NT=dHex(2)Hex(2)HexNAc(2)Sulf(2);AC=1656;", "dHex Hex(2) HexNAc(2) NeuGc ---OR--- Hex(3) HexNAc(2) NeuAc": "NT=dHex(1)Hex(2)HexNAc(2)NeuGc(1);AC=1657;", "dHex Hex HexNAc(3) NeuAc": "NT=dHex(1)Hex(1)HexNAc(3)NeuAc(1);AC=1658;", "Hex(6) Phos(3)": "NT=Hex(6)Phos(3);AC=1659;", "dHex Hex(3) HexA HexNAc(2)": "NT=dHex(1)Hex(3)HexA(1)HexNAc(2);AC=1660;", "dHex Hex HexNAc(3) NeuGc ---OR--- Hex(2) HexNAc(3) NeuAc": "NT=dHex(1)Hex(1)HexNAc(3)NeuGc(1);AC=1661;", "Hex HexNAc(2) NeuAc(2) Sulf": "NT=Hex(1)HexNAc(2)NeuAc(2)Sulf(1);AC=1662;", "dHex(2) Hex(3) HexA HexNAc Sulf": "NT=dHex(2)Hex(3)HexA(1)HexNAc(1)Sulf(1);AC=1663;", "Hex HexNAc NeuAc(3)": "NT=Hex(1)HexNAc(1)NeuAc(3);AC=1664;", "Hex(2) HexNAc(3) NeuGc": "NT=Hex(2)HexNAc(3)NeuGc(1);AC=1665;", "dHex Hex(2) HexNAc(2) NeuAc Sulf": "NT=dHex(1)Hex(2)HexNAc(2)NeuAc(1)Sulf(1);AC=1666;", "dHex(3) Hex HexNAc(2) Kdn": "NT=dHex(3)Hex(1)HexNAc(2)Kdn(1);AC=1667;", "dHex(2) Hex(3) HexNAc(2) Sulf": "NT=dHex(2)Hex(3)HexNAc(2)Sulf(1);AC=1668;", "dHex(2) Hex(2) HexNAc(2) Kdn": "NT=dHex(2)Hex(2)HexNAc(2)Kdn(1);AC=1669;", "dHex(2) Hex(2) HexA HexNAc(2) Sulf": "NT=dHex(2)Hex(2)HexA(1)HexNAc(2)Sulf(1);AC=1670;", "dHex Hex(2) HexNAc(4)": "NT=dHex(1)Hex(2)HexNAc(4);AC=1671;", "Hex HexNAc NeuGc(3)": "NT=Hex(1)HexNAc(1)NeuGc(3);AC=1672;", "dHex Hex HexNAc(3) NeuAc Sulf": "NT=dHex(1)Hex(1)HexNAc(3)NeuAc(1)Sulf(1);AC=1673;", "dHex Hex(3) HexA HexNAc(2) Sulf": "NT=dHex(1)Hex(3)HexA(1)HexNAc(2)Sulf(1);AC=1674;", "dHex Hex HexNAc(2) NeuAc(2)": "NT=dHex(1)Hex(1)HexNAc(2)NeuAc(2);AC=1675;", "dHex(3) HexNAc(3) Kdn": "NT=dHex(3)HexNAc(3)Kdn(1);AC=1676;", "Hex(2) HexNAc(3) NeuAc Sulf": "NT=Hex(2)HexNAc(3)NeuAc(1)Sulf(1);AC=1678;", "dHex(2) Hex(2) HexNAc(3) Sulf": "NT=dHex(2)Hex(2)HexNAc(3)Sulf(1);AC=1679;", "dHex(2) HexNAc(5)": "NT=dHex(2)HexNAc(5);AC=1680;", "Hex(2) HexNAc(2) NeuAc(2)": "NT=Hex(2)HexNAc(2)NeuAc(2);AC=1681;", "dHex(2) Hex(2) HexNAc(2) NeuAc ---OR--- Hex HexNAc(3) dHex(2) Kdn": "NT=dHex(2)Hex(2)HexNAc(2)NeuAc(1);AC=1682;", "dHex Hex(3) HexNAc(3) Sulf": "NT=dHex(1)Hex(3)HexNAc(3)Sulf(1);AC=1683;", "dHex(2) Hex(2) HexNAc(2) NeuGc ---OR--- Hex(3) HexNAc(2) dHex NeuAc ---OR--- Hex(2) HexNAc(3) dHex Kdn": "NT=dHex(2)Hex(2)HexNAc(2)NeuGc(1);AC=1684;", "Hex(2) HexNAc(5)": "NT=Hex(2)HexNAc(5);AC=1685;", "dHex Hex(3) HexNAc(2) NeuGc": "NT=dHex(1)Hex(3)HexNAc(2)NeuGc(1);AC=1686;", "Hex HexNAc(3) NeuAc(2)": "NT=Hex(1)HexNAc(3)NeuAc(2);AC=1687;", "dHex Hex(2) HexNAc(3) NeuAc": "NT=dHex(1)Hex(2)HexNAc(3)NeuAc(1);AC=1688;", "dHex(3) Hex(2) HexNAc(3)": "NT=dHex(3)Hex(2)HexNAc(3);AC=1689;", "Hex(7) Phos(3)": "NT=Hex(7)Phos(3);AC=1690;", "dHex Hex(4) HexA HexNAc(2)": "NT=dHex(1)Hex(4)HexA(1)HexNAc(2);AC=1691;", "Hex(3) HexNAc(3) NeuAc ---OR--- Hex(2) HexNAc(3) dHex NeuGc ---OR--- Hex(2) HexNAc(4) Kdn": "NT=Hex(3)HexNAc(3)NeuAc(1);AC=1692;", "dHex Hex(3) HexA(2) HexNAc(2)": "NT=dHex(1)Hex(3)HexA(2)HexNAc(2);AC=1693;", "Hex(2) HexNAc(2) NeuAc(2) Sulf": "NT=Hex(2)HexNAc(2)NeuAc(2)Sulf(1);AC=1694;", "dHex(2) Hex(2) HexNAc(2) NeuAc Sulf": "NT=dHex(2)Hex(2)HexNAc(2)NeuAc(1)Sulf(1);AC=1695;", "Hex(3) HexNAc(3) NeuGc": "NT=Hex(3)HexNAc(3)NeuGc(1);AC=1696;", "dHex(4) Hex HexNAc(2) Kdn": "NT=dHex(4)Hex(1)HexNAc(2)Kdn(1);AC=1697;", "dHex(3) Hex(2) HexNAc(2) Kdn": "NT=dHex(3)Hex(2)HexNAc(2)Kdn(1);AC=1698;", "dHex(3) Hex(2) HexA HexNAc(2) Sulf": "NT=dHex(3)Hex(2)HexA(1)HexNAc(2)Sulf(1);AC=1699;", "Hex(2) HexNAc(4) NeuAc": "NT=Hex(2)HexNAc(4)NeuAc(1);AC=1700;", "dHex(2) Hex(2) HexNAc(4)": "NT=dHex(2)Hex(2)HexNAc(4);AC=1701;", "dHex(2) Hex(3) HexA HexNAc(2) Sulf": "NT=dHex(2)Hex(3)HexA(1)HexNAc(2)Sulf(1);AC=1702;", "dHex(4) HexNAc(3) Kdn": "NT=dHex(4)HexNAc(3)Kdn(1);AC=1703;", "Hex(2) HexNAc NeuGc(3)": "NT=Hex(2)HexNAc(1)NeuGc(3);AC=1705;", "dHex(4) Hex HexNAc Kdn(2)": "NT=dHex(4)Hex(1)HexNAc(1)Kdn(2);AC=1706;", "dHex Hex(2) HexNAc(3) NeuAc Sulf": "NT=dHex(1)Hex(2)HexNAc(3)NeuAc(1)Sulf(1);AC=1707;", "dHex Hex(2) HexNAc(2) NeuAc(2)": "NT=dHex(1)Hex(2)HexNAc(2)NeuAc(2);AC=1708;", "dHex(3) Hex HexNAc(3) Kdn": "NT=dHex(3)Hex(1)HexNAc(3)Kdn(1);AC=1709;", "Hex(3) HexNAc(3) NeuAc Sulf": "NT=Hex(3)HexNAc(3)NeuAc(1)Sulf(1);AC=1711;", "Hex(3) HexNAc(2) NeuAc(2)": "NT=Hex(3)HexNAc(2)NeuAc(2);AC=1712;", "Hex(3) HexNAc(3) NeuGc Sulf": "NT=Hex(3)HexNAc(3)NeuGc(1)Sulf(1);AC=1713;", "dHex Hex(2) HexNAc(2) NeuGc(2)": "NT=dHex(1)Hex(2)HexNAc(2)NeuGc(2);AC=1714;", "dHex(2) Hex(3) HexNAc(2) NeuGc ---OR--- Hex(4) HexNAc(2) dHex NeuAc": "NT=dHex(2)Hex(3)HexNAc(2)NeuGc(1);AC=1715;", "dHex Hex(3) HexA HexNAc(3) Sulf": "NT=dHex(1)Hex(3)HexA(1)HexNAc(3)Sulf(1);AC=1716;", "Hex(2) HexNAc(3) NeuAc(2)": "NT=Hex(2)HexNAc(3)NeuAc(2);AC=1717;", "dHex(2) Hex(2) HexNAc(3) NeuAc": "NT=dHex(2)Hex(2)HexNAc(3)NeuAc(1);AC=1718;", "dHex(4) Hex(2) HexNAc(3)": "NT=dHex(4)Hex(2)HexNAc(3);AC=1719;", "Hex(2) HexNAc(3) NeuAc NeuGc": "NT=Hex(2)HexNAc(3)NeuAc(1)NeuGc(1);AC=1720;", "dHex(2) Hex(2) HexNAc(3) NeuGc ---OR--- Hex(3) HexNAc(3) dHex NeuAc ---OR--- Hex(2) HexNAc(4) dHex Kdn": "NT=dHex(2)Hex(2)HexNAc(3)NeuGc(1);AC=1721;", "dHex(3) Hex(3) HexNAc(3)": "NT=dHex(3)Hex(3)HexNAc(3);AC=1722;", "Hex(8) Phos(3)": "NT=Hex(8)Phos(3);AC=1723;", "dHex Hex(2) HexNAc(2) NeuAc(2) Sulf": "NT=dHex(1)Hex(2)HexNAc(2)NeuAc(2)Sulf(1);AC=1724;", "Hex(2) HexNAc(3) NeuGc(2)": "NT=Hex(2)HexNAc(3)NeuGc(2);AC=1725;", "dHex(4) Hex(2) HexNAc(2) Kdn": "NT=dHex(4)Hex(2)HexNAc(2)Kdn(1);AC=1726;", "dHex Hex(2) HexNAc(4) NeuAc": "NT=dHex(1)Hex(2)HexNAc(4)NeuAc(1);AC=1727;", "dHex(3) Hex(2) HexNAc(4)": "NT=dHex(3)Hex(2)HexNAc(4);AC=1728;", "Hex HexNAc NeuGc(4)": "NT=Hex(1)HexNAc(1)NeuGc(4);AC=1729;", "dHex(4) Hex HexNAc(3) Kdn": "NT=dHex(4)Hex(1)HexNAc(3)Kdn(1);AC=1730;", "Hex(4) HexNAc(4) Sulf(2)": "NT=Hex(4)HexNAc(4)Sulf(2);AC=1732;", "dHex(3) Hex(2) HexNAc(3) Kdn ---OR--- Hex(3) HexNAc(2) dHex(3) NeuAc": "NT=dHex(3)Hex(2)HexNAc(3)Kdn(1);AC=1733;", "dHex(2) Hex(2) HexNAc(5)": "NT=dHex(2)Hex(2)HexNAc(5);AC=1735;", "dHex(2) Hex(3) HexA HexNAc(3) Sulf": "NT=dHex(2)Hex(3)HexA(1)HexNAc(3)Sulf(1);AC=1736;", "dHex Hex(4) HexA HexNAc(3) Sulf": "NT=dHex(1)Hex(4)HexA(1)HexNAc(3)Sulf(1);AC=1737;", "Hex(3) HexNAc(3) NeuAc(2)": "NT=Hex(3)HexNAc(3)NeuAc(2);AC=1738;", "dHex(2) Hex(3) HexNAc(3) NeuAc ---OR--- Hex(2) HexNAc(4) dHex(2) Kdn": "NT=dHex(2)Hex(3)HexNAc(3)NeuAc(1);AC=1739;", "dHex(4) Hex(3) HexNAc(3)": "NT=dHex(4)Hex(3)HexNAc(3);AC=1740;", "Hex(9) Phos(3)": "NT=Hex(9)Phos(3);AC=1742;", "dHex(2) HexNAc(7)": "NT=dHex(2)HexNAc(7);AC=1743;", "Hex(2) HexNAc NeuGc(4)": "NT=Hex(2)HexNAc(1)NeuGc(4);AC=1744;", "Hex(3) HexNAc(3) NeuAc(2) Sulf": "NT=Hex(3)HexNAc(3)NeuAc(2)Sulf(1);AC=1745;", "dHex(2) Hex(3) HexNAc(5)": "NT=dHex(2)Hex(3)HexNAc(5);AC=1746;", "dHex Hex(2) HexNAc(2) NeuGc(3)": "NT=dHex(1)Hex(2)HexNAc(2)NeuGc(3);AC=1747;", "dHex(2) Hex(4) HexA HexNAc(3) Sulf": "NT=dHex(2)Hex(4)HexA(1)HexNAc(3)Sulf(1);AC=1748;", "Hex(2) HexNAc(3) NeuAc(3)": "NT=Hex(2)HexNAc(3)NeuAc(3);AC=1749;", "dHex Hex(3) HexNAc(3) NeuAc(2)": "NT=dHex(1)Hex(3)HexNAc(3)NeuAc(2);AC=1750;", "dHex(3) Hex(3) HexNAc(3) NeuAc": "NT=dHex(3)Hex(3)HexNAc(3)NeuAc(1);AC=1751;", "Hex(2) HexNAc(3) NeuGc(3)": "NT=Hex(2)HexNAc(3)NeuGc(3);AC=1752;", "Hex(10) Phos(3)": "NT=Hex(10)Phos(3);AC=1753;", "dHex Hex(2) HexNAc(4) NeuAc(2)": "NT=dHex(1)Hex(2)HexNAc(4)NeuAc(2);AC=1754;", "Hex HexNAc NeuGc(5)": "NT=Hex(1)HexNAc(1)NeuGc(5);AC=1755;", "Hex(4) HexNAc(4) NeuAc Sulf(2)": "NT=Hex(4)HexNAc(4)NeuAc(1)Sulf(2);AC=1756;", "Hex(4) HexNAc(4) NeuGc Sulf(2)": "NT=Hex(4)HexNAc(4)NeuGc(1)Sulf(2);AC=1757;", "dHex(2) Hex(3) HexNAc(3) NeuAc(2)": "NT=dHex(2)Hex(3)HexNAc(3)NeuAc(2);AC=1758;", "Hex(4) HexNAc(4) NeuAc Sulf(3)": "NT=Hex(4)HexNAc(4)NeuAc(1)Sulf(3);AC=1759;", "dHex(2) Hex(2) HexNAc(2)": "NT=dHex(2)Hex(2)HexNAc(2);AC=1760;", "dHex Hex(3) HexNAc(2)": "NT=dHex(1)Hex(3)HexNAc(2);AC=1761;", "dHex Hex(2) HexNAc(3)": "NT=dHex(1)Hex(2)HexNAc(3);AC=1762;", "Hex(3) HexNAc(3)": "NT=Hex(3)HexNAc(3);AC=1763;", "dHex Hex(3) HexNAc(2) Sulf": "NT=dHex(1)Hex(3)HexNAc(2)Sulf(1);AC=1764;", "dHex(2) Hex(3) HexNAc(2)": "NT=dHex(2)Hex(3)HexNAc(2);AC=1765;", "dHex Hex(4) HexNAc(2)": "NT=dHex(1)Hex(4)HexNAc(2);AC=1766;", "dHex(2) Hex(2) HexNAc(3)": "NT=dHex(2)Hex(2)HexNAc(3);AC=1767;", "dHex Hex(3) HexNAc(3)": "NT=dHex(1)Hex(3)HexNAc(3);AC=1768;", "Hex(4) HexNAc(3)": "NT=Hex(4)HexNAc(3);AC=1769;", "dHex(2) Hex(4) HexNAc(2)": "NT=dHex(2)Hex(4)HexNAc(2);AC=1770;", "dHex(2) Hex(3) HexNAc(3)": "NT=dHex(2)Hex(3)HexNAc(3);AC=1771;", "A3": "NT=Hex(3)HexNAc(5);AC=1772;", "Hex(4) HexNAc(3) NeuAc ---OR--- Hex(3) HexNAc(4) Kdn": "NT=Hex(4)HexNAc(3)NeuAc(1);AC=1773;", "dHex(2) Hex(3) HexNAc(4)": "NT=dHex(2)Hex(3)HexNAc(4);AC=1774;", "dHex Hex(3) HexNAc(5)": "NT=dHex(1)Hex(3)HexNAc(5);AC=1775;", "A4": "NT=Hex(3)HexNAc(6);AC=1776;", "Hex(4) HexNAc(4) NeuAc": "NT=Hex(4)HexNAc(4)NeuAc(1);AC=1777;", "dHex(2) Hex(4) HexNAc(4) ---OR--- Hex(4) HexNAc(4) dHex Pent Me": "NT=dHex(2)Hex(4)HexNAc(4);AC=1778;", "Hex(6) HexNAc(4)": "NT=Hex(6)HexNAc(4);AC=1779;", "Hex(5) HexNAc(5)": "NT=Hex(5)HexNAc(5);AC=1780;", "dHex Hex(3) HexNAc(6)": "NT=dHex(1)Hex(3)HexNAc(6);AC=1781;", "dHex Hex(4) HexNAc(4) NeuAc ---OR--- Hex(3) HexNAc(5) dHex Kdn": "NT=dHex(1)Hex(4)HexNAc(4)NeuAc(1);AC=1782;", "dHex(3) Hex(4) HexNAc(4)": "NT=dHex(3)Hex(4)HexNAc(4);AC=1783;", "dHex Hex(3) HexNAc(5) NeuAc": "NT=dHex(1)Hex(3)HexNAc(5)NeuAc(1);AC=1784;", "dHex(2) Hex(4) HexNAc(5)": "NT=dHex(2)Hex(4)HexNAc(5);AC=1785;", "Ac Hex HexNAc NeuAc": "NT=Hex(1)HexNAc(1)NeuAc(1)Ac(1);AC=1786;", "13C(2) 15N(2)": "NT=Label:13C(2)15N(2);AC=1787;", "Ammonium-quenched monolink of DSS/BS3 crosslinker": "NT=Xlink:DSS[155];AC=1789;", "SUMOylation by Giardia lamblia": "NT=NQIGG;AC=1799;", "Fluorescein-tyramine adduct by peroxidase activity": "NT=Fluorescein-tyramine;AC=1801;", "transamidation of glycine ethyl ester to glutamine": "NT=GEE;AC=1824;", "Simulate peptide-RNA conjugates": "NT=RNPXL;AC=1825;", "Pyro-Glu from E + Methylation": "NT=Glu->pyro-Glu+Methyl;AC=1826;", "Pyro-Glu from E + Methylation Medium": "NT=Glu->pyro-Glu+Methyl:2H(2)13C(1);AC=1827;", "LeumethylArgGlyGly": "NT=LRGG+methyl;AC=1828;", "LeudimethylArgGlyGly": "NT=LRGG+dimethyl;AC=1829;", "Biotin-Phenol": "NT=Biotin-tyramide;AC=1830;", "tris adduct causes 104 Da addition at asparagine-succinimide intermediate": "NT=Tris;AC=1831;", "Iodoacetamide derivative of stilbene (reaction product with thiol)": "NT=IASD;AC=1832;", "NP-40 synthetic polymer terminus": "NT=NP40;AC=1833;", "Tween 20 synthetic polymer terminus": "NT=Tween20;AC=1834;", "Tween 80 synthetic polymer terminus": "NT=Tween80;AC=1835;", "Triton synthetic polymer terminus": "NT=Triton;AC=1836;", "Brij 35 synthetic polymer terminus": "NT=Brij35;AC=1837;", "Brij 58 synthetic polymer terminus": "NT=Brij58;AC=1838;", "beta-Funaltrexamine": "NT=betaFNA;AC=1839;", "Fucosylated biantennary + 2 alphaGal": "NT=dHex(1)Hex(7)HexNAc(4);AC=1840;", "EZ-Link Sulfo-NHS-SS-Biotin": "NT=Biotin:Thermo-21328;AC=1841;", "disuccinimidyl sulfoxide CID cleavable cross-link": "NT=Xlink:DSSO;AC=1842;", "Cytidine monophosphate": "NT=PhosphoCytidine;AC=1843;", "EGS cross-linker": "NT=Xlink:EGS;AC=1844;", "Azidophenylalanine": "NT=AzidoF;AC=1845;", "Cys alkylation by dimethylaminoethyl halide": "NT=Dimethylaminoethyl;AC=1846;", "Glutarylation": "NT=Gluratylation;AC=1848;", "2-hydroxyisobutyrylation": "NT=hydroxyisobutyryl;AC=1849;", "S-Methyl Methyl phosphorothioate": "NT=MeMePhosphorothioate;AC=1868;", "Replacement of 3 protons by iron": "NT=Cation:Fe[III];AC=1870;", "DTT adduct of cysteine": "NT=DTT;AC=1871;", "Sulfenic Acid specific probe": "NT=DYn-2;AC=1872;", "Acetone chemical artifact": "NT=MesitylOxide;AC=1873;", "formaldehyde induced modifications": "NT=methylol;AC=1875;", "disuccinimidyl suberate (DSS)": "NT=Xlink:DSS;AC=1876;", "Tris-quenched monolink of DSS/BS3 crosslinker": "NT=Xlink:DSS[259];AC=1877;", "Water-quenched monolink of DSSO crosslinker": "NT=Xlink:DSSO[176];AC=1878;", "Ammonia-quenched monolink of DSSO crosslinker": "NT=Xlink:DSSO[175];AC=1879;", "Tris-quenched monolink of DSSO crosslinker": "NT=Xlink:DSSO[279];AC=1880;", "Alkene fragment of DSSO crosslinker": "NT=Xlink:DSSO[54];AC=1881;", "Thiol fragment of DSSO crosslinker": "NT=Xlink:DSSO[86];AC=1882;", "Sulfenic acid fragment of DSSO crosslinker": "NT=Xlink:DSSO[104];AC=1883;", "disuccinimidyl dibutyric urea CID cleavable cross-link": "NT=Xlink:BuUrBu;AC=1884;", "BuUr fragment of BuUrBu crosslinker": "NT=Xlink:BuUrBu[111];AC=1885;", "Bu fragment of BuUrBu crosslinker": "NT=Xlink:BuUrBu[85];AC=1886;", "Ammonia quenched monolink of BuUrBu crosslinker": "NT=Xlink:BuUrBu[213];AC=1887;", "Water quenched monolink of BuUrBu crosslinker": "NT=Xlink:BuUrBu[214];AC=1888;", "Tris quenched monolink of BuUrBu crosslinker": "NT=Xlink:BuUrBu[317];AC=1889;", "dimethyl 3,3\\'-dithiobispropionimidate": "NT=Xlink:DTBP;AC=1891;", "Disuccinimidyl tartrate crosslinker": "NT=Xlink:DST;AC=1892;", "dithiobis[succinimidylpropionate]": "NT=Xlink:DTSSP;AC=1893;", "succinimidyl 4-[N-maleimidomethyl]cyclohexane-1-carboxylate": "NT=Xlink:SMCC;AC=1895;", "Intact DSSO crosslinker": "NT=Xlink:DSSO[158];AC=1896;", "Intact EGS cross-linker": "NT=Xlink:EGS[226];AC=1897;", "Intact DSS/BS3 crosslinker": "NT=Xlink:DSS[138];AC=1898;", "Intact BuUrBu crosslinker": "NT=Xlink:BuUrBu[196];AC=1899;", "Intact DTBP crosslinker": "NT=Xlink:DTBP[172];AC=1900;", "Intact DST crosslinker": "NT=Xlink:DST[114];AC=1901;", "Intact DSP/DTSSP crosslinker": "NT=Xlink:DTSSP[174];AC=1902;", "Intact SMCC cross-link": "NT=Xlink:SMCC[219];AC=1903;", "Intact BS2-G crosslinker": "NT=Xlink:BS2G[96];AC=1905;", "Ammonium-quenched monolink of BS2-G crosslinker": "NT=Xlink:BS2G[113];AC=1906;", "Water-quenched monolink of BS2-G crosslinker": "NT=Xlink:BS2G[114];AC=1907;", "Tris-quenched monolink of BS2-G crosslinker": "NT=Xlink:BS2G[217];AC=1908;", "bis[sulfosuccinimidyl] glutarate": "NT=Xlink:BS2G;AC=1909;", "Replacement of 3 protons by aluminium": "NT=Cation:Al[III];AC=1910;", "Ammonia quenched monolink of DMP crosslinker": "NT=Xlink:DMP[139];AC=1911;", "Intact DMP crosslinker": "NT=Xlink:DMP[122];AC=1912;", "glyoxal-derived AGE": "NT=glyoxalAGE;AC=1913;", "Methionine oxidation to aspartic semialdehyde": "NT=Met->AspSA;AC=1914;", "In Bachi as Formylaspargine (typo?)": "NT=Formylasparagine;AC=1917;", "aldehyde and ketone modifications": "NT=Carbonyl;AC=1918;", "adduction of aflatoxin B1 Dialdehyde to lysine": "NT=AFB1_Dialdehyde;AC=1920;", "Proline oxidation to 5-hydroxy-2-aminovaleric acid": "NT=Pro->HAVA;AC=1922;", "Tryptophan oxidation to beta-unsaturated-2,4-bis-tryptophandione": "NT=Delta:H(-4)O(2);AC=1923;", "Tryptophan oxidation to hydroxy-bis-tryptophandione": "NT=Delta:H(-4)O(3);AC=1924;", "Tryptophan oxidation to dihydroxy-N-formaylkynurenine": "NT=Delta:O(4);AC=1925;", "methylglyoxal-derived carboxyethyllysine": "NT=Delta:H(4)C(3)O(2);AC=1926;", "methylglyoxal-derived argpyrimidine": "NT=Delta:H(4)C(5)O(1);AC=1927;", "crotonaldehyde-derived dimethyl-FDP-lysine": "NT=Delta:H(10)C(8)O(1);AC=1928;", "methylglyoxal-derived tetrahydropyrimidine": "NT=Delta:H(6)C(7)O(4);AC=1929;", "Pent HexNAc": "NT=Pent(1)HexNAc(1);AC=1931;", "Hex(2) O(3) S": "NT=Hex(2)Sulf(1);AC=1932;", "Hex:1 Pent:2 Me:1": "NT=Hex(1)Pent(2)Me(1);AC=1933;", "HexNAc(2) Sulf": "NT=HexNAc(2)Sulf(1);AC=1934;", "Hex Pent(3) Me": "NT=Hex(1)Pent(3)Me(1);AC=1935;", "Hex(2) Pent(2)": "NT=Hex(2)Pent(2);AC=1936;", "Hex(2) Pent(2) Me": "NT=Hex(2)Pent(2)Me(1);AC=1937;", "Hex(4) HexA": "NT=Hex(4)HexA(1);AC=1938;", "Hex(2) HexNAc Pent HexA": "NT=Hex(2)HexNAc(1)Pent(1)HexA(1);AC=1939;", "Hex(3) HexNAc HexA": "NT=Hex(3)HexNAc(1)HexA(1);AC=1940;", "Hex HexNAc(2) dHex(2) Sulf": "NT=Hex(1)HexNAc(2)dHex(2)Sulf(1);AC=1941;", "HexA(2) HexNAc(3)": "NT=HexA(2)HexNAc(3);AC=1942;", "dHex Hex(4) HexA": "NT=dHex(1)Hex(4)HexA(1);AC=1943;", "Hex(5) HexA": "NT=Hex(5)HexA(1);AC=1944;", "Hex(4) HexA HexNAc": "NT=Hex(4)HexA(1)HexNAc(1);AC=1945;", "dHex(3) Hex(3) HexNAc": "NT=dHex(3)Hex(3)HexNAc(1);AC=1946;", "Hex(6) HexNAc": "NT=Hex(6)HexNAc(1);AC=1947;", "Sulf dHex Hex HexNAc(4)": "NT=Hex(1)HexNAc(4)dHex(1)Sulf(1);AC=1948;", "dHex Hex(2) HexNAc NeuAc(2)": "NT=dHex(1)Hex(2)HexNAc(1)NeuAc(2);AC=1949;", "dHex(3) Hex(3) HexNAc(2)": "NT=dHex(3)Hex(3)HexNAc(2);AC=1950;", "dHex(2) Hex HexNAc(4) Sulf": "NT=dHex(2)Hex(1)HexNAc(4)Sulf(1);AC=1951;", "dHex Hex(2) HexNAc(4) Sulf(2)": "NT=dHex(1)Hex(2)HexNAc(4)Sulf(2);AC=1952;", "Sulf dHex(2) Hex(3) HexNAc(3)": "NT=dHex(2)Hex(3)HexNAc(3)Sulf(1);AC=1954;", "Me dHex(2) Hex(5) HexNAc(2)": "NT=dHex(2)Hex(5)HexNAc(2)Me(1);AC=1955;", "Sulf(2) dHex(2) Hex(2) HexNAc(4)": "NT=dHex(2)Hex(2)HexNAc(4)Sulf(2);AC=1956;", "Hex(9) HexNAc": "NT=Hex(9)HexNAc(1);AC=1957;", "dHex(3) Hex(2) HexNAc(4) Sulf(2)": "NT=dHex(3)Hex(2)HexNAc(4)Sulf(2);AC=1958;", "Hex(4) HexNAc(4) NeuGc": "NT=Hex(4)HexNAc(4)NeuGc(1);AC=1959;", "dHex(4) Hex(3) HexNAc(2) NeuAc(1)": "NT=dHex(4)Hex(3)HexNAc(2)NeuAc(1);AC=1960;", "Hex(3) HexNAc(5) NeuAc(1)": "NT=Hex(3)HexNAc(5)NeuAc(1);AC=1961;", "Hex(10) HexNAc(1)": "NT=Hex(10)HexNAc(1);AC=1962;", "dHex Hex(8) HexNAc(2)": "NT=dHex(1)Hex(8)HexNAc(2);AC=1963;", "Hex(3) HexNAc(4) NeuAc(2)": "NT=Hex(3)HexNAc(4)NeuAc(2);AC=1964;", "dHex(2) Hex(3) HexNAc(4) NeuAc": "NT=dHex(2)Hex(3)HexNAc(4)NeuAc(1);AC=1965;", "dHex(2) Hex(2) HexNAc(6) Sulf": "NT=dHex(2)Hex(2)HexNAc(6)Sulf(1);AC=1966;", "Hex(5) HexNAc(4) NeuAc Ac": "NT=Hex(5)HexNAc(4)NeuAc(1)Ac(1);AC=1967;", "Hex(3) HexNAc(3) NeuAc(3)": "NT=Hex(3)HexNAc(3)NeuAc(3);AC=1968;", "Hex(5) HexNAc(4) NeuAc Ac(2)": "NT=Hex(5)HexNAc(4)NeuAc(1)Ac(2);AC=1969;", "Unidentified modification of 162.1258 found in open search": "NT=Unknown:162;AC=1970;", "Unidentified modification of 176.7462 found in open search": "NT=Unknown:177;AC=1971;", "Unidentified modification of 210.1616 found in open search": "NT=Unknown:210;AC=1972;", "Unidentified modification of 216.1002 found in open search": "NT=Unknown:216;AC=1973;", "Unidentified modification of 234.0742 found in open search": "NT=Unknown:234;AC=1974;", "Unidentified modification of 248.1986 found in open search": "NT=Unknown:248;AC=1975;", "Unidentified modification of 249.981 found in open search": "NT=Unknown:250;AC=1976;", "Unidentified modification of 301.9864 found in open search": "NT=Unknown:302;AC=1977;", "Unidentified modification of 306.0952 found in open search": "NT=Unknown:306;AC=1978;", "Unidentified modification of 420.0506 found in open search": "NT=Unknown:420;AC=1979;", "O-diethylphosphothione": "NT=Diethylphosphothione;AC=1986;", "O-dimethylphosphothione": "NT=Dimethylphosphothione;AC=1987;", "O-methylphosphothione": "NT=monomethylphosphothione;AC=1989;", "Ubiquitin D (FAT10) leaving after chymotrypsin digestion Cys-Ile-Gly-Gly": "NT=CIGG;AC=1990;", "Ubiquitin D (FAT10) leaving after trypsin digestion Gly-Asn-Leu-Leu-Phe-Leu-Ala-Cys-Tyr-Cys-Ile-Gly-Gly": "NT=GNLLFLACYCIGG;AC=1991;", "5-glutamyl serotonin": "NT=serotonylation;AC=1992;", "heavy tris(2,4,6-trimethoxyphenyl)phosphonium acetic acid N-hydroxysuccinimide ester derivative": "NT=TMPP-Ac:13C(9);AC=1993;", "DST crosslinker cleaved by sodium periodate": "NT=Xlink:DST[56];AC=1999;", "NHS-Diazirine crosslinker": "NT=Xlink:SDA;AC=2000;", "carbobenzoxy-L-glutaminyl-glycine": "NT=ZQG;AC=2001;", "O-Dichloroethylphosphate": "NT=Haloxon;AC=2006;", "S-methyl amino phosphinate": "NT=Methamidophos-S;AC=2007;", "O-methyl amino phosphinate": "NT=Methamidophos-O;AC=2008;", "Loss of O2; nitro photochemical decomposition": "NT=Nitrene;AC=2014;", "Super Heavy Tandem Mass Tag": "NT=shTMT;AC=2015;", "TMTpro 16plex Tandem Mass Tag": "NT=TMTpro;AC=2016;", "Native TMTpro Tandem Mass Tag": "NT=TMTpro_zero;AC=2017;", "carbodiimide crosslinker": "NT=Xlink:EDC;AC=2018;", "Intact disulfide bridge": "NT=Xlink:Disulfide;AC=2020;", "Glycosylation of Serine/Threonine residues with KDO": "NT=Ser/Thr-KDO;AC=2022;", "andrographolide with the loss of H2O": "NT=Andro-H2O;AC=2025;", "Isopeptide bond formation with loss of ammonia": "NT=Xlink:KQisopeptide;AC=2026;", "Photo-induced histidine adduct": "NT=His+O(2);AC=2027;", "A3G3S3": "NT=Hex(6)HexNAc(5)NeuAc(3);AC=2028;", "A4G4": "NT=Hex(7)HexNAc(6);AC=2029;", "Photo-induced Methionine Adduct": "NT=Met+O(2);AC=2033;", "Photo-induced Glycine Adduct": "NT=Gly+O(2);AC=2034;", "Photo-induced Proline adduct": "NT=Pro+O(2);AC=2035;", "Photo-induced Lysine adduct": "NT=Lys+O(2);AC=2036;", "Photo-induced Glutamate adduct": "NT=Glu+O(2);AC=2037;", "addition of lophotoxin to tyrosine": "NT=LTX+Lophotoxin;AC=2039;", "MBS_233p24 plus peptide 1250p53": "NT=MBS+peptide;AC=2040;", "3-hydroxybenzyl phosphate": "NT=3-hydroxybenzyl-phosphate;AC=2041;", "phenyl phosphate": "NT=phenyl-phosphate;AC=2042;", "RNA-protein UVC-crosslinked, hydrofluoride-digested uridine adduct": "NT=RBS-ID_Uridine;AC=2044;", "Super Heavy TMTpro": "NT=shTMTpro;AC=2050;", "Intact DADPS Biotin Alkyne tag": "NT=Biotin:Aha-DADPS;AC=2052;", "Intact PC Biotin Alkyne tag": "NT=Biotin:Aha-PC;AC=2053;", "RNA-protein UVA-crosslinked, hydrofluoride-digested 4-thiouridine adduct": "NT=pRBS-ID_4-thiouridine;AC=2054;", "RNA-protein UVA-crosslinked, hydrofluoride-digested 6-thioguanosine adduct": "NT=pRBS-ID_6-thioguanosine;AC=2055;", "Iodoacetamido-LC-Phosphonic Acid derivative": "NT=6C-CysPAT;AC=2057;", "Intact DSPP/TBDSPP crosslinker": "NT=Xlink:DSPP[210];AC=2058;", "Water-quenched monolink of DSPP/TBDSPP crosslinker": "NT=Xlink:DSPP[228];AC=2059;", "Tris-quenched monolink of DSPP/TBDSPP crosslinker": "NT=Xlink:DSPP[331];AC=2060;", "Ammonia-quenched monolink of DSPP/TBDSPP crosslinker": "NT=Xlink:DSPP[226];AC=2061;", "desthiobiotinylation of cysteine with DBIA probe": "NT=DBIA;AC=2062;", "Monomodification of N\u03b3-propargyl-L-Gln probe with clicked desthiobiotin-azide": "NT=Mono_N\u03b3-propargyl-L-Gln_desthiobiotin;AC=2067;", "Dimodification of L-Glu and N\u03b3-propargyl-L-Gln probe with clicked desthiobiotin-azide": "NT=Di_L-Glu_N\u03b3-propargyl-L-Gln_desthiobiotin;AC=2068;", "Dimodification of L-Gln and N\u03b3-propargyl-L-Gln probe with clicked desthiobiotin-azide": "NT=Di_L-Gln_N\u03b3-propargyl-L-Gln_desthiobiotin;AC=2069;", "Monomodification with glutamine": "NT=L-Gln;AC=2070;", "Glyceroylation": "NT=Glyceroyl;AC=2072;", "probe; AMP analogon": "NT=N6pAMP;AC=2073;", "Dabcyl C2 Maleimide": "NT=DabMal;AC=2074;", "Thiol blocking reagent": "NT=NBF;AC=2079;", "Dimedone-Based Chemical Probes": "NT=DCP;AC=2080;", "Ethynlation of cysteine residues": "NT=Ethynylation;AC=2081;"}
\ No newline at end of file
diff --git a/Home.py b/Home.py
index 7c2598f..d06c2e9 100644
--- a/Home.py
+++ b/Home.py
@@ -1,173 +1,161 @@
+import common
import streamlit as st
import pandas as pd
-import re
import numpy as np
-
-import ParsingModule
-import warnings
-warnings.filterwarnings("ignore")
+import re
import os
-import json
import gzip
-local_dir = os.path.dirname(__file__)
-from PIL import Image
-import base64
-import io
+import json
+import ParsingModule
+from st_aggrid import AgGrid, GridOptionsBuilder, GridUpdateMode, DataReturnMode
+
st.set_page_config(
- page_title="lesSDRF",
+ page_title="Additional columns",
layout="wide",
+ page_icon="π§ͺ",
menu_items={
"Get help": "https://github.com/compomics/lesSDRF/issues",
"Report a bug": "https://github.com/compomics/lesSDRF/issues",
},
)
-def add_logo(logo_path, width, height):
- """Read and return a resized logo"""
- logo = Image.open(logo_path)
- modified_logo = logo.resize((width, height))
- return modified_logo
-
-def get_base64_image(image):
- img_buffer = io.BytesIO()
- image.save(img_buffer, format="PNG")
- img_str = base64.b64encode(img_buffer.getvalue()).decode()
- return img_str
-
-my_logo = add_logo(logo_path="final_logo.png", width=149, height=58)
-
-st.markdown(
- f"""
-
- """,
- unsafe_allow_html=True,
-)
-
-#get local directory using os, and add the data folder to the path
+common.inject_sidebar_logo()
+local_dir = os.path.dirname(__file__)
-# use streamlit cache data to load gzipped jsons files from folder
@st.cache_data
def load_data():
- local_dir = os.path.dirname(__file__)
+ """Load gzipped JSON data and Unimod CSV"""
folder_path = os.path.join(local_dir, "data")
unimod_path = os.path.join(local_dir, "ontology", "unimod.csv")
data = {}
for filename in os.listdir(folder_path):
- # do not load the files containing the following names: archae, bacteria, eukaryota, virus, unclassified, other sequences
if re.search(r"archaea|bacteria|eukaryota|virus|unclassified|other sequences", filename):
continue
file_path = os.path.join(folder_path, filename)
if filename.endswith(".json.gz"):
try:
with gzip.open(file_path, "rb") as f:
+ json_str = f.read().decode('utf-8')
try:
- json_bytes = f.read()
- json_str = json_bytes.decode('utf-8')
- file_data = json.loads(json_str)
- filename_key = filename.replace(".json.gz", "")
- data[filename_key] = file_data
+ data[filename.replace(".json.gz", "")] = json.loads(json_str)
except json.JSONDecodeError:
- st.write(f"Error decoding JSON in file {file_path}")
+ st.error(f"Error decoding JSON in file {file_path}")
except gzip.BadGzipFile:
- st.write(f"Error reading file {file_path}: not a gzipped file")
+ st.error(f"Error reading {file_path}: not a gzipped file")
else:
- st.write(f"Skipping file {file_path}: not a gzipped file")
+ st.warning(f"Skipping {file_path}: not a gzipped file")
unimod = pd.read_csv(unimod_path, sep="\t")
return data, unimod
-
data_dict, unimod = load_data()
-if "data_dict" not in st.session_state:
- st.session_state["data_dict"] = data_dict
-if "unimod" not in st.session_state:
- st.session_state["unimod"] = unimod
+
+# Store in session state
+st.session_state.setdefault("data_dict", data_dict)
+st.session_state.setdefault("unimod", unimod)
+
st.title("Welcome to lesSDRF")
st.subheader("Spending less time on SDRF creates more time for amazing research")
-st.write(
- """By providing metadata in a machine-readable format, other researchers can access your data more easily and you maximize its impact.
- The Sample and Data Relationship Format ([SDRF](https://www.nature.com/articles/s41467-021-26111-3)) is the HUPO-PSI recognized metadata format within proteomics. lesSDRF will streamline this annotation process for you. This tool is developed by the [CompOmics group](https://compomics.com/) and published in [Nature Communications](https://www.nature.com/articles/s41467-023-42543-5). \n""")
-st.write("""
- On this homepage, select the species-specific default SDRF file that matches your study and provide the raw file names.
- Then, follow the steps in the sidebar.
-- Step 1: If you have a local metadata file, you can upload it to map to the SDRF file
-- Step 2: Provide information on potential labels in your sample
-- Step 3: Fill in the columns that are required for a valid SDRF
-- Step 4: Fill in columns with additional information to further optimise your SDRF file
-- Step 5: For atypical experiment types, you can check community suggested columns \n
+
+intro_text = """
+By providing metadata in a machine-readable format, other researchers can access your data more easily and you maximize its impact.
+The Sample and Data Relationship Format ([SDRF](https://www.nature.com/articles/s41467-021-26111-3)) is the HUPO-PSI recognized metadata format within proteomics.
+lesSDRF will streamline this annotation process for you. This tool is developed by the [CompOmics group](https://compomics.com/) and published in
+[Nature Communications](https://www.nature.com/articles/s41467-023-42543-5).
"""
-)
+st.write(intro_text)
+
+instructions_text = """
+On this homepage, select the species-specific default SDRF file that matches your study and provide the raw file names.
+Then, follow the steps in the sidebar.
-st.markdown("""You are able to download your intermediate file at any given time, so you can come back to the other steps whenever suits you.
-Upload your intermediate SDRF file here:""")
+- Step 1: If you have a local metadata file, you can upload it to map to the SDRF file
+- Step 2: Provide information on potential labels in your sample
+- Step 3: Annotate columns required by SDRF-Proteomics guidelines
+- Step 4: Parse through supported ontologies to find terms matching your research
+- Step 5: Community suggested columns for single cell proteomics, immunopeptidomics, structural proteomics etc.
+
+You can download your intermediate file at any given time and return to complete it later.
+"""
+st.write(instructions_text)
+
+st.markdown("Upload your intermediate SDRF file here:")
upload_df = st.file_uploader(
- "Upload intermediate SDRF file", type=["tsv"], accept_multiple_files=False, help='Upload a previously saved SDRF file. It should be in tsv format and should not contain more than 500 samples'
+ "Upload intermediate SDRF file", type=["tsv"], accept_multiple_files=False,
+ help='Upload a previously saved SDRF file. It should be in TSV format and not contain more than 500 samples'
)
+
if upload_df is not None:
template_df = pd.read_csv(upload_df, sep='\t')
- if template_df.shape[0]>500:
- st.error('Too many samples, please upload a maximum of 500 samples')
+ if template_df.shape[0] > 1000:
+ st.error('Too many samples, please upload a maximum of 1000 samples')
else:
- st.write(template_df)
- st.session_state["template_df"] = template_df
+ builder = GridOptionsBuilder.from_dataframe(template_df)
+ builder.configure_pagination(paginationAutoPageSize=False, paginationPageSize=500)
+ builder.configure_default_column(filterable=True, sortable=True, resizable=True)
+ gridOptions = builder.build()
+ AgGrid(template_df, gridOptions=gridOptions, height=500, custom_css={"#gridToolBar": {"padding-bottom": "0px !important",}})
-st.markdown("""In need of some inspiration? Download this example SDRF file to get an idea of the required output""")
-with open(f'{local_dir}/example_SDRF.tsv', 'rb') as f:
- st.download_button("Download example SDRF", f, file_name="example.sdrf.tsv")
+ st.session_state["template_df"] = template_df
st.subheader("Start here with a completely new SDRF file")
-species = ["","human", "cell-line", "default", "invertebrates", "plants", "vertebrates"]
-selected_species = st.selectbox("""Select a species for the SDRF template which will contain the basic colummns to fill in for this specific species.
-If your species is not in the drop down list, you can always use the default template.""",
-species, help="This species selection will impact the default columns present in your SDRF template. You can always add more columns in step *Additional columns*.")
-if selected_species != "":
+species = ["", "human", "cell-line", "default", "invertebrates", "plants", "vertebrates"]
+selected_species = st.selectbox(
+ "Select a species for the SDRF template:",
+ species,
+ help="This selection impacts the default columns in your SDRF template."
+)
+
+if selected_species:
folder_path = os.path.join(local_dir, "templates")
- # Load the corresponding CSV file based on the selected species
- template_df = pd.read_csv(
- f"{folder_path}/sdrf-{selected_species}.sdrf.tsv",
- sep="\t",
+ template_path = os.path.join(folder_path, f"sdrf-{selected_species}.sdrf.tsv")
+ template_df = pd.read_csv(template_path, sep="\t")
+
+ # Add empty columns
+ for col in ["comment[modification parameters]", "comment[fragment mass tolerance]", "comment[precursor mass tolerance]"]:
+ template_df[col] = np.nan
+
+ uploaded_names = st.text_input(
+ "Input raw file names (comma, tab, or space separated):",
+ help="Raw file names will populate comment[data file]. Max 2000 files."
)
- template_df["comment[modification parameters]"] = np.nan
- template_df["comment[fragment mass tolerance]"] = np.nan
- template_df["comment[precursor mass tolerance]"] = np.nan
-
- # Ask user to upload filenames of their samples
- filenames = []
- uploaded_names = st.text_input("Input raw file names as a comma or tab separated list", help="The raw file names will be input in the comment[data file] column and are the basis of your SDRF file. Input maximum 500 raw files")
- if uploaded_names is not None:
- #if comma separated, split on comma, if tab separated, split on tab
- if "," in uploaded_names:
- uploaded_names = uploaded_names.split(",")
- elif "\t" in uploaded_names:
- uploaded_names = uploaded_names.split("\t")
- elif " " in uploaded_names:
- uploaded_names = uploaded_names.split(" ")
- #remove trailing and leading spaces
- uploaded_names = [name.strip() for name in uploaded_names]
- filenames.append(uploaded_names)
- if len(filenames[0]) > 500:
- st.error('Too many samples, please upload a maximum of 500 samples')
- else:
- st.write(f"Added filenames: {filenames[0]}")
- ## Store filenames in the dataframe
- template_df["comment[data file]"] = filenames[0]
- st.session_state["template_df"] = template_df
- ## Show the data in a table
- st.write(template_df)
- if "template_df" not in st.session_state:
- st.session_state["template_df"] = template_df
+ if uploaded_names:
+ delimiters = [",", "\t", " "]
+ for delim in delimiters:
+ if delim in uploaded_names:
+ filenames = [name.strip() for name in uploaded_names.split(delim)]
+ break
+ else:
+ filenames = [uploaded_names.strip()]
+
+ if len(filenames) > 2000:
+ st.error('Too many samples, please upload a maximum of 2000 samples')
+ else:
+ template_df["comment[data file]"] = filenames
+ st.session_state["template_df"] = template_df
+ builder = GridOptionsBuilder.from_dataframe(template_df)
+ builder.configure_pagination(paginationAutoPageSize=False, paginationPageSize=500)
+ builder.configure_default_column(filterable=True, sortable=True, resizable=True)
+ gridOptions = builder.build()
+ AgGrid(template_df, gridOptions=gridOptions, height=500, custom_css={"#gridToolBar": {"padding-bottom": "0px !important",}})
+
with st.sidebar:
- download = st.download_button("Press to download SDRF file",ParsingModule.convert_df(template_df), "intermediate_SDRF.sdrf.tsv", help="download your SDRF file")
+ if st.button("Validate SDRF file before download"):
+ # Perform validation or conversion
+ converted_data = ParsingModule.convert_df(template_df)
+ st.success("SDRF file validated! Ready to download.")
+
+ st.download_button(
+ label="Download validated SDRF file",
+ data=converted_data,
+ file_name="intermediate_SDRF.sdrf.tsv",
+ mime="text/tab-separated-values"
+ )
+
st.write("""Please refer to your data and lesSDRF within your manuscript as follows:
- *The experimental metadata has been generated using lesSDRF and is available through ProteomeXchange with the dataset identifier [PXDxxxxxxx]*""")
\ No newline at end of file
+ *The experimental metadata has been generated using lesSDRF and is available through ProteomeXchange with the dataset identifier [PXDxxxxxxx]*""")
\ No newline at end of file
diff --git a/OBO_parser.ipynb b/OBO_parser.ipynb
index e3c63e9..3adef02 100644
--- a/OBO_parser.ipynb
+++ b/OBO_parser.ipynb
@@ -2,81 +2,154 @@
"cells": [
{
"cell_type": "code",
- "execution_count": 12,
+ "execution_count": 4,
"metadata": {},
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"text": [
- "Requirement already satisfied: pronto==2.5.3 in /home/compomics/miniconda3/envs/sdrf/lib/python3.9/site-packages (from -r /home/compomics/git/Publication/lesSDRF/requirements.txt (line 1)) (2.5.3)\n",
- "Requirement already satisfied: streamlit==1.19.0 in /home/compomics/miniconda3/envs/sdrf/lib/python3.9/site-packages (from -r /home/compomics/git/Publication/lesSDRF/requirements.txt (line 2)) (1.19.0)\n",
- "Requirement already satisfied: streamlit-aggrid==0.3.4.post3 in /home/compomics/miniconda3/envs/sdrf/lib/python3.9/site-packages (from -r /home/compomics/git/Publication/lesSDRF/requirements.txt (line 3)) (0.3.4.post3)\n",
- "Requirement already satisfied: streamlit-tree-select==0.0.5 in /home/compomics/miniconda3/envs/sdrf/lib/python3.9/site-packages (from -r /home/compomics/git/Publication/lesSDRF/requirements.txt (line 4)) (0.0.5)\n",
- "Requirement already satisfied: jsonschema==4.17.0 in /home/compomics/miniconda3/envs/sdrf/lib/python3.9/site-packages (from -r /home/compomics/git/Publication/lesSDRF/requirements.txt (line 5)) (4.17.0)\n",
- "Requirement already satisfied: zipp==3.10.0 in /home/compomics/miniconda3/envs/sdrf/lib/python3.9/site-packages (from -r /home/compomics/git/Publication/lesSDRF/requirements.txt (line 6)) (3.10.0)\n",
- "Requirement already satisfied: openpyxl==3.1.1 in /home/compomics/miniconda3/envs/sdrf/lib/python3.9/site-packages (from -r /home/compomics/git/Publication/lesSDRF/requirements.txt (line 7)) (3.1.1)\n",
- "Requirement already satisfied: fastobo~=0.12.2 in /home/compomics/miniconda3/envs/sdrf/lib/python3.9/site-packages (from pronto==2.5.3->-r /home/compomics/git/Publication/lesSDRF/requirements.txt (line 1)) (0.12.2)\n",
- "Requirement already satisfied: chardet~=5.0 in /home/compomics/miniconda3/envs/sdrf/lib/python3.9/site-packages (from pronto==2.5.3->-r /home/compomics/git/Publication/lesSDRF/requirements.txt (line 1)) (5.1.0)\n",
- "Requirement already satisfied: python-dateutil~=2.8 in /home/compomics/miniconda3/envs/sdrf/lib/python3.9/site-packages (from pronto==2.5.3->-r /home/compomics/git/Publication/lesSDRF/requirements.txt (line 1)) (2.8.2)\n",
- "Requirement already satisfied: networkx~=2.3 in /home/compomics/miniconda3/envs/sdrf/lib/python3.9/site-packages (from pronto==2.5.3->-r /home/compomics/git/Publication/lesSDRF/requirements.txt (line 1)) (2.8.8)\n",
- "Requirement already satisfied: semver in /home/compomics/miniconda3/envs/sdrf/lib/python3.9/site-packages (from streamlit==1.19.0->-r /home/compomics/git/Publication/lesSDRF/requirements.txt (line 2)) (3.0.1)\n",
- "Requirement already satisfied: tzlocal>=1.1 in /home/compomics/miniconda3/envs/sdrf/lib/python3.9/site-packages (from streamlit==1.19.0->-r /home/compomics/git/Publication/lesSDRF/requirements.txt (line 2)) (4.3.1)\n",
- "Requirement already satisfied: watchdog in /home/compomics/miniconda3/envs/sdrf/lib/python3.9/site-packages (from streamlit==1.19.0->-r /home/compomics/git/Publication/lesSDRF/requirements.txt (line 2)) (3.0.0)\n",
- "Requirement already satisfied: pandas>=0.25 in /home/compomics/miniconda3/envs/sdrf/lib/python3.9/site-packages (from streamlit==1.19.0->-r /home/compomics/git/Publication/lesSDRF/requirements.txt (line 2)) (1.5.1)\n",
- "Requirement already satisfied: blinker>=1.0.0 in /home/compomics/miniconda3/envs/sdrf/lib/python3.9/site-packages (from streamlit==1.19.0->-r /home/compomics/git/Publication/lesSDRF/requirements.txt (line 2)) (1.6.2)\n",
- "Requirement already satisfied: altair>=3.2.0 in /home/compomics/miniconda3/envs/sdrf/lib/python3.9/site-packages (from streamlit==1.19.0->-r /home/compomics/git/Publication/lesSDRF/requirements.txt (line 2)) (5.1.1)\n",
- "Requirement already satisfied: numpy in /home/compomics/miniconda3/envs/sdrf/lib/python3.9/site-packages (from streamlit==1.19.0->-r /home/compomics/git/Publication/lesSDRF/requirements.txt (line 2)) (1.23.4)\n",
- "Requirement already satisfied: protobuf<4,>=3.12 in /home/compomics/miniconda3/envs/sdrf/lib/python3.9/site-packages (from streamlit==1.19.0->-r /home/compomics/git/Publication/lesSDRF/requirements.txt (line 2)) (3.20.3)\n",
- "Requirement already satisfied: requests>=2.4 in /home/compomics/miniconda3/envs/sdrf/lib/python3.9/site-packages (from streamlit==1.19.0->-r /home/compomics/git/Publication/lesSDRF/requirements.txt (line 2)) (2.31.0)\n",
- "Requirement already satisfied: rich>=10.11.0 in /home/compomics/miniconda3/envs/sdrf/lib/python3.9/site-packages (from streamlit==1.19.0->-r /home/compomics/git/Publication/lesSDRF/requirements.txt (line 2)) (13.5.2)\n",
- "Requirement already satisfied: packaging>=14.1 in /home/compomics/miniconda3/envs/sdrf/lib/python3.9/site-packages (from streamlit==1.19.0->-r /home/compomics/git/Publication/lesSDRF/requirements.txt (line 2)) (21.3)\n",
- "Requirement already satisfied: gitpython!=3.1.19 in /home/compomics/miniconda3/envs/sdrf/lib/python3.9/site-packages (from streamlit==1.19.0->-r /home/compomics/git/Publication/lesSDRF/requirements.txt (line 2)) (3.1.34)\n",
- "Requirement already satisfied: pydeck>=0.1.dev5 in /home/compomics/miniconda3/envs/sdrf/lib/python3.9/site-packages (from streamlit==1.19.0->-r /home/compomics/git/Publication/lesSDRF/requirements.txt (line 2)) (0.8.0)\n",
- "Requirement already satisfied: cachetools>=4.0 in /home/compomics/miniconda3/envs/sdrf/lib/python3.9/site-packages (from streamlit==1.19.0->-r /home/compomics/git/Publication/lesSDRF/requirements.txt (line 2)) (5.3.1)\n",
- "Requirement already satisfied: typing-extensions>=3.10.0.0 in /home/compomics/miniconda3/envs/sdrf/lib/python3.9/site-packages (from streamlit==1.19.0->-r /home/compomics/git/Publication/lesSDRF/requirements.txt (line 2)) (4.7.1)\n",
- "Requirement already satisfied: pympler>=0.9 in /home/compomics/miniconda3/envs/sdrf/lib/python3.9/site-packages (from streamlit==1.19.0->-r /home/compomics/git/Publication/lesSDRF/requirements.txt (line 2)) (1.0.1)\n",
- "Requirement already satisfied: toml in /home/compomics/miniconda3/envs/sdrf/lib/python3.9/site-packages (from streamlit==1.19.0->-r /home/compomics/git/Publication/lesSDRF/requirements.txt (line 2)) (0.10.2)\n",
- "Requirement already satisfied: pyarrow>=4.0 in /home/compomics/miniconda3/envs/sdrf/lib/python3.9/site-packages (from streamlit==1.19.0->-r /home/compomics/git/Publication/lesSDRF/requirements.txt (line 2)) (13.0.0)\n",
- "Requirement already satisfied: click>=7.0 in /home/compomics/miniconda3/envs/sdrf/lib/python3.9/site-packages (from streamlit==1.19.0->-r /home/compomics/git/Publication/lesSDRF/requirements.txt (line 2)) (8.1.7)\n",
- "Requirement already satisfied: validators>=0.2 in /home/compomics/miniconda3/envs/sdrf/lib/python3.9/site-packages (from streamlit==1.19.0->-r /home/compomics/git/Publication/lesSDRF/requirements.txt (line 2)) (0.22.0)\n",
- "Requirement already satisfied: pillow>=6.2.0 in /home/compomics/miniconda3/envs/sdrf/lib/python3.9/site-packages (from streamlit==1.19.0->-r /home/compomics/git/Publication/lesSDRF/requirements.txt (line 2)) (9.4.0)\n",
- "Requirement already satisfied: tornado>=6.0.3 in /home/compomics/miniconda3/envs/sdrf/lib/python3.9/site-packages (from streamlit==1.19.0->-r /home/compomics/git/Publication/lesSDRF/requirements.txt (line 2)) (6.2)\n",
- "Requirement already satisfied: importlib-metadata>=1.4 in /home/compomics/miniconda3/envs/sdrf/lib/python3.9/site-packages (from streamlit==1.19.0->-r /home/compomics/git/Publication/lesSDRF/requirements.txt (line 2)) (6.8.0)\n",
- "Requirement already satisfied: python-decouple<4.0,>=3.6 in /home/compomics/miniconda3/envs/sdrf/lib/python3.9/site-packages (from streamlit-aggrid==0.3.4.post3->-r /home/compomics/git/Publication/lesSDRF/requirements.txt (line 3)) (3.8)\n",
- "Requirement already satisfied: pyrsistent!=0.17.0,!=0.17.1,!=0.17.2,>=0.14.0 in /home/compomics/miniconda3/envs/sdrf/lib/python3.9/site-packages (from jsonschema==4.17.0->-r /home/compomics/git/Publication/lesSDRF/requirements.txt (line 5)) (0.19.3)\n",
- "Requirement already satisfied: attrs>=17.4.0 in /home/compomics/miniconda3/envs/sdrf/lib/python3.9/site-packages (from jsonschema==4.17.0->-r /home/compomics/git/Publication/lesSDRF/requirements.txt (line 5)) (23.1.0)\n",
- "Requirement already satisfied: et-xmlfile in /home/compomics/miniconda3/envs/sdrf/lib/python3.9/site-packages (from openpyxl==3.1.1->-r /home/compomics/git/Publication/lesSDRF/requirements.txt (line 7)) (1.1.0)\n",
- "Requirement already satisfied: jinja2 in /home/compomics/miniconda3/envs/sdrf/lib/python3.9/site-packages (from altair>=3.2.0->streamlit==1.19.0->-r /home/compomics/git/Publication/lesSDRF/requirements.txt (line 2)) (3.1.2)\n",
- "Requirement already satisfied: toolz in /home/compomics/miniconda3/envs/sdrf/lib/python3.9/site-packages (from altair>=3.2.0->streamlit==1.19.0->-r /home/compomics/git/Publication/lesSDRF/requirements.txt (line 2)) (0.12.0)\n",
- "Requirement already satisfied: gitdb<5,>=4.0.1 in /home/compomics/miniconda3/envs/sdrf/lib/python3.9/site-packages (from gitpython!=3.1.19->streamlit==1.19.0->-r /home/compomics/git/Publication/lesSDRF/requirements.txt (line 2)) (4.0.10)\n",
- "Requirement already satisfied: pyparsing!=3.0.5,>=2.0.2 in /home/compomics/miniconda3/envs/sdrf/lib/python3.9/site-packages (from packaging>=14.1->streamlit==1.19.0->-r /home/compomics/git/Publication/lesSDRF/requirements.txt (line 2)) (3.0.9)\n",
- "Requirement already satisfied: pytz>=2020.1 in /home/compomics/miniconda3/envs/sdrf/lib/python3.9/site-packages (from pandas>=0.25->streamlit==1.19.0->-r /home/compomics/git/Publication/lesSDRF/requirements.txt (line 2)) (2022.6)\n",
- "Requirement already satisfied: six>=1.5 in /home/compomics/miniconda3/envs/sdrf/lib/python3.9/site-packages (from python-dateutil~=2.8->pronto==2.5.3->-r /home/compomics/git/Publication/lesSDRF/requirements.txt (line 1)) (1.16.0)\n",
- "Requirement already satisfied: certifi>=2017.4.17 in /home/compomics/miniconda3/envs/sdrf/lib/python3.9/site-packages (from requests>=2.4->streamlit==1.19.0->-r /home/compomics/git/Publication/lesSDRF/requirements.txt (line 2)) (2022.9.24)\n",
- "Requirement already satisfied: charset-normalizer<4,>=2 in /home/compomics/miniconda3/envs/sdrf/lib/python3.9/site-packages (from requests>=2.4->streamlit==1.19.0->-r /home/compomics/git/Publication/lesSDRF/requirements.txt (line 2)) (3.2.0)\n",
- "Requirement already satisfied: idna<4,>=2.5 in /home/compomics/miniconda3/envs/sdrf/lib/python3.9/site-packages (from requests>=2.4->streamlit==1.19.0->-r /home/compomics/git/Publication/lesSDRF/requirements.txt (line 2)) (3.4)\n",
- "Requirement already satisfied: urllib3<3,>=1.21.1 in /home/compomics/miniconda3/envs/sdrf/lib/python3.9/site-packages (from requests>=2.4->streamlit==1.19.0->-r /home/compomics/git/Publication/lesSDRF/requirements.txt (line 2)) (2.0.4)\n",
- "Requirement already satisfied: markdown-it-py>=2.2.0 in /home/compomics/miniconda3/envs/sdrf/lib/python3.9/site-packages (from rich>=10.11.0->streamlit==1.19.0->-r /home/compomics/git/Publication/lesSDRF/requirements.txt (line 2)) (3.0.0)\n",
- "Requirement already satisfied: pygments<3.0.0,>=2.13.0 in /home/compomics/miniconda3/envs/sdrf/lib/python3.9/site-packages (from rich>=10.11.0->streamlit==1.19.0->-r /home/compomics/git/Publication/lesSDRF/requirements.txt (line 2)) (2.16.1)\n",
- "Requirement already satisfied: pytz-deprecation-shim in /home/compomics/miniconda3/envs/sdrf/lib/python3.9/site-packages (from tzlocal>=1.1->streamlit==1.19.0->-r /home/compomics/git/Publication/lesSDRF/requirements.txt (line 2)) (0.1.0.post0)\n",
- "Requirement already satisfied: smmap<6,>=3.0.1 in /home/compomics/miniconda3/envs/sdrf/lib/python3.9/site-packages (from gitdb<5,>=4.0.1->gitpython!=3.1.19->streamlit==1.19.0->-r /home/compomics/git/Publication/lesSDRF/requirements.txt (line 2)) (5.0.0)\n",
- "Requirement already satisfied: MarkupSafe>=2.0 in /home/compomics/miniconda3/envs/sdrf/lib/python3.9/site-packages (from jinja2->altair>=3.2.0->streamlit==1.19.0->-r /home/compomics/git/Publication/lesSDRF/requirements.txt (line 2)) (2.1.3)\n",
- "Requirement already satisfied: mdurl~=0.1 in /home/compomics/miniconda3/envs/sdrf/lib/python3.9/site-packages (from markdown-it-py>=2.2.0->rich>=10.11.0->streamlit==1.19.0->-r /home/compomics/git/Publication/lesSDRF/requirements.txt (line 2)) (0.1.2)\n",
- "Requirement already satisfied: tzdata in /home/compomics/miniconda3/envs/sdrf/lib/python3.9/site-packages (from pytz-deprecation-shim->tzlocal>=1.1->streamlit==1.19.0->-r /home/compomics/git/Publication/lesSDRF/requirements.txt (line 2)) (2023.3)\n",
+ "Collecting streamlit\n",
+ " Downloading streamlit-1.45.0-py3-none-any.whl.metadata (8.9 kB)\n",
+ "Collecting altair<6,>=4.0 (from streamlit)\n",
+ " Using cached altair-5.5.0-py3-none-any.whl.metadata (11 kB)\n",
+ "Collecting blinker<2,>=1.5.0 (from streamlit)\n",
+ " Using cached blinker-1.9.0-py3-none-any.whl.metadata (1.6 kB)\n",
+ "Collecting cachetools<6,>=4.0 (from streamlit)\n",
+ " Using cached cachetools-5.5.2-py3-none-any.whl.metadata (5.4 kB)\n",
+ "Collecting click<9,>=7.0 (from streamlit)\n",
+ " Using cached click-8.1.8-py3-none-any.whl.metadata (2.3 kB)\n",
+ "Collecting numpy<3,>=1.23 (from streamlit)\n",
+ " Downloading numpy-2.2.5-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (62 kB)\n",
+ "Requirement already satisfied: packaging<25,>=20 in /home/compomics/miniconda3/envs/lessdrf-desktop/lib/python3.11/site-packages (from streamlit) (24.2)\n",
+ "Collecting pandas<3,>=1.4.0 (from streamlit)\n",
+ " Using cached pandas-2.2.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (89 kB)\n",
+ "Collecting pillow<12,>=7.1.0 (from streamlit)\n",
+ " Using cached pillow-11.2.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (8.9 kB)\n",
+ "Collecting protobuf<7,>=3.20 (from streamlit)\n",
+ " Downloading protobuf-6.30.2-cp39-abi3-manylinux2014_x86_64.whl.metadata (593 bytes)\n",
+ "Collecting pyarrow>=7.0 (from streamlit)\n",
+ " Downloading pyarrow-20.0.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (3.3 kB)\n",
+ "Requirement already satisfied: requests<3,>=2.27 in /home/compomics/miniconda3/envs/lessdrf-desktop/lib/python3.11/site-packages (from streamlit) (2.32.3)\n",
+ "Collecting tenacity<10,>=8.1.0 (from streamlit)\n",
+ " Using cached tenacity-9.1.2-py3-none-any.whl.metadata (1.2 kB)\n",
+ "Collecting toml<2,>=0.10.1 (from streamlit)\n",
+ " Using cached toml-0.10.2-py2.py3-none-any.whl.metadata (7.1 kB)\n",
+ "Requirement already satisfied: typing-extensions<5,>=4.4.0 in /home/compomics/miniconda3/envs/lessdrf-desktop/lib/python3.11/site-packages (from streamlit) (4.13.2)\n",
+ "Collecting watchdog<7,>=2.1.5 (from streamlit)\n",
+ " Using cached watchdog-6.0.0-py3-none-manylinux2014_x86_64.whl.metadata (44 kB)\n",
+ "Collecting gitpython!=3.1.19,<4,>=3.0.7 (from streamlit)\n",
+ " Using cached GitPython-3.1.44-py3-none-any.whl.metadata (13 kB)\n",
+ "Collecting pydeck<1,>=0.8.0b4 (from streamlit)\n",
+ " Using cached pydeck-0.9.1-py2.py3-none-any.whl.metadata (4.1 kB)\n",
+ "Requirement already satisfied: tornado<7,>=6.0.3 in /home/compomics/miniconda3/envs/lessdrf-desktop/lib/python3.11/site-packages (from streamlit) (6.4.2)\n",
+ "Collecting jinja2 (from altair<6,>=4.0->streamlit)\n",
+ " Using cached jinja2-3.1.6-py3-none-any.whl.metadata (2.9 kB)\n",
+ "Collecting jsonschema>=3.0 (from altair<6,>=4.0->streamlit)\n",
+ " Using cached jsonschema-4.23.0-py3-none-any.whl.metadata (7.9 kB)\n",
+ "Collecting narwhals>=1.14.2 (from altair<6,>=4.0->streamlit)\n",
+ " Downloading narwhals-1.38.0-py3-none-any.whl.metadata (9.3 kB)\n",
+ "Collecting gitdb<5,>=4.0.1 (from gitpython!=3.1.19,<4,>=3.0.7->streamlit)\n",
+ " Using cached gitdb-4.0.12-py3-none-any.whl.metadata (1.2 kB)\n",
+ "Requirement already satisfied: python-dateutil>=2.8.2 in /home/compomics/miniconda3/envs/lessdrf-desktop/lib/python3.11/site-packages (from pandas<3,>=1.4.0->streamlit) (2.9.0.post0)\n",
+ "Collecting pytz>=2020.1 (from pandas<3,>=1.4.0->streamlit)\n",
+ " Using cached pytz-2025.2-py2.py3-none-any.whl.metadata (22 kB)\n",
+ "Collecting tzdata>=2022.7 (from pandas<3,>=1.4.0->streamlit)\n",
+ " Using cached tzdata-2025.2-py2.py3-none-any.whl.metadata (1.4 kB)\n",
+ "Requirement already satisfied: charset-normalizer<4,>=2 in /home/compomics/miniconda3/envs/lessdrf-desktop/lib/python3.11/site-packages (from requests<3,>=2.27->streamlit) (3.4.2)\n",
+ "Requirement already satisfied: idna<4,>=2.5 in /home/compomics/miniconda3/envs/lessdrf-desktop/lib/python3.11/site-packages (from requests<3,>=2.27->streamlit) (3.10)\n",
+ "Requirement already satisfied: urllib3<3,>=1.21.1 in /home/compomics/miniconda3/envs/lessdrf-desktop/lib/python3.11/site-packages (from requests<3,>=2.27->streamlit) (2.4.0)\n",
+ "Requirement already satisfied: certifi>=2017.4.17 in /home/compomics/miniconda3/envs/lessdrf-desktop/lib/python3.11/site-packages (from requests<3,>=2.27->streamlit) (2025.4.26)\n",
+ "Collecting smmap<6,>=3.0.1 (from gitdb<5,>=4.0.1->gitpython!=3.1.19,<4,>=3.0.7->streamlit)\n",
+ " Using cached smmap-5.0.2-py3-none-any.whl.metadata (4.3 kB)\n",
+ "Collecting MarkupSafe>=2.0 (from jinja2->altair<6,>=4.0->streamlit)\n",
+ " Using cached MarkupSafe-3.0.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (4.0 kB)\n",
+ "Collecting attrs>=22.2.0 (from jsonschema>=3.0->altair<6,>=4.0->streamlit)\n",
+ " Using cached attrs-25.3.0-py3-none-any.whl.metadata (10 kB)\n",
+ "Collecting jsonschema-specifications>=2023.03.6 (from jsonschema>=3.0->altair<6,>=4.0->streamlit)\n",
+ " Downloading jsonschema_specifications-2025.4.1-py3-none-any.whl.metadata (2.9 kB)\n",
+ "Collecting referencing>=0.28.4 (from jsonschema>=3.0->altair<6,>=4.0->streamlit)\n",
+ " Using cached referencing-0.36.2-py3-none-any.whl.metadata (2.8 kB)\n",
+ "Collecting rpds-py>=0.7.1 (from jsonschema>=3.0->altair<6,>=4.0->streamlit)\n",
+ " Using cached rpds_py-0.24.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (4.1 kB)\n",
+ "Requirement already satisfied: six>=1.5 in /home/compomics/miniconda3/envs/lessdrf-desktop/lib/python3.11/site-packages (from python-dateutil>=2.8.2->pandas<3,>=1.4.0->streamlit) (1.17.0)\n",
+ "Downloading streamlit-1.45.0-py3-none-any.whl (9.9 MB)\n",
+ "\u001b[2K \u001b[90mββββββββββββββββββββββββββββββββββββββββ\u001b[0m \u001b[32m9.9/9.9 MB\u001b[0m \u001b[31m26.6 MB/s\u001b[0m eta \u001b[36m0:00:00\u001b[0ma \u001b[36m0:00:01\u001b[0m\n",
+ "\u001b[?25hUsing cached altair-5.5.0-py3-none-any.whl (731 kB)\n",
+ "Using cached blinker-1.9.0-py3-none-any.whl (8.5 kB)\n",
+ "Using cached cachetools-5.5.2-py3-none-any.whl (10 kB)\n",
+ "Using cached click-8.1.8-py3-none-any.whl (98 kB)\n",
+ "Using cached GitPython-3.1.44-py3-none-any.whl (207 kB)\n",
+ "Downloading numpy-2.2.5-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (16.4 MB)\n",
+ "\u001b[2K \u001b[90mββββββββββββββββββββββββββββββββββββββββ\u001b[0m \u001b[32m16.4/16.4 MB\u001b[0m \u001b[31m79.4 MB/s\u001b[0m eta \u001b[36m0:00:00\u001b[0m:00:01\u001b[0m\n",
+ "\u001b[?25hUsing cached pandas-2.2.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (13.1 MB)\n",
+ "Using cached pillow-11.2.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (4.5 MB)\n",
+ "Downloading protobuf-6.30.2-cp39-abi3-manylinux2014_x86_64.whl (316 kB)\n",
+ "Downloading pyarrow-20.0.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (42.4 MB)\n",
+ "\u001b[2K \u001b[90mββββββββββββββββββββββββββββββββββββββββ\u001b[0m \u001b[32m42.4/42.4 MB\u001b[0m \u001b[31m10.6 MB/s\u001b[0m eta \u001b[36m0:00:00\u001b[0ma \u001b[36m0:00:01\u001b[0m\n",
+ "\u001b[?25hUsing cached pydeck-0.9.1-py2.py3-none-any.whl (6.9 MB)\n",
+ "Using cached tenacity-9.1.2-py3-none-any.whl (28 kB)\n",
+ "Using cached toml-0.10.2-py2.py3-none-any.whl (16 kB)\n",
+ "Using cached watchdog-6.0.0-py3-none-manylinux2014_x86_64.whl (79 kB)\n",
+ "Using cached gitdb-4.0.12-py3-none-any.whl (62 kB)\n",
+ "Using cached jinja2-3.1.6-py3-none-any.whl (134 kB)\n",
+ "Using cached jsonschema-4.23.0-py3-none-any.whl (88 kB)\n",
+ "Downloading narwhals-1.38.0-py3-none-any.whl (338 kB)\n",
+ "Using cached pytz-2025.2-py2.py3-none-any.whl (509 kB)\n",
+ "Using cached tzdata-2025.2-py2.py3-none-any.whl (347 kB)\n",
+ "Using cached attrs-25.3.0-py3-none-any.whl (63 kB)\n",
+ "Downloading jsonschema_specifications-2025.4.1-py3-none-any.whl (18 kB)\n",
+ "Using cached MarkupSafe-3.0.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (23 kB)\n",
+ "Using cached referencing-0.36.2-py3-none-any.whl (26 kB)\n",
+ "Using cached rpds_py-0.24.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (389 kB)\n",
+ "Using cached smmap-5.0.2-py3-none-any.whl (24 kB)\n",
+ "Installing collected packages: pytz, watchdog, tzdata, toml, tenacity, smmap, rpds-py, pyarrow, protobuf, pillow, numpy, narwhals, MarkupSafe, click, cachetools, blinker, attrs, referencing, pandas, jinja2, gitdb, pydeck, jsonschema-specifications, gitpython, jsonschema, altair, streamlit\n",
+ "Successfully installed MarkupSafe-3.0.2 altair-5.5.0 attrs-25.3.0 blinker-1.9.0 cachetools-5.5.2 click-8.1.8 gitdb-4.0.12 gitpython-3.1.44 jinja2-3.1.6 jsonschema-4.23.0 jsonschema-specifications-2025.4.1 narwhals-1.38.0 numpy-2.2.5 pandas-2.2.3 pillow-11.2.1 protobuf-6.30.2 pyarrow-20.0.0 pydeck-0.9.1 pytz-2025.2 referencing-0.36.2 rpds-py-0.24.0 smmap-5.0.2 streamlit-1.45.0 tenacity-9.1.2 toml-0.10.2 tzdata-2025.2 watchdog-6.0.0\n",
"Note: you may need to restart the kernel to use updated packages.\n"
]
}
],
"source": [
- "pip install -r /home/compomics/git/Publication/lesSDRF/requirements.txt"
+ "pip install streamlit"
]
},
{
"cell_type": "code",
- "execution_count": 4,
+ "execution_count": 22,
"metadata": {},
- "outputs": [],
+ "outputs": [
+ {
+ "name": "stdout",
+ "output_type": "stream",
+ "text": [
+ "\u001b[31mERROR: Could not find a version that satisfies the requirement st_aggrid (from versions: none)\u001b[0m\u001b[31m\n",
+ "\u001b[0m\u001b[31mERROR: No matching distribution found for st_aggrid\u001b[0m\u001b[31m\n",
+ "\u001b[0mNote: you may need to restart the kernel to use updated packages.\n"
+ ]
+ }
+ ],
+ "source": [
+ "pip install st_aggrid"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 23,
+ "metadata": {},
+ "outputs": [
+ {
+ "ename": "ModuleNotFoundError",
+ "evalue": "No module named 'st_aggrid'",
+ "output_type": "error",
+ "traceback": [
+ "\u001b[0;31m---------------------------------------------------------------------------\u001b[0m",
+ "\u001b[0;31mModuleNotFoundError\u001b[0m Traceback (most recent call last)",
+ "Cell \u001b[0;32mIn[23], line 6\u001b[0m\n\u001b[1;32m 4\u001b[0m \u001b[38;5;28;01mimport\u001b[39;00m\u001b[38;5;250m \u001b[39m\u001b[38;5;21;01mjson\u001b[39;00m\n\u001b[1;32m 5\u001b[0m \u001b[38;5;28;01mimport\u001b[39;00m\u001b[38;5;250m \u001b[39m\u001b[38;5;21;01mgzip\u001b[39;00m\n\u001b[0;32m----> 6\u001b[0m \u001b[38;5;28;01mfrom\u001b[39;00m\u001b[38;5;250m \u001b[39m\u001b[38;5;21;01mParsingModule\u001b[39;00m\u001b[38;5;250m \u001b[39m\u001b[38;5;28;01mimport\u001b[39;00m transform_nested_dict_to_tree, flatten\n",
+ "File \u001b[0;32m~/git/Publication/lesSDRF/ParsingModule.py:11\u001b[0m\n\u001b[1;32m 9\u001b[0m \u001b[38;5;28;01mimport\u001b[39;00m\u001b[38;5;250m \u001b[39m\u001b[38;5;21;01mpandas\u001b[39;00m\u001b[38;5;250m \u001b[39m\u001b[38;5;28;01mas\u001b[39;00m\u001b[38;5;250m \u001b[39m\u001b[38;5;21;01mpd\u001b[39;00m\n\u001b[1;32m 10\u001b[0m \u001b[38;5;28;01mimport\u001b[39;00m\u001b[38;5;250m \u001b[39m\u001b[38;5;21;01mre\u001b[39;00m\n\u001b[0;32m---> 11\u001b[0m \u001b[38;5;28;01mfrom\u001b[39;00m\u001b[38;5;250m \u001b[39m\u001b[38;5;21;01mst_aggrid\u001b[39;00m\u001b[38;5;250m \u001b[39m\u001b[38;5;28;01mimport\u001b[39;00m AgGrid, GridOptionsBuilder, GridUpdateMode, DataReturnMode\n\u001b[1;32m 12\u001b[0m \u001b[38;5;28;01mfrom\u001b[39;00m\u001b[38;5;250m \u001b[39m\u001b[38;5;21;01mstreamlit_tree_select\u001b[39;00m\u001b[38;5;250m \u001b[39m\u001b[38;5;28;01mimport\u001b[39;00m tree_select\n\u001b[1;32m 13\u001b[0m \u001b[38;5;28;01mimport\u001b[39;00m\u001b[38;5;250m \u001b[39m\u001b[38;5;21;01msubprocess\u001b[39;00m\n",
+ "\u001b[0;31mModuleNotFoundError\u001b[0m: No module named 'st_aggrid'"
+ ]
+ }
+ ],
"source": [
"import pronto\n",
"from pronto import Ontology\n",
@@ -88,7 +161,7 @@
},
{
"cell_type": "code",
- "execution_count": 8,
+ "execution_count": 24,
"metadata": {},
"outputs": [],
"source": [
@@ -151,7 +224,7 @@
},
{
"cell_type": "code",
- "execution_count": 9,
+ "execution_count": 25,
"metadata": {},
"outputs": [],
"source": [
@@ -165,7 +238,7 @@
},
{
"cell_type": "code",
- "execution_count": 10,
+ "execution_count": 26,
"metadata": {},
"outputs": [],
"source": [
@@ -13143,12 +13216,11297 @@
"store_as_gzipped_json(cleavage_list, 'cleavage_list')"
]
},
+ {
+ "cell_type": "markdown",
+ "metadata": {},
+ "source": [
+ "# MCO"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 12,
+ "metadata": {},
+ "outputs": [
+ {
+ "name": "stderr",
+ "output_type": "stream",
+ "text": [
+ "/tmp/ipykernel_2976/840689916.py:1: UnicodeWarning: unsound encoding, assuming utf-8 (88% confidence)\n",
+ " mco = Ontology(\"/home/compomics/git/Publication/lesSDRF/ontology/mco.obo\")\n"
+ ]
+ }
+ ],
+ "source": [
+ "mco = Ontology(\"/home/compomics/git/Publication/lesSDRF/ontology/mco.obo\")"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 27,
+ "metadata": {},
+ "outputs": [
+ {
+ "ename": "KeyError",
+ "evalue": "'medium'",
+ "output_type": "error",
+ "traceback": [
+ "\u001b[0;31m---------------------------------------------------------------------------\u001b[0m",
+ "\u001b[0;31mKeyError\u001b[0m Traceback (most recent call last)",
+ "Cell \u001b[0;32mIn[27], line 2\u001b[0m\n\u001b[1;32m 1\u001b[0m medium_dict \u001b[38;5;241m=\u001b[39m get_obo_subclasses(mco, \u001b[38;5;124m'\u001b[39m\u001b[38;5;124mMCO:0000343\u001b[39m\u001b[38;5;124m'\u001b[39m, \u001b[38;5;124m'\u001b[39m\u001b[38;5;124mmedium\u001b[39m\u001b[38;5;124m'\u001b[39m, distance\u001b[38;5;241m=\u001b[39m\u001b[38;5;241m1\u001b[39m)\n\u001b[0;32m----> 2\u001b[0m \u001b[43mmedium_dict\u001b[49m\u001b[38;5;241;43m.\u001b[39;49m\u001b[43mpop\u001b[49m\u001b[43m(\u001b[49m\u001b[38;5;124;43m'\u001b[39;49m\u001b[38;5;124;43mmedium\u001b[39;49m\u001b[38;5;124;43m'\u001b[39;49m\u001b[43m)\u001b[49m\n\u001b[1;32m 3\u001b[0m medium_dict\n",
+ "\u001b[0;31mKeyError\u001b[0m: 'medium'"
+ ]
+ }
+ ],
+ "source": [
+ "medium_dict = get_obo_subclasses(mco, 'MCO:0000343', 'medium', distance=1)\n",
+ "medium_dict.pop('medium')\n",
+ "medium_dict"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 14,
+ "metadata": {},
+ "outputs": [
+ {
+ "data": {
+ "text/plain": [
+ "3385"
+ ]
+ },
+ "execution_count": 14,
+ "metadata": {},
+ "output_type": "execute_result"
+ }
+ ],
+ "source": [
+ "mco_terms = []\n",
+ "for i in list(mco.terms()): #list of all terms\n",
+ " #isolate the name\n",
+ " name = i.name\n",
+ " #add to cell list\n",
+ " mco_terms.append(name) \n",
+ "mco_terms.append('not available')\n",
+ "mco_terms.append('not applicable') \n",
+ "len(mco_terms)"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 15,
+ "metadata": {},
+ "outputs": [],
+ "source": [
+ "#given an pronto obo ontology term, find all subclasses and return them in a nested dictionary format\n",
+ "def get_subclasses(term):\n",
+ " subclasses = {}\n",
+ " for s in term.subclasses(distance=1):\n",
+ " #don't go over the first s\n",
+ " if s.name == term.name:\n",
+ " continue\n",
+ " subclasses[s.name] = get_subclasses(s)\n",
+ " return subclasses"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {},
+ "source": [
+ "\n",
+ " characteristics[medium]: Medium the culture was grown in/on\n",
+ " characteristics[medium supplements]: Additional substances added to the medium, most often antibiotics (might be merged into characteristics[treatment]?)\n",
+ " characteristics[temperature]: Temperature in which the culture was grown in\n",
+ " characteristics[optical density]: Optical density (OD600) of the culture\n",
+ " characteristics[growth phase]: In which growth phase the culture was in at time of harvest\n",
+ " characteristics[mutant]: describes if/how the sample was genetically altered (plasmids, CRISPr)\n",
+ "\n",
+ "Optional ones:\n",
+ "\n",
+ " characteristics[aeration]: Describes if the culture was grown under aerobic/anaerobic conditions\n",
+ " characteristics[pressure]: Pressure in which the culture was grown in\n",
+ " characteristics[pH]: pH in which the culture was grown in\n",
+ " characteristics[growth rate phenotype]\n"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 20,
+ "metadata": {},
+ "outputs": [
+ {
+ "ename": "TypeError",
+ "evalue": "list indices must be integers or slices, not str",
+ "output_type": "error",
+ "traceback": [
+ "\u001b[0;31m---------------------------------------------------------------------------\u001b[0m",
+ "\u001b[0;31mTypeError\u001b[0m Traceback (most recent call last)",
+ "Cell \u001b[0;32mIn[20], line 1\u001b[0m\n\u001b[0;32m----> 1\u001b[0m \u001b[43mmco_terms\u001b[49m\u001b[43m[\u001b[49m\u001b[38;5;124;43m'\u001b[39;49m\u001b[38;5;124;43mmedium\u001b[39;49m\u001b[38;5;124;43m'\u001b[39;49m\u001b[43m]\u001b[49m\n",
+ "\u001b[0;31mTypeError\u001b[0m: list indices must be integers or slices, not str"
+ ]
+ }
+ ],
+ "source": [
+ "mco_terms['medium']"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 17,
+ "metadata": {},
+ "outputs": [
+ {
+ "ename": "TypeError",
+ "evalue": "list indices must be integers or slices, not str",
+ "output_type": "error",
+ "traceback": [
+ "\u001b[0;31m---------------------------------------------------------------------------\u001b[0m",
+ "\u001b[0;31mTypeError\u001b[0m Traceback (most recent call last)",
+ "Cell \u001b[0;32mIn[17], line 1\u001b[0m\n\u001b[0;32m----> 1\u001b[0m medium \u001b[38;5;241m=\u001b[39m get_subclasses(\u001b[43mmco_terms\u001b[49m\u001b[43m[\u001b[49m\u001b[38;5;124;43m'\u001b[39;49m\u001b[38;5;124;43mMCO:0000343\u001b[39;49m\u001b[38;5;124;43m'\u001b[39;49m\u001b[43m]\u001b[49m)\n\u001b[1;32m 2\u001b[0m medium\n",
+ "\u001b[0;31mTypeError\u001b[0m: list indices must be integers or slices, not str"
+ ]
+ }
+ ],
+ "source": [
+ "medium = get_subclasses(mco_terms['MCO:0000343'])\n",
+ "medium"
+ ]
+ },
{
"cell_type": "code",
"execution_count": null,
"metadata": {},
"outputs": [],
- "source": []
+ "source": [
+ "cell_dict = get_subclasses(cl['CL:0000000'])"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": null,
+ "metadata": {},
+ "outputs": [
+ {
+ "data": {
+ "text/plain": [
+ "{'native cell': {'germ line cell': {'germ line stem cell': {'male germ line stem cell': {},\n",
+ " 'female germ line stem cell': {}},\n",
+ " 'germ cell': {'male germ cell': {'male germ line stem cell': {},\n",
+ " 'spermatocyte': {'primary spermatocyte': {},\n",
+ " 'secondary spermatocyte': {}},\n",
+ " 'spermatid': {'early spermatid': {}, 'late spermatid': {}},\n",
+ " 'spermatogonium': {},\n",
+ " 'male gamete': {'sperm': {'Y chromosome-bearing sperm cell': {},\n",
+ " 'X chromosome-bearing sperm cell': {},\n",
+ " 'motile sperm cell': {'amoeboid sperm cell': {},\n",
+ " 'flagellated sperm cell': {}},\n",
+ " 'non-motile sperm cell': {}}}},\n",
+ " 'female germ cell': {'female germ line stem cell': {},\n",
+ " 'oocyte': {'primary oocyte': {}, 'secondary oocyte': {}},\n",
+ " 'oogonial cell': {},\n",
+ " 'female gamete': {'egg cell': {}},\n",
+ " 'polar body': {'primary polar body': {}, 'secondary polar body': {}}},\n",
+ " 'gamete': {'male gamete': {'sperm': {'Y chromosome-bearing sperm cell': {},\n",
+ " 'X chromosome-bearing sperm cell': {},\n",
+ " 'motile sperm cell': {'amoeboid sperm cell': {},\n",
+ " 'flagellated sperm cell': {}},\n",
+ " 'non-motile sperm cell': {}}},\n",
+ " 'female gamete': {'egg cell': {}}},\n",
+ " 'cystoblast': {}},\n",
+ " 'primordial germ cell': {'pole cell': {},\n",
+ " 'male gonocyte': {},\n",
+ " 'ooblast': {}},\n",
+ " 'germline-derived nurse cell': {'invertebrate nurse cell': {}}},\n",
+ " 'ciliated cell': {'ciliated epithelial cell': {'ependymal cell': {'choroid plexus epithelial cell': {}},\n",
+ " 'brush border epithelial cell': {'enterocyte': {'enterocyte of epithelium of large intestine': {'enterocyte of epithelium proper of large intestine': {},\n",
+ " 'enterocyte of colon': {}},\n",
+ " 'enterocyte of appendix': {},\n",
+ " 'enterocyte of anorectum': {},\n",
+ " 'vacuolated fetal-type enterocyte': {},\n",
+ " 'lysosome-rich enterocyte': {},\n",
+ " 'enterocyte of epithelium of small intestine': {'enterocyte of epithelium of intestinal villus': {},\n",
+ " 'enterocyte of epithelium of crypt of Lieberkuhn of small intestine': {},\n",
+ " 'enterocyte of epithelium proper of small intestine': {'enterocyte of epithelium proper of duodenum': {},\n",
+ " 'enterocyte of epithelium proper of jejunum': {},\n",
+ " 'enterocyte of epithelium proper of ileum': {}}},\n",
+ " 'enterocyte of epithelium of duodenal gland': {}},\n",
+ " 'epithelial cell of proximal tubule': {'brush border cell of the proximal tubule': {},\n",
+ " 'kidney proximal convoluted tubule epithelial cell': {},\n",
+ " 'kidney proximal straight tubule epithelial cell': {},\n",
+ " 'epithelial cell of proximal tubule segment 1': {},\n",
+ " 'epithelial cell of proximal tubule segment 2': {},\n",
+ " 'epithelial cell of proximal tubule segment 3': {},\n",
+ " 'CD24-positive, CD-133-positive, vimentin-positive proximal tubular cell': {}}},\n",
+ " 'multi-ciliated epithelial cell': {'ciliated columnar cell of tracheobronchial tree': {'ciliated cell of the bronchus': {}},\n",
+ " 'fallopian tube ciliated cell': {}},\n",
+ " 'single ciliated epithelial cell': {},\n",
+ " 'ciliated epithelial cell of esophagus': {},\n",
+ " 'endometrial ciliated epithelial cell': {'luminal endometrial ciliated epithelial cell': {},\n",
+ " 'glandular endometrial ciliated epithelial cell': {}}},\n",
+ " 'ciliated olfactory receptor neuron': {},\n",
+ " 'epidermal ciliary cell': {},\n",
+ " 'collar cell': {},\n",
+ " 'respiratory ciliated cell': {'ciliated columnar cell of tracheobronchial tree': {'ciliated cell of the bronchus': {}},\n",
+ " 'lung ciliated cell': {}}},\n",
+ " 'circulating cell': {'coelomocyte': {},\n",
+ " 'peripheral blood stem cell': {'cord blood hematopoietic stem cell': {}},\n",
+ " 'peripheral blood mononuclear cell': {'blood lymphocyte': {'peripheral blood lymphocyte': {}}}},\n",
+ " 'secretory cell': {'bone matrix secreting cell': {},\n",
+ " 'ameloblast': {},\n",
+ " 'cementoblast': {},\n",
+ " 'cholinergic neuron': {'somatomotor neuron': {'cranial somatomotor neuron': {},\n",
+ " 'lower motor neuron': {'spinal accessory motor neuron': {},\n",
+ " 'gamma motor neuron': {'dynamic gamma motor neuron': {},\n",
+ " 'static gamma motor neuron': {}},\n",
+ " 'alpha motor neuron': {},\n",
+ " 'anterior horn motor neuron': {},\n",
+ " 'beta motor neuron': {'static beta motor neuron': {},\n",
+ " 'dynamic beta motor neuron': {}}}},\n",
+ " 'sympathetic cholinergic neuron': {}},\n",
+ " 'glandular epithelial cell': {'goblet cell': {'respiratory goblet cell': {'nasal mucosa goblet cell': {},\n",
+ " 'tracheobronchial goblet cell': {'bronchial goblet cell': {'goblet cell of epithelium of lobar bronchus': {}},\n",
+ " 'tracheal goblet cell': {}},\n",
+ " 'lung goblet cell': {'goblet cell of epithelium of lobar bronchus': {}}},\n",
+ " 'intestine goblet cell': {'large intestine goblet cell': {'colon goblet cell': {},\n",
+ " 'anorectum goblet cell': {},\n",
+ " 'large intestine crypt goblet cell': {},\n",
+ " 'appendix goblet cell': {}},\n",
+ " 'small intestine goblet cell': {'intestinal villus goblet cell': {'duodenal goblet cell': {},\n",
+ " 'jejunal goblet cell': {},\n",
+ " 'ileal goblet cell': {}}}},\n",
+ " 'gastric goblet cell': {'gastric cardiac gland goblet cell': {},\n",
+ " 'principal gastric gland goblet cell': {},\n",
+ " 'pyloric gastric gland goblet cell': {}},\n",
+ " 'pancreatic goblet cell': {},\n",
+ " 'conjunctiva goblet cell': {}},\n",
+ " 'enteroendocrine cell': {'type D enteroendocrine cell': {'pancreatic D cell': {},\n",
+ " 'type D cell of colon': {},\n",
+ " 'type D cell of small intestine': {},\n",
+ " 'type D cell of stomach': {}},\n",
+ " 'enterochromaffin-like cell': {},\n",
+ " 'type G enteroendocrine cell': {},\n",
+ " 'type EC enteroendocrine cell': {'type EC2 enteroendocrine cell': {},\n",
+ " 'type EC1 enteroendocrine cell': {},\n",
+ " 'type ECL enteroendocrine cell': {}},\n",
+ " 'PP cell': {'pancreatic PP cell': {}, 'PP cell of intestine': {}},\n",
+ " 'type A enteroendocrine cell': {'pancreatic A cell': {},\n",
+ " 'type A cell of stomach': {}},\n",
+ " 'P/D1 enteroendocrine cell': {'P enteroendocrine cell': {},\n",
+ " 'type D1 enteroendocrine cell': {}},\n",
+ " 'type I enteroendocrine cell': {},\n",
+ " 'type L enteroendocrine cell': {},\n",
+ " 'type N enteroendocrine cell': {},\n",
+ " 'type S enteroendocrine cell': {},\n",
+ " 'type TG enteroendocrine cell': {},\n",
+ " 'type X enteroendocrine cell': {},\n",
+ " 'pancreatic endocrine cell': {'type B pancreatic cell': {},\n",
+ " 'pancreatic A cell': {},\n",
+ " 'pancreatic D cell': {},\n",
+ " 'pancreatic PP cell': {},\n",
+ " 'pancreatic epsilon cell': {}},\n",
+ " 'stomach neuroendocrine cell': {},\n",
+ " 'intestinal enteroendocrine cell': {'PP cell of intestine': {},\n",
+ " 'enteroendocrine cell of small intestine': {'type D cell of small intestine': {},\n",
+ " 'GIP cell': {},\n",
+ " 'type M enteroendocrine cell': {}},\n",
+ " 'enteroendocrine cell of appendix': {},\n",
+ " 'enteroendocrine cell of colon': {'type D cell of colon': {}},\n",
+ " 'enteroendocrine cell of anorectum': {},\n",
+ " 'neuroendocrine cell of epithelium of crypt of Lieberkuhn': {}},\n",
+ " 'stomach enteroendocrine cell': {}},\n",
+ " 'sweat secreting cell': {'dark cell of eccrine sweat gland': {},\n",
+ " 'clear cell of eccrine sweat gland': {}},\n",
+ " 'eccrine cell': {'dark cell of eccrine sweat gland': {},\n",
+ " 'clear cell of eccrine sweat gland': {}},\n",
+ " 'paneth cell': {'paneth cell of the appendix': {},\n",
+ " 'paneth cell of colon': {},\n",
+ " 'paneth cell of anorectum': {},\n",
+ " 'paneth cell of epithelium of small intestine': {'paneth cell of epithelium proper of small intestine': {},\n",
+ " 'paneth cell of epithelium of crypt of Lieberkuhn of small intestine': {}}},\n",
+ " 'acinar cell': {'pancreatic acinar cell': {},\n",
+ " 'acinar cell of sebaceous gland': {},\n",
+ " 'acinar cell of salivary gland': {}},\n",
+ " 'chromophil cell of anterior pituitary gland': {'acidophil cell of pars distalis of adenohypophysis': {'mammosomatotroph': {},\n",
+ " 'mammotroph': {},\n",
+ " 'somatotroph': {}},\n",
+ " 'basophil cell of pars distalis of adenohypophysis': {'gonadtroph': {},\n",
+ " 'thyrotroph': {},\n",
+ " 'corticotroph': {}}},\n",
+ " 'mucous neck cell': {'mucous neck cell of gastric gland': {}},\n",
+ " 'epithelial cell of thyroid gland': {'oxyphil cell of thyroid': {},\n",
+ " 'thyroid follicular cell': {}},\n",
+ " 'endocrine-paracrine cell of prostate gland': {},\n",
+ " 'glandular cell of esophagus': {'epithelial cell of esophageal gland proper': {},\n",
+ " 'epithelial cell of esophageal cardiac gland': {}},\n",
+ " 'glandular cell of the large intestine': {'paneth cell of anorectum': {},\n",
+ " 'enteroendocrine cell of anorectum': {},\n",
+ " 'large intestine goblet cell': {'colon goblet cell': {},\n",
+ " 'anorectum goblet cell': {},\n",
+ " 'large intestine crypt goblet cell': {},\n",
+ " 'appendix goblet cell': {}},\n",
+ " 'appendix glandular cell': {'paneth cell of the appendix': {},\n",
+ " 'enteroendocrine cell of appendix': {},\n",
+ " 'appendix goblet cell': {}},\n",
+ " 'colon glandular cell': {'paneth cell of colon': {},\n",
+ " 'colon goblet cell': {},\n",
+ " 'enteroendocrine cell of colon': {'type D cell of colon': {}}},\n",
+ " 'rectum glandular cell': {}},\n",
+ " 'glandular cell of stomach': {'peptic cell': {},\n",
+ " 'parietal cell': {},\n",
+ " 'mucous cell of stomach': {'type G enteroendocrine cell': {},\n",
+ " 'mucous neck cell of gastric gland': {},\n",
+ " 'surface mucosal cell of stomach': {},\n",
+ " 'stem cell of gastric gland': {},\n",
+ " 'gastric goblet cell': {'gastric cardiac gland goblet cell': {},\n",
+ " 'principal gastric gland goblet cell': {},\n",
+ " 'pyloric gastric gland goblet cell': {}}},\n",
+ " 'type A cell of stomach': {},\n",
+ " 'type D cell of stomach': {},\n",
+ " 'stomach neuroendocrine cell': {},\n",
+ " 'stomach enteroendocrine cell': {}},\n",
+ " 'chromaffin cell of adrenal gland': {'adrenal medulla chromaffin cell': {'type II cell of adrenal medulla': {},\n",
+ " 'type I cell of adrenal medulla': {}},\n",
+ " 'adrenal cortex chromaffin cell': {}},\n",
+ " 'mammary gland glandular cell': {'mammary alveolar cell': {}},\n",
+ " 'epididymis glandular cell': {},\n",
+ " 'oviduct glandular cell': {'glandular cell of endometrium': {},\n",
+ " 'uterine cervix glandular cell': {},\n",
+ " 'fallopian tube secretory epithelial cell': {}},\n",
+ " 'gallbladder glandular cell': {},\n",
+ " 'parathyroid glandular cell': {'epithelial cell of parathyroid gland': {'chief cell of parathyroid gland': {'active chief cell of parathyroid gland': {},\n",
+ " 'dark chief cell of parathyroid gland': {},\n",
+ " 'clear chief cell of parathyroid gland': {},\n",
+ " 'inactive chief cell of parathyoid gland': {},\n",
+ " 'light chief cell of parathyroid gland': {}},\n",
+ " 'oxyphil cell of parathyroid gland': {},\n",
+ " 'transitional cell of parathyroid gland': {}}},\n",
+ " 'salivary gland glandular cell': {'acinar cell of salivary gland': {}},\n",
+ " 'seminal vesicle glandular cell': {},\n",
+ " 'small intestine glandular cell': {'enteroendocrine cell of small intestine': {'type D cell of small intestine': {},\n",
+ " 'GIP cell': {},\n",
+ " 'type M enteroendocrine cell': {}},\n",
+ " 'paneth cell of epithelium of small intestine': {'paneth cell of epithelium proper of small intestine': {},\n",
+ " 'paneth cell of epithelium of crypt of Lieberkuhn of small intestine': {}},\n",
+ " 'small intestine goblet cell': {'intestinal villus goblet cell': {'duodenal goblet cell': {},\n",
+ " 'jejunal goblet cell': {},\n",
+ " 'ileal goblet cell': {}}},\n",
+ " 'duodenum glandular cell': {'duodenal goblet cell': {}}},\n",
+ " 'pancreas exocrine glandular cell': {'pancreatic acinar cell': {},\n",
+ " 'pancreatic goblet cell': {}},\n",
+ " 'adrenal gland glandular cell': {'cortical cell of adrenal gland': {'type I cell of adrenal cortex': {},\n",
+ " 'type II cell of adrenal cortex': {},\n",
+ " 'type III cell of adrenal cortex': {}},\n",
+ " 'adrenal cortex chromaffin cell': {}}},\n",
+ " 'exocrine cell': {'apocrine cell': {},\n",
+ " 'tear secreting cell': {},\n",
+ " 'sebum secreting cell': {'acinar cell of sebaceous gland': {}},\n",
+ " 'dark cell of eccrine sweat gland': {},\n",
+ " 'clear cell of eccrine sweat gland': {},\n",
+ " 'mucous neck cell of gastric gland': {},\n",
+ " 'stem cell of gastric gland': {},\n",
+ " 'gastric cardiac gland goblet cell': {},\n",
+ " 'principal gastric gland goblet cell': {},\n",
+ " 'pyloric gastric gland goblet cell': {},\n",
+ " 'mammary gland glandular cell': {'mammary alveolar cell': {}},\n",
+ " 'salivary gland glandular cell': {'acinar cell of salivary gland': {}},\n",
+ " 'pancreas exocrine glandular cell': {'pancreatic acinar cell': {},\n",
+ " 'pancreatic goblet cell': {}},\n",
+ " 'serous secreting cell of bronchus submucosal gland': {},\n",
+ " 'mucus secreting cell of tracheobronchial tree submucosal gland': {'mucus secreting cell of trachea gland': {},\n",
+ " 'mucus secreting cell of bronchus submucosal gland': {}}},\n",
+ " 'protein secreting cell': {'peptic cell': {},\n",
+ " 'insulin secreting cell': {'type B pancreatic cell': {}},\n",
+ " 'lysozyme secreting cell': {'paneth cell': {'paneth cell of the appendix': {},\n",
+ " 'paneth cell of colon': {},\n",
+ " 'paneth cell of anorectum': {},\n",
+ " 'paneth cell of epithelium of small intestine': {'paneth cell of epithelium proper of small intestine': {},\n",
+ " 'paneth cell of epithelium of crypt of Lieberkuhn of small intestine': {}}}},\n",
+ " 'prolactin secreting cell': {'mammosomatotroph': {}, 'mammotroph': {}},\n",
+ " 'digestive enzyme secreting cell': {},\n",
+ " 'androgen binding protein secreting cell': {'Sertoli cell': {}},\n",
+ " 'acinar cell': {'pancreatic acinar cell': {},\n",
+ " 'acinar cell of sebaceous gland': {},\n",
+ " 'acinar cell of salivary gland': {}},\n",
+ " 'kidney granular cell': {},\n",
+ " 'cumulus cell': {'corona radiata cell': {}}},\n",
+ " 'surfactant secreting cell': {'club cell': {}, 'type II pneumocyte': {}},\n",
+ " 'seromucus secreting cell': {'serous secreting cell': {'tracheobronchial serous cell': {'serous cell of epithelium of trachea': {},\n",
+ " 'serous cell of epithelium of bronchus': {},\n",
+ " 'serous cell of epithelium of terminal bronchiole': {},\n",
+ " 'serous cell of epithelium of lobular bronchiole': {},\n",
+ " 'serous secreting cell of bronchus submucosal gland': {}}},\n",
+ " 'mucus secreting cell': {'goblet cell': {'respiratory goblet cell': {'nasal mucosa goblet cell': {},\n",
+ " 'tracheobronchial goblet cell': {'bronchial goblet cell': {'goblet cell of epithelium of lobar bronchus': {}},\n",
+ " 'tracheal goblet cell': {}},\n",
+ " 'lung goblet cell': {'goblet cell of epithelium of lobar bronchus': {}}},\n",
+ " 'intestine goblet cell': {'large intestine goblet cell': {'colon goblet cell': {},\n",
+ " 'anorectum goblet cell': {},\n",
+ " 'large intestine crypt goblet cell': {},\n",
+ " 'appendix goblet cell': {}},\n",
+ " 'small intestine goblet cell': {'intestinal villus goblet cell': {'duodenal goblet cell': {},\n",
+ " 'jejunal goblet cell': {},\n",
+ " 'ileal goblet cell': {}}}},\n",
+ " 'gastric goblet cell': {'gastric cardiac gland goblet cell': {},\n",
+ " 'principal gastric gland goblet cell': {},\n",
+ " 'pyloric gastric gland goblet cell': {}},\n",
+ " 'pancreatic goblet cell': {},\n",
+ " 'conjunctiva goblet cell': {}},\n",
+ " 'mucous neck cell': {'mucous neck cell of gastric gland': {}},\n",
+ " 'surface mucosal cell of stomach': {},\n",
+ " 'epidermal mucus secreting cell': {},\n",
+ " 'mucus secreting cell of tracheobronchial tree submucosal gland': {'mucus secreting cell of trachea gland': {},\n",
+ " 'mucus secreting cell of bronchus submucosal gland': {}}}},\n",
+ " 'endocrine cell': {'enteroendocrine cell': {'type D enteroendocrine cell': {'pancreatic D cell': {},\n",
+ " 'type D cell of colon': {},\n",
+ " 'type D cell of small intestine': {},\n",
+ " 'type D cell of stomach': {}},\n",
+ " 'enterochromaffin-like cell': {},\n",
+ " 'type G enteroendocrine cell': {},\n",
+ " 'type EC enteroendocrine cell': {'type EC2 enteroendocrine cell': {},\n",
+ " 'type EC1 enteroendocrine cell': {},\n",
+ " 'type ECL enteroendocrine cell': {}},\n",
+ " 'PP cell': {'pancreatic PP cell': {}, 'PP cell of intestine': {}},\n",
+ " 'type A enteroendocrine cell': {'pancreatic A cell': {},\n",
+ " 'type A cell of stomach': {}},\n",
+ " 'P/D1 enteroendocrine cell': {'P enteroendocrine cell': {},\n",
+ " 'type D1 enteroendocrine cell': {}},\n",
+ " 'type I enteroendocrine cell': {},\n",
+ " 'type L enteroendocrine cell': {},\n",
+ " 'type N enteroendocrine cell': {},\n",
+ " 'type S enteroendocrine cell': {},\n",
+ " 'type TG enteroendocrine cell': {},\n",
+ " 'type X enteroendocrine cell': {},\n",
+ " 'pancreatic endocrine cell': {'type B pancreatic cell': {},\n",
+ " 'pancreatic A cell': {},\n",
+ " 'pancreatic D cell': {},\n",
+ " 'pancreatic PP cell': {},\n",
+ " 'pancreatic epsilon cell': {}},\n",
+ " 'stomach neuroendocrine cell': {},\n",
+ " 'intestinal enteroendocrine cell': {'PP cell of intestine': {},\n",
+ " 'enteroendocrine cell of small intestine': {'type D cell of small intestine': {},\n",
+ " 'GIP cell': {},\n",
+ " 'type M enteroendocrine cell': {}},\n",
+ " 'enteroendocrine cell of appendix': {},\n",
+ " 'enteroendocrine cell of colon': {'type D cell of colon': {}},\n",
+ " 'enteroendocrine cell of anorectum': {},\n",
+ " 'neuroendocrine cell of epithelium of crypt of Lieberkuhn': {}},\n",
+ " 'stomach enteroendocrine cell': {}},\n",
+ " 'neuroendocrine cell': {'amine precursor uptake and decarboxylation cell': {'chromaffin cell': {'type EC enteroendocrine cell': {'type EC2 enteroendocrine cell': {},\n",
+ " 'type EC1 enteroendocrine cell': {},\n",
+ " 'type ECL enteroendocrine cell': {}},\n",
+ " 'chromophil cell of anterior pituitary gland': {'acidophil cell of pars distalis of adenohypophysis': {'mammosomatotroph': {},\n",
+ " 'mammotroph': {},\n",
+ " 'somatotroph': {}},\n",
+ " 'basophil cell of pars distalis of adenohypophysis': {'gonadtroph': {},\n",
+ " 'thyrotroph': {},\n",
+ " 'corticotroph': {}}},\n",
+ " 'interrenal chromaffin cell': {'interrenal norepinephrine type cell': {},\n",
+ " 'interrenal epinephrin secreting cell': {}},\n",
+ " 'chromaffin cell of paraganglion': {'chromaffin cell of paraaortic body': {}},\n",
+ " 'chromaffin cell of adrenal gland': {'adrenal medulla chromaffin cell': {'type II cell of adrenal medulla': {},\n",
+ " 'type I cell of adrenal medulla': {}},\n",
+ " 'adrenal cortex chromaffin cell': {}},\n",
+ " 'chromaffin cell of ovary': {'chromaffin cell of right ovary': {},\n",
+ " 'chromaffin cell of left ovary': {}}}},\n",
+ " 'paraganglial type 1 cell': {},\n",
+ " 'Feyrter cell': {'dense-core granulated cell of epithelium of trachea': {}},\n",
+ " 'magnocellular neurosecretory cell': {'oxytocin-secreting magnocellular cell': {},\n",
+ " 'vasopressin-secreting magnocellular cell': {}},\n",
+ " 'gonadotropin-releasing hormone neuron': {},\n",
+ " 'prostate neuroendocrine cell': {},\n",
+ " 'stomach neuroendocrine cell': {},\n",
+ " 'lung neuroendocrine cell': {'neuroendocrine cell of epithelium of lobar bronchus': {}},\n",
+ " 'parvocellular neurosecretory cell': {},\n",
+ " 'neuroendocrine cell of epithelium of crypt of Lieberkuhn': {}},\n",
+ " 'thyroid hormone secreting cell': {},\n",
+ " 'chromophobe cell': {},\n",
+ " 'pinealocyte': {'type I pinealocyte': {}, 'type II pinealocyte': {}},\n",
+ " 'myoendocrine cell': {},\n",
+ " 'myocardial endocrine cell': {'myocardial endocrine cell of atrium': {},\n",
+ " 'myocardial endocrine cell of septal division of left branch of atrioventricular bundle': {},\n",
+ " 'myocardial endocrine cell of interventricular septum': {}}},\n",
+ " 'peptide hormone secreting cell': {'insulin secreting cell': {'type B pancreatic cell': {}},\n",
+ " 'glucagon secreting cell': {'type A enteroendocrine cell': {'pancreatic A cell': {},\n",
+ " 'type A cell of stomach': {}}},\n",
+ " 'somatostatin secreting cell': {'type D enteroendocrine cell': {'pancreatic D cell': {},\n",
+ " 'type D cell of colon': {},\n",
+ " 'type D cell of small intestine': {},\n",
+ " 'type D cell of stomach': {}}},\n",
+ " 'somatotropin secreting cell': {'mammosomatotroph': {}, 'somatotroph': {}},\n",
+ " 'prolactin secreting cell': {'mammosomatotroph': {}, 'mammotroph': {}},\n",
+ " 'melanocyte stimulating hormone secreting cell': {},\n",
+ " 'calcitonin secreting cell': {'parafollicular cell': {}},\n",
+ " 'chief cell of parathyroid gland': {'active chief cell of parathyroid gland': {},\n",
+ " 'dark chief cell of parathyroid gland': {},\n",
+ " 'clear chief cell of parathyroid gland': {},\n",
+ " 'inactive chief cell of parathyoid gland': {},\n",
+ " 'light chief cell of parathyroid gland': {}},\n",
+ " 'adrenocorticotropic hormone secreting cell': {'corticotroph': {}},\n",
+ " 'oxytocin stimulating hormone secreting cell': {},\n",
+ " 'vasopressin stimulating hormone secreting cell': {},\n",
+ " 'secretin stimulating hormone secreting cell': {},\n",
+ " 'cholecystokin stimulating hormone secreting cell': {},\n",
+ " 'bombesin stimulating hormone secreting cell': {},\n",
+ " 'substance P secreting cell': {'type EC1 enteroendocrine cell': {}},\n",
+ " 'endorphin secreting cell': {'enkephalin secreting cell': {'type G enteroendocrine cell': {},\n",
+ " 'type EC enteroendocrine cell': {'type EC2 enteroendocrine cell': {},\n",
+ " 'type EC1 enteroendocrine cell': {},\n",
+ " 'type ECL enteroendocrine cell': {}}}},\n",
+ " 'gastrin secreting cell': {'type G enteroendocrine cell': {},\n",
+ " 'type TG enteroendocrine cell': {}},\n",
+ " 'gastrin stimulating hormone secreting cell': {},\n",
+ " 'chromophil cell of anterior pituitary gland': {'acidophil cell of pars distalis of adenohypophysis': {'mammosomatotroph': {},\n",
+ " 'mammotroph': {},\n",
+ " 'somatotroph': {}},\n",
+ " 'basophil cell of pars distalis of adenohypophysis': {'gonadtroph': {},\n",
+ " 'thyrotroph': {},\n",
+ " 'corticotroph': {}}},\n",
+ " 'PP cell': {'pancreatic PP cell': {}, 'PP cell of intestine': {}},\n",
+ " 'vasoactive intestinal peptide secreting cell': {'P/D1 enteroendocrine cell': {'P enteroendocrine cell': {},\n",
+ " 'type D1 enteroendocrine cell': {}}},\n",
+ " 'motilin secreting cell': {'type EC2 enteroendocrine cell': {},\n",
+ " 'type M enteroendocrine cell': {}},\n",
+ " 'type I enteroendocrine cell': {},\n",
+ " 'GIP cell': {},\n",
+ " 'type L enteroendocrine cell': {},\n",
+ " 'type N enteroendocrine cell': {},\n",
+ " 'type S enteroendocrine cell': {},\n",
+ " 'growth hormone releasing hormone secreting cell': {},\n",
+ " 'ghrelin secreting cell': {'type X enteroendocrine cell': {},\n",
+ " 'pancreatic epsilon cell': {}},\n",
+ " 'parvocellular neurosecretory cell': {},\n",
+ " 'vasopressin-secreting magnocellular cell': {}},\n",
+ " 'steroid hormone secreting cell': {'ecdysteroid secreting cell': {},\n",
+ " 'progesterone secreting cell': {'luteal cell': {'small luteal cell': {},\n",
+ " 'large luteal cell': {}}},\n",
+ " 'estradiol secreting cell': {},\n",
+ " 'mineralocorticoid secreting cell': {'type I cell of adrenal cortex': {}},\n",
+ " 'glucocorticoid secreting cell': {'type II cell of adrenal cortex': {}},\n",
+ " 'granulosa cell': {},\n",
+ " 'androgen secreting cell': {'theca cell': {},\n",
+ " 'hilus cell of ovary': {},\n",
+ " 'type III cell of adrenal cortex': {}},\n",
+ " 'cortical cell of adrenal gland': {'type I cell of adrenal cortex': {},\n",
+ " 'type II cell of adrenal cortex': {},\n",
+ " 'type III cell of adrenal cortex': {}}},\n",
+ " 'testosterone secreting cell': {'Leydig cell': {}, 'large luteal cell': {}},\n",
+ " 'hatching gland cell': {},\n",
+ " 'milk secreting cell': {'mammary alveolar cell': {}},\n",
+ " 'seminal fluid secreting cell': {},\n",
+ " 'excretory cell': {'renal filtration cell': {'podocyte': {'mesonephric podocyte': {},\n",
+ " 'metanephric podocyte': {},\n",
+ " 'pronephric podocyte': {}},\n",
+ " 'nephrocyte': {'pericardial nephrocyte': {},\n",
+ " 'garland cell': {},\n",
+ " 'disseminated nephrocyte': {}}}},\n",
+ " 'alkali secreting cell': {},\n",
+ " 'vaginal lubricant secreting cell': {},\n",
+ " 'luteinizing hormone secreting cell': {'gonadtroph': {}},\n",
+ " 'carbohydrate secreting cell': {'glycosaminoglycan secreting cell': {'chondrocyte': {'hypertrophic chondrocyte': {},\n",
+ " 'columnar chondrocyte': {},\n",
+ " 'tracheobronchial chondrocyte': {},\n",
+ " 'growth plate cartilage chondrocyte': {},\n",
+ " 'articular chondrocyte': {'periarticular chondrocyte': {},\n",
+ " 'articular chondrocyte of knee joint': {}}}}},\n",
+ " 'biogenic amine secreting cell': {'adrenal medulla chromaffin cell': {'type II cell of adrenal medulla': {},\n",
+ " 'type I cell of adrenal medulla': {}},\n",
+ " 'epinephrine secreting cell': {'type II cell of adrenal medulla': {},\n",
+ " 'interrenal epinephrin secreting cell': {}},\n",
+ " 'serotonin secreting cell': {'platelet': {},\n",
+ " 'parafollicular cell': {},\n",
+ " 'type EC enteroendocrine cell': {'type EC2 enteroendocrine cell': {},\n",
+ " 'type EC1 enteroendocrine cell': {},\n",
+ " 'type ECL enteroendocrine cell': {}},\n",
+ " 'serotonergic neuron': {},\n",
+ " 'type S enteroendocrine cell': {},\n",
+ " 'lung neuroendocrine cell': {'neuroendocrine cell of epithelium of lobar bronchus': {}}},\n",
+ " 'noradrenergic cell': {'type I cell of adrenal medulla': {},\n",
+ " 'interrenal norepinephrine type cell': {},\n",
+ " 'noradrenergic neuron': {'sympathetic noradrenergic neuron': {}}},\n",
+ " 'histamine secreting cell': {'mature basophil': {},\n",
+ " 'mast cell': {'connective tissue type mast cell': {},\n",
+ " 'mucosal type mast cell': {}},\n",
+ " 'enterochromaffin-like cell': {},\n",
+ " 'type ECL enteroendocrine cell': {},\n",
+ " 'histaminergic neuron': {}}},\n",
+ " 'juvenile hormone secreting cell': {},\n",
+ " 'oenocyte': {},\n",
+ " 'paracrine cell': {'folliculostellate cell': {'folliculostellate cell of pars distalis of adenohypophysis': {}}},\n",
+ " 'GABAergic neuron': {'GABAergic interneuron': {'basket cell': {'cerebellum basket cell': {},\n",
+ " 'neocortex basket cell': {'large basket cell': {},\n",
+ " 'nest basket cell': {},\n",
+ " 'small basket cell': {}},\n",
+ " 'dentate gyrus of hippocampal formation basket cell': {},\n",
+ " \"Ammon's horn basket cell\": {}},\n",
+ " 'Kolmer-Agduhr neuron': {},\n",
+ " 'cerebral cortex GABAergic interneuron': {'rosehip neuron': {},\n",
+ " 'neocortex basket cell': {'large basket cell': {},\n",
+ " 'nest basket cell': {},\n",
+ " 'small basket cell': {}},\n",
+ " 'dentate gyrus of hippocampal formation basket cell': {},\n",
+ " \"Ammon's horn basket cell\": {},\n",
+ " 'alpha7 GABAergic cortical interneuron (Mmus)': {},\n",
+ " 'lamp5 GABAergic cortical interneuron': {'canopy lamp5 GABAergic cortical interneuron (Mmus)': {},\n",
+ " 'L5,6 neurogliaform lamp5 GABAergic cortical interneuron (Mmus)': {},\n",
+ " 'neurogliaform lamp5 GABAergic cortical interneuron (Mmus)': {}},\n",
+ " 'sncg GABAergic cortical interneuron': {},\n",
+ " 'vip GABAergic cortical interneuron': {'L2/3 bipolar vip GABAergic cortical interneuron (Mmus)': {},\n",
+ " 'L5 vip cortical GABAergic interneuron (Mmus)': {},\n",
+ " 'L5/6 cck, vip cortical GABAergic interneuron (Mmus)': {}},\n",
+ " 'sst GABAergic cortical interneuron': {'L5 T-Martinotti sst GABAergic cortical interneuron (Mmus)': {},\n",
+ " 'L5 non-Martinotti sst GABAergic cortical interneuron (Mmus)': {},\n",
+ " 'L2/3/5 fan Martinotti sst GABAergic cortical interneuron (Mmus)': {},\n",
+ " 'L4 sst GABAergic cortical interneuron (Mmus)': {},\n",
+ " 'L6 tyrosine hydroxylase sst GABAergic cortical interneuron (Mmus)': {},\n",
+ " 'L5/6 non-Martinotti sst GABAergic cortical interneuron (Mmus)': {},\n",
+ " 'sst chodl GABAergic cortical interneuron': {'long-range projecting sst GABAergic cortical interneuron (Mmus)': {}},\n",
+ " 'oxytocin receptor sst GABAergic cortical interneuron': {}},\n",
+ " 'pvalb GABAergic cortical interneuron': {'chandelier pvalb GABAergic cortical interneuron': {}},\n",
+ " 'medial ganglionic eminence derived GABAergic cortical interneuron': {},\n",
+ " 'caudal ganglionic eminence derived GABAergic cortical interneuron': {},\n",
+ " 'L5/6 cck cortical GABAergic interneuron (Mmus)': {'L5/6 cck, vip cortical GABAergic interneuron (Mmus)': {}},\n",
+ " 'reelin GABAergic cortical interneuron': {}},\n",
+ " 'GABAnergic interplexiform cell': {},\n",
+ " 'cerebellar inhibitory GABAergic interneuron': {'cerebellar Golgi cell': {},\n",
+ " 'Lugaro cell': {}},\n",
+ " 'Martinotti neuron': {'L4 sst GABAergic cortical interneuron (Mmus)': {},\n",
+ " 'T Martinotti neuron': {'L5 T-Martinotti sst GABAergic cortical interneuron (Mmus)': {}},\n",
+ " 'fan Martinotti neuron': {'L2/3/5 fan Martinotti sst GABAergic cortical interneuron (Mmus)': {}}},\n",
+ " 'GABAergic amacrine cell': {}},\n",
+ " 'medium spiny neuron': {'direct pathway medium spiny neuron': {'matrix D1 medium spiny neuron': {},\n",
+ " 'striosomal D1 medium spiny neuron': {}},\n",
+ " 'indirect pathway medium spiny neuron': {'matrix D2 medium spiny neuron': {},\n",
+ " 'striosomal D2 medium spiny neuron': {}},\n",
+ " 'D1/D2-hybrid medium spiny neuron': {},\n",
+ " 'nucleus accumbens shell and olfactory tubercle D1 medium spiny neuron': {},\n",
+ " 'nucleus accumbens shell and olfactory tubercle D2 medium spiny neuron': {},\n",
+ " 'RXFP1-positive interface island D1-medium spiny neuron': {},\n",
+ " 'eccentric medium spiny neuron': {}},\n",
+ " 'meis2 expressing cortical GABAergic cell': {},\n",
+ " 'cartwheel cell': {}},\n",
+ " 'glutamatergic neuron': {'retinal bipolar neuron': {'ON-bipolar cell': {'rod bipolar cell': {'rod bipolar cell (sensu Mus)': {}},\n",
+ " 'ON-blue cone bipolar cell': {},\n",
+ " 'diffuse bipolar 4 cell': {},\n",
+ " 'diffuse bipolar 6 cell': {},\n",
+ " 'invaginating midget bipolar cell': {},\n",
+ " 'giant bipolar cell': {}},\n",
+ " 'OFF-bipolar cell': {'diffuse bipolar 1 cell': {},\n",
+ " 'diffuse bipolar 2 cell': {},\n",
+ " 'diffuse bipolar 3a cell': {},\n",
+ " 'diffuse bipolar 3b cell': {},\n",
+ " 'flat midget bipolar cell': {},\n",
+ " 'OFFx cell': {}},\n",
+ " 'cone retinal bipolar cell': {'type 1 cone bipolar cell (sensu Mus)': {},\n",
+ " 'type 2 cone bipolar cell (sensu Mus)': {},\n",
+ " 'type 3 cone bipolar cell (sensu Mus)': {'type 3a cone bipolar cell': {},\n",
+ " 'type 3b cone bipolar cell': {}},\n",
+ " 'type 4 cone bipolar cell (sensu Mus)': {},\n",
+ " 'type 5 cone bipolar cell (sensu Mus)': {'type 5a cone bipolar cell': {},\n",
+ " 'type 5b cone bipolar cell': {}},\n",
+ " 'type 6 cone bipolar cell (sensu Mus)': {},\n",
+ " 'type 7 cone bipolar cell (sensu Mus)': {},\n",
+ " 'type 8 cone bipolar cell (sensu Mus)': {},\n",
+ " 'type 9 cone bipolar cell (sensu Mus)': {}}},\n",
+ " 'upper motor neuron': {},\n",
+ " 'cerebellum glutamatergic neuron': {'cerebellar granule cell': {}},\n",
+ " 'intratelencephalic-projecting glutamatergic cortical neuron': {'L2/3-6 intratelencephalic projecting glutamatergic cortical neuron': {'L2/3 intratelencephalic projecting glutamatergic neuron of the primary motor cortex': {},\n",
+ " 'L4/5 intratelencephalic projecting glutamatergic neuron of the primary motor cortex': {},\n",
+ " 'L5 intratelencephalic projecting glutamatergic neuron of the primary motor cortex': {},\n",
+ " 'L6 intratelencephalic projecting glutamatergic neuron of the primary motor cortex': {'stellate L6 intratelencephalic projecting glutamatergic neuron of the primary motor cortex (Mmus)': {},\n",
+ " 'inverted L6 intratelencephalic projecting glutamatergic neuron of the primary motor cortex (Mmus)': {}}}},\n",
+ " 'extratelencephalic-projecting glutamatergic cortical neuron': {'L5 extratelencephalic projecting glutamatergic cortical neuron': {'Betz cell': {'Betz upper motor neuron': {},\n",
+ " 'spinal interneuron synapsing Betz cell': {}},\n",
+ " 'non-medulla, extratelencephalic-projecting glutamatergic neuron of the primary motor cortex': {},\n",
+ " 'medulla-projecting glutamatergic neuron of the primary motor cortex': {}},\n",
+ " 'von Economo neuron': {}},\n",
+ " 'near-projecting glutamatergic cortical neuron': {'L5/6 near-projecting glutamatergic neuron of the primary motor cortex': {}},\n",
+ " 'corticothalamic-projecting glutamatergic cortical neuron': {'L6 corticothalamic-projecting glutamatergic cortical neuron': {'corticothalamic VAL/VM projecting glutamatergic neuron of the primary motor cortex': {}}},\n",
+ " 'L6b glutamatergic cortical neuron': {'L6b subplate glutamatergic neuron of the primary motor cortex': {}},\n",
+ " 'amygdala excitatory neuron': {},\n",
+ " 'thalamic excitatory neuron': {},\n",
+ " 'unipolar brush cell': {}},\n",
+ " 'cerebrospinal fluid secreting cell': {},\n",
+ " 'neuromast mantle cell': {'anterior lateral line neuromast mantle cell': {},\n",
+ " 'posterior lateral line neuromast mantle cell': {}},\n",
+ " 'alarm substance cell': {},\n",
+ " 'cnidocyte': {},\n",
+ " 'hypocretin-secreting neuron': {},\n",
+ " 'Malpighian tubule stellate cell': {},\n",
+ " 'lung secretory cell': {'type II pneumocyte': {},\n",
+ " 'lung goblet cell': {'goblet cell of epithelium of lobar bronchus': {}},\n",
+ " 'lung neuroendocrine cell': {'neuroendocrine cell of epithelium of lobar bronchus': {}},\n",
+ " 'serous cell of epithelium of terminal bronchiole': {},\n",
+ " 'serous cell of epithelium of lobular bronchiole': {}},\n",
+ " 'glycinergic neuron': {'cartwheel cell': {},\n",
+ " 'glycinergic amacrine cell': {}},\n",
+ " 'valve interstitial cell': {},\n",
+ " 'catecholaminergic neuron': {'adrenergic neuron': {},\n",
+ " 'dopaminergic neuron': {'dopamanergic interplexiform cell': {},\n",
+ " 'midbrain dopaminergic neuron': {}},\n",
+ " 'noradrenergic neuron': {'sympathetic noradrenergic neuron': {}}}},\n",
+ " 'contractile cell': {'myoepithelial cell': {'myoepithelial cell of mammary gland': {'myoepithelial cell of lactiferous alveolus': {},\n",
+ " 'myoepithelial cell of lactiferous duct': {},\n",
+ " 'myoepithelial cell of acinus of lactiferous gland': {}},\n",
+ " 'peritubular myoid cell': {},\n",
+ " 'myoepithelial cell of intralobular lactiferous duct': {},\n",
+ " 'myoepithelial cell of sweat gland': {},\n",
+ " 'myoepithelial cell of terminal lactiferous duct': {},\n",
+ " 'myoepithelial cell of dilator pupillae': {},\n",
+ " 'myoepithelial cell of main lactiferous duct': {},\n",
+ " 'myoepithelial cell of primary lactiferous duct': {},\n",
+ " 'myoepithelial cell of secondary lactiferous duct': {},\n",
+ " 'myoepithelial cell of tertiary lactiferous duct': {},\n",
+ " 'myoepithelial cell of quarternary lactiferous duct': {},\n",
+ " 'myoepithelial cell of bronchus submucosal gland': {},\n",
+ " 'myoepithelial cell of trachea gland': {}},\n",
+ " 'myofibroblast cell': {'fibroblastic reticular cell': {'lymph node fibroblastic reticular cell': {'lymph node marginal reticular cell': {},\n",
+ " 'B cell zone reticular cell': {},\n",
+ " 'T cell zone reticular cell': {},\n",
+ " 'medullary reticular cell': {}}},\n",
+ " 'kidney interstitial myofibroblast': {},\n",
+ " 'secondary crest myofibroblast': {}},\n",
+ " 'muscle cell': {'striated muscle cell': {'obliquely striated muscle cell': {'obliquely striated somatic muscle cell': {}},\n",
+ " 'cardiac muscle cell': {'cardiac muscle cell (sensu Arthopoda)': {},\n",
+ " 'specialized cardiac myocyte': {'Purkinje myocyte': {'Purkinje myocyte of interventricular septum': {},\n",
+ " 'Purkinje myocyte of atrioventricular node': {},\n",
+ " 'Purkinje myocyte of internodal tract': {},\n",
+ " 'Purkinje myocyte of atrioventricular bundle': {}},\n",
+ " 'nodal myocyte': {'myocyte of sinoatrial node': {'cardiac pacemaker cell of sinoatrial node': {},\n",
+ " 'transitional myocyte of sinoatrial node': {}},\n",
+ " 'myocyte of atrioventricular node': {'Purkinje myocyte of atrioventricular node': {}}},\n",
+ " 'transitional myocyte': {'transitional myocyte of interatrial septum': {},\n",
+ " 'transitional myocyte of interventricular septum': {},\n",
+ " 'transitional myocyte of sinoatrial node': {},\n",
+ " 'transitional myocyte of internodal tract': {'transitional myocyte of atrial branch of anterior internodal tract': {},\n",
+ " 'transitional myocyte of anterior internodal tract': {},\n",
+ " 'transitional myocyte of atrial septal branch of anterior internodal tract': {},\n",
+ " 'transitional myocyte of middle internodal tract': {},\n",
+ " 'transitional myocyte of posterior internodal tract': {}},\n",
+ " 'transitional myocyte of atrioventricular bundle': {'transitional myocyte of left branch of atrioventricular bundle': {'transitional myocyte of anterior division of left branch of atrioventricular bundle': {},\n",
+ " 'transitional myocyte of septal division of left branch of atrioventricular bundle': {},\n",
+ " 'transitional myocyte of posterior division of left branch of atrioventricular bundle': {}},\n",
+ " 'transitional myocyte of right branch of atrioventricular bundle': {},\n",
+ " 'transitional myocyte of atrial part of atrioventricular bundle': {},\n",
+ " 'transitional myocyte of ventricular part of atrioventricular bundle': {}}},\n",
+ " 'myocardial endocrine cell': {'myocardial endocrine cell of atrium': {},\n",
+ " 'myocardial endocrine cell of septal division of left branch of atrioventricular bundle': {},\n",
+ " 'myocardial endocrine cell of interventricular septum': {}},\n",
+ " 'internodal tract myocyte': {'myocyte of anterior internodal tract': {},\n",
+ " 'myocyte of atrial branch of anterior internodal tract': {},\n",
+ " 'myocyte of atrial septal branch of anterior internodal tract': {},\n",
+ " 'myocyte of middle internodal tract': {},\n",
+ " 'myocyte of posterior internodal tract': {},\n",
+ " 'transitional myocyte of internodal tract': {'transitional myocyte of atrial branch of anterior internodal tract': {},\n",
+ " 'transitional myocyte of anterior internodal tract': {},\n",
+ " 'transitional myocyte of atrial septal branch of anterior internodal tract': {},\n",
+ " 'transitional myocyte of middle internodal tract': {},\n",
+ " 'transitional myocyte of posterior internodal tract': {}},\n",
+ " 'Purkinje myocyte of internodal tract': {}}},\n",
+ " 'regular cardiac myocyte': {'regular interventricular cardiac myocyte': {},\n",
+ " 'regular atrial cardiac myocyte': {},\n",
+ " 'regular interatrial cardiac myocyte': {},\n",
+ " 'regular ventricular cardiac myocyte': {}},\n",
+ " 'fetal cardiomyocyte': {},\n",
+ " 'ventricular cardiac muscle cell': {'myocardial endocrine cell of septal division of left branch of atrioventricular bundle': {},\n",
+ " 'transitional myocyte of atrioventricular bundle': {'transitional myocyte of left branch of atrioventricular bundle': {'transitional myocyte of anterior division of left branch of atrioventricular bundle': {},\n",
+ " 'transitional myocyte of septal division of left branch of atrioventricular bundle': {},\n",
+ " 'transitional myocyte of posterior division of left branch of atrioventricular bundle': {}},\n",
+ " 'transitional myocyte of right branch of atrioventricular bundle': {},\n",
+ " 'transitional myocyte of atrial part of atrioventricular bundle': {},\n",
+ " 'transitional myocyte of ventricular part of atrioventricular bundle': {}},\n",
+ " 'Purkinje myocyte of atrioventricular bundle': {}}},\n",
+ " 'myotube': {'skeletal muscle fiber': {'tongue muscle cell': {},\n",
+ " 'extrafusal muscle fiber': {'slow muscle cell': {'type I muscle cell': {}},\n",
+ " 'fast muscle cell': {'type II muscle cell': {'type IIa muscle cell': {},\n",
+ " 'type IIb muscle cell': {}},\n",
+ " 'white muscle cell': {'type IIb muscle cell': {}}},\n",
+ " 'red muscle cell': {'type I muscle cell': {},\n",
+ " 'type IIa muscle cell': {}},\n",
+ " 'intermediate muscle cell': {}},\n",
+ " 'intrafusal muscle fiber': {'nuclear chain fiber': {},\n",
+ " 'nuclear bag fiber': {'dynamic nuclear bag fiber': {},\n",
+ " 'static nuclear bag fiber': {}}},\n",
+ " 'embryonic skeletal muscle fiber': {},\n",
+ " 'fetal and neonatal skeletal muscle fiber': {}},\n",
+ " 'somatic muscle myotube': {'insect flight muscle cell': {}}},\n",
+ " 'striated visceral muscle cell': {'transversely striated visceral muscle cell': {'internodal tract myocyte': {'myocyte of anterior internodal tract': {},\n",
+ " 'myocyte of atrial branch of anterior internodal tract': {},\n",
+ " 'myocyte of atrial septal branch of anterior internodal tract': {},\n",
+ " 'myocyte of middle internodal tract': {},\n",
+ " 'myocyte of posterior internodal tract': {},\n",
+ " 'transitional myocyte of internodal tract': {'transitional myocyte of atrial branch of anterior internodal tract': {},\n",
+ " 'transitional myocyte of anterior internodal tract': {},\n",
+ " 'transitional myocyte of atrial septal branch of anterior internodal tract': {},\n",
+ " 'transitional myocyte of middle internodal tract': {},\n",
+ " 'transitional myocyte of posterior internodal tract': {}},\n",
+ " 'Purkinje myocyte of internodal tract': {}},\n",
+ " 'myocardial endocrine cell of septal division of left branch of atrioventricular bundle': {},\n",
+ " 'myocyte of sinoatrial node': {'cardiac pacemaker cell of sinoatrial node': {},\n",
+ " 'transitional myocyte of sinoatrial node': {}},\n",
+ " 'myocyte of atrioventricular node': {'Purkinje myocyte of atrioventricular node': {}},\n",
+ " 'transitional myocyte of atrioventricular bundle': {'transitional myocyte of left branch of atrioventricular bundle': {'transitional myocyte of anterior division of left branch of atrioventricular bundle': {},\n",
+ " 'transitional myocyte of septal division of left branch of atrioventricular bundle': {},\n",
+ " 'transitional myocyte of posterior division of left branch of atrioventricular bundle': {}},\n",
+ " 'transitional myocyte of right branch of atrioventricular bundle': {},\n",
+ " 'transitional myocyte of atrial part of atrioventricular bundle': {},\n",
+ " 'transitional myocyte of ventricular part of atrioventricular bundle': {}},\n",
+ " 'Purkinje myocyte of atrioventricular bundle': {}}},\n",
+ " 'skeletal muscle tissue of pectoralis major striated muscle cell': {}},\n",
+ " 'non-striated muscle cell': {'smooth muscle cell': {'smooth muscle cell neural crest derived': {},\n",
+ " 'sphincter associated smooth muscle cell': {'smooth muscle cell of sphincter of pupil': {}},\n",
+ " 'vascular associated smooth muscle cell': {'smooth muscle cell of the brain vasculature': {},\n",
+ " 'microcirculation associated smooth muscle cell': {'smooth muscle cell of high endothelial venule of lymph node': {},\n",
+ " 'kidney afferent arteriole smooth muscle cell': {},\n",
+ " 'kidney efferent arteriole smooth muscle cell': {}},\n",
+ " 'lymphatic vessel smooth muscle cell': {},\n",
+ " 'blood vessel smooth muscle cell': {'aortic smooth muscle cell': {},\n",
+ " 'smooth muscle cell of the umbilical vein': {},\n",
+ " 'smooth muscle cell of the brachiocephalic vasculature': {},\n",
+ " 'smooth muscle cell of the pulmonary artery': {},\n",
+ " 'smooth muscle cell of the coronary artery': {},\n",
+ " 'smooth muscle cell of the umbilical artery': {},\n",
+ " 'smooth muscle cell of the subclavian artery': {'smooth muscle cell of the internal thoracic artery': {}},\n",
+ " 'smooth muscle cell of the carotid artery': {},\n",
+ " 'smooth muscle cell of high endothelial venule of lymph node': {},\n",
+ " 'kidney artery smooth muscle cell': {'arcuate artery smooth muscle cell': {},\n",
+ " 'interlobulary artery smooth muscle cell': {'kidney afferent arteriole smooth muscle cell': {}}},\n",
+ " 'kidney arteriole smooth muscle cell': {'kidney afferent arteriole smooth muscle cell': {},\n",
+ " 'kidney efferent arteriole smooth muscle cell': {}},\n",
+ " 'kidney venous system smooth muscle cell': {'arcuate vein smooth muscle cell': {},\n",
+ " 'interlobulary vein smooth muscle cell': {}}}},\n",
+ " 'kidney granular cell': {},\n",
+ " 'enteric smooth muscle cell': {'smooth muscle cell of small intestine': {'smooth muscle fiber of duodenum': {},\n",
+ " 'smooth muscle fiber of jejunum': {},\n",
+ " 'smooth muscle fiber of ileum': {}},\n",
+ " 'smooth muscle cell of large intestine': {'smooth muscle cell of anorectum': {},\n",
+ " 'smooth muscle cell of colon': {'smooth muscle cell of cecum': {},\n",
+ " 'smooth muscle fiber of ascending colon': {},\n",
+ " 'smooth muscle fiber of transverse colon': {},\n",
+ " 'smooth muscle fiber of descending colon': {},\n",
+ " 'smooth muscle cell of sigmoid colon': {}},\n",
+ " 'smooth muscle cell of rectum': {},\n",
+ " 'smooth muscle cell of taenia coli': {},\n",
+ " 'smooth muscle cell of large intestine smooth muscle circular layer': {},\n",
+ " 'smooth muscle cell of large intestine smooth muscle longitudinal layer': {}}},\n",
+ " 'smooth muscle cell of bladder': {},\n",
+ " 'smooth muscle cell of the esophagus': {},\n",
+ " 'uterine smooth muscle cell': {'myometrial cell': {}},\n",
+ " 'smooth muscle cell of placenta': {},\n",
+ " 'tracheobronchial smooth muscle cell': {'bronchial smooth muscle cell': {},\n",
+ " 'smooth muscle cell of trachea': {},\n",
+ " 'bronchiolar smooth muscle cell': {}},\n",
+ " 'ciliary muscle cell': {},\n",
+ " 'smooth muscle cell of prostate': {},\n",
+ " 'kidney pelvis smooth muscle cell': {},\n",
+ " 'ureter smooth muscle cell': {}}},\n",
+ " 'somatic muscle cell': {'somatic muscle myotube': {'insect flight muscle cell': {}},\n",
+ " 'obliquely striated somatic muscle cell': {}},\n",
+ " 'visceral muscle cell': {'smooth muscle cell': {'smooth muscle cell neural crest derived': {},\n",
+ " 'sphincter associated smooth muscle cell': {'smooth muscle cell of sphincter of pupil': {}},\n",
+ " 'vascular associated smooth muscle cell': {'smooth muscle cell of the brain vasculature': {},\n",
+ " 'microcirculation associated smooth muscle cell': {'smooth muscle cell of high endothelial venule of lymph node': {},\n",
+ " 'kidney afferent arteriole smooth muscle cell': {},\n",
+ " 'kidney efferent arteriole smooth muscle cell': {}},\n",
+ " 'lymphatic vessel smooth muscle cell': {},\n",
+ " 'blood vessel smooth muscle cell': {'aortic smooth muscle cell': {},\n",
+ " 'smooth muscle cell of the umbilical vein': {},\n",
+ " 'smooth muscle cell of the brachiocephalic vasculature': {},\n",
+ " 'smooth muscle cell of the pulmonary artery': {},\n",
+ " 'smooth muscle cell of the coronary artery': {},\n",
+ " 'smooth muscle cell of the umbilical artery': {},\n",
+ " 'smooth muscle cell of the subclavian artery': {'smooth muscle cell of the internal thoracic artery': {}},\n",
+ " 'smooth muscle cell of the carotid artery': {},\n",
+ " 'smooth muscle cell of high endothelial venule of lymph node': {},\n",
+ " 'kidney artery smooth muscle cell': {'arcuate artery smooth muscle cell': {},\n",
+ " 'interlobulary artery smooth muscle cell': {'kidney afferent arteriole smooth muscle cell': {}}},\n",
+ " 'kidney arteriole smooth muscle cell': {'kidney afferent arteriole smooth muscle cell': {},\n",
+ " 'kidney efferent arteriole smooth muscle cell': {}},\n",
+ " 'kidney venous system smooth muscle cell': {'arcuate vein smooth muscle cell': {},\n",
+ " 'interlobulary vein smooth muscle cell': {}}}},\n",
+ " 'kidney granular cell': {},\n",
+ " 'enteric smooth muscle cell': {'smooth muscle cell of small intestine': {'smooth muscle fiber of duodenum': {},\n",
+ " 'smooth muscle fiber of jejunum': {},\n",
+ " 'smooth muscle fiber of ileum': {}},\n",
+ " 'smooth muscle cell of large intestine': {'smooth muscle cell of anorectum': {},\n",
+ " 'smooth muscle cell of colon': {'smooth muscle cell of cecum': {},\n",
+ " 'smooth muscle fiber of ascending colon': {},\n",
+ " 'smooth muscle fiber of transverse colon': {},\n",
+ " 'smooth muscle fiber of descending colon': {},\n",
+ " 'smooth muscle cell of sigmoid colon': {}},\n",
+ " 'smooth muscle cell of rectum': {},\n",
+ " 'smooth muscle cell of taenia coli': {},\n",
+ " 'smooth muscle cell of large intestine smooth muscle circular layer': {},\n",
+ " 'smooth muscle cell of large intestine smooth muscle longitudinal layer': {}}},\n",
+ " 'smooth muscle cell of bladder': {},\n",
+ " 'smooth muscle cell of the esophagus': {},\n",
+ " 'uterine smooth muscle cell': {'myometrial cell': {}},\n",
+ " 'smooth muscle cell of placenta': {},\n",
+ " 'tracheobronchial smooth muscle cell': {'bronchial smooth muscle cell': {},\n",
+ " 'smooth muscle cell of trachea': {},\n",
+ " 'bronchiolar smooth muscle cell': {}},\n",
+ " 'ciliary muscle cell': {},\n",
+ " 'smooth muscle cell of prostate': {},\n",
+ " 'kidney pelvis smooth muscle cell': {},\n",
+ " 'ureter smooth muscle cell': {}},\n",
+ " 'striated visceral muscle cell': {'transversely striated visceral muscle cell': {'internodal tract myocyte': {'myocyte of anterior internodal tract': {},\n",
+ " 'myocyte of atrial branch of anterior internodal tract': {},\n",
+ " 'myocyte of atrial septal branch of anterior internodal tract': {},\n",
+ " 'myocyte of middle internodal tract': {},\n",
+ " 'myocyte of posterior internodal tract': {},\n",
+ " 'transitional myocyte of internodal tract': {'transitional myocyte of atrial branch of anterior internodal tract': {},\n",
+ " 'transitional myocyte of anterior internodal tract': {},\n",
+ " 'transitional myocyte of atrial septal branch of anterior internodal tract': {},\n",
+ " 'transitional myocyte of middle internodal tract': {},\n",
+ " 'transitional myocyte of posterior internodal tract': {}},\n",
+ " 'Purkinje myocyte of internodal tract': {}},\n",
+ " 'myocardial endocrine cell of septal division of left branch of atrioventricular bundle': {},\n",
+ " 'myocyte of sinoatrial node': {'cardiac pacemaker cell of sinoatrial node': {},\n",
+ " 'transitional myocyte of sinoatrial node': {}},\n",
+ " 'myocyte of atrioventricular node': {'Purkinje myocyte of atrioventricular node': {}},\n",
+ " 'transitional myocyte of atrioventricular bundle': {'transitional myocyte of left branch of atrioventricular bundle': {'transitional myocyte of anterior division of left branch of atrioventricular bundle': {},\n",
+ " 'transitional myocyte of septal division of left branch of atrioventricular bundle': {},\n",
+ " 'transitional myocyte of posterior division of left branch of atrioventricular bundle': {}},\n",
+ " 'transitional myocyte of right branch of atrioventricular bundle': {},\n",
+ " 'transitional myocyte of atrial part of atrioventricular bundle': {},\n",
+ " 'transitional myocyte of ventricular part of atrioventricular bundle': {}},\n",
+ " 'Purkinje myocyte of atrioventricular bundle': {}}}}},\n",
+ " 'pericyte': {'mesangial cell': {'extraglomerular mesangial cell': {},\n",
+ " 'glomerular mesangial cell': {}},\n",
+ " 'central nervous system pericyte': {'brain pericyte': {}},\n",
+ " 'lung pericyte': {},\n",
+ " 'renal interstitial pericyte': {'extraglomerular mesangial cell': {},\n",
+ " 'glomerular mesangial cell': {}},\n",
+ " 'placental pericyte': {'decidual pericyte': {}}}},\n",
+ " 'sensory receptor cell': {'neuronal receptor cell': {'pain receptor cell': {'unimodal nocireceptor': {},\n",
+ " 'polymodal nocireceptor': {}},\n",
+ " 'touch receptor cell': {},\n",
+ " 'gravity sensitive cell': {},\n",
+ " 'acceleration receptive cell': {},\n",
+ " 'thermoreceptor cell': {'cold sensing thermoreceptor cell': {},\n",
+ " 'warmth sensing thermoreceptor cell': {}},\n",
+ " 'olfactory receptor cell': {'ciliated olfactory receptor neuron': {},\n",
+ " 'microvillous olfactory receptor neuron': {},\n",
+ " 'crypt olfactory receptor neuron': {}},\n",
+ " 'photoreceptor cell': {'eye photoreceptor cell': {'R7 photoreceptor cell': {},\n",
+ " 'camera-type eye photoreceptor cell': {'retinal cone cell': {'L cone cell': {},\n",
+ " 'M cone cell': {'510 nm-cone': {}},\n",
+ " 'S cone cell': {},\n",
+ " 'UV cone cell': {'360 nm-cone': {}}},\n",
+ " 'retinal rod cell': {}},\n",
+ " 'compound eye photoreceptor cell': {'R1 photoreceptor cell': {},\n",
+ " 'R2 photoreceptor cell': {},\n",
+ " 'R3 photoreceptor cell': {},\n",
+ " 'R4 photoreceptor cell': {},\n",
+ " 'R5 photoreceptor cell': {},\n",
+ " 'R6 photoreceptor cell': {},\n",
+ " 'R8 photoreceptor cell': {}}},\n",
+ " 'visible light photoreceptor cell': {'photopic photoreceptor cell': {'blue sensitive photoreceptor cell': {},\n",
+ " 'green sensitive photoreceptor cell': {},\n",
+ " 'red sensitive photoreceptor cell': {}},\n",
+ " 'R1 photoreceptor cell': {},\n",
+ " 'R2 photoreceptor cell': {},\n",
+ " 'R3 photoreceptor cell': {},\n",
+ " 'R4 photoreceptor cell': {},\n",
+ " 'R5 photoreceptor cell': {},\n",
+ " 'R6 photoreceptor cell': {},\n",
+ " 'R8 photoreceptor cell': {}},\n",
+ " 'scotopic photoreceptor cell': {},\n",
+ " 'UV sensitive photoreceptor cell': {'R7 photoreceptor cell': {}}},\n",
+ " 'Rohon-Beard neuron': {},\n",
+ " 'humidity receptor cell': {},\n",
+ " 'neuromast hair cell': {'anterior lateral line neuromast hair cell': {},\n",
+ " 'posterior lateral line neuromast hair cell': {}},\n",
+ " 'ear hair cell': {'vestibular hair cell': {'type II vestibular sensory cell': {'type 2 vestibular sensory cell of stato-acoustic epithelium': {},\n",
+ " 'type 2 vestibular sensory cell of epithelium of macula of utricle of membranous labyrinth': {},\n",
+ " 'type 2 vestibular sensory cell of epithelium of macula of saccule of membranous labyrinth': {},\n",
+ " 'type 2 vestibular sensory cell of epithelium of crista of ampulla of semicircular duct of membranous labyrinth': {}},\n",
+ " 'type I vestibular sensory cell': {'type 1 vestibular sensory cell of stato-acoustic epithelium': {},\n",
+ " 'type 1 vestibular sensory cell of epithelium of macula of utricle of membranous labyrinth': {},\n",
+ " 'type 1 vestibular sensory cell of epithelium of macula of saccule of membranous labyrinth': {},\n",
+ " 'type 1 vestibular sensory cell of epithelium of crista of ampulla of semicircular duct of membranous labyrinth': {}}},\n",
+ " 'tether cell': {},\n",
+ " 'macular hair cell': {},\n",
+ " 'cochlea auditory hair cell': {'cochlear inner hair cell': {},\n",
+ " 'cochlear outer hair cell': {}}},\n",
+ " 'stretch receptor cell': {'pressoreceptor cell': {}},\n",
+ " 'lung neuroendocrine cell': {'neuroendocrine cell of epithelium of lobar bronchus': {}},\n",
+ " 'sensory neuron of dorsal root ganglion': {},\n",
+ " 'trigeminal sensory neuron': {}},\n",
+ " 'sensory epithelial cell': {'taste receptor cell': {'type III taste bud cell': {},\n",
+ " 'type II taste cell': {},\n",
+ " 'type IV taste receptor cell': {},\n",
+ " 'type V taste receptor cell': {},\n",
+ " 'type I taste bud cell': {},\n",
+ " 'taste receptor cell of tongue': {}},\n",
+ " 'olfactory epithelial cell': {'basal cell of olfactory epithelium': {'olfactory epithelial supporting cell': {},\n",
+ " 'globose cell of olfactory epithelium': {},\n",
+ " 'basal proper cell of olfactory epithelium': {}}},\n",
+ " 'auditory epithelial cell': {'strial intermediate cell': {},\n",
+ " 'strial marginal cell': {},\n",
+ " 'strial basal cell': {},\n",
+ " 'auditory epithelial supporting cell': {'supporting cell of cochlea': {'Claudius cell': {},\n",
+ " 'Boettcher cell': {},\n",
+ " 'border cell of cochlea': {},\n",
+ " 'interdental cell of cochlea': {},\n",
+ " 'organ of Corti supporting cell': {'Hensen cell': {},\n",
+ " 'phalangeal cell': {\"Deiter's cell\": {}, 'inner phalangeal cell': {}},\n",
+ " 'pillar cell': {'internal pillar cell of cochlea': {},\n",
+ " 'external pillar cell of cochlea': {}}}},\n",
+ " 'supporting cell of vestibular epithelium': {'external supporting cell of vestibular epithelium': {},\n",
+ " 'external limiting cell of vestibular epithelium': {}}}},\n",
+ " 'lung neuroendocrine cell': {'neuroendocrine cell of epithelium of lobar bronchus': {}}},\n",
+ " 'chemoreceptor cell': {'olfactory receptor cell': {'ciliated olfactory receptor neuron': {},\n",
+ " 'microvillous olfactory receptor neuron': {},\n",
+ " 'crypt olfactory receptor neuron': {}},\n",
+ " 'pH receptor cell': {},\n",
+ " 'taste receptor cell': {'type III taste bud cell': {},\n",
+ " 'type II taste cell': {},\n",
+ " 'type IV taste receptor cell': {},\n",
+ " 'type V taste receptor cell': {},\n",
+ " 'type I taste bud cell': {},\n",
+ " 'taste receptor cell of tongue': {}},\n",
+ " 'olfactory epithelial cell': {'basal cell of olfactory epithelium': {'olfactory epithelial supporting cell': {},\n",
+ " 'globose cell of olfactory epithelium': {},\n",
+ " 'basal proper cell of olfactory epithelium': {}}},\n",
+ " 'Stiftchenzellen': {},\n",
+ " 'lung neuroendocrine cell': {'neuroendocrine cell of epithelium of lobar bronchus': {}}}},\n",
+ " 'electrically active cell': {'electrically responsive cell': {'muscle cell': {'striated muscle cell': {'obliquely striated muscle cell': {'obliquely striated somatic muscle cell': {}},\n",
+ " 'cardiac muscle cell': {'cardiac muscle cell (sensu Arthopoda)': {},\n",
+ " 'specialized cardiac myocyte': {'Purkinje myocyte': {'Purkinje myocyte of interventricular septum': {},\n",
+ " 'Purkinje myocyte of atrioventricular node': {},\n",
+ " 'Purkinje myocyte of internodal tract': {},\n",
+ " 'Purkinje myocyte of atrioventricular bundle': {}},\n",
+ " 'nodal myocyte': {'myocyte of sinoatrial node': {'cardiac pacemaker cell of sinoatrial node': {},\n",
+ " 'transitional myocyte of sinoatrial node': {}},\n",
+ " 'myocyte of atrioventricular node': {'Purkinje myocyte of atrioventricular node': {}}},\n",
+ " 'transitional myocyte': {'transitional myocyte of interatrial septum': {},\n",
+ " 'transitional myocyte of interventricular septum': {},\n",
+ " 'transitional myocyte of sinoatrial node': {},\n",
+ " 'transitional myocyte of internodal tract': {'transitional myocyte of atrial branch of anterior internodal tract': {},\n",
+ " 'transitional myocyte of anterior internodal tract': {},\n",
+ " 'transitional myocyte of atrial septal branch of anterior internodal tract': {},\n",
+ " 'transitional myocyte of middle internodal tract': {},\n",
+ " 'transitional myocyte of posterior internodal tract': {}},\n",
+ " 'transitional myocyte of atrioventricular bundle': {'transitional myocyte of left branch of atrioventricular bundle': {'transitional myocyte of anterior division of left branch of atrioventricular bundle': {},\n",
+ " 'transitional myocyte of septal division of left branch of atrioventricular bundle': {},\n",
+ " 'transitional myocyte of posterior division of left branch of atrioventricular bundle': {}},\n",
+ " 'transitional myocyte of right branch of atrioventricular bundle': {},\n",
+ " 'transitional myocyte of atrial part of atrioventricular bundle': {},\n",
+ " 'transitional myocyte of ventricular part of atrioventricular bundle': {}}},\n",
+ " 'myocardial endocrine cell': {'myocardial endocrine cell of atrium': {},\n",
+ " 'myocardial endocrine cell of septal division of left branch of atrioventricular bundle': {},\n",
+ " 'myocardial endocrine cell of interventricular septum': {}},\n",
+ " 'internodal tract myocyte': {'myocyte of anterior internodal tract': {},\n",
+ " 'myocyte of atrial branch of anterior internodal tract': {},\n",
+ " 'myocyte of atrial septal branch of anterior internodal tract': {},\n",
+ " 'myocyte of middle internodal tract': {},\n",
+ " 'myocyte of posterior internodal tract': {},\n",
+ " 'transitional myocyte of internodal tract': {'transitional myocyte of atrial branch of anterior internodal tract': {},\n",
+ " 'transitional myocyte of anterior internodal tract': {},\n",
+ " 'transitional myocyte of atrial septal branch of anterior internodal tract': {},\n",
+ " 'transitional myocyte of middle internodal tract': {},\n",
+ " 'transitional myocyte of posterior internodal tract': {}},\n",
+ " 'Purkinje myocyte of internodal tract': {}}},\n",
+ " 'regular cardiac myocyte': {'regular interventricular cardiac myocyte': {},\n",
+ " 'regular atrial cardiac myocyte': {},\n",
+ " 'regular interatrial cardiac myocyte': {},\n",
+ " 'regular ventricular cardiac myocyte': {}},\n",
+ " 'fetal cardiomyocyte': {},\n",
+ " 'ventricular cardiac muscle cell': {'myocardial endocrine cell of septal division of left branch of atrioventricular bundle': {},\n",
+ " 'transitional myocyte of atrioventricular bundle': {'transitional myocyte of left branch of atrioventricular bundle': {'transitional myocyte of anterior division of left branch of atrioventricular bundle': {},\n",
+ " 'transitional myocyte of septal division of left branch of atrioventricular bundle': {},\n",
+ " 'transitional myocyte of posterior division of left branch of atrioventricular bundle': {}},\n",
+ " 'transitional myocyte of right branch of atrioventricular bundle': {},\n",
+ " 'transitional myocyte of atrial part of atrioventricular bundle': {},\n",
+ " 'transitional myocyte of ventricular part of atrioventricular bundle': {}},\n",
+ " 'Purkinje myocyte of atrioventricular bundle': {}}},\n",
+ " 'myotube': {'skeletal muscle fiber': {'tongue muscle cell': {},\n",
+ " 'extrafusal muscle fiber': {'slow muscle cell': {'type I muscle cell': {}},\n",
+ " 'fast muscle cell': {'type II muscle cell': {'type IIa muscle cell': {},\n",
+ " 'type IIb muscle cell': {}},\n",
+ " 'white muscle cell': {'type IIb muscle cell': {}}},\n",
+ " 'red muscle cell': {'type I muscle cell': {},\n",
+ " 'type IIa muscle cell': {}},\n",
+ " 'intermediate muscle cell': {}},\n",
+ " 'intrafusal muscle fiber': {'nuclear chain fiber': {},\n",
+ " 'nuclear bag fiber': {'dynamic nuclear bag fiber': {},\n",
+ " 'static nuclear bag fiber': {}}},\n",
+ " 'embryonic skeletal muscle fiber': {},\n",
+ " 'fetal and neonatal skeletal muscle fiber': {}},\n",
+ " 'somatic muscle myotube': {'insect flight muscle cell': {}}},\n",
+ " 'striated visceral muscle cell': {'transversely striated visceral muscle cell': {'internodal tract myocyte': {'myocyte of anterior internodal tract': {},\n",
+ " 'myocyte of atrial branch of anterior internodal tract': {},\n",
+ " 'myocyte of atrial septal branch of anterior internodal tract': {},\n",
+ " 'myocyte of middle internodal tract': {},\n",
+ " 'myocyte of posterior internodal tract': {},\n",
+ " 'transitional myocyte of internodal tract': {'transitional myocyte of atrial branch of anterior internodal tract': {},\n",
+ " 'transitional myocyte of anterior internodal tract': {},\n",
+ " 'transitional myocyte of atrial septal branch of anterior internodal tract': {},\n",
+ " 'transitional myocyte of middle internodal tract': {},\n",
+ " 'transitional myocyte of posterior internodal tract': {}},\n",
+ " 'Purkinje myocyte of internodal tract': {}},\n",
+ " 'myocardial endocrine cell of septal division of left branch of atrioventricular bundle': {},\n",
+ " 'myocyte of sinoatrial node': {'cardiac pacemaker cell of sinoatrial node': {},\n",
+ " 'transitional myocyte of sinoatrial node': {}},\n",
+ " 'myocyte of atrioventricular node': {'Purkinje myocyte of atrioventricular node': {}},\n",
+ " 'transitional myocyte of atrioventricular bundle': {'transitional myocyte of left branch of atrioventricular bundle': {'transitional myocyte of anterior division of left branch of atrioventricular bundle': {},\n",
+ " 'transitional myocyte of septal division of left branch of atrioventricular bundle': {},\n",
+ " 'transitional myocyte of posterior division of left branch of atrioventricular bundle': {}},\n",
+ " 'transitional myocyte of right branch of atrioventricular bundle': {},\n",
+ " 'transitional myocyte of atrial part of atrioventricular bundle': {},\n",
+ " 'transitional myocyte of ventricular part of atrioventricular bundle': {}},\n",
+ " 'Purkinje myocyte of atrioventricular bundle': {}}},\n",
+ " 'skeletal muscle tissue of pectoralis major striated muscle cell': {}},\n",
+ " 'non-striated muscle cell': {'smooth muscle cell': {'smooth muscle cell neural crest derived': {},\n",
+ " 'sphincter associated smooth muscle cell': {'smooth muscle cell of sphincter of pupil': {}},\n",
+ " 'vascular associated smooth muscle cell': {'smooth muscle cell of the brain vasculature': {},\n",
+ " 'microcirculation associated smooth muscle cell': {'smooth muscle cell of high endothelial venule of lymph node': {},\n",
+ " 'kidney afferent arteriole smooth muscle cell': {},\n",
+ " 'kidney efferent arteriole smooth muscle cell': {}},\n",
+ " 'lymphatic vessel smooth muscle cell': {},\n",
+ " 'blood vessel smooth muscle cell': {'aortic smooth muscle cell': {},\n",
+ " 'smooth muscle cell of the umbilical vein': {},\n",
+ " 'smooth muscle cell of the brachiocephalic vasculature': {},\n",
+ " 'smooth muscle cell of the pulmonary artery': {},\n",
+ " 'smooth muscle cell of the coronary artery': {},\n",
+ " 'smooth muscle cell of the umbilical artery': {},\n",
+ " 'smooth muscle cell of the subclavian artery': {'smooth muscle cell of the internal thoracic artery': {}},\n",
+ " 'smooth muscle cell of the carotid artery': {},\n",
+ " 'smooth muscle cell of high endothelial venule of lymph node': {},\n",
+ " 'kidney artery smooth muscle cell': {'arcuate artery smooth muscle cell': {},\n",
+ " 'interlobulary artery smooth muscle cell': {'kidney afferent arteriole smooth muscle cell': {}}},\n",
+ " 'kidney arteriole smooth muscle cell': {'kidney afferent arteriole smooth muscle cell': {},\n",
+ " 'kidney efferent arteriole smooth muscle cell': {}},\n",
+ " 'kidney venous system smooth muscle cell': {'arcuate vein smooth muscle cell': {},\n",
+ " 'interlobulary vein smooth muscle cell': {}}}},\n",
+ " 'kidney granular cell': {},\n",
+ " 'enteric smooth muscle cell': {'smooth muscle cell of small intestine': {'smooth muscle fiber of duodenum': {},\n",
+ " 'smooth muscle fiber of jejunum': {},\n",
+ " 'smooth muscle fiber of ileum': {}},\n",
+ " 'smooth muscle cell of large intestine': {'smooth muscle cell of anorectum': {},\n",
+ " 'smooth muscle cell of colon': {'smooth muscle cell of cecum': {},\n",
+ " 'smooth muscle fiber of ascending colon': {},\n",
+ " 'smooth muscle fiber of transverse colon': {},\n",
+ " 'smooth muscle fiber of descending colon': {},\n",
+ " 'smooth muscle cell of sigmoid colon': {}},\n",
+ " 'smooth muscle cell of rectum': {},\n",
+ " 'smooth muscle cell of taenia coli': {},\n",
+ " 'smooth muscle cell of large intestine smooth muscle circular layer': {},\n",
+ " 'smooth muscle cell of large intestine smooth muscle longitudinal layer': {}}},\n",
+ " 'smooth muscle cell of bladder': {},\n",
+ " 'smooth muscle cell of the esophagus': {},\n",
+ " 'uterine smooth muscle cell': {'myometrial cell': {}},\n",
+ " 'smooth muscle cell of placenta': {},\n",
+ " 'tracheobronchial smooth muscle cell': {'bronchial smooth muscle cell': {},\n",
+ " 'smooth muscle cell of trachea': {},\n",
+ " 'bronchiolar smooth muscle cell': {}},\n",
+ " 'ciliary muscle cell': {},\n",
+ " 'smooth muscle cell of prostate': {},\n",
+ " 'kidney pelvis smooth muscle cell': {},\n",
+ " 'ureter smooth muscle cell': {}}},\n",
+ " 'somatic muscle cell': {'somatic muscle myotube': {'insect flight muscle cell': {}},\n",
+ " 'obliquely striated somatic muscle cell': {}},\n",
+ " 'visceral muscle cell': {'smooth muscle cell': {'smooth muscle cell neural crest derived': {},\n",
+ " 'sphincter associated smooth muscle cell': {'smooth muscle cell of sphincter of pupil': {}},\n",
+ " 'vascular associated smooth muscle cell': {'smooth muscle cell of the brain vasculature': {},\n",
+ " 'microcirculation associated smooth muscle cell': {'smooth muscle cell of high endothelial venule of lymph node': {},\n",
+ " 'kidney afferent arteriole smooth muscle cell': {},\n",
+ " 'kidney efferent arteriole smooth muscle cell': {}},\n",
+ " 'lymphatic vessel smooth muscle cell': {},\n",
+ " 'blood vessel smooth muscle cell': {'aortic smooth muscle cell': {},\n",
+ " 'smooth muscle cell of the umbilical vein': {},\n",
+ " 'smooth muscle cell of the brachiocephalic vasculature': {},\n",
+ " 'smooth muscle cell of the pulmonary artery': {},\n",
+ " 'smooth muscle cell of the coronary artery': {},\n",
+ " 'smooth muscle cell of the umbilical artery': {},\n",
+ " 'smooth muscle cell of the subclavian artery': {'smooth muscle cell of the internal thoracic artery': {}},\n",
+ " 'smooth muscle cell of the carotid artery': {},\n",
+ " 'smooth muscle cell of high endothelial venule of lymph node': {},\n",
+ " 'kidney artery smooth muscle cell': {'arcuate artery smooth muscle cell': {},\n",
+ " 'interlobulary artery smooth muscle cell': {'kidney afferent arteriole smooth muscle cell': {}}},\n",
+ " 'kidney arteriole smooth muscle cell': {'kidney afferent arteriole smooth muscle cell': {},\n",
+ " 'kidney efferent arteriole smooth muscle cell': {}},\n",
+ " 'kidney venous system smooth muscle cell': {'arcuate vein smooth muscle cell': {},\n",
+ " 'interlobulary vein smooth muscle cell': {}}}},\n",
+ " 'kidney granular cell': {},\n",
+ " 'enteric smooth muscle cell': {'smooth muscle cell of small intestine': {'smooth muscle fiber of duodenum': {},\n",
+ " 'smooth muscle fiber of jejunum': {},\n",
+ " 'smooth muscle fiber of ileum': {}},\n",
+ " 'smooth muscle cell of large intestine': {'smooth muscle cell of anorectum': {},\n",
+ " 'smooth muscle cell of colon': {'smooth muscle cell of cecum': {},\n",
+ " 'smooth muscle fiber of ascending colon': {},\n",
+ " 'smooth muscle fiber of transverse colon': {},\n",
+ " 'smooth muscle fiber of descending colon': {},\n",
+ " 'smooth muscle cell of sigmoid colon': {}},\n",
+ " 'smooth muscle cell of rectum': {},\n",
+ " 'smooth muscle cell of taenia coli': {},\n",
+ " 'smooth muscle cell of large intestine smooth muscle circular layer': {},\n",
+ " 'smooth muscle cell of large intestine smooth muscle longitudinal layer': {}}},\n",
+ " 'smooth muscle cell of bladder': {},\n",
+ " 'smooth muscle cell of the esophagus': {},\n",
+ " 'uterine smooth muscle cell': {'myometrial cell': {}},\n",
+ " 'smooth muscle cell of placenta': {},\n",
+ " 'tracheobronchial smooth muscle cell': {'bronchial smooth muscle cell': {},\n",
+ " 'smooth muscle cell of trachea': {},\n",
+ " 'bronchiolar smooth muscle cell': {}},\n",
+ " 'ciliary muscle cell': {},\n",
+ " 'smooth muscle cell of prostate': {},\n",
+ " 'kidney pelvis smooth muscle cell': {},\n",
+ " 'ureter smooth muscle cell': {}},\n",
+ " 'striated visceral muscle cell': {'transversely striated visceral muscle cell': {'internodal tract myocyte': {'myocyte of anterior internodal tract': {},\n",
+ " 'myocyte of atrial branch of anterior internodal tract': {},\n",
+ " 'myocyte of atrial septal branch of anterior internodal tract': {},\n",
+ " 'myocyte of middle internodal tract': {},\n",
+ " 'myocyte of posterior internodal tract': {},\n",
+ " 'transitional myocyte of internodal tract': {'transitional myocyte of atrial branch of anterior internodal tract': {},\n",
+ " 'transitional myocyte of anterior internodal tract': {},\n",
+ " 'transitional myocyte of atrial septal branch of anterior internodal tract': {},\n",
+ " 'transitional myocyte of middle internodal tract': {},\n",
+ " 'transitional myocyte of posterior internodal tract': {}},\n",
+ " 'Purkinje myocyte of internodal tract': {}},\n",
+ " 'myocardial endocrine cell of septal division of left branch of atrioventricular bundle': {},\n",
+ " 'myocyte of sinoatrial node': {'cardiac pacemaker cell of sinoatrial node': {},\n",
+ " 'transitional myocyte of sinoatrial node': {}},\n",
+ " 'myocyte of atrioventricular node': {'Purkinje myocyte of atrioventricular node': {}},\n",
+ " 'transitional myocyte of atrioventricular bundle': {'transitional myocyte of left branch of atrioventricular bundle': {'transitional myocyte of anterior division of left branch of atrioventricular bundle': {},\n",
+ " 'transitional myocyte of septal division of left branch of atrioventricular bundle': {},\n",
+ " 'transitional myocyte of posterior division of left branch of atrioventricular bundle': {}},\n",
+ " 'transitional myocyte of right branch of atrioventricular bundle': {},\n",
+ " 'transitional myocyte of atrial part of atrioventricular bundle': {},\n",
+ " 'transitional myocyte of ventricular part of atrioventricular bundle': {}},\n",
+ " 'Purkinje myocyte of atrioventricular bundle': {}}}}},\n",
+ " 'neuron': {'CNS neuron (sensu Nematoda and Protostomia)': {'Kenyon cell': {}},\n",
+ " 'neural crest derived neuron': {'chromaffin cell': {'type EC enteroendocrine cell': {'type EC2 enteroendocrine cell': {},\n",
+ " 'type EC1 enteroendocrine cell': {},\n",
+ " 'type ECL enteroendocrine cell': {}},\n",
+ " 'chromophil cell of anterior pituitary gland': {'acidophil cell of pars distalis of adenohypophysis': {'mammosomatotroph': {},\n",
+ " 'mammotroph': {},\n",
+ " 'somatotroph': {}},\n",
+ " 'basophil cell of pars distalis of adenohypophysis': {'gonadtroph': {},\n",
+ " 'thyrotroph': {},\n",
+ " 'corticotroph': {}}},\n",
+ " 'interrenal chromaffin cell': {'interrenal norepinephrine type cell': {},\n",
+ " 'interrenal epinephrin secreting cell': {}},\n",
+ " 'chromaffin cell of paraganglion': {'chromaffin cell of paraaortic body': {}},\n",
+ " 'chromaffin cell of adrenal gland': {'adrenal medulla chromaffin cell': {'type II cell of adrenal medulla': {},\n",
+ " 'type I cell of adrenal medulla': {}},\n",
+ " 'adrenal cortex chromaffin cell': {}},\n",
+ " 'chromaffin cell of ovary': {'chromaffin cell of right ovary': {},\n",
+ " 'chromaffin cell of left ovary': {}}},\n",
+ " 'enteric neuron': {}},\n",
+ " 'interneuron': {'bipolar neuron': {'retinal bipolar neuron': {'ON-bipolar cell': {'rod bipolar cell': {'rod bipolar cell (sensu Mus)': {}},\n",
+ " 'ON-blue cone bipolar cell': {},\n",
+ " 'diffuse bipolar 4 cell': {},\n",
+ " 'diffuse bipolar 6 cell': {},\n",
+ " 'invaginating midget bipolar cell': {},\n",
+ " 'giant bipolar cell': {}},\n",
+ " 'OFF-bipolar cell': {'diffuse bipolar 1 cell': {},\n",
+ " 'diffuse bipolar 2 cell': {},\n",
+ " 'diffuse bipolar 3a cell': {},\n",
+ " 'diffuse bipolar 3b cell': {},\n",
+ " 'flat midget bipolar cell': {},\n",
+ " 'OFFx cell': {}},\n",
+ " 'cone retinal bipolar cell': {'type 1 cone bipolar cell (sensu Mus)': {},\n",
+ " 'type 2 cone bipolar cell (sensu Mus)': {},\n",
+ " 'type 3 cone bipolar cell (sensu Mus)': {'type 3a cone bipolar cell': {},\n",
+ " 'type 3b cone bipolar cell': {}},\n",
+ " 'type 4 cone bipolar cell (sensu Mus)': {},\n",
+ " 'type 5 cone bipolar cell (sensu Mus)': {'type 5a cone bipolar cell': {},\n",
+ " 'type 5b cone bipolar cell': {}},\n",
+ " 'type 6 cone bipolar cell (sensu Mus)': {},\n",
+ " 'type 7 cone bipolar cell (sensu Mus)': {},\n",
+ " 'type 8 cone bipolar cell (sensu Mus)': {},\n",
+ " 'type 9 cone bipolar cell (sensu Mus)': {}}},\n",
+ " 'L2/3 bipolar vip GABAergic cortical interneuron (Mmus)': {}},\n",
+ " 'Mauthner neuron': {},\n",
+ " 'ganglion interneuron': {},\n",
+ " 'CNS interneuron': {'CNS short range interneuron': {},\n",
+ " 'CNS long range interneuron': {},\n",
+ " 'local interneuron': {},\n",
+ " 'spinal cord interneuron': {'Kolmer-Agduhr neuron': {},\n",
+ " 'dorsal horn interneuron': {},\n",
+ " 'spinal cord ventral column interneuron': {}},\n",
+ " 'cortical interneuron': {'cerebral cortex GABAergic interneuron': {'rosehip neuron': {},\n",
+ " 'neocortex basket cell': {'large basket cell': {},\n",
+ " 'nest basket cell': {},\n",
+ " 'small basket cell': {}},\n",
+ " 'dentate gyrus of hippocampal formation basket cell': {},\n",
+ " \"Ammon's horn basket cell\": {},\n",
+ " 'alpha7 GABAergic cortical interneuron (Mmus)': {},\n",
+ " 'lamp5 GABAergic cortical interneuron': {'canopy lamp5 GABAergic cortical interneuron (Mmus)': {},\n",
+ " 'L5,6 neurogliaform lamp5 GABAergic cortical interneuron (Mmus)': {},\n",
+ " 'neurogliaform lamp5 GABAergic cortical interneuron (Mmus)': {}},\n",
+ " 'sncg GABAergic cortical interneuron': {},\n",
+ " 'vip GABAergic cortical interneuron': {'L2/3 bipolar vip GABAergic cortical interneuron (Mmus)': {},\n",
+ " 'L5 vip cortical GABAergic interneuron (Mmus)': {},\n",
+ " 'L5/6 cck, vip cortical GABAergic interneuron (Mmus)': {}},\n",
+ " 'sst GABAergic cortical interneuron': {'L5 T-Martinotti sst GABAergic cortical interneuron (Mmus)': {},\n",
+ " 'L5 non-Martinotti sst GABAergic cortical interneuron (Mmus)': {},\n",
+ " 'L2/3/5 fan Martinotti sst GABAergic cortical interneuron (Mmus)': {},\n",
+ " 'L4 sst GABAergic cortical interneuron (Mmus)': {},\n",
+ " 'L6 tyrosine hydroxylase sst GABAergic cortical interneuron (Mmus)': {},\n",
+ " 'L5/6 non-Martinotti sst GABAergic cortical interneuron (Mmus)': {},\n",
+ " 'sst chodl GABAergic cortical interneuron': {'long-range projecting sst GABAergic cortical interneuron (Mmus)': {}},\n",
+ " 'oxytocin receptor sst GABAergic cortical interneuron': {}},\n",
+ " 'pvalb GABAergic cortical interneuron': {'chandelier pvalb GABAergic cortical interneuron': {}},\n",
+ " 'medial ganglionic eminence derived GABAergic cortical interneuron': {},\n",
+ " 'caudal ganglionic eminence derived GABAergic cortical interneuron': {},\n",
+ " 'L5/6 cck cortical GABAergic interneuron (Mmus)': {'L5/6 cck, vip cortical GABAergic interneuron (Mmus)': {}},\n",
+ " 'reelin GABAergic cortical interneuron': {}},\n",
+ " 'hippocampal interneuron': {'dentate gyrus of hippocampal formation basket cell': {},\n",
+ " \"Ammon's horn basket cell\": {}}},\n",
+ " 'olfactory bulb interneuron': {'olfactory granule cell': {},\n",
+ " 'periglomerular cell': {},\n",
+ " 'mitral cell': {}},\n",
+ " 'cerebellum basket cell': {},\n",
+ " 'cerebellar inhibitory GABAergic interneuron': {'cerebellar Golgi cell': {},\n",
+ " 'Lugaro cell': {}},\n",
+ " 'unipolar brush cell': {}},\n",
+ " 'inhibitory interneuron': {'GABAergic interneuron': {'basket cell': {'cerebellum basket cell': {},\n",
+ " 'neocortex basket cell': {'large basket cell': {},\n",
+ " 'nest basket cell': {},\n",
+ " 'small basket cell': {}},\n",
+ " 'dentate gyrus of hippocampal formation basket cell': {},\n",
+ " \"Ammon's horn basket cell\": {}},\n",
+ " 'Kolmer-Agduhr neuron': {},\n",
+ " 'cerebral cortex GABAergic interneuron': {'rosehip neuron': {},\n",
+ " 'neocortex basket cell': {'large basket cell': {},\n",
+ " 'nest basket cell': {},\n",
+ " 'small basket cell': {}},\n",
+ " 'dentate gyrus of hippocampal formation basket cell': {},\n",
+ " \"Ammon's horn basket cell\": {},\n",
+ " 'alpha7 GABAergic cortical interneuron (Mmus)': {},\n",
+ " 'lamp5 GABAergic cortical interneuron': {'canopy lamp5 GABAergic cortical interneuron (Mmus)': {},\n",
+ " 'L5,6 neurogliaform lamp5 GABAergic cortical interneuron (Mmus)': {},\n",
+ " 'neurogliaform lamp5 GABAergic cortical interneuron (Mmus)': {}},\n",
+ " 'sncg GABAergic cortical interneuron': {},\n",
+ " 'vip GABAergic cortical interneuron': {'L2/3 bipolar vip GABAergic cortical interneuron (Mmus)': {},\n",
+ " 'L5 vip cortical GABAergic interneuron (Mmus)': {},\n",
+ " 'L5/6 cck, vip cortical GABAergic interneuron (Mmus)': {}},\n",
+ " 'sst GABAergic cortical interneuron': {'L5 T-Martinotti sst GABAergic cortical interneuron (Mmus)': {},\n",
+ " 'L5 non-Martinotti sst GABAergic cortical interneuron (Mmus)': {},\n",
+ " 'L2/3/5 fan Martinotti sst GABAergic cortical interneuron (Mmus)': {},\n",
+ " 'L4 sst GABAergic cortical interneuron (Mmus)': {},\n",
+ " 'L6 tyrosine hydroxylase sst GABAergic cortical interneuron (Mmus)': {},\n",
+ " 'L5/6 non-Martinotti sst GABAergic cortical interneuron (Mmus)': {},\n",
+ " 'sst chodl GABAergic cortical interneuron': {'long-range projecting sst GABAergic cortical interneuron (Mmus)': {}},\n",
+ " 'oxytocin receptor sst GABAergic cortical interneuron': {}},\n",
+ " 'pvalb GABAergic cortical interneuron': {'chandelier pvalb GABAergic cortical interneuron': {}},\n",
+ " 'medial ganglionic eminence derived GABAergic cortical interneuron': {},\n",
+ " 'caudal ganglionic eminence derived GABAergic cortical interneuron': {},\n",
+ " 'L5/6 cck cortical GABAergic interneuron (Mmus)': {'L5/6 cck, vip cortical GABAergic interneuron (Mmus)': {}},\n",
+ " 'reelin GABAergic cortical interneuron': {}},\n",
+ " 'GABAnergic interplexiform cell': {},\n",
+ " 'cerebellar inhibitory GABAergic interneuron': {'cerebellar Golgi cell': {},\n",
+ " 'Lugaro cell': {}},\n",
+ " 'Martinotti neuron': {'L4 sst GABAergic cortical interneuron (Mmus)': {},\n",
+ " 'T Martinotti neuron': {'L5 T-Martinotti sst GABAergic cortical interneuron (Mmus)': {}},\n",
+ " 'fan Martinotti neuron': {'L2/3/5 fan Martinotti sst GABAergic cortical interneuron (Mmus)': {}}},\n",
+ " 'GABAergic amacrine cell': {}}},\n",
+ " 'primary interneuron (sensu Teleostei)': {},\n",
+ " 'amacrine cell': {'flag amacrine cell': {'flag A amacrine cell': {},\n",
+ " 'flag B amacrine cell': {}},\n",
+ " 'AB diffuse-1 amacrine cell': {},\n",
+ " 'AB diffuse-2 amacrine cell': {},\n",
+ " 'spider amacrine cell': {},\n",
+ " 'monostratified amacrine cell': {},\n",
+ " 'broad diffuse amacrine cell': {},\n",
+ " 'recurving diffuse amacrine cell': {},\n",
+ " 'starburst amacrine cell': {},\n",
+ " 'diffuse multistratified amacrine cell': {},\n",
+ " 'AB broad diffuse-1 amacrine cell': {},\n",
+ " 'AB broad diffuse-2 amacrine cell': {},\n",
+ " 'fountain amacrine cell': {},\n",
+ " 'WF1 amacrine cell': {},\n",
+ " 'WF2 amacrine cell': {},\n",
+ " 'WF3-1 amacrine cell': {},\n",
+ " 'WF3-2 amacrine cell': {},\n",
+ " 'WF4 amacrine cell': {},\n",
+ " 'indoleamine-accumulating amacrine cell': {},\n",
+ " 'bistratified retinal amacrine cell': {'A2 amacrine cell': {},\n",
+ " 'flat bistratified amacrine cell': {},\n",
+ " 'A2-like amacrine cell': {},\n",
+ " 'diffuse bistratified amacrine cell': {},\n",
+ " 'DAPI-3 amacrine cell': {},\n",
+ " 'asymmetric bistratified amacrine cell': {},\n",
+ " 'wavy bistratified amacrine cell': {}},\n",
+ " 'narrow field retinal amacrine cell': {},\n",
+ " 'medium field retinal amacrine cell': {},\n",
+ " 'wide field retinal amacrine cell': {},\n",
+ " 'displaced amacrine cell': {},\n",
+ " 'GABAergic amacrine cell': {},\n",
+ " 'glycinergic amacrine cell': {}},\n",
+ " 'stellate interneuron': {},\n",
+ " 'neurogliaform cell': {'L5,6 neurogliaform lamp5 GABAergic cortical interneuron (Mmus)': {},\n",
+ " 'neurogliaform lamp5 GABAergic cortical interneuron (Mmus)': {}},\n",
+ " 'retina horizontal cell': {'H1 horizontal cell': {},\n",
+ " 'H2 horizontal cell': {}},\n",
+ " 'interplexiform cell': {'dopamanergic interplexiform cell': {},\n",
+ " 'GABAnergic interplexiform cell': {}},\n",
+ " 'medial ganglionic eminence derived interneuron': {'medial ganglionic eminence derived GABAergic cortical interneuron': {}},\n",
+ " 'caudal ganglionic eminence derived interneuron': {'caudal ganglionic eminence derived GABAergic cortical interneuron': {}},\n",
+ " 'bitufted neuron': {},\n",
+ " 'chandelier cell': {'chandelier pvalb GABAergic cortical interneuron': {}},\n",
+ " 'double bouquet cell': {}},\n",
+ " 'polymodal neuron': {},\n",
+ " 'multipolar neuron': {'basket cell': {'cerebellum basket cell': {},\n",
+ " 'neocortex basket cell': {'large basket cell': {},\n",
+ " 'nest basket cell': {},\n",
+ " 'small basket cell': {}},\n",
+ " 'dentate gyrus of hippocampal formation basket cell': {},\n",
+ " \"Ammon's horn basket cell\": {}},\n",
+ " 'stellate neuron': {'cerebellar stellate cell': {},\n",
+ " 'dentate gyrus of hippocampal formation stellate cell': {}},\n",
+ " 'pyramidal neuron': {'horizontal pyramidal neuron': {},\n",
+ " 'inverted pyramidal neuron': {},\n",
+ " 'stellate pyramidal neuron': {},\n",
+ " 'tufted pyramidal neuron': {},\n",
+ " 'untufted pyramidal neuron': {},\n",
+ " 'amygdala pyramidal neuron': {},\n",
+ " 'cerebral cortex pyramidal neuron': {'hippocampal pyramidal neuron': {},\n",
+ " 'primary motor cortex pyramidal cell': {'Betz cell': {'Betz upper motor neuron': {},\n",
+ " 'spinal interneuron synapsing Betz cell': {}},\n",
+ " 'Meynert cell': {},\n",
+ " 'non-medulla, extratelencephalic-projecting glutamatergic neuron of the primary motor cortex': {},\n",
+ " 'medulla-projecting glutamatergic neuron of the primary motor cortex': {},\n",
+ " 'L6 intratelencephalic projecting glutamatergic neuron of the primary motor cortex': {'stellate L6 intratelencephalic projecting glutamatergic neuron of the primary motor cortex (Mmus)': {},\n",
+ " 'inverted L6 intratelencephalic projecting glutamatergic neuron of the primary motor cortex (Mmus)': {}},\n",
+ " 'corticothalamic VAL/VM projecting glutamatergic neuron of the primary motor cortex': {}},\n",
+ " 'L5 extratelencephalic projecting glutamatergic cortical neuron': {'Betz cell': {'Betz upper motor neuron': {},\n",
+ " 'spinal interneuron synapsing Betz cell': {}},\n",
+ " 'non-medulla, extratelencephalic-projecting glutamatergic neuron of the primary motor cortex': {},\n",
+ " 'medulla-projecting glutamatergic neuron of the primary motor cortex': {}}}},\n",
+ " 'stellate interneuron': {},\n",
+ " 'neurogliaform cell': {'L5,6 neurogliaform lamp5 GABAergic cortical interneuron (Mmus)': {},\n",
+ " 'neurogliaform lamp5 GABAergic cortical interneuron (Mmus)': {}},\n",
+ " 'Martinotti neuron': {'L4 sst GABAergic cortical interneuron (Mmus)': {},\n",
+ " 'T Martinotti neuron': {'L5 T-Martinotti sst GABAergic cortical interneuron (Mmus)': {}},\n",
+ " 'fan Martinotti neuron': {'L2/3/5 fan Martinotti sst GABAergic cortical interneuron (Mmus)': {}}}},\n",
+ " 'pseudounipolar neuron': {},\n",
+ " 'unipolar neuron': {},\n",
+ " 'cholinergic neuron': {'somatomotor neuron': {'cranial somatomotor neuron': {},\n",
+ " 'lower motor neuron': {'spinal accessory motor neuron': {},\n",
+ " 'gamma motor neuron': {'dynamic gamma motor neuron': {},\n",
+ " 'static gamma motor neuron': {}},\n",
+ " 'alpha motor neuron': {},\n",
+ " 'anterior horn motor neuron': {},\n",
+ " 'beta motor neuron': {'static beta motor neuron': {},\n",
+ " 'dynamic beta motor neuron': {}}}},\n",
+ " 'sympathetic cholinergic neuron': {}},\n",
+ " 'peptidergic neuron': {},\n",
+ " 'columnar neuron': {},\n",
+ " 'pioneer neuron': {},\n",
+ " 'CNS neuron (sensu Vertebrata)': {'granule cell': {'olfactory granule cell': {},\n",
+ " 'cerebellar granule cell': {},\n",
+ " 'cortical granule cell': {'hippocampal granule cell': {'dentate gyrus granule cell': {}}},\n",
+ " 'Island of Calleja granule cell': {}},\n",
+ " 'Purkinje cell': {},\n",
+ " 'stellate neuron': {'cerebellar stellate cell': {},\n",
+ " 'dentate gyrus of hippocampal formation stellate cell': {}},\n",
+ " 'neuronal brush cell': {},\n",
+ " 'Cajal-Retzius cell': {},\n",
+ " 'retinal ganglion cell': {'bistratified retinal ganglion cell': {'G3 retinal ganglion cell': {},\n",
+ " 'G7 retinal ganglion cell': {},\n",
+ " 'retinal ganglion cell D1': {},\n",
+ " 'retinal ganglion cell D2': {},\n",
+ " 'M11 retinal ganglion cell': {},\n",
+ " 'M12 retinal ganglion cell': {},\n",
+ " 'M13 retinal ganglion cell': {},\n",
+ " 'M14 retinal ganglion cell': {},\n",
+ " 'small bistratified retinal ganglion cell': {}},\n",
+ " 'G1 retinal ganglion cell': {},\n",
+ " 'G2 retinal ganglion cell': {},\n",
+ " 'G4 retinal ganglion cell': {'G4-ON retinal ganglion cell': {},\n",
+ " 'G4-OFF retinal ganglion cell': {}},\n",
+ " 'G5 retinal ganglion cell': {},\n",
+ " 'G6 retinal ganglion cell': {},\n",
+ " 'G8 retinal ganglion cell': {},\n",
+ " 'G9 retinal ganglion cell': {},\n",
+ " 'G10 retinal ganglion cell': {},\n",
+ " 'G11 retinal ganglion cell': {'G11-ON retinal ganglion cell': {},\n",
+ " 'G11-OFF retinal ganglion cell': {}},\n",
+ " 'M1 retinal ganglion cell': {},\n",
+ " 'M2 retinal ganglion cell': {},\n",
+ " 'M3 retinal ganglion cell': {'M3-ON retinal ganglion cell': {},\n",
+ " 'M3-OFF retinal ganglion cell': {}},\n",
+ " 'M4 retinal ganglion cell': {},\n",
+ " 'M5 retinal ganglion cell': {},\n",
+ " 'M6 retinal ganglion cell': {},\n",
+ " 'M7 retinal ganglion cell': {'M7-ON retinal ganglion cell': {},\n",
+ " 'M7-OFF retinal ganglion cell': {}},\n",
+ " 'M8 retinal ganglion cell': {},\n",
+ " 'M9 retinal ganglion cell': {'M9-ON retinal ganglion cell': {},\n",
+ " 'M9-OFF retinal ganglion cell': {}},\n",
+ " 'M10 retinal ganglion cell': {},\n",
+ " 'retinal ganglion cell B': {'retinal ganglion cell B1': {},\n",
+ " 'retinal ganglion cell B2': {},\n",
+ " 'retinal ganglion cell B3': {'retinal ganglion cell B3 outer': {},\n",
+ " 'retinal ganglion cell B3 inner': {}}},\n",
+ " 'retinal ganglion cell C': {'retinal ganglion cell C outer': {'retinal ganglion cell C4': {},\n",
+ " 'retinal ganglion cell C5': {},\n",
+ " 'retinal ganglion cell C6': {},\n",
+ " 'retinal ganglion cell C2 outer': {}},\n",
+ " 'retinal ganglion cell C inner': {'retinal ganglion cell C3': {},\n",
+ " 'retinal ganglion cell C1': {},\n",
+ " 'retinal ganglion cell C2 inner': {}}},\n",
+ " 'retinal ganglion cell A': {'retinal ganglion cell A1': {},\n",
+ " 'retinal ganglion cell A2': {'retinal ganglion cell A2 inner': {},\n",
+ " 'retinal ganglion cell A2 outer': {}}},\n",
+ " 'ON retinal ganglion cell': {'G4-ON retinal ganglion cell': {},\n",
+ " 'G11-ON retinal ganglion cell': {},\n",
+ " 'M3-ON retinal ganglion cell': {},\n",
+ " 'M7-ON retinal ganglion cell': {},\n",
+ " 'M9-ON retinal ganglion cell': {},\n",
+ " 'ON midget ganglion cell': {},\n",
+ " 'ON parasol ganglion cell': {}},\n",
+ " 'OFF retinal ganglion cell': {'G4-OFF retinal ganglion cell': {},\n",
+ " 'G11-OFF retinal ganglion cell': {},\n",
+ " 'M3-OFF retinal ganglion cell': {},\n",
+ " 'M7-OFF retinal ganglion cell': {},\n",
+ " 'M9-OFF retinal ganglion cell': {},\n",
+ " 'OFF midget ganglion cell': {},\n",
+ " 'OFF parasol ganglion cell': {}},\n",
+ " 'midget ganglion cell of retina': {'ON midget ganglion cell': {},\n",
+ " 'OFF midget ganglion cell': {}},\n",
+ " 'parasol ganglion cell of retina': {'OFF parasol ganglion cell': {},\n",
+ " 'ON parasol ganglion cell': {}}},\n",
+ " 'raphe nuclei neuron': {},\n",
+ " 'neuron of the dorsal spinal cord': {},\n",
+ " 'neuron of the ventral spinal cord': {},\n",
+ " 'neuron of the substantia nigra': {},\n",
+ " 'neuron of the forebrain': {'olfactory granule cell': {},\n",
+ " 'cortical granule cell': {'hippocampal granule cell': {'dentate gyrus granule cell': {}}},\n",
+ " 'striatum neuron': {'Island of Calleja granule cell': {}},\n",
+ " 'dentate gyrus of hippocampal formation stellate cell': {}},\n",
+ " 'horizontal pyramidal neuron': {},\n",
+ " 'inverted pyramidal neuron': {},\n",
+ " 'stellate pyramidal neuron': {},\n",
+ " 'tufted pyramidal neuron': {},\n",
+ " 'untufted pyramidal neuron': {}},\n",
+ " 'sensory processing neuron': {},\n",
+ " 'afferent neuron': {'sensory neuron': {'neuronal receptor cell': {'pain receptor cell': {'unimodal nocireceptor': {},\n",
+ " 'polymodal nocireceptor': {}},\n",
+ " 'touch receptor cell': {},\n",
+ " 'gravity sensitive cell': {},\n",
+ " 'acceleration receptive cell': {},\n",
+ " 'thermoreceptor cell': {'cold sensing thermoreceptor cell': {},\n",
+ " 'warmth sensing thermoreceptor cell': {}},\n",
+ " 'olfactory receptor cell': {'ciliated olfactory receptor neuron': {},\n",
+ " 'microvillous olfactory receptor neuron': {},\n",
+ " 'crypt olfactory receptor neuron': {}},\n",
+ " 'photoreceptor cell': {'eye photoreceptor cell': {'R7 photoreceptor cell': {},\n",
+ " 'camera-type eye photoreceptor cell': {'retinal cone cell': {'L cone cell': {},\n",
+ " 'M cone cell': {'510 nm-cone': {}},\n",
+ " 'S cone cell': {},\n",
+ " 'UV cone cell': {'360 nm-cone': {}}},\n",
+ " 'retinal rod cell': {}},\n",
+ " 'compound eye photoreceptor cell': {'R1 photoreceptor cell': {},\n",
+ " 'R2 photoreceptor cell': {},\n",
+ " 'R3 photoreceptor cell': {},\n",
+ " 'R4 photoreceptor cell': {},\n",
+ " 'R5 photoreceptor cell': {},\n",
+ " 'R6 photoreceptor cell': {},\n",
+ " 'R8 photoreceptor cell': {}}},\n",
+ " 'visible light photoreceptor cell': {'photopic photoreceptor cell': {'blue sensitive photoreceptor cell': {},\n",
+ " 'green sensitive photoreceptor cell': {},\n",
+ " 'red sensitive photoreceptor cell': {}},\n",
+ " 'R1 photoreceptor cell': {},\n",
+ " 'R2 photoreceptor cell': {},\n",
+ " 'R3 photoreceptor cell': {},\n",
+ " 'R4 photoreceptor cell': {},\n",
+ " 'R5 photoreceptor cell': {},\n",
+ " 'R6 photoreceptor cell': {},\n",
+ " 'R8 photoreceptor cell': {}},\n",
+ " 'scotopic photoreceptor cell': {},\n",
+ " 'UV sensitive photoreceptor cell': {'R7 photoreceptor cell': {}}},\n",
+ " 'Rohon-Beard neuron': {},\n",
+ " 'humidity receptor cell': {},\n",
+ " 'neuromast hair cell': {'anterior lateral line neuromast hair cell': {},\n",
+ " 'posterior lateral line neuromast hair cell': {}},\n",
+ " 'ear hair cell': {'vestibular hair cell': {'type II vestibular sensory cell': {'type 2 vestibular sensory cell of stato-acoustic epithelium': {},\n",
+ " 'type 2 vestibular sensory cell of epithelium of macula of utricle of membranous labyrinth': {},\n",
+ " 'type 2 vestibular sensory cell of epithelium of macula of saccule of membranous labyrinth': {},\n",
+ " 'type 2 vestibular sensory cell of epithelium of crista of ampulla of semicircular duct of membranous labyrinth': {}},\n",
+ " 'type I vestibular sensory cell': {'type 1 vestibular sensory cell of stato-acoustic epithelium': {},\n",
+ " 'type 1 vestibular sensory cell of epithelium of macula of utricle of membranous labyrinth': {},\n",
+ " 'type 1 vestibular sensory cell of epithelium of macula of saccule of membranous labyrinth': {},\n",
+ " 'type 1 vestibular sensory cell of epithelium of crista of ampulla of semicircular duct of membranous labyrinth': {}}},\n",
+ " 'tether cell': {},\n",
+ " 'macular hair cell': {},\n",
+ " 'cochlea auditory hair cell': {'cochlear inner hair cell': {},\n",
+ " 'cochlear outer hair cell': {}}},\n",
+ " 'stretch receptor cell': {'pressoreceptor cell': {}},\n",
+ " 'lung neuroendocrine cell': {'neuroendocrine cell of epithelium of lobar bronchus': {}},\n",
+ " 'sensory neuron of dorsal root ganglion': {},\n",
+ " 'trigeminal sensory neuron': {}},\n",
+ " 'mechanoreceptor cell': {'touch receptor cell': {},\n",
+ " 'gravity sensitive cell': {},\n",
+ " 'slowly adapting mechanoreceptor cell': {},\n",
+ " 'sensory hair cell': {'auditory hair cell': {'macular hair cell': {},\n",
+ " 'cochlea auditory hair cell': {'cochlear inner hair cell': {},\n",
+ " 'cochlear outer hair cell': {}}},\n",
+ " 'neuromast hair cell': {'anterior lateral line neuromast hair cell': {},\n",
+ " 'posterior lateral line neuromast hair cell': {}},\n",
+ " 'ear hair cell': {'vestibular hair cell': {'type II vestibular sensory cell': {'type 2 vestibular sensory cell of stato-acoustic epithelium': {},\n",
+ " 'type 2 vestibular sensory cell of epithelium of macula of utricle of membranous labyrinth': {},\n",
+ " 'type 2 vestibular sensory cell of epithelium of macula of saccule of membranous labyrinth': {},\n",
+ " 'type 2 vestibular sensory cell of epithelium of crista of ampulla of semicircular duct of membranous labyrinth': {}},\n",
+ " 'type I vestibular sensory cell': {'type 1 vestibular sensory cell of stato-acoustic epithelium': {},\n",
+ " 'type 1 vestibular sensory cell of epithelium of macula of utricle of membranous labyrinth': {},\n",
+ " 'type 1 vestibular sensory cell of epithelium of macula of saccule of membranous labyrinth': {},\n",
+ " 'type 1 vestibular sensory cell of epithelium of crista of ampulla of semicircular duct of membranous labyrinth': {}}},\n",
+ " 'tether cell': {},\n",
+ " 'macular hair cell': {},\n",
+ " 'cochlea auditory hair cell': {'cochlear inner hair cell': {},\n",
+ " 'cochlear outer hair cell': {}}}},\n",
+ " 'cutaneous/subcutaneous mechanoreceptor cell': {'hair-tylotrich neuron': {},\n",
+ " 'hair-down neuron': {}}},\n",
+ " 'extramedullary cell': {},\n",
+ " 'primary sensory neuron (sensu Teleostei)': {'Rohon-Beard neuron': {}},\n",
+ " 'olfactory bulb interneuron': {'olfactory granule cell': {},\n",
+ " 'periglomerular cell': {},\n",
+ " 'mitral cell': {}},\n",
+ " 'vomeronasal sensory neuron': {},\n",
+ " 'peripheral sensory neuron': {'sensory neuron of spinal nerve': {}},\n",
+ " 'vestibular afferent neuron': {'bouton vestibular afferent neuron': {},\n",
+ " 'calyx vestibular afferent neuron': {}}}},\n",
+ " 'efferent neuron': {'motor neuron': {'primary motor neuron (sensu Teleostei)': {'CAP motoneuron': {}},\n",
+ " 'secondary motor neuron (sensu Teleostei)': {},\n",
+ " 'somatomotor neuron': {'cranial somatomotor neuron': {},\n",
+ " 'lower motor neuron': {'spinal accessory motor neuron': {},\n",
+ " 'gamma motor neuron': {'dynamic gamma motor neuron': {},\n",
+ " 'static gamma motor neuron': {}},\n",
+ " 'alpha motor neuron': {},\n",
+ " 'anterior horn motor neuron': {},\n",
+ " 'beta motor neuron': {'static beta motor neuron': {},\n",
+ " 'dynamic beta motor neuron': {}}}},\n",
+ " 'visceromotor neuron': {'cranial visceromotor neuron': {}},\n",
+ " 'inhibitory motor neuron': {},\n",
+ " 'upper motor neuron': {},\n",
+ " 'spinal cord motor neuron': {'lateral motor column neuron': {},\n",
+ " 'anterior horn motor neuron': {}},\n",
+ " 'cranial motor neuron': {'branchiomotor neuron': {},\n",
+ " 'cranial somatomotor neuron': {},\n",
+ " 'cranial visceromotor neuron': {}},\n",
+ " 'brainstem motor neuron': {},\n",
+ " 'trigeminal motor neuron': {}},\n",
+ " 'Purkinje cell': {},\n",
+ " 'neuroendocrine cell': {'amine precursor uptake and decarboxylation cell': {'chromaffin cell': {'type EC enteroendocrine cell': {'type EC2 enteroendocrine cell': {},\n",
+ " 'type EC1 enteroendocrine cell': {},\n",
+ " 'type ECL enteroendocrine cell': {}},\n",
+ " 'chromophil cell of anterior pituitary gland': {'acidophil cell of pars distalis of adenohypophysis': {'mammosomatotroph': {},\n",
+ " 'mammotroph': {},\n",
+ " 'somatotroph': {}},\n",
+ " 'basophil cell of pars distalis of adenohypophysis': {'gonadtroph': {},\n",
+ " 'thyrotroph': {},\n",
+ " 'corticotroph': {}}},\n",
+ " 'interrenal chromaffin cell': {'interrenal norepinephrine type cell': {},\n",
+ " 'interrenal epinephrin secreting cell': {}},\n",
+ " 'chromaffin cell of paraganglion': {'chromaffin cell of paraaortic body': {}},\n",
+ " 'chromaffin cell of adrenal gland': {'adrenal medulla chromaffin cell': {'type II cell of adrenal medulla': {},\n",
+ " 'type I cell of adrenal medulla': {}},\n",
+ " 'adrenal cortex chromaffin cell': {}},\n",
+ " 'chromaffin cell of ovary': {'chromaffin cell of right ovary': {},\n",
+ " 'chromaffin cell of left ovary': {}}}},\n",
+ " 'paraganglial type 1 cell': {},\n",
+ " 'Feyrter cell': {'dense-core granulated cell of epithelium of trachea': {}},\n",
+ " 'magnocellular neurosecretory cell': {'oxytocin-secreting magnocellular cell': {},\n",
+ " 'vasopressin-secreting magnocellular cell': {}},\n",
+ " 'gonadotropin-releasing hormone neuron': {},\n",
+ " 'prostate neuroendocrine cell': {},\n",
+ " 'stomach neuroendocrine cell': {},\n",
+ " 'lung neuroendocrine cell': {'neuroendocrine cell of epithelium of lobar bronchus': {}},\n",
+ " 'parvocellular neurosecretory cell': {},\n",
+ " 'neuroendocrine cell of epithelium of crypt of Lieberkuhn': {}},\n",
+ " 'eurydendroid cell': {}},\n",
+ " 'nitrergic neuron': {},\n",
+ " 'primary neuron (sensu Teleostei)': {'primary sensory neuron (sensu Teleostei)': {'Rohon-Beard neuron': {}},\n",
+ " 'primary motor neuron (sensu Teleostei)': {'CAP motoneuron': {}},\n",
+ " 'primary interneuron (sensu Teleostei)': {}},\n",
+ " 'secondary neuron (sensu Teleostei)': {'secondary motor neuron (sensu Teleostei)': {}},\n",
+ " 'GABAergic neuron': {'GABAergic interneuron': {'basket cell': {'cerebellum basket cell': {},\n",
+ " 'neocortex basket cell': {'large basket cell': {},\n",
+ " 'nest basket cell': {},\n",
+ " 'small basket cell': {}},\n",
+ " 'dentate gyrus of hippocampal formation basket cell': {},\n",
+ " \"Ammon's horn basket cell\": {}},\n",
+ " 'Kolmer-Agduhr neuron': {},\n",
+ " 'cerebral cortex GABAergic interneuron': {'rosehip neuron': {},\n",
+ " 'neocortex basket cell': {'large basket cell': {},\n",
+ " 'nest basket cell': {},\n",
+ " 'small basket cell': {}},\n",
+ " 'dentate gyrus of hippocampal formation basket cell': {},\n",
+ " \"Ammon's horn basket cell\": {},\n",
+ " 'alpha7 GABAergic cortical interneuron (Mmus)': {},\n",
+ " 'lamp5 GABAergic cortical interneuron': {'canopy lamp5 GABAergic cortical interneuron (Mmus)': {},\n",
+ " 'L5,6 neurogliaform lamp5 GABAergic cortical interneuron (Mmus)': {},\n",
+ " 'neurogliaform lamp5 GABAergic cortical interneuron (Mmus)': {}},\n",
+ " 'sncg GABAergic cortical interneuron': {},\n",
+ " 'vip GABAergic cortical interneuron': {'L2/3 bipolar vip GABAergic cortical interneuron (Mmus)': {},\n",
+ " 'L5 vip cortical GABAergic interneuron (Mmus)': {},\n",
+ " 'L5/6 cck, vip cortical GABAergic interneuron (Mmus)': {}},\n",
+ " 'sst GABAergic cortical interneuron': {'L5 T-Martinotti sst GABAergic cortical interneuron (Mmus)': {},\n",
+ " 'L5 non-Martinotti sst GABAergic cortical interneuron (Mmus)': {},\n",
+ " 'L2/3/5 fan Martinotti sst GABAergic cortical interneuron (Mmus)': {},\n",
+ " 'L4 sst GABAergic cortical interneuron (Mmus)': {},\n",
+ " 'L6 tyrosine hydroxylase sst GABAergic cortical interneuron (Mmus)': {},\n",
+ " 'L5/6 non-Martinotti sst GABAergic cortical interneuron (Mmus)': {},\n",
+ " 'sst chodl GABAergic cortical interneuron': {'long-range projecting sst GABAergic cortical interneuron (Mmus)': {}},\n",
+ " 'oxytocin receptor sst GABAergic cortical interneuron': {}},\n",
+ " 'pvalb GABAergic cortical interneuron': {'chandelier pvalb GABAergic cortical interneuron': {}},\n",
+ " 'medial ganglionic eminence derived GABAergic cortical interneuron': {},\n",
+ " 'caudal ganglionic eminence derived GABAergic cortical interneuron': {},\n",
+ " 'L5/6 cck cortical GABAergic interneuron (Mmus)': {'L5/6 cck, vip cortical GABAergic interneuron (Mmus)': {}},\n",
+ " 'reelin GABAergic cortical interneuron': {}},\n",
+ " 'GABAnergic interplexiform cell': {},\n",
+ " 'cerebellar inhibitory GABAergic interneuron': {'cerebellar Golgi cell': {},\n",
+ " 'Lugaro cell': {}},\n",
+ " 'Martinotti neuron': {'L4 sst GABAergic cortical interneuron (Mmus)': {},\n",
+ " 'T Martinotti neuron': {'L5 T-Martinotti sst GABAergic cortical interneuron (Mmus)': {}},\n",
+ " 'fan Martinotti neuron': {'L2/3/5 fan Martinotti sst GABAergic cortical interneuron (Mmus)': {}}},\n",
+ " 'GABAergic amacrine cell': {}},\n",
+ " 'medium spiny neuron': {'direct pathway medium spiny neuron': {'matrix D1 medium spiny neuron': {},\n",
+ " 'striosomal D1 medium spiny neuron': {}},\n",
+ " 'indirect pathway medium spiny neuron': {'matrix D2 medium spiny neuron': {},\n",
+ " 'striosomal D2 medium spiny neuron': {}},\n",
+ " 'D1/D2-hybrid medium spiny neuron': {},\n",
+ " 'nucleus accumbens shell and olfactory tubercle D1 medium spiny neuron': {},\n",
+ " 'nucleus accumbens shell and olfactory tubercle D2 medium spiny neuron': {},\n",
+ " 'RXFP1-positive interface island D1-medium spiny neuron': {},\n",
+ " 'eccentric medium spiny neuron': {}},\n",
+ " 'meis2 expressing cortical GABAergic cell': {},\n",
+ " 'cartwheel cell': {}},\n",
+ " 'commissural neuron': {},\n",
+ " 'glutamatergic neuron': {'retinal bipolar neuron': {'ON-bipolar cell': {'rod bipolar cell': {'rod bipolar cell (sensu Mus)': {}},\n",
+ " 'ON-blue cone bipolar cell': {},\n",
+ " 'diffuse bipolar 4 cell': {},\n",
+ " 'diffuse bipolar 6 cell': {},\n",
+ " 'invaginating midget bipolar cell': {},\n",
+ " 'giant bipolar cell': {}},\n",
+ " 'OFF-bipolar cell': {'diffuse bipolar 1 cell': {},\n",
+ " 'diffuse bipolar 2 cell': {},\n",
+ " 'diffuse bipolar 3a cell': {},\n",
+ " 'diffuse bipolar 3b cell': {},\n",
+ " 'flat midget bipolar cell': {},\n",
+ " 'OFFx cell': {}},\n",
+ " 'cone retinal bipolar cell': {'type 1 cone bipolar cell (sensu Mus)': {},\n",
+ " 'type 2 cone bipolar cell (sensu Mus)': {},\n",
+ " 'type 3 cone bipolar cell (sensu Mus)': {'type 3a cone bipolar cell': {},\n",
+ " 'type 3b cone bipolar cell': {}},\n",
+ " 'type 4 cone bipolar cell (sensu Mus)': {},\n",
+ " 'type 5 cone bipolar cell (sensu Mus)': {'type 5a cone bipolar cell': {},\n",
+ " 'type 5b cone bipolar cell': {}},\n",
+ " 'type 6 cone bipolar cell (sensu Mus)': {},\n",
+ " 'type 7 cone bipolar cell (sensu Mus)': {},\n",
+ " 'type 8 cone bipolar cell (sensu Mus)': {},\n",
+ " 'type 9 cone bipolar cell (sensu Mus)': {}}},\n",
+ " 'upper motor neuron': {},\n",
+ " 'cerebellum glutamatergic neuron': {'cerebellar granule cell': {}},\n",
+ " 'intratelencephalic-projecting glutamatergic cortical neuron': {'L2/3-6 intratelencephalic projecting glutamatergic cortical neuron': {'L2/3 intratelencephalic projecting glutamatergic neuron of the primary motor cortex': {},\n",
+ " 'L4/5 intratelencephalic projecting glutamatergic neuron of the primary motor cortex': {},\n",
+ " 'L5 intratelencephalic projecting glutamatergic neuron of the primary motor cortex': {},\n",
+ " 'L6 intratelencephalic projecting glutamatergic neuron of the primary motor cortex': {'stellate L6 intratelencephalic projecting glutamatergic neuron of the primary motor cortex (Mmus)': {},\n",
+ " 'inverted L6 intratelencephalic projecting glutamatergic neuron of the primary motor cortex (Mmus)': {}}}},\n",
+ " 'extratelencephalic-projecting glutamatergic cortical neuron': {'L5 extratelencephalic projecting glutamatergic cortical neuron': {'Betz cell': {'Betz upper motor neuron': {},\n",
+ " 'spinal interneuron synapsing Betz cell': {}},\n",
+ " 'non-medulla, extratelencephalic-projecting glutamatergic neuron of the primary motor cortex': {},\n",
+ " 'medulla-projecting glutamatergic neuron of the primary motor cortex': {}},\n",
+ " 'von Economo neuron': {}},\n",
+ " 'near-projecting glutamatergic cortical neuron': {'L5/6 near-projecting glutamatergic neuron of the primary motor cortex': {}},\n",
+ " 'corticothalamic-projecting glutamatergic cortical neuron': {'L6 corticothalamic-projecting glutamatergic cortical neuron': {'corticothalamic VAL/VM projecting glutamatergic neuron of the primary motor cortex': {}}},\n",
+ " 'L6b glutamatergic cortical neuron': {'L6b subplate glutamatergic neuron of the primary motor cortex': {}},\n",
+ " 'amygdala excitatory neuron': {},\n",
+ " 'thalamic excitatory neuron': {},\n",
+ " 'unipolar brush cell': {}},\n",
+ " 'serotonergic neuron': {},\n",
+ " 'bistratified cell': {'bistratified retinal ganglion cell': {'G3 retinal ganglion cell': {},\n",
+ " 'G7 retinal ganglion cell': {},\n",
+ " 'retinal ganglion cell D1': {},\n",
+ " 'retinal ganglion cell D2': {},\n",
+ " 'M11 retinal ganglion cell': {},\n",
+ " 'M12 retinal ganglion cell': {},\n",
+ " 'M13 retinal ganglion cell': {},\n",
+ " 'M14 retinal ganglion cell': {},\n",
+ " 'small bistratified retinal ganglion cell': {}},\n",
+ " 'bistratified retinal amacrine cell': {'A2 amacrine cell': {},\n",
+ " 'flat bistratified amacrine cell': {},\n",
+ " 'A2-like amacrine cell': {},\n",
+ " 'diffuse bistratified amacrine cell': {},\n",
+ " 'DAPI-3 amacrine cell': {},\n",
+ " 'asymmetric bistratified amacrine cell': {},\n",
+ " 'wavy bistratified amacrine cell': {}}},\n",
+ " 'visual system neuron': {'retinal bipolar neuron': {'ON-bipolar cell': {'rod bipolar cell': {'rod bipolar cell (sensu Mus)': {}},\n",
+ " 'ON-blue cone bipolar cell': {},\n",
+ " 'diffuse bipolar 4 cell': {},\n",
+ " 'diffuse bipolar 6 cell': {},\n",
+ " 'invaginating midget bipolar cell': {},\n",
+ " 'giant bipolar cell': {}},\n",
+ " 'OFF-bipolar cell': {'diffuse bipolar 1 cell': {},\n",
+ " 'diffuse bipolar 2 cell': {},\n",
+ " 'diffuse bipolar 3a cell': {},\n",
+ " 'diffuse bipolar 3b cell': {},\n",
+ " 'flat midget bipolar cell': {},\n",
+ " 'OFFx cell': {}},\n",
+ " 'cone retinal bipolar cell': {'type 1 cone bipolar cell (sensu Mus)': {},\n",
+ " 'type 2 cone bipolar cell (sensu Mus)': {},\n",
+ " 'type 3 cone bipolar cell (sensu Mus)': {'type 3a cone bipolar cell': {},\n",
+ " 'type 3b cone bipolar cell': {}},\n",
+ " 'type 4 cone bipolar cell (sensu Mus)': {},\n",
+ " 'type 5 cone bipolar cell (sensu Mus)': {'type 5a cone bipolar cell': {},\n",
+ " 'type 5b cone bipolar cell': {}},\n",
+ " 'type 6 cone bipolar cell (sensu Mus)': {},\n",
+ " 'type 7 cone bipolar cell (sensu Mus)': {},\n",
+ " 'type 8 cone bipolar cell (sensu Mus)': {},\n",
+ " 'type 9 cone bipolar cell (sensu Mus)': {}}}},\n",
+ " 'cardiac neuron': {},\n",
+ " 'galanergic neuron': {},\n",
+ " 'hypocretin-secreting neuron': {},\n",
+ " 'histaminergic neuron': {},\n",
+ " 'spiral ganglion neuron': {'type 1 spiral ganglion neuron': {},\n",
+ " 'type 2 spiral ganglion neuron': {}},\n",
+ " 'olfactory bulb tufted cell': {},\n",
+ " 'glycinergic neuron': {'cartwheel cell': {},\n",
+ " 'glycinergic amacrine cell': {}},\n",
+ " 'central nervous system neuron': {'CNS interneuron': {'CNS short range interneuron': {},\n",
+ " 'CNS long range interneuron': {},\n",
+ " 'local interneuron': {},\n",
+ " 'spinal cord interneuron': {'Kolmer-Agduhr neuron': {},\n",
+ " 'dorsal horn interneuron': {},\n",
+ " 'spinal cord ventral column interneuron': {}},\n",
+ " 'cortical interneuron': {'cerebral cortex GABAergic interneuron': {'rosehip neuron': {},\n",
+ " 'neocortex basket cell': {'large basket cell': {},\n",
+ " 'nest basket cell': {},\n",
+ " 'small basket cell': {}},\n",
+ " 'dentate gyrus of hippocampal formation basket cell': {},\n",
+ " \"Ammon's horn basket cell\": {},\n",
+ " 'alpha7 GABAergic cortical interneuron (Mmus)': {},\n",
+ " 'lamp5 GABAergic cortical interneuron': {'canopy lamp5 GABAergic cortical interneuron (Mmus)': {},\n",
+ " 'L5,6 neurogliaform lamp5 GABAergic cortical interneuron (Mmus)': {},\n",
+ " 'neurogliaform lamp5 GABAergic cortical interneuron (Mmus)': {}},\n",
+ " 'sncg GABAergic cortical interneuron': {},\n",
+ " 'vip GABAergic cortical interneuron': {'L2/3 bipolar vip GABAergic cortical interneuron (Mmus)': {},\n",
+ " 'L5 vip cortical GABAergic interneuron (Mmus)': {},\n",
+ " 'L5/6 cck, vip cortical GABAergic interneuron (Mmus)': {}},\n",
+ " 'sst GABAergic cortical interneuron': {'L5 T-Martinotti sst GABAergic cortical interneuron (Mmus)': {},\n",
+ " 'L5 non-Martinotti sst GABAergic cortical interneuron (Mmus)': {},\n",
+ " 'L2/3/5 fan Martinotti sst GABAergic cortical interneuron (Mmus)': {},\n",
+ " 'L4 sst GABAergic cortical interneuron (Mmus)': {},\n",
+ " 'L6 tyrosine hydroxylase sst GABAergic cortical interneuron (Mmus)': {},\n",
+ " 'L5/6 non-Martinotti sst GABAergic cortical interneuron (Mmus)': {},\n",
+ " 'sst chodl GABAergic cortical interneuron': {'long-range projecting sst GABAergic cortical interneuron (Mmus)': {}},\n",
+ " 'oxytocin receptor sst GABAergic cortical interneuron': {}},\n",
+ " 'pvalb GABAergic cortical interneuron': {'chandelier pvalb GABAergic cortical interneuron': {}},\n",
+ " 'medial ganglionic eminence derived GABAergic cortical interneuron': {},\n",
+ " 'caudal ganglionic eminence derived GABAergic cortical interneuron': {},\n",
+ " 'L5/6 cck cortical GABAergic interneuron (Mmus)': {'L5/6 cck, vip cortical GABAergic interneuron (Mmus)': {}},\n",
+ " 'reelin GABAergic cortical interneuron': {}},\n",
+ " 'hippocampal interneuron': {'dentate gyrus of hippocampal formation basket cell': {},\n",
+ " \"Ammon's horn basket cell\": {}}},\n",
+ " 'olfactory bulb interneuron': {'olfactory granule cell': {},\n",
+ " 'periglomerular cell': {},\n",
+ " 'mitral cell': {}},\n",
+ " 'cerebellum basket cell': {},\n",
+ " 'cerebellar inhibitory GABAergic interneuron': {'cerebellar Golgi cell': {},\n",
+ " 'Lugaro cell': {}},\n",
+ " 'unipolar brush cell': {}},\n",
+ " 'Cajal-Retzius cell': {},\n",
+ " 'raphe nuclei neuron': {},\n",
+ " 'neuron of the dorsal spinal cord': {},\n",
+ " 'neuron of the ventral spinal cord': {},\n",
+ " 'neuron of the substantia nigra': {},\n",
+ " 'monostratified cell': {},\n",
+ " 'cranial visceromotor neuron': {},\n",
+ " 'cerebral cortex neuron': {'cortical granule cell': {'hippocampal granule cell': {'dentate gyrus granule cell': {}}},\n",
+ " 'hippocampal neuron': {'hippocampal granule cell': {'dentate gyrus granule cell': {}},\n",
+ " 'hippocampal interneuron': {'dentate gyrus of hippocampal formation basket cell': {},\n",
+ " \"Ammon's horn basket cell\": {}},\n",
+ " 'hippocampal pyramidal neuron': {},\n",
+ " 'hippocampal CA1-3 neuron': {},\n",
+ " 'dentate gyrus neuron': {'dentate gyrus of hippocampal formation basket cell': {},\n",
+ " 'dentate gyrus granule cell': {},\n",
+ " 'dentate gyrus of hippocampal formation stellate cell': {},\n",
+ " 'dentate gyrus kisspeptin neuron': {}}},\n",
+ " 'cortical interneuron': {'cerebral cortex GABAergic interneuron': {'rosehip neuron': {},\n",
+ " 'neocortex basket cell': {'large basket cell': {},\n",
+ " 'nest basket cell': {},\n",
+ " 'small basket cell': {}},\n",
+ " 'dentate gyrus of hippocampal formation basket cell': {},\n",
+ " \"Ammon's horn basket cell\": {},\n",
+ " 'alpha7 GABAergic cortical interneuron (Mmus)': {},\n",
+ " 'lamp5 GABAergic cortical interneuron': {'canopy lamp5 GABAergic cortical interneuron (Mmus)': {},\n",
+ " 'L5,6 neurogliaform lamp5 GABAergic cortical interneuron (Mmus)': {},\n",
+ " 'neurogliaform lamp5 GABAergic cortical interneuron (Mmus)': {}},\n",
+ " 'sncg GABAergic cortical interneuron': {},\n",
+ " 'vip GABAergic cortical interneuron': {'L2/3 bipolar vip GABAergic cortical interneuron (Mmus)': {},\n",
+ " 'L5 vip cortical GABAergic interneuron (Mmus)': {},\n",
+ " 'L5/6 cck, vip cortical GABAergic interneuron (Mmus)': {}},\n",
+ " 'sst GABAergic cortical interneuron': {'L5 T-Martinotti sst GABAergic cortical interneuron (Mmus)': {},\n",
+ " 'L5 non-Martinotti sst GABAergic cortical interneuron (Mmus)': {},\n",
+ " 'L2/3/5 fan Martinotti sst GABAergic cortical interneuron (Mmus)': {},\n",
+ " 'L4 sst GABAergic cortical interneuron (Mmus)': {},\n",
+ " 'L6 tyrosine hydroxylase sst GABAergic cortical interneuron (Mmus)': {},\n",
+ " 'L5/6 non-Martinotti sst GABAergic cortical interneuron (Mmus)': {},\n",
+ " 'sst chodl GABAergic cortical interneuron': {'long-range projecting sst GABAergic cortical interneuron (Mmus)': {}},\n",
+ " 'oxytocin receptor sst GABAergic cortical interneuron': {}},\n",
+ " 'pvalb GABAergic cortical interneuron': {'chandelier pvalb GABAergic cortical interneuron': {}},\n",
+ " 'medial ganglionic eminence derived GABAergic cortical interneuron': {},\n",
+ " 'caudal ganglionic eminence derived GABAergic cortical interneuron': {},\n",
+ " 'L5/6 cck cortical GABAergic interneuron (Mmus)': {'L5/6 cck, vip cortical GABAergic interneuron (Mmus)': {}},\n",
+ " 'reelin GABAergic cortical interneuron': {}},\n",
+ " 'hippocampal interneuron': {'dentate gyrus of hippocampal formation basket cell': {},\n",
+ " \"Ammon's horn basket cell\": {}}},\n",
+ " 'intratelencephalic-projecting glutamatergic cortical neuron': {'L2/3-6 intratelencephalic projecting glutamatergic cortical neuron': {'L2/3 intratelencephalic projecting glutamatergic neuron of the primary motor cortex': {},\n",
+ " 'L4/5 intratelencephalic projecting glutamatergic neuron of the primary motor cortex': {},\n",
+ " 'L5 intratelencephalic projecting glutamatergic neuron of the primary motor cortex': {},\n",
+ " 'L6 intratelencephalic projecting glutamatergic neuron of the primary motor cortex': {'stellate L6 intratelencephalic projecting glutamatergic neuron of the primary motor cortex (Mmus)': {},\n",
+ " 'inverted L6 intratelencephalic projecting glutamatergic neuron of the primary motor cortex (Mmus)': {}}}},\n",
+ " 'extratelencephalic-projecting glutamatergic cortical neuron': {'L5 extratelencephalic projecting glutamatergic cortical neuron': {'Betz cell': {'Betz upper motor neuron': {},\n",
+ " 'spinal interneuron synapsing Betz cell': {}},\n",
+ " 'non-medulla, extratelencephalic-projecting glutamatergic neuron of the primary motor cortex': {},\n",
+ " 'medulla-projecting glutamatergic neuron of the primary motor cortex': {}},\n",
+ " 'von Economo neuron': {}},\n",
+ " 'near-projecting glutamatergic cortical neuron': {'L5/6 near-projecting glutamatergic neuron of the primary motor cortex': {}},\n",
+ " 'corticothalamic-projecting glutamatergic cortical neuron': {'L6 corticothalamic-projecting glutamatergic cortical neuron': {'corticothalamic VAL/VM projecting glutamatergic neuron of the primary motor cortex': {}}},\n",
+ " 'L6b glutamatergic cortical neuron': {'L6b subplate glutamatergic neuron of the primary motor cortex': {}},\n",
+ " 'meis2 expressing cortical GABAergic cell': {},\n",
+ " 'cerebral cortex pyramidal neuron': {'hippocampal pyramidal neuron': {},\n",
+ " 'primary motor cortex pyramidal cell': {'Betz cell': {'Betz upper motor neuron': {},\n",
+ " 'spinal interneuron synapsing Betz cell': {}},\n",
+ " 'Meynert cell': {},\n",
+ " 'non-medulla, extratelencephalic-projecting glutamatergic neuron of the primary motor cortex': {},\n",
+ " 'medulla-projecting glutamatergic neuron of the primary motor cortex': {},\n",
+ " 'L6 intratelencephalic projecting glutamatergic neuron of the primary motor cortex': {'stellate L6 intratelencephalic projecting glutamatergic neuron of the primary motor cortex (Mmus)': {},\n",
+ " 'inverted L6 intratelencephalic projecting glutamatergic neuron of the primary motor cortex (Mmus)': {}},\n",
+ " 'corticothalamic VAL/VM projecting glutamatergic neuron of the primary motor cortex': {}},\n",
+ " 'L5 extratelencephalic projecting glutamatergic cortical neuron': {'Betz cell': {'Betz upper motor neuron': {},\n",
+ " 'spinal interneuron synapsing Betz cell': {}},\n",
+ " 'non-medulla, extratelencephalic-projecting glutamatergic neuron of the primary motor cortex': {},\n",
+ " 'medulla-projecting glutamatergic neuron of the primary motor cortex': {}}}},\n",
+ " 'spinal cord motor neuron': {'lateral motor column neuron': {},\n",
+ " 'anterior horn motor neuron': {}},\n",
+ " 'magnocellular neurosecretory cell': {'oxytocin-secreting magnocellular cell': {},\n",
+ " 'vasopressin-secreting magnocellular cell': {}},\n",
+ " 'neuron of the forebrain': {'olfactory granule cell': {},\n",
+ " 'cortical granule cell': {'hippocampal granule cell': {'dentate gyrus granule cell': {}}},\n",
+ " 'striatum neuron': {'Island of Calleja granule cell': {}},\n",
+ " 'dentate gyrus of hippocampal formation stellate cell': {}},\n",
+ " 'retrotrapezoid nucleus neuron': {},\n",
+ " 'medium spiny neuron': {'direct pathway medium spiny neuron': {'matrix D1 medium spiny neuron': {},\n",
+ " 'striosomal D1 medium spiny neuron': {}},\n",
+ " 'indirect pathway medium spiny neuron': {'matrix D2 medium spiny neuron': {},\n",
+ " 'striosomal D2 medium spiny neuron': {}},\n",
+ " 'D1/D2-hybrid medium spiny neuron': {},\n",
+ " 'nucleus accumbens shell and olfactory tubercle D1 medium spiny neuron': {},\n",
+ " 'nucleus accumbens shell and olfactory tubercle D2 medium spiny neuron': {},\n",
+ " 'RXFP1-positive interface island D1-medium spiny neuron': {},\n",
+ " 'eccentric medium spiny neuron': {}},\n",
+ " 'lateral ventricle neuron': {},\n",
+ " 'cerebellar neuron': {'Purkinje cell': {},\n",
+ " 'cerebellar stellate cell': {},\n",
+ " 'cerebellum basket cell': {},\n",
+ " 'cerebellum glutamatergic neuron': {'cerebellar granule cell': {}},\n",
+ " 'cerebellar inhibitory GABAergic interneuron': {'cerebellar Golgi cell': {},\n",
+ " 'Lugaro cell': {}}},\n",
+ " 'spinal cord medial motor column neuron': {},\n",
+ " 'brainstem motor neuron': {},\n",
+ " 'midbrain dopaminergic neuron': {},\n",
+ " 'amygdala excitatory neuron': {},\n",
+ " 'thalamic excitatory neuron': {},\n",
+ " 'mammillary body neuron': {},\n",
+ " 'reticulospinal neuron': {},\n",
+ " 'amygdala pyramidal neuron': {},\n",
+ " 'hypothalamus kisspeptin neuron': {'KNDy neuron': {'arcuate nucleus of hypothalamus KNDy neuron': {},\n",
+ " 'rostral periventricular region of the third ventricle KNDy neuron': {}}},\n",
+ " 'octopus cell of the mammalian cochlear nucleus': {},\n",
+ " 'cartwheel cell': {},\n",
+ " 'bushy cell': {'spherical bushy cell': {}, 'globular bushy cell': {}},\n",
+ " 'koniocellular cell': {}},\n",
+ " 'lateral line ganglion neuron': {'anterior lateral line ganglion neuron': {},\n",
+ " 'posterior lateral line ganglion neuron': {}},\n",
+ " 'peripheral nervous system neuron': {'autonomic neuron': {'enteric neuron': {},\n",
+ " 'parasympathetic neuron': {},\n",
+ " 'sympathetic neuron': {'sympathetic noradrenergic neuron': {},\n",
+ " 'sympathetic cholinergic neuron': {}}},\n",
+ " 'kidney nerve cell': {},\n",
+ " 'peripheral sensory neuron': {'sensory neuron of spinal nerve': {}}},\n",
+ " 'hippocampal CA4 neuron': {},\n",
+ " 'midbrain-derived inhibitory neuron': {},\n",
+ " 'kisspeptin neuron': {'hypothalamus kisspeptin neuron': {'KNDy neuron': {'arcuate nucleus of hypothalamus KNDy neuron': {},\n",
+ " 'rostral periventricular region of the third ventricle KNDy neuron': {}}},\n",
+ " 'dentate gyrus kisspeptin neuron': {}},\n",
+ " 'somatosensory neuron': {'touch receptor cell': {},\n",
+ " 'Rohon-Beard neuron': {},\n",
+ " 'sensory neuron of dorsal root ganglion': {},\n",
+ " 'trigeminal sensory neuron': {}},\n",
+ " 'trigeminal neuron': {'trigeminal sensory neuron': {},\n",
+ " 'trigeminal motor neuron': {}},\n",
+ " 'catecholaminergic neuron': {'adrenergic neuron': {},\n",
+ " 'dopaminergic neuron': {'dopamanergic interplexiform cell': {},\n",
+ " 'midbrain dopaminergic neuron': {}},\n",
+ " 'noradrenergic neuron': {'sympathetic noradrenergic neuron': {}}}}},\n",
+ " 'electrically signaling cell': {'neuron': {'CNS neuron (sensu Nematoda and Protostomia)': {'Kenyon cell': {}},\n",
+ " 'neural crest derived neuron': {'chromaffin cell': {'type EC enteroendocrine cell': {'type EC2 enteroendocrine cell': {},\n",
+ " 'type EC1 enteroendocrine cell': {},\n",
+ " 'type ECL enteroendocrine cell': {}},\n",
+ " 'chromophil cell of anterior pituitary gland': {'acidophil cell of pars distalis of adenohypophysis': {'mammosomatotroph': {},\n",
+ " 'mammotroph': {},\n",
+ " 'somatotroph': {}},\n",
+ " 'basophil cell of pars distalis of adenohypophysis': {'gonadtroph': {},\n",
+ " 'thyrotroph': {},\n",
+ " 'corticotroph': {}}},\n",
+ " 'interrenal chromaffin cell': {'interrenal norepinephrine type cell': {},\n",
+ " 'interrenal epinephrin secreting cell': {}},\n",
+ " 'chromaffin cell of paraganglion': {'chromaffin cell of paraaortic body': {}},\n",
+ " 'chromaffin cell of adrenal gland': {'adrenal medulla chromaffin cell': {'type II cell of adrenal medulla': {},\n",
+ " 'type I cell of adrenal medulla': {}},\n",
+ " 'adrenal cortex chromaffin cell': {}},\n",
+ " 'chromaffin cell of ovary': {'chromaffin cell of right ovary': {},\n",
+ " 'chromaffin cell of left ovary': {}}},\n",
+ " 'enteric neuron': {}},\n",
+ " 'interneuron': {'bipolar neuron': {'retinal bipolar neuron': {'ON-bipolar cell': {'rod bipolar cell': {'rod bipolar cell (sensu Mus)': {}},\n",
+ " 'ON-blue cone bipolar cell': {},\n",
+ " 'diffuse bipolar 4 cell': {},\n",
+ " 'diffuse bipolar 6 cell': {},\n",
+ " 'invaginating midget bipolar cell': {},\n",
+ " 'giant bipolar cell': {}},\n",
+ " 'OFF-bipolar cell': {'diffuse bipolar 1 cell': {},\n",
+ " 'diffuse bipolar 2 cell': {},\n",
+ " 'diffuse bipolar 3a cell': {},\n",
+ " 'diffuse bipolar 3b cell': {},\n",
+ " 'flat midget bipolar cell': {},\n",
+ " 'OFFx cell': {}},\n",
+ " 'cone retinal bipolar cell': {'type 1 cone bipolar cell (sensu Mus)': {},\n",
+ " 'type 2 cone bipolar cell (sensu Mus)': {},\n",
+ " 'type 3 cone bipolar cell (sensu Mus)': {'type 3a cone bipolar cell': {},\n",
+ " 'type 3b cone bipolar cell': {}},\n",
+ " 'type 4 cone bipolar cell (sensu Mus)': {},\n",
+ " 'type 5 cone bipolar cell (sensu Mus)': {'type 5a cone bipolar cell': {},\n",
+ " 'type 5b cone bipolar cell': {}},\n",
+ " 'type 6 cone bipolar cell (sensu Mus)': {},\n",
+ " 'type 7 cone bipolar cell (sensu Mus)': {},\n",
+ " 'type 8 cone bipolar cell (sensu Mus)': {},\n",
+ " 'type 9 cone bipolar cell (sensu Mus)': {}}},\n",
+ " 'L2/3 bipolar vip GABAergic cortical interneuron (Mmus)': {}},\n",
+ " 'Mauthner neuron': {},\n",
+ " 'ganglion interneuron': {},\n",
+ " 'CNS interneuron': {'CNS short range interneuron': {},\n",
+ " 'CNS long range interneuron': {},\n",
+ " 'local interneuron': {},\n",
+ " 'spinal cord interneuron': {'Kolmer-Agduhr neuron': {},\n",
+ " 'dorsal horn interneuron': {},\n",
+ " 'spinal cord ventral column interneuron': {}},\n",
+ " 'cortical interneuron': {'cerebral cortex GABAergic interneuron': {'rosehip neuron': {},\n",
+ " 'neocortex basket cell': {'large basket cell': {},\n",
+ " 'nest basket cell': {},\n",
+ " 'small basket cell': {}},\n",
+ " 'dentate gyrus of hippocampal formation basket cell': {},\n",
+ " \"Ammon's horn basket cell\": {},\n",
+ " 'alpha7 GABAergic cortical interneuron (Mmus)': {},\n",
+ " 'lamp5 GABAergic cortical interneuron': {'canopy lamp5 GABAergic cortical interneuron (Mmus)': {},\n",
+ " 'L5,6 neurogliaform lamp5 GABAergic cortical interneuron (Mmus)': {},\n",
+ " 'neurogliaform lamp5 GABAergic cortical interneuron (Mmus)': {}},\n",
+ " 'sncg GABAergic cortical interneuron': {},\n",
+ " 'vip GABAergic cortical interneuron': {'L2/3 bipolar vip GABAergic cortical interneuron (Mmus)': {},\n",
+ " 'L5 vip cortical GABAergic interneuron (Mmus)': {},\n",
+ " 'L5/6 cck, vip cortical GABAergic interneuron (Mmus)': {}},\n",
+ " 'sst GABAergic cortical interneuron': {'L5 T-Martinotti sst GABAergic cortical interneuron (Mmus)': {},\n",
+ " 'L5 non-Martinotti sst GABAergic cortical interneuron (Mmus)': {},\n",
+ " 'L2/3/5 fan Martinotti sst GABAergic cortical interneuron (Mmus)': {},\n",
+ " 'L4 sst GABAergic cortical interneuron (Mmus)': {},\n",
+ " 'L6 tyrosine hydroxylase sst GABAergic cortical interneuron (Mmus)': {},\n",
+ " 'L5/6 non-Martinotti sst GABAergic cortical interneuron (Mmus)': {},\n",
+ " 'sst chodl GABAergic cortical interneuron': {'long-range projecting sst GABAergic cortical interneuron (Mmus)': {}},\n",
+ " 'oxytocin receptor sst GABAergic cortical interneuron': {}},\n",
+ " 'pvalb GABAergic cortical interneuron': {'chandelier pvalb GABAergic cortical interneuron': {}},\n",
+ " 'medial ganglionic eminence derived GABAergic cortical interneuron': {},\n",
+ " 'caudal ganglionic eminence derived GABAergic cortical interneuron': {},\n",
+ " 'L5/6 cck cortical GABAergic interneuron (Mmus)': {'L5/6 cck, vip cortical GABAergic interneuron (Mmus)': {}},\n",
+ " 'reelin GABAergic cortical interneuron': {}},\n",
+ " 'hippocampal interneuron': {'dentate gyrus of hippocampal formation basket cell': {},\n",
+ " \"Ammon's horn basket cell\": {}}},\n",
+ " 'olfactory bulb interneuron': {'olfactory granule cell': {},\n",
+ " 'periglomerular cell': {},\n",
+ " 'mitral cell': {}},\n",
+ " 'cerebellum basket cell': {},\n",
+ " 'cerebellar inhibitory GABAergic interneuron': {'cerebellar Golgi cell': {},\n",
+ " 'Lugaro cell': {}},\n",
+ " 'unipolar brush cell': {}},\n",
+ " 'inhibitory interneuron': {'GABAergic interneuron': {'basket cell': {'cerebellum basket cell': {},\n",
+ " 'neocortex basket cell': {'large basket cell': {},\n",
+ " 'nest basket cell': {},\n",
+ " 'small basket cell': {}},\n",
+ " 'dentate gyrus of hippocampal formation basket cell': {},\n",
+ " \"Ammon's horn basket cell\": {}},\n",
+ " 'Kolmer-Agduhr neuron': {},\n",
+ " 'cerebral cortex GABAergic interneuron': {'rosehip neuron': {},\n",
+ " 'neocortex basket cell': {'large basket cell': {},\n",
+ " 'nest basket cell': {},\n",
+ " 'small basket cell': {}},\n",
+ " 'dentate gyrus of hippocampal formation basket cell': {},\n",
+ " \"Ammon's horn basket cell\": {},\n",
+ " 'alpha7 GABAergic cortical interneuron (Mmus)': {},\n",
+ " 'lamp5 GABAergic cortical interneuron': {'canopy lamp5 GABAergic cortical interneuron (Mmus)': {},\n",
+ " 'L5,6 neurogliaform lamp5 GABAergic cortical interneuron (Mmus)': {},\n",
+ " 'neurogliaform lamp5 GABAergic cortical interneuron (Mmus)': {}},\n",
+ " 'sncg GABAergic cortical interneuron': {},\n",
+ " 'vip GABAergic cortical interneuron': {'L2/3 bipolar vip GABAergic cortical interneuron (Mmus)': {},\n",
+ " 'L5 vip cortical GABAergic interneuron (Mmus)': {},\n",
+ " 'L5/6 cck, vip cortical GABAergic interneuron (Mmus)': {}},\n",
+ " 'sst GABAergic cortical interneuron': {'L5 T-Martinotti sst GABAergic cortical interneuron (Mmus)': {},\n",
+ " 'L5 non-Martinotti sst GABAergic cortical interneuron (Mmus)': {},\n",
+ " 'L2/3/5 fan Martinotti sst GABAergic cortical interneuron (Mmus)': {},\n",
+ " 'L4 sst GABAergic cortical interneuron (Mmus)': {},\n",
+ " 'L6 tyrosine hydroxylase sst GABAergic cortical interneuron (Mmus)': {},\n",
+ " 'L5/6 non-Martinotti sst GABAergic cortical interneuron (Mmus)': {},\n",
+ " 'sst chodl GABAergic cortical interneuron': {'long-range projecting sst GABAergic cortical interneuron (Mmus)': {}},\n",
+ " 'oxytocin receptor sst GABAergic cortical interneuron': {}},\n",
+ " 'pvalb GABAergic cortical interneuron': {'chandelier pvalb GABAergic cortical interneuron': {}},\n",
+ " 'medial ganglionic eminence derived GABAergic cortical interneuron': {},\n",
+ " 'caudal ganglionic eminence derived GABAergic cortical interneuron': {},\n",
+ " 'L5/6 cck cortical GABAergic interneuron (Mmus)': {'L5/6 cck, vip cortical GABAergic interneuron (Mmus)': {}},\n",
+ " 'reelin GABAergic cortical interneuron': {}},\n",
+ " 'GABAnergic interplexiform cell': {},\n",
+ " 'cerebellar inhibitory GABAergic interneuron': {'cerebellar Golgi cell': {},\n",
+ " 'Lugaro cell': {}},\n",
+ " 'Martinotti neuron': {'L4 sst GABAergic cortical interneuron (Mmus)': {},\n",
+ " 'T Martinotti neuron': {'L5 T-Martinotti sst GABAergic cortical interneuron (Mmus)': {}},\n",
+ " 'fan Martinotti neuron': {'L2/3/5 fan Martinotti sst GABAergic cortical interneuron (Mmus)': {}}},\n",
+ " 'GABAergic amacrine cell': {}}},\n",
+ " 'primary interneuron (sensu Teleostei)': {},\n",
+ " 'amacrine cell': {'flag amacrine cell': {'flag A amacrine cell': {},\n",
+ " 'flag B amacrine cell': {}},\n",
+ " 'AB diffuse-1 amacrine cell': {},\n",
+ " 'AB diffuse-2 amacrine cell': {},\n",
+ " 'spider amacrine cell': {},\n",
+ " 'monostratified amacrine cell': {},\n",
+ " 'broad diffuse amacrine cell': {},\n",
+ " 'recurving diffuse amacrine cell': {},\n",
+ " 'starburst amacrine cell': {},\n",
+ " 'diffuse multistratified amacrine cell': {},\n",
+ " 'AB broad diffuse-1 amacrine cell': {},\n",
+ " 'AB broad diffuse-2 amacrine cell': {},\n",
+ " 'fountain amacrine cell': {},\n",
+ " 'WF1 amacrine cell': {},\n",
+ " 'WF2 amacrine cell': {},\n",
+ " 'WF3-1 amacrine cell': {},\n",
+ " 'WF3-2 amacrine cell': {},\n",
+ " 'WF4 amacrine cell': {},\n",
+ " 'indoleamine-accumulating amacrine cell': {},\n",
+ " 'bistratified retinal amacrine cell': {'A2 amacrine cell': {},\n",
+ " 'flat bistratified amacrine cell': {},\n",
+ " 'A2-like amacrine cell': {},\n",
+ " 'diffuse bistratified amacrine cell': {},\n",
+ " 'DAPI-3 amacrine cell': {},\n",
+ " 'asymmetric bistratified amacrine cell': {},\n",
+ " 'wavy bistratified amacrine cell': {}},\n",
+ " 'narrow field retinal amacrine cell': {},\n",
+ " 'medium field retinal amacrine cell': {},\n",
+ " 'wide field retinal amacrine cell': {},\n",
+ " 'displaced amacrine cell': {},\n",
+ " 'GABAergic amacrine cell': {},\n",
+ " 'glycinergic amacrine cell': {}},\n",
+ " 'stellate interneuron': {},\n",
+ " 'neurogliaform cell': {'L5,6 neurogliaform lamp5 GABAergic cortical interneuron (Mmus)': {},\n",
+ " 'neurogliaform lamp5 GABAergic cortical interneuron (Mmus)': {}},\n",
+ " 'retina horizontal cell': {'H1 horizontal cell': {},\n",
+ " 'H2 horizontal cell': {}},\n",
+ " 'interplexiform cell': {'dopamanergic interplexiform cell': {},\n",
+ " 'GABAnergic interplexiform cell': {}},\n",
+ " 'medial ganglionic eminence derived interneuron': {'medial ganglionic eminence derived GABAergic cortical interneuron': {}},\n",
+ " 'caudal ganglionic eminence derived interneuron': {'caudal ganglionic eminence derived GABAergic cortical interneuron': {}},\n",
+ " 'bitufted neuron': {},\n",
+ " 'chandelier cell': {'chandelier pvalb GABAergic cortical interneuron': {}},\n",
+ " 'double bouquet cell': {}},\n",
+ " 'polymodal neuron': {},\n",
+ " 'multipolar neuron': {'basket cell': {'cerebellum basket cell': {},\n",
+ " 'neocortex basket cell': {'large basket cell': {},\n",
+ " 'nest basket cell': {},\n",
+ " 'small basket cell': {}},\n",
+ " 'dentate gyrus of hippocampal formation basket cell': {},\n",
+ " \"Ammon's horn basket cell\": {}},\n",
+ " 'stellate neuron': {'cerebellar stellate cell': {},\n",
+ " 'dentate gyrus of hippocampal formation stellate cell': {}},\n",
+ " 'pyramidal neuron': {'horizontal pyramidal neuron': {},\n",
+ " 'inverted pyramidal neuron': {},\n",
+ " 'stellate pyramidal neuron': {},\n",
+ " 'tufted pyramidal neuron': {},\n",
+ " 'untufted pyramidal neuron': {},\n",
+ " 'amygdala pyramidal neuron': {},\n",
+ " 'cerebral cortex pyramidal neuron': {'hippocampal pyramidal neuron': {},\n",
+ " 'primary motor cortex pyramidal cell': {'Betz cell': {'Betz upper motor neuron': {},\n",
+ " 'spinal interneuron synapsing Betz cell': {}},\n",
+ " 'Meynert cell': {},\n",
+ " 'non-medulla, extratelencephalic-projecting glutamatergic neuron of the primary motor cortex': {},\n",
+ " 'medulla-projecting glutamatergic neuron of the primary motor cortex': {},\n",
+ " 'L6 intratelencephalic projecting glutamatergic neuron of the primary motor cortex': {'stellate L6 intratelencephalic projecting glutamatergic neuron of the primary motor cortex (Mmus)': {},\n",
+ " 'inverted L6 intratelencephalic projecting glutamatergic neuron of the primary motor cortex (Mmus)': {}},\n",
+ " 'corticothalamic VAL/VM projecting glutamatergic neuron of the primary motor cortex': {}},\n",
+ " 'L5 extratelencephalic projecting glutamatergic cortical neuron': {'Betz cell': {'Betz upper motor neuron': {},\n",
+ " 'spinal interneuron synapsing Betz cell': {}},\n",
+ " 'non-medulla, extratelencephalic-projecting glutamatergic neuron of the primary motor cortex': {},\n",
+ " 'medulla-projecting glutamatergic neuron of the primary motor cortex': {}}}},\n",
+ " 'stellate interneuron': {},\n",
+ " 'neurogliaform cell': {'L5,6 neurogliaform lamp5 GABAergic cortical interneuron (Mmus)': {},\n",
+ " 'neurogliaform lamp5 GABAergic cortical interneuron (Mmus)': {}},\n",
+ " 'Martinotti neuron': {'L4 sst GABAergic cortical interneuron (Mmus)': {},\n",
+ " 'T Martinotti neuron': {'L5 T-Martinotti sst GABAergic cortical interneuron (Mmus)': {}},\n",
+ " 'fan Martinotti neuron': {'L2/3/5 fan Martinotti sst GABAergic cortical interneuron (Mmus)': {}}}},\n",
+ " 'pseudounipolar neuron': {},\n",
+ " 'unipolar neuron': {},\n",
+ " 'cholinergic neuron': {'somatomotor neuron': {'cranial somatomotor neuron': {},\n",
+ " 'lower motor neuron': {'spinal accessory motor neuron': {},\n",
+ " 'gamma motor neuron': {'dynamic gamma motor neuron': {},\n",
+ " 'static gamma motor neuron': {}},\n",
+ " 'alpha motor neuron': {},\n",
+ " 'anterior horn motor neuron': {},\n",
+ " 'beta motor neuron': {'static beta motor neuron': {},\n",
+ " 'dynamic beta motor neuron': {}}}},\n",
+ " 'sympathetic cholinergic neuron': {}},\n",
+ " 'peptidergic neuron': {},\n",
+ " 'columnar neuron': {},\n",
+ " 'pioneer neuron': {},\n",
+ " 'CNS neuron (sensu Vertebrata)': {'granule cell': {'olfactory granule cell': {},\n",
+ " 'cerebellar granule cell': {},\n",
+ " 'cortical granule cell': {'hippocampal granule cell': {'dentate gyrus granule cell': {}}},\n",
+ " 'Island of Calleja granule cell': {}},\n",
+ " 'Purkinje cell': {},\n",
+ " 'stellate neuron': {'cerebellar stellate cell': {},\n",
+ " 'dentate gyrus of hippocampal formation stellate cell': {}},\n",
+ " 'neuronal brush cell': {},\n",
+ " 'Cajal-Retzius cell': {},\n",
+ " 'retinal ganglion cell': {'bistratified retinal ganglion cell': {'G3 retinal ganglion cell': {},\n",
+ " 'G7 retinal ganglion cell': {},\n",
+ " 'retinal ganglion cell D1': {},\n",
+ " 'retinal ganglion cell D2': {},\n",
+ " 'M11 retinal ganglion cell': {},\n",
+ " 'M12 retinal ganglion cell': {},\n",
+ " 'M13 retinal ganglion cell': {},\n",
+ " 'M14 retinal ganglion cell': {},\n",
+ " 'small bistratified retinal ganglion cell': {}},\n",
+ " 'G1 retinal ganglion cell': {},\n",
+ " 'G2 retinal ganglion cell': {},\n",
+ " 'G4 retinal ganglion cell': {'G4-ON retinal ganglion cell': {},\n",
+ " 'G4-OFF retinal ganglion cell': {}},\n",
+ " 'G5 retinal ganglion cell': {},\n",
+ " 'G6 retinal ganglion cell': {},\n",
+ " 'G8 retinal ganglion cell': {},\n",
+ " 'G9 retinal ganglion cell': {},\n",
+ " 'G10 retinal ganglion cell': {},\n",
+ " 'G11 retinal ganglion cell': {'G11-ON retinal ganglion cell': {},\n",
+ " 'G11-OFF retinal ganglion cell': {}},\n",
+ " 'M1 retinal ganglion cell': {},\n",
+ " 'M2 retinal ganglion cell': {},\n",
+ " 'M3 retinal ganglion cell': {'M3-ON retinal ganglion cell': {},\n",
+ " 'M3-OFF retinal ganglion cell': {}},\n",
+ " 'M4 retinal ganglion cell': {},\n",
+ " 'M5 retinal ganglion cell': {},\n",
+ " 'M6 retinal ganglion cell': {},\n",
+ " 'M7 retinal ganglion cell': {'M7-ON retinal ganglion cell': {},\n",
+ " 'M7-OFF retinal ganglion cell': {}},\n",
+ " 'M8 retinal ganglion cell': {},\n",
+ " 'M9 retinal ganglion cell': {'M9-ON retinal ganglion cell': {},\n",
+ " 'M9-OFF retinal ganglion cell': {}},\n",
+ " 'M10 retinal ganglion cell': {},\n",
+ " 'retinal ganglion cell B': {'retinal ganglion cell B1': {},\n",
+ " 'retinal ganglion cell B2': {},\n",
+ " 'retinal ganglion cell B3': {'retinal ganglion cell B3 outer': {},\n",
+ " 'retinal ganglion cell B3 inner': {}}},\n",
+ " 'retinal ganglion cell C': {'retinal ganglion cell C outer': {'retinal ganglion cell C4': {},\n",
+ " 'retinal ganglion cell C5': {},\n",
+ " 'retinal ganglion cell C6': {},\n",
+ " 'retinal ganglion cell C2 outer': {}},\n",
+ " 'retinal ganglion cell C inner': {'retinal ganglion cell C3': {},\n",
+ " 'retinal ganglion cell C1': {},\n",
+ " 'retinal ganglion cell C2 inner': {}}},\n",
+ " 'retinal ganglion cell A': {'retinal ganglion cell A1': {},\n",
+ " 'retinal ganglion cell A2': {'retinal ganglion cell A2 inner': {},\n",
+ " 'retinal ganglion cell A2 outer': {}}},\n",
+ " 'ON retinal ganglion cell': {'G4-ON retinal ganglion cell': {},\n",
+ " 'G11-ON retinal ganglion cell': {},\n",
+ " 'M3-ON retinal ganglion cell': {},\n",
+ " 'M7-ON retinal ganglion cell': {},\n",
+ " 'M9-ON retinal ganglion cell': {},\n",
+ " 'ON midget ganglion cell': {},\n",
+ " 'ON parasol ganglion cell': {}},\n",
+ " 'OFF retinal ganglion cell': {'G4-OFF retinal ganglion cell': {},\n",
+ " 'G11-OFF retinal ganglion cell': {},\n",
+ " 'M3-OFF retinal ganglion cell': {},\n",
+ " 'M7-OFF retinal ganglion cell': {},\n",
+ " 'M9-OFF retinal ganglion cell': {},\n",
+ " 'OFF midget ganglion cell': {},\n",
+ " 'OFF parasol ganglion cell': {}},\n",
+ " 'midget ganglion cell of retina': {'ON midget ganglion cell': {},\n",
+ " 'OFF midget ganglion cell': {}},\n",
+ " 'parasol ganglion cell of retina': {'OFF parasol ganglion cell': {},\n",
+ " 'ON parasol ganglion cell': {}}},\n",
+ " 'raphe nuclei neuron': {},\n",
+ " 'neuron of the dorsal spinal cord': {},\n",
+ " 'neuron of the ventral spinal cord': {},\n",
+ " 'neuron of the substantia nigra': {},\n",
+ " 'neuron of the forebrain': {'olfactory granule cell': {},\n",
+ " 'cortical granule cell': {'hippocampal granule cell': {'dentate gyrus granule cell': {}}},\n",
+ " 'striatum neuron': {'Island of Calleja granule cell': {}},\n",
+ " 'dentate gyrus of hippocampal formation stellate cell': {}},\n",
+ " 'horizontal pyramidal neuron': {},\n",
+ " 'inverted pyramidal neuron': {},\n",
+ " 'stellate pyramidal neuron': {},\n",
+ " 'tufted pyramidal neuron': {},\n",
+ " 'untufted pyramidal neuron': {}},\n",
+ " 'sensory processing neuron': {},\n",
+ " 'afferent neuron': {'sensory neuron': {'neuronal receptor cell': {'pain receptor cell': {'unimodal nocireceptor': {},\n",
+ " 'polymodal nocireceptor': {}},\n",
+ " 'touch receptor cell': {},\n",
+ " 'gravity sensitive cell': {},\n",
+ " 'acceleration receptive cell': {},\n",
+ " 'thermoreceptor cell': {'cold sensing thermoreceptor cell': {},\n",
+ " 'warmth sensing thermoreceptor cell': {}},\n",
+ " 'olfactory receptor cell': {'ciliated olfactory receptor neuron': {},\n",
+ " 'microvillous olfactory receptor neuron': {},\n",
+ " 'crypt olfactory receptor neuron': {}},\n",
+ " 'photoreceptor cell': {'eye photoreceptor cell': {'R7 photoreceptor cell': {},\n",
+ " 'camera-type eye photoreceptor cell': {'retinal cone cell': {'L cone cell': {},\n",
+ " 'M cone cell': {'510 nm-cone': {}},\n",
+ " 'S cone cell': {},\n",
+ " 'UV cone cell': {'360 nm-cone': {}}},\n",
+ " 'retinal rod cell': {}},\n",
+ " 'compound eye photoreceptor cell': {'R1 photoreceptor cell': {},\n",
+ " 'R2 photoreceptor cell': {},\n",
+ " 'R3 photoreceptor cell': {},\n",
+ " 'R4 photoreceptor cell': {},\n",
+ " 'R5 photoreceptor cell': {},\n",
+ " 'R6 photoreceptor cell': {},\n",
+ " 'R8 photoreceptor cell': {}}},\n",
+ " 'visible light photoreceptor cell': {'photopic photoreceptor cell': {'blue sensitive photoreceptor cell': {},\n",
+ " 'green sensitive photoreceptor cell': {},\n",
+ " 'red sensitive photoreceptor cell': {}},\n",
+ " 'R1 photoreceptor cell': {},\n",
+ " 'R2 photoreceptor cell': {},\n",
+ " 'R3 photoreceptor cell': {},\n",
+ " 'R4 photoreceptor cell': {},\n",
+ " 'R5 photoreceptor cell': {},\n",
+ " 'R6 photoreceptor cell': {},\n",
+ " 'R8 photoreceptor cell': {}},\n",
+ " 'scotopic photoreceptor cell': {},\n",
+ " 'UV sensitive photoreceptor cell': {'R7 photoreceptor cell': {}}},\n",
+ " 'Rohon-Beard neuron': {},\n",
+ " 'humidity receptor cell': {},\n",
+ " 'neuromast hair cell': {'anterior lateral line neuromast hair cell': {},\n",
+ " 'posterior lateral line neuromast hair cell': {}},\n",
+ " 'ear hair cell': {'vestibular hair cell': {'type II vestibular sensory cell': {'type 2 vestibular sensory cell of stato-acoustic epithelium': {},\n",
+ " 'type 2 vestibular sensory cell of epithelium of macula of utricle of membranous labyrinth': {},\n",
+ " 'type 2 vestibular sensory cell of epithelium of macula of saccule of membranous labyrinth': {},\n",
+ " 'type 2 vestibular sensory cell of epithelium of crista of ampulla of semicircular duct of membranous labyrinth': {}},\n",
+ " 'type I vestibular sensory cell': {'type 1 vestibular sensory cell of stato-acoustic epithelium': {},\n",
+ " 'type 1 vestibular sensory cell of epithelium of macula of utricle of membranous labyrinth': {},\n",
+ " 'type 1 vestibular sensory cell of epithelium of macula of saccule of membranous labyrinth': {},\n",
+ " 'type 1 vestibular sensory cell of epithelium of crista of ampulla of semicircular duct of membranous labyrinth': {}}},\n",
+ " 'tether cell': {},\n",
+ " 'macular hair cell': {},\n",
+ " 'cochlea auditory hair cell': {'cochlear inner hair cell': {},\n",
+ " 'cochlear outer hair cell': {}}},\n",
+ " 'stretch receptor cell': {'pressoreceptor cell': {}},\n",
+ " 'lung neuroendocrine cell': {'neuroendocrine cell of epithelium of lobar bronchus': {}},\n",
+ " 'sensory neuron of dorsal root ganglion': {},\n",
+ " 'trigeminal sensory neuron': {}},\n",
+ " 'mechanoreceptor cell': {'touch receptor cell': {},\n",
+ " 'gravity sensitive cell': {},\n",
+ " 'slowly adapting mechanoreceptor cell': {},\n",
+ " 'sensory hair cell': {'auditory hair cell': {'macular hair cell': {},\n",
+ " 'cochlea auditory hair cell': {'cochlear inner hair cell': {},\n",
+ " 'cochlear outer hair cell': {}}},\n",
+ " 'neuromast hair cell': {'anterior lateral line neuromast hair cell': {},\n",
+ " 'posterior lateral line neuromast hair cell': {}},\n",
+ " 'ear hair cell': {'vestibular hair cell': {'type II vestibular sensory cell': {'type 2 vestibular sensory cell of stato-acoustic epithelium': {},\n",
+ " 'type 2 vestibular sensory cell of epithelium of macula of utricle of membranous labyrinth': {},\n",
+ " 'type 2 vestibular sensory cell of epithelium of macula of saccule of membranous labyrinth': {},\n",
+ " 'type 2 vestibular sensory cell of epithelium of crista of ampulla of semicircular duct of membranous labyrinth': {}},\n",
+ " 'type I vestibular sensory cell': {'type 1 vestibular sensory cell of stato-acoustic epithelium': {},\n",
+ " 'type 1 vestibular sensory cell of epithelium of macula of utricle of membranous labyrinth': {},\n",
+ " 'type 1 vestibular sensory cell of epithelium of macula of saccule of membranous labyrinth': {},\n",
+ " 'type 1 vestibular sensory cell of epithelium of crista of ampulla of semicircular duct of membranous labyrinth': {}}},\n",
+ " 'tether cell': {},\n",
+ " 'macular hair cell': {},\n",
+ " 'cochlea auditory hair cell': {'cochlear inner hair cell': {},\n",
+ " 'cochlear outer hair cell': {}}}},\n",
+ " 'cutaneous/subcutaneous mechanoreceptor cell': {'hair-tylotrich neuron': {},\n",
+ " 'hair-down neuron': {}}},\n",
+ " 'extramedullary cell': {},\n",
+ " 'primary sensory neuron (sensu Teleostei)': {'Rohon-Beard neuron': {}},\n",
+ " 'olfactory bulb interneuron': {'olfactory granule cell': {},\n",
+ " 'periglomerular cell': {},\n",
+ " 'mitral cell': {}},\n",
+ " 'vomeronasal sensory neuron': {},\n",
+ " 'peripheral sensory neuron': {'sensory neuron of spinal nerve': {}},\n",
+ " 'vestibular afferent neuron': {'bouton vestibular afferent neuron': {},\n",
+ " 'calyx vestibular afferent neuron': {}}}},\n",
+ " 'efferent neuron': {'motor neuron': {'primary motor neuron (sensu Teleostei)': {'CAP motoneuron': {}},\n",
+ " 'secondary motor neuron (sensu Teleostei)': {},\n",
+ " 'somatomotor neuron': {'cranial somatomotor neuron': {},\n",
+ " 'lower motor neuron': {'spinal accessory motor neuron': {},\n",
+ " 'gamma motor neuron': {'dynamic gamma motor neuron': {},\n",
+ " 'static gamma motor neuron': {}},\n",
+ " 'alpha motor neuron': {},\n",
+ " 'anterior horn motor neuron': {},\n",
+ " 'beta motor neuron': {'static beta motor neuron': {},\n",
+ " 'dynamic beta motor neuron': {}}}},\n",
+ " 'visceromotor neuron': {'cranial visceromotor neuron': {}},\n",
+ " 'inhibitory motor neuron': {},\n",
+ " 'upper motor neuron': {},\n",
+ " 'spinal cord motor neuron': {'lateral motor column neuron': {},\n",
+ " 'anterior horn motor neuron': {}},\n",
+ " 'cranial motor neuron': {'branchiomotor neuron': {},\n",
+ " 'cranial somatomotor neuron': {},\n",
+ " 'cranial visceromotor neuron': {}},\n",
+ " 'brainstem motor neuron': {},\n",
+ " 'trigeminal motor neuron': {}},\n",
+ " 'Purkinje cell': {},\n",
+ " 'neuroendocrine cell': {'amine precursor uptake and decarboxylation cell': {'chromaffin cell': {'type EC enteroendocrine cell': {'type EC2 enteroendocrine cell': {},\n",
+ " 'type EC1 enteroendocrine cell': {},\n",
+ " 'type ECL enteroendocrine cell': {}},\n",
+ " 'chromophil cell of anterior pituitary gland': {'acidophil cell of pars distalis of adenohypophysis': {'mammosomatotroph': {},\n",
+ " 'mammotroph': {},\n",
+ " 'somatotroph': {}},\n",
+ " 'basophil cell of pars distalis of adenohypophysis': {'gonadtroph': {},\n",
+ " 'thyrotroph': {},\n",
+ " 'corticotroph': {}}},\n",
+ " 'interrenal chromaffin cell': {'interrenal norepinephrine type cell': {},\n",
+ " 'interrenal epinephrin secreting cell': {}},\n",
+ " 'chromaffin cell of paraganglion': {'chromaffin cell of paraaortic body': {}},\n",
+ " 'chromaffin cell of adrenal gland': {'adrenal medulla chromaffin cell': {'type II cell of adrenal medulla': {},\n",
+ " 'type I cell of adrenal medulla': {}},\n",
+ " 'adrenal cortex chromaffin cell': {}},\n",
+ " 'chromaffin cell of ovary': {'chromaffin cell of right ovary': {},\n",
+ " 'chromaffin cell of left ovary': {}}}},\n",
+ " 'paraganglial type 1 cell': {},\n",
+ " 'Feyrter cell': {'dense-core granulated cell of epithelium of trachea': {}},\n",
+ " 'magnocellular neurosecretory cell': {'oxytocin-secreting magnocellular cell': {},\n",
+ " 'vasopressin-secreting magnocellular cell': {}},\n",
+ " 'gonadotropin-releasing hormone neuron': {},\n",
+ " 'prostate neuroendocrine cell': {},\n",
+ " 'stomach neuroendocrine cell': {},\n",
+ " 'lung neuroendocrine cell': {'neuroendocrine cell of epithelium of lobar bronchus': {}},\n",
+ " 'parvocellular neurosecretory cell': {},\n",
+ " 'neuroendocrine cell of epithelium of crypt of Lieberkuhn': {}},\n",
+ " 'eurydendroid cell': {}},\n",
+ " 'nitrergic neuron': {},\n",
+ " 'primary neuron (sensu Teleostei)': {'primary sensory neuron (sensu Teleostei)': {'Rohon-Beard neuron': {}},\n",
+ " 'primary motor neuron (sensu Teleostei)': {'CAP motoneuron': {}},\n",
+ " 'primary interneuron (sensu Teleostei)': {}},\n",
+ " 'secondary neuron (sensu Teleostei)': {'secondary motor neuron (sensu Teleostei)': {}},\n",
+ " 'GABAergic neuron': {'GABAergic interneuron': {'basket cell': {'cerebellum basket cell': {},\n",
+ " 'neocortex basket cell': {'large basket cell': {},\n",
+ " 'nest basket cell': {},\n",
+ " 'small basket cell': {}},\n",
+ " 'dentate gyrus of hippocampal formation basket cell': {},\n",
+ " \"Ammon's horn basket cell\": {}},\n",
+ " 'Kolmer-Agduhr neuron': {},\n",
+ " 'cerebral cortex GABAergic interneuron': {'rosehip neuron': {},\n",
+ " 'neocortex basket cell': {'large basket cell': {},\n",
+ " 'nest basket cell': {},\n",
+ " 'small basket cell': {}},\n",
+ " 'dentate gyrus of hippocampal formation basket cell': {},\n",
+ " \"Ammon's horn basket cell\": {},\n",
+ " 'alpha7 GABAergic cortical interneuron (Mmus)': {},\n",
+ " 'lamp5 GABAergic cortical interneuron': {'canopy lamp5 GABAergic cortical interneuron (Mmus)': {},\n",
+ " 'L5,6 neurogliaform lamp5 GABAergic cortical interneuron (Mmus)': {},\n",
+ " 'neurogliaform lamp5 GABAergic cortical interneuron (Mmus)': {}},\n",
+ " 'sncg GABAergic cortical interneuron': {},\n",
+ " 'vip GABAergic cortical interneuron': {'L2/3 bipolar vip GABAergic cortical interneuron (Mmus)': {},\n",
+ " 'L5 vip cortical GABAergic interneuron (Mmus)': {},\n",
+ " 'L5/6 cck, vip cortical GABAergic interneuron (Mmus)': {}},\n",
+ " 'sst GABAergic cortical interneuron': {'L5 T-Martinotti sst GABAergic cortical interneuron (Mmus)': {},\n",
+ " 'L5 non-Martinotti sst GABAergic cortical interneuron (Mmus)': {},\n",
+ " 'L2/3/5 fan Martinotti sst GABAergic cortical interneuron (Mmus)': {},\n",
+ " 'L4 sst GABAergic cortical interneuron (Mmus)': {},\n",
+ " 'L6 tyrosine hydroxylase sst GABAergic cortical interneuron (Mmus)': {},\n",
+ " 'L5/6 non-Martinotti sst GABAergic cortical interneuron (Mmus)': {},\n",
+ " 'sst chodl GABAergic cortical interneuron': {'long-range projecting sst GABAergic cortical interneuron (Mmus)': {}},\n",
+ " 'oxytocin receptor sst GABAergic cortical interneuron': {}},\n",
+ " 'pvalb GABAergic cortical interneuron': {'chandelier pvalb GABAergic cortical interneuron': {}},\n",
+ " 'medial ganglionic eminence derived GABAergic cortical interneuron': {},\n",
+ " 'caudal ganglionic eminence derived GABAergic cortical interneuron': {},\n",
+ " 'L5/6 cck cortical GABAergic interneuron (Mmus)': {'L5/6 cck, vip cortical GABAergic interneuron (Mmus)': {}},\n",
+ " 'reelin GABAergic cortical interneuron': {}},\n",
+ " 'GABAnergic interplexiform cell': {},\n",
+ " 'cerebellar inhibitory GABAergic interneuron': {'cerebellar Golgi cell': {},\n",
+ " 'Lugaro cell': {}},\n",
+ " 'Martinotti neuron': {'L4 sst GABAergic cortical interneuron (Mmus)': {},\n",
+ " 'T Martinotti neuron': {'L5 T-Martinotti sst GABAergic cortical interneuron (Mmus)': {}},\n",
+ " 'fan Martinotti neuron': {'L2/3/5 fan Martinotti sst GABAergic cortical interneuron (Mmus)': {}}},\n",
+ " 'GABAergic amacrine cell': {}},\n",
+ " 'medium spiny neuron': {'direct pathway medium spiny neuron': {'matrix D1 medium spiny neuron': {},\n",
+ " 'striosomal D1 medium spiny neuron': {}},\n",
+ " 'indirect pathway medium spiny neuron': {'matrix D2 medium spiny neuron': {},\n",
+ " 'striosomal D2 medium spiny neuron': {}},\n",
+ " 'D1/D2-hybrid medium spiny neuron': {},\n",
+ " 'nucleus accumbens shell and olfactory tubercle D1 medium spiny neuron': {},\n",
+ " 'nucleus accumbens shell and olfactory tubercle D2 medium spiny neuron': {},\n",
+ " 'RXFP1-positive interface island D1-medium spiny neuron': {},\n",
+ " 'eccentric medium spiny neuron': {}},\n",
+ " 'meis2 expressing cortical GABAergic cell': {},\n",
+ " 'cartwheel cell': {}},\n",
+ " 'commissural neuron': {},\n",
+ " 'glutamatergic neuron': {'retinal bipolar neuron': {'ON-bipolar cell': {'rod bipolar cell': {'rod bipolar cell (sensu Mus)': {}},\n",
+ " 'ON-blue cone bipolar cell': {},\n",
+ " 'diffuse bipolar 4 cell': {},\n",
+ " 'diffuse bipolar 6 cell': {},\n",
+ " 'invaginating midget bipolar cell': {},\n",
+ " 'giant bipolar cell': {}},\n",
+ " 'OFF-bipolar cell': {'diffuse bipolar 1 cell': {},\n",
+ " 'diffuse bipolar 2 cell': {},\n",
+ " 'diffuse bipolar 3a cell': {},\n",
+ " 'diffuse bipolar 3b cell': {},\n",
+ " 'flat midget bipolar cell': {},\n",
+ " 'OFFx cell': {}},\n",
+ " 'cone retinal bipolar cell': {'type 1 cone bipolar cell (sensu Mus)': {},\n",
+ " 'type 2 cone bipolar cell (sensu Mus)': {},\n",
+ " 'type 3 cone bipolar cell (sensu Mus)': {'type 3a cone bipolar cell': {},\n",
+ " 'type 3b cone bipolar cell': {}},\n",
+ " 'type 4 cone bipolar cell (sensu Mus)': {},\n",
+ " 'type 5 cone bipolar cell (sensu Mus)': {'type 5a cone bipolar cell': {},\n",
+ " 'type 5b cone bipolar cell': {}},\n",
+ " 'type 6 cone bipolar cell (sensu Mus)': {},\n",
+ " 'type 7 cone bipolar cell (sensu Mus)': {},\n",
+ " 'type 8 cone bipolar cell (sensu Mus)': {},\n",
+ " 'type 9 cone bipolar cell (sensu Mus)': {}}},\n",
+ " 'upper motor neuron': {},\n",
+ " 'cerebellum glutamatergic neuron': {'cerebellar granule cell': {}},\n",
+ " 'intratelencephalic-projecting glutamatergic cortical neuron': {'L2/3-6 intratelencephalic projecting glutamatergic cortical neuron': {'L2/3 intratelencephalic projecting glutamatergic neuron of the primary motor cortex': {},\n",
+ " 'L4/5 intratelencephalic projecting glutamatergic neuron of the primary motor cortex': {},\n",
+ " 'L5 intratelencephalic projecting glutamatergic neuron of the primary motor cortex': {},\n",
+ " 'L6 intratelencephalic projecting glutamatergic neuron of the primary motor cortex': {'stellate L6 intratelencephalic projecting glutamatergic neuron of the primary motor cortex (Mmus)': {},\n",
+ " 'inverted L6 intratelencephalic projecting glutamatergic neuron of the primary motor cortex (Mmus)': {}}}},\n",
+ " 'extratelencephalic-projecting glutamatergic cortical neuron': {'L5 extratelencephalic projecting glutamatergic cortical neuron': {'Betz cell': {'Betz upper motor neuron': {},\n",
+ " 'spinal interneuron synapsing Betz cell': {}},\n",
+ " 'non-medulla, extratelencephalic-projecting glutamatergic neuron of the primary motor cortex': {},\n",
+ " 'medulla-projecting glutamatergic neuron of the primary motor cortex': {}},\n",
+ " 'von Economo neuron': {}},\n",
+ " 'near-projecting glutamatergic cortical neuron': {'L5/6 near-projecting glutamatergic neuron of the primary motor cortex': {}},\n",
+ " 'corticothalamic-projecting glutamatergic cortical neuron': {'L6 corticothalamic-projecting glutamatergic cortical neuron': {'corticothalamic VAL/VM projecting glutamatergic neuron of the primary motor cortex': {}}},\n",
+ " 'L6b glutamatergic cortical neuron': {'L6b subplate glutamatergic neuron of the primary motor cortex': {}},\n",
+ " 'amygdala excitatory neuron': {},\n",
+ " 'thalamic excitatory neuron': {},\n",
+ " 'unipolar brush cell': {}},\n",
+ " 'serotonergic neuron': {},\n",
+ " 'bistratified cell': {'bistratified retinal ganglion cell': {'G3 retinal ganglion cell': {},\n",
+ " 'G7 retinal ganglion cell': {},\n",
+ " 'retinal ganglion cell D1': {},\n",
+ " 'retinal ganglion cell D2': {},\n",
+ " 'M11 retinal ganglion cell': {},\n",
+ " 'M12 retinal ganglion cell': {},\n",
+ " 'M13 retinal ganglion cell': {},\n",
+ " 'M14 retinal ganglion cell': {},\n",
+ " 'small bistratified retinal ganglion cell': {}},\n",
+ " 'bistratified retinal amacrine cell': {'A2 amacrine cell': {},\n",
+ " 'flat bistratified amacrine cell': {},\n",
+ " 'A2-like amacrine cell': {},\n",
+ " 'diffuse bistratified amacrine cell': {},\n",
+ " 'DAPI-3 amacrine cell': {},\n",
+ " 'asymmetric bistratified amacrine cell': {},\n",
+ " 'wavy bistratified amacrine cell': {}}},\n",
+ " 'visual system neuron': {'retinal bipolar neuron': {'ON-bipolar cell': {'rod bipolar cell': {'rod bipolar cell (sensu Mus)': {}},\n",
+ " 'ON-blue cone bipolar cell': {},\n",
+ " 'diffuse bipolar 4 cell': {},\n",
+ " 'diffuse bipolar 6 cell': {},\n",
+ " 'invaginating midget bipolar cell': {},\n",
+ " 'giant bipolar cell': {}},\n",
+ " 'OFF-bipolar cell': {'diffuse bipolar 1 cell': {},\n",
+ " 'diffuse bipolar 2 cell': {},\n",
+ " 'diffuse bipolar 3a cell': {},\n",
+ " 'diffuse bipolar 3b cell': {},\n",
+ " 'flat midget bipolar cell': {},\n",
+ " 'OFFx cell': {}},\n",
+ " 'cone retinal bipolar cell': {'type 1 cone bipolar cell (sensu Mus)': {},\n",
+ " 'type 2 cone bipolar cell (sensu Mus)': {},\n",
+ " 'type 3 cone bipolar cell (sensu Mus)': {'type 3a cone bipolar cell': {},\n",
+ " 'type 3b cone bipolar cell': {}},\n",
+ " 'type 4 cone bipolar cell (sensu Mus)': {},\n",
+ " 'type 5 cone bipolar cell (sensu Mus)': {'type 5a cone bipolar cell': {},\n",
+ " 'type 5b cone bipolar cell': {}},\n",
+ " 'type 6 cone bipolar cell (sensu Mus)': {},\n",
+ " 'type 7 cone bipolar cell (sensu Mus)': {},\n",
+ " 'type 8 cone bipolar cell (sensu Mus)': {},\n",
+ " 'type 9 cone bipolar cell (sensu Mus)': {}}}},\n",
+ " 'cardiac neuron': {},\n",
+ " 'galanergic neuron': {},\n",
+ " 'hypocretin-secreting neuron': {},\n",
+ " 'histaminergic neuron': {},\n",
+ " 'spiral ganglion neuron': {'type 1 spiral ganglion neuron': {},\n",
+ " 'type 2 spiral ganglion neuron': {}},\n",
+ " 'olfactory bulb tufted cell': {},\n",
+ " 'glycinergic neuron': {'cartwheel cell': {},\n",
+ " 'glycinergic amacrine cell': {}},\n",
+ " 'central nervous system neuron': {'CNS interneuron': {'CNS short range interneuron': {},\n",
+ " 'CNS long range interneuron': {},\n",
+ " 'local interneuron': {},\n",
+ " 'spinal cord interneuron': {'Kolmer-Agduhr neuron': {},\n",
+ " 'dorsal horn interneuron': {},\n",
+ " 'spinal cord ventral column interneuron': {}},\n",
+ " 'cortical interneuron': {'cerebral cortex GABAergic interneuron': {'rosehip neuron': {},\n",
+ " 'neocortex basket cell': {'large basket cell': {},\n",
+ " 'nest basket cell': {},\n",
+ " 'small basket cell': {}},\n",
+ " 'dentate gyrus of hippocampal formation basket cell': {},\n",
+ " \"Ammon's horn basket cell\": {},\n",
+ " 'alpha7 GABAergic cortical interneuron (Mmus)': {},\n",
+ " 'lamp5 GABAergic cortical interneuron': {'canopy lamp5 GABAergic cortical interneuron (Mmus)': {},\n",
+ " 'L5,6 neurogliaform lamp5 GABAergic cortical interneuron (Mmus)': {},\n",
+ " 'neurogliaform lamp5 GABAergic cortical interneuron (Mmus)': {}},\n",
+ " 'sncg GABAergic cortical interneuron': {},\n",
+ " 'vip GABAergic cortical interneuron': {'L2/3 bipolar vip GABAergic cortical interneuron (Mmus)': {},\n",
+ " 'L5 vip cortical GABAergic interneuron (Mmus)': {},\n",
+ " 'L5/6 cck, vip cortical GABAergic interneuron (Mmus)': {}},\n",
+ " 'sst GABAergic cortical interneuron': {'L5 T-Martinotti sst GABAergic cortical interneuron (Mmus)': {},\n",
+ " 'L5 non-Martinotti sst GABAergic cortical interneuron (Mmus)': {},\n",
+ " 'L2/3/5 fan Martinotti sst GABAergic cortical interneuron (Mmus)': {},\n",
+ " 'L4 sst GABAergic cortical interneuron (Mmus)': {},\n",
+ " 'L6 tyrosine hydroxylase sst GABAergic cortical interneuron (Mmus)': {},\n",
+ " 'L5/6 non-Martinotti sst GABAergic cortical interneuron (Mmus)': {},\n",
+ " 'sst chodl GABAergic cortical interneuron': {'long-range projecting sst GABAergic cortical interneuron (Mmus)': {}},\n",
+ " 'oxytocin receptor sst GABAergic cortical interneuron': {}},\n",
+ " 'pvalb GABAergic cortical interneuron': {'chandelier pvalb GABAergic cortical interneuron': {}},\n",
+ " 'medial ganglionic eminence derived GABAergic cortical interneuron': {},\n",
+ " 'caudal ganglionic eminence derived GABAergic cortical interneuron': {},\n",
+ " 'L5/6 cck cortical GABAergic interneuron (Mmus)': {'L5/6 cck, vip cortical GABAergic interneuron (Mmus)': {}},\n",
+ " 'reelin GABAergic cortical interneuron': {}},\n",
+ " 'hippocampal interneuron': {'dentate gyrus of hippocampal formation basket cell': {},\n",
+ " \"Ammon's horn basket cell\": {}}},\n",
+ " 'olfactory bulb interneuron': {'olfactory granule cell': {},\n",
+ " 'periglomerular cell': {},\n",
+ " 'mitral cell': {}},\n",
+ " 'cerebellum basket cell': {},\n",
+ " 'cerebellar inhibitory GABAergic interneuron': {'cerebellar Golgi cell': {},\n",
+ " 'Lugaro cell': {}},\n",
+ " 'unipolar brush cell': {}},\n",
+ " 'Cajal-Retzius cell': {},\n",
+ " 'raphe nuclei neuron': {},\n",
+ " 'neuron of the dorsal spinal cord': {},\n",
+ " 'neuron of the ventral spinal cord': {},\n",
+ " 'neuron of the substantia nigra': {},\n",
+ " 'monostratified cell': {},\n",
+ " 'cranial visceromotor neuron': {},\n",
+ " 'cerebral cortex neuron': {'cortical granule cell': {'hippocampal granule cell': {'dentate gyrus granule cell': {}}},\n",
+ " 'hippocampal neuron': {'hippocampal granule cell': {'dentate gyrus granule cell': {}},\n",
+ " 'hippocampal interneuron': {'dentate gyrus of hippocampal formation basket cell': {},\n",
+ " \"Ammon's horn basket cell\": {}},\n",
+ " 'hippocampal pyramidal neuron': {},\n",
+ " 'hippocampal CA1-3 neuron': {},\n",
+ " 'dentate gyrus neuron': {'dentate gyrus of hippocampal formation basket cell': {},\n",
+ " 'dentate gyrus granule cell': {},\n",
+ " 'dentate gyrus of hippocampal formation stellate cell': {},\n",
+ " 'dentate gyrus kisspeptin neuron': {}}},\n",
+ " 'cortical interneuron': {'cerebral cortex GABAergic interneuron': {'rosehip neuron': {},\n",
+ " 'neocortex basket cell': {'large basket cell': {},\n",
+ " 'nest basket cell': {},\n",
+ " 'small basket cell': {}},\n",
+ " 'dentate gyrus of hippocampal formation basket cell': {},\n",
+ " \"Ammon's horn basket cell\": {},\n",
+ " 'alpha7 GABAergic cortical interneuron (Mmus)': {},\n",
+ " 'lamp5 GABAergic cortical interneuron': {'canopy lamp5 GABAergic cortical interneuron (Mmus)': {},\n",
+ " 'L5,6 neurogliaform lamp5 GABAergic cortical interneuron (Mmus)': {},\n",
+ " 'neurogliaform lamp5 GABAergic cortical interneuron (Mmus)': {}},\n",
+ " 'sncg GABAergic cortical interneuron': {},\n",
+ " 'vip GABAergic cortical interneuron': {'L2/3 bipolar vip GABAergic cortical interneuron (Mmus)': {},\n",
+ " 'L5 vip cortical GABAergic interneuron (Mmus)': {},\n",
+ " 'L5/6 cck, vip cortical GABAergic interneuron (Mmus)': {}},\n",
+ " 'sst GABAergic cortical interneuron': {'L5 T-Martinotti sst GABAergic cortical interneuron (Mmus)': {},\n",
+ " 'L5 non-Martinotti sst GABAergic cortical interneuron (Mmus)': {},\n",
+ " 'L2/3/5 fan Martinotti sst GABAergic cortical interneuron (Mmus)': {},\n",
+ " 'L4 sst GABAergic cortical interneuron (Mmus)': {},\n",
+ " 'L6 tyrosine hydroxylase sst GABAergic cortical interneuron (Mmus)': {},\n",
+ " 'L5/6 non-Martinotti sst GABAergic cortical interneuron (Mmus)': {},\n",
+ " 'sst chodl GABAergic cortical interneuron': {'long-range projecting sst GABAergic cortical interneuron (Mmus)': {}},\n",
+ " 'oxytocin receptor sst GABAergic cortical interneuron': {}},\n",
+ " 'pvalb GABAergic cortical interneuron': {'chandelier pvalb GABAergic cortical interneuron': {}},\n",
+ " 'medial ganglionic eminence derived GABAergic cortical interneuron': {},\n",
+ " 'caudal ganglionic eminence derived GABAergic cortical interneuron': {},\n",
+ " 'L5/6 cck cortical GABAergic interneuron (Mmus)': {'L5/6 cck, vip cortical GABAergic interneuron (Mmus)': {}},\n",
+ " 'reelin GABAergic cortical interneuron': {}},\n",
+ " 'hippocampal interneuron': {'dentate gyrus of hippocampal formation basket cell': {},\n",
+ " \"Ammon's horn basket cell\": {}}},\n",
+ " 'intratelencephalic-projecting glutamatergic cortical neuron': {'L2/3-6 intratelencephalic projecting glutamatergic cortical neuron': {'L2/3 intratelencephalic projecting glutamatergic neuron of the primary motor cortex': {},\n",
+ " 'L4/5 intratelencephalic projecting glutamatergic neuron of the primary motor cortex': {},\n",
+ " 'L5 intratelencephalic projecting glutamatergic neuron of the primary motor cortex': {},\n",
+ " 'L6 intratelencephalic projecting glutamatergic neuron of the primary motor cortex': {'stellate L6 intratelencephalic projecting glutamatergic neuron of the primary motor cortex (Mmus)': {},\n",
+ " 'inverted L6 intratelencephalic projecting glutamatergic neuron of the primary motor cortex (Mmus)': {}}}},\n",
+ " 'extratelencephalic-projecting glutamatergic cortical neuron': {'L5 extratelencephalic projecting glutamatergic cortical neuron': {'Betz cell': {'Betz upper motor neuron': {},\n",
+ " 'spinal interneuron synapsing Betz cell': {}},\n",
+ " 'non-medulla, extratelencephalic-projecting glutamatergic neuron of the primary motor cortex': {},\n",
+ " 'medulla-projecting glutamatergic neuron of the primary motor cortex': {}},\n",
+ " 'von Economo neuron': {}},\n",
+ " 'near-projecting glutamatergic cortical neuron': {'L5/6 near-projecting glutamatergic neuron of the primary motor cortex': {}},\n",
+ " 'corticothalamic-projecting glutamatergic cortical neuron': {'L6 corticothalamic-projecting glutamatergic cortical neuron': {'corticothalamic VAL/VM projecting glutamatergic neuron of the primary motor cortex': {}}},\n",
+ " 'L6b glutamatergic cortical neuron': {'L6b subplate glutamatergic neuron of the primary motor cortex': {}},\n",
+ " 'meis2 expressing cortical GABAergic cell': {},\n",
+ " 'cerebral cortex pyramidal neuron': {'hippocampal pyramidal neuron': {},\n",
+ " 'primary motor cortex pyramidal cell': {'Betz cell': {'Betz upper motor neuron': {},\n",
+ " 'spinal interneuron synapsing Betz cell': {}},\n",
+ " 'Meynert cell': {},\n",
+ " 'non-medulla, extratelencephalic-projecting glutamatergic neuron of the primary motor cortex': {},\n",
+ " 'medulla-projecting glutamatergic neuron of the primary motor cortex': {},\n",
+ " 'L6 intratelencephalic projecting glutamatergic neuron of the primary motor cortex': {'stellate L6 intratelencephalic projecting glutamatergic neuron of the primary motor cortex (Mmus)': {},\n",
+ " 'inverted L6 intratelencephalic projecting glutamatergic neuron of the primary motor cortex (Mmus)': {}},\n",
+ " 'corticothalamic VAL/VM projecting glutamatergic neuron of the primary motor cortex': {}},\n",
+ " 'L5 extratelencephalic projecting glutamatergic cortical neuron': {'Betz cell': {'Betz upper motor neuron': {},\n",
+ " 'spinal interneuron synapsing Betz cell': {}},\n",
+ " 'non-medulla, extratelencephalic-projecting glutamatergic neuron of the primary motor cortex': {},\n",
+ " 'medulla-projecting glutamatergic neuron of the primary motor cortex': {}}}},\n",
+ " 'spinal cord motor neuron': {'lateral motor column neuron': {},\n",
+ " 'anterior horn motor neuron': {}},\n",
+ " 'magnocellular neurosecretory cell': {'oxytocin-secreting magnocellular cell': {},\n",
+ " 'vasopressin-secreting magnocellular cell': {}},\n",
+ " 'neuron of the forebrain': {'olfactory granule cell': {},\n",
+ " 'cortical granule cell': {'hippocampal granule cell': {'dentate gyrus granule cell': {}}},\n",
+ " 'striatum neuron': {'Island of Calleja granule cell': {}},\n",
+ " 'dentate gyrus of hippocampal formation stellate cell': {}},\n",
+ " 'retrotrapezoid nucleus neuron': {},\n",
+ " 'medium spiny neuron': {'direct pathway medium spiny neuron': {'matrix D1 medium spiny neuron': {},\n",
+ " 'striosomal D1 medium spiny neuron': {}},\n",
+ " 'indirect pathway medium spiny neuron': {'matrix D2 medium spiny neuron': {},\n",
+ " 'striosomal D2 medium spiny neuron': {}},\n",
+ " 'D1/D2-hybrid medium spiny neuron': {},\n",
+ " 'nucleus accumbens shell and olfactory tubercle D1 medium spiny neuron': {},\n",
+ " 'nucleus accumbens shell and olfactory tubercle D2 medium spiny neuron': {},\n",
+ " 'RXFP1-positive interface island D1-medium spiny neuron': {},\n",
+ " 'eccentric medium spiny neuron': {}},\n",
+ " 'lateral ventricle neuron': {},\n",
+ " 'cerebellar neuron': {'Purkinje cell': {},\n",
+ " 'cerebellar stellate cell': {},\n",
+ " 'cerebellum basket cell': {},\n",
+ " 'cerebellum glutamatergic neuron': {'cerebellar granule cell': {}},\n",
+ " 'cerebellar inhibitory GABAergic interneuron': {'cerebellar Golgi cell': {},\n",
+ " 'Lugaro cell': {}}},\n",
+ " 'spinal cord medial motor column neuron': {},\n",
+ " 'brainstem motor neuron': {},\n",
+ " 'midbrain dopaminergic neuron': {},\n",
+ " 'amygdala excitatory neuron': {},\n",
+ " 'thalamic excitatory neuron': {},\n",
+ " 'mammillary body neuron': {},\n",
+ " 'reticulospinal neuron': {},\n",
+ " 'amygdala pyramidal neuron': {},\n",
+ " 'hypothalamus kisspeptin neuron': {'KNDy neuron': {'arcuate nucleus of hypothalamus KNDy neuron': {},\n",
+ " 'rostral periventricular region of the third ventricle KNDy neuron': {}}},\n",
+ " 'octopus cell of the mammalian cochlear nucleus': {},\n",
+ " 'cartwheel cell': {},\n",
+ " 'bushy cell': {'spherical bushy cell': {}, 'globular bushy cell': {}},\n",
+ " 'koniocellular cell': {}},\n",
+ " 'lateral line ganglion neuron': {'anterior lateral line ganglion neuron': {},\n",
+ " 'posterior lateral line ganglion neuron': {}},\n",
+ " 'peripheral nervous system neuron': {'autonomic neuron': {'enteric neuron': {},\n",
+ " 'parasympathetic neuron': {},\n",
+ " 'sympathetic neuron': {'sympathetic noradrenergic neuron': {},\n",
+ " 'sympathetic cholinergic neuron': {}}},\n",
+ " 'kidney nerve cell': {},\n",
+ " 'peripheral sensory neuron': {'sensory neuron of spinal nerve': {}}},\n",
+ " 'hippocampal CA4 neuron': {},\n",
+ " 'midbrain-derived inhibitory neuron': {},\n",
+ " 'kisspeptin neuron': {'hypothalamus kisspeptin neuron': {'KNDy neuron': {'arcuate nucleus of hypothalamus KNDy neuron': {},\n",
+ " 'rostral periventricular region of the third ventricle KNDy neuron': {}}},\n",
+ " 'dentate gyrus kisspeptin neuron': {}},\n",
+ " 'somatosensory neuron': {'touch receptor cell': {},\n",
+ " 'Rohon-Beard neuron': {},\n",
+ " 'sensory neuron of dorsal root ganglion': {},\n",
+ " 'trigeminal sensory neuron': {}},\n",
+ " 'trigeminal neuron': {'trigeminal sensory neuron': {},\n",
+ " 'trigeminal motor neuron': {}},\n",
+ " 'catecholaminergic neuron': {'adrenergic neuron': {},\n",
+ " 'dopaminergic neuron': {'dopamanergic interplexiform cell': {},\n",
+ " 'midbrain dopaminergic neuron': {}},\n",
+ " 'noradrenergic neuron': {'sympathetic noradrenergic neuron': {}}}}}},\n",
+ " 'absorptive cell': {'gut absorptive cell': {'enterocyte': {'enterocyte of epithelium of large intestine': {'enterocyte of epithelium proper of large intestine': {},\n",
+ " 'enterocyte of colon': {}},\n",
+ " 'enterocyte of appendix': {},\n",
+ " 'enterocyte of anorectum': {},\n",
+ " 'vacuolated fetal-type enterocyte': {},\n",
+ " 'lysosome-rich enterocyte': {},\n",
+ " 'enterocyte of epithelium of small intestine': {'enterocyte of epithelium of intestinal villus': {},\n",
+ " 'enterocyte of epithelium of crypt of Lieberkuhn of small intestine': {},\n",
+ " 'enterocyte of epithelium proper of small intestine': {'enterocyte of epithelium proper of duodenum': {},\n",
+ " 'enterocyte of epithelium proper of jejunum': {},\n",
+ " 'enterocyte of epithelium proper of ileum': {}}},\n",
+ " 'enterocyte of epithelium of duodenal gland': {}},\n",
+ " 'BEST4+ intestinal epithelial cell, human': {}}},\n",
+ " 'barrier cell': {'lining cell': {'mesothelial cell': {'littoral cell of liver': {},\n",
+ " 'seminiferous tubule epithelial cell': {'Sertoli cell': {},\n",
+ " 'peritubular myoid cell': {}},\n",
+ " 'mesothelial cell of small intestine': {},\n",
+ " 'mesothelial cell of colon': {},\n",
+ " 'mesothelial cell of appendix': {},\n",
+ " 'mesothelial cell of epicardium': {},\n",
+ " 'mesothelial cell of dura mater': {},\n",
+ " 'mesothelial cell of anterior chamber of eye': {},\n",
+ " 'mesothelial cell of peritoneum': {'mesothelial cell of parietal peritoneum': {},\n",
+ " 'mesothelial cell of visceral peritoneum': {}},\n",
+ " 'mesothelial cell of pleura': {'mesothelial cell of parietal pleura': {},\n",
+ " 'mesothelial cell of visceral pleura': {}}},\n",
+ " 'endothelial cell': {'gut endothelial cell': {},\n",
+ " 'corneal endothelial cell': {},\n",
+ " 'endothelial cell of vascular tree': {'blood vessel endothelial cell': {'endothelial tip cell': {},\n",
+ " 'vein endothelial cell': {'endothelial cell of umbilical vein': {},\n",
+ " 'vasa recta cell': {'inner renal medulla vasa recta cell': {'inner medulla vasa recta ascending limb cell': {},\n",
+ " 'inner medulla vasa recta descending limb cell': {}},\n",
+ " 'outer renal medulla vasa recta cell': {'outer medulla vasa recta ascending limb cell': {},\n",
+ " 'outer medulla vasa recta descending limb cell': {}},\n",
+ " 'vasa recta ascending limb cell': {'inner medulla vasa recta ascending limb cell': {},\n",
+ " 'outer medulla vasa recta ascending limb cell': {}},\n",
+ " 'vasa recta descending limb cell': {'inner medulla vasa recta descending limb cell': {},\n",
+ " 'outer medulla vasa recta descending limb cell': {}}},\n",
+ " 'arcuate vein endothelial cell': {},\n",
+ " 'interlobulary vein endothelial cell': {},\n",
+ " 'hindlimb stylopod vein endothelial cell': {},\n",
+ " 'vein endothelial cell of respiratory system': {}},\n",
+ " 'retinal blood vessel endothelial cell': {},\n",
+ " 'endothelial stalk cell': {},\n",
+ " 'cardiac blood vessel endothelial cell': {'endothelial cell of coronary artery': {}},\n",
+ " 'endothelial cell of arteriole': {'kidney afferent arteriole endothelial cell': {},\n",
+ " 'kidney efferent arteriole endothelial cell': {},\n",
+ " 'endothelial cell of arteriole of lymph node': {}},\n",
+ " 'endothelial cell of artery': {'aortic endothelial cell': {'thoracic aorta endothelial cell': {}},\n",
+ " 'arcuate artery endothelial cell': {},\n",
+ " 'interlobulary artery endothelial cell': {'kidney afferent arteriole endothelial cell': {}},\n",
+ " 'pulmonary artery endothelial cell': {},\n",
+ " 'endothelial cell of coronary artery': {},\n",
+ " 'umbilical artery endothelial cell': {}},\n",
+ " 'kidney capillary endothelial cell': {'glomerular capillary endothelial cell': {},\n",
+ " 'peritubular capillary endothelial cell': {'kidney outer medulla peritubular capillary cell': {},\n",
+ " 'kidney cortex peritubular capillary cell': {}},\n",
+ " 'vasa recta cell': {'inner renal medulla vasa recta cell': {'inner medulla vasa recta ascending limb cell': {},\n",
+ " 'inner medulla vasa recta descending limb cell': {}},\n",
+ " 'outer renal medulla vasa recta cell': {'outer medulla vasa recta ascending limb cell': {},\n",
+ " 'outer medulla vasa recta descending limb cell': {}},\n",
+ " 'vasa recta ascending limb cell': {'inner medulla vasa recta ascending limb cell': {},\n",
+ " 'outer medulla vasa recta ascending limb cell': {}},\n",
+ " 'vasa recta descending limb cell': {'inner medulla vasa recta descending limb cell': {},\n",
+ " 'outer medulla vasa recta descending limb cell': {}}}},\n",
+ " 'microvascular endothelial cell': {'capillary endothelial cell': {'glomerular capillary endothelial cell': {},\n",
+ " 'placental villus capillary endothelial cell': {},\n",
+ " 'pulmonary capillary endothelial cell': {'alveolar capillary type 1 endothelial cell': {},\n",
+ " 'alveolar capillary type 2 endothelial cell': {}}},\n",
+ " 'dermal microvascular endothelial cell': {},\n",
+ " 'lung microvascular endothelial cell': {'pulmonary capillary endothelial cell': {'alveolar capillary type 1 endothelial cell': {},\n",
+ " 'alveolar capillary type 2 endothelial cell': {}}},\n",
+ " 'bladder microvascular endothelial cell': {},\n",
+ " 'brain microvascular endothelial cell': {},\n",
+ " 'prostate gland microvascular endothelial cell': {},\n",
+ " 'ovarian microvascular endothelial cell': {},\n",
+ " 'mammary microvascular endothelial cell': {},\n",
+ " 'adipose microvascular endothelial cell': {},\n",
+ " 'endometrial microvascular endothelial cell': {}},\n",
+ " 'dermis blood vessel endothelial cell': {'dermal microvascular endothelial cell': {}}},\n",
+ " 'endothelial cell of lymphatic vessel': {'lymphatic endothelial cell of subcapsular sinus ceiling': {},\n",
+ " 'lymphatic endothelial cell of subcapsular sinus floor': {},\n",
+ " 'lymphatic endothelial cell of trabecula': {},\n",
+ " 'lymphatic endothelial cell of medulla ceiling': {},\n",
+ " 'dermis lymphatic vessel endothelial cell': {'dermis microvascular lymphatic vessel endothelial cell': {}}},\n",
+ " 'endothelial cell of venule': {'endothelial cell of high endothelial venule': {},\n",
+ " 'squamous endothelial cell': {}},\n",
+ " 'lung endothelial cell': {'lung microvascular endothelial cell': {'pulmonary capillary endothelial cell': {'alveolar capillary type 1 endothelial cell': {},\n",
+ " 'alveolar capillary type 2 endothelial cell': {}}}}},\n",
+ " 'glomerular endothelial cell': {'glomerular capillary endothelial cell': {}},\n",
+ " 'endothelial cell of sinusoid': {'endothelial cell of venous sinus of spleen': {'endothelial cell of venous sinus of red pulp of spleen': {}},\n",
+ " 'endothelial cell of hepatic sinusoid': {'endothelial cell of periportal hepatic sinusoid': {},\n",
+ " 'endothelial cell of pericentral hepatic sinusoid': {}}},\n",
+ " 'circulating endothelial cell': {},\n",
+ " 'trabecular meshwork cell': {},\n",
+ " 'endothelial cell of respiratory system lymphatic vessel': {},\n",
+ " 'endothelial cell of placenta': {'placental villus capillary endothelial cell': {}},\n",
+ " 'endothelial cell of hepatic portal vein': {},\n",
+ " 'endothelial cell of uterus': {'endometrial microvascular endothelial cell': {}},\n",
+ " 'lymph node lymphatic vessel endothelial cell': {'lymphatic endothelial cell of subcapsular sinus ceiling': {},\n",
+ " 'lymphatic endothelial cell of subcapsular sinus floor': {},\n",
+ " 'lymphatic endothelial cell of trabecula': {},\n",
+ " 'lymphatic endothelial cell of medulla ceiling': {}},\n",
+ " 'cardiac endothelial cell': {'endocardial cell': {},\n",
+ " 'cardiac blood vessel endothelial cell': {'endothelial cell of coronary artery': {}},\n",
+ " 'valve endothelial cell': {}},\n",
+ " \"endothelial cell of Peyer's patch\": {},\n",
+ " 'ureter adventitial cell': {'fibrocyte of adventitia of ureter': {}},\n",
+ " 'colon endothelial cell': {},\n",
+ " 'cerebral cortex endothelial cell': {},\n",
+ " 'splenic endothelial cell': {'endothelial cell of venous sinus of red pulp of spleen': {}},\n",
+ " 'endothelial cell of venule of lymph node': {},\n",
+ " 'endothelial cell of efferent lymphatic vessel': {}},\n",
+ " 'synovial cell': {'type B synovial cell': {}, 'type A synovial cell': {}}},\n",
+ " 'insulating cell': {'myelinating Schwann cell': {}}},\n",
+ " 'motile cell': {'phagocyte': {'mature neutrophil': {'band form neutrophil': {},\n",
+ " 'segmented neutrophil of bone marrow': {}},\n",
+ " 'macrophage': {'elicited macrophage': {'suppressor macrophage': {'kidney interstitial suppressor macrophage': {}},\n",
+ " 'inflammatory macrophage': {'kidney interstitial inflammatory macrophage': {}},\n",
+ " 'alternatively activated macrophage': {'kidney interstitial alternatively activated macrophage': {}}},\n",
+ " 'tissue-resident macrophage': {'Kupffer cell': {},\n",
+ " 'peritoneal macrophage': {},\n",
+ " 'alveolar macrophage': {'CCL3-positive alveolar macrophage': {},\n",
+ " 'metallothionein-positive alveolar macrophage': {}},\n",
+ " 'mesangial phagocyte': {},\n",
+ " 'thymic macrophage': {'thymic medullary macrophage': {},\n",
+ " 'thymic cortical macrophage': {}},\n",
+ " 'secondary lymphoid organ macrophage': {'lymph node macrophage': {'lymph node subcapsular sinus macrophage': {},\n",
+ " 'lymph node tingible body macrophage': {}},\n",
+ " 'splenic macrophage': {'splenic marginal zone macrophage': {},\n",
+ " 'splenic metallophillic macrophage': {},\n",
+ " 'splenic red pulp macrophage': {},\n",
+ " 'splenic white pulp macrophage': {'splenic tingible body macrophage': {}}},\n",
+ " 'mucosa-associated lymphoid tissue macrophage': {'gut-associated lymphoid tissue macrophage': {'gastrointestinal tract (lamina propria) macrophage': {'gastrointestinal tract (lamina propria) macrophage of small intestine': {},\n",
+ " 'gastrointestinal tract (lamina propria) macrophage of large intestine': {}},\n",
+ " 'tonsillar macrophage': {},\n",
+ " \"Peyer's patch macrophage\": {}},\n",
+ " 'nasal and broncial associated lymphoid tissue macrophage': {}}},\n",
+ " 'central nervous system macrophage': {'microglial cell': {'immature microglial cell': {},\n",
+ " 'mature microglial cell': {}},\n",
+ " 'meningeal macrophage': {},\n",
+ " 'choroid-plexus macrophage': {},\n",
+ " 'perivascular macrophage': {}},\n",
+ " 'melanophage': {},\n",
+ " 'pleural macrophage': {},\n",
+ " 'bone marrow macrophage': {},\n",
+ " 'adipose macrophage': {'F4/80-negative adipose macrophage': {},\n",
+ " 'F4/80-positive adipose macrophage': {}},\n",
+ " 'kidney resident macrophage': {},\n",
+ " 'lung interstitial macrophage': {}},\n",
+ " 'epithelioid macrophage': {},\n",
+ " 'appendix macrophage': {},\n",
+ " 'colon macrophage': {},\n",
+ " 'macrophage of medullary sinus of lymph node': {},\n",
+ " 'anorectum macrophage': {},\n",
+ " 'lung macrophage': {'alveolar macrophage': {'CCL3-positive alveolar macrophage': {},\n",
+ " 'metallothionein-positive alveolar macrophage': {}},\n",
+ " 'lung interstitial macrophage': {}},\n",
+ " 'Hofbauer cell': {}},\n",
+ " 'phagocyte (sensu Vertebrata)': {'mononuclear phagocyte': {},\n",
+ " 'multinucleated phagocyte': {}},\n",
+ " 'phagocyte (sensu Nematoda and Protostomia)': {'coelomocyte': {},\n",
+ " 'pericardial nephrocyte': {},\n",
+ " 'garland cell': {}},\n",
+ " 'classical monocyte': {'CD14-positive, CD16-negative classical monocyte': {},\n",
+ " 'Gr1-high classical monocyte': {'MHC-II-negative classical monocyte': {'lymphoid MHC-II-negative classical monocyte': {}},\n",
+ " 'MHC-II-positive classical monocyte': {}}},\n",
+ " 'type A synovial cell': {},\n",
+ " 'glomerular mesangial cell': {}},\n",
+ " 'migratory neural crest cell': {'migratory cranial neural crest cell': {},\n",
+ " 'migratory trunk neural crest cell': {},\n",
+ " 'migratory enteric neural crest cell': {},\n",
+ " 'migratory cardiac neural crest cell': {'cardiac mesenchymal cell': {'endocardial cushion cell': {}}}},\n",
+ " 'primordial germ cell': {'pole cell': {},\n",
+ " 'male gonocyte': {},\n",
+ " 'ooblast': {}},\n",
+ " 'amoeboid cell': {},\n",
+ " 'leukocyte': {'professional antigen presenting cell': {'mature eosinophil': {},\n",
+ " 'macrophage': {'elicited macrophage': {'suppressor macrophage': {'kidney interstitial suppressor macrophage': {}},\n",
+ " 'inflammatory macrophage': {'kidney interstitial inflammatory macrophage': {}},\n",
+ " 'alternatively activated macrophage': {'kidney interstitial alternatively activated macrophage': {}}},\n",
+ " 'tissue-resident macrophage': {'Kupffer cell': {},\n",
+ " 'peritoneal macrophage': {},\n",
+ " 'alveolar macrophage': {'CCL3-positive alveolar macrophage': {},\n",
+ " 'metallothionein-positive alveolar macrophage': {}},\n",
+ " 'mesangial phagocyte': {},\n",
+ " 'thymic macrophage': {'thymic medullary macrophage': {},\n",
+ " 'thymic cortical macrophage': {}},\n",
+ " 'secondary lymphoid organ macrophage': {'lymph node macrophage': {'lymph node subcapsular sinus macrophage': {},\n",
+ " 'lymph node tingible body macrophage': {}},\n",
+ " 'splenic macrophage': {'splenic marginal zone macrophage': {},\n",
+ " 'splenic metallophillic macrophage': {},\n",
+ " 'splenic red pulp macrophage': {},\n",
+ " 'splenic white pulp macrophage': {'splenic tingible body macrophage': {}}},\n",
+ " 'mucosa-associated lymphoid tissue macrophage': {'gut-associated lymphoid tissue macrophage': {'gastrointestinal tract (lamina propria) macrophage': {'gastrointestinal tract (lamina propria) macrophage of small intestine': {},\n",
+ " 'gastrointestinal tract (lamina propria) macrophage of large intestine': {}},\n",
+ " 'tonsillar macrophage': {},\n",
+ " \"Peyer's patch macrophage\": {}},\n",
+ " 'nasal and broncial associated lymphoid tissue macrophage': {}}},\n",
+ " 'central nervous system macrophage': {'microglial cell': {'immature microglial cell': {},\n",
+ " 'mature microglial cell': {}},\n",
+ " 'meningeal macrophage': {},\n",
+ " 'choroid-plexus macrophage': {},\n",
+ " 'perivascular macrophage': {}},\n",
+ " 'melanophage': {},\n",
+ " 'pleural macrophage': {},\n",
+ " 'bone marrow macrophage': {},\n",
+ " 'adipose macrophage': {'F4/80-negative adipose macrophage': {},\n",
+ " 'F4/80-positive adipose macrophage': {}},\n",
+ " 'kidney resident macrophage': {},\n",
+ " 'lung interstitial macrophage': {}},\n",
+ " 'epithelioid macrophage': {},\n",
+ " 'appendix macrophage': {},\n",
+ " 'colon macrophage': {},\n",
+ " 'macrophage of medullary sinus of lymph node': {},\n",
+ " 'anorectum macrophage': {},\n",
+ " 'lung macrophage': {'alveolar macrophage': {'CCL3-positive alveolar macrophage': {},\n",
+ " 'metallothionein-positive alveolar macrophage': {}},\n",
+ " 'lung interstitial macrophage': {}},\n",
+ " 'Hofbauer cell': {}},\n",
+ " 'dendritic cell': {'plasmacytoid dendritic cell': {'thymic plasmacytoid dendritic cell': {},\n",
+ " 'CD11c-low plasmacytoid dendritic cell': {'immature CD11c-low plasmacytoid dendritic cell': {},\n",
+ " 'mature CD11c-low plasmacytoid dendritic cell': {},\n",
+ " 'CD8_alpha-negative plasmacytoid dendritic cell': {},\n",
+ " 'CD8_alpha-positive plasmacytoid dendritic cell': {}},\n",
+ " 'CD11c-negative plasmacytoid dendritic cell': {'immature CD11c-negative plasmacytoid dendritic cell': {},\n",
+ " 'mature CD11c-negative plasmacytoid dendritic cell': {}},\n",
+ " 'plasmacytoid dendritic cell, human': {},\n",
+ " 'CD141-positive myeloid dendritic cell': {}},\n",
+ " 'conventional dendritic cell': {'Langerhans cell': {'CD1a-positive Langerhans cell': {'immature CD1a-positive Langerhans cell': {},\n",
+ " 'mature CD1a-positive Langerhans cell': {}},\n",
+ " 'CD8_alpha-low Langerhans cell': {'immature CD8_alpha-low Langerhans cell': {},\n",
+ " 'mature CD8_alpha-low Langerhans cell': {}},\n",
+ " 'epidermal Langerhans cell': {}},\n",
+ " 'myeloid dendritic cell': {'myeloid dendritic cell, human': {},\n",
+ " 'CD141-positive myeloid dendritic cell': {},\n",
+ " 'CD1c-positive myeloid dendritic cell': {},\n",
+ " 'CD16-positive myeloid dendritic cell': {'immature CD16-positive myeloid dendritic cell': {},\n",
+ " 'mature CD16-positive myeloid dendritic cell': {}},\n",
+ " 'monocyte-derived dendritic cell': {}},\n",
+ " 'immature conventional dendritic cell': {'immature CD8_alpha-negative CD11b-positive dendritic cell': {},\n",
+ " 'immature CD8_alpha-negative CD11b-negative dendritic cell': {},\n",
+ " 'immature CD8_alpha-positive CD11b-negative dendritic cell': {},\n",
+ " 'immature dermal dendritic cell': {'immature CD14-positive dermal dendritic cell': {},\n",
+ " 'immature CD1a-positive dermal dendritic cell': {}},\n",
+ " 'immature interstitial dendritic cell': {},\n",
+ " 'immature CD1a-positive Langerhans cell': {},\n",
+ " 'immature CD8_alpha-low Langerhans cell': {},\n",
+ " 'immature CD16-positive myeloid dendritic cell': {}},\n",
+ " 'mature conventional dendritic cell': {'mature CD8_alpha-negative CD11b-negative dendritic cell': {},\n",
+ " 'mature CD8_alpha-negative CD11b-positive dendritic cell': {},\n",
+ " 'mature CD8_alpha-positive CD11b-negative dendritic cell': {},\n",
+ " 'mature dermal dendritic cell': {'mature CD14-positive dermal dendritic cell': {},\n",
+ " 'mature CD1a-positive dermal dendritic cell': {}},\n",
+ " 'mature interstitial dendritic cell': {},\n",
+ " 'mature CD1a-positive Langerhans cell': {},\n",
+ " 'mature CD8_alpha-low Langerhans cell': {},\n",
+ " 'mature CD16-positive myeloid dendritic cell': {}},\n",
+ " 'thymic conventional dendritic cell': {'CD8alpha-positive thymic conventional dendritic cell': {},\n",
+ " 'CD8alpha-negative thymic conventional dendritic cell': {}},\n",
+ " 'CD8_alpha-negative CD11b-negative dendritic cell': {'immature CD8_alpha-negative CD11b-negative dendritic cell': {},\n",
+ " 'mature CD8_alpha-negative CD11b-negative dendritic cell': {}},\n",
+ " 'CD8_alpha-positive CD11b-negative dendritic cell': {'immature CD8_alpha-positive CD11b-negative dendritic cell': {},\n",
+ " 'mature CD8_alpha-positive CD11b-negative dendritic cell': {}},\n",
+ " 'CD103-positive dendritic cell': {'langerin-positive dermal dendritic cell': {},\n",
+ " 'liver CD103-positive dendritic cell': {},\n",
+ " 'CD103-positive, langerin-positive lymph node dendritic cell': {}},\n",
+ " 'adipose dendritic cell': {'SIRPa-positive adipose dendritic cell': {},\n",
+ " 'SIRPa-negative adipose dendritic cell': {}},\n",
+ " 'CD11b-positive dendritic cell': {'CD4-positive CD11b-positive dendritic cell': {'immature CD8_alpha-negative CD11b-positive dendritic cell': {},\n",
+ " 'mature CD8_alpha-negative CD11b-positive dendritic cell': {}},\n",
+ " 'dermal dendritic cell': {'immature dermal dendritic cell': {'immature CD14-positive dermal dendritic cell': {},\n",
+ " 'immature CD1a-positive dermal dendritic cell': {}},\n",
+ " 'mature dermal dendritic cell': {'mature CD14-positive dermal dendritic cell': {},\n",
+ " 'mature CD1a-positive dermal dendritic cell': {}},\n",
+ " 'langerin-positive dermal dendritic cell': {},\n",
+ " 'langerin-negative dermal dendritic cell': {},\n",
+ " 'CD14-positive dermal dendritic cell': {'immature CD14-positive dermal dendritic cell': {},\n",
+ " 'mature CD14-positive dermal dendritic cell': {}},\n",
+ " 'CD1a-positive dermal dendritic cell': {'immature CD1a-positive dermal dendritic cell': {},\n",
+ " 'mature CD1a-positive dermal dendritic cell': {}}},\n",
+ " 'interstitial dendritic cell': {'immature interstitial dendritic cell': {},\n",
+ " 'mature interstitial dendritic cell': {},\n",
+ " 'kidney resident dendritic cell': {}},\n",
+ " 'Cd4-negative, CD8_alpha-negative, CD11b-positive dendritic cell': {'liver CD103-negative dendritic cell': {},\n",
+ " 'liver CD103-positive dendritic cell': {},\n",
+ " 'CD103-positive, langerin-positive lymph node dendritic cell': {},\n",
+ " 'CD103-negative, langerin-positive lymph node dendritic cell': {},\n",
+ " 'CD11b-low, CD103-negative, langerin-negative lymph node dendritic cell': {},\n",
+ " 'CD11b-high, CD103-negative, langerin-negative lymph node dendritic cell': {}},\n",
+ " 'epidermal Langerhans cell': {},\n",
+ " 'small intestine serosal dendritic cell': {}},\n",
+ " 'langerin-positive lymph node dendritic cell': {'CD103-positive, langerin-positive lymph node dendritic cell': {},\n",
+ " 'CD103-negative, langerin-positive lymph node dendritic cell': {}},\n",
+ " 'langerin-negative, CD103-negative lymph node dendritic cell': {'CD11b-low, CD103-negative, langerin-negative lymph node dendritic cell': {},\n",
+ " 'CD11b-high, CD103-negative, langerin-negative lymph node dendritic cell': {}}},\n",
+ " 'dendritic cell, human': {'myeloid dendritic cell, human': {},\n",
+ " 'plasmacytoid dendritic cell, human': {},\n",
+ " 'Axl+ dendritic cell, human': {}},\n",
+ " 'dendritic cell of appendix': {},\n",
+ " 'liver dendritic cell': {},\n",
+ " 'lung migratory dendritic cell': {}},\n",
+ " 'mature B cell': {'memory B cell': {'unswitched memory B cell': {'CD38-negative unswitched memory B cell': {'B220-positive CD38-negative unswitched memory B cell': {'B220-low CD38-negative unswitched memory B cell': {}}},\n",
+ " 'CD38-positive unswitched memory B cell': {'B220-positive CD38-positive unswitched memory B cell': {'B220-low CD38-positive unswitched memory B cell': {}}}},\n",
+ " 'class switched memory B cell': {'IgE memory B cell': {},\n",
+ " 'IgA memory B cell': {},\n",
+ " 'IgG memory B cell': {'CD38-positive IgG memory B cell': {'IgD-positive CD38-positive IgG memory B cell': {},\n",
+ " 'IgD-negative CD38-positive IgG memory B cell': {}},\n",
+ " 'CD38-negative IgG memory B cell': {}},\n",
+ " 'IgG-negative class switched memory B cell': {'CD38-negative IgG-negative class switched memory B cell': {'CD24-positive CD38-negative IgG-negative class switched memory B cell': {},\n",
+ " 'CD24-negative CD38-negative IgG-negative class switched memory B cell': {}},\n",
+ " 'CD38-positive IgG-negative class switched memory B cell': {'B220-positive CD38-positive IgG-negative class switched memory B cell': {'B220-low CD38-positive IgG-negative class switched memory B cell': {}}}}},\n",
+ " 'IgD-negative memory B cell': {'Bm5 B cell': {},\n",
+ " 'IgM memory B cell': {},\n",
+ " 'double negative memory B cell': {'IgG-positive double negative memory B cell': {},\n",
+ " 'IgG-negative double negative memory B cell': {}},\n",
+ " 'IgD-negative CD38-positive IgG memory B cell': {},\n",
+ " 'CD38-negative IgG memory B cell': {}}},\n",
+ " 'naive B cell': {'CD38-positive naive B cell': {'B220-positive CD38-positive naive B cell': {'B220-low CD38-positive naive B cell': {}}},\n",
+ " 'CD38-negative naive B cell': {}},\n",
+ " 'B-1 B cell': {'B-1a B cell': {}, 'B-1b B cell': {}},\n",
+ " 'B-2 B cell': {'follicular B cell': {'Bm1 B cell': {}, 'Bm2 B cell': {}},\n",
+ " 'fraction F mature B cell': {'Bm1 B cell': {}},\n",
+ " \"Peyer's patch B cell\": {}},\n",
+ " 'germinal center B cell': {'Bm3-delta B cell': {},\n",
+ " \"Bm2' B cell\": {},\n",
+ " 'Bm3 B cell': {},\n",
+ " 'Bm4 B cell': {},\n",
+ " 'centrocyte': {},\n",
+ " 'centroblast': {},\n",
+ " 'tonsil germinal center B cell': {}},\n",
+ " 'marginal zone B cell of spleen': {},\n",
+ " 'Be cell': {'Be1 Cell': {}, 'Be2 cell': {}},\n",
+ " 'regulatory B cell': {},\n",
+ " 'plasmablast': {'IgD plasmablast': {},\n",
+ " 'IgE plasmablast': {},\n",
+ " 'IgG plasmablast': {},\n",
+ " 'IgM plasmablast': {},\n",
+ " 'IgA plasmablast': {},\n",
+ " 'CD86-positive plasmablast': {}},\n",
+ " 'marginal zone B cell of lymph node': {}}},\n",
+ " 'myeloid leukocyte': {'osteoclast': {'odontoclast': {'multinuclear odontoclast': {},\n",
+ " 'mononuclear odontoclast': {}},\n",
+ " 'mononuclear osteoclast': {'mononuclear odontoclast': {}},\n",
+ " 'multinuclear osteoclast': {'multinuclear odontoclast': {}}},\n",
+ " 'granulocyte': {'basophil': {'mature basophil': {},\n",
+ " 'immature basophil': {'basophilic myelocyte': {},\n",
+ " 'basophilic metamyelocyte': {},\n",
+ " 'band form basophil': {}}},\n",
+ " 'eosinophil': {'mature eosinophil': {},\n",
+ " 'immature eosinophil': {'eosinophilic myelocyte': {},\n",
+ " 'eosinophilic metamyelocyte': {},\n",
+ " 'band form eosinophil': {'lung parenchyma resident eosinophil': {}}}},\n",
+ " 'neutrophil': {'mature neutrophil': {'band form neutrophil': {},\n",
+ " 'segmented neutrophil of bone marrow': {}},\n",
+ " 'immature neutrophil': {'neutrophilic myelocyte': {},\n",
+ " 'neutrophilic metamyelocyte': {}}}},\n",
+ " 'mast cell': {'connective tissue type mast cell': {},\n",
+ " 'mucosal type mast cell': {}},\n",
+ " 'macrophage': {'elicited macrophage': {'suppressor macrophage': {'kidney interstitial suppressor macrophage': {}},\n",
+ " 'inflammatory macrophage': {'kidney interstitial inflammatory macrophage': {}},\n",
+ " 'alternatively activated macrophage': {'kidney interstitial alternatively activated macrophage': {}}},\n",
+ " 'tissue-resident macrophage': {'Kupffer cell': {},\n",
+ " 'peritoneal macrophage': {},\n",
+ " 'alveolar macrophage': {'CCL3-positive alveolar macrophage': {},\n",
+ " 'metallothionein-positive alveolar macrophage': {}},\n",
+ " 'mesangial phagocyte': {},\n",
+ " 'thymic macrophage': {'thymic medullary macrophage': {},\n",
+ " 'thymic cortical macrophage': {}},\n",
+ " 'secondary lymphoid organ macrophage': {'lymph node macrophage': {'lymph node subcapsular sinus macrophage': {},\n",
+ " 'lymph node tingible body macrophage': {}},\n",
+ " 'splenic macrophage': {'splenic marginal zone macrophage': {},\n",
+ " 'splenic metallophillic macrophage': {},\n",
+ " 'splenic red pulp macrophage': {},\n",
+ " 'splenic white pulp macrophage': {'splenic tingible body macrophage': {}}},\n",
+ " 'mucosa-associated lymphoid tissue macrophage': {'gut-associated lymphoid tissue macrophage': {'gastrointestinal tract (lamina propria) macrophage': {'gastrointestinal tract (lamina propria) macrophage of small intestine': {},\n",
+ " 'gastrointestinal tract (lamina propria) macrophage of large intestine': {}},\n",
+ " 'tonsillar macrophage': {},\n",
+ " \"Peyer's patch macrophage\": {}},\n",
+ " 'nasal and broncial associated lymphoid tissue macrophage': {}}},\n",
+ " 'central nervous system macrophage': {'microglial cell': {'immature microglial cell': {},\n",
+ " 'mature microglial cell': {}},\n",
+ " 'meningeal macrophage': {},\n",
+ " 'choroid-plexus macrophage': {},\n",
+ " 'perivascular macrophage': {}},\n",
+ " 'melanophage': {},\n",
+ " 'pleural macrophage': {},\n",
+ " 'bone marrow macrophage': {},\n",
+ " 'adipose macrophage': {'F4/80-negative adipose macrophage': {},\n",
+ " 'F4/80-positive adipose macrophage': {}},\n",
+ " 'kidney resident macrophage': {},\n",
+ " 'lung interstitial macrophage': {}},\n",
+ " 'epithelioid macrophage': {},\n",
+ " 'appendix macrophage': {},\n",
+ " 'colon macrophage': {},\n",
+ " 'macrophage of medullary sinus of lymph node': {},\n",
+ " 'anorectum macrophage': {},\n",
+ " 'lung macrophage': {'alveolar macrophage': {'CCL3-positive alveolar macrophage': {},\n",
+ " 'metallothionein-positive alveolar macrophage': {}},\n",
+ " 'lung interstitial macrophage': {}},\n",
+ " 'Hofbauer cell': {}},\n",
+ " 'Langerhans cell': {'CD1a-positive Langerhans cell': {'immature CD1a-positive Langerhans cell': {},\n",
+ " 'mature CD1a-positive Langerhans cell': {}},\n",
+ " 'CD8_alpha-low Langerhans cell': {'immature CD8_alpha-low Langerhans cell': {},\n",
+ " 'mature CD8_alpha-low Langerhans cell': {}},\n",
+ " 'epidermal Langerhans cell': {}},\n",
+ " 'monocyte': {'classical monocyte': {'CD14-positive, CD16-negative classical monocyte': {},\n",
+ " 'Gr1-high classical monocyte': {'MHC-II-negative classical monocyte': {'lymphoid MHC-II-negative classical monocyte': {}},\n",
+ " 'MHC-II-positive classical monocyte': {}}},\n",
+ " 'non-classical monocyte': {'Gr1-low non-classical monocyte': {'MHC-II-negative non-classical monocyte': {'lymphoid MHC-II-negative non-classical monocyte': {}},\n",
+ " 'MHC-II-low non-classical monocyte': {},\n",
+ " 'MHC-II-high non-classical monocyte': {}},\n",
+ " 'CD14-low, CD16-positive monocyte': {}},\n",
+ " 'CD115-positive monocyte': {'Gr1-high classical monocyte': {'MHC-II-negative classical monocyte': {'lymphoid MHC-II-negative classical monocyte': {}},\n",
+ " 'MHC-II-positive classical monocyte': {}},\n",
+ " 'Gr1-positive, CD43-positive monocyte': {'Gr1-low non-classical monocyte': {'MHC-II-negative non-classical monocyte': {'lymphoid MHC-II-negative non-classical monocyte': {}},\n",
+ " 'MHC-II-low non-classical monocyte': {},\n",
+ " 'MHC-II-high non-classical monocyte': {}}}},\n",
+ " 'CD14-positive monocyte': {'CD14-positive, CD16-negative classical monocyte': {},\n",
+ " 'CD14-low, CD16-positive monocyte': {},\n",
+ " 'CD14-positive, CD16-positive monocyte': {'CD14-positive, CD16-low monocyte': {}}},\n",
+ " 'intermediate monocyte': {'CD14-positive, CD16-low monocyte': {},\n",
+ " 'Gr1-positive, CD43-positive monocyte': {'Gr1-low non-classical monocyte': {'MHC-II-negative non-classical monocyte': {'lymphoid MHC-II-negative non-classical monocyte': {}},\n",
+ " 'MHC-II-low non-classical monocyte': {},\n",
+ " 'MHC-II-high non-classical monocyte': {}}}}},\n",
+ " 'multinucleated giant cell': {},\n",
+ " 'myeloid dendritic cell': {'myeloid dendritic cell, human': {},\n",
+ " 'CD141-positive myeloid dendritic cell': {},\n",
+ " 'CD1c-positive myeloid dendritic cell': {},\n",
+ " 'CD16-positive myeloid dendritic cell': {'immature CD16-positive myeloid dendritic cell': {},\n",
+ " 'mature CD16-positive myeloid dendritic cell': {}},\n",
+ " 'monocyte-derived dendritic cell': {}},\n",
+ " 'immature conventional dendritic cell': {'immature CD8_alpha-negative CD11b-positive dendritic cell': {},\n",
+ " 'immature CD8_alpha-negative CD11b-negative dendritic cell': {},\n",
+ " 'immature CD8_alpha-positive CD11b-negative dendritic cell': {},\n",
+ " 'immature dermal dendritic cell': {'immature CD14-positive dermal dendritic cell': {},\n",
+ " 'immature CD1a-positive dermal dendritic cell': {}},\n",
+ " 'immature interstitial dendritic cell': {},\n",
+ " 'immature CD1a-positive Langerhans cell': {},\n",
+ " 'immature CD8_alpha-low Langerhans cell': {},\n",
+ " 'immature CD16-positive myeloid dendritic cell': {}},\n",
+ " 'mature conventional dendritic cell': {'mature CD8_alpha-negative CD11b-negative dendritic cell': {},\n",
+ " 'mature CD8_alpha-negative CD11b-positive dendritic cell': {},\n",
+ " 'mature CD8_alpha-positive CD11b-negative dendritic cell': {},\n",
+ " 'mature dermal dendritic cell': {'mature CD14-positive dermal dendritic cell': {},\n",
+ " 'mature CD1a-positive dermal dendritic cell': {}},\n",
+ " 'mature interstitial dendritic cell': {},\n",
+ " 'mature CD1a-positive Langerhans cell': {},\n",
+ " 'mature CD8_alpha-low Langerhans cell': {},\n",
+ " 'mature CD16-positive myeloid dendritic cell': {}},\n",
+ " 'myeloid suppressor cell': {'Gr1-high myeloid suppressor cell': {},\n",
+ " 'Gr1-low myeloid suppressor cell': {}},\n",
+ " 'immature CD11c-low plasmacytoid dendritic cell': {},\n",
+ " 'mature CD11c-low plasmacytoid dendritic cell': {},\n",
+ " 'CD8_alpha-negative CD11b-negative dendritic cell': {'immature CD8_alpha-negative CD11b-negative dendritic cell': {},\n",
+ " 'mature CD8_alpha-negative CD11b-negative dendritic cell': {}},\n",
+ " 'CD4-positive CD11b-positive dendritic cell': {'immature CD8_alpha-negative CD11b-positive dendritic cell': {},\n",
+ " 'mature CD8_alpha-negative CD11b-positive dendritic cell': {}},\n",
+ " 'CD8_alpha-positive CD11b-negative dendritic cell': {'immature CD8_alpha-positive CD11b-negative dendritic cell': {},\n",
+ " 'mature CD8_alpha-positive CD11b-negative dendritic cell': {}},\n",
+ " 'CD103-positive dendritic cell': {'langerin-positive dermal dendritic cell': {},\n",
+ " 'liver CD103-positive dendritic cell': {},\n",
+ " 'CD103-positive, langerin-positive lymph node dendritic cell': {}},\n",
+ " 'adipose dendritic cell': {'SIRPa-positive adipose dendritic cell': {},\n",
+ " 'SIRPa-negative adipose dendritic cell': {}}},\n",
+ " 'mononuclear cell': {'dendritic cell': {'plasmacytoid dendritic cell': {'thymic plasmacytoid dendritic cell': {},\n",
+ " 'CD11c-low plasmacytoid dendritic cell': {'immature CD11c-low plasmacytoid dendritic cell': {},\n",
+ " 'mature CD11c-low plasmacytoid dendritic cell': {},\n",
+ " 'CD8_alpha-negative plasmacytoid dendritic cell': {},\n",
+ " 'CD8_alpha-positive plasmacytoid dendritic cell': {}},\n",
+ " 'CD11c-negative plasmacytoid dendritic cell': {'immature CD11c-negative plasmacytoid dendritic cell': {},\n",
+ " 'mature CD11c-negative plasmacytoid dendritic cell': {}},\n",
+ " 'plasmacytoid dendritic cell, human': {},\n",
+ " 'CD141-positive myeloid dendritic cell': {}},\n",
+ " 'conventional dendritic cell': {'Langerhans cell': {'CD1a-positive Langerhans cell': {'immature CD1a-positive Langerhans cell': {},\n",
+ " 'mature CD1a-positive Langerhans cell': {}},\n",
+ " 'CD8_alpha-low Langerhans cell': {'immature CD8_alpha-low Langerhans cell': {},\n",
+ " 'mature CD8_alpha-low Langerhans cell': {}},\n",
+ " 'epidermal Langerhans cell': {}},\n",
+ " 'myeloid dendritic cell': {'myeloid dendritic cell, human': {},\n",
+ " 'CD141-positive myeloid dendritic cell': {},\n",
+ " 'CD1c-positive myeloid dendritic cell': {},\n",
+ " 'CD16-positive myeloid dendritic cell': {'immature CD16-positive myeloid dendritic cell': {},\n",
+ " 'mature CD16-positive myeloid dendritic cell': {}},\n",
+ " 'monocyte-derived dendritic cell': {}},\n",
+ " 'immature conventional dendritic cell': {'immature CD8_alpha-negative CD11b-positive dendritic cell': {},\n",
+ " 'immature CD8_alpha-negative CD11b-negative dendritic cell': {},\n",
+ " 'immature CD8_alpha-positive CD11b-negative dendritic cell': {},\n",
+ " 'immature dermal dendritic cell': {'immature CD14-positive dermal dendritic cell': {},\n",
+ " 'immature CD1a-positive dermal dendritic cell': {}},\n",
+ " 'immature interstitial dendritic cell': {},\n",
+ " 'immature CD1a-positive Langerhans cell': {},\n",
+ " 'immature CD8_alpha-low Langerhans cell': {},\n",
+ " 'immature CD16-positive myeloid dendritic cell': {}},\n",
+ " 'mature conventional dendritic cell': {'mature CD8_alpha-negative CD11b-negative dendritic cell': {},\n",
+ " 'mature CD8_alpha-negative CD11b-positive dendritic cell': {},\n",
+ " 'mature CD8_alpha-positive CD11b-negative dendritic cell': {},\n",
+ " 'mature dermal dendritic cell': {'mature CD14-positive dermal dendritic cell': {},\n",
+ " 'mature CD1a-positive dermal dendritic cell': {}},\n",
+ " 'mature interstitial dendritic cell': {},\n",
+ " 'mature CD1a-positive Langerhans cell': {},\n",
+ " 'mature CD8_alpha-low Langerhans cell': {},\n",
+ " 'mature CD16-positive myeloid dendritic cell': {}},\n",
+ " 'thymic conventional dendritic cell': {'CD8alpha-positive thymic conventional dendritic cell': {},\n",
+ " 'CD8alpha-negative thymic conventional dendritic cell': {}},\n",
+ " 'CD8_alpha-negative CD11b-negative dendritic cell': {'immature CD8_alpha-negative CD11b-negative dendritic cell': {},\n",
+ " 'mature CD8_alpha-negative CD11b-negative dendritic cell': {}},\n",
+ " 'CD8_alpha-positive CD11b-negative dendritic cell': {'immature CD8_alpha-positive CD11b-negative dendritic cell': {},\n",
+ " 'mature CD8_alpha-positive CD11b-negative dendritic cell': {}},\n",
+ " 'CD103-positive dendritic cell': {'langerin-positive dermal dendritic cell': {},\n",
+ " 'liver CD103-positive dendritic cell': {},\n",
+ " 'CD103-positive, langerin-positive lymph node dendritic cell': {}},\n",
+ " 'adipose dendritic cell': {'SIRPa-positive adipose dendritic cell': {},\n",
+ " 'SIRPa-negative adipose dendritic cell': {}},\n",
+ " 'CD11b-positive dendritic cell': {'CD4-positive CD11b-positive dendritic cell': {'immature CD8_alpha-negative CD11b-positive dendritic cell': {},\n",
+ " 'mature CD8_alpha-negative CD11b-positive dendritic cell': {}},\n",
+ " 'dermal dendritic cell': {'immature dermal dendritic cell': {'immature CD14-positive dermal dendritic cell': {},\n",
+ " 'immature CD1a-positive dermal dendritic cell': {}},\n",
+ " 'mature dermal dendritic cell': {'mature CD14-positive dermal dendritic cell': {},\n",
+ " 'mature CD1a-positive dermal dendritic cell': {}},\n",
+ " 'langerin-positive dermal dendritic cell': {},\n",
+ " 'langerin-negative dermal dendritic cell': {},\n",
+ " 'CD14-positive dermal dendritic cell': {'immature CD14-positive dermal dendritic cell': {},\n",
+ " 'mature CD14-positive dermal dendritic cell': {}},\n",
+ " 'CD1a-positive dermal dendritic cell': {'immature CD1a-positive dermal dendritic cell': {},\n",
+ " 'mature CD1a-positive dermal dendritic cell': {}}},\n",
+ " 'interstitial dendritic cell': {'immature interstitial dendritic cell': {},\n",
+ " 'mature interstitial dendritic cell': {},\n",
+ " 'kidney resident dendritic cell': {}},\n",
+ " 'Cd4-negative, CD8_alpha-negative, CD11b-positive dendritic cell': {'liver CD103-negative dendritic cell': {},\n",
+ " 'liver CD103-positive dendritic cell': {},\n",
+ " 'CD103-positive, langerin-positive lymph node dendritic cell': {},\n",
+ " 'CD103-negative, langerin-positive lymph node dendritic cell': {},\n",
+ " 'CD11b-low, CD103-negative, langerin-negative lymph node dendritic cell': {},\n",
+ " 'CD11b-high, CD103-negative, langerin-negative lymph node dendritic cell': {}},\n",
+ " 'epidermal Langerhans cell': {},\n",
+ " 'small intestine serosal dendritic cell': {}},\n",
+ " 'langerin-positive lymph node dendritic cell': {'CD103-positive, langerin-positive lymph node dendritic cell': {},\n",
+ " 'CD103-negative, langerin-positive lymph node dendritic cell': {}},\n",
+ " 'langerin-negative, CD103-negative lymph node dendritic cell': {'CD11b-low, CD103-negative, langerin-negative lymph node dendritic cell': {},\n",
+ " 'CD11b-high, CD103-negative, langerin-negative lymph node dendritic cell': {}}},\n",
+ " 'dendritic cell, human': {'myeloid dendritic cell, human': {},\n",
+ " 'plasmacytoid dendritic cell, human': {},\n",
+ " 'Axl+ dendritic cell, human': {}},\n",
+ " 'dendritic cell of appendix': {},\n",
+ " 'liver dendritic cell': {},\n",
+ " 'lung migratory dendritic cell': {}},\n",
+ " 'lymphocyte': {'T cell': {'alpha-beta T cell': {'immature alpha-beta T cell': {'double-positive, alpha-beta thymocyte': {'resting double-positive thymocyte': {},\n",
+ " 'double-positive blast': {},\n",
+ " 'CD69-positive double-positive thymocyte': {},\n",
+ " 'CD4-intermediate, CD8-positive double-positive thymocyte': {},\n",
+ " 'CD4-positive, CD8-intermediate double-positive thymocyte': {}},\n",
+ " 'CD4-positive, alpha-beta thymocyte': {'CD24-positive, CD4 single-positive thymocyte': {},\n",
+ " 'CD69-positive, CD4-positive single-positive thymocyte': {}},\n",
+ " 'CD8-positive, alpha-beta thymocyte': {'CD24-positive, CD8 single-positive thymocyte': {},\n",
+ " 'CD69-positive, CD8-positive single-positive thymocyte': {}},\n",
+ " 'immature NK T cell': {'immature NK T cell stage I': {},\n",
+ " 'immature NK T cell stage II': {},\n",
+ " 'immature NK T cell stage III': {},\n",
+ " 'immature NK T cell stage IV': {}}},\n",
+ " 'mature alpha-beta T cell': {'CD4-positive, alpha-beta T cell': {'CD4-positive helper T cell': {'T-helper 1 cell': {},\n",
+ " 'T-helper 2 cell': {},\n",
+ " 'T-helper 17 cell': {},\n",
+ " 'Tr1 cell': {},\n",
+ " 'T-helper 22 cell': {},\n",
+ " 'T follicular helper cell': {'germinal center T cell': {}},\n",
+ " 'T-helper 9 cell': {}},\n",
+ " 'CD4-positive, CD25-positive, alpha-beta regulatory T cell': {'induced T-regulatory cell': {},\n",
+ " 'natural T-regulatory cell': {},\n",
+ " 'CD4-positive, CD25-positive, CCR4-positive, alpha-beta regulatory T cell': {'naive CCR4-positive regulatory T cell': {},\n",
+ " 'memory CCR4-positive regulatory T cell': {},\n",
+ " 'activated CD4-positive, CD25-positive, CCR4-positive, alpha-beta regulatory T cell, human': {}},\n",
+ " 'naive regulatory T cell': {'naive CCR4-positive regulatory T cell': {}},\n",
+ " 'memory regulatory T cell': {'memory CCR4-positive regulatory T cell': {}}},\n",
+ " 'CD4-positive, alpha-beta intraepithelial T cell': {'CD2-positive, CD5-positive, CD44-positive alpha-beta intraepithelial T cell': {}},\n",
+ " 'naive thymus-derived CD4-positive, alpha-beta T cell': {},\n",
+ " 'activated CD4-positive, alpha-beta T cell': {'activated CD4-positive, alpha-beta T cell, human': {}},\n",
+ " 'CD4-positive, alpha-beta memory T cell': {'effector memory CD4-positive, alpha-beta T cell, terminally differentiated': {},\n",
+ " 'CD4-positive, alpha-beta memory T cell, CD45RO-positive': {'central memory CD4-positive, alpha-beta T cell': {},\n",
+ " 'effector memory CD4-positive, alpha-beta T cell': {}},\n",
+ " 'memory regulatory T cell': {'memory CCR4-positive regulatory T cell': {}},\n",
+ " 'lung resident memory CD4-positive, alpha-beta T cell': {}},\n",
+ " 'CD4-positive, alpha-beta cytotoxic T cell': {},\n",
+ " 'effector CD4-positive, alpha-beta T cell': {},\n",
+ " 'CD4-positive, CXCR3-negative, CCR6-negative, alpha-beta T cell': {'T-helper 2 cell': {}},\n",
+ " 'mature CD4 single-positive thymocyte': {}},\n",
+ " 'CD8-positive, alpha-beta T cell': {'CD8-positive, alpha-beta cytotoxic T cell': {},\n",
+ " 'CD8-positive, alpha-beta regulatory T cell': {'CD8-positive, CD25-positive, alpha-beta regulatory T cell': {},\n",
+ " 'CD8-positive, CD28-negative, alpha-beta regulatory T cell': {},\n",
+ " 'CD8-positive, CXCR3-positive, alpha-beta regulatory T cell': {}},\n",
+ " 'naive thymus-derived CD8-positive, alpha-beta T cell': {},\n",
+ " 'activated CD8-positive, alpha-beta T cell': {'activated CD8-positive, alpha-beta T cell, human': {}},\n",
+ " 'CD8-positive, alpha-beta cytokine secreting effector T cell': {'Tc1 cell': {},\n",
+ " 'Tc2 cell': {},\n",
+ " 'Tc17 cell': {}},\n",
+ " 'CD8-positive, alpha-beta memory T cell': {'effector memory CD8-positive, alpha-beta T cell, terminally differentiated': {},\n",
+ " 'CD8-positive, alpha-beta memory T cell, CD45RO-positive': {'central memory CD8-positive, alpha-beta T cell': {},\n",
+ " 'effector memory CD8-positive, alpha-beta T cell': {}},\n",
+ " 'lung resident memory CD8-positive, alpha-beta T cell': {'lung resident memory CD8-positive, CD103-positive, alpha-beta T cell': {}}},\n",
+ " 'effector CD8-positive, alpha-beta T cell': {},\n",
+ " 'CD8-positive, CXCR3-negative, CCR6-negative, alpha-beta T cell': {'Tc2 cell': {}},\n",
+ " 'mature CD8 single-positive thymocyte': {}},\n",
+ " 'alpha-beta intraepithelial T cell': {'CD4-positive, alpha-beta intraepithelial T cell': {'CD2-positive, CD5-positive, CD44-positive alpha-beta intraepithelial T cell': {}},\n",
+ " 'CD8-alpha-beta-positive, alpha-beta intraepithelial T cell': {},\n",
+ " 'CD8-alpha-alpha-positive, alpha-beta intraepithelial T cell': {},\n",
+ " 'CD4-negative, CD8-negative, alpha-beta intraepithelial T cell': {}},\n",
+ " 'mature NK T cell': {'type I NK T cell': {'CD4-positive type I NK T cell': {'activated CD4-positive type I NK T cell': {},\n",
+ " 'CD4-positive type I NK T cell secreting interferon-gamma': {},\n",
+ " 'CD4-positive type I NK T cell secreting interleukin-4': {}},\n",
+ " 'CD4-negative, CD8-negative type I NK T cell': {'activated CD4-negative, CD8-negative type I NK T cell': {},\n",
+ " 'CD4-negative, CD8-negative type I NK T cell secreting interferon-gamma': {},\n",
+ " 'CD4-negative, CD8-negative type I NK T cell secreting interleukin-4': {}}},\n",
+ " 'type II NK T cell': {'activated type II NK T cell': {},\n",
+ " 'type II NK T cell secreting interferon-gamma': {},\n",
+ " 'type II NK T cell secreting interleukin-4': {}}},\n",
+ " 'mucosal invariant T cell': {},\n",
+ " 'effector memory CD45RA-positive, alpha-beta T cell, terminally differentiated': {'effector memory CD8-positive, alpha-beta T cell, terminally differentiated': {},\n",
+ " 'effector memory CD4-positive, alpha-beta T cell, terminally differentiated': {}}}},\n",
+ " 'gamma-delta T cell': {'immature gamma-delta T cell': {'CD25-positive, CD27-positive immature gamma-delta T cell': {}},\n",
+ " 'mature gamma-delta T cell': {'gamma-delta intraepithelial T cell': {'CD8-alpha alpha positive, gamma-delta intraepithelial T cell': {'Vgamma5-positive CD8alpha alpha positive gamma-delta intraepithelial T cell': {},\n",
+ " 'Vgamma5-negative CD8alpha alpha positive gamma-delta intraepithelial T cell': {}},\n",
+ " 'CD4-negative CD8-negative gamma-delta intraepithelial T cell': {}},\n",
+ " 'dendritic epidermal T cell': {},\n",
+ " 'CD27-positive gamma-delta T cell': {},\n",
+ " 'CD27-negative gamma-delta T cell': {}},\n",
+ " 'gamma-delta thymocyte': {'immature Vgamma2-positive thymocyte': {},\n",
+ " 'mature Vgamma2-positive thymocyte': {},\n",
+ " 'immature Vgamma2-negative thymocyte': {},\n",
+ " 'mature Vgamma2-negative thymocyte': {},\n",
+ " 'Vgamma1.1-positive, Vdelta6.3-negative thymocyte': {'mature Vgamma1.1-positive, Vdelta6.3-negative thymocyte': {},\n",
+ " 'immature Vgamma1.1-positive, Vdelta6.3-negative thymocyte': {}},\n",
+ " 'Vgamma1.1-positive, Vdelta6.3-positive thymocyte': {'immature Vgamma1.1-positive, Vdelta6.3-positive thymocyte': {},\n",
+ " 'mature Vgamma1.1-positive, Vdelta6.3-positive thymocyte': {}}}},\n",
+ " 'mature T cell': {'mature alpha-beta T cell': {'CD4-positive, alpha-beta T cell': {'CD4-positive helper T cell': {'T-helper 1 cell': {},\n",
+ " 'T-helper 2 cell': {},\n",
+ " 'T-helper 17 cell': {},\n",
+ " 'Tr1 cell': {},\n",
+ " 'T-helper 22 cell': {},\n",
+ " 'T follicular helper cell': {'germinal center T cell': {}},\n",
+ " 'T-helper 9 cell': {}},\n",
+ " 'CD4-positive, CD25-positive, alpha-beta regulatory T cell': {'induced T-regulatory cell': {},\n",
+ " 'natural T-regulatory cell': {},\n",
+ " 'CD4-positive, CD25-positive, CCR4-positive, alpha-beta regulatory T cell': {'naive CCR4-positive regulatory T cell': {},\n",
+ " 'memory CCR4-positive regulatory T cell': {},\n",
+ " 'activated CD4-positive, CD25-positive, CCR4-positive, alpha-beta regulatory T cell, human': {}},\n",
+ " 'naive regulatory T cell': {'naive CCR4-positive regulatory T cell': {}},\n",
+ " 'memory regulatory T cell': {'memory CCR4-positive regulatory T cell': {}}},\n",
+ " 'CD4-positive, alpha-beta intraepithelial T cell': {'CD2-positive, CD5-positive, CD44-positive alpha-beta intraepithelial T cell': {}},\n",
+ " 'naive thymus-derived CD4-positive, alpha-beta T cell': {},\n",
+ " 'activated CD4-positive, alpha-beta T cell': {'activated CD4-positive, alpha-beta T cell, human': {}},\n",
+ " 'CD4-positive, alpha-beta memory T cell': {'effector memory CD4-positive, alpha-beta T cell, terminally differentiated': {},\n",
+ " 'CD4-positive, alpha-beta memory T cell, CD45RO-positive': {'central memory CD4-positive, alpha-beta T cell': {},\n",
+ " 'effector memory CD4-positive, alpha-beta T cell': {}},\n",
+ " 'memory regulatory T cell': {'memory CCR4-positive regulatory T cell': {}},\n",
+ " 'lung resident memory CD4-positive, alpha-beta T cell': {}},\n",
+ " 'CD4-positive, alpha-beta cytotoxic T cell': {},\n",
+ " 'effector CD4-positive, alpha-beta T cell': {},\n",
+ " 'CD4-positive, CXCR3-negative, CCR6-negative, alpha-beta T cell': {'T-helper 2 cell': {}},\n",
+ " 'mature CD4 single-positive thymocyte': {}},\n",
+ " 'CD8-positive, alpha-beta T cell': {'CD8-positive, alpha-beta cytotoxic T cell': {},\n",
+ " 'CD8-positive, alpha-beta regulatory T cell': {'CD8-positive, CD25-positive, alpha-beta regulatory T cell': {},\n",
+ " 'CD8-positive, CD28-negative, alpha-beta regulatory T cell': {},\n",
+ " 'CD8-positive, CXCR3-positive, alpha-beta regulatory T cell': {}},\n",
+ " 'naive thymus-derived CD8-positive, alpha-beta T cell': {},\n",
+ " 'activated CD8-positive, alpha-beta T cell': {'activated CD8-positive, alpha-beta T cell, human': {}},\n",
+ " 'CD8-positive, alpha-beta cytokine secreting effector T cell': {'Tc1 cell': {},\n",
+ " 'Tc2 cell': {},\n",
+ " 'Tc17 cell': {}},\n",
+ " 'CD8-positive, alpha-beta memory T cell': {'effector memory CD8-positive, alpha-beta T cell, terminally differentiated': {},\n",
+ " 'CD8-positive, alpha-beta memory T cell, CD45RO-positive': {'central memory CD8-positive, alpha-beta T cell': {},\n",
+ " 'effector memory CD8-positive, alpha-beta T cell': {}},\n",
+ " 'lung resident memory CD8-positive, alpha-beta T cell': {'lung resident memory CD8-positive, CD103-positive, alpha-beta T cell': {}}},\n",
+ " 'effector CD8-positive, alpha-beta T cell': {},\n",
+ " 'CD8-positive, CXCR3-negative, CCR6-negative, alpha-beta T cell': {'Tc2 cell': {}},\n",
+ " 'mature CD8 single-positive thymocyte': {}},\n",
+ " 'alpha-beta intraepithelial T cell': {'CD4-positive, alpha-beta intraepithelial T cell': {'CD2-positive, CD5-positive, CD44-positive alpha-beta intraepithelial T cell': {}},\n",
+ " 'CD8-alpha-beta-positive, alpha-beta intraepithelial T cell': {},\n",
+ " 'CD8-alpha-alpha-positive, alpha-beta intraepithelial T cell': {},\n",
+ " 'CD4-negative, CD8-negative, alpha-beta intraepithelial T cell': {}},\n",
+ " 'mature NK T cell': {'type I NK T cell': {'CD4-positive type I NK T cell': {'activated CD4-positive type I NK T cell': {},\n",
+ " 'CD4-positive type I NK T cell secreting interferon-gamma': {},\n",
+ " 'CD4-positive type I NK T cell secreting interleukin-4': {}},\n",
+ " 'CD4-negative, CD8-negative type I NK T cell': {'activated CD4-negative, CD8-negative type I NK T cell': {},\n",
+ " 'CD4-negative, CD8-negative type I NK T cell secreting interferon-gamma': {},\n",
+ " 'CD4-negative, CD8-negative type I NK T cell secreting interleukin-4': {}}},\n",
+ " 'type II NK T cell': {'activated type II NK T cell': {},\n",
+ " 'type II NK T cell secreting interferon-gamma': {},\n",
+ " 'type II NK T cell secreting interleukin-4': {}}},\n",
+ " 'mucosal invariant T cell': {},\n",
+ " 'effector memory CD45RA-positive, alpha-beta T cell, terminally differentiated': {'effector memory CD8-positive, alpha-beta T cell, terminally differentiated': {},\n",
+ " 'effector memory CD4-positive, alpha-beta T cell, terminally differentiated': {}}},\n",
+ " 'mature gamma-delta T cell': {'gamma-delta intraepithelial T cell': {'CD8-alpha alpha positive, gamma-delta intraepithelial T cell': {'Vgamma5-positive CD8alpha alpha positive gamma-delta intraepithelial T cell': {},\n",
+ " 'Vgamma5-negative CD8alpha alpha positive gamma-delta intraepithelial T cell': {}},\n",
+ " 'CD4-negative CD8-negative gamma-delta intraepithelial T cell': {}},\n",
+ " 'dendritic epidermal T cell': {},\n",
+ " 'CD27-positive gamma-delta T cell': {},\n",
+ " 'CD27-negative gamma-delta T cell': {}},\n",
+ " 'memory T cell': {'CD4-positive, alpha-beta memory T cell': {'effector memory CD4-positive, alpha-beta T cell, terminally differentiated': {},\n",
+ " 'CD4-positive, alpha-beta memory T cell, CD45RO-positive': {'central memory CD4-positive, alpha-beta T cell': {},\n",
+ " 'effector memory CD4-positive, alpha-beta T cell': {}},\n",
+ " 'memory regulatory T cell': {'memory CCR4-positive regulatory T cell': {}},\n",
+ " 'lung resident memory CD4-positive, alpha-beta T cell': {}},\n",
+ " 'CD8-positive, alpha-beta memory T cell': {'effector memory CD8-positive, alpha-beta T cell, terminally differentiated': {},\n",
+ " 'CD8-positive, alpha-beta memory T cell, CD45RO-positive': {'central memory CD8-positive, alpha-beta T cell': {},\n",
+ " 'effector memory CD8-positive, alpha-beta T cell': {}},\n",
+ " 'lung resident memory CD8-positive, alpha-beta T cell': {'lung resident memory CD8-positive, CD103-positive, alpha-beta T cell': {}}}},\n",
+ " 'regulatory T cell': {'CD4-positive, CD25-positive, alpha-beta regulatory T cell': {'induced T-regulatory cell': {},\n",
+ " 'natural T-regulatory cell': {},\n",
+ " 'CD4-positive, CD25-positive, CCR4-positive, alpha-beta regulatory T cell': {'naive CCR4-positive regulatory T cell': {},\n",
+ " 'memory CCR4-positive regulatory T cell': {},\n",
+ " 'activated CD4-positive, CD25-positive, CCR4-positive, alpha-beta regulatory T cell, human': {}},\n",
+ " 'naive regulatory T cell': {'naive CCR4-positive regulatory T cell': {}},\n",
+ " 'memory regulatory T cell': {'memory CCR4-positive regulatory T cell': {}}},\n",
+ " 'CD8-positive, alpha-beta regulatory T cell': {'CD8-positive, CD25-positive, alpha-beta regulatory T cell': {},\n",
+ " 'CD8-positive, CD28-negative, alpha-beta regulatory T cell': {},\n",
+ " 'CD8-positive, CXCR3-positive, alpha-beta regulatory T cell': {}},\n",
+ " 'Tr1 cell': {},\n",
+ " 'T follicular regulatory cell': {}},\n",
+ " 'naive T cell': {'naive thymus-derived CD4-positive, alpha-beta T cell': {},\n",
+ " 'naive thymus-derived CD8-positive, alpha-beta T cell': {},\n",
+ " 'naive regulatory T cell': {'naive CCR4-positive regulatory T cell': {}}},\n",
+ " 'effector T cell': {'cytotoxic T cell': {},\n",
+ " 'helper T cell': {},\n",
+ " 'effector CD4-positive, alpha-beta T cell': {},\n",
+ " 'effector CD8-positive, alpha-beta T cell': {},\n",
+ " 'innate effector T cell': {},\n",
+ " 'exhausted T cell': {}},\n",
+ " 'intraepithelial lymphocyte': {'alpha-beta intraepithelial T cell': {'CD4-positive, alpha-beta intraepithelial T cell': {'CD2-positive, CD5-positive, CD44-positive alpha-beta intraepithelial T cell': {}},\n",
+ " 'CD8-alpha-beta-positive, alpha-beta intraepithelial T cell': {},\n",
+ " 'CD8-alpha-alpha-positive, alpha-beta intraepithelial T cell': {},\n",
+ " 'CD4-negative, CD8-negative, alpha-beta intraepithelial T cell': {}},\n",
+ " 'gamma-delta intraepithelial T cell': {'CD8-alpha alpha positive, gamma-delta intraepithelial T cell': {'Vgamma5-positive CD8alpha alpha positive gamma-delta intraepithelial T cell': {},\n",
+ " 'Vgamma5-negative CD8alpha alpha positive gamma-delta intraepithelial T cell': {}},\n",
+ " 'CD4-negative CD8-negative gamma-delta intraepithelial T cell': {}}},\n",
+ " \"small intestine Peyer's patch T cell\": {}},\n",
+ " 'immature T cell': {'immature alpha-beta T cell': {'double-positive, alpha-beta thymocyte': {'resting double-positive thymocyte': {},\n",
+ " 'double-positive blast': {},\n",
+ " 'CD69-positive double-positive thymocyte': {},\n",
+ " 'CD4-intermediate, CD8-positive double-positive thymocyte': {},\n",
+ " 'CD4-positive, CD8-intermediate double-positive thymocyte': {}},\n",
+ " 'CD4-positive, alpha-beta thymocyte': {'CD24-positive, CD4 single-positive thymocyte': {},\n",
+ " 'CD69-positive, CD4-positive single-positive thymocyte': {}},\n",
+ " 'CD8-positive, alpha-beta thymocyte': {'CD24-positive, CD8 single-positive thymocyte': {},\n",
+ " 'CD69-positive, CD8-positive single-positive thymocyte': {}},\n",
+ " 'immature NK T cell': {'immature NK T cell stage I': {},\n",
+ " 'immature NK T cell stage II': {},\n",
+ " 'immature NK T cell stage III': {},\n",
+ " 'immature NK T cell stage IV': {}}},\n",
+ " 'immature gamma-delta T cell': {'CD25-positive, CD27-positive immature gamma-delta T cell': {}},\n",
+ " 'thymocyte': {'immature single positive thymocyte': {},\n",
+ " 'double-positive, alpha-beta thymocyte': {'resting double-positive thymocyte': {},\n",
+ " 'double-positive blast': {},\n",
+ " 'CD69-positive double-positive thymocyte': {},\n",
+ " 'CD4-intermediate, CD8-positive double-positive thymocyte': {},\n",
+ " 'CD4-positive, CD8-intermediate double-positive thymocyte': {}},\n",
+ " 'CD4-positive, alpha-beta thymocyte': {'CD24-positive, CD4 single-positive thymocyte': {},\n",
+ " 'CD69-positive, CD4-positive single-positive thymocyte': {}},\n",
+ " 'CD8-positive, alpha-beta thymocyte': {'CD24-positive, CD8 single-positive thymocyte': {},\n",
+ " 'CD69-positive, CD8-positive single-positive thymocyte': {}},\n",
+ " 'CD25-positive, CD27-positive immature gamma-delta T cell': {},\n",
+ " 'fetal thymocyte': {'immature dendritic epithelial T cell precursor': {},\n",
+ " 'immature Vgamma2-positive fetal thymocyte': {},\n",
+ " 'mature dendritic epithelial T cell precursor': {},\n",
+ " 'mature Vgamma2-positive fetal thymocyte': {}},\n",
+ " 'double negative thymocyte': {'DN2 thymocyte': {'DN2a thymocyte': {},\n",
+ " 'DN2b thymocyte': {}},\n",
+ " 'DN3 thymocyte': {},\n",
+ " 'DN4 thymocyte': {},\n",
+ " 'gamma-delta thymocyte': {'immature Vgamma2-positive thymocyte': {},\n",
+ " 'mature Vgamma2-positive thymocyte': {},\n",
+ " 'immature Vgamma2-negative thymocyte': {},\n",
+ " 'mature Vgamma2-negative thymocyte': {},\n",
+ " 'Vgamma1.1-positive, Vdelta6.3-negative thymocyte': {'mature Vgamma1.1-positive, Vdelta6.3-negative thymocyte': {},\n",
+ " 'immature Vgamma1.1-positive, Vdelta6.3-negative thymocyte': {}},\n",
+ " 'Vgamma1.1-positive, Vdelta6.3-positive thymocyte': {'immature Vgamma1.1-positive, Vdelta6.3-positive thymocyte': {},\n",
+ " 'mature Vgamma1.1-positive, Vdelta6.3-positive thymocyte': {}}},\n",
+ " 'specified double negative thymocyte (Homo sapiens)': {},\n",
+ " 'committed double negative thymocyte (Homo sapiens)': {},\n",
+ " 'rearranging double negative thymocyte (Homo sapiens)': {},\n",
+ " 'double negative T regulatory cell': {}},\n",
+ " 'CD8aa(I) thymocyte': {},\n",
+ " 'CD8aa(II) thymocyte': {}}},\n",
+ " 'T cell of appendix': {},\n",
+ " 'T cell of medullary sinus of lymph node': {},\n",
+ " 'T cell of anorectum': {},\n",
+ " 'lymph node paracortex T cell': {}},\n",
+ " 'lymphocyte of B lineage': {'B cell': {'B cell, CD19-positive': {'mature B cell': {'memory B cell': {'unswitched memory B cell': {'CD38-negative unswitched memory B cell': {'B220-positive CD38-negative unswitched memory B cell': {'B220-low CD38-negative unswitched memory B cell': {}}},\n",
+ " 'CD38-positive unswitched memory B cell': {'B220-positive CD38-positive unswitched memory B cell': {'B220-low CD38-positive unswitched memory B cell': {}}}},\n",
+ " 'class switched memory B cell': {'IgE memory B cell': {},\n",
+ " 'IgA memory B cell': {},\n",
+ " 'IgG memory B cell': {'CD38-positive IgG memory B cell': {'IgD-positive CD38-positive IgG memory B cell': {},\n",
+ " 'IgD-negative CD38-positive IgG memory B cell': {}},\n",
+ " 'CD38-negative IgG memory B cell': {}},\n",
+ " 'IgG-negative class switched memory B cell': {'CD38-negative IgG-negative class switched memory B cell': {'CD24-positive CD38-negative IgG-negative class switched memory B cell': {},\n",
+ " 'CD24-negative CD38-negative IgG-negative class switched memory B cell': {}},\n",
+ " 'CD38-positive IgG-negative class switched memory B cell': {'B220-positive CD38-positive IgG-negative class switched memory B cell': {'B220-low CD38-positive IgG-negative class switched memory B cell': {}}}}},\n",
+ " 'IgD-negative memory B cell': {'Bm5 B cell': {},\n",
+ " 'IgM memory B cell': {},\n",
+ " 'double negative memory B cell': {'IgG-positive double negative memory B cell': {},\n",
+ " 'IgG-negative double negative memory B cell': {}},\n",
+ " 'IgD-negative CD38-positive IgG memory B cell': {},\n",
+ " 'CD38-negative IgG memory B cell': {}}},\n",
+ " 'naive B cell': {'CD38-positive naive B cell': {'B220-positive CD38-positive naive B cell': {'B220-low CD38-positive naive B cell': {}}},\n",
+ " 'CD38-negative naive B cell': {}},\n",
+ " 'B-1 B cell': {'B-1a B cell': {}, 'B-1b B cell': {}},\n",
+ " 'B-2 B cell': {'follicular B cell': {'Bm1 B cell': {},\n",
+ " 'Bm2 B cell': {}},\n",
+ " 'fraction F mature B cell': {'Bm1 B cell': {}},\n",
+ " \"Peyer's patch B cell\": {}},\n",
+ " 'germinal center B cell': {'Bm3-delta B cell': {},\n",
+ " \"Bm2' B cell\": {},\n",
+ " 'Bm3 B cell': {},\n",
+ " 'Bm4 B cell': {},\n",
+ " 'centrocyte': {},\n",
+ " 'centroblast': {},\n",
+ " 'tonsil germinal center B cell': {}},\n",
+ " 'marginal zone B cell of spleen': {},\n",
+ " 'Be cell': {'Be1 Cell': {}, 'Be2 cell': {}},\n",
+ " 'regulatory B cell': {},\n",
+ " 'plasmablast': {'IgD plasmablast': {},\n",
+ " 'IgE plasmablast': {},\n",
+ " 'IgG plasmablast': {},\n",
+ " 'IgM plasmablast': {},\n",
+ " 'IgA plasmablast': {},\n",
+ " 'CD86-positive plasmablast': {}},\n",
+ " 'marginal zone B cell of lymph node': {}},\n",
+ " 'immature B cell': {'fraction E immature B cell': {},\n",
+ " 'CD38-negative immature B cell': {}},\n",
+ " 'precursor B cell': {'pre-B-II cell': {'small pre-B-II cell': {'CD22-positive, CD38-low small pre-B cell': {}},\n",
+ " 'large pre-B-II cell': {'preBCR-positive large pre-B-II cell': {'CD38-high pre-BCR positive cell': {}},\n",
+ " 'preBCR-negative large pre-B-II cell': {}}},\n",
+ " 'pre-B-I cell': {},\n",
+ " 'late pro-B cell': {},\n",
+ " \"fraction C' precursor B cell\": {},\n",
+ " 'fraction B/C precursor B cell': {'fraction B precursor B cell': {},\n",
+ " 'fraction C precursor B cell': {},\n",
+ " 'fraction D precursor B cell': {}}},\n",
+ " 'transitional stage B cell': {'T1 B cell': {},\n",
+ " 'T2 B cell': {},\n",
+ " 'T3 B cell': {}}},\n",
+ " 'B cell of appendix': {},\n",
+ " 'lymph node mantle zone B cell': {},\n",
+ " 'B cell of medullary sinus of lymph node': {},\n",
+ " 'B cell of anorectum': {},\n",
+ " 'monocytoid B cell': {}},\n",
+ " 'antibody secreting cell': {'plasma cell': {'long lived plasma cell': {'IgE plasma cell': {},\n",
+ " 'IgG plasma cell': {},\n",
+ " 'IgM plasma cell': {},\n",
+ " 'IgA plasma cell': {}},\n",
+ " 'short lived plasma cell': {'IgE short lived plasma cell': {},\n",
+ " 'IgA short lived plasma cell': {},\n",
+ " 'IgG short lived plasma cell': {},\n",
+ " 'IgM short lived plasma cell': {}},\n",
+ " 'plasma cell of appendix': {},\n",
+ " 'plasma cell of medullary sinus of lymph node': {}},\n",
+ " 'plasmablast': {'IgD plasmablast': {},\n",
+ " 'IgE plasmablast': {},\n",
+ " 'IgG plasmablast': {},\n",
+ " 'IgM plasmablast': {},\n",
+ " 'IgA plasmablast': {},\n",
+ " 'CD86-positive plasmablast': {}}},\n",
+ " 'lymphocyte of B lineage, CD19-positive': {'B cell, CD19-positive': {'mature B cell': {'memory B cell': {'unswitched memory B cell': {'CD38-negative unswitched memory B cell': {'B220-positive CD38-negative unswitched memory B cell': {'B220-low CD38-negative unswitched memory B cell': {}}},\n",
+ " 'CD38-positive unswitched memory B cell': {'B220-positive CD38-positive unswitched memory B cell': {'B220-low CD38-positive unswitched memory B cell': {}}}},\n",
+ " 'class switched memory B cell': {'IgE memory B cell': {},\n",
+ " 'IgA memory B cell': {},\n",
+ " 'IgG memory B cell': {'CD38-positive IgG memory B cell': {'IgD-positive CD38-positive IgG memory B cell': {},\n",
+ " 'IgD-negative CD38-positive IgG memory B cell': {}},\n",
+ " 'CD38-negative IgG memory B cell': {}},\n",
+ " 'IgG-negative class switched memory B cell': {'CD38-negative IgG-negative class switched memory B cell': {'CD24-positive CD38-negative IgG-negative class switched memory B cell': {},\n",
+ " 'CD24-negative CD38-negative IgG-negative class switched memory B cell': {}},\n",
+ " 'CD38-positive IgG-negative class switched memory B cell': {'B220-positive CD38-positive IgG-negative class switched memory B cell': {'B220-low CD38-positive IgG-negative class switched memory B cell': {}}}}},\n",
+ " 'IgD-negative memory B cell': {'Bm5 B cell': {},\n",
+ " 'IgM memory B cell': {},\n",
+ " 'double negative memory B cell': {'IgG-positive double negative memory B cell': {},\n",
+ " 'IgG-negative double negative memory B cell': {}},\n",
+ " 'IgD-negative CD38-positive IgG memory B cell': {},\n",
+ " 'CD38-negative IgG memory B cell': {}}},\n",
+ " 'naive B cell': {'CD38-positive naive B cell': {'B220-positive CD38-positive naive B cell': {'B220-low CD38-positive naive B cell': {}}},\n",
+ " 'CD38-negative naive B cell': {}},\n",
+ " 'B-1 B cell': {'B-1a B cell': {}, 'B-1b B cell': {}},\n",
+ " 'B-2 B cell': {'follicular B cell': {'Bm1 B cell': {},\n",
+ " 'Bm2 B cell': {}},\n",
+ " 'fraction F mature B cell': {'Bm1 B cell': {}},\n",
+ " \"Peyer's patch B cell\": {}},\n",
+ " 'germinal center B cell': {'Bm3-delta B cell': {},\n",
+ " \"Bm2' B cell\": {},\n",
+ " 'Bm3 B cell': {},\n",
+ " 'Bm4 B cell': {},\n",
+ " 'centrocyte': {},\n",
+ " 'centroblast': {},\n",
+ " 'tonsil germinal center B cell': {}},\n",
+ " 'marginal zone B cell of spleen': {},\n",
+ " 'Be cell': {'Be1 Cell': {}, 'Be2 cell': {}},\n",
+ " 'regulatory B cell': {},\n",
+ " 'plasmablast': {'IgD plasmablast': {},\n",
+ " 'IgE plasmablast': {},\n",
+ " 'IgG plasmablast': {},\n",
+ " 'IgM plasmablast': {},\n",
+ " 'IgA plasmablast': {},\n",
+ " 'CD86-positive plasmablast': {}},\n",
+ " 'marginal zone B cell of lymph node': {}},\n",
+ " 'immature B cell': {'fraction E immature B cell': {},\n",
+ " 'CD38-negative immature B cell': {}},\n",
+ " 'precursor B cell': {'pre-B-II cell': {'small pre-B-II cell': {'CD22-positive, CD38-low small pre-B cell': {}},\n",
+ " 'large pre-B-II cell': {'preBCR-positive large pre-B-II cell': {'CD38-high pre-BCR positive cell': {}},\n",
+ " 'preBCR-negative large pre-B-II cell': {}}},\n",
+ " 'pre-B-I cell': {},\n",
+ " 'late pro-B cell': {},\n",
+ " \"fraction C' precursor B cell\": {},\n",
+ " 'fraction B/C precursor B cell': {'fraction B precursor B cell': {},\n",
+ " 'fraction C precursor B cell': {},\n",
+ " 'fraction D precursor B cell': {}}},\n",
+ " 'transitional stage B cell': {'T1 B cell': {},\n",
+ " 'T2 B cell': {},\n",
+ " 'T3 B cell': {}}}},\n",
+ " 'B-lymphoblast': {}},\n",
+ " 'innate lymphoid cell': {'group 1 innate lymphoid cell': {'natural killer cell': {'immature natural killer cell': {'CD56-positive, CD161-positive immature natural killer cell, human': {},\n",
+ " 'CD56-negative, CD161-positive immature natural killer cell, human': {},\n",
+ " 'CD27-low, CD11b-low immature natural killer cell, mouse': {},\n",
+ " 'Dx5-negative, NK1.1-positive immature natural killer cell, mouse': {}},\n",
+ " 'mature natural killer cell': {'CD16-negative, CD56-bright natural killer cell, human': {},\n",
+ " 'CD16-positive, CD56-dim natural killer cell, human': {},\n",
+ " 'decidual natural killer cell, human': {},\n",
+ " 'CD27-high, CD11b-high natural killer cell, mouse': {},\n",
+ " 'CD27-low, CD11b-high natural killer cell, mouse': {},\n",
+ " 'CD27-high, CD11b-low natural killer cell, mouse': {},\n",
+ " 'NK1.1-positive natural killer cell, mouse': {'CD11b-positive, CD27-positive natural killer cell, mouse': {},\n",
+ " 'NKGA2-positive natural killer cell, mouse': {},\n",
+ " 'Ly49D-positive natural killer cell, mouse': {},\n",
+ " 'CD94-positive natural killer cell, mouse': {'CD94-positive Ly49CI-positive natural killer cell, mouse': {}},\n",
+ " 'Ly49CI-positive natural killer cell, mouse': {'CD94-positive Ly49CI-positive natural killer cell, mouse': {}},\n",
+ " 'Ly49H-positive natural killer cell, mouse': {},\n",
+ " 'Ly49D-negative natural killer cell, mouse': {},\n",
+ " 'Ly49CI-negative natural killer cell, mouse': {},\n",
+ " 'CD94-negative natural killer cell, mouse': {},\n",
+ " 'Ly49H-negative natural killer cell, mouse': {}}},\n",
+ " 'pre-natural killer cell': {},\n",
+ " 'CD94-negative, Ly49CI-negative natural killer cell, mouse': {},\n",
+ " 'hepatic pit cell': {}},\n",
+ " 'ILC1': {'ILC1, human': {}}},\n",
+ " 'group 2 innate lymphoid cell': {'group 2 innate lymphoid cell, human': {},\n",
+ " 'group 2 innate lymphoid cell, mouse': {}},\n",
+ " 'group 3 innate lymphoid cell': {'group 3 innate lymphoid cell, human': {'NKp44-positive group 3 innate lymphoid cell, human': {},\n",
+ " 'NKp44-negative group 3 innate lymphoid cell, human': {}},\n",
+ " 'lymphoid tissueβinducer cell': {}},\n",
+ " 'immature innate lymphoid cell': {'immature natural killer cell': {'CD56-positive, CD161-positive immature natural killer cell, human': {},\n",
+ " 'CD56-negative, CD161-positive immature natural killer cell, human': {},\n",
+ " 'CD27-low, CD11b-low immature natural killer cell, mouse': {},\n",
+ " 'Dx5-negative, NK1.1-positive immature natural killer cell, mouse': {}},\n",
+ " 'CD34-negative, CD117-positive innate lymphoid cell, human': {'CD34-negative, CD56-positive, CD117-positive innate lymphoid cell, human': {},\n",
+ " 'KLRG1-positive innate lymphoid cell, human': {}},\n",
+ " 'CD34-positive, CD56-positive, CD117-positive common innate lymphoid precursor, human': {'NKp46-positive innate lymphoid cell, human': {}}}},\n",
+ " 'natural helper lymphocyte': {},\n",
+ " \"Peyer's patch lymphocyte\": {\"Peyer's patch B cell\": {},\n",
+ " \"small intestine Peyer's patch T cell\": {}},\n",
+ " 'lymphocyte of large intestine lamina propria': {},\n",
+ " 'lymphocyte of small intestine lamina propria': {},\n",
+ " 'lymphoblast': {'B-lymphoblast': {}},\n",
+ " 'blood lymphocyte': {'peripheral blood lymphocyte': {}}},\n",
+ " 'monocyte': {'classical monocyte': {'CD14-positive, CD16-negative classical monocyte': {},\n",
+ " 'Gr1-high classical monocyte': {'MHC-II-negative classical monocyte': {'lymphoid MHC-II-negative classical monocyte': {}},\n",
+ " 'MHC-II-positive classical monocyte': {}}},\n",
+ " 'non-classical monocyte': {'Gr1-low non-classical monocyte': {'MHC-II-negative non-classical monocyte': {'lymphoid MHC-II-negative non-classical monocyte': {}},\n",
+ " 'MHC-II-low non-classical monocyte': {},\n",
+ " 'MHC-II-high non-classical monocyte': {}},\n",
+ " 'CD14-low, CD16-positive monocyte': {}},\n",
+ " 'CD115-positive monocyte': {'Gr1-high classical monocyte': {'MHC-II-negative classical monocyte': {'lymphoid MHC-II-negative classical monocyte': {}},\n",
+ " 'MHC-II-positive classical monocyte': {}},\n",
+ " 'Gr1-positive, CD43-positive monocyte': {'Gr1-low non-classical monocyte': {'MHC-II-negative non-classical monocyte': {'lymphoid MHC-II-negative non-classical monocyte': {}},\n",
+ " 'MHC-II-low non-classical monocyte': {},\n",
+ " 'MHC-II-high non-classical monocyte': {}}}},\n",
+ " 'CD14-positive monocyte': {'CD14-positive, CD16-negative classical monocyte': {},\n",
+ " 'CD14-low, CD16-positive monocyte': {},\n",
+ " 'CD14-positive, CD16-positive monocyte': {'CD14-positive, CD16-low monocyte': {}}},\n",
+ " 'intermediate monocyte': {'CD14-positive, CD16-low monocyte': {},\n",
+ " 'Gr1-positive, CD43-positive monocyte': {'Gr1-low non-classical monocyte': {'MHC-II-negative non-classical monocyte': {'lymphoid MHC-II-negative non-classical monocyte': {}},\n",
+ " 'MHC-II-low non-classical monocyte': {},\n",
+ " 'MHC-II-high non-classical monocyte': {}}}}},\n",
+ " 'mononuclear osteoclast': {'mononuclear odontoclast': {}},\n",
+ " 'mononuclear cell of bone marrow': {},\n",
+ " 'peripheral blood mononuclear cell': {'blood lymphocyte': {'peripheral blood lymphocyte': {}}},\n",
+ " 'mononuclear cell of umbilical cord': {}},\n",
+ " 'nongranular leukocyte': {'neutrophilic myelocyte': {},\n",
+ " 'eosinophilic myelocyte': {},\n",
+ " 'basophilic myelocyte': {}},\n",
+ " 'splenocyte': {'marginal zone B cell of spleen': {},\n",
+ " 'splenic macrophage': {'splenic marginal zone macrophage': {},\n",
+ " 'splenic metallophillic macrophage': {},\n",
+ " 'splenic red pulp macrophage': {},\n",
+ " 'splenic white pulp macrophage': {'splenic tingible body macrophage': {}}}}},\n",
+ " 'mesenchymal cell': {'mesenchyme condensation cell': {},\n",
+ " 'dental papilla cell': {},\n",
+ " 'cardiac mesenchymal cell': {'endocardial cushion cell': {}},\n",
+ " 'fibro/adipogenic progenitor cell': {}},\n",
+ " 'motile sperm cell': {'amoeboid sperm cell': {},\n",
+ " 'flagellated sperm cell': {}}},\n",
+ " 'anucleate cell': {'platelet': {},\n",
+ " 'enucleate erythrocyte': {'GlyA-positive erythrocyte': {},\n",
+ " 'Ly-76 high positive erythrocyte': {},\n",
+ " 'echinocyte': {},\n",
+ " 'fetal derived definitive erythrocyte': {}},\n",
+ " 'corneocyte': {},\n",
+ " 'enucleated reticulocyte': {'Ly-76 high reticulocyte': {},\n",
+ " 'GlyA-positive reticulocytes': {}}},\n",
+ " 'eukaryotic cell': {'Eumycetozoan cell': {},\n",
+ " 'fungal cell': {'hyphal cell': {},\n",
+ " 'vegetative cell (sensu Fungi)': {},\n",
+ " 'heterokaryon': {'dikaryon': {}},\n",
+ " 'fungal spore': {'sexual spore': {'ascospore': {},\n",
+ " 'zygospore': {},\n",
+ " 'basidiospore': {}},\n",
+ " 'fungal asexual spore': {'conidium': {'macroconidium': {'uninucleate macroconidium': {'uninucleate arthroconidium': {},\n",
+ " 'uninucleate blastconidium': {}},\n",
+ " 'blastoconidium': {'uninucleate blastconidium': {},\n",
+ " 'multinucleate blastoconidium': {}},\n",
+ " 'multinucleate macroconidium': {'multinucleate arthroconidium': {},\n",
+ " 'multinucleate blastoconidium': {}},\n",
+ " 'arthroconidium': {'multinucleate arthroconidium': {},\n",
+ " 'uninucleate arthroconidium': {}}},\n",
+ " 'uninucleate conidium': {'microconidium': {},\n",
+ " 'conidium of conidiophore head': {},\n",
+ " 'uninucleate macroconidium': {'uninucleate arthroconidium': {},\n",
+ " 'uninucleate blastconidium': {}}},\n",
+ " 'multinucleate conidium': {'multinucleate macroconidium': {'multinucleate arthroconidium': {},\n",
+ " 'multinucleate blastoconidium': {}}}},\n",
+ " 'chlamydospore': {},\n",
+ " 'oospore': {}}},\n",
+ " 'H minus': {},\n",
+ " 'H plus': {}},\n",
+ " 'animal cell': {'spermatocyte': {'primary spermatocyte': {},\n",
+ " 'secondary spermatocyte': {}},\n",
+ " 'spermatid': {'early spermatid': {}, 'late spermatid': {}},\n",
+ " 'spermatogonium': {},\n",
+ " 'oocyte': {'primary oocyte': {}, 'secondary oocyte': {}},\n",
+ " 'oogonial cell': {},\n",
+ " 'egg cell': {},\n",
+ " 'glioblast': {'glioblast (sensu Vertebrata)': {},\n",
+ " 'glioblast (sensu Nematoda and Protostomia)': {},\n",
+ " 'Schwann cell precursor': {}},\n",
+ " 'neuroblast (sensu Vertebrata)': {'cerebellar granule cell precursor': {},\n",
+ " 'neural crest derived neuroblast': {},\n",
+ " 'forebrain neuroblast': {}},\n",
+ " 'stem cell': {'germ line stem cell': {'male germ line stem cell': {},\n",
+ " 'female germ line stem cell': {}},\n",
+ " 'multi fate stem cell': {'mesenchymal stem cell': {'metanephric mesenchyme stem cell': {},\n",
+ " 'hair follicle dermal papilla cell': {'hair follicle dermal papilla cell of scalp': {}},\n",
+ " 'nephrogenic mesenchyme stem cell': {},\n",
+ " 'angioblastic mesenchymal cell': {'adult endothelial progenitor cell': {'colony forming unit β Hill cell': {},\n",
+ " 'circulating angiogenic cell': {},\n",
+ " 'endothelial colony forming cell': {}}},\n",
+ " 'amnion mesenchymal stem cell': {},\n",
+ " 'mesenchymal stem cell of the bone marrow': {'mesenchymal stem cell of femoral bone marrow': {}},\n",
+ " 'chorionic membrane mesenchymal stem cell': {},\n",
+ " 'mesenchymal stem cell of umbilical cord': {\"mesenchymal stem cell of Wharton's jelly\": {}},\n",
+ " 'mesenchymal stem cell of adipose tissue': {'mesenchymal stem cell of abdominal adipose tissue': {}},\n",
+ " 'hepatic mesenchymal stem cell': {},\n",
+ " 'vertebral mesenchymal stem cell': {},\n",
+ " 'amniotic stem cell': {},\n",
+ " 'mesenchymal lymphangioblast': {},\n",
+ " 'placental amniotic mesenchymal stromal cell': {}},\n",
+ " 'blastemal cell': {},\n",
+ " 'multi-potent skeletal muscle stem cell': {},\n",
+ " 'stem cell of gastric gland': {},\n",
+ " 'hepatic stem cell': {'hepatic mesenchymal stem cell': {}},\n",
+ " 'intestinal crypt stem cell': {'intestinal crypt stem cell of large intestine': {'intestinal crypt stem cell of appendix': {}},\n",
+ " 'intestinal crypt stem cell of small intestine': {},\n",
+ " 'intestinal crypt stem cell of colon': {},\n",
+ " 'intestinal crypt stem cell of anorectum': {}},\n",
+ " 'type III taste bud cell': {},\n",
+ " 'keratinocyte stem cell': {},\n",
+ " 'prostate stem cell': {},\n",
+ " 'mammary stem cell': {},\n",
+ " 'cardioblast': {},\n",
+ " 'retinal progenitor cell': {},\n",
+ " 'lymphangioblast': {'mesenchymal lymphangioblast': {},\n",
+ " 'vascular lymphangioblast': {}},\n",
+ " 'hepatoblast': {},\n",
+ " 'neural crest cell': {'migratory neural crest cell': {'migratory cranial neural crest cell': {},\n",
+ " 'migratory trunk neural crest cell': {},\n",
+ " 'migratory enteric neural crest cell': {},\n",
+ " 'migratory cardiac neural crest cell': {'cardiac mesenchymal cell': {'endocardial cushion cell': {}}}},\n",
+ " 'premigratory neural crest cell': {},\n",
+ " 'vagal neural crest cell': {}}},\n",
+ " 'somatic stem cell': {'single fate stem cell': {'epithelial fate stem cell': {'stratified epithelial stem cell': {'stratified keratinized epithelial stem cell': {},\n",
+ " 'stratified non keratinized epithelial stem cell': {}},\n",
+ " 'seam cell': {},\n",
+ " 'follicle stem cell (sensu Arthropoda)': {},\n",
+ " 'basal cell': {'basal cell of epidermis': {'limb basal cell of epidermis': {}},\n",
+ " 'respiratory basal cell': {'basal cell of epithelium of trachea': {},\n",
+ " 'basal cell of epithelium of bronchus': {},\n",
+ " 'basal cell of epithelium of terminal bronchiole': {'bronchioalveolar stem cell': {}},\n",
+ " 'basal cell of epithelium of respiratory bronchiole': {'bronchioalveolar stem cell': {}},\n",
+ " 'basal cell of epithelium of lobular bronchiole': {}},\n",
+ " 'epithelial cell of stratum germinativum of esophagus': {},\n",
+ " 'basal cell of urothelium': {},\n",
+ " 'airway submucosal gland duct basal cell': {}},\n",
+ " 'amniotic epithelial stem cell': {}},\n",
+ " 'hair matrix stem cell': {},\n",
+ " 'primitive cardiac myocyte': {},\n",
+ " 'skeletal muscle satellite stem cell': {}},\n",
+ " 'hematopoietic stem cell': {'Kit and Sca1-positive hematopoietic stem cell': {'short term hematopoietic stem cell': {},\n",
+ " 'long term hematopoietic stem cell': {}},\n",
+ " 'CD34-positive, CD38-negative hematopoietic stem cell': {},\n",
+ " 'peripheral blood stem cell': {'cord blood hematopoietic stem cell': {}},\n",
+ " 'gestational hematopoietic stem cell': {'fetal liver hematopoietic progenitor cell': {},\n",
+ " 'yolk sac hematopoietic stem cell': {},\n",
+ " 'placental hematopoietic stem cell': {},\n",
+ " 'AGM hematopoietic stem cell': {},\n",
+ " 'cord blood hematopoietic stem cell': {}}},\n",
+ " 'totipotent stem cell': {'epiblast cell': {}},\n",
+ " 'pluripotent stem cell': {},\n",
+ " 'neuroepithelial stem cell': {},\n",
+ " 'stem cell of epidermis': {'basal cell of epidermis': {'limb basal cell of epidermis': {}}}},\n",
+ " 'type IV taste receptor cell': {},\n",
+ " 'embryonic stem cell': {},\n",
+ " 'Leydig stem cell': {},\n",
+ " 'dental pulp stem cell': {}},\n",
+ " 'epithelial cell': {'ciliated epithelial cell': {'ependymal cell': {'choroid plexus epithelial cell': {}},\n",
+ " 'brush border epithelial cell': {'enterocyte': {'enterocyte of epithelium of large intestine': {'enterocyte of epithelium proper of large intestine': {},\n",
+ " 'enterocyte of colon': {}},\n",
+ " 'enterocyte of appendix': {},\n",
+ " 'enterocyte of anorectum': {},\n",
+ " 'vacuolated fetal-type enterocyte': {},\n",
+ " 'lysosome-rich enterocyte': {},\n",
+ " 'enterocyte of epithelium of small intestine': {'enterocyte of epithelium of intestinal villus': {},\n",
+ " 'enterocyte of epithelium of crypt of Lieberkuhn of small intestine': {},\n",
+ " 'enterocyte of epithelium proper of small intestine': {'enterocyte of epithelium proper of duodenum': {},\n",
+ " 'enterocyte of epithelium proper of jejunum': {},\n",
+ " 'enterocyte of epithelium proper of ileum': {}}},\n",
+ " 'enterocyte of epithelium of duodenal gland': {}},\n",
+ " 'epithelial cell of proximal tubule': {'brush border cell of the proximal tubule': {},\n",
+ " 'kidney proximal convoluted tubule epithelial cell': {},\n",
+ " 'kidney proximal straight tubule epithelial cell': {},\n",
+ " 'epithelial cell of proximal tubule segment 1': {},\n",
+ " 'epithelial cell of proximal tubule segment 2': {},\n",
+ " 'epithelial cell of proximal tubule segment 3': {},\n",
+ " 'CD24-positive, CD-133-positive, vimentin-positive proximal tubular cell': {}}},\n",
+ " 'multi-ciliated epithelial cell': {'ciliated columnar cell of tracheobronchial tree': {'ciliated cell of the bronchus': {}},\n",
+ " 'fallopian tube ciliated cell': {}},\n",
+ " 'single ciliated epithelial cell': {},\n",
+ " 'ciliated epithelial cell of esophagus': {},\n",
+ " 'endometrial ciliated epithelial cell': {'luminal endometrial ciliated epithelial cell': {},\n",
+ " 'glandular endometrial ciliated epithelial cell': {}}},\n",
+ " 'duct epithelial cell': {'branched duct epithelial cell': {'tracheoblast': {},\n",
+ " 'pancreatic ductal cell': {},\n",
+ " 'luminal epithelial cell of mammary gland': {'luminal cell of acinus of lactiferous gland': {},\n",
+ " 'luminal cell of lactiferous duct': {'luminal cell of lactiferous terminal ductal lobular unit': {}}},\n",
+ " 'pancreatic goblet cell': {},\n",
+ " 'cholangiocyte': {'intrahepatic cholangiocyte': {},\n",
+ " 'extrahepatic cholangiocyte': {}}},\n",
+ " 'non-branched duct epithelial cell': {'epithelial cell of prostatic duct': {},\n",
+ " 'epithelial cell of lacrimal duct': {'epithelial cell of nasolacrimal duct': {}},\n",
+ " 'kidney collecting duct epithelial cell': {'kidney collecting duct principal cell': {'kidney cortex collecting duct principal cell': {},\n",
+ " 'kidney outer medulla collecting duct principal cell': {},\n",
+ " 'kidney inner medulla collecting duct principal cell': {},\n",
+ " 'kidney papillary duct principal cell': {}},\n",
+ " 'kidney collecting duct intercalated cell': {'kidney cortex collecting duct intercalated cell': {'kidney collecting duct beta-intercalated cell': {}},\n",
+ " 'kidney outer medulla collecting duct intercalated cell': {},\n",
+ " 'kidney inner medulla collecting duct intercalated cell': {},\n",
+ " 'kidney papillary duct intercalated cell': {},\n",
+ " 'kidney collecting duct alpha-intercalated cell': {}}}},\n",
+ " 'basal epithelial cell of prostatic duct': {},\n",
+ " 'luminal epithelial cell of prostatic duct': {},\n",
+ " 'seminiferous tubule epithelial cell': {'Sertoli cell': {},\n",
+ " 'peritubular myoid cell': {}},\n",
+ " 'myoepithelial cell of lactiferous duct': {},\n",
+ " 'epithelial cell of lacrimal sac': {},\n",
+ " 'epididymis glandular cell': {},\n",
+ " 'seminal vesicle glandular cell': {}},\n",
+ " 'barrier epithelial cell': {},\n",
+ " 'columnar/cuboidal epithelial cell': {'simple columnar epithelial cell': {'ameloblast': {},\n",
+ " 'imaginal disc cell': {}},\n",
+ " 'myoepithelial cell': {'myoepithelial cell of mammary gland': {'myoepithelial cell of lactiferous alveolus': {},\n",
+ " 'myoepithelial cell of lactiferous duct': {},\n",
+ " 'myoepithelial cell of acinus of lactiferous gland': {}},\n",
+ " 'peritubular myoid cell': {},\n",
+ " 'myoepithelial cell of intralobular lactiferous duct': {},\n",
+ " 'myoepithelial cell of sweat gland': {},\n",
+ " 'myoepithelial cell of terminal lactiferous duct': {},\n",
+ " 'myoepithelial cell of dilator pupillae': {},\n",
+ " 'myoepithelial cell of main lactiferous duct': {},\n",
+ " 'myoepithelial cell of primary lactiferous duct': {},\n",
+ " 'myoepithelial cell of secondary lactiferous duct': {},\n",
+ " 'myoepithelial cell of tertiary lactiferous duct': {},\n",
+ " 'myoepithelial cell of quarternary lactiferous duct': {},\n",
+ " 'myoepithelial cell of bronchus submucosal gland': {},\n",
+ " 'myoepithelial cell of trachea gland': {}},\n",
+ " 'brush border epithelial cell': {'enterocyte': {'enterocyte of epithelium of large intestine': {'enterocyte of epithelium proper of large intestine': {},\n",
+ " 'enterocyte of colon': {}},\n",
+ " 'enterocyte of appendix': {},\n",
+ " 'enterocyte of anorectum': {},\n",
+ " 'vacuolated fetal-type enterocyte': {},\n",
+ " 'lysosome-rich enterocyte': {},\n",
+ " 'enterocyte of epithelium of small intestine': {'enterocyte of epithelium of intestinal villus': {},\n",
+ " 'enterocyte of epithelium of crypt of Lieberkuhn of small intestine': {},\n",
+ " 'enterocyte of epithelium proper of small intestine': {'enterocyte of epithelium proper of duodenum': {},\n",
+ " 'enterocyte of epithelium proper of jejunum': {},\n",
+ " 'enterocyte of epithelium proper of ileum': {}}},\n",
+ " 'enterocyte of epithelium of duodenal gland': {}},\n",
+ " 'epithelial cell of proximal tubule': {'brush border cell of the proximal tubule': {},\n",
+ " 'kidney proximal convoluted tubule epithelial cell': {},\n",
+ " 'kidney proximal straight tubule epithelial cell': {},\n",
+ " 'epithelial cell of proximal tubule segment 1': {},\n",
+ " 'epithelial cell of proximal tubule segment 2': {},\n",
+ " 'epithelial cell of proximal tubule segment 3': {},\n",
+ " 'CD24-positive, CD-133-positive, vimentin-positive proximal tubular cell': {}}},\n",
+ " 'stratified cuboidal epithelial cell': {},\n",
+ " 'sheath cell': {},\n",
+ " 'neurecto-epithelial cell': {'odontoblast': {'non-terminally differentiated odontoblast': {},\n",
+ " 'terminally differentiated odontoblast': {}},\n",
+ " 'ependymal cell': {'choroid plexus epithelial cell': {}},\n",
+ " 'corneal endothelial cell': {},\n",
+ " 'neuroendocrine cell': {'amine precursor uptake and decarboxylation cell': {'chromaffin cell': {'type EC enteroendocrine cell': {'type EC2 enteroendocrine cell': {},\n",
+ " 'type EC1 enteroendocrine cell': {},\n",
+ " 'type ECL enteroendocrine cell': {}},\n",
+ " 'chromophil cell of anterior pituitary gland': {'acidophil cell of pars distalis of adenohypophysis': {'mammosomatotroph': {},\n",
+ " 'mammotroph': {},\n",
+ " 'somatotroph': {}},\n",
+ " 'basophil cell of pars distalis of adenohypophysis': {'gonadtroph': {},\n",
+ " 'thyrotroph': {},\n",
+ " 'corticotroph': {}}},\n",
+ " 'interrenal chromaffin cell': {'interrenal norepinephrine type cell': {},\n",
+ " 'interrenal epinephrin secreting cell': {}},\n",
+ " 'chromaffin cell of paraganglion': {'chromaffin cell of paraaortic body': {}},\n",
+ " 'chromaffin cell of adrenal gland': {'adrenal medulla chromaffin cell': {'type II cell of adrenal medulla': {},\n",
+ " 'type I cell of adrenal medulla': {}},\n",
+ " 'adrenal cortex chromaffin cell': {}},\n",
+ " 'chromaffin cell of ovary': {'chromaffin cell of right ovary': {},\n",
+ " 'chromaffin cell of left ovary': {}}}},\n",
+ " 'paraganglial type 1 cell': {},\n",
+ " 'Feyrter cell': {'dense-core granulated cell of epithelium of trachea': {}},\n",
+ " 'magnocellular neurosecretory cell': {'oxytocin-secreting magnocellular cell': {},\n",
+ " 'vasopressin-secreting magnocellular cell': {}},\n",
+ " 'gonadotropin-releasing hormone neuron': {},\n",
+ " 'prostate neuroendocrine cell': {},\n",
+ " 'stomach neuroendocrine cell': {},\n",
+ " 'lung neuroendocrine cell': {'neuroendocrine cell of epithelium of lobar bronchus': {}},\n",
+ " 'parvocellular neurosecretory cell': {},\n",
+ " 'neuroendocrine cell of epithelium of crypt of Lieberkuhn': {}},\n",
+ " 'Merkel cell': {},\n",
+ " 'epidermal cell (sensu Arthropoda)': {'tormogen cell': {},\n",
+ " 'trichogen cell': {}},\n",
+ " 'epidermoblast': {},\n",
+ " 'pigmented epithelial cell': {'pigmented ciliary epithelial cell': {}},\n",
+ " 'parafollicular cell': {},\n",
+ " 'pinealocyte': {'type I pinealocyte': {}, 'type II pinealocyte': {}},\n",
+ " 'cerebrospinal fluid secreting cell': {},\n",
+ " 'interstitial cell of Cajal': {},\n",
+ " 'olfactory epithelial cell': {'basal cell of olfactory epithelium': {'olfactory epithelial supporting cell': {},\n",
+ " 'globose cell of olfactory epithelium': {},\n",
+ " 'basal proper cell of olfactory epithelium': {}}},\n",
+ " 'folliculostellate cell of pars distalis of adenohypophysis': {},\n",
+ " 'interstitial cell of pineal gland': {},\n",
+ " 'supporting cell of carotid body': {'type II cell of carotid body': {}},\n",
+ " 'type I cell of carotid body': {},\n",
+ " 'non-pigmented ciliary epithelial cell': {},\n",
+ " 'meningothelial cell': {},\n",
+ " 'strial intermediate cell': {},\n",
+ " 'auditory epithelial supporting cell': {'supporting cell of cochlea': {'Claudius cell': {},\n",
+ " 'Boettcher cell': {},\n",
+ " 'border cell of cochlea': {},\n",
+ " 'interdental cell of cochlea': {},\n",
+ " 'organ of Corti supporting cell': {'Hensen cell': {},\n",
+ " 'phalangeal cell': {\"Deiter's cell\": {},\n",
+ " 'inner phalangeal cell': {}},\n",
+ " 'pillar cell': {'internal pillar cell of cochlea': {},\n",
+ " 'external pillar cell of cochlea': {}}}},\n",
+ " 'supporting cell of vestibular epithelium': {'external supporting cell of vestibular epithelium': {},\n",
+ " 'external limiting cell of vestibular epithelium': {}}},\n",
+ " 'hypendymal cell': {}},\n",
+ " 'lens epithelial cell': {'anterior lens cell': {}},\n",
+ " 'endothelial cell of high endothelial venule': {},\n",
+ " 'renal principal cell': {'kidney collecting duct principal cell': {'kidney cortex collecting duct principal cell': {},\n",
+ " 'kidney outer medulla collecting duct principal cell': {},\n",
+ " 'kidney inner medulla collecting duct principal cell': {},\n",
+ " 'kidney papillary duct principal cell': {}},\n",
+ " 'kidney connecting tubule principal cell': {}},\n",
+ " 'renal intercalated cell': {'renal beta-intercalated cell': {'kidney collecting duct beta-intercalated cell': {},\n",
+ " 'kidney connecting tubule beta-intercalated cell': {}},\n",
+ " 'renal alpha-intercalated cell': {'kidney collecting duct alpha-intercalated cell': {},\n",
+ " 'kidney connecting tubule alpha-intercalated cell': {}},\n",
+ " 'kidney collecting duct intercalated cell': {'kidney cortex collecting duct intercalated cell': {'kidney collecting duct beta-intercalated cell': {}},\n",
+ " 'kidney outer medulla collecting duct intercalated cell': {},\n",
+ " 'kidney inner medulla collecting duct intercalated cell': {},\n",
+ " 'kidney papillary duct intercalated cell': {},\n",
+ " 'kidney collecting duct alpha-intercalated cell': {}},\n",
+ " 'kidney connecting tubule intercalated cell': {'kidney connecting tubule alpha-intercalated cell': {},\n",
+ " 'kidney connecting tubule beta-intercalated cell': {}}}},\n",
+ " 'squamous epithelial cell': {'blood vessel endothelial cell': {'endothelial tip cell': {},\n",
+ " 'vein endothelial cell': {'endothelial cell of umbilical vein': {},\n",
+ " 'vasa recta cell': {'inner renal medulla vasa recta cell': {'inner medulla vasa recta ascending limb cell': {},\n",
+ " 'inner medulla vasa recta descending limb cell': {}},\n",
+ " 'outer renal medulla vasa recta cell': {'outer medulla vasa recta ascending limb cell': {},\n",
+ " 'outer medulla vasa recta descending limb cell': {}},\n",
+ " 'vasa recta ascending limb cell': {'inner medulla vasa recta ascending limb cell': {},\n",
+ " 'outer medulla vasa recta ascending limb cell': {}},\n",
+ " 'vasa recta descending limb cell': {'inner medulla vasa recta descending limb cell': {},\n",
+ " 'outer medulla vasa recta descending limb cell': {}}},\n",
+ " 'arcuate vein endothelial cell': {},\n",
+ " 'interlobulary vein endothelial cell': {},\n",
+ " 'hindlimb stylopod vein endothelial cell': {},\n",
+ " 'vein endothelial cell of respiratory system': {}},\n",
+ " 'retinal blood vessel endothelial cell': {},\n",
+ " 'endothelial stalk cell': {},\n",
+ " 'cardiac blood vessel endothelial cell': {'endothelial cell of coronary artery': {}},\n",
+ " 'endothelial cell of arteriole': {'kidney afferent arteriole endothelial cell': {},\n",
+ " 'kidney efferent arteriole endothelial cell': {},\n",
+ " 'endothelial cell of arteriole of lymph node': {}},\n",
+ " 'endothelial cell of artery': {'aortic endothelial cell': {'thoracic aorta endothelial cell': {}},\n",
+ " 'arcuate artery endothelial cell': {},\n",
+ " 'interlobulary artery endothelial cell': {'kidney afferent arteriole endothelial cell': {}},\n",
+ " 'pulmonary artery endothelial cell': {},\n",
+ " 'endothelial cell of coronary artery': {},\n",
+ " 'umbilical artery endothelial cell': {}},\n",
+ " 'kidney capillary endothelial cell': {'glomerular capillary endothelial cell': {},\n",
+ " 'peritubular capillary endothelial cell': {'kidney outer medulla peritubular capillary cell': {},\n",
+ " 'kidney cortex peritubular capillary cell': {}},\n",
+ " 'vasa recta cell': {'inner renal medulla vasa recta cell': {'inner medulla vasa recta ascending limb cell': {},\n",
+ " 'inner medulla vasa recta descending limb cell': {}},\n",
+ " 'outer renal medulla vasa recta cell': {'outer medulla vasa recta ascending limb cell': {},\n",
+ " 'outer medulla vasa recta descending limb cell': {}},\n",
+ " 'vasa recta ascending limb cell': {'inner medulla vasa recta ascending limb cell': {},\n",
+ " 'outer medulla vasa recta ascending limb cell': {}},\n",
+ " 'vasa recta descending limb cell': {'inner medulla vasa recta descending limb cell': {},\n",
+ " 'outer medulla vasa recta descending limb cell': {}}}},\n",
+ " 'microvascular endothelial cell': {'capillary endothelial cell': {'glomerular capillary endothelial cell': {},\n",
+ " 'placental villus capillary endothelial cell': {},\n",
+ " 'pulmonary capillary endothelial cell': {'alveolar capillary type 1 endothelial cell': {},\n",
+ " 'alveolar capillary type 2 endothelial cell': {}}},\n",
+ " 'dermal microvascular endothelial cell': {},\n",
+ " 'lung microvascular endothelial cell': {'pulmonary capillary endothelial cell': {'alveolar capillary type 1 endothelial cell': {},\n",
+ " 'alveolar capillary type 2 endothelial cell': {}}},\n",
+ " 'bladder microvascular endothelial cell': {},\n",
+ " 'brain microvascular endothelial cell': {},\n",
+ " 'prostate gland microvascular endothelial cell': {},\n",
+ " 'ovarian microvascular endothelial cell': {},\n",
+ " 'mammary microvascular endothelial cell': {},\n",
+ " 'adipose microvascular endothelial cell': {},\n",
+ " 'endometrial microvascular endothelial cell': {}},\n",
+ " 'dermis blood vessel endothelial cell': {'dermal microvascular endothelial cell': {}}},\n",
+ " 'mesothelial cell': {'littoral cell of liver': {},\n",
+ " 'seminiferous tubule epithelial cell': {'Sertoli cell': {},\n",
+ " 'peritubular myoid cell': {}},\n",
+ " 'mesothelial cell of small intestine': {},\n",
+ " 'mesothelial cell of colon': {},\n",
+ " 'mesothelial cell of appendix': {},\n",
+ " 'mesothelial cell of epicardium': {},\n",
+ " 'mesothelial cell of dura mater': {},\n",
+ " 'mesothelial cell of anterior chamber of eye': {},\n",
+ " 'mesothelial cell of peritoneum': {'mesothelial cell of parietal peritoneum': {},\n",
+ " 'mesothelial cell of visceral peritoneum': {}},\n",
+ " 'mesothelial cell of pleura': {'mesothelial cell of parietal pleura': {},\n",
+ " 'mesothelial cell of visceral pleura': {}}},\n",
+ " 'peridermal cell': {},\n",
+ " 'stratified squamous epithelial cell': {'keratinizing barrier epithelial cell': {'keratinocyte': {'Merkel cell': {},\n",
+ " 'prickle cell': {},\n",
+ " 'basal cell of epidermis': {'limb basal cell of epidermis': {}},\n",
+ " 'granular cell of epidermis': {},\n",
+ " 'squamous cell of epidermis': {},\n",
+ " 'keratinocyte stem cell': {},\n",
+ " 'foreskin keratinocyte': {},\n",
+ " 'hair follicular keratinocyte': {'keratinized cell of hair follicle': {}},\n",
+ " 'suprabasal keratinocyte': {}},\n",
+ " 'keratinized cell of the oral mucosa': {},\n",
+ " 'keratinized squamous cell of esophagus': {},\n",
+ " 'keratinized epithelial cell of the anal canal': {}},\n",
+ " 'non keratinizing barrier epithelial cell': {'esophagus non-keratinized squamous epithelial cell': {}},\n",
+ " 'stratified squamous epithelial cell of anal canal': {'keratinized epithelial cell of the anal canal': {}}},\n",
+ " 'Caenorhabditis hypodermal cell': {},\n",
+ " 'corneal epithelial cell': {},\n",
+ " 'squamous cell of ectocervix': {},\n",
+ " 'squamous endothelial cell': {},\n",
+ " 'uterine cervix squamous cell': {},\n",
+ " 'oral mucosa squamous cell': {},\n",
+ " 'tonsil squamous cell': {},\n",
+ " 'vagina squamous cell': {}},\n",
+ " 'stratified epithelial cell': {'stratified squamous epithelial cell': {'keratinizing barrier epithelial cell': {'keratinocyte': {'Merkel cell': {},\n",
+ " 'prickle cell': {},\n",
+ " 'basal cell of epidermis': {'limb basal cell of epidermis': {}},\n",
+ " 'granular cell of epidermis': {},\n",
+ " 'squamous cell of epidermis': {},\n",
+ " 'keratinocyte stem cell': {},\n",
+ " 'foreskin keratinocyte': {},\n",
+ " 'hair follicular keratinocyte': {'keratinized cell of hair follicle': {}},\n",
+ " 'suprabasal keratinocyte': {}},\n",
+ " 'keratinized cell of the oral mucosa': {},\n",
+ " 'keratinized squamous cell of esophagus': {},\n",
+ " 'keratinized epithelial cell of the anal canal': {}},\n",
+ " 'non keratinizing barrier epithelial cell': {'esophagus non-keratinized squamous epithelial cell': {}},\n",
+ " 'stratified squamous epithelial cell of anal canal': {'keratinized epithelial cell of the anal canal': {}}},\n",
+ " 'stratified cuboidal epithelial cell': {}},\n",
+ " 'epithelial cell of lung': {'brush cell of lobular bronchiole': {},\n",
+ " 'brush cell of terminal bronchiole': {},\n",
+ " 'epithelial cell of alveolus of lung': {'pneumocyte': {'type I pneumocyte': {},\n",
+ " 'type II pneumocyte': {},\n",
+ " 'fetal pre-type II pneumocyte': {}},\n",
+ " 'alveolar capillary type 1 endothelial cell': {},\n",
+ " 'alveolar capillary type 2 endothelial cell': {}},\n",
+ " 'pulmonary ionocyte': {},\n",
+ " 'lung goblet cell': {'goblet cell of epithelium of lobar bronchus': {}},\n",
+ " 'lung neuroendocrine cell': {'neuroendocrine cell of epithelium of lobar bronchus': {}},\n",
+ " 'basal cell of epithelium of terminal bronchiole': {'bronchioalveolar stem cell': {}},\n",
+ " 'basal cell of epithelium of respiratory bronchiole': {'bronchioalveolar stem cell': {}},\n",
+ " 'basal cell of epithelium of lobular bronchiole': {},\n",
+ " 'mesothelial cell of visceral pleura': {},\n",
+ " 'lung endothelial cell': {'lung microvascular endothelial cell': {'pulmonary capillary endothelial cell': {'alveolar capillary type 1 endothelial cell': {},\n",
+ " 'alveolar capillary type 2 endothelial cell': {}}}},\n",
+ " 'brush cell of epithelium of lobar bronchus': {}},\n",
+ " 'epithelial cell of pancreas': {'pancreatic endocrine cell': {'type B pancreatic cell': {},\n",
+ " 'pancreatic A cell': {},\n",
+ " 'pancreatic D cell': {},\n",
+ " 'pancreatic PP cell': {},\n",
+ " 'pancreatic epsilon cell': {}},\n",
+ " 'epithelial cell of exocrine pancreas': {'pancreatic ductal cell': {},\n",
+ " 'pancreatic centro-acinar cell': {},\n",
+ " 'pancreas exocrine glandular cell': {'pancreatic acinar cell': {},\n",
+ " 'pancreatic goblet cell': {}}}},\n",
+ " 'sensory epithelial cell': {'taste receptor cell': {'type III taste bud cell': {},\n",
+ " 'type II taste cell': {},\n",
+ " 'type IV taste receptor cell': {},\n",
+ " 'type V taste receptor cell': {},\n",
+ " 'type I taste bud cell': {},\n",
+ " 'taste receptor cell of tongue': {}},\n",
+ " 'olfactory epithelial cell': {'basal cell of olfactory epithelium': {'olfactory epithelial supporting cell': {},\n",
+ " 'globose cell of olfactory epithelium': {},\n",
+ " 'basal proper cell of olfactory epithelium': {}}},\n",
+ " 'auditory epithelial cell': {'strial intermediate cell': {},\n",
+ " 'strial marginal cell': {},\n",
+ " 'strial basal cell': {},\n",
+ " 'auditory epithelial supporting cell': {'supporting cell of cochlea': {'Claudius cell': {},\n",
+ " 'Boettcher cell': {},\n",
+ " 'border cell of cochlea': {},\n",
+ " 'interdental cell of cochlea': {},\n",
+ " 'organ of Corti supporting cell': {'Hensen cell': {},\n",
+ " 'phalangeal cell': {\"Deiter's cell\": {},\n",
+ " 'inner phalangeal cell': {}},\n",
+ " 'pillar cell': {'internal pillar cell of cochlea': {},\n",
+ " 'external pillar cell of cochlea': {}}}},\n",
+ " 'supporting cell of vestibular epithelium': {'external supporting cell of vestibular epithelium': {},\n",
+ " 'external limiting cell of vestibular epithelium': {}}}},\n",
+ " 'lung neuroendocrine cell': {'neuroendocrine cell of epithelium of lobar bronchus': {}}},\n",
+ " 'glandular epithelial cell': {'goblet cell': {'respiratory goblet cell': {'nasal mucosa goblet cell': {},\n",
+ " 'tracheobronchial goblet cell': {'bronchial goblet cell': {'goblet cell of epithelium of lobar bronchus': {}},\n",
+ " 'tracheal goblet cell': {}},\n",
+ " 'lung goblet cell': {'goblet cell of epithelium of lobar bronchus': {}}},\n",
+ " 'intestine goblet cell': {'large intestine goblet cell': {'colon goblet cell': {},\n",
+ " 'anorectum goblet cell': {},\n",
+ " 'large intestine crypt goblet cell': {},\n",
+ " 'appendix goblet cell': {}},\n",
+ " 'small intestine goblet cell': {'intestinal villus goblet cell': {'duodenal goblet cell': {},\n",
+ " 'jejunal goblet cell': {},\n",
+ " 'ileal goblet cell': {}}}},\n",
+ " 'gastric goblet cell': {'gastric cardiac gland goblet cell': {},\n",
+ " 'principal gastric gland goblet cell': {},\n",
+ " 'pyloric gastric gland goblet cell': {}},\n",
+ " 'pancreatic goblet cell': {},\n",
+ " 'conjunctiva goblet cell': {}},\n",
+ " 'enteroendocrine cell': {'type D enteroendocrine cell': {'pancreatic D cell': {},\n",
+ " 'type D cell of colon': {},\n",
+ " 'type D cell of small intestine': {},\n",
+ " 'type D cell of stomach': {}},\n",
+ " 'enterochromaffin-like cell': {},\n",
+ " 'type G enteroendocrine cell': {},\n",
+ " 'type EC enteroendocrine cell': {'type EC2 enteroendocrine cell': {},\n",
+ " 'type EC1 enteroendocrine cell': {},\n",
+ " 'type ECL enteroendocrine cell': {}},\n",
+ " 'PP cell': {'pancreatic PP cell': {}, 'PP cell of intestine': {}},\n",
+ " 'type A enteroendocrine cell': {'pancreatic A cell': {},\n",
+ " 'type A cell of stomach': {}},\n",
+ " 'P/D1 enteroendocrine cell': {'P enteroendocrine cell': {},\n",
+ " 'type D1 enteroendocrine cell': {}},\n",
+ " 'type I enteroendocrine cell': {},\n",
+ " 'type L enteroendocrine cell': {},\n",
+ " 'type N enteroendocrine cell': {},\n",
+ " 'type S enteroendocrine cell': {},\n",
+ " 'type TG enteroendocrine cell': {},\n",
+ " 'type X enteroendocrine cell': {},\n",
+ " 'pancreatic endocrine cell': {'type B pancreatic cell': {},\n",
+ " 'pancreatic A cell': {},\n",
+ " 'pancreatic D cell': {},\n",
+ " 'pancreatic PP cell': {},\n",
+ " 'pancreatic epsilon cell': {}},\n",
+ " 'stomach neuroendocrine cell': {},\n",
+ " 'intestinal enteroendocrine cell': {'PP cell of intestine': {},\n",
+ " 'enteroendocrine cell of small intestine': {'type D cell of small intestine': {},\n",
+ " 'GIP cell': {},\n",
+ " 'type M enteroendocrine cell': {}},\n",
+ " 'enteroendocrine cell of appendix': {},\n",
+ " 'enteroendocrine cell of colon': {'type D cell of colon': {}},\n",
+ " 'enteroendocrine cell of anorectum': {},\n",
+ " 'neuroendocrine cell of epithelium of crypt of Lieberkuhn': {}},\n",
+ " 'stomach enteroendocrine cell': {}},\n",
+ " 'sweat secreting cell': {'dark cell of eccrine sweat gland': {},\n",
+ " 'clear cell of eccrine sweat gland': {}},\n",
+ " 'eccrine cell': {'dark cell of eccrine sweat gland': {},\n",
+ " 'clear cell of eccrine sweat gland': {}},\n",
+ " 'paneth cell': {'paneth cell of the appendix': {},\n",
+ " 'paneth cell of colon': {},\n",
+ " 'paneth cell of anorectum': {},\n",
+ " 'paneth cell of epithelium of small intestine': {'paneth cell of epithelium proper of small intestine': {},\n",
+ " 'paneth cell of epithelium of crypt of Lieberkuhn of small intestine': {}}},\n",
+ " 'acinar cell': {'pancreatic acinar cell': {},\n",
+ " 'acinar cell of sebaceous gland': {},\n",
+ " 'acinar cell of salivary gland': {}},\n",
+ " 'chromophil cell of anterior pituitary gland': {'acidophil cell of pars distalis of adenohypophysis': {'mammosomatotroph': {},\n",
+ " 'mammotroph': {},\n",
+ " 'somatotroph': {}},\n",
+ " 'basophil cell of pars distalis of adenohypophysis': {'gonadtroph': {},\n",
+ " 'thyrotroph': {},\n",
+ " 'corticotroph': {}}},\n",
+ " 'mucous neck cell': {'mucous neck cell of gastric gland': {}},\n",
+ " 'epithelial cell of thyroid gland': {'oxyphil cell of thyroid': {},\n",
+ " 'thyroid follicular cell': {}},\n",
+ " 'endocrine-paracrine cell of prostate gland': {},\n",
+ " 'glandular cell of esophagus': {'epithelial cell of esophageal gland proper': {},\n",
+ " 'epithelial cell of esophageal cardiac gland': {}},\n",
+ " 'glandular cell of the large intestine': {'paneth cell of anorectum': {},\n",
+ " 'enteroendocrine cell of anorectum': {},\n",
+ " 'large intestine goblet cell': {'colon goblet cell': {},\n",
+ " 'anorectum goblet cell': {},\n",
+ " 'large intestine crypt goblet cell': {},\n",
+ " 'appendix goblet cell': {}},\n",
+ " 'appendix glandular cell': {'paneth cell of the appendix': {},\n",
+ " 'enteroendocrine cell of appendix': {},\n",
+ " 'appendix goblet cell': {}},\n",
+ " 'colon glandular cell': {'paneth cell of colon': {},\n",
+ " 'colon goblet cell': {},\n",
+ " 'enteroendocrine cell of colon': {'type D cell of colon': {}}},\n",
+ " 'rectum glandular cell': {}},\n",
+ " 'glandular cell of stomach': {'peptic cell': {},\n",
+ " 'parietal cell': {},\n",
+ " 'mucous cell of stomach': {'type G enteroendocrine cell': {},\n",
+ " 'mucous neck cell of gastric gland': {},\n",
+ " 'surface mucosal cell of stomach': {},\n",
+ " 'stem cell of gastric gland': {},\n",
+ " 'gastric goblet cell': {'gastric cardiac gland goblet cell': {},\n",
+ " 'principal gastric gland goblet cell': {},\n",
+ " 'pyloric gastric gland goblet cell': {}}},\n",
+ " 'type A cell of stomach': {},\n",
+ " 'type D cell of stomach': {},\n",
+ " 'stomach neuroendocrine cell': {},\n",
+ " 'stomach enteroendocrine cell': {}},\n",
+ " 'chromaffin cell of adrenal gland': {'adrenal medulla chromaffin cell': {'type II cell of adrenal medulla': {},\n",
+ " 'type I cell of adrenal medulla': {}},\n",
+ " 'adrenal cortex chromaffin cell': {}},\n",
+ " 'mammary gland glandular cell': {'mammary alveolar cell': {}},\n",
+ " 'epididymis glandular cell': {},\n",
+ " 'oviduct glandular cell': {'glandular cell of endometrium': {},\n",
+ " 'uterine cervix glandular cell': {},\n",
+ " 'fallopian tube secretory epithelial cell': {}},\n",
+ " 'gallbladder glandular cell': {},\n",
+ " 'parathyroid glandular cell': {'epithelial cell of parathyroid gland': {'chief cell of parathyroid gland': {'active chief cell of parathyroid gland': {},\n",
+ " 'dark chief cell of parathyroid gland': {},\n",
+ " 'clear chief cell of parathyroid gland': {},\n",
+ " 'inactive chief cell of parathyoid gland': {},\n",
+ " 'light chief cell of parathyroid gland': {}},\n",
+ " 'oxyphil cell of parathyroid gland': {},\n",
+ " 'transitional cell of parathyroid gland': {}}},\n",
+ " 'salivary gland glandular cell': {'acinar cell of salivary gland': {}},\n",
+ " 'seminal vesicle glandular cell': {},\n",
+ " 'small intestine glandular cell': {'enteroendocrine cell of small intestine': {'type D cell of small intestine': {},\n",
+ " 'GIP cell': {},\n",
+ " 'type M enteroendocrine cell': {}},\n",
+ " 'paneth cell of epithelium of small intestine': {'paneth cell of epithelium proper of small intestine': {},\n",
+ " 'paneth cell of epithelium of crypt of Lieberkuhn of small intestine': {}},\n",
+ " 'small intestine goblet cell': {'intestinal villus goblet cell': {'duodenal goblet cell': {},\n",
+ " 'jejunal goblet cell': {},\n",
+ " 'ileal goblet cell': {}}},\n",
+ " 'duodenum glandular cell': {'duodenal goblet cell': {}}},\n",
+ " 'pancreas exocrine glandular cell': {'pancreatic acinar cell': {},\n",
+ " 'pancreatic goblet cell': {}},\n",
+ " 'adrenal gland glandular cell': {'cortical cell of adrenal gland': {'type I cell of adrenal cortex': {},\n",
+ " 'type II cell of adrenal cortex': {},\n",
+ " 'type III cell of adrenal cortex': {}},\n",
+ " 'adrenal cortex chromaffin cell': {}}},\n",
+ " 'hepatocyte': {'periportal region hepatocyte': {},\n",
+ " 'midzonal region hepatocyte': {},\n",
+ " 'centrilobular region hepatocyte': {}},\n",
+ " 'transitional epithelial cell': {'urothelial cell': {'basal cell of urothelium': {},\n",
+ " 'kidney pelvis urothelial cell': {},\n",
+ " 'ureter urothelial cell': {},\n",
+ " 'bladder urothelial cell': {'urothelial cell of trigone of urinary bladder': {}},\n",
+ " 'urethra urothelial cell': {},\n",
+ " 'intermediate cell of urothelium': {},\n",
+ " 'umbrella cell of urothelium': {}}},\n",
+ " 'arcade cell': {},\n",
+ " 'syncytial epithelial cell': {},\n",
+ " 'follicular epithelial cell': {'follicle cell of egg chamber': {'border follicle cell': {},\n",
+ " 'centripetally migrating follicle cell': {},\n",
+ " 'interfollicle cell': {}},\n",
+ " 'eggshell secreting cell': {},\n",
+ " 'follicular cell of ovary': {'granulosa cell': {},\n",
+ " 'cumulus cell': {'corona radiata cell': {}},\n",
+ " 'primary follicular cell of ovary': {},\n",
+ " 'secondary follicular cell of ovary': {}}},\n",
+ " 'cuticle secreting cell': {'socket cell (sensu Nematoda)': {},\n",
+ " 'pore cell': {}},\n",
+ " 'fenestrated cell': {'glomerular endothelial cell': {'glomerular capillary endothelial cell': {}}},\n",
+ " 'leading edge cell': {},\n",
+ " 'vestibular dark cell': {},\n",
+ " 'endo-epithelial cell': {'taste receptor cell': {'type III taste bud cell': {},\n",
+ " 'type II taste cell': {},\n",
+ " 'type IV taste receptor cell': {},\n",
+ " 'type V taste receptor cell': {},\n",
+ " 'type I taste bud cell': {},\n",
+ " 'taste receptor cell of tongue': {}},\n",
+ " 'epithelial cell of uterus': {'columnar cell of endocervix': {},\n",
+ " 'squamous cell of ectocervix': {}},\n",
+ " 'internal epithelial cell of tympanic membrane': {},\n",
+ " 'oncocyte': {'oxyphil cell of parathyroid gland': {},\n",
+ " 'oxyphil cell of thyroid': {}},\n",
+ " 'brush cell': {'brush cell of trachebronchial tree': {'brush cell of lobular bronchiole': {},\n",
+ " 'brush cell of terminal bronchiole': {},\n",
+ " 'brush cell of trachea': {},\n",
+ " 'brush cell of bronchus': {'brush cell of epithelium of lobar bronchus': {}}},\n",
+ " 'intestinal tuft cell': {'brush cell of epithelium proper of large intestine': {'tuft cell of appendix': {},\n",
+ " 'tuft cell of colon': {},\n",
+ " 'tuft cell of anorectum': {}},\n",
+ " 'tuft cell of small intestine': {}}},\n",
+ " 'epithelial cell of prostate': {'epithelial cell of prostatic duct': {},\n",
+ " 'epithelial cell of prostatic acinus': {'basal cell of prostatic acinus': {},\n",
+ " 'luminal cell of prostatic acinus': {}},\n",
+ " 'luminal cell of prostate epithelium': {'luminal cell of prostatic acinus': {},\n",
+ " 'luminal epithelial cell of prostatic duct': {}},\n",
+ " 'basal cell of prostate epithelium': {'basal cell of prostatic acinus': {},\n",
+ " 'basal epithelial cell of prostatic duct': {},\n",
+ " 'prostate stem cell': {}}},\n",
+ " 'epithelial cell of alimentary canal': {'type EC enteroendocrine cell': {'type EC2 enteroendocrine cell': {},\n",
+ " 'type EC1 enteroendocrine cell': {},\n",
+ " 'type ECL enteroendocrine cell': {}},\n",
+ " 'M cell of gut': {'microfold cell of epithelium of small intestine': {'microfold cell of epithelium of intestinal villus': {'microfold cell of epithelium proper of duodenum': {}},\n",
+ " 'microfold cell of epithelium proper of small intestine': {},\n",
+ " 'microfold cell of epithelium proper of jejunum': {},\n",
+ " 'microfold cell of epithelium proper of ileum': {}},\n",
+ " 'microfold cell of epithelium proper of large intestine': {'microfold cell of epithelium proper of anorectum': {},\n",
+ " 'microfold cell of epithelium proper of appendix': {}}},\n",
+ " 'epithelial cell of Malassez': {},\n",
+ " 'keratinized cell of the oral mucosa': {},\n",
+ " 'epithelial cell of stomach': {'foveolar cell of stomach': {},\n",
+ " 'glandular cell of stomach': {'peptic cell': {},\n",
+ " 'parietal cell': {},\n",
+ " 'mucous cell of stomach': {'type G enteroendocrine cell': {},\n",
+ " 'mucous neck cell of gastric gland': {},\n",
+ " 'surface mucosal cell of stomach': {},\n",
+ " 'stem cell of gastric gland': {},\n",
+ " 'gastric goblet cell': {'gastric cardiac gland goblet cell': {},\n",
+ " 'principal gastric gland goblet cell': {},\n",
+ " 'pyloric gastric gland goblet cell': {}}},\n",
+ " 'type A cell of stomach': {},\n",
+ " 'type D cell of stomach': {},\n",
+ " 'stomach neuroendocrine cell': {},\n",
+ " 'stomach enteroendocrine cell': {}}},\n",
+ " 'epithelial cell of esophagus': {'keratinized squamous cell of esophagus': {},\n",
+ " 'epithelial cell of stratum corneum of esophageal epithelium': {'nonkeratinized cell of stratum corneum of esophageal epithelium': {}},\n",
+ " 'epithelial cell of stratum spinosum of esophageal epithelium': {},\n",
+ " 'glandular cell of esophagus': {'epithelial cell of esophageal gland proper': {},\n",
+ " 'epithelial cell of esophageal cardiac gland': {}},\n",
+ " 'esophagus non-keratinized squamous epithelial cell': {},\n",
+ " 'ciliated epithelial cell of esophagus': {}},\n",
+ " 'intestinal epithelial cell': {'paneth cell': {'paneth cell of the appendix': {},\n",
+ " 'paneth cell of colon': {},\n",
+ " 'paneth cell of anorectum': {},\n",
+ " 'paneth cell of epithelium of small intestine': {'paneth cell of epithelium proper of small intestine': {},\n",
+ " 'paneth cell of epithelium of crypt of Lieberkuhn of small intestine': {}}},\n",
+ " 'enterocyte': {'enterocyte of epithelium of large intestine': {'enterocyte of epithelium proper of large intestine': {},\n",
+ " 'enterocyte of colon': {}},\n",
+ " 'enterocyte of appendix': {},\n",
+ " 'enterocyte of anorectum': {},\n",
+ " 'vacuolated fetal-type enterocyte': {},\n",
+ " 'lysosome-rich enterocyte': {},\n",
+ " 'enterocyte of epithelium of small intestine': {'enterocyte of epithelium of intestinal villus': {},\n",
+ " 'enterocyte of epithelium of crypt of Lieberkuhn of small intestine': {},\n",
+ " 'enterocyte of epithelium proper of small intestine': {'enterocyte of epithelium proper of duodenum': {},\n",
+ " 'enterocyte of epithelium proper of jejunum': {},\n",
+ " 'enterocyte of epithelium proper of ileum': {}}},\n",
+ " 'enterocyte of epithelium of duodenal gland': {}},\n",
+ " 'intestinal crypt stem cell': {'intestinal crypt stem cell of large intestine': {'intestinal crypt stem cell of appendix': {}},\n",
+ " 'intestinal crypt stem cell of small intestine': {},\n",
+ " 'intestinal crypt stem cell of colon': {},\n",
+ " 'intestinal crypt stem cell of anorectum': {}},\n",
+ " 'epithelial cell of large intestine': {'enterocyte of epithelium of large intestine': {'enterocyte of epithelium proper of large intestine': {},\n",
+ " 'enterocyte of colon': {}},\n",
+ " 'brush cell of epithelium proper of large intestine': {'tuft cell of appendix': {},\n",
+ " 'tuft cell of colon': {},\n",
+ " 'tuft cell of anorectum': {}},\n",
+ " 'epithelial cell of anal column': {'nonkeratinized epithelial cell of anal column': {'nonkeratinized epithelial cell of inferior part of anal canal': {}},\n",
+ " 'keratinized epithelial cell of the anal canal': {},\n",
+ " 'epithelial cell of wall of inferior part of anal canal': {'nonkeratinized epithelial cell of inferior part of anal canal': {}}},\n",
+ " 'glandular cell of the large intestine': {'paneth cell of anorectum': {},\n",
+ " 'enteroendocrine cell of anorectum': {},\n",
+ " 'large intestine goblet cell': {'colon goblet cell': {},\n",
+ " 'anorectum goblet cell': {},\n",
+ " 'large intestine crypt goblet cell': {},\n",
+ " 'appendix goblet cell': {}},\n",
+ " 'appendix glandular cell': {'paneth cell of the appendix': {},\n",
+ " 'enteroendocrine cell of appendix': {},\n",
+ " 'appendix goblet cell': {}},\n",
+ " 'colon glandular cell': {'paneth cell of colon': {},\n",
+ " 'colon goblet cell': {},\n",
+ " 'enteroendocrine cell of colon': {'type D cell of colon': {}}},\n",
+ " 'rectum glandular cell': {}},\n",
+ " 'intestinal crypt stem cell of large intestine': {'intestinal crypt stem cell of appendix': {}},\n",
+ " 'enterocyte of anorectum': {},\n",
+ " 'intestinal crypt stem cell of anorectum': {},\n",
+ " 'stratified squamous epithelial cell of anal canal': {'keratinized epithelial cell of the anal canal': {}},\n",
+ " 'colon epithelial cell': {'mesothelial cell of colon': {},\n",
+ " 'tuft cell of colon': {},\n",
+ " 'intestinal crypt stem cell of colon': {},\n",
+ " 'enterocyte of colon': {},\n",
+ " 'colon endothelial cell': {},\n",
+ " 'colon glandular cell': {'paneth cell of colon': {},\n",
+ " 'colon goblet cell': {},\n",
+ " 'enteroendocrine cell of colon': {'type D cell of colon': {}}}},\n",
+ " 'microfold cell of epithelium proper of large intestine': {'microfold cell of epithelium proper of anorectum': {},\n",
+ " 'microfold cell of epithelium proper of appendix': {}},\n",
+ " 'epithelial cell of appendix': {'tuft cell of appendix': {},\n",
+ " 'enterocyte of appendix': {},\n",
+ " 'intestinal crypt stem cell of appendix': {},\n",
+ " 'mesothelial cell of appendix': {},\n",
+ " 'microfold cell of epithelium proper of appendix': {},\n",
+ " 'appendix glandular cell': {'paneth cell of the appendix': {},\n",
+ " 'enteroendocrine cell of appendix': {},\n",
+ " 'appendix goblet cell': {}}}},\n",
+ " 'epithelial cell of small intestine': {'intestinal crypt stem cell of small intestine': {},\n",
+ " 'mesothelial cell of small intestine': {},\n",
+ " 'vacuolated fetal-type enterocyte': {},\n",
+ " 'tuft cell of small intestine': {},\n",
+ " 'enterocyte of epithelium of small intestine': {'enterocyte of epithelium of intestinal villus': {},\n",
+ " 'enterocyte of epithelium of crypt of Lieberkuhn of small intestine': {},\n",
+ " 'enterocyte of epithelium proper of small intestine': {'enterocyte of epithelium proper of duodenum': {},\n",
+ " 'enterocyte of epithelium proper of jejunum': {},\n",
+ " 'enterocyte of epithelium proper of ileum': {}}},\n",
+ " 'enterocyte of epithelium of duodenal gland': {},\n",
+ " 'microfold cell of epithelium of small intestine': {'microfold cell of epithelium of intestinal villus': {'microfold cell of epithelium proper of duodenum': {}},\n",
+ " 'microfold cell of epithelium proper of small intestine': {},\n",
+ " 'microfold cell of epithelium proper of jejunum': {},\n",
+ " 'microfold cell of epithelium proper of ileum': {}},\n",
+ " \"endothelial cell of Peyer's patch\": {},\n",
+ " 'small intestine glandular cell': {'enteroendocrine cell of small intestine': {'type D cell of small intestine': {},\n",
+ " 'GIP cell': {},\n",
+ " 'type M enteroendocrine cell': {}},\n",
+ " 'paneth cell of epithelium of small intestine': {'paneth cell of epithelium proper of small intestine': {},\n",
+ " 'paneth cell of epithelium of crypt of Lieberkuhn of small intestine': {}},\n",
+ " 'small intestine goblet cell': {'intestinal villus goblet cell': {'duodenal goblet cell': {},\n",
+ " 'jejunal goblet cell': {},\n",
+ " 'ileal goblet cell': {}}},\n",
+ " 'duodenum glandular cell': {'duodenal goblet cell': {}}}},\n",
+ " 'intestine goblet cell': {'large intestine goblet cell': {'colon goblet cell': {},\n",
+ " 'anorectum goblet cell': {},\n",
+ " 'large intestine crypt goblet cell': {},\n",
+ " 'appendix goblet cell': {}},\n",
+ " 'small intestine goblet cell': {'intestinal villus goblet cell': {'duodenal goblet cell': {},\n",
+ " 'jejunal goblet cell': {},\n",
+ " 'ileal goblet cell': {}}}},\n",
+ " 'intestinal tuft cell': {'brush cell of epithelium proper of large intestine': {'tuft cell of appendix': {},\n",
+ " 'tuft cell of colon': {},\n",
+ " 'tuft cell of anorectum': {}},\n",
+ " 'tuft cell of small intestine': {}},\n",
+ " 'intestinal enteroendocrine cell': {'PP cell of intestine': {},\n",
+ " 'enteroendocrine cell of small intestine': {'type D cell of small intestine': {},\n",
+ " 'GIP cell': {},\n",
+ " 'type M enteroendocrine cell': {}},\n",
+ " 'enteroendocrine cell of appendix': {},\n",
+ " 'enteroendocrine cell of colon': {'type D cell of colon': {}},\n",
+ " 'enteroendocrine cell of anorectum': {},\n",
+ " 'neuroendocrine cell of epithelium of crypt of Lieberkuhn': {}}},\n",
+ " 'gingival epithelial cell': {},\n",
+ " 'nasopharyngeal epithelial cell': {},\n",
+ " 'oral mucosa squamous cell': {},\n",
+ " 'tonsil squamous cell': {},\n",
+ " 'salivary gland glandular cell': {'acinar cell of salivary gland': {}},\n",
+ " 'taste receptor cell of tongue': {}},\n",
+ " 'epithelial cell of thyroid gland': {'oxyphil cell of thyroid': {},\n",
+ " 'thyroid follicular cell': {}},\n",
+ " 'epithelial cell of parathyroid gland': {'chief cell of parathyroid gland': {'active chief cell of parathyroid gland': {},\n",
+ " 'dark chief cell of parathyroid gland': {},\n",
+ " 'clear chief cell of parathyroid gland': {},\n",
+ " 'inactive chief cell of parathyoid gland': {},\n",
+ " 'light chief cell of parathyroid gland': {}},\n",
+ " 'oxyphil cell of parathyroid gland': {},\n",
+ " 'transitional cell of parathyroid gland': {}},\n",
+ " 'endothelial cell of viscerocranial mucosa': {'buccal mucosa cell': {'keratinized cell of the oral mucosa': {}},\n",
+ " 'endo-epithelial cell of tympanic part of viscerocranial mucosa': {},\n",
+ " 'endo-epithelial cell of pharyngotympanic part of viscerocranial mucosa': {}},\n",
+ " 'epithelial cell of thymus': {'cortical thymic epithelial cell': {'type-1 epithelial cell of thymus': {},\n",
+ " 'type-4 epithelial cell of thymus': {},\n",
+ " 'type-3 epithelial cell of thymus': {},\n",
+ " 'type-2 epithelial cell of thymus': {},\n",
+ " 'subcapsular thymic epithelial cell': {}},\n",
+ " 'medullary thymic epithelial cell': {'type-6 epithelial cell of thymus': {},\n",
+ " 'type-4 epithelial cell of thymus': {},\n",
+ " 'type-5 epithelial cell of thymus': {},\n",
+ " 'type-7 epithelial cell of thymus': {},\n",
+ " 'medullary thymic epithelial cell type 1': {},\n",
+ " 'medullary thymic epithelial cell type 2': {},\n",
+ " 'medullary thymic epithelial cell type 3': {},\n",
+ " 'medullary thymic epithelial cell type 4': {},\n",
+ " 'myo-medullary thymic epithelial cell': {},\n",
+ " 'neuro-medullary thymic epithelial cell': {}},\n",
+ " 'corticomedullary thymic epithelial cell': {},\n",
+ " 'thymic nurse cell': {}},\n",
+ " 'respiratory epithelial cell': {'epithelial cell of upper respiratory tract': {'nasopharyngeal epithelial cell': {}},\n",
+ " 'epithelial cell of lower respiratory tract': {'epithelial cell of tracheobronchial tree': {'club cell': {},\n",
+ " 'tracheal epithelial cell': {'brush cell of trachea': {},\n",
+ " 'tracheal goblet cell': {},\n",
+ " 'basal cell of epithelium of trachea': {},\n",
+ " 'dense-core granulated cell of epithelium of trachea': {},\n",
+ " 'mucus secreting cell of trachea gland': {},\n",
+ " 'myoepithelial cell of trachea gland': {}},\n",
+ " 'brush cell of trachebronchial tree': {'brush cell of lobular bronchiole': {},\n",
+ " 'brush cell of terminal bronchiole': {},\n",
+ " 'brush cell of trachea': {},\n",
+ " 'brush cell of bronchus': {'brush cell of epithelium of lobar bronchus': {}}},\n",
+ " 'ciliated columnar cell of tracheobronchial tree': {'ciliated cell of the bronchus': {}},\n",
+ " 'intermediate epitheliocyte': {},\n",
+ " 'bronchial epithelial cell': {'brush cell of bronchus': {'brush cell of epithelium of lobar bronchus': {}},\n",
+ " 'undifferentiated cell of bronchus epithelium': {},\n",
+ " 'ciliated cell of the bronchus': {},\n",
+ " 'bronchial goblet cell': {'goblet cell of epithelium of lobar bronchus': {}},\n",
+ " 'basal cell of epithelium of bronchus': {},\n",
+ " 'myoepithelial cell of bronchus submucosal gland': {},\n",
+ " 'neuroendocrine cell of epithelium of lobar bronchus': {},\n",
+ " 'mucus secreting cell of bronchus submucosal gland': {}},\n",
+ " 'basal epithelial cell of tracheobronchial tree': {'basal cell of epithelium of bronchus': {}},\n",
+ " 'tracheobronchial goblet cell': {'bronchial goblet cell': {'goblet cell of epithelium of lobar bronchus': {}},\n",
+ " 'tracheal goblet cell': {}},\n",
+ " 'basal cell of epithelium of terminal bronchiole': {'bronchioalveolar stem cell': {}},\n",
+ " 'basal cell of epithelium of respiratory bronchiole': {'bronchioalveolar stem cell': {}},\n",
+ " 'basal cell of epithelium of lobular bronchiole': {},\n",
+ " 'mucus secreting cell of tracheobronchial tree submucosal gland': {'mucus secreting cell of trachea gland': {},\n",
+ " 'mucus secreting cell of bronchus submucosal gland': {}}}},\n",
+ " 'respiratory basal cell': {'basal cell of epithelium of trachea': {},\n",
+ " 'basal cell of epithelium of bronchus': {},\n",
+ " 'basal cell of epithelium of terminal bronchiole': {'bronchioalveolar stem cell': {}},\n",
+ " 'basal cell of epithelium of respiratory bronchiole': {'bronchioalveolar stem cell': {}},\n",
+ " 'basal cell of epithelium of lobular bronchiole': {}},\n",
+ " 'respiratory hillock cell': {},\n",
+ " 'deuterosomal cell': {},\n",
+ " 'respiratory suprabasal cell': {}}},\n",
+ " 'ecto-epithelial cell': {'ameloblast': {},\n",
+ " 'keratinizing barrier epithelial cell': {'keratinocyte': {'Merkel cell': {},\n",
+ " 'prickle cell': {},\n",
+ " 'basal cell of epidermis': {'limb basal cell of epidermis': {}},\n",
+ " 'granular cell of epidermis': {},\n",
+ " 'squamous cell of epidermis': {},\n",
+ " 'keratinocyte stem cell': {},\n",
+ " 'foreskin keratinocyte': {},\n",
+ " 'hair follicular keratinocyte': {'keratinized cell of hair follicle': {}},\n",
+ " 'suprabasal keratinocyte': {}},\n",
+ " 'keratinized cell of the oral mucosa': {},\n",
+ " 'keratinized squamous cell of esophagus': {},\n",
+ " 'keratinized epithelial cell of the anal canal': {}},\n",
+ " 'neurecto-epithelial cell': {'odontoblast': {'non-terminally differentiated odontoblast': {},\n",
+ " 'terminally differentiated odontoblast': {}},\n",
+ " 'ependymal cell': {'choroid plexus epithelial cell': {}},\n",
+ " 'corneal endothelial cell': {},\n",
+ " 'neuroendocrine cell': {'amine precursor uptake and decarboxylation cell': {'chromaffin cell': {'type EC enteroendocrine cell': {'type EC2 enteroendocrine cell': {},\n",
+ " 'type EC1 enteroendocrine cell': {},\n",
+ " 'type ECL enteroendocrine cell': {}},\n",
+ " 'chromophil cell of anterior pituitary gland': {'acidophil cell of pars distalis of adenohypophysis': {'mammosomatotroph': {},\n",
+ " 'mammotroph': {},\n",
+ " 'somatotroph': {}},\n",
+ " 'basophil cell of pars distalis of adenohypophysis': {'gonadtroph': {},\n",
+ " 'thyrotroph': {},\n",
+ " 'corticotroph': {}}},\n",
+ " 'interrenal chromaffin cell': {'interrenal norepinephrine type cell': {},\n",
+ " 'interrenal epinephrin secreting cell': {}},\n",
+ " 'chromaffin cell of paraganglion': {'chromaffin cell of paraaortic body': {}},\n",
+ " 'chromaffin cell of adrenal gland': {'adrenal medulla chromaffin cell': {'type II cell of adrenal medulla': {},\n",
+ " 'type I cell of adrenal medulla': {}},\n",
+ " 'adrenal cortex chromaffin cell': {}},\n",
+ " 'chromaffin cell of ovary': {'chromaffin cell of right ovary': {},\n",
+ " 'chromaffin cell of left ovary': {}}}},\n",
+ " 'paraganglial type 1 cell': {},\n",
+ " 'Feyrter cell': {'dense-core granulated cell of epithelium of trachea': {}},\n",
+ " 'magnocellular neurosecretory cell': {'oxytocin-secreting magnocellular cell': {},\n",
+ " 'vasopressin-secreting magnocellular cell': {}},\n",
+ " 'gonadotropin-releasing hormone neuron': {},\n",
+ " 'prostate neuroendocrine cell': {},\n",
+ " 'stomach neuroendocrine cell': {},\n",
+ " 'lung neuroendocrine cell': {'neuroendocrine cell of epithelium of lobar bronchus': {}},\n",
+ " 'parvocellular neurosecretory cell': {},\n",
+ " 'neuroendocrine cell of epithelium of crypt of Lieberkuhn': {}},\n",
+ " 'Merkel cell': {},\n",
+ " 'epidermal cell (sensu Arthropoda)': {'tormogen cell': {},\n",
+ " 'trichogen cell': {}},\n",
+ " 'epidermoblast': {},\n",
+ " 'pigmented epithelial cell': {'pigmented ciliary epithelial cell': {}},\n",
+ " 'parafollicular cell': {},\n",
+ " 'pinealocyte': {'type I pinealocyte': {}, 'type II pinealocyte': {}},\n",
+ " 'cerebrospinal fluid secreting cell': {},\n",
+ " 'interstitial cell of Cajal': {},\n",
+ " 'olfactory epithelial cell': {'basal cell of olfactory epithelium': {'olfactory epithelial supporting cell': {},\n",
+ " 'globose cell of olfactory epithelium': {},\n",
+ " 'basal proper cell of olfactory epithelium': {}}},\n",
+ " 'folliculostellate cell of pars distalis of adenohypophysis': {},\n",
+ " 'interstitial cell of pineal gland': {},\n",
+ " 'supporting cell of carotid body': {'type II cell of carotid body': {}},\n",
+ " 'type I cell of carotid body': {},\n",
+ " 'non-pigmented ciliary epithelial cell': {},\n",
+ " 'meningothelial cell': {},\n",
+ " 'strial intermediate cell': {},\n",
+ " 'auditory epithelial supporting cell': {'supporting cell of cochlea': {'Claudius cell': {},\n",
+ " 'Boettcher cell': {},\n",
+ " 'border cell of cochlea': {},\n",
+ " 'interdental cell of cochlea': {},\n",
+ " 'organ of Corti supporting cell': {'Hensen cell': {},\n",
+ " 'phalangeal cell': {\"Deiter's cell\": {},\n",
+ " 'inner phalangeal cell': {}},\n",
+ " 'pillar cell': {'internal pillar cell of cochlea': {},\n",
+ " 'external pillar cell of cochlea': {}}}},\n",
+ " 'supporting cell of vestibular epithelium': {'external supporting cell of vestibular epithelium': {},\n",
+ " 'external limiting cell of vestibular epithelium': {}}},\n",
+ " 'hypendymal cell': {}},\n",
+ " 'general ecto-epithelial cell': {'epidermal cell': {'keratinocyte': {'Merkel cell': {},\n",
+ " 'prickle cell': {},\n",
+ " 'basal cell of epidermis': {'limb basal cell of epidermis': {}},\n",
+ " 'granular cell of epidermis': {},\n",
+ " 'squamous cell of epidermis': {},\n",
+ " 'keratinocyte stem cell': {},\n",
+ " 'foreskin keratinocyte': {},\n",
+ " 'hair follicular keratinocyte': {'keratinized cell of hair follicle': {}},\n",
+ " 'suprabasal keratinocyte': {}},\n",
+ " 'epidermal cell (sensu Arthropoda)': {'tormogen cell': {},\n",
+ " 'trichogen cell': {}},\n",
+ " 'stratum granulosum cell': {},\n",
+ " 'nonkeratinized cell of epidermis': {},\n",
+ " 'inner root sheath cell': {},\n",
+ " 'outer root sheath cell': {},\n",
+ " 'hair germinal matrix cell': {},\n",
+ " 'epithelial cell of sweat gland': {'acinar cell of sebaceous gland': {},\n",
+ " 'dark cell of eccrine sweat gland': {},\n",
+ " 'clear cell of eccrine sweat gland': {},\n",
+ " 'myoepithelial cell of sweat gland': {}}},\n",
+ " 'corneal epithelial cell': {},\n",
+ " 'dental pulp cell': {'odontoblast': {'non-terminally differentiated odontoblast': {},\n",
+ " 'terminally differentiated odontoblast': {}},\n",
+ " 'dental pulp stem cell': {}},\n",
+ " 'external epithelial cell of tympanic membrane': {'basal external epithelial cell of tympanic membrane': {},\n",
+ " 'superficial external epithelial cell of tympanic membrane': {}},\n",
+ " 'epithelial cell of Malassez': {},\n",
+ " 'ecto-epithelial cell of viscerocranial mucosa': {},\n",
+ " 'epithelial cell of skin gland': {'epithelial cell of sweat gland': {'acinar cell of sebaceous gland': {},\n",
+ " 'dark cell of eccrine sweat gland': {},\n",
+ " 'clear cell of eccrine sweat gland': {},\n",
+ " 'myoepithelial cell of sweat gland': {}}},\n",
+ " 'endocrine-paracrine cell of prostate gland': {},\n",
+ " 'mammary alveolar cell': {}}},\n",
+ " 'meso-epithelial cell': {'non-branched duct epithelial cell': {'epithelial cell of prostatic duct': {},\n",
+ " 'epithelial cell of lacrimal duct': {'epithelial cell of nasolacrimal duct': {}},\n",
+ " 'kidney collecting duct epithelial cell': {'kidney collecting duct principal cell': {'kidney cortex collecting duct principal cell': {},\n",
+ " 'kidney outer medulla collecting duct principal cell': {},\n",
+ " 'kidney inner medulla collecting duct principal cell': {},\n",
+ " 'kidney papillary duct principal cell': {}},\n",
+ " 'kidney collecting duct intercalated cell': {'kidney cortex collecting duct intercalated cell': {'kidney collecting duct beta-intercalated cell': {}},\n",
+ " 'kidney outer medulla collecting duct intercalated cell': {},\n",
+ " 'kidney inner medulla collecting duct intercalated cell': {},\n",
+ " 'kidney papillary duct intercalated cell': {},\n",
+ " 'kidney collecting duct alpha-intercalated cell': {}}}},\n",
+ " 'mesothelial cell': {'littoral cell of liver': {},\n",
+ " 'seminiferous tubule epithelial cell': {'Sertoli cell': {},\n",
+ " 'peritubular myoid cell': {}},\n",
+ " 'mesothelial cell of small intestine': {},\n",
+ " 'mesothelial cell of colon': {},\n",
+ " 'mesothelial cell of appendix': {},\n",
+ " 'mesothelial cell of epicardium': {},\n",
+ " 'mesothelial cell of dura mater': {},\n",
+ " 'mesothelial cell of anterior chamber of eye': {},\n",
+ " 'mesothelial cell of peritoneum': {'mesothelial cell of parietal peritoneum': {},\n",
+ " 'mesothelial cell of visceral peritoneum': {}},\n",
+ " 'mesothelial cell of pleura': {'mesothelial cell of parietal pleura': {},\n",
+ " 'mesothelial cell of visceral pleura': {}}},\n",
+ " 'endothelial cell': {'gut endothelial cell': {},\n",
+ " 'corneal endothelial cell': {},\n",
+ " 'endothelial cell of vascular tree': {'blood vessel endothelial cell': {'endothelial tip cell': {},\n",
+ " 'vein endothelial cell': {'endothelial cell of umbilical vein': {},\n",
+ " 'vasa recta cell': {'inner renal medulla vasa recta cell': {'inner medulla vasa recta ascending limb cell': {},\n",
+ " 'inner medulla vasa recta descending limb cell': {}},\n",
+ " 'outer renal medulla vasa recta cell': {'outer medulla vasa recta ascending limb cell': {},\n",
+ " 'outer medulla vasa recta descending limb cell': {}},\n",
+ " 'vasa recta ascending limb cell': {'inner medulla vasa recta ascending limb cell': {},\n",
+ " 'outer medulla vasa recta ascending limb cell': {}},\n",
+ " 'vasa recta descending limb cell': {'inner medulla vasa recta descending limb cell': {},\n",
+ " 'outer medulla vasa recta descending limb cell': {}}},\n",
+ " 'arcuate vein endothelial cell': {},\n",
+ " 'interlobulary vein endothelial cell': {},\n",
+ " 'hindlimb stylopod vein endothelial cell': {},\n",
+ " 'vein endothelial cell of respiratory system': {}},\n",
+ " 'retinal blood vessel endothelial cell': {},\n",
+ " 'endothelial stalk cell': {},\n",
+ " 'cardiac blood vessel endothelial cell': {'endothelial cell of coronary artery': {}},\n",
+ " 'endothelial cell of arteriole': {'kidney afferent arteriole endothelial cell': {},\n",
+ " 'kidney efferent arteriole endothelial cell': {},\n",
+ " 'endothelial cell of arteriole of lymph node': {}},\n",
+ " 'endothelial cell of artery': {'aortic endothelial cell': {'thoracic aorta endothelial cell': {}},\n",
+ " 'arcuate artery endothelial cell': {},\n",
+ " 'interlobulary artery endothelial cell': {'kidney afferent arteriole endothelial cell': {}},\n",
+ " 'pulmonary artery endothelial cell': {},\n",
+ " 'endothelial cell of coronary artery': {},\n",
+ " 'umbilical artery endothelial cell': {}},\n",
+ " 'kidney capillary endothelial cell': {'glomerular capillary endothelial cell': {},\n",
+ " 'peritubular capillary endothelial cell': {'kidney outer medulla peritubular capillary cell': {},\n",
+ " 'kidney cortex peritubular capillary cell': {}},\n",
+ " 'vasa recta cell': {'inner renal medulla vasa recta cell': {'inner medulla vasa recta ascending limb cell': {},\n",
+ " 'inner medulla vasa recta descending limb cell': {}},\n",
+ " 'outer renal medulla vasa recta cell': {'outer medulla vasa recta ascending limb cell': {},\n",
+ " 'outer medulla vasa recta descending limb cell': {}},\n",
+ " 'vasa recta ascending limb cell': {'inner medulla vasa recta ascending limb cell': {},\n",
+ " 'outer medulla vasa recta ascending limb cell': {}},\n",
+ " 'vasa recta descending limb cell': {'inner medulla vasa recta descending limb cell': {},\n",
+ " 'outer medulla vasa recta descending limb cell': {}}}},\n",
+ " 'microvascular endothelial cell': {'capillary endothelial cell': {'glomerular capillary endothelial cell': {},\n",
+ " 'placental villus capillary endothelial cell': {},\n",
+ " 'pulmonary capillary endothelial cell': {'alveolar capillary type 1 endothelial cell': {},\n",
+ " 'alveolar capillary type 2 endothelial cell': {}}},\n",
+ " 'dermal microvascular endothelial cell': {},\n",
+ " 'lung microvascular endothelial cell': {'pulmonary capillary endothelial cell': {'alveolar capillary type 1 endothelial cell': {},\n",
+ " 'alveolar capillary type 2 endothelial cell': {}}},\n",
+ " 'bladder microvascular endothelial cell': {},\n",
+ " 'brain microvascular endothelial cell': {},\n",
+ " 'prostate gland microvascular endothelial cell': {},\n",
+ " 'ovarian microvascular endothelial cell': {},\n",
+ " 'mammary microvascular endothelial cell': {},\n",
+ " 'adipose microvascular endothelial cell': {},\n",
+ " 'endometrial microvascular endothelial cell': {}},\n",
+ " 'dermis blood vessel endothelial cell': {'dermal microvascular endothelial cell': {}}},\n",
+ " 'endothelial cell of lymphatic vessel': {'lymphatic endothelial cell of subcapsular sinus ceiling': {},\n",
+ " 'lymphatic endothelial cell of subcapsular sinus floor': {},\n",
+ " 'lymphatic endothelial cell of trabecula': {},\n",
+ " 'lymphatic endothelial cell of medulla ceiling': {},\n",
+ " 'dermis lymphatic vessel endothelial cell': {'dermis microvascular lymphatic vessel endothelial cell': {}}},\n",
+ " 'endothelial cell of venule': {'endothelial cell of high endothelial venule': {},\n",
+ " 'squamous endothelial cell': {}},\n",
+ " 'lung endothelial cell': {'lung microvascular endothelial cell': {'pulmonary capillary endothelial cell': {'alveolar capillary type 1 endothelial cell': {},\n",
+ " 'alveolar capillary type 2 endothelial cell': {}}}}},\n",
+ " 'glomerular endothelial cell': {'glomerular capillary endothelial cell': {}},\n",
+ " 'endothelial cell of sinusoid': {'endothelial cell of venous sinus of spleen': {'endothelial cell of venous sinus of red pulp of spleen': {}},\n",
+ " 'endothelial cell of hepatic sinusoid': {'endothelial cell of periportal hepatic sinusoid': {},\n",
+ " 'endothelial cell of pericentral hepatic sinusoid': {}}},\n",
+ " 'circulating endothelial cell': {},\n",
+ " 'trabecular meshwork cell': {},\n",
+ " 'endothelial cell of respiratory system lymphatic vessel': {},\n",
+ " 'endothelial cell of placenta': {'placental villus capillary endothelial cell': {}},\n",
+ " 'endothelial cell of hepatic portal vein': {},\n",
+ " 'endothelial cell of uterus': {'endometrial microvascular endothelial cell': {}},\n",
+ " 'lymph node lymphatic vessel endothelial cell': {'lymphatic endothelial cell of subcapsular sinus ceiling': {},\n",
+ " 'lymphatic endothelial cell of subcapsular sinus floor': {},\n",
+ " 'lymphatic endothelial cell of trabecula': {},\n",
+ " 'lymphatic endothelial cell of medulla ceiling': {}},\n",
+ " 'cardiac endothelial cell': {'endocardial cell': {},\n",
+ " 'cardiac blood vessel endothelial cell': {'endothelial cell of coronary artery': {}},\n",
+ " 'valve endothelial cell': {}},\n",
+ " \"endothelial cell of Peyer's patch\": {},\n",
+ " 'ureter adventitial cell': {'fibrocyte of adventitia of ureter': {}},\n",
+ " 'colon endothelial cell': {},\n",
+ " 'cerebral cortex endothelial cell': {},\n",
+ " 'splenic endothelial cell': {'endothelial cell of venous sinus of red pulp of spleen': {}},\n",
+ " 'endothelial cell of venule of lymph node': {},\n",
+ " 'endothelial cell of efferent lymphatic vessel': {}},\n",
+ " 'myoepithelial cell': {'myoepithelial cell of mammary gland': {'myoepithelial cell of lactiferous alveolus': {},\n",
+ " 'myoepithelial cell of lactiferous duct': {},\n",
+ " 'myoepithelial cell of acinus of lactiferous gland': {}},\n",
+ " 'peritubular myoid cell': {},\n",
+ " 'myoepithelial cell of intralobular lactiferous duct': {},\n",
+ " 'myoepithelial cell of sweat gland': {},\n",
+ " 'myoepithelial cell of terminal lactiferous duct': {},\n",
+ " 'myoepithelial cell of dilator pupillae': {},\n",
+ " 'myoepithelial cell of main lactiferous duct': {},\n",
+ " 'myoepithelial cell of primary lactiferous duct': {},\n",
+ " 'myoepithelial cell of secondary lactiferous duct': {},\n",
+ " 'myoepithelial cell of tertiary lactiferous duct': {},\n",
+ " 'myoepithelial cell of quarternary lactiferous duct': {},\n",
+ " 'myoepithelial cell of bronchus submucosal gland': {},\n",
+ " 'myoepithelial cell of trachea gland': {}},\n",
+ " 'synovial cell': {'type B synovial cell': {},\n",
+ " 'type A synovial cell': {}},\n",
+ " 'cortical cell of adrenal gland': {'type I cell of adrenal cortex': {},\n",
+ " 'type II cell of adrenal cortex': {},\n",
+ " 'type III cell of adrenal cortex': {}},\n",
+ " 'endosteal cell': {},\n",
+ " 'follicular cell of ovary': {'granulosa cell': {},\n",
+ " 'cumulus cell': {'corona radiata cell': {}},\n",
+ " 'primary follicular cell of ovary': {},\n",
+ " 'secondary follicular cell of ovary': {}},\n",
+ " 'primitive cardiac myocyte': {},\n",
+ " 'epithelial cell of distal tubule': {'kidney distal convoluted tubule epithelial cell': {'epithelial cell of early distal convoluted tubule': {},\n",
+ " 'epithelial cell of late distal convoluted tubule': {}},\n",
+ " 'macula densa epithelial cell': {},\n",
+ " 'kidney loop of Henle ascending limb epithelial cell': {'kidney loop of Henle thick ascending limb epithelial cell': {'kidney loop of Henle medullary thick ascending limb epithelial cell': {},\n",
+ " 'kidney loop of Henle cortical thick ascending limb epithelial cell': {}},\n",
+ " 'kidney loop of Henle thin ascending limb epithelial cell': {}}},\n",
+ " 'epithelial cell of proximal tubule': {'brush border cell of the proximal tubule': {},\n",
+ " 'kidney proximal convoluted tubule epithelial cell': {},\n",
+ " 'kidney proximal straight tubule epithelial cell': {},\n",
+ " 'epithelial cell of proximal tubule segment 1': {},\n",
+ " 'epithelial cell of proximal tubule segment 2': {},\n",
+ " 'epithelial cell of proximal tubule segment 3': {},\n",
+ " 'CD24-positive, CD-133-positive, vimentin-positive proximal tubular cell': {}},\n",
+ " 'renal intercalated cell': {'renal beta-intercalated cell': {'kidney collecting duct beta-intercalated cell': {},\n",
+ " 'kidney connecting tubule beta-intercalated cell': {}},\n",
+ " 'renal alpha-intercalated cell': {'kidney collecting duct alpha-intercalated cell': {},\n",
+ " 'kidney connecting tubule alpha-intercalated cell': {}},\n",
+ " 'kidney collecting duct intercalated cell': {'kidney cortex collecting duct intercalated cell': {'kidney collecting duct beta-intercalated cell': {}},\n",
+ " 'kidney outer medulla collecting duct intercalated cell': {},\n",
+ " 'kidney inner medulla collecting duct intercalated cell': {},\n",
+ " 'kidney papillary duct intercalated cell': {},\n",
+ " 'kidney collecting duct alpha-intercalated cell': {}},\n",
+ " 'kidney connecting tubule intercalated cell': {'kidney connecting tubule alpha-intercalated cell': {},\n",
+ " 'kidney connecting tubule beta-intercalated cell': {}}},\n",
+ " 'kidney artery smooth muscle cell': {'arcuate artery smooth muscle cell': {},\n",
+ " 'interlobulary artery smooth muscle cell': {'kidney afferent arteriole smooth muscle cell': {}}},\n",
+ " 'kidney arteriole smooth muscle cell': {'kidney afferent arteriole smooth muscle cell': {},\n",
+ " 'kidney efferent arteriole smooth muscle cell': {}},\n",
+ " 'kidney venous system smooth muscle cell': {'arcuate vein smooth muscle cell': {},\n",
+ " 'interlobulary vein smooth muscle cell': {}}},\n",
+ " 'vertebrate lens cell': {'lens epithelial cell': {'anterior lens cell': {}},\n",
+ " 'lens fiber cell': {'secondary lens fiber': {'non-nucleated secondary lens fiber': {},\n",
+ " 'nucleated secondary lens fiber': {}},\n",
+ " 'primary lens fiber': {}}},\n",
+ " 'mammary gland epithelial cell': {'myoepithelial cell of mammary gland': {'myoepithelial cell of lactiferous alveolus': {},\n",
+ " 'myoepithelial cell of lactiferous duct': {},\n",
+ " 'myoepithelial cell of acinus of lactiferous gland': {}},\n",
+ " 'luminal epithelial cell of mammary gland': {'luminal cell of acinus of lactiferous gland': {},\n",
+ " 'luminal cell of lactiferous duct': {'luminal cell of lactiferous terminal ductal lobular unit': {}}},\n",
+ " 'mammary gland glandular cell': {'mammary alveolar cell': {}}},\n",
+ " 'kidney epithelial cell': {'interrenal epithelial cell': {},\n",
+ " 'renal cortical epithelial cell': {'kidney corpuscule cell': {'glomerular cell': {'glomerular endothelial cell': {'glomerular capillary endothelial cell': {}},\n",
+ " 'kidney glomerular epithelial cell': {'epithelial cell of glomerular capsule': {'podocyte': {'mesonephric podocyte': {},\n",
+ " 'metanephric podocyte': {},\n",
+ " 'pronephric podocyte': {}},\n",
+ " 'parietal epithelial cell': {}},\n",
+ " 'glomerular capillary endothelial cell': {}},\n",
+ " 'glomerular mesangial cell': {}},\n",
+ " 'kidney afferent arteriole cell': {'kidney afferent arteriole endothelial cell': {},\n",
+ " 'kidney afferent arteriole smooth muscle cell': {}},\n",
+ " 'kidney efferent arteriole cell': {'kidney efferent arteriole endothelial cell': {},\n",
+ " 'kidney efferent arteriole smooth muscle cell': {}}},\n",
+ " 'kidney cortex tubule cell': {'epithelial cell of distal tubule': {'kidney distal convoluted tubule epithelial cell': {'epithelial cell of early distal convoluted tubule': {},\n",
+ " 'epithelial cell of late distal convoluted tubule': {}},\n",
+ " 'macula densa epithelial cell': {},\n",
+ " 'kidney loop of Henle ascending limb epithelial cell': {'kidney loop of Henle thick ascending limb epithelial cell': {'kidney loop of Henle medullary thick ascending limb epithelial cell': {},\n",
+ " 'kidney loop of Henle cortical thick ascending limb epithelial cell': {}},\n",
+ " 'kidney loop of Henle thin ascending limb epithelial cell': {}}},\n",
+ " 'epithelial cell of proximal tubule': {'brush border cell of the proximal tubule': {},\n",
+ " 'kidney proximal convoluted tubule epithelial cell': {},\n",
+ " 'kidney proximal straight tubule epithelial cell': {},\n",
+ " 'epithelial cell of proximal tubule segment 1': {},\n",
+ " 'epithelial cell of proximal tubule segment 2': {},\n",
+ " 'epithelial cell of proximal tubule segment 3': {},\n",
+ " 'CD24-positive, CD-133-positive, vimentin-positive proximal tubular cell': {}},\n",
+ " 'kidney connecting tubule epithelial cell': {'kidney connecting tubule intercalated cell': {'kidney connecting tubule alpha-intercalated cell': {},\n",
+ " 'kidney connecting tubule beta-intercalated cell': {}}}},\n",
+ " 'kidney cortex interstitial cell': {'renal cortical fibroblast': {}},\n",
+ " 'kidney cortex collecting duct principal cell': {},\n",
+ " 'kidney cortex collecting duct intercalated cell': {'kidney collecting duct beta-intercalated cell': {}},\n",
+ " 'kidney blood vessel cell': {'kidney arterial blood vessel cell': {'kidney afferent arteriole cell': {'kidney afferent arteriole endothelial cell': {},\n",
+ " 'kidney afferent arteriole smooth muscle cell': {}},\n",
+ " 'kidney efferent arteriole cell': {'kidney efferent arteriole endothelial cell': {},\n",
+ " 'kidney efferent arteriole smooth muscle cell': {}},\n",
+ " 'kidney cortex artery cell': {'arcuate artery cell': {'arcuate artery endothelial cell': {},\n",
+ " 'arcuate artery smooth muscle cell': {}},\n",
+ " 'interlobular artery cell': {'interlobulary artery endothelial cell': {'kidney afferent arteriole endothelial cell': {}},\n",
+ " 'interlobulary artery smooth muscle cell': {'kidney afferent arteriole smooth muscle cell': {}}}},\n",
+ " 'kidney artery smooth muscle cell': {'arcuate artery smooth muscle cell': {},\n",
+ " 'interlobulary artery smooth muscle cell': {'kidney afferent arteriole smooth muscle cell': {}}},\n",
+ " 'kidney arteriole smooth muscle cell': {'kidney afferent arteriole smooth muscle cell': {},\n",
+ " 'kidney efferent arteriole smooth muscle cell': {}}},\n",
+ " 'kidney capillary endothelial cell': {'glomerular capillary endothelial cell': {},\n",
+ " 'peritubular capillary endothelial cell': {'kidney outer medulla peritubular capillary cell': {},\n",
+ " 'kidney cortex peritubular capillary cell': {}},\n",
+ " 'vasa recta cell': {'inner renal medulla vasa recta cell': {'inner medulla vasa recta ascending limb cell': {},\n",
+ " 'inner medulla vasa recta descending limb cell': {}},\n",
+ " 'outer renal medulla vasa recta cell': {'outer medulla vasa recta ascending limb cell': {},\n",
+ " 'outer medulla vasa recta descending limb cell': {}},\n",
+ " 'vasa recta ascending limb cell': {'inner medulla vasa recta ascending limb cell': {},\n",
+ " 'outer medulla vasa recta ascending limb cell': {}},\n",
+ " 'vasa recta descending limb cell': {'inner medulla vasa recta descending limb cell': {},\n",
+ " 'outer medulla vasa recta descending limb cell': {}}}},\n",
+ " 'kidney venous blood vessel cell': {'vasa recta cell': {'inner renal medulla vasa recta cell': {'inner medulla vasa recta ascending limb cell': {},\n",
+ " 'inner medulla vasa recta descending limb cell': {}},\n",
+ " 'outer renal medulla vasa recta cell': {'outer medulla vasa recta ascending limb cell': {},\n",
+ " 'outer medulla vasa recta descending limb cell': {}},\n",
+ " 'vasa recta ascending limb cell': {'inner medulla vasa recta ascending limb cell': {},\n",
+ " 'outer medulla vasa recta ascending limb cell': {}},\n",
+ " 'vasa recta descending limb cell': {'inner medulla vasa recta descending limb cell': {},\n",
+ " 'outer medulla vasa recta descending limb cell': {}}},\n",
+ " 'kidney cortex vein cell': {'arcuate vein cell': {'arcuate vein endothelial cell': {},\n",
+ " 'arcuate vein smooth muscle cell': {}},\n",
+ " 'interlobular vein cell': {'interlobulary vein endothelial cell': {},\n",
+ " 'interlobulary vein smooth muscle cell': {}}},\n",
+ " 'kidney venous system smooth muscle cell': {'arcuate vein smooth muscle cell': {},\n",
+ " 'interlobulary vein smooth muscle cell': {}}}}},\n",
+ " 'renal principal cell': {'kidney collecting duct principal cell': {'kidney cortex collecting duct principal cell': {},\n",
+ " 'kidney outer medulla collecting duct principal cell': {},\n",
+ " 'kidney inner medulla collecting duct principal cell': {},\n",
+ " 'kidney papillary duct principal cell': {}},\n",
+ " 'kidney connecting tubule principal cell': {}},\n",
+ " 'epithelial cell of nephron': {'renal intercalated cell': {'renal beta-intercalated cell': {'kidney collecting duct beta-intercalated cell': {},\n",
+ " 'kidney connecting tubule beta-intercalated cell': {}},\n",
+ " 'renal alpha-intercalated cell': {'kidney collecting duct alpha-intercalated cell': {},\n",
+ " 'kidney connecting tubule alpha-intercalated cell': {}},\n",
+ " 'kidney collecting duct intercalated cell': {'kidney cortex collecting duct intercalated cell': {'kidney collecting duct beta-intercalated cell': {}},\n",
+ " 'kidney outer medulla collecting duct intercalated cell': {},\n",
+ " 'kidney inner medulla collecting duct intercalated cell': {},\n",
+ " 'kidney papillary duct intercalated cell': {},\n",
+ " 'kidney collecting duct alpha-intercalated cell': {}},\n",
+ " 'kidney connecting tubule intercalated cell': {'kidney connecting tubule alpha-intercalated cell': {},\n",
+ " 'kidney connecting tubule beta-intercalated cell': {}}},\n",
+ " 'mesonephric nephron tubule epithelial cell': {},\n",
+ " 'pronephric nephron tubule epithelial cell': {},\n",
+ " 'metanephric nephron tubule epithelial cell': {},\n",
+ " 'kidney collecting duct epithelial cell': {'kidney collecting duct principal cell': {'kidney cortex collecting duct principal cell': {},\n",
+ " 'kidney outer medulla collecting duct principal cell': {},\n",
+ " 'kidney inner medulla collecting duct principal cell': {},\n",
+ " 'kidney papillary duct principal cell': {}},\n",
+ " 'kidney collecting duct intercalated cell': {'kidney cortex collecting duct intercalated cell': {'kidney collecting duct beta-intercalated cell': {}},\n",
+ " 'kidney outer medulla collecting duct intercalated cell': {},\n",
+ " 'kidney inner medulla collecting duct intercalated cell': {},\n",
+ " 'kidney papillary duct intercalated cell': {},\n",
+ " 'kidney collecting duct alpha-intercalated cell': {}}},\n",
+ " 'nephron tubule epithelial cell': {'epithelial cell of distal tubule': {'kidney distal convoluted tubule epithelial cell': {'epithelial cell of early distal convoluted tubule': {},\n",
+ " 'epithelial cell of late distal convoluted tubule': {}},\n",
+ " 'macula densa epithelial cell': {},\n",
+ " 'kidney loop of Henle ascending limb epithelial cell': {'kidney loop of Henle thick ascending limb epithelial cell': {'kidney loop of Henle medullary thick ascending limb epithelial cell': {},\n",
+ " 'kidney loop of Henle cortical thick ascending limb epithelial cell': {}},\n",
+ " 'kidney loop of Henle thin ascending limb epithelial cell': {}}},\n",
+ " 'epithelial cell of proximal tubule': {'brush border cell of the proximal tubule': {},\n",
+ " 'kidney proximal convoluted tubule epithelial cell': {},\n",
+ " 'kidney proximal straight tubule epithelial cell': {},\n",
+ " 'epithelial cell of proximal tubule segment 1': {},\n",
+ " 'epithelial cell of proximal tubule segment 2': {},\n",
+ " 'epithelial cell of proximal tubule segment 3': {},\n",
+ " 'CD24-positive, CD-133-positive, vimentin-positive proximal tubular cell': {}},\n",
+ " 'kidney connecting tubule epithelial cell': {'kidney connecting tubule intercalated cell': {'kidney connecting tubule alpha-intercalated cell': {},\n",
+ " 'kidney connecting tubule beta-intercalated cell': {}}},\n",
+ " 'kidney loop of Henle epithelial cell': {'epithelial cell of intermediate tubule': {'kidney loop of Henle thin descending limb epithelial cell': {'kidney loop of Henle short descending thin limb epithelial cell': {},\n",
+ " 'kidney loop of Henle long descending thin limb outer medulla epithelial cell': {},\n",
+ " 'kidney loop of Henle long descending thin limb inner medulla epithelial cell': {}}},\n",
+ " 'kidney loop of Henle ascending limb epithelial cell': {'kidney loop of Henle thick ascending limb epithelial cell': {'kidney loop of Henle medullary thick ascending limb epithelial cell': {},\n",
+ " 'kidney loop of Henle cortical thick ascending limb epithelial cell': {}},\n",
+ " 'kidney loop of Henle thin ascending limb epithelial cell': {}},\n",
+ " 'kidney loop of Henle descending limb epithelial cell': {'kidney proximal straight tubule epithelial cell': {},\n",
+ " 'kidney loop of Henle thin descending limb epithelial cell': {'kidney loop of Henle short descending thin limb epithelial cell': {},\n",
+ " 'kidney loop of Henle long descending thin limb outer medulla epithelial cell': {},\n",
+ " 'kidney loop of Henle long descending thin limb inner medulla epithelial cell': {}}}}},\n",
+ " 'kidney corpuscule cell': {'glomerular cell': {'glomerular endothelial cell': {'glomerular capillary endothelial cell': {}},\n",
+ " 'kidney glomerular epithelial cell': {'epithelial cell of glomerular capsule': {'podocyte': {'mesonephric podocyte': {},\n",
+ " 'metanephric podocyte': {},\n",
+ " 'pronephric podocyte': {}},\n",
+ " 'parietal epithelial cell': {}},\n",
+ " 'glomerular capillary endothelial cell': {}},\n",
+ " 'glomerular mesangial cell': {}},\n",
+ " 'kidney afferent arteriole cell': {'kidney afferent arteriole endothelial cell': {},\n",
+ " 'kidney afferent arteriole smooth muscle cell': {}},\n",
+ " 'kidney efferent arteriole cell': {'kidney efferent arteriole endothelial cell': {},\n",
+ " 'kidney efferent arteriole smooth muscle cell': {}}},\n",
+ " 'kidney cortex tubule cell': {'epithelial cell of distal tubule': {'kidney distal convoluted tubule epithelial cell': {'epithelial cell of early distal convoluted tubule': {},\n",
+ " 'epithelial cell of late distal convoluted tubule': {}},\n",
+ " 'macula densa epithelial cell': {},\n",
+ " 'kidney loop of Henle ascending limb epithelial cell': {'kidney loop of Henle thick ascending limb epithelial cell': {'kidney loop of Henle medullary thick ascending limb epithelial cell': {},\n",
+ " 'kidney loop of Henle cortical thick ascending limb epithelial cell': {}},\n",
+ " 'kidney loop of Henle thin ascending limb epithelial cell': {}}},\n",
+ " 'epithelial cell of proximal tubule': {'brush border cell of the proximal tubule': {},\n",
+ " 'kidney proximal convoluted tubule epithelial cell': {},\n",
+ " 'kidney proximal straight tubule epithelial cell': {},\n",
+ " 'epithelial cell of proximal tubule segment 1': {},\n",
+ " 'epithelial cell of proximal tubule segment 2': {},\n",
+ " 'epithelial cell of proximal tubule segment 3': {},\n",
+ " 'CD24-positive, CD-133-positive, vimentin-positive proximal tubular cell': {}},\n",
+ " 'kidney connecting tubule epithelial cell': {'kidney connecting tubule intercalated cell': {'kidney connecting tubule alpha-intercalated cell': {},\n",
+ " 'kidney connecting tubule beta-intercalated cell': {}}}},\n",
+ " 'kidney connecting tubule principal cell': {}},\n",
+ " 'kidney pelvis urothelial cell': {}},\n",
+ " 'epithelial cell of cervix': {'uterine cervix squamous cell': {},\n",
+ " 'uterine cervix glandular cell': {}},\n",
+ " 'epithelial cell of amnion': {},\n",
+ " 'iris pigment epithelial cell': {},\n",
+ " 'placental epithelial cell': {'endothelial cell of placenta': {'placental villus capillary endothelial cell': {}}},\n",
+ " 'retinal pigment epithelial cell': {},\n",
+ " 'ionocyte': {'pulmonary ionocyte': {}},\n",
+ " 'open tracheal system tracheocyte': {},\n",
+ " 'epithelial cell of endometrial gland': {},\n",
+ " 'epithelial cell of umbilical artery': {},\n",
+ " 'coronet cell': {},\n",
+ " 'epithelial cell of urethra': {'epithelial cell of prostatic urethra': {'hillock cell of prostatic urethral epithelium': {}},\n",
+ " 'hillock cell of urethral epithelium': {'hillock cell of prostatic urethral epithelium': {}},\n",
+ " 'urethra urothelial cell': {},\n",
+ " 'ovarian microvascular endothelial cell': {},\n",
+ " 'club-like cell of the urethral epithelium': {}},\n",
+ " 'epithelial cell of gallbladder': {'gallbladder glandular cell': {}},\n",
+ " 'conjunctival epithelial cell': {'conjunctiva goblet cell': {}},\n",
+ " 'epithelial cell of lacrimal canaliculus': {},\n",
+ " 'epithelial cell of external acoustic meatus': {},\n",
+ " 'epithelial cell of viscerocranial mucosa': {'nasal cavity respiratory epithelium epithelial cell of viscerocranial mucosa': {}},\n",
+ " 'ovarian surface epithelial cell': {'follicle cell of egg chamber': {'border follicle cell': {},\n",
+ " 'centripetally migrating follicle cell': {},\n",
+ " 'interfollicle cell': {}},\n",
+ " 'chromaffin cell of ovary': {'chromaffin cell of right ovary': {},\n",
+ " 'chromaffin cell of left ovary': {}}},\n",
+ " 'hillock cell': {'hillock cell of urethral epithelium': {'hillock cell of prostatic urethral epithelium': {}},\n",
+ " 'respiratory hillock cell': {}},\n",
+ " 'peg cell': {},\n",
+ " 'airway submucosal gland collecting duct epithelial cell': {}},\n",
+ " 'visual pigment cell': {'visual pigment cell (sensu Vertebrata)': {},\n",
+ " 'visual pigment cell (sensu Nematoda and Protostomia)': {},\n",
+ " 'retinal pigment epithelial cell': {}},\n",
+ " 'exocrine cell': {'apocrine cell': {},\n",
+ " 'tear secreting cell': {},\n",
+ " 'sebum secreting cell': {'acinar cell of sebaceous gland': {}},\n",
+ " 'dark cell of eccrine sweat gland': {},\n",
+ " 'clear cell of eccrine sweat gland': {},\n",
+ " 'mucous neck cell of gastric gland': {},\n",
+ " 'stem cell of gastric gland': {},\n",
+ " 'gastric cardiac gland goblet cell': {},\n",
+ " 'principal gastric gland goblet cell': {},\n",
+ " 'pyloric gastric gland goblet cell': {},\n",
+ " 'mammary gland glandular cell': {'mammary alveolar cell': {}},\n",
+ " 'salivary gland glandular cell': {'acinar cell of salivary gland': {}},\n",
+ " 'pancreas exocrine glandular cell': {'pancreatic acinar cell': {},\n",
+ " 'pancreatic goblet cell': {}},\n",
+ " 'serous secreting cell of bronchus submucosal gland': {},\n",
+ " 'mucus secreting cell of tracheobronchial tree submucosal gland': {'mucus secreting cell of trachea gland': {},\n",
+ " 'mucus secreting cell of bronchus submucosal gland': {}}},\n",
+ " 'endocrine cell': {'enteroendocrine cell': {'type D enteroendocrine cell': {'pancreatic D cell': {},\n",
+ " 'type D cell of colon': {},\n",
+ " 'type D cell of small intestine': {},\n",
+ " 'type D cell of stomach': {}},\n",
+ " 'enterochromaffin-like cell': {},\n",
+ " 'type G enteroendocrine cell': {},\n",
+ " 'type EC enteroendocrine cell': {'type EC2 enteroendocrine cell': {},\n",
+ " 'type EC1 enteroendocrine cell': {},\n",
+ " 'type ECL enteroendocrine cell': {}},\n",
+ " 'PP cell': {'pancreatic PP cell': {}, 'PP cell of intestine': {}},\n",
+ " 'type A enteroendocrine cell': {'pancreatic A cell': {},\n",
+ " 'type A cell of stomach': {}},\n",
+ " 'P/D1 enteroendocrine cell': {'P enteroendocrine cell': {},\n",
+ " 'type D1 enteroendocrine cell': {}},\n",
+ " 'type I enteroendocrine cell': {},\n",
+ " 'type L enteroendocrine cell': {},\n",
+ " 'type N enteroendocrine cell': {},\n",
+ " 'type S enteroendocrine cell': {},\n",
+ " 'type TG enteroendocrine cell': {},\n",
+ " 'type X enteroendocrine cell': {},\n",
+ " 'pancreatic endocrine cell': {'type B pancreatic cell': {},\n",
+ " 'pancreatic A cell': {},\n",
+ " 'pancreatic D cell': {},\n",
+ " 'pancreatic PP cell': {},\n",
+ " 'pancreatic epsilon cell': {}},\n",
+ " 'stomach neuroendocrine cell': {},\n",
+ " 'intestinal enteroendocrine cell': {'PP cell of intestine': {},\n",
+ " 'enteroendocrine cell of small intestine': {'type D cell of small intestine': {},\n",
+ " 'GIP cell': {},\n",
+ " 'type M enteroendocrine cell': {}},\n",
+ " 'enteroendocrine cell of appendix': {},\n",
+ " 'enteroendocrine cell of colon': {'type D cell of colon': {}},\n",
+ " 'enteroendocrine cell of anorectum': {},\n",
+ " 'neuroendocrine cell of epithelium of crypt of Lieberkuhn': {}},\n",
+ " 'stomach enteroendocrine cell': {}},\n",
+ " 'neuroendocrine cell': {'amine precursor uptake and decarboxylation cell': {'chromaffin cell': {'type EC enteroendocrine cell': {'type EC2 enteroendocrine cell': {},\n",
+ " 'type EC1 enteroendocrine cell': {},\n",
+ " 'type ECL enteroendocrine cell': {}},\n",
+ " 'chromophil cell of anterior pituitary gland': {'acidophil cell of pars distalis of adenohypophysis': {'mammosomatotroph': {},\n",
+ " 'mammotroph': {},\n",
+ " 'somatotroph': {}},\n",
+ " 'basophil cell of pars distalis of adenohypophysis': {'gonadtroph': {},\n",
+ " 'thyrotroph': {},\n",
+ " 'corticotroph': {}}},\n",
+ " 'interrenal chromaffin cell': {'interrenal norepinephrine type cell': {},\n",
+ " 'interrenal epinephrin secreting cell': {}},\n",
+ " 'chromaffin cell of paraganglion': {'chromaffin cell of paraaortic body': {}},\n",
+ " 'chromaffin cell of adrenal gland': {'adrenal medulla chromaffin cell': {'type II cell of adrenal medulla': {},\n",
+ " 'type I cell of adrenal medulla': {}},\n",
+ " 'adrenal cortex chromaffin cell': {}},\n",
+ " 'chromaffin cell of ovary': {'chromaffin cell of right ovary': {},\n",
+ " 'chromaffin cell of left ovary': {}}}},\n",
+ " 'paraganglial type 1 cell': {},\n",
+ " 'Feyrter cell': {'dense-core granulated cell of epithelium of trachea': {}},\n",
+ " 'magnocellular neurosecretory cell': {'oxytocin-secreting magnocellular cell': {},\n",
+ " 'vasopressin-secreting magnocellular cell': {}},\n",
+ " 'gonadotropin-releasing hormone neuron': {},\n",
+ " 'prostate neuroendocrine cell': {},\n",
+ " 'stomach neuroendocrine cell': {},\n",
+ " 'lung neuroendocrine cell': {'neuroendocrine cell of epithelium of lobar bronchus': {}},\n",
+ " 'parvocellular neurosecretory cell': {},\n",
+ " 'neuroendocrine cell of epithelium of crypt of Lieberkuhn': {}},\n",
+ " 'thyroid hormone secreting cell': {},\n",
+ " 'chromophobe cell': {},\n",
+ " 'pinealocyte': {'type I pinealocyte': {}, 'type II pinealocyte': {}},\n",
+ " 'myoendocrine cell': {},\n",
+ " 'myocardial endocrine cell': {'myocardial endocrine cell of atrium': {},\n",
+ " 'myocardial endocrine cell of septal division of left branch of atrioventricular bundle': {},\n",
+ " 'myocardial endocrine cell of interventricular septum': {}}},\n",
+ " 'Leydig cell': {},\n",
+ " 'phagocyte': {'mature neutrophil': {'band form neutrophil': {},\n",
+ " 'segmented neutrophil of bone marrow': {}},\n",
+ " 'macrophage': {'elicited macrophage': {'suppressor macrophage': {'kidney interstitial suppressor macrophage': {}},\n",
+ " 'inflammatory macrophage': {'kidney interstitial inflammatory macrophage': {}},\n",
+ " 'alternatively activated macrophage': {'kidney interstitial alternatively activated macrophage': {}}},\n",
+ " 'tissue-resident macrophage': {'Kupffer cell': {},\n",
+ " 'peritoneal macrophage': {},\n",
+ " 'alveolar macrophage': {'CCL3-positive alveolar macrophage': {},\n",
+ " 'metallothionein-positive alveolar macrophage': {}},\n",
+ " 'mesangial phagocyte': {},\n",
+ " 'thymic macrophage': {'thymic medullary macrophage': {},\n",
+ " 'thymic cortical macrophage': {}},\n",
+ " 'secondary lymphoid organ macrophage': {'lymph node macrophage': {'lymph node subcapsular sinus macrophage': {},\n",
+ " 'lymph node tingible body macrophage': {}},\n",
+ " 'splenic macrophage': {'splenic marginal zone macrophage': {},\n",
+ " 'splenic metallophillic macrophage': {},\n",
+ " 'splenic red pulp macrophage': {},\n",
+ " 'splenic white pulp macrophage': {'splenic tingible body macrophage': {}}},\n",
+ " 'mucosa-associated lymphoid tissue macrophage': {'gut-associated lymphoid tissue macrophage': {'gastrointestinal tract (lamina propria) macrophage': {'gastrointestinal tract (lamina propria) macrophage of small intestine': {},\n",
+ " 'gastrointestinal tract (lamina propria) macrophage of large intestine': {}},\n",
+ " 'tonsillar macrophage': {},\n",
+ " \"Peyer's patch macrophage\": {}},\n",
+ " 'nasal and broncial associated lymphoid tissue macrophage': {}}},\n",
+ " 'central nervous system macrophage': {'microglial cell': {'immature microglial cell': {},\n",
+ " 'mature microglial cell': {}},\n",
+ " 'meningeal macrophage': {},\n",
+ " 'choroid-plexus macrophage': {},\n",
+ " 'perivascular macrophage': {}},\n",
+ " 'melanophage': {},\n",
+ " 'pleural macrophage': {},\n",
+ " 'bone marrow macrophage': {},\n",
+ " 'adipose macrophage': {'F4/80-negative adipose macrophage': {},\n",
+ " 'F4/80-positive adipose macrophage': {}},\n",
+ " 'kidney resident macrophage': {},\n",
+ " 'lung interstitial macrophage': {}},\n",
+ " 'epithelioid macrophage': {},\n",
+ " 'appendix macrophage': {},\n",
+ " 'colon macrophage': {},\n",
+ " 'macrophage of medullary sinus of lymph node': {},\n",
+ " 'anorectum macrophage': {},\n",
+ " 'lung macrophage': {'alveolar macrophage': {'CCL3-positive alveolar macrophage': {},\n",
+ " 'metallothionein-positive alveolar macrophage': {}},\n",
+ " 'lung interstitial macrophage': {}},\n",
+ " 'Hofbauer cell': {}},\n",
+ " 'phagocyte (sensu Vertebrata)': {'mononuclear phagocyte': {},\n",
+ " 'multinucleated phagocyte': {}},\n",
+ " 'phagocyte (sensu Nematoda and Protostomia)': {'coelomocyte': {},\n",
+ " 'pericardial nephrocyte': {},\n",
+ " 'garland cell': {}},\n",
+ " 'classical monocyte': {'CD14-positive, CD16-negative classical monocyte': {},\n",
+ " 'Gr1-high classical monocyte': {'MHC-II-negative classical monocyte': {'lymphoid MHC-II-negative classical monocyte': {}},\n",
+ " 'MHC-II-positive classical monocyte': {}}},\n",
+ " 'type A synovial cell': {},\n",
+ " 'glomerular mesangial cell': {}},\n",
+ " 'hatching gland cell': {},\n",
+ " 'pigment cell (sensu Nematoda and Protostomia)': {'visual pigment cell (sensu Nematoda and Protostomia)': {}},\n",
+ " 'pigment cell (sensu Vertebrata)': {'visual pigment cell (sensu Vertebrata)': {},\n",
+ " 'iris pigment epithelial cell': {}},\n",
+ " 'scleral cell': {},\n",
+ " 'choroidal cell of the eye': {},\n",
+ " 'sheath cell (sensu Nematoda)': {},\n",
+ " 'histoblast': {},\n",
+ " 'thecogen cell': {},\n",
+ " 'scolopale cell': {},\n",
+ " 'ligament cell': {},\n",
+ " 'scolopidial ligament cell': {},\n",
+ " 'male gamete': {'sperm': {'Y chromosome-bearing sperm cell': {},\n",
+ " 'X chromosome-bearing sperm cell': {},\n",
+ " 'motile sperm cell': {'amoeboid sperm cell': {},\n",
+ " 'flagellated sperm cell': {}},\n",
+ " 'non-motile sperm cell': {}}},\n",
+ " 'tip cell': {'malpighian tubule tip cell': {}},\n",
+ " 'iridophore': {},\n",
+ " 'follicular dendritic cell': {\"Peyer's patch follicular dendritic cell\": {}},\n",
+ " 'oenocyte': {},\n",
+ " 'paracrine cell': {'folliculostellate cell': {'folliculostellate cell of pars distalis of adenohypophysis': {}}},\n",
+ " 'fat body cell': {},\n",
+ " 'leucophore': {},\n",
+ " 'erythrophore': {},\n",
+ " 'labyrinth supporting cell': {},\n",
+ " 'distal tip cell (sensu Nematoda)': {},\n",
+ " 'primordial germ cell': {'pole cell': {},\n",
+ " 'male gonocyte': {},\n",
+ " 'ooblast': {}},\n",
+ " 'cap cell': {},\n",
+ " 'paraganglia type 2 cell': {},\n",
+ " 'cystoblast': {},\n",
+ " 'amoeboid cell': {},\n",
+ " 'cyanophore': {},\n",
+ " 'neuromast mantle cell': {'anterior lateral line neuromast mantle cell': {},\n",
+ " 'posterior lateral line neuromast mantle cell': {}},\n",
+ " 'bone cell': {'osteoclast': {'odontoclast': {'multinuclear odontoclast': {},\n",
+ " 'mononuclear odontoclast': {}},\n",
+ " 'mononuclear osteoclast': {'mononuclear odontoclast': {}},\n",
+ " 'multinuclear osteoclast': {'multinuclear odontoclast': {}}},\n",
+ " 'osteocyte': {'cementocyte': {}},\n",
+ " 'non-terminally differentiated osteoblast': {},\n",
+ " 'bone marrow cell': {'marrow fibroblast': {},\n",
+ " 'mesenchymal stem cell of the bone marrow': {'mesenchymal stem cell of femoral bone marrow': {}},\n",
+ " 'stromal cell of bone marrow': {},\n",
+ " 'bone marrow hematopoietic cell': {'granulocyte monocyte progenitor cell': {'CD34-positive, CD38-positive granulocyte monocyte progenitor': {},\n",
+ " 'Kit-positive granulocyte monocyte progenitor': {}},\n",
+ " 'bone marrow macrophage': {},\n",
+ " 'mononuclear cell of bone marrow': {},\n",
+ " 'segmented neutrophil of bone marrow': {}}},\n",
+ " 'endosteal cell': {},\n",
+ " 'supporting cell of cochlea': {'Claudius cell': {},\n",
+ " 'Boettcher cell': {},\n",
+ " 'border cell of cochlea': {},\n",
+ " 'interdental cell of cochlea': {},\n",
+ " 'organ of Corti supporting cell': {'Hensen cell': {},\n",
+ " 'phalangeal cell': {\"Deiter's cell\": {}, 'inner phalangeal cell': {}},\n",
+ " 'pillar cell': {'internal pillar cell of cochlea': {},\n",
+ " 'external pillar cell of cochlea': {}}}},\n",
+ " 'vertebral mesenchymal stem cell': {},\n",
+ " 'preosteoblast': {},\n",
+ " 'femural osteoblast': {}},\n",
+ " 'polar body': {'primary polar body': {}, 'secondary polar body': {}},\n",
+ " 'corneocyte': {},\n",
+ " 'hepatic oval stem cell': {},\n",
+ " 'embryonic cell (metazoa)': {'early embryonic cell (metazoa)': {'blastoderm cell': {},\n",
+ " 'morula cell': {},\n",
+ " 'gastrula cell': {},\n",
+ " 'animal zygote': {},\n",
+ " 'bottle cell': {}},\n",
+ " 'neuroplacodal cell': {},\n",
+ " 'ectodermal cell': {'surface ectodermal cell': {},\n",
+ " 'neurectodermal cell': {'interneuromast cell': {}}},\n",
+ " 'mesodermal cell': {'hemangioblast': {},\n",
+ " 'embryonic blood vessel endothelial progenitor cell': {},\n",
+ " 'chordamesodermal cell': {},\n",
+ " 'paraxial cell': {},\n",
+ " 'lateral mesodermal cell': {'splanchnic mesodermal cell': {}},\n",
+ " 'intermediate mesodermal cell': {}},\n",
+ " 'endodermal cell': {'anterior visceral endoderm cell': {}},\n",
+ " 'embryonic stem cell': {},\n",
+ " 'epidermal ciliary cell': {},\n",
+ " 'neural crest cell': {'migratory neural crest cell': {'migratory cranial neural crest cell': {},\n",
+ " 'migratory trunk neural crest cell': {},\n",
+ " 'migratory enteric neural crest cell': {},\n",
+ " 'migratory cardiac neural crest cell': {'cardiac mesenchymal cell': {'endocardial cushion cell': {}}}},\n",
+ " 'premigratory neural crest cell': {},\n",
+ " 'vagal neural crest cell': {}}},\n",
+ " 'progenitor cell of endocrine pancreas': {},\n",
+ " 'somatic cell': {'multi fate stem cell': {'mesenchymal stem cell': {'metanephric mesenchyme stem cell': {},\n",
+ " 'hair follicle dermal papilla cell': {'hair follicle dermal papilla cell of scalp': {}},\n",
+ " 'nephrogenic mesenchyme stem cell': {},\n",
+ " 'angioblastic mesenchymal cell': {'adult endothelial progenitor cell': {'colony forming unit β Hill cell': {},\n",
+ " 'circulating angiogenic cell': {},\n",
+ " 'endothelial colony forming cell': {}}},\n",
+ " 'amnion mesenchymal stem cell': {},\n",
+ " 'mesenchymal stem cell of the bone marrow': {'mesenchymal stem cell of femoral bone marrow': {}},\n",
+ " 'chorionic membrane mesenchymal stem cell': {},\n",
+ " 'mesenchymal stem cell of umbilical cord': {\"mesenchymal stem cell of Wharton's jelly\": {}},\n",
+ " 'mesenchymal stem cell of adipose tissue': {'mesenchymal stem cell of abdominal adipose tissue': {}},\n",
+ " 'hepatic mesenchymal stem cell': {},\n",
+ " 'vertebral mesenchymal stem cell': {},\n",
+ " 'amniotic stem cell': {},\n",
+ " 'mesenchymal lymphangioblast': {},\n",
+ " 'placental amniotic mesenchymal stromal cell': {}},\n",
+ " 'blastemal cell': {},\n",
+ " 'multi-potent skeletal muscle stem cell': {},\n",
+ " 'stem cell of gastric gland': {},\n",
+ " 'hepatic stem cell': {'hepatic mesenchymal stem cell': {}},\n",
+ " 'intestinal crypt stem cell': {'intestinal crypt stem cell of large intestine': {'intestinal crypt stem cell of appendix': {}},\n",
+ " 'intestinal crypt stem cell of small intestine': {},\n",
+ " 'intestinal crypt stem cell of colon': {},\n",
+ " 'intestinal crypt stem cell of anorectum': {}},\n",
+ " 'type III taste bud cell': {},\n",
+ " 'keratinocyte stem cell': {},\n",
+ " 'prostate stem cell': {},\n",
+ " 'mammary stem cell': {},\n",
+ " 'cardioblast': {},\n",
+ " 'retinal progenitor cell': {},\n",
+ " 'lymphangioblast': {'mesenchymal lymphangioblast': {},\n",
+ " 'vascular lymphangioblast': {}},\n",
+ " 'hepatoblast': {},\n",
+ " 'neural crest cell': {'migratory neural crest cell': {'migratory cranial neural crest cell': {},\n",
+ " 'migratory trunk neural crest cell': {},\n",
+ " 'migratory enteric neural crest cell': {},\n",
+ " 'migratory cardiac neural crest cell': {'cardiac mesenchymal cell': {'endocardial cushion cell': {}}}},\n",
+ " 'premigratory neural crest cell': {},\n",
+ " 'vagal neural crest cell': {}}},\n",
+ " 'duct epithelial cell': {'branched duct epithelial cell': {'tracheoblast': {},\n",
+ " 'pancreatic ductal cell': {},\n",
+ " 'luminal epithelial cell of mammary gland': {'luminal cell of acinus of lactiferous gland': {},\n",
+ " 'luminal cell of lactiferous duct': {'luminal cell of lactiferous terminal ductal lobular unit': {}}},\n",
+ " 'pancreatic goblet cell': {},\n",
+ " 'cholangiocyte': {'intrahepatic cholangiocyte': {},\n",
+ " 'extrahepatic cholangiocyte': {}}},\n",
+ " 'non-branched duct epithelial cell': {'epithelial cell of prostatic duct': {},\n",
+ " 'epithelial cell of lacrimal duct': {'epithelial cell of nasolacrimal duct': {}},\n",
+ " 'kidney collecting duct epithelial cell': {'kidney collecting duct principal cell': {'kidney cortex collecting duct principal cell': {},\n",
+ " 'kidney outer medulla collecting duct principal cell': {},\n",
+ " 'kidney inner medulla collecting duct principal cell': {},\n",
+ " 'kidney papillary duct principal cell': {}},\n",
+ " 'kidney collecting duct intercalated cell': {'kidney cortex collecting duct intercalated cell': {'kidney collecting duct beta-intercalated cell': {}},\n",
+ " 'kidney outer medulla collecting duct intercalated cell': {},\n",
+ " 'kidney inner medulla collecting duct intercalated cell': {},\n",
+ " 'kidney papillary duct intercalated cell': {},\n",
+ " 'kidney collecting duct alpha-intercalated cell': {}}}},\n",
+ " 'basal epithelial cell of prostatic duct': {},\n",
+ " 'luminal epithelial cell of prostatic duct': {},\n",
+ " 'seminiferous tubule epithelial cell': {'Sertoli cell': {},\n",
+ " 'peritubular myoid cell': {}},\n",
+ " 'myoepithelial cell of lactiferous duct': {},\n",
+ " 'epithelial cell of lacrimal sac': {},\n",
+ " 'epididymis glandular cell': {},\n",
+ " 'seminal vesicle glandular cell': {}},\n",
+ " 'barrier epithelial cell': {},\n",
+ " 'columnar/cuboidal epithelial cell': {'simple columnar epithelial cell': {'ameloblast': {},\n",
+ " 'imaginal disc cell': {}},\n",
+ " 'myoepithelial cell': {'myoepithelial cell of mammary gland': {'myoepithelial cell of lactiferous alveolus': {},\n",
+ " 'myoepithelial cell of lactiferous duct': {},\n",
+ " 'myoepithelial cell of acinus of lactiferous gland': {}},\n",
+ " 'peritubular myoid cell': {},\n",
+ " 'myoepithelial cell of intralobular lactiferous duct': {},\n",
+ " 'myoepithelial cell of sweat gland': {},\n",
+ " 'myoepithelial cell of terminal lactiferous duct': {},\n",
+ " 'myoepithelial cell of dilator pupillae': {},\n",
+ " 'myoepithelial cell of main lactiferous duct': {},\n",
+ " 'myoepithelial cell of primary lactiferous duct': {},\n",
+ " 'myoepithelial cell of secondary lactiferous duct': {},\n",
+ " 'myoepithelial cell of tertiary lactiferous duct': {},\n",
+ " 'myoepithelial cell of quarternary lactiferous duct': {},\n",
+ " 'myoepithelial cell of bronchus submucosal gland': {},\n",
+ " 'myoepithelial cell of trachea gland': {}},\n",
+ " 'brush border epithelial cell': {'enterocyte': {'enterocyte of epithelium of large intestine': {'enterocyte of epithelium proper of large intestine': {},\n",
+ " 'enterocyte of colon': {}},\n",
+ " 'enterocyte of appendix': {},\n",
+ " 'enterocyte of anorectum': {},\n",
+ " 'vacuolated fetal-type enterocyte': {},\n",
+ " 'lysosome-rich enterocyte': {},\n",
+ " 'enterocyte of epithelium of small intestine': {'enterocyte of epithelium of intestinal villus': {},\n",
+ " 'enterocyte of epithelium of crypt of Lieberkuhn of small intestine': {},\n",
+ " 'enterocyte of epithelium proper of small intestine': {'enterocyte of epithelium proper of duodenum': {},\n",
+ " 'enterocyte of epithelium proper of jejunum': {},\n",
+ " 'enterocyte of epithelium proper of ileum': {}}},\n",
+ " 'enterocyte of epithelium of duodenal gland': {}},\n",
+ " 'epithelial cell of proximal tubule': {'brush border cell of the proximal tubule': {},\n",
+ " 'kidney proximal convoluted tubule epithelial cell': {},\n",
+ " 'kidney proximal straight tubule epithelial cell': {},\n",
+ " 'epithelial cell of proximal tubule segment 1': {},\n",
+ " 'epithelial cell of proximal tubule segment 2': {},\n",
+ " 'epithelial cell of proximal tubule segment 3': {},\n",
+ " 'CD24-positive, CD-133-positive, vimentin-positive proximal tubular cell': {}}},\n",
+ " 'stratified cuboidal epithelial cell': {},\n",
+ " 'sheath cell': {},\n",
+ " 'neurecto-epithelial cell': {'odontoblast': {'non-terminally differentiated odontoblast': {},\n",
+ " 'terminally differentiated odontoblast': {}},\n",
+ " 'ependymal cell': {'choroid plexus epithelial cell': {}},\n",
+ " 'corneal endothelial cell': {},\n",
+ " 'neuroendocrine cell': {'amine precursor uptake and decarboxylation cell': {'chromaffin cell': {'type EC enteroendocrine cell': {'type EC2 enteroendocrine cell': {},\n",
+ " 'type EC1 enteroendocrine cell': {},\n",
+ " 'type ECL enteroendocrine cell': {}},\n",
+ " 'chromophil cell of anterior pituitary gland': {'acidophil cell of pars distalis of adenohypophysis': {'mammosomatotroph': {},\n",
+ " 'mammotroph': {},\n",
+ " 'somatotroph': {}},\n",
+ " 'basophil cell of pars distalis of adenohypophysis': {'gonadtroph': {},\n",
+ " 'thyrotroph': {},\n",
+ " 'corticotroph': {}}},\n",
+ " 'interrenal chromaffin cell': {'interrenal norepinephrine type cell': {},\n",
+ " 'interrenal epinephrin secreting cell': {}},\n",
+ " 'chromaffin cell of paraganglion': {'chromaffin cell of paraaortic body': {}},\n",
+ " 'chromaffin cell of adrenal gland': {'adrenal medulla chromaffin cell': {'type II cell of adrenal medulla': {},\n",
+ " 'type I cell of adrenal medulla': {}},\n",
+ " 'adrenal cortex chromaffin cell': {}},\n",
+ " 'chromaffin cell of ovary': {'chromaffin cell of right ovary': {},\n",
+ " 'chromaffin cell of left ovary': {}}}},\n",
+ " 'paraganglial type 1 cell': {},\n",
+ " 'Feyrter cell': {'dense-core granulated cell of epithelium of trachea': {}},\n",
+ " 'magnocellular neurosecretory cell': {'oxytocin-secreting magnocellular cell': {},\n",
+ " 'vasopressin-secreting magnocellular cell': {}},\n",
+ " 'gonadotropin-releasing hormone neuron': {},\n",
+ " 'prostate neuroendocrine cell': {},\n",
+ " 'stomach neuroendocrine cell': {},\n",
+ " 'lung neuroendocrine cell': {'neuroendocrine cell of epithelium of lobar bronchus': {}},\n",
+ " 'parvocellular neurosecretory cell': {},\n",
+ " 'neuroendocrine cell of epithelium of crypt of Lieberkuhn': {}},\n",
+ " 'Merkel cell': {},\n",
+ " 'epidermal cell (sensu Arthropoda)': {'tormogen cell': {},\n",
+ " 'trichogen cell': {}},\n",
+ " 'epidermoblast': {},\n",
+ " 'pigmented epithelial cell': {'pigmented ciliary epithelial cell': {}},\n",
+ " 'parafollicular cell': {},\n",
+ " 'pinealocyte': {'type I pinealocyte': {}, 'type II pinealocyte': {}},\n",
+ " 'cerebrospinal fluid secreting cell': {},\n",
+ " 'interstitial cell of Cajal': {},\n",
+ " 'olfactory epithelial cell': {'basal cell of olfactory epithelium': {'olfactory epithelial supporting cell': {},\n",
+ " 'globose cell of olfactory epithelium': {},\n",
+ " 'basal proper cell of olfactory epithelium': {}}},\n",
+ " 'folliculostellate cell of pars distalis of adenohypophysis': {},\n",
+ " 'interstitial cell of pineal gland': {},\n",
+ " 'supporting cell of carotid body': {'type II cell of carotid body': {}},\n",
+ " 'type I cell of carotid body': {},\n",
+ " 'non-pigmented ciliary epithelial cell': {},\n",
+ " 'meningothelial cell': {},\n",
+ " 'strial intermediate cell': {},\n",
+ " 'auditory epithelial supporting cell': {'supporting cell of cochlea': {'Claudius cell': {},\n",
+ " 'Boettcher cell': {},\n",
+ " 'border cell of cochlea': {},\n",
+ " 'interdental cell of cochlea': {},\n",
+ " 'organ of Corti supporting cell': {'Hensen cell': {},\n",
+ " 'phalangeal cell': {\"Deiter's cell\": {},\n",
+ " 'inner phalangeal cell': {}},\n",
+ " 'pillar cell': {'internal pillar cell of cochlea': {},\n",
+ " 'external pillar cell of cochlea': {}}}},\n",
+ " 'supporting cell of vestibular epithelium': {'external supporting cell of vestibular epithelium': {},\n",
+ " 'external limiting cell of vestibular epithelium': {}}},\n",
+ " 'hypendymal cell': {}},\n",
+ " 'lens epithelial cell': {'anterior lens cell': {}},\n",
+ " 'endothelial cell of high endothelial venule': {},\n",
+ " 'renal principal cell': {'kidney collecting duct principal cell': {'kidney cortex collecting duct principal cell': {},\n",
+ " 'kidney outer medulla collecting duct principal cell': {},\n",
+ " 'kidney inner medulla collecting duct principal cell': {},\n",
+ " 'kidney papillary duct principal cell': {}},\n",
+ " 'kidney connecting tubule principal cell': {}},\n",
+ " 'renal intercalated cell': {'renal beta-intercalated cell': {'kidney collecting duct beta-intercalated cell': {},\n",
+ " 'kidney connecting tubule beta-intercalated cell': {}},\n",
+ " 'renal alpha-intercalated cell': {'kidney collecting duct alpha-intercalated cell': {},\n",
+ " 'kidney connecting tubule alpha-intercalated cell': {}},\n",
+ " 'kidney collecting duct intercalated cell': {'kidney cortex collecting duct intercalated cell': {'kidney collecting duct beta-intercalated cell': {}},\n",
+ " 'kidney outer medulla collecting duct intercalated cell': {},\n",
+ " 'kidney inner medulla collecting duct intercalated cell': {},\n",
+ " 'kidney papillary duct intercalated cell': {},\n",
+ " 'kidney collecting duct alpha-intercalated cell': {}},\n",
+ " 'kidney connecting tubule intercalated cell': {'kidney connecting tubule alpha-intercalated cell': {},\n",
+ " 'kidney connecting tubule beta-intercalated cell': {}}}},\n",
+ " 'peridermal cell': {},\n",
+ " 'stratified epithelial cell': {'stratified squamous epithelial cell': {'keratinizing barrier epithelial cell': {'keratinocyte': {'Merkel cell': {},\n",
+ " 'prickle cell': {},\n",
+ " 'basal cell of epidermis': {'limb basal cell of epidermis': {}},\n",
+ " 'granular cell of epidermis': {},\n",
+ " 'squamous cell of epidermis': {},\n",
+ " 'keratinocyte stem cell': {},\n",
+ " 'foreskin keratinocyte': {},\n",
+ " 'hair follicular keratinocyte': {'keratinized cell of hair follicle': {}},\n",
+ " 'suprabasal keratinocyte': {}},\n",
+ " 'keratinized cell of the oral mucosa': {},\n",
+ " 'keratinized squamous cell of esophagus': {},\n",
+ " 'keratinized epithelial cell of the anal canal': {}},\n",
+ " 'non keratinizing barrier epithelial cell': {'esophagus non-keratinized squamous epithelial cell': {}},\n",
+ " 'stratified squamous epithelial cell of anal canal': {'keratinized epithelial cell of the anal canal': {}}},\n",
+ " 'stratified cuboidal epithelial cell': {}},\n",
+ " 'epithelial cell of pancreas': {'pancreatic endocrine cell': {'type B pancreatic cell': {},\n",
+ " 'pancreatic A cell': {},\n",
+ " 'pancreatic D cell': {},\n",
+ " 'pancreatic PP cell': {},\n",
+ " 'pancreatic epsilon cell': {}},\n",
+ " 'epithelial cell of exocrine pancreas': {'pancreatic ductal cell': {},\n",
+ " 'pancreatic centro-acinar cell': {},\n",
+ " 'pancreas exocrine glandular cell': {'pancreatic acinar cell': {},\n",
+ " 'pancreatic goblet cell': {}}}},\n",
+ " 'sensory epithelial cell': {'taste receptor cell': {'type III taste bud cell': {},\n",
+ " 'type II taste cell': {},\n",
+ " 'type IV taste receptor cell': {},\n",
+ " 'type V taste receptor cell': {},\n",
+ " 'type I taste bud cell': {},\n",
+ " 'taste receptor cell of tongue': {}},\n",
+ " 'olfactory epithelial cell': {'basal cell of olfactory epithelium': {'olfactory epithelial supporting cell': {},\n",
+ " 'globose cell of olfactory epithelium': {},\n",
+ " 'basal proper cell of olfactory epithelium': {}}},\n",
+ " 'auditory epithelial cell': {'strial intermediate cell': {},\n",
+ " 'strial marginal cell': {},\n",
+ " 'strial basal cell': {},\n",
+ " 'auditory epithelial supporting cell': {'supporting cell of cochlea': {'Claudius cell': {},\n",
+ " 'Boettcher cell': {},\n",
+ " 'border cell of cochlea': {},\n",
+ " 'interdental cell of cochlea': {},\n",
+ " 'organ of Corti supporting cell': {'Hensen cell': {},\n",
+ " 'phalangeal cell': {\"Deiter's cell\": {},\n",
+ " 'inner phalangeal cell': {}},\n",
+ " 'pillar cell': {'internal pillar cell of cochlea': {},\n",
+ " 'external pillar cell of cochlea': {}}}},\n",
+ " 'supporting cell of vestibular epithelium': {'external supporting cell of vestibular epithelium': {},\n",
+ " 'external limiting cell of vestibular epithelium': {}}}},\n",
+ " 'lung neuroendocrine cell': {'neuroendocrine cell of epithelium of lobar bronchus': {}}},\n",
+ " 'melanocyte': {'epithelial melanocyte': {'strial intermediate cell': {},\n",
+ " 'epidermal melanocyte': {'hair follicle melanocyte': {}}},\n",
+ " 'retinal melanocyte': {},\n",
+ " 'dark melanocyte': {},\n",
+ " 'light melanocyte': {},\n",
+ " 'melanocyte of eyelid': {},\n",
+ " 'melanocyte of skin': {'dermal melanocyte': {},\n",
+ " 'epidermal melanocyte': {'hair follicle melanocyte': {}},\n",
+ " 'melanocyte of skin of face': {},\n",
+ " 'melanocyte of foreskin': {}},\n",
+ " 'foreskin melanocyte': {'melanocyte of foreskin': {}},\n",
+ " 'choroidal melanocyte': {}},\n",
+ " 'glandular epithelial cell': {'goblet cell': {'respiratory goblet cell': {'nasal mucosa goblet cell': {},\n",
+ " 'tracheobronchial goblet cell': {'bronchial goblet cell': {'goblet cell of epithelium of lobar bronchus': {}},\n",
+ " 'tracheal goblet cell': {}},\n",
+ " 'lung goblet cell': {'goblet cell of epithelium of lobar bronchus': {}}},\n",
+ " 'intestine goblet cell': {'large intestine goblet cell': {'colon goblet cell': {},\n",
+ " 'anorectum goblet cell': {},\n",
+ " 'large intestine crypt goblet cell': {},\n",
+ " 'appendix goblet cell': {}},\n",
+ " 'small intestine goblet cell': {'intestinal villus goblet cell': {'duodenal goblet cell': {},\n",
+ " 'jejunal goblet cell': {},\n",
+ " 'ileal goblet cell': {}}}},\n",
+ " 'gastric goblet cell': {'gastric cardiac gland goblet cell': {},\n",
+ " 'principal gastric gland goblet cell': {},\n",
+ " 'pyloric gastric gland goblet cell': {}},\n",
+ " 'pancreatic goblet cell': {},\n",
+ " 'conjunctiva goblet cell': {}},\n",
+ " 'enteroendocrine cell': {'type D enteroendocrine cell': {'pancreatic D cell': {},\n",
+ " 'type D cell of colon': {},\n",
+ " 'type D cell of small intestine': {},\n",
+ " 'type D cell of stomach': {}},\n",
+ " 'enterochromaffin-like cell': {},\n",
+ " 'type G enteroendocrine cell': {},\n",
+ " 'type EC enteroendocrine cell': {'type EC2 enteroendocrine cell': {},\n",
+ " 'type EC1 enteroendocrine cell': {},\n",
+ " 'type ECL enteroendocrine cell': {}},\n",
+ " 'PP cell': {'pancreatic PP cell': {}, 'PP cell of intestine': {}},\n",
+ " 'type A enteroendocrine cell': {'pancreatic A cell': {},\n",
+ " 'type A cell of stomach': {}},\n",
+ " 'P/D1 enteroendocrine cell': {'P enteroendocrine cell': {},\n",
+ " 'type D1 enteroendocrine cell': {}},\n",
+ " 'type I enteroendocrine cell': {},\n",
+ " 'type L enteroendocrine cell': {},\n",
+ " 'type N enteroendocrine cell': {},\n",
+ " 'type S enteroendocrine cell': {},\n",
+ " 'type TG enteroendocrine cell': {},\n",
+ " 'type X enteroendocrine cell': {},\n",
+ " 'pancreatic endocrine cell': {'type B pancreatic cell': {},\n",
+ " 'pancreatic A cell': {},\n",
+ " 'pancreatic D cell': {},\n",
+ " 'pancreatic PP cell': {},\n",
+ " 'pancreatic epsilon cell': {}},\n",
+ " 'stomach neuroendocrine cell': {},\n",
+ " 'intestinal enteroendocrine cell': {'PP cell of intestine': {},\n",
+ " 'enteroendocrine cell of small intestine': {'type D cell of small intestine': {},\n",
+ " 'GIP cell': {},\n",
+ " 'type M enteroendocrine cell': {}},\n",
+ " 'enteroendocrine cell of appendix': {},\n",
+ " 'enteroendocrine cell of colon': {'type D cell of colon': {}},\n",
+ " 'enteroendocrine cell of anorectum': {},\n",
+ " 'neuroendocrine cell of epithelium of crypt of Lieberkuhn': {}},\n",
+ " 'stomach enteroendocrine cell': {}},\n",
+ " 'sweat secreting cell': {'dark cell of eccrine sweat gland': {},\n",
+ " 'clear cell of eccrine sweat gland': {}},\n",
+ " 'eccrine cell': {'dark cell of eccrine sweat gland': {},\n",
+ " 'clear cell of eccrine sweat gland': {}},\n",
+ " 'paneth cell': {'paneth cell of the appendix': {},\n",
+ " 'paneth cell of colon': {},\n",
+ " 'paneth cell of anorectum': {},\n",
+ " 'paneth cell of epithelium of small intestine': {'paneth cell of epithelium proper of small intestine': {},\n",
+ " 'paneth cell of epithelium of crypt of Lieberkuhn of small intestine': {}}},\n",
+ " 'acinar cell': {'pancreatic acinar cell': {},\n",
+ " 'acinar cell of sebaceous gland': {},\n",
+ " 'acinar cell of salivary gland': {}},\n",
+ " 'chromophil cell of anterior pituitary gland': {'acidophil cell of pars distalis of adenohypophysis': {'mammosomatotroph': {},\n",
+ " 'mammotroph': {},\n",
+ " 'somatotroph': {}},\n",
+ " 'basophil cell of pars distalis of adenohypophysis': {'gonadtroph': {},\n",
+ " 'thyrotroph': {},\n",
+ " 'corticotroph': {}}},\n",
+ " 'mucous neck cell': {'mucous neck cell of gastric gland': {}},\n",
+ " 'epithelial cell of thyroid gland': {'oxyphil cell of thyroid': {},\n",
+ " 'thyroid follicular cell': {}},\n",
+ " 'endocrine-paracrine cell of prostate gland': {},\n",
+ " 'glandular cell of esophagus': {'epithelial cell of esophageal gland proper': {},\n",
+ " 'epithelial cell of esophageal cardiac gland': {}},\n",
+ " 'glandular cell of the large intestine': {'paneth cell of anorectum': {},\n",
+ " 'enteroendocrine cell of anorectum': {},\n",
+ " 'large intestine goblet cell': {'colon goblet cell': {},\n",
+ " 'anorectum goblet cell': {},\n",
+ " 'large intestine crypt goblet cell': {},\n",
+ " 'appendix goblet cell': {}},\n",
+ " 'appendix glandular cell': {'paneth cell of the appendix': {},\n",
+ " 'enteroendocrine cell of appendix': {},\n",
+ " 'appendix goblet cell': {}},\n",
+ " 'colon glandular cell': {'paneth cell of colon': {},\n",
+ " 'colon goblet cell': {},\n",
+ " 'enteroendocrine cell of colon': {'type D cell of colon': {}}},\n",
+ " 'rectum glandular cell': {}},\n",
+ " 'glandular cell of stomach': {'peptic cell': {},\n",
+ " 'parietal cell': {},\n",
+ " 'mucous cell of stomach': {'type G enteroendocrine cell': {},\n",
+ " 'mucous neck cell of gastric gland': {},\n",
+ " 'surface mucosal cell of stomach': {},\n",
+ " 'stem cell of gastric gland': {},\n",
+ " 'gastric goblet cell': {'gastric cardiac gland goblet cell': {},\n",
+ " 'principal gastric gland goblet cell': {},\n",
+ " 'pyloric gastric gland goblet cell': {}}},\n",
+ " 'type A cell of stomach': {},\n",
+ " 'type D cell of stomach': {},\n",
+ " 'stomach neuroendocrine cell': {},\n",
+ " 'stomach enteroendocrine cell': {}},\n",
+ " 'chromaffin cell of adrenal gland': {'adrenal medulla chromaffin cell': {'type II cell of adrenal medulla': {},\n",
+ " 'type I cell of adrenal medulla': {}},\n",
+ " 'adrenal cortex chromaffin cell': {}},\n",
+ " 'mammary gland glandular cell': {'mammary alveolar cell': {}},\n",
+ " 'epididymis glandular cell': {},\n",
+ " 'oviduct glandular cell': {'glandular cell of endometrium': {},\n",
+ " 'uterine cervix glandular cell': {},\n",
+ " 'fallopian tube secretory epithelial cell': {}},\n",
+ " 'gallbladder glandular cell': {},\n",
+ " 'parathyroid glandular cell': {'epithelial cell of parathyroid gland': {'chief cell of parathyroid gland': {'active chief cell of parathyroid gland': {},\n",
+ " 'dark chief cell of parathyroid gland': {},\n",
+ " 'clear chief cell of parathyroid gland': {},\n",
+ " 'inactive chief cell of parathyoid gland': {},\n",
+ " 'light chief cell of parathyroid gland': {}},\n",
+ " 'oxyphil cell of parathyroid gland': {},\n",
+ " 'transitional cell of parathyroid gland': {}}},\n",
+ " 'salivary gland glandular cell': {'acinar cell of salivary gland': {}},\n",
+ " 'seminal vesicle glandular cell': {},\n",
+ " 'small intestine glandular cell': {'enteroendocrine cell of small intestine': {'type D cell of small intestine': {},\n",
+ " 'GIP cell': {},\n",
+ " 'type M enteroendocrine cell': {}},\n",
+ " 'paneth cell of epithelium of small intestine': {'paneth cell of epithelium proper of small intestine': {},\n",
+ " 'paneth cell of epithelium of crypt of Lieberkuhn of small intestine': {}},\n",
+ " 'small intestine goblet cell': {'intestinal villus goblet cell': {'duodenal goblet cell': {},\n",
+ " 'jejunal goblet cell': {},\n",
+ " 'ileal goblet cell': {}}},\n",
+ " 'duodenum glandular cell': {'duodenal goblet cell': {}}},\n",
+ " 'pancreas exocrine glandular cell': {'pancreatic acinar cell': {},\n",
+ " 'pancreatic goblet cell': {}},\n",
+ " 'adrenal gland glandular cell': {'cortical cell of adrenal gland': {'type I cell of adrenal cortex': {},\n",
+ " 'type II cell of adrenal cortex': {},\n",
+ " 'type III cell of adrenal cortex': {}},\n",
+ " 'adrenal cortex chromaffin cell': {}}},\n",
+ " 'hepatocyte': {'periportal region hepatocyte': {},\n",
+ " 'midzonal region hepatocyte': {},\n",
+ " 'centrilobular region hepatocyte': {}},\n",
+ " 'muscle cell': {'striated muscle cell': {'obliquely striated muscle cell': {'obliquely striated somatic muscle cell': {}},\n",
+ " 'cardiac muscle cell': {'cardiac muscle cell (sensu Arthopoda)': {},\n",
+ " 'specialized cardiac myocyte': {'Purkinje myocyte': {'Purkinje myocyte of interventricular septum': {},\n",
+ " 'Purkinje myocyte of atrioventricular node': {},\n",
+ " 'Purkinje myocyte of internodal tract': {},\n",
+ " 'Purkinje myocyte of atrioventricular bundle': {}},\n",
+ " 'nodal myocyte': {'myocyte of sinoatrial node': {'cardiac pacemaker cell of sinoatrial node': {},\n",
+ " 'transitional myocyte of sinoatrial node': {}},\n",
+ " 'myocyte of atrioventricular node': {'Purkinje myocyte of atrioventricular node': {}}},\n",
+ " 'transitional myocyte': {'transitional myocyte of interatrial septum': {},\n",
+ " 'transitional myocyte of interventricular septum': {},\n",
+ " 'transitional myocyte of sinoatrial node': {},\n",
+ " 'transitional myocyte of internodal tract': {'transitional myocyte of atrial branch of anterior internodal tract': {},\n",
+ " 'transitional myocyte of anterior internodal tract': {},\n",
+ " 'transitional myocyte of atrial septal branch of anterior internodal tract': {},\n",
+ " 'transitional myocyte of middle internodal tract': {},\n",
+ " 'transitional myocyte of posterior internodal tract': {}},\n",
+ " 'transitional myocyte of atrioventricular bundle': {'transitional myocyte of left branch of atrioventricular bundle': {'transitional myocyte of anterior division of left branch of atrioventricular bundle': {},\n",
+ " 'transitional myocyte of septal division of left branch of atrioventricular bundle': {},\n",
+ " 'transitional myocyte of posterior division of left branch of atrioventricular bundle': {}},\n",
+ " 'transitional myocyte of right branch of atrioventricular bundle': {},\n",
+ " 'transitional myocyte of atrial part of atrioventricular bundle': {},\n",
+ " 'transitional myocyte of ventricular part of atrioventricular bundle': {}}},\n",
+ " 'myocardial endocrine cell': {'myocardial endocrine cell of atrium': {},\n",
+ " 'myocardial endocrine cell of septal division of left branch of atrioventricular bundle': {},\n",
+ " 'myocardial endocrine cell of interventricular septum': {}},\n",
+ " 'internodal tract myocyte': {'myocyte of anterior internodal tract': {},\n",
+ " 'myocyte of atrial branch of anterior internodal tract': {},\n",
+ " 'myocyte of atrial septal branch of anterior internodal tract': {},\n",
+ " 'myocyte of middle internodal tract': {},\n",
+ " 'myocyte of posterior internodal tract': {},\n",
+ " 'transitional myocyte of internodal tract': {'transitional myocyte of atrial branch of anterior internodal tract': {},\n",
+ " 'transitional myocyte of anterior internodal tract': {},\n",
+ " 'transitional myocyte of atrial septal branch of anterior internodal tract': {},\n",
+ " 'transitional myocyte of middle internodal tract': {},\n",
+ " 'transitional myocyte of posterior internodal tract': {}},\n",
+ " 'Purkinje myocyte of internodal tract': {}}},\n",
+ " 'regular cardiac myocyte': {'regular interventricular cardiac myocyte': {},\n",
+ " 'regular atrial cardiac myocyte': {},\n",
+ " 'regular interatrial cardiac myocyte': {},\n",
+ " 'regular ventricular cardiac myocyte': {}},\n",
+ " 'fetal cardiomyocyte': {},\n",
+ " 'ventricular cardiac muscle cell': {'myocardial endocrine cell of septal division of left branch of atrioventricular bundle': {},\n",
+ " 'transitional myocyte of atrioventricular bundle': {'transitional myocyte of left branch of atrioventricular bundle': {'transitional myocyte of anterior division of left branch of atrioventricular bundle': {},\n",
+ " 'transitional myocyte of septal division of left branch of atrioventricular bundle': {},\n",
+ " 'transitional myocyte of posterior division of left branch of atrioventricular bundle': {}},\n",
+ " 'transitional myocyte of right branch of atrioventricular bundle': {},\n",
+ " 'transitional myocyte of atrial part of atrioventricular bundle': {},\n",
+ " 'transitional myocyte of ventricular part of atrioventricular bundle': {}},\n",
+ " 'Purkinje myocyte of atrioventricular bundle': {}}},\n",
+ " 'myotube': {'skeletal muscle fiber': {'tongue muscle cell': {},\n",
+ " 'extrafusal muscle fiber': {'slow muscle cell': {'type I muscle cell': {}},\n",
+ " 'fast muscle cell': {'type II muscle cell': {'type IIa muscle cell': {},\n",
+ " 'type IIb muscle cell': {}},\n",
+ " 'white muscle cell': {'type IIb muscle cell': {}}},\n",
+ " 'red muscle cell': {'type I muscle cell': {},\n",
+ " 'type IIa muscle cell': {}},\n",
+ " 'intermediate muscle cell': {}},\n",
+ " 'intrafusal muscle fiber': {'nuclear chain fiber': {},\n",
+ " 'nuclear bag fiber': {'dynamic nuclear bag fiber': {},\n",
+ " 'static nuclear bag fiber': {}}},\n",
+ " 'embryonic skeletal muscle fiber': {},\n",
+ " 'fetal and neonatal skeletal muscle fiber': {}},\n",
+ " 'somatic muscle myotube': {'insect flight muscle cell': {}}},\n",
+ " 'striated visceral muscle cell': {'transversely striated visceral muscle cell': {'internodal tract myocyte': {'myocyte of anterior internodal tract': {},\n",
+ " 'myocyte of atrial branch of anterior internodal tract': {},\n",
+ " 'myocyte of atrial septal branch of anterior internodal tract': {},\n",
+ " 'myocyte of middle internodal tract': {},\n",
+ " 'myocyte of posterior internodal tract': {},\n",
+ " 'transitional myocyte of internodal tract': {'transitional myocyte of atrial branch of anterior internodal tract': {},\n",
+ " 'transitional myocyte of anterior internodal tract': {},\n",
+ " 'transitional myocyte of atrial septal branch of anterior internodal tract': {},\n",
+ " 'transitional myocyte of middle internodal tract': {},\n",
+ " 'transitional myocyte of posterior internodal tract': {}},\n",
+ " 'Purkinje myocyte of internodal tract': {}},\n",
+ " 'myocardial endocrine cell of septal division of left branch of atrioventricular bundle': {},\n",
+ " 'myocyte of sinoatrial node': {'cardiac pacemaker cell of sinoatrial node': {},\n",
+ " 'transitional myocyte of sinoatrial node': {}},\n",
+ " 'myocyte of atrioventricular node': {'Purkinje myocyte of atrioventricular node': {}},\n",
+ " 'transitional myocyte of atrioventricular bundle': {'transitional myocyte of left branch of atrioventricular bundle': {'transitional myocyte of anterior division of left branch of atrioventricular bundle': {},\n",
+ " 'transitional myocyte of septal division of left branch of atrioventricular bundle': {},\n",
+ " 'transitional myocyte of posterior division of left branch of atrioventricular bundle': {}},\n",
+ " 'transitional myocyte of right branch of atrioventricular bundle': {},\n",
+ " 'transitional myocyte of atrial part of atrioventricular bundle': {},\n",
+ " 'transitional myocyte of ventricular part of atrioventricular bundle': {}},\n",
+ " 'Purkinje myocyte of atrioventricular bundle': {}}},\n",
+ " 'skeletal muscle tissue of pectoralis major striated muscle cell': {}},\n",
+ " 'non-striated muscle cell': {'smooth muscle cell': {'smooth muscle cell neural crest derived': {},\n",
+ " 'sphincter associated smooth muscle cell': {'smooth muscle cell of sphincter of pupil': {}},\n",
+ " 'vascular associated smooth muscle cell': {'smooth muscle cell of the brain vasculature': {},\n",
+ " 'microcirculation associated smooth muscle cell': {'smooth muscle cell of high endothelial venule of lymph node': {},\n",
+ " 'kidney afferent arteriole smooth muscle cell': {},\n",
+ " 'kidney efferent arteriole smooth muscle cell': {}},\n",
+ " 'lymphatic vessel smooth muscle cell': {},\n",
+ " 'blood vessel smooth muscle cell': {'aortic smooth muscle cell': {},\n",
+ " 'smooth muscle cell of the umbilical vein': {},\n",
+ " 'smooth muscle cell of the brachiocephalic vasculature': {},\n",
+ " 'smooth muscle cell of the pulmonary artery': {},\n",
+ " 'smooth muscle cell of the coronary artery': {},\n",
+ " 'smooth muscle cell of the umbilical artery': {},\n",
+ " 'smooth muscle cell of the subclavian artery': {'smooth muscle cell of the internal thoracic artery': {}},\n",
+ " 'smooth muscle cell of the carotid artery': {},\n",
+ " 'smooth muscle cell of high endothelial venule of lymph node': {},\n",
+ " 'kidney artery smooth muscle cell': {'arcuate artery smooth muscle cell': {},\n",
+ " 'interlobulary artery smooth muscle cell': {'kidney afferent arteriole smooth muscle cell': {}}},\n",
+ " 'kidney arteriole smooth muscle cell': {'kidney afferent arteriole smooth muscle cell': {},\n",
+ " 'kidney efferent arteriole smooth muscle cell': {}},\n",
+ " 'kidney venous system smooth muscle cell': {'arcuate vein smooth muscle cell': {},\n",
+ " 'interlobulary vein smooth muscle cell': {}}}},\n",
+ " 'kidney granular cell': {},\n",
+ " 'enteric smooth muscle cell': {'smooth muscle cell of small intestine': {'smooth muscle fiber of duodenum': {},\n",
+ " 'smooth muscle fiber of jejunum': {},\n",
+ " 'smooth muscle fiber of ileum': {}},\n",
+ " 'smooth muscle cell of large intestine': {'smooth muscle cell of anorectum': {},\n",
+ " 'smooth muscle cell of colon': {'smooth muscle cell of cecum': {},\n",
+ " 'smooth muscle fiber of ascending colon': {},\n",
+ " 'smooth muscle fiber of transverse colon': {},\n",
+ " 'smooth muscle fiber of descending colon': {},\n",
+ " 'smooth muscle cell of sigmoid colon': {}},\n",
+ " 'smooth muscle cell of rectum': {},\n",
+ " 'smooth muscle cell of taenia coli': {},\n",
+ " 'smooth muscle cell of large intestine smooth muscle circular layer': {},\n",
+ " 'smooth muscle cell of large intestine smooth muscle longitudinal layer': {}}},\n",
+ " 'smooth muscle cell of bladder': {},\n",
+ " 'smooth muscle cell of the esophagus': {},\n",
+ " 'uterine smooth muscle cell': {'myometrial cell': {}},\n",
+ " 'smooth muscle cell of placenta': {},\n",
+ " 'tracheobronchial smooth muscle cell': {'bronchial smooth muscle cell': {},\n",
+ " 'smooth muscle cell of trachea': {},\n",
+ " 'bronchiolar smooth muscle cell': {}},\n",
+ " 'ciliary muscle cell': {},\n",
+ " 'smooth muscle cell of prostate': {},\n",
+ " 'kidney pelvis smooth muscle cell': {},\n",
+ " 'ureter smooth muscle cell': {}}},\n",
+ " 'somatic muscle cell': {'somatic muscle myotube': {'insect flight muscle cell': {}},\n",
+ " 'obliquely striated somatic muscle cell': {}},\n",
+ " 'visceral muscle cell': {'smooth muscle cell': {'smooth muscle cell neural crest derived': {},\n",
+ " 'sphincter associated smooth muscle cell': {'smooth muscle cell of sphincter of pupil': {}},\n",
+ " 'vascular associated smooth muscle cell': {'smooth muscle cell of the brain vasculature': {},\n",
+ " 'microcirculation associated smooth muscle cell': {'smooth muscle cell of high endothelial venule of lymph node': {},\n",
+ " 'kidney afferent arteriole smooth muscle cell': {},\n",
+ " 'kidney efferent arteriole smooth muscle cell': {}},\n",
+ " 'lymphatic vessel smooth muscle cell': {},\n",
+ " 'blood vessel smooth muscle cell': {'aortic smooth muscle cell': {},\n",
+ " 'smooth muscle cell of the umbilical vein': {},\n",
+ " 'smooth muscle cell of the brachiocephalic vasculature': {},\n",
+ " 'smooth muscle cell of the pulmonary artery': {},\n",
+ " 'smooth muscle cell of the coronary artery': {},\n",
+ " 'smooth muscle cell of the umbilical artery': {},\n",
+ " 'smooth muscle cell of the subclavian artery': {'smooth muscle cell of the internal thoracic artery': {}},\n",
+ " 'smooth muscle cell of the carotid artery': {},\n",
+ " 'smooth muscle cell of high endothelial venule of lymph node': {},\n",
+ " 'kidney artery smooth muscle cell': {'arcuate artery smooth muscle cell': {},\n",
+ " 'interlobulary artery smooth muscle cell': {'kidney afferent arteriole smooth muscle cell': {}}},\n",
+ " 'kidney arteriole smooth muscle cell': {'kidney afferent arteriole smooth muscle cell': {},\n",
+ " 'kidney efferent arteriole smooth muscle cell': {}},\n",
+ " 'kidney venous system smooth muscle cell': {'arcuate vein smooth muscle cell': {},\n",
+ " 'interlobulary vein smooth muscle cell': {}}}},\n",
+ " 'kidney granular cell': {},\n",
+ " 'enteric smooth muscle cell': {'smooth muscle cell of small intestine': {'smooth muscle fiber of duodenum': {},\n",
+ " 'smooth muscle fiber of jejunum': {},\n",
+ " 'smooth muscle fiber of ileum': {}},\n",
+ " 'smooth muscle cell of large intestine': {'smooth muscle cell of anorectum': {},\n",
+ " 'smooth muscle cell of colon': {'smooth muscle cell of cecum': {},\n",
+ " 'smooth muscle fiber of ascending colon': {},\n",
+ " 'smooth muscle fiber of transverse colon': {},\n",
+ " 'smooth muscle fiber of descending colon': {},\n",
+ " 'smooth muscle cell of sigmoid colon': {}},\n",
+ " 'smooth muscle cell of rectum': {},\n",
+ " 'smooth muscle cell of taenia coli': {},\n",
+ " 'smooth muscle cell of large intestine smooth muscle circular layer': {},\n",
+ " 'smooth muscle cell of large intestine smooth muscle longitudinal layer': {}}},\n",
+ " 'smooth muscle cell of bladder': {},\n",
+ " 'smooth muscle cell of the esophagus': {},\n",
+ " 'uterine smooth muscle cell': {'myometrial cell': {}},\n",
+ " 'smooth muscle cell of placenta': {},\n",
+ " 'tracheobronchial smooth muscle cell': {'bronchial smooth muscle cell': {},\n",
+ " 'smooth muscle cell of trachea': {},\n",
+ " 'bronchiolar smooth muscle cell': {}},\n",
+ " 'ciliary muscle cell': {},\n",
+ " 'smooth muscle cell of prostate': {},\n",
+ " 'kidney pelvis smooth muscle cell': {},\n",
+ " 'ureter smooth muscle cell': {}},\n",
+ " 'striated visceral muscle cell': {'transversely striated visceral muscle cell': {'internodal tract myocyte': {'myocyte of anterior internodal tract': {},\n",
+ " 'myocyte of atrial branch of anterior internodal tract': {},\n",
+ " 'myocyte of atrial septal branch of anterior internodal tract': {},\n",
+ " 'myocyte of middle internodal tract': {},\n",
+ " 'myocyte of posterior internodal tract': {},\n",
+ " 'transitional myocyte of internodal tract': {'transitional myocyte of atrial branch of anterior internodal tract': {},\n",
+ " 'transitional myocyte of anterior internodal tract': {},\n",
+ " 'transitional myocyte of atrial septal branch of anterior internodal tract': {},\n",
+ " 'transitional myocyte of middle internodal tract': {},\n",
+ " 'transitional myocyte of posterior internodal tract': {}},\n",
+ " 'Purkinje myocyte of internodal tract': {}},\n",
+ " 'myocardial endocrine cell of septal division of left branch of atrioventricular bundle': {},\n",
+ " 'myocyte of sinoatrial node': {'cardiac pacemaker cell of sinoatrial node': {},\n",
+ " 'transitional myocyte of sinoatrial node': {}},\n",
+ " 'myocyte of atrioventricular node': {'Purkinje myocyte of atrioventricular node': {}},\n",
+ " 'transitional myocyte of atrioventricular bundle': {'transitional myocyte of left branch of atrioventricular bundle': {'transitional myocyte of anterior division of left branch of atrioventricular bundle': {},\n",
+ " 'transitional myocyte of septal division of left branch of atrioventricular bundle': {},\n",
+ " 'transitional myocyte of posterior division of left branch of atrioventricular bundle': {}},\n",
+ " 'transitional myocyte of right branch of atrioventricular bundle': {},\n",
+ " 'transitional myocyte of atrial part of atrioventricular bundle': {},\n",
+ " 'transitional myocyte of ventricular part of atrioventricular bundle': {}},\n",
+ " 'Purkinje myocyte of atrioventricular bundle': {}}}}},\n",
+ " 'cell of skeletal muscle': {'multi-potent skeletal muscle stem cell': {},\n",
+ " 'skeletal muscle satellite cell': {'skeletal muscle satellite stem cell': {},\n",
+ " 'quiescent skeletal muscle satellite cell': {},\n",
+ " 'activated skeletal muscle satellite cell': {},\n",
+ " 'skeletal muscle satellite myogenic cell': {}},\n",
+ " 'skeletal muscle fiber': {'tongue muscle cell': {},\n",
+ " 'extrafusal muscle fiber': {'slow muscle cell': {'type I muscle cell': {}},\n",
+ " 'fast muscle cell': {'type II muscle cell': {'type IIa muscle cell': {},\n",
+ " 'type IIb muscle cell': {}},\n",
+ " 'white muscle cell': {'type IIb muscle cell': {}}},\n",
+ " 'red muscle cell': {'type I muscle cell': {},\n",
+ " 'type IIa muscle cell': {}},\n",
+ " 'intermediate muscle cell': {}},\n",
+ " 'intrafusal muscle fiber': {'nuclear chain fiber': {},\n",
+ " 'nuclear bag fiber': {'dynamic nuclear bag fiber': {},\n",
+ " 'static nuclear bag fiber': {}}},\n",
+ " 'embryonic skeletal muscle fiber': {},\n",
+ " 'fetal and neonatal skeletal muscle fiber': {}},\n",
+ " 'adult skeletal muscle myoblast': {},\n",
+ " 'skeletal muscle fibroblast': {},\n",
+ " 'skeletal muscle tissue of pectoralis major striated muscle cell': {}},\n",
+ " 'transitional epithelial cell': {'urothelial cell': {'basal cell of urothelium': {},\n",
+ " 'kidney pelvis urothelial cell': {},\n",
+ " 'ureter urothelial cell': {},\n",
+ " 'bladder urothelial cell': {'urothelial cell of trigone of urinary bladder': {}},\n",
+ " 'urethra urothelial cell': {},\n",
+ " 'intermediate cell of urothelium': {},\n",
+ " 'umbrella cell of urothelium': {}}},\n",
+ " 'extraembryonic cell': {'amnioserosal cell': {},\n",
+ " 'trophoblast cell': {'mononuclear cytotrophoblast cell': {},\n",
+ " 'intermediate trophoblast cell': {},\n",
+ " 'anchoring trophoblast': {},\n",
+ " 'trophoblast giant cell': {'primary trophoblast giant cell': {},\n",
+ " 'secondary trophoblast giant cell': {}},\n",
+ " 'spongiotrophoblast cell': {},\n",
+ " 'extravillous trophoblast': {'fused extravillous trophoblast': {}},\n",
+ " 'chorionic trophoblast cell': {'chorionic girdle cell': {}},\n",
+ " 'placental villous trophoblast': {'syncytiotrophoblast cell': {}}},\n",
+ " 'yolk cell': {},\n",
+ " 'amniocyte': {'amniotic stem cell': {}},\n",
+ " 'mesenchymal stem cell of umbilical cord': {\"mesenchymal stem cell of Wharton's jelly\": {}},\n",
+ " 'placental epithelial cell': {'endothelial cell of placenta': {'placental villus capillary endothelial cell': {}}},\n",
+ " 'decidual pericyte': {},\n",
+ " 'trophectodermal cell': {},\n",
+ " 'decidual cell': {},\n",
+ " 'umbilical artery endothelial cell': {},\n",
+ " 'mononuclear cell of umbilical cord': {}},\n",
+ " 'Caenorhabditis hypodermal cell': {},\n",
+ " 'arcade cell': {},\n",
+ " 'syncytial epithelial cell': {},\n",
+ " 'follicular epithelial cell': {'follicle cell of egg chamber': {'border follicle cell': {},\n",
+ " 'centripetally migrating follicle cell': {},\n",
+ " 'interfollicle cell': {}},\n",
+ " 'eggshell secreting cell': {},\n",
+ " 'follicular cell of ovary': {'granulosa cell': {},\n",
+ " 'cumulus cell': {'corona radiata cell': {}},\n",
+ " 'primary follicular cell of ovary': {},\n",
+ " 'secondary follicular cell of ovary': {}}},\n",
+ " 'melanoblast': {},\n",
+ " 'fenestrated cell': {'glomerular endothelial cell': {'glomerular capillary endothelial cell': {}}},\n",
+ " 'muscle precursor cell': {'myoblast': {'smooth muscle myoblast': {},\n",
+ " 'skeletal muscle myoblast': {'slow muscle myoblast': {},\n",
+ " 'fast muscle myoblast': {},\n",
+ " 'adult skeletal muscle myoblast': {}},\n",
+ " 'somatic muscle myoblast': {'fusion competent myoblast': {},\n",
+ " 'muscle founder cell': {}},\n",
+ " 'cardiac myoblast': {'cardioblast (sensu Arthropoda)': {},\n",
+ " 'cardiac muscle myoblast': {}}},\n",
+ " 'adepithelial cell': {},\n",
+ " 'skeletal muscle satellite cell': {'skeletal muscle satellite stem cell': {},\n",
+ " 'quiescent skeletal muscle satellite cell': {},\n",
+ " 'activated skeletal muscle satellite cell': {},\n",
+ " 'skeletal muscle satellite myogenic cell': {}},\n",
+ " 'adaxial cell': {}},\n",
+ " 'somatic stem cell': {'single fate stem cell': {'epithelial fate stem cell': {'stratified epithelial stem cell': {'stratified keratinized epithelial stem cell': {},\n",
+ " 'stratified non keratinized epithelial stem cell': {}},\n",
+ " 'seam cell': {},\n",
+ " 'follicle stem cell (sensu Arthropoda)': {},\n",
+ " 'basal cell': {'basal cell of epidermis': {'limb basal cell of epidermis': {}},\n",
+ " 'respiratory basal cell': {'basal cell of epithelium of trachea': {},\n",
+ " 'basal cell of epithelium of bronchus': {},\n",
+ " 'basal cell of epithelium of terminal bronchiole': {'bronchioalveolar stem cell': {}},\n",
+ " 'basal cell of epithelium of respiratory bronchiole': {'bronchioalveolar stem cell': {}},\n",
+ " 'basal cell of epithelium of lobular bronchiole': {}},\n",
+ " 'epithelial cell of stratum germinativum of esophagus': {},\n",
+ " 'basal cell of urothelium': {},\n",
+ " 'airway submucosal gland duct basal cell': {}},\n",
+ " 'amniotic epithelial stem cell': {}},\n",
+ " 'hair matrix stem cell': {},\n",
+ " 'primitive cardiac myocyte': {},\n",
+ " 'skeletal muscle satellite stem cell': {}},\n",
+ " 'hematopoietic stem cell': {'Kit and Sca1-positive hematopoietic stem cell': {'short term hematopoietic stem cell': {},\n",
+ " 'long term hematopoietic stem cell': {}},\n",
+ " 'CD34-positive, CD38-negative hematopoietic stem cell': {},\n",
+ " 'peripheral blood stem cell': {'cord blood hematopoietic stem cell': {}},\n",
+ " 'gestational hematopoietic stem cell': {'fetal liver hematopoietic progenitor cell': {},\n",
+ " 'yolk sac hematopoietic stem cell': {},\n",
+ " 'placental hematopoietic stem cell': {},\n",
+ " 'AGM hematopoietic stem cell': {},\n",
+ " 'cord blood hematopoietic stem cell': {}}},\n",
+ " 'totipotent stem cell': {'epiblast cell': {}},\n",
+ " 'pluripotent stem cell': {},\n",
+ " 'neuroepithelial stem cell': {},\n",
+ " 'stem cell of epidermis': {'basal cell of epidermis': {'limb basal cell of epidermis': {}}}},\n",
+ " 'leading edge cell': {},\n",
+ " 'vestibular dark cell': {},\n",
+ " 'hematopoietic cell': {'blood cell': {'granulocyte': {'basophil': {'mature basophil': {},\n",
+ " 'immature basophil': {'basophilic myelocyte': {},\n",
+ " 'basophilic metamyelocyte': {},\n",
+ " 'band form basophil': {}}},\n",
+ " 'eosinophil': {'mature eosinophil': {},\n",
+ " 'immature eosinophil': {'eosinophilic myelocyte': {},\n",
+ " 'eosinophilic metamyelocyte': {},\n",
+ " 'band form eosinophil': {'lung parenchyma resident eosinophil': {}}}},\n",
+ " 'neutrophil': {'mature neutrophil': {'band form neutrophil': {},\n",
+ " 'segmented neutrophil of bone marrow': {}},\n",
+ " 'immature neutrophil': {'neutrophilic myelocyte': {},\n",
+ " 'neutrophilic metamyelocyte': {}}}},\n",
+ " 'erythrocyte': {'nucleate erythrocyte': {},\n",
+ " 'enucleate erythrocyte': {'GlyA-positive erythrocyte': {},\n",
+ " 'Ly-76 high positive erythrocyte': {},\n",
+ " 'echinocyte': {},\n",
+ " 'fetal derived definitive erythrocyte': {}}},\n",
+ " 'platelet': {},\n",
+ " 'blood cell (sensu Nematoda and Protostomia)': {'hemocyte (sensu Arthropoda)': {'crystal cell': {'embryonic crystal cell': {},\n",
+ " 'lymph gland crystal cell': {}},\n",
+ " 'plasmatocyte': {'lymph gland plasmatocyte': {},\n",
+ " 'embryonic plasmatocyte': {}},\n",
+ " 'lamellocyte': {},\n",
+ " 'lymph gland hemocyte': {'lymph gland crystal cell': {},\n",
+ " 'lymph gland plasmatocyte': {}},\n",
+ " 'embryonic hemocyte': {'embryonic crystal cell': {},\n",
+ " 'embryonic plasmatocyte': {}}}},\n",
+ " 'peripheral blood mesothelial cell': {}},\n",
+ " 'leukocyte': {'professional antigen presenting cell': {'mature eosinophil': {},\n",
+ " 'macrophage': {'elicited macrophage': {'suppressor macrophage': {'kidney interstitial suppressor macrophage': {}},\n",
+ " 'inflammatory macrophage': {'kidney interstitial inflammatory macrophage': {}},\n",
+ " 'alternatively activated macrophage': {'kidney interstitial alternatively activated macrophage': {}}},\n",
+ " 'tissue-resident macrophage': {'Kupffer cell': {},\n",
+ " 'peritoneal macrophage': {},\n",
+ " 'alveolar macrophage': {'CCL3-positive alveolar macrophage': {},\n",
+ " 'metallothionein-positive alveolar macrophage': {}},\n",
+ " 'mesangial phagocyte': {},\n",
+ " 'thymic macrophage': {'thymic medullary macrophage': {},\n",
+ " 'thymic cortical macrophage': {}},\n",
+ " 'secondary lymphoid organ macrophage': {'lymph node macrophage': {'lymph node subcapsular sinus macrophage': {},\n",
+ " 'lymph node tingible body macrophage': {}},\n",
+ " 'splenic macrophage': {'splenic marginal zone macrophage': {},\n",
+ " 'splenic metallophillic macrophage': {},\n",
+ " 'splenic red pulp macrophage': {},\n",
+ " 'splenic white pulp macrophage': {'splenic tingible body macrophage': {}}},\n",
+ " 'mucosa-associated lymphoid tissue macrophage': {'gut-associated lymphoid tissue macrophage': {'gastrointestinal tract (lamina propria) macrophage': {'gastrointestinal tract (lamina propria) macrophage of small intestine': {},\n",
+ " 'gastrointestinal tract (lamina propria) macrophage of large intestine': {}},\n",
+ " 'tonsillar macrophage': {},\n",
+ " \"Peyer's patch macrophage\": {}},\n",
+ " 'nasal and broncial associated lymphoid tissue macrophage': {}}},\n",
+ " 'central nervous system macrophage': {'microglial cell': {'immature microglial cell': {},\n",
+ " 'mature microglial cell': {}},\n",
+ " 'meningeal macrophage': {},\n",
+ " 'choroid-plexus macrophage': {},\n",
+ " 'perivascular macrophage': {}},\n",
+ " 'melanophage': {},\n",
+ " 'pleural macrophage': {},\n",
+ " 'bone marrow macrophage': {},\n",
+ " 'adipose macrophage': {'F4/80-negative adipose macrophage': {},\n",
+ " 'F4/80-positive adipose macrophage': {}},\n",
+ " 'kidney resident macrophage': {},\n",
+ " 'lung interstitial macrophage': {}},\n",
+ " 'epithelioid macrophage': {},\n",
+ " 'appendix macrophage': {},\n",
+ " 'colon macrophage': {},\n",
+ " 'macrophage of medullary sinus of lymph node': {},\n",
+ " 'anorectum macrophage': {},\n",
+ " 'lung macrophage': {'alveolar macrophage': {'CCL3-positive alveolar macrophage': {},\n",
+ " 'metallothionein-positive alveolar macrophage': {}},\n",
+ " 'lung interstitial macrophage': {}},\n",
+ " 'Hofbauer cell': {}},\n",
+ " 'dendritic cell': {'plasmacytoid dendritic cell': {'thymic plasmacytoid dendritic cell': {},\n",
+ " 'CD11c-low plasmacytoid dendritic cell': {'immature CD11c-low plasmacytoid dendritic cell': {},\n",
+ " 'mature CD11c-low plasmacytoid dendritic cell': {},\n",
+ " 'CD8_alpha-negative plasmacytoid dendritic cell': {},\n",
+ " 'CD8_alpha-positive plasmacytoid dendritic cell': {}},\n",
+ " 'CD11c-negative plasmacytoid dendritic cell': {'immature CD11c-negative plasmacytoid dendritic cell': {},\n",
+ " 'mature CD11c-negative plasmacytoid dendritic cell': {}},\n",
+ " 'plasmacytoid dendritic cell, human': {},\n",
+ " 'CD141-positive myeloid dendritic cell': {}},\n",
+ " 'conventional dendritic cell': {'Langerhans cell': {'CD1a-positive Langerhans cell': {'immature CD1a-positive Langerhans cell': {},\n",
+ " 'mature CD1a-positive Langerhans cell': {}},\n",
+ " 'CD8_alpha-low Langerhans cell': {'immature CD8_alpha-low Langerhans cell': {},\n",
+ " 'mature CD8_alpha-low Langerhans cell': {}},\n",
+ " 'epidermal Langerhans cell': {}},\n",
+ " 'myeloid dendritic cell': {'myeloid dendritic cell, human': {},\n",
+ " 'CD141-positive myeloid dendritic cell': {},\n",
+ " 'CD1c-positive myeloid dendritic cell': {},\n",
+ " 'CD16-positive myeloid dendritic cell': {'immature CD16-positive myeloid dendritic cell': {},\n",
+ " 'mature CD16-positive myeloid dendritic cell': {}},\n",
+ " 'monocyte-derived dendritic cell': {}},\n",
+ " 'immature conventional dendritic cell': {'immature CD8_alpha-negative CD11b-positive dendritic cell': {},\n",
+ " 'immature CD8_alpha-negative CD11b-negative dendritic cell': {},\n",
+ " 'immature CD8_alpha-positive CD11b-negative dendritic cell': {},\n",
+ " 'immature dermal dendritic cell': {'immature CD14-positive dermal dendritic cell': {},\n",
+ " 'immature CD1a-positive dermal dendritic cell': {}},\n",
+ " 'immature interstitial dendritic cell': {},\n",
+ " 'immature CD1a-positive Langerhans cell': {},\n",
+ " 'immature CD8_alpha-low Langerhans cell': {},\n",
+ " 'immature CD16-positive myeloid dendritic cell': {}},\n",
+ " 'mature conventional dendritic cell': {'mature CD8_alpha-negative CD11b-negative dendritic cell': {},\n",
+ " 'mature CD8_alpha-negative CD11b-positive dendritic cell': {},\n",
+ " 'mature CD8_alpha-positive CD11b-negative dendritic cell': {},\n",
+ " 'mature dermal dendritic cell': {'mature CD14-positive dermal dendritic cell': {},\n",
+ " 'mature CD1a-positive dermal dendritic cell': {}},\n",
+ " 'mature interstitial dendritic cell': {},\n",
+ " 'mature CD1a-positive Langerhans cell': {},\n",
+ " 'mature CD8_alpha-low Langerhans cell': {},\n",
+ " 'mature CD16-positive myeloid dendritic cell': {}},\n",
+ " 'thymic conventional dendritic cell': {'CD8alpha-positive thymic conventional dendritic cell': {},\n",
+ " 'CD8alpha-negative thymic conventional dendritic cell': {}},\n",
+ " 'CD8_alpha-negative CD11b-negative dendritic cell': {'immature CD8_alpha-negative CD11b-negative dendritic cell': {},\n",
+ " 'mature CD8_alpha-negative CD11b-negative dendritic cell': {}},\n",
+ " 'CD8_alpha-positive CD11b-negative dendritic cell': {'immature CD8_alpha-positive CD11b-negative dendritic cell': {},\n",
+ " 'mature CD8_alpha-positive CD11b-negative dendritic cell': {}},\n",
+ " 'CD103-positive dendritic cell': {'langerin-positive dermal dendritic cell': {},\n",
+ " 'liver CD103-positive dendritic cell': {},\n",
+ " 'CD103-positive, langerin-positive lymph node dendritic cell': {}},\n",
+ " 'adipose dendritic cell': {'SIRPa-positive adipose dendritic cell': {},\n",
+ " 'SIRPa-negative adipose dendritic cell': {}},\n",
+ " 'CD11b-positive dendritic cell': {'CD4-positive CD11b-positive dendritic cell': {'immature CD8_alpha-negative CD11b-positive dendritic cell': {},\n",
+ " 'mature CD8_alpha-negative CD11b-positive dendritic cell': {}},\n",
+ " 'dermal dendritic cell': {'immature dermal dendritic cell': {'immature CD14-positive dermal dendritic cell': {},\n",
+ " 'immature CD1a-positive dermal dendritic cell': {}},\n",
+ " 'mature dermal dendritic cell': {'mature CD14-positive dermal dendritic cell': {},\n",
+ " 'mature CD1a-positive dermal dendritic cell': {}},\n",
+ " 'langerin-positive dermal dendritic cell': {},\n",
+ " 'langerin-negative dermal dendritic cell': {},\n",
+ " 'CD14-positive dermal dendritic cell': {'immature CD14-positive dermal dendritic cell': {},\n",
+ " 'mature CD14-positive dermal dendritic cell': {}},\n",
+ " 'CD1a-positive dermal dendritic cell': {'immature CD1a-positive dermal dendritic cell': {},\n",
+ " 'mature CD1a-positive dermal dendritic cell': {}}},\n",
+ " 'interstitial dendritic cell': {'immature interstitial dendritic cell': {},\n",
+ " 'mature interstitial dendritic cell': {},\n",
+ " 'kidney resident dendritic cell': {}},\n",
+ " 'Cd4-negative, CD8_alpha-negative, CD11b-positive dendritic cell': {'liver CD103-negative dendritic cell': {},\n",
+ " 'liver CD103-positive dendritic cell': {},\n",
+ " 'CD103-positive, langerin-positive lymph node dendritic cell': {},\n",
+ " 'CD103-negative, langerin-positive lymph node dendritic cell': {},\n",
+ " 'CD11b-low, CD103-negative, langerin-negative lymph node dendritic cell': {},\n",
+ " 'CD11b-high, CD103-negative, langerin-negative lymph node dendritic cell': {}},\n",
+ " 'epidermal Langerhans cell': {},\n",
+ " 'small intestine serosal dendritic cell': {}},\n",
+ " 'langerin-positive lymph node dendritic cell': {'CD103-positive, langerin-positive lymph node dendritic cell': {},\n",
+ " 'CD103-negative, langerin-positive lymph node dendritic cell': {}},\n",
+ " 'langerin-negative, CD103-negative lymph node dendritic cell': {'CD11b-low, CD103-negative, langerin-negative lymph node dendritic cell': {},\n",
+ " 'CD11b-high, CD103-negative, langerin-negative lymph node dendritic cell': {}}},\n",
+ " 'dendritic cell, human': {'myeloid dendritic cell, human': {},\n",
+ " 'plasmacytoid dendritic cell, human': {},\n",
+ " 'Axl+ dendritic cell, human': {}},\n",
+ " 'dendritic cell of appendix': {},\n",
+ " 'liver dendritic cell': {},\n",
+ " 'lung migratory dendritic cell': {}},\n",
+ " 'mature B cell': {'memory B cell': {'unswitched memory B cell': {'CD38-negative unswitched memory B cell': {'B220-positive CD38-negative unswitched memory B cell': {'B220-low CD38-negative unswitched memory B cell': {}}},\n",
+ " 'CD38-positive unswitched memory B cell': {'B220-positive CD38-positive unswitched memory B cell': {'B220-low CD38-positive unswitched memory B cell': {}}}},\n",
+ " 'class switched memory B cell': {'IgE memory B cell': {},\n",
+ " 'IgA memory B cell': {},\n",
+ " 'IgG memory B cell': {'CD38-positive IgG memory B cell': {'IgD-positive CD38-positive IgG memory B cell': {},\n",
+ " 'IgD-negative CD38-positive IgG memory B cell': {}},\n",
+ " 'CD38-negative IgG memory B cell': {}},\n",
+ " 'IgG-negative class switched memory B cell': {'CD38-negative IgG-negative class switched memory B cell': {'CD24-positive CD38-negative IgG-negative class switched memory B cell': {},\n",
+ " 'CD24-negative CD38-negative IgG-negative class switched memory B cell': {}},\n",
+ " 'CD38-positive IgG-negative class switched memory B cell': {'B220-positive CD38-positive IgG-negative class switched memory B cell': {'B220-low CD38-positive IgG-negative class switched memory B cell': {}}}}},\n",
+ " 'IgD-negative memory B cell': {'Bm5 B cell': {},\n",
+ " 'IgM memory B cell': {},\n",
+ " 'double negative memory B cell': {'IgG-positive double negative memory B cell': {},\n",
+ " 'IgG-negative double negative memory B cell': {}},\n",
+ " 'IgD-negative CD38-positive IgG memory B cell': {},\n",
+ " 'CD38-negative IgG memory B cell': {}}},\n",
+ " 'naive B cell': {'CD38-positive naive B cell': {'B220-positive CD38-positive naive B cell': {'B220-low CD38-positive naive B cell': {}}},\n",
+ " 'CD38-negative naive B cell': {}},\n",
+ " 'B-1 B cell': {'B-1a B cell': {}, 'B-1b B cell': {}},\n",
+ " 'B-2 B cell': {'follicular B cell': {'Bm1 B cell': {},\n",
+ " 'Bm2 B cell': {}},\n",
+ " 'fraction F mature B cell': {'Bm1 B cell': {}},\n",
+ " \"Peyer's patch B cell\": {}},\n",
+ " 'germinal center B cell': {'Bm3-delta B cell': {},\n",
+ " \"Bm2' B cell\": {},\n",
+ " 'Bm3 B cell': {},\n",
+ " 'Bm4 B cell': {},\n",
+ " 'centrocyte': {},\n",
+ " 'centroblast': {},\n",
+ " 'tonsil germinal center B cell': {}},\n",
+ " 'marginal zone B cell of spleen': {},\n",
+ " 'Be cell': {'Be1 Cell': {}, 'Be2 cell': {}},\n",
+ " 'regulatory B cell': {},\n",
+ " 'plasmablast': {'IgD plasmablast': {},\n",
+ " 'IgE plasmablast': {},\n",
+ " 'IgG plasmablast': {},\n",
+ " 'IgM plasmablast': {},\n",
+ " 'IgA plasmablast': {},\n",
+ " 'CD86-positive plasmablast': {}},\n",
+ " 'marginal zone B cell of lymph node': {}}},\n",
+ " 'myeloid leukocyte': {'osteoclast': {'odontoclast': {'multinuclear odontoclast': {},\n",
+ " 'mononuclear odontoclast': {}},\n",
+ " 'mononuclear osteoclast': {'mononuclear odontoclast': {}},\n",
+ " 'multinuclear osteoclast': {'multinuclear odontoclast': {}}},\n",
+ " 'granulocyte': {'basophil': {'mature basophil': {},\n",
+ " 'immature basophil': {'basophilic myelocyte': {},\n",
+ " 'basophilic metamyelocyte': {},\n",
+ " 'band form basophil': {}}},\n",
+ " 'eosinophil': {'mature eosinophil': {},\n",
+ " 'immature eosinophil': {'eosinophilic myelocyte': {},\n",
+ " 'eosinophilic metamyelocyte': {},\n",
+ " 'band form eosinophil': {'lung parenchyma resident eosinophil': {}}}},\n",
+ " 'neutrophil': {'mature neutrophil': {'band form neutrophil': {},\n",
+ " 'segmented neutrophil of bone marrow': {}},\n",
+ " 'immature neutrophil': {'neutrophilic myelocyte': {},\n",
+ " 'neutrophilic metamyelocyte': {}}}},\n",
+ " 'mast cell': {'connective tissue type mast cell': {},\n",
+ " 'mucosal type mast cell': {}},\n",
+ " 'macrophage': {'elicited macrophage': {'suppressor macrophage': {'kidney interstitial suppressor macrophage': {}},\n",
+ " 'inflammatory macrophage': {'kidney interstitial inflammatory macrophage': {}},\n",
+ " 'alternatively activated macrophage': {'kidney interstitial alternatively activated macrophage': {}}},\n",
+ " 'tissue-resident macrophage': {'Kupffer cell': {},\n",
+ " 'peritoneal macrophage': {},\n",
+ " 'alveolar macrophage': {'CCL3-positive alveolar macrophage': {},\n",
+ " 'metallothionein-positive alveolar macrophage': {}},\n",
+ " 'mesangial phagocyte': {},\n",
+ " 'thymic macrophage': {'thymic medullary macrophage': {},\n",
+ " 'thymic cortical macrophage': {}},\n",
+ " 'secondary lymphoid organ macrophage': {'lymph node macrophage': {'lymph node subcapsular sinus macrophage': {},\n",
+ " 'lymph node tingible body macrophage': {}},\n",
+ " 'splenic macrophage': {'splenic marginal zone macrophage': {},\n",
+ " 'splenic metallophillic macrophage': {},\n",
+ " 'splenic red pulp macrophage': {},\n",
+ " 'splenic white pulp macrophage': {'splenic tingible body macrophage': {}}},\n",
+ " 'mucosa-associated lymphoid tissue macrophage': {'gut-associated lymphoid tissue macrophage': {'gastrointestinal tract (lamina propria) macrophage': {'gastrointestinal tract (lamina propria) macrophage of small intestine': {},\n",
+ " 'gastrointestinal tract (lamina propria) macrophage of large intestine': {}},\n",
+ " 'tonsillar macrophage': {},\n",
+ " \"Peyer's patch macrophage\": {}},\n",
+ " 'nasal and broncial associated lymphoid tissue macrophage': {}}},\n",
+ " 'central nervous system macrophage': {'microglial cell': {'immature microglial cell': {},\n",
+ " 'mature microglial cell': {}},\n",
+ " 'meningeal macrophage': {},\n",
+ " 'choroid-plexus macrophage': {},\n",
+ " 'perivascular macrophage': {}},\n",
+ " 'melanophage': {},\n",
+ " 'pleural macrophage': {},\n",
+ " 'bone marrow macrophage': {},\n",
+ " 'adipose macrophage': {'F4/80-negative adipose macrophage': {},\n",
+ " 'F4/80-positive adipose macrophage': {}},\n",
+ " 'kidney resident macrophage': {},\n",
+ " 'lung interstitial macrophage': {}},\n",
+ " 'epithelioid macrophage': {},\n",
+ " 'appendix macrophage': {},\n",
+ " 'colon macrophage': {},\n",
+ " 'macrophage of medullary sinus of lymph node': {},\n",
+ " 'anorectum macrophage': {},\n",
+ " 'lung macrophage': {'alveolar macrophage': {'CCL3-positive alveolar macrophage': {},\n",
+ " 'metallothionein-positive alveolar macrophage': {}},\n",
+ " 'lung interstitial macrophage': {}},\n",
+ " 'Hofbauer cell': {}},\n",
+ " 'Langerhans cell': {'CD1a-positive Langerhans cell': {'immature CD1a-positive Langerhans cell': {},\n",
+ " 'mature CD1a-positive Langerhans cell': {}},\n",
+ " 'CD8_alpha-low Langerhans cell': {'immature CD8_alpha-low Langerhans cell': {},\n",
+ " 'mature CD8_alpha-low Langerhans cell': {}},\n",
+ " 'epidermal Langerhans cell': {}},\n",
+ " 'monocyte': {'classical monocyte': {'CD14-positive, CD16-negative classical monocyte': {},\n",
+ " 'Gr1-high classical monocyte': {'MHC-II-negative classical monocyte': {'lymphoid MHC-II-negative classical monocyte': {}},\n",
+ " 'MHC-II-positive classical monocyte': {}}},\n",
+ " 'non-classical monocyte': {'Gr1-low non-classical monocyte': {'MHC-II-negative non-classical monocyte': {'lymphoid MHC-II-negative non-classical monocyte': {}},\n",
+ " 'MHC-II-low non-classical monocyte': {},\n",
+ " 'MHC-II-high non-classical monocyte': {}},\n",
+ " 'CD14-low, CD16-positive monocyte': {}},\n",
+ " 'CD115-positive monocyte': {'Gr1-high classical monocyte': {'MHC-II-negative classical monocyte': {'lymphoid MHC-II-negative classical monocyte': {}},\n",
+ " 'MHC-II-positive classical monocyte': {}},\n",
+ " 'Gr1-positive, CD43-positive monocyte': {'Gr1-low non-classical monocyte': {'MHC-II-negative non-classical monocyte': {'lymphoid MHC-II-negative non-classical monocyte': {}},\n",
+ " 'MHC-II-low non-classical monocyte': {},\n",
+ " 'MHC-II-high non-classical monocyte': {}}}},\n",
+ " 'CD14-positive monocyte': {'CD14-positive, CD16-negative classical monocyte': {},\n",
+ " 'CD14-low, CD16-positive monocyte': {},\n",
+ " 'CD14-positive, CD16-positive monocyte': {'CD14-positive, CD16-low monocyte': {}}},\n",
+ " 'intermediate monocyte': {'CD14-positive, CD16-low monocyte': {},\n",
+ " 'Gr1-positive, CD43-positive monocyte': {'Gr1-low non-classical monocyte': {'MHC-II-negative non-classical monocyte': {'lymphoid MHC-II-negative non-classical monocyte': {}},\n",
+ " 'MHC-II-low non-classical monocyte': {},\n",
+ " 'MHC-II-high non-classical monocyte': {}}}}},\n",
+ " 'multinucleated giant cell': {},\n",
+ " 'myeloid dendritic cell': {'myeloid dendritic cell, human': {},\n",
+ " 'CD141-positive myeloid dendritic cell': {},\n",
+ " 'CD1c-positive myeloid dendritic cell': {},\n",
+ " 'CD16-positive myeloid dendritic cell': {'immature CD16-positive myeloid dendritic cell': {},\n",
+ " 'mature CD16-positive myeloid dendritic cell': {}},\n",
+ " 'monocyte-derived dendritic cell': {}},\n",
+ " 'immature conventional dendritic cell': {'immature CD8_alpha-negative CD11b-positive dendritic cell': {},\n",
+ " 'immature CD8_alpha-negative CD11b-negative dendritic cell': {},\n",
+ " 'immature CD8_alpha-positive CD11b-negative dendritic cell': {},\n",
+ " 'immature dermal dendritic cell': {'immature CD14-positive dermal dendritic cell': {},\n",
+ " 'immature CD1a-positive dermal dendritic cell': {}},\n",
+ " 'immature interstitial dendritic cell': {},\n",
+ " 'immature CD1a-positive Langerhans cell': {},\n",
+ " 'immature CD8_alpha-low Langerhans cell': {},\n",
+ " 'immature CD16-positive myeloid dendritic cell': {}},\n",
+ " 'mature conventional dendritic cell': {'mature CD8_alpha-negative CD11b-negative dendritic cell': {},\n",
+ " 'mature CD8_alpha-negative CD11b-positive dendritic cell': {},\n",
+ " 'mature CD8_alpha-positive CD11b-negative dendritic cell': {},\n",
+ " 'mature dermal dendritic cell': {'mature CD14-positive dermal dendritic cell': {},\n",
+ " 'mature CD1a-positive dermal dendritic cell': {}},\n",
+ " 'mature interstitial dendritic cell': {},\n",
+ " 'mature CD1a-positive Langerhans cell': {},\n",
+ " 'mature CD8_alpha-low Langerhans cell': {},\n",
+ " 'mature CD16-positive myeloid dendritic cell': {}},\n",
+ " 'myeloid suppressor cell': {'Gr1-high myeloid suppressor cell': {},\n",
+ " 'Gr1-low myeloid suppressor cell': {}},\n",
+ " 'immature CD11c-low plasmacytoid dendritic cell': {},\n",
+ " 'mature CD11c-low plasmacytoid dendritic cell': {},\n",
+ " 'CD8_alpha-negative CD11b-negative dendritic cell': {'immature CD8_alpha-negative CD11b-negative dendritic cell': {},\n",
+ " 'mature CD8_alpha-negative CD11b-negative dendritic cell': {}},\n",
+ " 'CD4-positive CD11b-positive dendritic cell': {'immature CD8_alpha-negative CD11b-positive dendritic cell': {},\n",
+ " 'mature CD8_alpha-negative CD11b-positive dendritic cell': {}},\n",
+ " 'CD8_alpha-positive CD11b-negative dendritic cell': {'immature CD8_alpha-positive CD11b-negative dendritic cell': {},\n",
+ " 'mature CD8_alpha-positive CD11b-negative dendritic cell': {}},\n",
+ " 'CD103-positive dendritic cell': {'langerin-positive dermal dendritic cell': {},\n",
+ " 'liver CD103-positive dendritic cell': {},\n",
+ " 'CD103-positive, langerin-positive lymph node dendritic cell': {}},\n",
+ " 'adipose dendritic cell': {'SIRPa-positive adipose dendritic cell': {},\n",
+ " 'SIRPa-negative adipose dendritic cell': {}}},\n",
+ " 'mononuclear cell': {'dendritic cell': {'plasmacytoid dendritic cell': {'thymic plasmacytoid dendritic cell': {},\n",
+ " 'CD11c-low plasmacytoid dendritic cell': {'immature CD11c-low plasmacytoid dendritic cell': {},\n",
+ " 'mature CD11c-low plasmacytoid dendritic cell': {},\n",
+ " 'CD8_alpha-negative plasmacytoid dendritic cell': {},\n",
+ " 'CD8_alpha-positive plasmacytoid dendritic cell': {}},\n",
+ " 'CD11c-negative plasmacytoid dendritic cell': {'immature CD11c-negative plasmacytoid dendritic cell': {},\n",
+ " 'mature CD11c-negative plasmacytoid dendritic cell': {}},\n",
+ " 'plasmacytoid dendritic cell, human': {},\n",
+ " 'CD141-positive myeloid dendritic cell': {}},\n",
+ " 'conventional dendritic cell': {'Langerhans cell': {'CD1a-positive Langerhans cell': {'immature CD1a-positive Langerhans cell': {},\n",
+ " 'mature CD1a-positive Langerhans cell': {}},\n",
+ " 'CD8_alpha-low Langerhans cell': {'immature CD8_alpha-low Langerhans cell': {},\n",
+ " 'mature CD8_alpha-low Langerhans cell': {}},\n",
+ " 'epidermal Langerhans cell': {}},\n",
+ " 'myeloid dendritic cell': {'myeloid dendritic cell, human': {},\n",
+ " 'CD141-positive myeloid dendritic cell': {},\n",
+ " 'CD1c-positive myeloid dendritic cell': {},\n",
+ " 'CD16-positive myeloid dendritic cell': {'immature CD16-positive myeloid dendritic cell': {},\n",
+ " 'mature CD16-positive myeloid dendritic cell': {}},\n",
+ " 'monocyte-derived dendritic cell': {}},\n",
+ " 'immature conventional dendritic cell': {'immature CD8_alpha-negative CD11b-positive dendritic cell': {},\n",
+ " 'immature CD8_alpha-negative CD11b-negative dendritic cell': {},\n",
+ " 'immature CD8_alpha-positive CD11b-negative dendritic cell': {},\n",
+ " 'immature dermal dendritic cell': {'immature CD14-positive dermal dendritic cell': {},\n",
+ " 'immature CD1a-positive dermal dendritic cell': {}},\n",
+ " 'immature interstitial dendritic cell': {},\n",
+ " 'immature CD1a-positive Langerhans cell': {},\n",
+ " 'immature CD8_alpha-low Langerhans cell': {},\n",
+ " 'immature CD16-positive myeloid dendritic cell': {}},\n",
+ " 'mature conventional dendritic cell': {'mature CD8_alpha-negative CD11b-negative dendritic cell': {},\n",
+ " 'mature CD8_alpha-negative CD11b-positive dendritic cell': {},\n",
+ " 'mature CD8_alpha-positive CD11b-negative dendritic cell': {},\n",
+ " 'mature dermal dendritic cell': {'mature CD14-positive dermal dendritic cell': {},\n",
+ " 'mature CD1a-positive dermal dendritic cell': {}},\n",
+ " 'mature interstitial dendritic cell': {},\n",
+ " 'mature CD1a-positive Langerhans cell': {},\n",
+ " 'mature CD8_alpha-low Langerhans cell': {},\n",
+ " 'mature CD16-positive myeloid dendritic cell': {}},\n",
+ " 'thymic conventional dendritic cell': {'CD8alpha-positive thymic conventional dendritic cell': {},\n",
+ " 'CD8alpha-negative thymic conventional dendritic cell': {}},\n",
+ " 'CD8_alpha-negative CD11b-negative dendritic cell': {'immature CD8_alpha-negative CD11b-negative dendritic cell': {},\n",
+ " 'mature CD8_alpha-negative CD11b-negative dendritic cell': {}},\n",
+ " 'CD8_alpha-positive CD11b-negative dendritic cell': {'immature CD8_alpha-positive CD11b-negative dendritic cell': {},\n",
+ " 'mature CD8_alpha-positive CD11b-negative dendritic cell': {}},\n",
+ " 'CD103-positive dendritic cell': {'langerin-positive dermal dendritic cell': {},\n",
+ " 'liver CD103-positive dendritic cell': {},\n",
+ " 'CD103-positive, langerin-positive lymph node dendritic cell': {}},\n",
+ " 'adipose dendritic cell': {'SIRPa-positive adipose dendritic cell': {},\n",
+ " 'SIRPa-negative adipose dendritic cell': {}},\n",
+ " 'CD11b-positive dendritic cell': {'CD4-positive CD11b-positive dendritic cell': {'immature CD8_alpha-negative CD11b-positive dendritic cell': {},\n",
+ " 'mature CD8_alpha-negative CD11b-positive dendritic cell': {}},\n",
+ " 'dermal dendritic cell': {'immature dermal dendritic cell': {'immature CD14-positive dermal dendritic cell': {},\n",
+ " 'immature CD1a-positive dermal dendritic cell': {}},\n",
+ " 'mature dermal dendritic cell': {'mature CD14-positive dermal dendritic cell': {},\n",
+ " 'mature CD1a-positive dermal dendritic cell': {}},\n",
+ " 'langerin-positive dermal dendritic cell': {},\n",
+ " 'langerin-negative dermal dendritic cell': {},\n",
+ " 'CD14-positive dermal dendritic cell': {'immature CD14-positive dermal dendritic cell': {},\n",
+ " 'mature CD14-positive dermal dendritic cell': {}},\n",
+ " 'CD1a-positive dermal dendritic cell': {'immature CD1a-positive dermal dendritic cell': {},\n",
+ " 'mature CD1a-positive dermal dendritic cell': {}}},\n",
+ " 'interstitial dendritic cell': {'immature interstitial dendritic cell': {},\n",
+ " 'mature interstitial dendritic cell': {},\n",
+ " 'kidney resident dendritic cell': {}},\n",
+ " 'Cd4-negative, CD8_alpha-negative, CD11b-positive dendritic cell': {'liver CD103-negative dendritic cell': {},\n",
+ " 'liver CD103-positive dendritic cell': {},\n",
+ " 'CD103-positive, langerin-positive lymph node dendritic cell': {},\n",
+ " 'CD103-negative, langerin-positive lymph node dendritic cell': {},\n",
+ " 'CD11b-low, CD103-negative, langerin-negative lymph node dendritic cell': {},\n",
+ " 'CD11b-high, CD103-negative, langerin-negative lymph node dendritic cell': {}},\n",
+ " 'epidermal Langerhans cell': {},\n",
+ " 'small intestine serosal dendritic cell': {}},\n",
+ " 'langerin-positive lymph node dendritic cell': {'CD103-positive, langerin-positive lymph node dendritic cell': {},\n",
+ " 'CD103-negative, langerin-positive lymph node dendritic cell': {}},\n",
+ " 'langerin-negative, CD103-negative lymph node dendritic cell': {'CD11b-low, CD103-negative, langerin-negative lymph node dendritic cell': {},\n",
+ " 'CD11b-high, CD103-negative, langerin-negative lymph node dendritic cell': {}}},\n",
+ " 'dendritic cell, human': {'myeloid dendritic cell, human': {},\n",
+ " 'plasmacytoid dendritic cell, human': {},\n",
+ " 'Axl+ dendritic cell, human': {}},\n",
+ " 'dendritic cell of appendix': {},\n",
+ " 'liver dendritic cell': {},\n",
+ " 'lung migratory dendritic cell': {}},\n",
+ " 'lymphocyte': {'T cell': {'alpha-beta T cell': {'immature alpha-beta T cell': {'double-positive, alpha-beta thymocyte': {'resting double-positive thymocyte': {},\n",
+ " 'double-positive blast': {},\n",
+ " 'CD69-positive double-positive thymocyte': {},\n",
+ " 'CD4-intermediate, CD8-positive double-positive thymocyte': {},\n",
+ " 'CD4-positive, CD8-intermediate double-positive thymocyte': {}},\n",
+ " 'CD4-positive, alpha-beta thymocyte': {'CD24-positive, CD4 single-positive thymocyte': {},\n",
+ " 'CD69-positive, CD4-positive single-positive thymocyte': {}},\n",
+ " 'CD8-positive, alpha-beta thymocyte': {'CD24-positive, CD8 single-positive thymocyte': {},\n",
+ " 'CD69-positive, CD8-positive single-positive thymocyte': {}},\n",
+ " 'immature NK T cell': {'immature NK T cell stage I': {},\n",
+ " 'immature NK T cell stage II': {},\n",
+ " 'immature NK T cell stage III': {},\n",
+ " 'immature NK T cell stage IV': {}}},\n",
+ " 'mature alpha-beta T cell': {'CD4-positive, alpha-beta T cell': {'CD4-positive helper T cell': {'T-helper 1 cell': {},\n",
+ " 'T-helper 2 cell': {},\n",
+ " 'T-helper 17 cell': {},\n",
+ " 'Tr1 cell': {},\n",
+ " 'T-helper 22 cell': {},\n",
+ " 'T follicular helper cell': {'germinal center T cell': {}},\n",
+ " 'T-helper 9 cell': {}},\n",
+ " 'CD4-positive, CD25-positive, alpha-beta regulatory T cell': {'induced T-regulatory cell': {},\n",
+ " 'natural T-regulatory cell': {},\n",
+ " 'CD4-positive, CD25-positive, CCR4-positive, alpha-beta regulatory T cell': {'naive CCR4-positive regulatory T cell': {},\n",
+ " 'memory CCR4-positive regulatory T cell': {},\n",
+ " 'activated CD4-positive, CD25-positive, CCR4-positive, alpha-beta regulatory T cell, human': {}},\n",
+ " 'naive regulatory T cell': {'naive CCR4-positive regulatory T cell': {}},\n",
+ " 'memory regulatory T cell': {'memory CCR4-positive regulatory T cell': {}}},\n",
+ " 'CD4-positive, alpha-beta intraepithelial T cell': {'CD2-positive, CD5-positive, CD44-positive alpha-beta intraepithelial T cell': {}},\n",
+ " 'naive thymus-derived CD4-positive, alpha-beta T cell': {},\n",
+ " 'activated CD4-positive, alpha-beta T cell': {'activated CD4-positive, alpha-beta T cell, human': {}},\n",
+ " 'CD4-positive, alpha-beta memory T cell': {'effector memory CD4-positive, alpha-beta T cell, terminally differentiated': {},\n",
+ " 'CD4-positive, alpha-beta memory T cell, CD45RO-positive': {'central memory CD4-positive, alpha-beta T cell': {},\n",
+ " 'effector memory CD4-positive, alpha-beta T cell': {}},\n",
+ " 'memory regulatory T cell': {'memory CCR4-positive regulatory T cell': {}},\n",
+ " 'lung resident memory CD4-positive, alpha-beta T cell': {}},\n",
+ " 'CD4-positive, alpha-beta cytotoxic T cell': {},\n",
+ " 'effector CD4-positive, alpha-beta T cell': {},\n",
+ " 'CD4-positive, CXCR3-negative, CCR6-negative, alpha-beta T cell': {'T-helper 2 cell': {}},\n",
+ " 'mature CD4 single-positive thymocyte': {}},\n",
+ " 'CD8-positive, alpha-beta T cell': {'CD8-positive, alpha-beta cytotoxic T cell': {},\n",
+ " 'CD8-positive, alpha-beta regulatory T cell': {'CD8-positive, CD25-positive, alpha-beta regulatory T cell': {},\n",
+ " 'CD8-positive, CD28-negative, alpha-beta regulatory T cell': {},\n",
+ " 'CD8-positive, CXCR3-positive, alpha-beta regulatory T cell': {}},\n",
+ " 'naive thymus-derived CD8-positive, alpha-beta T cell': {},\n",
+ " 'activated CD8-positive, alpha-beta T cell': {'activated CD8-positive, alpha-beta T cell, human': {}},\n",
+ " 'CD8-positive, alpha-beta cytokine secreting effector T cell': {'Tc1 cell': {},\n",
+ " 'Tc2 cell': {},\n",
+ " 'Tc17 cell': {}},\n",
+ " 'CD8-positive, alpha-beta memory T cell': {'effector memory CD8-positive, alpha-beta T cell, terminally differentiated': {},\n",
+ " 'CD8-positive, alpha-beta memory T cell, CD45RO-positive': {'central memory CD8-positive, alpha-beta T cell': {},\n",
+ " 'effector memory CD8-positive, alpha-beta T cell': {}},\n",
+ " 'lung resident memory CD8-positive, alpha-beta T cell': {'lung resident memory CD8-positive, CD103-positive, alpha-beta T cell': {}}},\n",
+ " 'effector CD8-positive, alpha-beta T cell': {},\n",
+ " 'CD8-positive, CXCR3-negative, CCR6-negative, alpha-beta T cell': {'Tc2 cell': {}},\n",
+ " 'mature CD8 single-positive thymocyte': {}},\n",
+ " 'alpha-beta intraepithelial T cell': {'CD4-positive, alpha-beta intraepithelial T cell': {'CD2-positive, CD5-positive, CD44-positive alpha-beta intraepithelial T cell': {}},\n",
+ " 'CD8-alpha-beta-positive, alpha-beta intraepithelial T cell': {},\n",
+ " 'CD8-alpha-alpha-positive, alpha-beta intraepithelial T cell': {},\n",
+ " 'CD4-negative, CD8-negative, alpha-beta intraepithelial T cell': {}},\n",
+ " 'mature NK T cell': {'type I NK T cell': {'CD4-positive type I NK T cell': {'activated CD4-positive type I NK T cell': {},\n",
+ " 'CD4-positive type I NK T cell secreting interferon-gamma': {},\n",
+ " 'CD4-positive type I NK T cell secreting interleukin-4': {}},\n",
+ " 'CD4-negative, CD8-negative type I NK T cell': {'activated CD4-negative, CD8-negative type I NK T cell': {},\n",
+ " 'CD4-negative, CD8-negative type I NK T cell secreting interferon-gamma': {},\n",
+ " 'CD4-negative, CD8-negative type I NK T cell secreting interleukin-4': {}}},\n",
+ " 'type II NK T cell': {'activated type II NK T cell': {},\n",
+ " 'type II NK T cell secreting interferon-gamma': {},\n",
+ " 'type II NK T cell secreting interleukin-4': {}}},\n",
+ " 'mucosal invariant T cell': {},\n",
+ " 'effector memory CD45RA-positive, alpha-beta T cell, terminally differentiated': {'effector memory CD8-positive, alpha-beta T cell, terminally differentiated': {},\n",
+ " 'effector memory CD4-positive, alpha-beta T cell, terminally differentiated': {}}}},\n",
+ " 'gamma-delta T cell': {'immature gamma-delta T cell': {'CD25-positive, CD27-positive immature gamma-delta T cell': {}},\n",
+ " 'mature gamma-delta T cell': {'gamma-delta intraepithelial T cell': {'CD8-alpha alpha positive, gamma-delta intraepithelial T cell': {'Vgamma5-positive CD8alpha alpha positive gamma-delta intraepithelial T cell': {},\n",
+ " 'Vgamma5-negative CD8alpha alpha positive gamma-delta intraepithelial T cell': {}},\n",
+ " 'CD4-negative CD8-negative gamma-delta intraepithelial T cell': {}},\n",
+ " 'dendritic epidermal T cell': {},\n",
+ " 'CD27-positive gamma-delta T cell': {},\n",
+ " 'CD27-negative gamma-delta T cell': {}},\n",
+ " 'gamma-delta thymocyte': {'immature Vgamma2-positive thymocyte': {},\n",
+ " 'mature Vgamma2-positive thymocyte': {},\n",
+ " 'immature Vgamma2-negative thymocyte': {},\n",
+ " 'mature Vgamma2-negative thymocyte': {},\n",
+ " 'Vgamma1.1-positive, Vdelta6.3-negative thymocyte': {'mature Vgamma1.1-positive, Vdelta6.3-negative thymocyte': {},\n",
+ " 'immature Vgamma1.1-positive, Vdelta6.3-negative thymocyte': {}},\n",
+ " 'Vgamma1.1-positive, Vdelta6.3-positive thymocyte': {'immature Vgamma1.1-positive, Vdelta6.3-positive thymocyte': {},\n",
+ " 'mature Vgamma1.1-positive, Vdelta6.3-positive thymocyte': {}}}},\n",
+ " 'mature T cell': {'mature alpha-beta T cell': {'CD4-positive, alpha-beta T cell': {'CD4-positive helper T cell': {'T-helper 1 cell': {},\n",
+ " 'T-helper 2 cell': {},\n",
+ " 'T-helper 17 cell': {},\n",
+ " 'Tr1 cell': {},\n",
+ " 'T-helper 22 cell': {},\n",
+ " 'T follicular helper cell': {'germinal center T cell': {}},\n",
+ " 'T-helper 9 cell': {}},\n",
+ " 'CD4-positive, CD25-positive, alpha-beta regulatory T cell': {'induced T-regulatory cell': {},\n",
+ " 'natural T-regulatory cell': {},\n",
+ " 'CD4-positive, CD25-positive, CCR4-positive, alpha-beta regulatory T cell': {'naive CCR4-positive regulatory T cell': {},\n",
+ " 'memory CCR4-positive regulatory T cell': {},\n",
+ " 'activated CD4-positive, CD25-positive, CCR4-positive, alpha-beta regulatory T cell, human': {}},\n",
+ " 'naive regulatory T cell': {'naive CCR4-positive regulatory T cell': {}},\n",
+ " 'memory regulatory T cell': {'memory CCR4-positive regulatory T cell': {}}},\n",
+ " 'CD4-positive, alpha-beta intraepithelial T cell': {'CD2-positive, CD5-positive, CD44-positive alpha-beta intraepithelial T cell': {}},\n",
+ " 'naive thymus-derived CD4-positive, alpha-beta T cell': {},\n",
+ " 'activated CD4-positive, alpha-beta T cell': {'activated CD4-positive, alpha-beta T cell, human': {}},\n",
+ " 'CD4-positive, alpha-beta memory T cell': {'effector memory CD4-positive, alpha-beta T cell, terminally differentiated': {},\n",
+ " 'CD4-positive, alpha-beta memory T cell, CD45RO-positive': {'central memory CD4-positive, alpha-beta T cell': {},\n",
+ " 'effector memory CD4-positive, alpha-beta T cell': {}},\n",
+ " 'memory regulatory T cell': {'memory CCR4-positive regulatory T cell': {}},\n",
+ " 'lung resident memory CD4-positive, alpha-beta T cell': {}},\n",
+ " 'CD4-positive, alpha-beta cytotoxic T cell': {},\n",
+ " 'effector CD4-positive, alpha-beta T cell': {},\n",
+ " 'CD4-positive, CXCR3-negative, CCR6-negative, alpha-beta T cell': {'T-helper 2 cell': {}},\n",
+ " 'mature CD4 single-positive thymocyte': {}},\n",
+ " 'CD8-positive, alpha-beta T cell': {'CD8-positive, alpha-beta cytotoxic T cell': {},\n",
+ " 'CD8-positive, alpha-beta regulatory T cell': {'CD8-positive, CD25-positive, alpha-beta regulatory T cell': {},\n",
+ " 'CD8-positive, CD28-negative, alpha-beta regulatory T cell': {},\n",
+ " 'CD8-positive, CXCR3-positive, alpha-beta regulatory T cell': {}},\n",
+ " 'naive thymus-derived CD8-positive, alpha-beta T cell': {},\n",
+ " 'activated CD8-positive, alpha-beta T cell': {'activated CD8-positive, alpha-beta T cell, human': {}},\n",
+ " 'CD8-positive, alpha-beta cytokine secreting effector T cell': {'Tc1 cell': {},\n",
+ " 'Tc2 cell': {},\n",
+ " 'Tc17 cell': {}},\n",
+ " 'CD8-positive, alpha-beta memory T cell': {'effector memory CD8-positive, alpha-beta T cell, terminally differentiated': {},\n",
+ " 'CD8-positive, alpha-beta memory T cell, CD45RO-positive': {'central memory CD8-positive, alpha-beta T cell': {},\n",
+ " 'effector memory CD8-positive, alpha-beta T cell': {}},\n",
+ " 'lung resident memory CD8-positive, alpha-beta T cell': {'lung resident memory CD8-positive, CD103-positive, alpha-beta T cell': {}}},\n",
+ " 'effector CD8-positive, alpha-beta T cell': {},\n",
+ " 'CD8-positive, CXCR3-negative, CCR6-negative, alpha-beta T cell': {'Tc2 cell': {}},\n",
+ " 'mature CD8 single-positive thymocyte': {}},\n",
+ " 'alpha-beta intraepithelial T cell': {'CD4-positive, alpha-beta intraepithelial T cell': {'CD2-positive, CD5-positive, CD44-positive alpha-beta intraepithelial T cell': {}},\n",
+ " 'CD8-alpha-beta-positive, alpha-beta intraepithelial T cell': {},\n",
+ " 'CD8-alpha-alpha-positive, alpha-beta intraepithelial T cell': {},\n",
+ " 'CD4-negative, CD8-negative, alpha-beta intraepithelial T cell': {}},\n",
+ " 'mature NK T cell': {'type I NK T cell': {'CD4-positive type I NK T cell': {'activated CD4-positive type I NK T cell': {},\n",
+ " 'CD4-positive type I NK T cell secreting interferon-gamma': {},\n",
+ " 'CD4-positive type I NK T cell secreting interleukin-4': {}},\n",
+ " 'CD4-negative, CD8-negative type I NK T cell': {'activated CD4-negative, CD8-negative type I NK T cell': {},\n",
+ " 'CD4-negative, CD8-negative type I NK T cell secreting interferon-gamma': {},\n",
+ " 'CD4-negative, CD8-negative type I NK T cell secreting interleukin-4': {}}},\n",
+ " 'type II NK T cell': {'activated type II NK T cell': {},\n",
+ " 'type II NK T cell secreting interferon-gamma': {},\n",
+ " 'type II NK T cell secreting interleukin-4': {}}},\n",
+ " 'mucosal invariant T cell': {},\n",
+ " 'effector memory CD45RA-positive, alpha-beta T cell, terminally differentiated': {'effector memory CD8-positive, alpha-beta T cell, terminally differentiated': {},\n",
+ " 'effector memory CD4-positive, alpha-beta T cell, terminally differentiated': {}}},\n",
+ " 'mature gamma-delta T cell': {'gamma-delta intraepithelial T cell': {'CD8-alpha alpha positive, gamma-delta intraepithelial T cell': {'Vgamma5-positive CD8alpha alpha positive gamma-delta intraepithelial T cell': {},\n",
+ " 'Vgamma5-negative CD8alpha alpha positive gamma-delta intraepithelial T cell': {}},\n",
+ " 'CD4-negative CD8-negative gamma-delta intraepithelial T cell': {}},\n",
+ " 'dendritic epidermal T cell': {},\n",
+ " 'CD27-positive gamma-delta T cell': {},\n",
+ " 'CD27-negative gamma-delta T cell': {}},\n",
+ " 'memory T cell': {'CD4-positive, alpha-beta memory T cell': {'effector memory CD4-positive, alpha-beta T cell, terminally differentiated': {},\n",
+ " 'CD4-positive, alpha-beta memory T cell, CD45RO-positive': {'central memory CD4-positive, alpha-beta T cell': {},\n",
+ " 'effector memory CD4-positive, alpha-beta T cell': {}},\n",
+ " 'memory regulatory T cell': {'memory CCR4-positive regulatory T cell': {}},\n",
+ " 'lung resident memory CD4-positive, alpha-beta T cell': {}},\n",
+ " 'CD8-positive, alpha-beta memory T cell': {'effector memory CD8-positive, alpha-beta T cell, terminally differentiated': {},\n",
+ " 'CD8-positive, alpha-beta memory T cell, CD45RO-positive': {'central memory CD8-positive, alpha-beta T cell': {},\n",
+ " 'effector memory CD8-positive, alpha-beta T cell': {}},\n",
+ " 'lung resident memory CD8-positive, alpha-beta T cell': {'lung resident memory CD8-positive, CD103-positive, alpha-beta T cell': {}}}},\n",
+ " 'regulatory T cell': {'CD4-positive, CD25-positive, alpha-beta regulatory T cell': {'induced T-regulatory cell': {},\n",
+ " 'natural T-regulatory cell': {},\n",
+ " 'CD4-positive, CD25-positive, CCR4-positive, alpha-beta regulatory T cell': {'naive CCR4-positive regulatory T cell': {},\n",
+ " 'memory CCR4-positive regulatory T cell': {},\n",
+ " 'activated CD4-positive, CD25-positive, CCR4-positive, alpha-beta regulatory T cell, human': {}},\n",
+ " 'naive regulatory T cell': {'naive CCR4-positive regulatory T cell': {}},\n",
+ " 'memory regulatory T cell': {'memory CCR4-positive regulatory T cell': {}}},\n",
+ " 'CD8-positive, alpha-beta regulatory T cell': {'CD8-positive, CD25-positive, alpha-beta regulatory T cell': {},\n",
+ " 'CD8-positive, CD28-negative, alpha-beta regulatory T cell': {},\n",
+ " 'CD8-positive, CXCR3-positive, alpha-beta regulatory T cell': {}},\n",
+ " 'Tr1 cell': {},\n",
+ " 'T follicular regulatory cell': {}},\n",
+ " 'naive T cell': {'naive thymus-derived CD4-positive, alpha-beta T cell': {},\n",
+ " 'naive thymus-derived CD8-positive, alpha-beta T cell': {},\n",
+ " 'naive regulatory T cell': {'naive CCR4-positive regulatory T cell': {}}},\n",
+ " 'effector T cell': {'cytotoxic T cell': {},\n",
+ " 'helper T cell': {},\n",
+ " 'effector CD4-positive, alpha-beta T cell': {},\n",
+ " 'effector CD8-positive, alpha-beta T cell': {},\n",
+ " 'innate effector T cell': {},\n",
+ " 'exhausted T cell': {}},\n",
+ " 'intraepithelial lymphocyte': {'alpha-beta intraepithelial T cell': {'CD4-positive, alpha-beta intraepithelial T cell': {'CD2-positive, CD5-positive, CD44-positive alpha-beta intraepithelial T cell': {}},\n",
+ " 'CD8-alpha-beta-positive, alpha-beta intraepithelial T cell': {},\n",
+ " 'CD8-alpha-alpha-positive, alpha-beta intraepithelial T cell': {},\n",
+ " 'CD4-negative, CD8-negative, alpha-beta intraepithelial T cell': {}},\n",
+ " 'gamma-delta intraepithelial T cell': {'CD8-alpha alpha positive, gamma-delta intraepithelial T cell': {'Vgamma5-positive CD8alpha alpha positive gamma-delta intraepithelial T cell': {},\n",
+ " 'Vgamma5-negative CD8alpha alpha positive gamma-delta intraepithelial T cell': {}},\n",
+ " 'CD4-negative CD8-negative gamma-delta intraepithelial T cell': {}}},\n",
+ " \"small intestine Peyer's patch T cell\": {}},\n",
+ " 'immature T cell': {'immature alpha-beta T cell': {'double-positive, alpha-beta thymocyte': {'resting double-positive thymocyte': {},\n",
+ " 'double-positive blast': {},\n",
+ " 'CD69-positive double-positive thymocyte': {},\n",
+ " 'CD4-intermediate, CD8-positive double-positive thymocyte': {},\n",
+ " 'CD4-positive, CD8-intermediate double-positive thymocyte': {}},\n",
+ " 'CD4-positive, alpha-beta thymocyte': {'CD24-positive, CD4 single-positive thymocyte': {},\n",
+ " 'CD69-positive, CD4-positive single-positive thymocyte': {}},\n",
+ " 'CD8-positive, alpha-beta thymocyte': {'CD24-positive, CD8 single-positive thymocyte': {},\n",
+ " 'CD69-positive, CD8-positive single-positive thymocyte': {}},\n",
+ " 'immature NK T cell': {'immature NK T cell stage I': {},\n",
+ " 'immature NK T cell stage II': {},\n",
+ " 'immature NK T cell stage III': {},\n",
+ " 'immature NK T cell stage IV': {}}},\n",
+ " 'immature gamma-delta T cell': {'CD25-positive, CD27-positive immature gamma-delta T cell': {}},\n",
+ " 'thymocyte': {'immature single positive thymocyte': {},\n",
+ " 'double-positive, alpha-beta thymocyte': {'resting double-positive thymocyte': {},\n",
+ " 'double-positive blast': {},\n",
+ " 'CD69-positive double-positive thymocyte': {},\n",
+ " 'CD4-intermediate, CD8-positive double-positive thymocyte': {},\n",
+ " 'CD4-positive, CD8-intermediate double-positive thymocyte': {}},\n",
+ " 'CD4-positive, alpha-beta thymocyte': {'CD24-positive, CD4 single-positive thymocyte': {},\n",
+ " 'CD69-positive, CD4-positive single-positive thymocyte': {}},\n",
+ " 'CD8-positive, alpha-beta thymocyte': {'CD24-positive, CD8 single-positive thymocyte': {},\n",
+ " 'CD69-positive, CD8-positive single-positive thymocyte': {}},\n",
+ " 'CD25-positive, CD27-positive immature gamma-delta T cell': {},\n",
+ " 'fetal thymocyte': {'immature dendritic epithelial T cell precursor': {},\n",
+ " 'immature Vgamma2-positive fetal thymocyte': {},\n",
+ " 'mature dendritic epithelial T cell precursor': {},\n",
+ " 'mature Vgamma2-positive fetal thymocyte': {}},\n",
+ " 'double negative thymocyte': {'DN2 thymocyte': {'DN2a thymocyte': {},\n",
+ " 'DN2b thymocyte': {}},\n",
+ " 'DN3 thymocyte': {},\n",
+ " 'DN4 thymocyte': {},\n",
+ " 'gamma-delta thymocyte': {'immature Vgamma2-positive thymocyte': {},\n",
+ " 'mature Vgamma2-positive thymocyte': {},\n",
+ " 'immature Vgamma2-negative thymocyte': {},\n",
+ " 'mature Vgamma2-negative thymocyte': {},\n",
+ " 'Vgamma1.1-positive, Vdelta6.3-negative thymocyte': {'mature Vgamma1.1-positive, Vdelta6.3-negative thymocyte': {},\n",
+ " 'immature Vgamma1.1-positive, Vdelta6.3-negative thymocyte': {}},\n",
+ " 'Vgamma1.1-positive, Vdelta6.3-positive thymocyte': {'immature Vgamma1.1-positive, Vdelta6.3-positive thymocyte': {},\n",
+ " 'mature Vgamma1.1-positive, Vdelta6.3-positive thymocyte': {}}},\n",
+ " 'specified double negative thymocyte (Homo sapiens)': {},\n",
+ " 'committed double negative thymocyte (Homo sapiens)': {},\n",
+ " 'rearranging double negative thymocyte (Homo sapiens)': {},\n",
+ " 'double negative T regulatory cell': {}},\n",
+ " 'CD8aa(I) thymocyte': {},\n",
+ " 'CD8aa(II) thymocyte': {}}},\n",
+ " 'T cell of appendix': {},\n",
+ " 'T cell of medullary sinus of lymph node': {},\n",
+ " 'T cell of anorectum': {},\n",
+ " 'lymph node paracortex T cell': {}},\n",
+ " 'lymphocyte of B lineage': {'B cell': {'B cell, CD19-positive': {'mature B cell': {'memory B cell': {'unswitched memory B cell': {'CD38-negative unswitched memory B cell': {'B220-positive CD38-negative unswitched memory B cell': {'B220-low CD38-negative unswitched memory B cell': {}}},\n",
+ " 'CD38-positive unswitched memory B cell': {'B220-positive CD38-positive unswitched memory B cell': {'B220-low CD38-positive unswitched memory B cell': {}}}},\n",
+ " 'class switched memory B cell': {'IgE memory B cell': {},\n",
+ " 'IgA memory B cell': {},\n",
+ " 'IgG memory B cell': {'CD38-positive IgG memory B cell': {'IgD-positive CD38-positive IgG memory B cell': {},\n",
+ " 'IgD-negative CD38-positive IgG memory B cell': {}},\n",
+ " 'CD38-negative IgG memory B cell': {}},\n",
+ " 'IgG-negative class switched memory B cell': {'CD38-negative IgG-negative class switched memory B cell': {'CD24-positive CD38-negative IgG-negative class switched memory B cell': {},\n",
+ " 'CD24-negative CD38-negative IgG-negative class switched memory B cell': {}},\n",
+ " 'CD38-positive IgG-negative class switched memory B cell': {'B220-positive CD38-positive IgG-negative class switched memory B cell': {'B220-low CD38-positive IgG-negative class switched memory B cell': {}}}}},\n",
+ " 'IgD-negative memory B cell': {'Bm5 B cell': {},\n",
+ " 'IgM memory B cell': {},\n",
+ " 'double negative memory B cell': {'IgG-positive double negative memory B cell': {},\n",
+ " 'IgG-negative double negative memory B cell': {}},\n",
+ " 'IgD-negative CD38-positive IgG memory B cell': {},\n",
+ " 'CD38-negative IgG memory B cell': {}}},\n",
+ " 'naive B cell': {'CD38-positive naive B cell': {'B220-positive CD38-positive naive B cell': {'B220-low CD38-positive naive B cell': {}}},\n",
+ " 'CD38-negative naive B cell': {}},\n",
+ " 'B-1 B cell': {'B-1a B cell': {}, 'B-1b B cell': {}},\n",
+ " 'B-2 B cell': {'follicular B cell': {'Bm1 B cell': {},\n",
+ " 'Bm2 B cell': {}},\n",
+ " 'fraction F mature B cell': {'Bm1 B cell': {}},\n",
+ " \"Peyer's patch B cell\": {}},\n",
+ " 'germinal center B cell': {'Bm3-delta B cell': {},\n",
+ " \"Bm2' B cell\": {},\n",
+ " 'Bm3 B cell': {},\n",
+ " 'Bm4 B cell': {},\n",
+ " 'centrocyte': {},\n",
+ " 'centroblast': {},\n",
+ " 'tonsil germinal center B cell': {}},\n",
+ " 'marginal zone B cell of spleen': {},\n",
+ " 'Be cell': {'Be1 Cell': {}, 'Be2 cell': {}},\n",
+ " 'regulatory B cell': {},\n",
+ " 'plasmablast': {'IgD plasmablast': {},\n",
+ " 'IgE plasmablast': {},\n",
+ " 'IgG plasmablast': {},\n",
+ " 'IgM plasmablast': {},\n",
+ " 'IgA plasmablast': {},\n",
+ " 'CD86-positive plasmablast': {}},\n",
+ " 'marginal zone B cell of lymph node': {}},\n",
+ " 'immature B cell': {'fraction E immature B cell': {},\n",
+ " 'CD38-negative immature B cell': {}},\n",
+ " 'precursor B cell': {'pre-B-II cell': {'small pre-B-II cell': {'CD22-positive, CD38-low small pre-B cell': {}},\n",
+ " 'large pre-B-II cell': {'preBCR-positive large pre-B-II cell': {'CD38-high pre-BCR positive cell': {}},\n",
+ " 'preBCR-negative large pre-B-II cell': {}}},\n",
+ " 'pre-B-I cell': {},\n",
+ " 'late pro-B cell': {},\n",
+ " \"fraction C' precursor B cell\": {},\n",
+ " 'fraction B/C precursor B cell': {'fraction B precursor B cell': {},\n",
+ " 'fraction C precursor B cell': {},\n",
+ " 'fraction D precursor B cell': {}}},\n",
+ " 'transitional stage B cell': {'T1 B cell': {},\n",
+ " 'T2 B cell': {},\n",
+ " 'T3 B cell': {}}},\n",
+ " 'B cell of appendix': {},\n",
+ " 'lymph node mantle zone B cell': {},\n",
+ " 'B cell of medullary sinus of lymph node': {},\n",
+ " 'B cell of anorectum': {},\n",
+ " 'monocytoid B cell': {}},\n",
+ " 'antibody secreting cell': {'plasma cell': {'long lived plasma cell': {'IgE plasma cell': {},\n",
+ " 'IgG plasma cell': {},\n",
+ " 'IgM plasma cell': {},\n",
+ " 'IgA plasma cell': {}},\n",
+ " 'short lived plasma cell': {'IgE short lived plasma cell': {},\n",
+ " 'IgA short lived plasma cell': {},\n",
+ " 'IgG short lived plasma cell': {},\n",
+ " 'IgM short lived plasma cell': {}},\n",
+ " 'plasma cell of appendix': {},\n",
+ " 'plasma cell of medullary sinus of lymph node': {}},\n",
+ " 'plasmablast': {'IgD plasmablast': {},\n",
+ " 'IgE plasmablast': {},\n",
+ " 'IgG plasmablast': {},\n",
+ " 'IgM plasmablast': {},\n",
+ " 'IgA plasmablast': {},\n",
+ " 'CD86-positive plasmablast': {}}},\n",
+ " 'lymphocyte of B lineage, CD19-positive': {'B cell, CD19-positive': {'mature B cell': {'memory B cell': {'unswitched memory B cell': {'CD38-negative unswitched memory B cell': {'B220-positive CD38-negative unswitched memory B cell': {'B220-low CD38-negative unswitched memory B cell': {}}},\n",
+ " 'CD38-positive unswitched memory B cell': {'B220-positive CD38-positive unswitched memory B cell': {'B220-low CD38-positive unswitched memory B cell': {}}}},\n",
+ " 'class switched memory B cell': {'IgE memory B cell': {},\n",
+ " 'IgA memory B cell': {},\n",
+ " 'IgG memory B cell': {'CD38-positive IgG memory B cell': {'IgD-positive CD38-positive IgG memory B cell': {},\n",
+ " 'IgD-negative CD38-positive IgG memory B cell': {}},\n",
+ " 'CD38-negative IgG memory B cell': {}},\n",
+ " 'IgG-negative class switched memory B cell': {'CD38-negative IgG-negative class switched memory B cell': {'CD24-positive CD38-negative IgG-negative class switched memory B cell': {},\n",
+ " 'CD24-negative CD38-negative IgG-negative class switched memory B cell': {}},\n",
+ " 'CD38-positive IgG-negative class switched memory B cell': {'B220-positive CD38-positive IgG-negative class switched memory B cell': {'B220-low CD38-positive IgG-negative class switched memory B cell': {}}}}},\n",
+ " 'IgD-negative memory B cell': {'Bm5 B cell': {},\n",
+ " 'IgM memory B cell': {},\n",
+ " 'double negative memory B cell': {'IgG-positive double negative memory B cell': {},\n",
+ " 'IgG-negative double negative memory B cell': {}},\n",
+ " 'IgD-negative CD38-positive IgG memory B cell': {},\n",
+ " 'CD38-negative IgG memory B cell': {}}},\n",
+ " 'naive B cell': {'CD38-positive naive B cell': {'B220-positive CD38-positive naive B cell': {'B220-low CD38-positive naive B cell': {}}},\n",
+ " 'CD38-negative naive B cell': {}},\n",
+ " 'B-1 B cell': {'B-1a B cell': {}, 'B-1b B cell': {}},\n",
+ " 'B-2 B cell': {'follicular B cell': {'Bm1 B cell': {},\n",
+ " 'Bm2 B cell': {}},\n",
+ " 'fraction F mature B cell': {'Bm1 B cell': {}},\n",
+ " \"Peyer's patch B cell\": {}},\n",
+ " 'germinal center B cell': {'Bm3-delta B cell': {},\n",
+ " \"Bm2' B cell\": {},\n",
+ " 'Bm3 B cell': {},\n",
+ " 'Bm4 B cell': {},\n",
+ " 'centrocyte': {},\n",
+ " 'centroblast': {},\n",
+ " 'tonsil germinal center B cell': {}},\n",
+ " 'marginal zone B cell of spleen': {},\n",
+ " 'Be cell': {'Be1 Cell': {}, 'Be2 cell': {}},\n",
+ " 'regulatory B cell': {},\n",
+ " 'plasmablast': {'IgD plasmablast': {},\n",
+ " 'IgE plasmablast': {},\n",
+ " 'IgG plasmablast': {},\n",
+ " 'IgM plasmablast': {},\n",
+ " 'IgA plasmablast': {},\n",
+ " 'CD86-positive plasmablast': {}},\n",
+ " 'marginal zone B cell of lymph node': {}},\n",
+ " 'immature B cell': {'fraction E immature B cell': {},\n",
+ " 'CD38-negative immature B cell': {}},\n",
+ " 'precursor B cell': {'pre-B-II cell': {'small pre-B-II cell': {'CD22-positive, CD38-low small pre-B cell': {}},\n",
+ " 'large pre-B-II cell': {'preBCR-positive large pre-B-II cell': {'CD38-high pre-BCR positive cell': {}},\n",
+ " 'preBCR-negative large pre-B-II cell': {}}},\n",
+ " 'pre-B-I cell': {},\n",
+ " 'late pro-B cell': {},\n",
+ " \"fraction C' precursor B cell\": {},\n",
+ " 'fraction B/C precursor B cell': {'fraction B precursor B cell': {},\n",
+ " 'fraction C precursor B cell': {},\n",
+ " 'fraction D precursor B cell': {}}},\n",
+ " 'transitional stage B cell': {'T1 B cell': {},\n",
+ " 'T2 B cell': {},\n",
+ " 'T3 B cell': {}}}},\n",
+ " 'B-lymphoblast': {}},\n",
+ " 'innate lymphoid cell': {'group 1 innate lymphoid cell': {'natural killer cell': {'immature natural killer cell': {'CD56-positive, CD161-positive immature natural killer cell, human': {},\n",
+ " 'CD56-negative, CD161-positive immature natural killer cell, human': {},\n",
+ " 'CD27-low, CD11b-low immature natural killer cell, mouse': {},\n",
+ " 'Dx5-negative, NK1.1-positive immature natural killer cell, mouse': {}},\n",
+ " 'mature natural killer cell': {'CD16-negative, CD56-bright natural killer cell, human': {},\n",
+ " 'CD16-positive, CD56-dim natural killer cell, human': {},\n",
+ " 'decidual natural killer cell, human': {},\n",
+ " 'CD27-high, CD11b-high natural killer cell, mouse': {},\n",
+ " 'CD27-low, CD11b-high natural killer cell, mouse': {},\n",
+ " 'CD27-high, CD11b-low natural killer cell, mouse': {},\n",
+ " 'NK1.1-positive natural killer cell, mouse': {'CD11b-positive, CD27-positive natural killer cell, mouse': {},\n",
+ " 'NKGA2-positive natural killer cell, mouse': {},\n",
+ " 'Ly49D-positive natural killer cell, mouse': {},\n",
+ " 'CD94-positive natural killer cell, mouse': {'CD94-positive Ly49CI-positive natural killer cell, mouse': {}},\n",
+ " 'Ly49CI-positive natural killer cell, mouse': {'CD94-positive Ly49CI-positive natural killer cell, mouse': {}},\n",
+ " 'Ly49H-positive natural killer cell, mouse': {},\n",
+ " 'Ly49D-negative natural killer cell, mouse': {},\n",
+ " 'Ly49CI-negative natural killer cell, mouse': {},\n",
+ " 'CD94-negative natural killer cell, mouse': {},\n",
+ " 'Ly49H-negative natural killer cell, mouse': {}}},\n",
+ " 'pre-natural killer cell': {},\n",
+ " 'CD94-negative, Ly49CI-negative natural killer cell, mouse': {},\n",
+ " 'hepatic pit cell': {}},\n",
+ " 'ILC1': {'ILC1, human': {}}},\n",
+ " 'group 2 innate lymphoid cell': {'group 2 innate lymphoid cell, human': {},\n",
+ " 'group 2 innate lymphoid cell, mouse': {}},\n",
+ " 'group 3 innate lymphoid cell': {'group 3 innate lymphoid cell, human': {'NKp44-positive group 3 innate lymphoid cell, human': {},\n",
+ " 'NKp44-negative group 3 innate lymphoid cell, human': {}},\n",
+ " 'lymphoid tissueβinducer cell': {}},\n",
+ " 'immature innate lymphoid cell': {'immature natural killer cell': {'CD56-positive, CD161-positive immature natural killer cell, human': {},\n",
+ " 'CD56-negative, CD161-positive immature natural killer cell, human': {},\n",
+ " 'CD27-low, CD11b-low immature natural killer cell, mouse': {},\n",
+ " 'Dx5-negative, NK1.1-positive immature natural killer cell, mouse': {}},\n",
+ " 'CD34-negative, CD117-positive innate lymphoid cell, human': {'CD34-negative, CD56-positive, CD117-positive innate lymphoid cell, human': {},\n",
+ " 'KLRG1-positive innate lymphoid cell, human': {}},\n",
+ " 'CD34-positive, CD56-positive, CD117-positive common innate lymphoid precursor, human': {'NKp46-positive innate lymphoid cell, human': {}}}},\n",
+ " 'natural helper lymphocyte': {},\n",
+ " \"Peyer's patch lymphocyte\": {\"Peyer's patch B cell\": {},\n",
+ " \"small intestine Peyer's patch T cell\": {}},\n",
+ " 'lymphocyte of large intestine lamina propria': {},\n",
+ " 'lymphocyte of small intestine lamina propria': {},\n",
+ " 'lymphoblast': {'B-lymphoblast': {}},\n",
+ " 'blood lymphocyte': {'peripheral blood lymphocyte': {}}},\n",
+ " 'monocyte': {'classical monocyte': {'CD14-positive, CD16-negative classical monocyte': {},\n",
+ " 'Gr1-high classical monocyte': {'MHC-II-negative classical monocyte': {'lymphoid MHC-II-negative classical monocyte': {}},\n",
+ " 'MHC-II-positive classical monocyte': {}}},\n",
+ " 'non-classical monocyte': {'Gr1-low non-classical monocyte': {'MHC-II-negative non-classical monocyte': {'lymphoid MHC-II-negative non-classical monocyte': {}},\n",
+ " 'MHC-II-low non-classical monocyte': {},\n",
+ " 'MHC-II-high non-classical monocyte': {}},\n",
+ " 'CD14-low, CD16-positive monocyte': {}},\n",
+ " 'CD115-positive monocyte': {'Gr1-high classical monocyte': {'MHC-II-negative classical monocyte': {'lymphoid MHC-II-negative classical monocyte': {}},\n",
+ " 'MHC-II-positive classical monocyte': {}},\n",
+ " 'Gr1-positive, CD43-positive monocyte': {'Gr1-low non-classical monocyte': {'MHC-II-negative non-classical monocyte': {'lymphoid MHC-II-negative non-classical monocyte': {}},\n",
+ " 'MHC-II-low non-classical monocyte': {},\n",
+ " 'MHC-II-high non-classical monocyte': {}}}},\n",
+ " 'CD14-positive monocyte': {'CD14-positive, CD16-negative classical monocyte': {},\n",
+ " 'CD14-low, CD16-positive monocyte': {},\n",
+ " 'CD14-positive, CD16-positive monocyte': {'CD14-positive, CD16-low monocyte': {}}},\n",
+ " 'intermediate monocyte': {'CD14-positive, CD16-low monocyte': {},\n",
+ " 'Gr1-positive, CD43-positive monocyte': {'Gr1-low non-classical monocyte': {'MHC-II-negative non-classical monocyte': {'lymphoid MHC-II-negative non-classical monocyte': {}},\n",
+ " 'MHC-II-low non-classical monocyte': {},\n",
+ " 'MHC-II-high non-classical monocyte': {}}}}},\n",
+ " 'mononuclear osteoclast': {'mononuclear odontoclast': {}},\n",
+ " 'mononuclear cell of bone marrow': {},\n",
+ " 'peripheral blood mononuclear cell': {'blood lymphocyte': {'peripheral blood lymphocyte': {}}},\n",
+ " 'mononuclear cell of umbilical cord': {}},\n",
+ " 'nongranular leukocyte': {'neutrophilic myelocyte': {},\n",
+ " 'eosinophilic myelocyte': {},\n",
+ " 'basophilic myelocyte': {}},\n",
+ " 'splenocyte': {'marginal zone B cell of spleen': {},\n",
+ " 'splenic macrophage': {'splenic marginal zone macrophage': {},\n",
+ " 'splenic metallophillic macrophage': {},\n",
+ " 'splenic red pulp macrophage': {},\n",
+ " 'splenic white pulp macrophage': {'splenic tingible body macrophage': {}}}}},\n",
+ " 'myeloid cell': {'monoblast': {},\n",
+ " 'megakaryocyte-erythroid progenitor cell': {'CD34-positive, CD38-positive megakaryocyte erythroid progenitor cell': {},\n",
+ " 'Kit-positive, CD34-negative megakaryocyte erythroid progenitor cell': {}},\n",
+ " 'platelet': {},\n",
+ " 'megakaryocyte progenitor cell': {'CD34-positive, CD41-positive, CD42-positive megakaryocyte progenitor cell': {},\n",
+ " 'Kit-positive megakaryocyte progenitor cell': {},\n",
+ " 'CD34-positive, CD41-positive, CD42-negative megakaryocyte progenitor cell': {}},\n",
+ " 'megakaryocyte': {'CD34-negative, CD41-positive, CD42-positive megakaryocyte cell': {},\n",
+ " 'CD9-positive, CD41-positive megakaryocyte cell': {},\n",
+ " 'lung megakaryocyte': {}},\n",
+ " 'granulocyte monocyte progenitor cell': {'CD34-positive, CD38-positive granulocyte monocyte progenitor': {},\n",
+ " 'Kit-positive granulocyte monocyte progenitor': {}},\n",
+ " 'promonocyte': {},\n",
+ " 'eosinophil progenitor cell': {'Kit-low, CD34-positive eosinophil progenitor cell': {},\n",
+ " 'CD34-positive, CD38-positive eosinophil progenitor cell': {}},\n",
+ " 'basophil progenitor cell': {'Fc-epsilon RIalpha-high basophil progenitor cell': {}},\n",
+ " 'nucleated thrombocyte': {},\n",
+ " 'erythroid lineage cell': {'erythroid progenitor cell': {'erythroid progenitor cell, mammalian': {'Kit-positive erythroid progenitor cell': {},\n",
+ " 'CD34-positive, GlyA-negative erythroid progenitor cell': {}}},\n",
+ " 'erythrocyte': {'nucleate erythrocyte': {},\n",
+ " 'enucleate erythrocyte': {'GlyA-positive erythrocyte': {},\n",
+ " 'Ly-76 high positive erythrocyte': {},\n",
+ " 'echinocyte': {},\n",
+ " 'fetal derived definitive erythrocyte': {}}},\n",
+ " 'proerythroblast': {'CD34-negative, GlyA-negative proerythroblast': {},\n",
+ " 'Kit-low proerythroblast': {}},\n",
+ " 'reticulocyte': {'nucleated reticulocyte': {},\n",
+ " 'enucleated reticulocyte': {'Ly-76 high reticulocyte': {},\n",
+ " 'GlyA-positive reticulocytes': {}}},\n",
+ " 'erythroblast': {'basophilic erythroblast': {'GlyA-positive basophilic erythroblast': {},\n",
+ " 'Kit-negative, Ly-76 high basophilic erythroblast': {}},\n",
+ " 'polychromatophilic erythroblast': {'Kit-negative, Ly-76 high polychromatophilic erythroblast': {},\n",
+ " 'CD71-low, GlyA-positive polychromatic erythroblast': {}},\n",
+ " 'orthochromatic erythroblast': {'Kit-negative, Ly-76 high orthochromatophilic erythroblasts': {},\n",
+ " 'CD71-negative, GlyA-positive orthochromatic erythroblast': {}}},\n",
+ " 'primitive erythroid lineage cell': {'primitive red blood cell': {},\n",
+ " 'primitive reticulocyte': {},\n",
+ " 'pyrenocyte': {},\n",
+ " 'primitive erythroid progenitor': {}}},\n",
+ " 'myeloid leukocyte': {'osteoclast': {'odontoclast': {'multinuclear odontoclast': {},\n",
+ " 'mononuclear odontoclast': {}},\n",
+ " 'mononuclear osteoclast': {'mononuclear odontoclast': {}},\n",
+ " 'multinuclear osteoclast': {'multinuclear odontoclast': {}}},\n",
+ " 'granulocyte': {'basophil': {'mature basophil': {},\n",
+ " 'immature basophil': {'basophilic myelocyte': {},\n",
+ " 'basophilic metamyelocyte': {},\n",
+ " 'band form basophil': {}}},\n",
+ " 'eosinophil': {'mature eosinophil': {},\n",
+ " 'immature eosinophil': {'eosinophilic myelocyte': {},\n",
+ " 'eosinophilic metamyelocyte': {},\n",
+ " 'band form eosinophil': {'lung parenchyma resident eosinophil': {}}}},\n",
+ " 'neutrophil': {'mature neutrophil': {'band form neutrophil': {},\n",
+ " 'segmented neutrophil of bone marrow': {}},\n",
+ " 'immature neutrophil': {'neutrophilic myelocyte': {},\n",
+ " 'neutrophilic metamyelocyte': {}}}},\n",
+ " 'mast cell': {'connective tissue type mast cell': {},\n",
+ " 'mucosal type mast cell': {}},\n",
+ " 'macrophage': {'elicited macrophage': {'suppressor macrophage': {'kidney interstitial suppressor macrophage': {}},\n",
+ " 'inflammatory macrophage': {'kidney interstitial inflammatory macrophage': {}},\n",
+ " 'alternatively activated macrophage': {'kidney interstitial alternatively activated macrophage': {}}},\n",
+ " 'tissue-resident macrophage': {'Kupffer cell': {},\n",
+ " 'peritoneal macrophage': {},\n",
+ " 'alveolar macrophage': {'CCL3-positive alveolar macrophage': {},\n",
+ " 'metallothionein-positive alveolar macrophage': {}},\n",
+ " 'mesangial phagocyte': {},\n",
+ " 'thymic macrophage': {'thymic medullary macrophage': {},\n",
+ " 'thymic cortical macrophage': {}},\n",
+ " 'secondary lymphoid organ macrophage': {'lymph node macrophage': {'lymph node subcapsular sinus macrophage': {},\n",
+ " 'lymph node tingible body macrophage': {}},\n",
+ " 'splenic macrophage': {'splenic marginal zone macrophage': {},\n",
+ " 'splenic metallophillic macrophage': {},\n",
+ " 'splenic red pulp macrophage': {},\n",
+ " 'splenic white pulp macrophage': {'splenic tingible body macrophage': {}}},\n",
+ " 'mucosa-associated lymphoid tissue macrophage': {'gut-associated lymphoid tissue macrophage': {'gastrointestinal tract (lamina propria) macrophage': {'gastrointestinal tract (lamina propria) macrophage of small intestine': {},\n",
+ " 'gastrointestinal tract (lamina propria) macrophage of large intestine': {}},\n",
+ " 'tonsillar macrophage': {},\n",
+ " \"Peyer's patch macrophage\": {}},\n",
+ " 'nasal and broncial associated lymphoid tissue macrophage': {}}},\n",
+ " 'central nervous system macrophage': {'microglial cell': {'immature microglial cell': {},\n",
+ " 'mature microglial cell': {}},\n",
+ " 'meningeal macrophage': {},\n",
+ " 'choroid-plexus macrophage': {},\n",
+ " 'perivascular macrophage': {}},\n",
+ " 'melanophage': {},\n",
+ " 'pleural macrophage': {},\n",
+ " 'bone marrow macrophage': {},\n",
+ " 'adipose macrophage': {'F4/80-negative adipose macrophage': {},\n",
+ " 'F4/80-positive adipose macrophage': {}},\n",
+ " 'kidney resident macrophage': {},\n",
+ " 'lung interstitial macrophage': {}},\n",
+ " 'epithelioid macrophage': {},\n",
+ " 'appendix macrophage': {},\n",
+ " 'colon macrophage': {},\n",
+ " 'macrophage of medullary sinus of lymph node': {},\n",
+ " 'anorectum macrophage': {},\n",
+ " 'lung macrophage': {'alveolar macrophage': {'CCL3-positive alveolar macrophage': {},\n",
+ " 'metallothionein-positive alveolar macrophage': {}},\n",
+ " 'lung interstitial macrophage': {}},\n",
+ " 'Hofbauer cell': {}},\n",
+ " 'Langerhans cell': {'CD1a-positive Langerhans cell': {'immature CD1a-positive Langerhans cell': {},\n",
+ " 'mature CD1a-positive Langerhans cell': {}},\n",
+ " 'CD8_alpha-low Langerhans cell': {'immature CD8_alpha-low Langerhans cell': {},\n",
+ " 'mature CD8_alpha-low Langerhans cell': {}},\n",
+ " 'epidermal Langerhans cell': {}},\n",
+ " 'monocyte': {'classical monocyte': {'CD14-positive, CD16-negative classical monocyte': {},\n",
+ " 'Gr1-high classical monocyte': {'MHC-II-negative classical monocyte': {'lymphoid MHC-II-negative classical monocyte': {}},\n",
+ " 'MHC-II-positive classical monocyte': {}}},\n",
+ " 'non-classical monocyte': {'Gr1-low non-classical monocyte': {'MHC-II-negative non-classical monocyte': {'lymphoid MHC-II-negative non-classical monocyte': {}},\n",
+ " 'MHC-II-low non-classical monocyte': {},\n",
+ " 'MHC-II-high non-classical monocyte': {}},\n",
+ " 'CD14-low, CD16-positive monocyte': {}},\n",
+ " 'CD115-positive monocyte': {'Gr1-high classical monocyte': {'MHC-II-negative classical monocyte': {'lymphoid MHC-II-negative classical monocyte': {}},\n",
+ " 'MHC-II-positive classical monocyte': {}},\n",
+ " 'Gr1-positive, CD43-positive monocyte': {'Gr1-low non-classical monocyte': {'MHC-II-negative non-classical monocyte': {'lymphoid MHC-II-negative non-classical monocyte': {}},\n",
+ " 'MHC-II-low non-classical monocyte': {},\n",
+ " 'MHC-II-high non-classical monocyte': {}}}},\n",
+ " 'CD14-positive monocyte': {'CD14-positive, CD16-negative classical monocyte': {},\n",
+ " 'CD14-low, CD16-positive monocyte': {},\n",
+ " 'CD14-positive, CD16-positive monocyte': {'CD14-positive, CD16-low monocyte': {}}},\n",
+ " 'intermediate monocyte': {'CD14-positive, CD16-low monocyte': {},\n",
+ " 'Gr1-positive, CD43-positive monocyte': {'Gr1-low non-classical monocyte': {'MHC-II-negative non-classical monocyte': {'lymphoid MHC-II-negative non-classical monocyte': {}},\n",
+ " 'MHC-II-low non-classical monocyte': {},\n",
+ " 'MHC-II-high non-classical monocyte': {}}}}},\n",
+ " 'multinucleated giant cell': {},\n",
+ " 'myeloid dendritic cell': {'myeloid dendritic cell, human': {},\n",
+ " 'CD141-positive myeloid dendritic cell': {},\n",
+ " 'CD1c-positive myeloid dendritic cell': {},\n",
+ " 'CD16-positive myeloid dendritic cell': {'immature CD16-positive myeloid dendritic cell': {},\n",
+ " 'mature CD16-positive myeloid dendritic cell': {}},\n",
+ " 'monocyte-derived dendritic cell': {}},\n",
+ " 'immature conventional dendritic cell': {'immature CD8_alpha-negative CD11b-positive dendritic cell': {},\n",
+ " 'immature CD8_alpha-negative CD11b-negative dendritic cell': {},\n",
+ " 'immature CD8_alpha-positive CD11b-negative dendritic cell': {},\n",
+ " 'immature dermal dendritic cell': {'immature CD14-positive dermal dendritic cell': {},\n",
+ " 'immature CD1a-positive dermal dendritic cell': {}},\n",
+ " 'immature interstitial dendritic cell': {},\n",
+ " 'immature CD1a-positive Langerhans cell': {},\n",
+ " 'immature CD8_alpha-low Langerhans cell': {},\n",
+ " 'immature CD16-positive myeloid dendritic cell': {}},\n",
+ " 'mature conventional dendritic cell': {'mature CD8_alpha-negative CD11b-negative dendritic cell': {},\n",
+ " 'mature CD8_alpha-negative CD11b-positive dendritic cell': {},\n",
+ " 'mature CD8_alpha-positive CD11b-negative dendritic cell': {},\n",
+ " 'mature dermal dendritic cell': {'mature CD14-positive dermal dendritic cell': {},\n",
+ " 'mature CD1a-positive dermal dendritic cell': {}},\n",
+ " 'mature interstitial dendritic cell': {},\n",
+ " 'mature CD1a-positive Langerhans cell': {},\n",
+ " 'mature CD8_alpha-low Langerhans cell': {},\n",
+ " 'mature CD16-positive myeloid dendritic cell': {}},\n",
+ " 'myeloid suppressor cell': {'Gr1-high myeloid suppressor cell': {},\n",
+ " 'Gr1-low myeloid suppressor cell': {}},\n",
+ " 'immature CD11c-low plasmacytoid dendritic cell': {},\n",
+ " 'mature CD11c-low plasmacytoid dendritic cell': {},\n",
+ " 'CD8_alpha-negative CD11b-negative dendritic cell': {'immature CD8_alpha-negative CD11b-negative dendritic cell': {},\n",
+ " 'mature CD8_alpha-negative CD11b-negative dendritic cell': {}},\n",
+ " 'CD4-positive CD11b-positive dendritic cell': {'immature CD8_alpha-negative CD11b-positive dendritic cell': {},\n",
+ " 'mature CD8_alpha-negative CD11b-positive dendritic cell': {}},\n",
+ " 'CD8_alpha-positive CD11b-negative dendritic cell': {'immature CD8_alpha-positive CD11b-negative dendritic cell': {},\n",
+ " 'mature CD8_alpha-positive CD11b-negative dendritic cell': {}},\n",
+ " 'CD103-positive dendritic cell': {'langerin-positive dermal dendritic cell': {},\n",
+ " 'liver CD103-positive dendritic cell': {},\n",
+ " 'CD103-positive, langerin-positive lymph node dendritic cell': {}},\n",
+ " 'adipose dendritic cell': {'SIRPa-positive adipose dendritic cell': {},\n",
+ " 'SIRPa-negative adipose dendritic cell': {}}},\n",
+ " 'thromboblast': {},\n",
+ " 'mast cell progenitor': {'Fc-epsilon RIalpha-low mast cell progenitor': {}},\n",
+ " 'neutrophil progenitor cell': {'neutrophilic myeloblast': {},\n",
+ " 'neutrophilic promyelocyte': {}},\n",
+ " 'myeloblast': {'neutrophilic myeloblast': {},\n",
+ " 'basophilic myeloblast': {},\n",
+ " 'eosinophilic myeloblast': {}},\n",
+ " 'promyelocyte': {'neutrophilic promyelocyte': {},\n",
+ " 'basophilic promyelocyte': {},\n",
+ " 'eosinophilic promyelocyte': {},\n",
+ " 'late promyelocyte': {},\n",
+ " 'early promyelocyte': {}},\n",
+ " 'common dendritic progenitor': {},\n",
+ " 'macrophage dendritic cell progenitor': {'Kit-positive macrophage dendritic cell progenitor': {}},\n",
+ " 'pre-conventional dendritic cell': {},\n",
+ " 'basophil mast progenitor cell': {'Kit-positive, integrin beta7-high basophil mast progenitor cell': {}},\n",
+ " 'metamyelocyte': {'neutrophilic metamyelocyte': {},\n",
+ " 'basophilic metamyelocyte': {},\n",
+ " 'eosinophilic metamyelocyte': {}},\n",
+ " 'myelocyte': {'neutrophilic myelocyte': {},\n",
+ " 'eosinophilic myelocyte': {}}},\n",
+ " 'hematopoietic precursor cell': {'hematopoietic stem cell': {'Kit and Sca1-positive hematopoietic stem cell': {'short term hematopoietic stem cell': {},\n",
+ " 'long term hematopoietic stem cell': {}},\n",
+ " 'CD34-positive, CD38-negative hematopoietic stem cell': {},\n",
+ " 'peripheral blood stem cell': {'cord blood hematopoietic stem cell': {}},\n",
+ " 'gestational hematopoietic stem cell': {'fetal liver hematopoietic progenitor cell': {},\n",
+ " 'yolk sac hematopoietic stem cell': {},\n",
+ " 'placental hematopoietic stem cell': {},\n",
+ " 'AGM hematopoietic stem cell': {},\n",
+ " 'cord blood hematopoietic stem cell': {}}},\n",
+ " 'prohemocyte (sensu Nematoda and Protostomia)': {'procrystal cell': {}},\n",
+ " 'hematopoietic multipotent progenitor cell': {'early lymphoid progenitor': {},\n",
+ " 'Slamf1-negative multipotent progenitor cell': {},\n",
+ " 'Slamf1-positive multipotent progenitor cell': {},\n",
+ " 'CD34-positive, CD38-negative multipotent progenitor cell': {}},\n",
+ " 'hematopoietic lineage restricted progenitor cell': {'lymphoid lineage restricted progenitor cell': {'pro-NK cell': {},\n",
+ " 'pro-B cell': {'fraction A pre-pro B cell': {},\n",
+ " 'early pro-B cell': {}},\n",
+ " 'pro-T cell': {'DN1 thymic pro-T cell': {},\n",
+ " 'early T lineage precursor': {}}},\n",
+ " 'myeloid lineage restricted progenitor cell': {'erythroid progenitor cell': {'erythroid progenitor cell, mammalian': {'Kit-positive erythroid progenitor cell': {},\n",
+ " 'CD34-positive, GlyA-negative erythroid progenitor cell': {}}},\n",
+ " 'megakaryocyte progenitor cell': {'CD34-positive, CD41-positive, CD42-positive megakaryocyte progenitor cell': {},\n",
+ " 'Kit-positive megakaryocyte progenitor cell': {},\n",
+ " 'CD34-positive, CD41-positive, CD42-negative megakaryocyte progenitor cell': {}},\n",
+ " 'thromboblast': {},\n",
+ " 'mast cell progenitor': {'Fc-epsilon RIalpha-low mast cell progenitor': {}},\n",
+ " 'CD115-positive monocyte': {'Gr1-high classical monocyte': {'MHC-II-negative classical monocyte': {'lymphoid MHC-II-negative classical monocyte': {}},\n",
+ " 'MHC-II-positive classical monocyte': {}},\n",
+ " 'Gr1-positive, CD43-positive monocyte': {'Gr1-low non-classical monocyte': {'MHC-II-negative non-classical monocyte': {'lymphoid MHC-II-negative non-classical monocyte': {}},\n",
+ " 'MHC-II-low non-classical monocyte': {},\n",
+ " 'MHC-II-high non-classical monocyte': {}}}},\n",
+ " 'granulocytopoietic cell': {'eosinophil progenitor cell': {'Kit-low, CD34-positive eosinophil progenitor cell': {},\n",
+ " 'CD34-positive, CD38-positive eosinophil progenitor cell': {}},\n",
+ " 'basophil progenitor cell': {'Fc-epsilon RIalpha-high basophil progenitor cell': {}},\n",
+ " 'neutrophil progenitor cell': {'neutrophilic myeloblast': {},\n",
+ " 'neutrophilic promyelocyte': {}},\n",
+ " 'myeloblast': {'neutrophilic myeloblast': {},\n",
+ " 'basophilic myeloblast': {},\n",
+ " 'eosinophilic myeloblast': {}},\n",
+ " 'promyelocyte': {'neutrophilic promyelocyte': {},\n",
+ " 'basophilic promyelocyte': {},\n",
+ " 'eosinophilic promyelocyte': {},\n",
+ " 'late promyelocyte': {},\n",
+ " 'early promyelocyte': {}},\n",
+ " 'basophil mast progenitor cell': {'Kit-positive, integrin beta7-high basophil mast progenitor cell': {}},\n",
+ " 'metamyelocyte': {'neutrophilic metamyelocyte': {},\n",
+ " 'basophilic metamyelocyte': {},\n",
+ " 'eosinophilic metamyelocyte': {}},\n",
+ " 'myelocyte': {'neutrophilic myelocyte': {},\n",
+ " 'eosinophilic myelocyte': {}}},\n",
+ " 'monopoietic cell': {'monoblast': {}, 'promonocyte': {}}},\n",
+ " 'CD115-positive monocyte OR common dendritic progenitor': {'CD115-positive monocyte': {'Gr1-high classical monocyte': {'MHC-II-negative classical monocyte': {'lymphoid MHC-II-negative classical monocyte': {}},\n",
+ " 'MHC-II-positive classical monocyte': {}},\n",
+ " 'Gr1-positive, CD43-positive monocyte': {'Gr1-low non-classical monocyte': {'MHC-II-negative non-classical monocyte': {'lymphoid MHC-II-negative non-classical monocyte': {}},\n",
+ " 'MHC-II-low non-classical monocyte': {},\n",
+ " 'MHC-II-high non-classical monocyte': {}}}},\n",
+ " 'common dendritic progenitor': {}},\n",
+ " 'pre-conventional dendritic cell': {}},\n",
+ " 'hematopoietic oligopotent progenitor cell': {'common myeloid progenitor': {'common myeloid progenitor, CD34-positive': {'Kit-positive, CD34-positive common myeloid progenitor': {},\n",
+ " 'CD34-positive, CD38-positive common myeloid progenitor': {}}},\n",
+ " 'megakaryocyte-erythroid progenitor cell': {'CD34-positive, CD38-positive megakaryocyte erythroid progenitor cell': {},\n",
+ " 'Kit-positive, CD34-negative megakaryocyte erythroid progenitor cell': {}},\n",
+ " 'common lymphoid progenitor': {'CD34-positive, CD38-positive common lymphoid progenitor': {},\n",
+ " 'Kit-positive, Sca1-positive common lymphoid progenitor': {},\n",
+ " 'CD7-negative lymphoid progenitor cell': {},\n",
+ " 'CD7-positive lymphoid progenitor cell': {}},\n",
+ " 'hematopoietic oligopotent progenitor cell, lineage-negative': {'CD34-positive, CD38-positive common myeloid progenitor OR CD34-positive, CD38-positive common lymphoid progenitor': {'CD34-positive, CD38-positive common lymphoid progenitor': {},\n",
+ " 'CD34-positive, CD38-positive common myeloid progenitor': {}},\n",
+ " 'CD7-negative lymphoid progenitor OR granulocyte monocyte progenitor': {'granulocyte monocyte progenitor cell': {'CD34-positive, CD38-positive granulocyte monocyte progenitor': {},\n",
+ " 'Kit-positive granulocyte monocyte progenitor': {}},\n",
+ " 'CD7-negative lymphoid progenitor cell': {}},\n",
+ " 'CD117-positive common myeloid progenitor OR CD217-positive common lymphoid progenitor': {'Kit-positive, CD34-positive common myeloid progenitor': {},\n",
+ " 'Kit-positive, Sca1-positive common lymphoid progenitor': {}}},\n",
+ " 'macrophage dendritic cell progenitor': {'Kit-positive macrophage dendritic cell progenitor': {}}}},\n",
+ " 'bone marrow hematopoietic cell': {'granulocyte monocyte progenitor cell': {'CD34-positive, CD38-positive granulocyte monocyte progenitor': {},\n",
+ " 'Kit-positive granulocyte monocyte progenitor': {}},\n",
+ " 'bone marrow macrophage': {},\n",
+ " 'mononuclear cell of bone marrow': {},\n",
+ " 'segmented neutrophil of bone marrow': {}}},\n",
+ " 'endo-epithelial cell': {'taste receptor cell': {'type III taste bud cell': {},\n",
+ " 'type II taste cell': {},\n",
+ " 'type IV taste receptor cell': {},\n",
+ " 'type V taste receptor cell': {},\n",
+ " 'type I taste bud cell': {},\n",
+ " 'taste receptor cell of tongue': {}},\n",
+ " 'epithelial cell of uterus': {'columnar cell of endocervix': {},\n",
+ " 'squamous cell of ectocervix': {}},\n",
+ " 'internal epithelial cell of tympanic membrane': {},\n",
+ " 'oncocyte': {'oxyphil cell of parathyroid gland': {},\n",
+ " 'oxyphil cell of thyroid': {}},\n",
+ " 'brush cell': {'brush cell of trachebronchial tree': {'brush cell of lobular bronchiole': {},\n",
+ " 'brush cell of terminal bronchiole': {},\n",
+ " 'brush cell of trachea': {},\n",
+ " 'brush cell of bronchus': {'brush cell of epithelium of lobar bronchus': {}}},\n",
+ " 'intestinal tuft cell': {'brush cell of epithelium proper of large intestine': {'tuft cell of appendix': {},\n",
+ " 'tuft cell of colon': {},\n",
+ " 'tuft cell of anorectum': {}},\n",
+ " 'tuft cell of small intestine': {}}},\n",
+ " 'epithelial cell of prostate': {'epithelial cell of prostatic duct': {},\n",
+ " 'epithelial cell of prostatic acinus': {'basal cell of prostatic acinus': {},\n",
+ " 'luminal cell of prostatic acinus': {}},\n",
+ " 'luminal cell of prostate epithelium': {'luminal cell of prostatic acinus': {},\n",
+ " 'luminal epithelial cell of prostatic duct': {}},\n",
+ " 'basal cell of prostate epithelium': {'basal cell of prostatic acinus': {},\n",
+ " 'basal epithelial cell of prostatic duct': {},\n",
+ " 'prostate stem cell': {}}},\n",
+ " 'epithelial cell of alimentary canal': {'type EC enteroendocrine cell': {'type EC2 enteroendocrine cell': {},\n",
+ " 'type EC1 enteroendocrine cell': {},\n",
+ " 'type ECL enteroendocrine cell': {}},\n",
+ " 'M cell of gut': {'microfold cell of epithelium of small intestine': {'microfold cell of epithelium of intestinal villus': {'microfold cell of epithelium proper of duodenum': {}},\n",
+ " 'microfold cell of epithelium proper of small intestine': {},\n",
+ " 'microfold cell of epithelium proper of jejunum': {},\n",
+ " 'microfold cell of epithelium proper of ileum': {}},\n",
+ " 'microfold cell of epithelium proper of large intestine': {'microfold cell of epithelium proper of anorectum': {},\n",
+ " 'microfold cell of epithelium proper of appendix': {}}},\n",
+ " 'epithelial cell of Malassez': {},\n",
+ " 'keratinized cell of the oral mucosa': {},\n",
+ " 'epithelial cell of stomach': {'foveolar cell of stomach': {},\n",
+ " 'glandular cell of stomach': {'peptic cell': {},\n",
+ " 'parietal cell': {},\n",
+ " 'mucous cell of stomach': {'type G enteroendocrine cell': {},\n",
+ " 'mucous neck cell of gastric gland': {},\n",
+ " 'surface mucosal cell of stomach': {},\n",
+ " 'stem cell of gastric gland': {},\n",
+ " 'gastric goblet cell': {'gastric cardiac gland goblet cell': {},\n",
+ " 'principal gastric gland goblet cell': {},\n",
+ " 'pyloric gastric gland goblet cell': {}}},\n",
+ " 'type A cell of stomach': {},\n",
+ " 'type D cell of stomach': {},\n",
+ " 'stomach neuroendocrine cell': {},\n",
+ " 'stomach enteroendocrine cell': {}}},\n",
+ " 'epithelial cell of esophagus': {'keratinized squamous cell of esophagus': {},\n",
+ " 'epithelial cell of stratum corneum of esophageal epithelium': {'nonkeratinized cell of stratum corneum of esophageal epithelium': {}},\n",
+ " 'epithelial cell of stratum spinosum of esophageal epithelium': {},\n",
+ " 'glandular cell of esophagus': {'epithelial cell of esophageal gland proper': {},\n",
+ " 'epithelial cell of esophageal cardiac gland': {}},\n",
+ " 'esophagus non-keratinized squamous epithelial cell': {},\n",
+ " 'ciliated epithelial cell of esophagus': {}},\n",
+ " 'intestinal epithelial cell': {'paneth cell': {'paneth cell of the appendix': {},\n",
+ " 'paneth cell of colon': {},\n",
+ " 'paneth cell of anorectum': {},\n",
+ " 'paneth cell of epithelium of small intestine': {'paneth cell of epithelium proper of small intestine': {},\n",
+ " 'paneth cell of epithelium of crypt of Lieberkuhn of small intestine': {}}},\n",
+ " 'enterocyte': {'enterocyte of epithelium of large intestine': {'enterocyte of epithelium proper of large intestine': {},\n",
+ " 'enterocyte of colon': {}},\n",
+ " 'enterocyte of appendix': {},\n",
+ " 'enterocyte of anorectum': {},\n",
+ " 'vacuolated fetal-type enterocyte': {},\n",
+ " 'lysosome-rich enterocyte': {},\n",
+ " 'enterocyte of epithelium of small intestine': {'enterocyte of epithelium of intestinal villus': {},\n",
+ " 'enterocyte of epithelium of crypt of Lieberkuhn of small intestine': {},\n",
+ " 'enterocyte of epithelium proper of small intestine': {'enterocyte of epithelium proper of duodenum': {},\n",
+ " 'enterocyte of epithelium proper of jejunum': {},\n",
+ " 'enterocyte of epithelium proper of ileum': {}}},\n",
+ " 'enterocyte of epithelium of duodenal gland': {}},\n",
+ " 'intestinal crypt stem cell': {'intestinal crypt stem cell of large intestine': {'intestinal crypt stem cell of appendix': {}},\n",
+ " 'intestinal crypt stem cell of small intestine': {},\n",
+ " 'intestinal crypt stem cell of colon': {},\n",
+ " 'intestinal crypt stem cell of anorectum': {}},\n",
+ " 'epithelial cell of large intestine': {'enterocyte of epithelium of large intestine': {'enterocyte of epithelium proper of large intestine': {},\n",
+ " 'enterocyte of colon': {}},\n",
+ " 'brush cell of epithelium proper of large intestine': {'tuft cell of appendix': {},\n",
+ " 'tuft cell of colon': {},\n",
+ " 'tuft cell of anorectum': {}},\n",
+ " 'epithelial cell of anal column': {'nonkeratinized epithelial cell of anal column': {'nonkeratinized epithelial cell of inferior part of anal canal': {}},\n",
+ " 'keratinized epithelial cell of the anal canal': {},\n",
+ " 'epithelial cell of wall of inferior part of anal canal': {'nonkeratinized epithelial cell of inferior part of anal canal': {}}},\n",
+ " 'glandular cell of the large intestine': {'paneth cell of anorectum': {},\n",
+ " 'enteroendocrine cell of anorectum': {},\n",
+ " 'large intestine goblet cell': {'colon goblet cell': {},\n",
+ " 'anorectum goblet cell': {},\n",
+ " 'large intestine crypt goblet cell': {},\n",
+ " 'appendix goblet cell': {}},\n",
+ " 'appendix glandular cell': {'paneth cell of the appendix': {},\n",
+ " 'enteroendocrine cell of appendix': {},\n",
+ " 'appendix goblet cell': {}},\n",
+ " 'colon glandular cell': {'paneth cell of colon': {},\n",
+ " 'colon goblet cell': {},\n",
+ " 'enteroendocrine cell of colon': {'type D cell of colon': {}}},\n",
+ " 'rectum glandular cell': {}},\n",
+ " 'intestinal crypt stem cell of large intestine': {'intestinal crypt stem cell of appendix': {}},\n",
+ " 'enterocyte of anorectum': {},\n",
+ " 'intestinal crypt stem cell of anorectum': {},\n",
+ " 'stratified squamous epithelial cell of anal canal': {'keratinized epithelial cell of the anal canal': {}},\n",
+ " 'colon epithelial cell': {'mesothelial cell of colon': {},\n",
+ " 'tuft cell of colon': {},\n",
+ " 'intestinal crypt stem cell of colon': {},\n",
+ " 'enterocyte of colon': {},\n",
+ " 'colon endothelial cell': {},\n",
+ " 'colon glandular cell': {'paneth cell of colon': {},\n",
+ " 'colon goblet cell': {},\n",
+ " 'enteroendocrine cell of colon': {'type D cell of colon': {}}}},\n",
+ " 'microfold cell of epithelium proper of large intestine': {'microfold cell of epithelium proper of anorectum': {},\n",
+ " 'microfold cell of epithelium proper of appendix': {}},\n",
+ " 'epithelial cell of appendix': {'tuft cell of appendix': {},\n",
+ " 'enterocyte of appendix': {},\n",
+ " 'intestinal crypt stem cell of appendix': {},\n",
+ " 'mesothelial cell of appendix': {},\n",
+ " 'microfold cell of epithelium proper of appendix': {},\n",
+ " 'appendix glandular cell': {'paneth cell of the appendix': {},\n",
+ " 'enteroendocrine cell of appendix': {},\n",
+ " 'appendix goblet cell': {}}}},\n",
+ " 'epithelial cell of small intestine': {'intestinal crypt stem cell of small intestine': {},\n",
+ " 'mesothelial cell of small intestine': {},\n",
+ " 'vacuolated fetal-type enterocyte': {},\n",
+ " 'tuft cell of small intestine': {},\n",
+ " 'enterocyte of epithelium of small intestine': {'enterocyte of epithelium of intestinal villus': {},\n",
+ " 'enterocyte of epithelium of crypt of Lieberkuhn of small intestine': {},\n",
+ " 'enterocyte of epithelium proper of small intestine': {'enterocyte of epithelium proper of duodenum': {},\n",
+ " 'enterocyte of epithelium proper of jejunum': {},\n",
+ " 'enterocyte of epithelium proper of ileum': {}}},\n",
+ " 'enterocyte of epithelium of duodenal gland': {},\n",
+ " 'microfold cell of epithelium of small intestine': {'microfold cell of epithelium of intestinal villus': {'microfold cell of epithelium proper of duodenum': {}},\n",
+ " 'microfold cell of epithelium proper of small intestine': {},\n",
+ " 'microfold cell of epithelium proper of jejunum': {},\n",
+ " 'microfold cell of epithelium proper of ileum': {}},\n",
+ " \"endothelial cell of Peyer's patch\": {},\n",
+ " 'small intestine glandular cell': {'enteroendocrine cell of small intestine': {'type D cell of small intestine': {},\n",
+ " 'GIP cell': {},\n",
+ " 'type M enteroendocrine cell': {}},\n",
+ " 'paneth cell of epithelium of small intestine': {'paneth cell of epithelium proper of small intestine': {},\n",
+ " 'paneth cell of epithelium of crypt of Lieberkuhn of small intestine': {}},\n",
+ " 'small intestine goblet cell': {'intestinal villus goblet cell': {'duodenal goblet cell': {},\n",
+ " 'jejunal goblet cell': {},\n",
+ " 'ileal goblet cell': {}}},\n",
+ " 'duodenum glandular cell': {'duodenal goblet cell': {}}}},\n",
+ " 'intestine goblet cell': {'large intestine goblet cell': {'colon goblet cell': {},\n",
+ " 'anorectum goblet cell': {},\n",
+ " 'large intestine crypt goblet cell': {},\n",
+ " 'appendix goblet cell': {}},\n",
+ " 'small intestine goblet cell': {'intestinal villus goblet cell': {'duodenal goblet cell': {},\n",
+ " 'jejunal goblet cell': {},\n",
+ " 'ileal goblet cell': {}}}},\n",
+ " 'intestinal tuft cell': {'brush cell of epithelium proper of large intestine': {'tuft cell of appendix': {},\n",
+ " 'tuft cell of colon': {},\n",
+ " 'tuft cell of anorectum': {}},\n",
+ " 'tuft cell of small intestine': {}},\n",
+ " 'intestinal enteroendocrine cell': {'PP cell of intestine': {},\n",
+ " 'enteroendocrine cell of small intestine': {'type D cell of small intestine': {},\n",
+ " 'GIP cell': {},\n",
+ " 'type M enteroendocrine cell': {}},\n",
+ " 'enteroendocrine cell of appendix': {},\n",
+ " 'enteroendocrine cell of colon': {'type D cell of colon': {}},\n",
+ " 'enteroendocrine cell of anorectum': {},\n",
+ " 'neuroendocrine cell of epithelium of crypt of Lieberkuhn': {}}},\n",
+ " 'gingival epithelial cell': {},\n",
+ " 'nasopharyngeal epithelial cell': {},\n",
+ " 'oral mucosa squamous cell': {},\n",
+ " 'tonsil squamous cell': {},\n",
+ " 'salivary gland glandular cell': {'acinar cell of salivary gland': {}},\n",
+ " 'taste receptor cell of tongue': {}},\n",
+ " 'epithelial cell of thyroid gland': {'oxyphil cell of thyroid': {},\n",
+ " 'thyroid follicular cell': {}},\n",
+ " 'epithelial cell of parathyroid gland': {'chief cell of parathyroid gland': {'active chief cell of parathyroid gland': {},\n",
+ " 'dark chief cell of parathyroid gland': {},\n",
+ " 'clear chief cell of parathyroid gland': {},\n",
+ " 'inactive chief cell of parathyoid gland': {},\n",
+ " 'light chief cell of parathyroid gland': {}},\n",
+ " 'oxyphil cell of parathyroid gland': {},\n",
+ " 'transitional cell of parathyroid gland': {}},\n",
+ " 'endothelial cell of viscerocranial mucosa': {'buccal mucosa cell': {'keratinized cell of the oral mucosa': {}},\n",
+ " 'endo-epithelial cell of tympanic part of viscerocranial mucosa': {},\n",
+ " 'endo-epithelial cell of pharyngotympanic part of viscerocranial mucosa': {}},\n",
+ " 'epithelial cell of thymus': {'cortical thymic epithelial cell': {'type-1 epithelial cell of thymus': {},\n",
+ " 'type-4 epithelial cell of thymus': {},\n",
+ " 'type-3 epithelial cell of thymus': {},\n",
+ " 'type-2 epithelial cell of thymus': {},\n",
+ " 'subcapsular thymic epithelial cell': {}},\n",
+ " 'medullary thymic epithelial cell': {'type-6 epithelial cell of thymus': {},\n",
+ " 'type-4 epithelial cell of thymus': {},\n",
+ " 'type-5 epithelial cell of thymus': {},\n",
+ " 'type-7 epithelial cell of thymus': {},\n",
+ " 'medullary thymic epithelial cell type 1': {},\n",
+ " 'medullary thymic epithelial cell type 2': {},\n",
+ " 'medullary thymic epithelial cell type 3': {},\n",
+ " 'medullary thymic epithelial cell type 4': {},\n",
+ " 'myo-medullary thymic epithelial cell': {},\n",
+ " 'neuro-medullary thymic epithelial cell': {}},\n",
+ " 'corticomedullary thymic epithelial cell': {},\n",
+ " 'thymic nurse cell': {}},\n",
+ " 'respiratory epithelial cell': {'epithelial cell of upper respiratory tract': {'nasopharyngeal epithelial cell': {}},\n",
+ " 'epithelial cell of lower respiratory tract': {'epithelial cell of tracheobronchial tree': {'club cell': {},\n",
+ " 'tracheal epithelial cell': {'brush cell of trachea': {},\n",
+ " 'tracheal goblet cell': {},\n",
+ " 'basal cell of epithelium of trachea': {},\n",
+ " 'dense-core granulated cell of epithelium of trachea': {},\n",
+ " 'mucus secreting cell of trachea gland': {},\n",
+ " 'myoepithelial cell of trachea gland': {}},\n",
+ " 'brush cell of trachebronchial tree': {'brush cell of lobular bronchiole': {},\n",
+ " 'brush cell of terminal bronchiole': {},\n",
+ " 'brush cell of trachea': {},\n",
+ " 'brush cell of bronchus': {'brush cell of epithelium of lobar bronchus': {}}},\n",
+ " 'ciliated columnar cell of tracheobronchial tree': {'ciliated cell of the bronchus': {}},\n",
+ " 'intermediate epitheliocyte': {},\n",
+ " 'bronchial epithelial cell': {'brush cell of bronchus': {'brush cell of epithelium of lobar bronchus': {}},\n",
+ " 'undifferentiated cell of bronchus epithelium': {},\n",
+ " 'ciliated cell of the bronchus': {},\n",
+ " 'bronchial goblet cell': {'goblet cell of epithelium of lobar bronchus': {}},\n",
+ " 'basal cell of epithelium of bronchus': {},\n",
+ " 'myoepithelial cell of bronchus submucosal gland': {},\n",
+ " 'neuroendocrine cell of epithelium of lobar bronchus': {},\n",
+ " 'mucus secreting cell of bronchus submucosal gland': {}},\n",
+ " 'basal epithelial cell of tracheobronchial tree': {'basal cell of epithelium of bronchus': {}},\n",
+ " 'tracheobronchial goblet cell': {'bronchial goblet cell': {'goblet cell of epithelium of lobar bronchus': {}},\n",
+ " 'tracheal goblet cell': {}},\n",
+ " 'basal cell of epithelium of terminal bronchiole': {'bronchioalveolar stem cell': {}},\n",
+ " 'basal cell of epithelium of respiratory bronchiole': {'bronchioalveolar stem cell': {}},\n",
+ " 'basal cell of epithelium of lobular bronchiole': {},\n",
+ " 'mucus secreting cell of tracheobronchial tree submucosal gland': {'mucus secreting cell of trachea gland': {},\n",
+ " 'mucus secreting cell of bronchus submucosal gland': {}}}},\n",
+ " 'respiratory basal cell': {'basal cell of epithelium of trachea': {},\n",
+ " 'basal cell of epithelium of bronchus': {},\n",
+ " 'basal cell of epithelium of terminal bronchiole': {'bronchioalveolar stem cell': {}},\n",
+ " 'basal cell of epithelium of respiratory bronchiole': {'bronchioalveolar stem cell': {}},\n",
+ " 'basal cell of epithelium of lobular bronchiole': {}},\n",
+ " 'respiratory hillock cell': {},\n",
+ " 'deuterosomal cell': {},\n",
+ " 'respiratory suprabasal cell': {}}},\n",
+ " 'ecto-epithelial cell': {'ameloblast': {},\n",
+ " 'keratinizing barrier epithelial cell': {'keratinocyte': {'Merkel cell': {},\n",
+ " 'prickle cell': {},\n",
+ " 'basal cell of epidermis': {'limb basal cell of epidermis': {}},\n",
+ " 'granular cell of epidermis': {},\n",
+ " 'squamous cell of epidermis': {},\n",
+ " 'keratinocyte stem cell': {},\n",
+ " 'foreskin keratinocyte': {},\n",
+ " 'hair follicular keratinocyte': {'keratinized cell of hair follicle': {}},\n",
+ " 'suprabasal keratinocyte': {}},\n",
+ " 'keratinized cell of the oral mucosa': {},\n",
+ " 'keratinized squamous cell of esophagus': {},\n",
+ " 'keratinized epithelial cell of the anal canal': {}},\n",
+ " 'neurecto-epithelial cell': {'odontoblast': {'non-terminally differentiated odontoblast': {},\n",
+ " 'terminally differentiated odontoblast': {}},\n",
+ " 'ependymal cell': {'choroid plexus epithelial cell': {}},\n",
+ " 'corneal endothelial cell': {},\n",
+ " 'neuroendocrine cell': {'amine precursor uptake and decarboxylation cell': {'chromaffin cell': {'type EC enteroendocrine cell': {'type EC2 enteroendocrine cell': {},\n",
+ " 'type EC1 enteroendocrine cell': {},\n",
+ " 'type ECL enteroendocrine cell': {}},\n",
+ " 'chromophil cell of anterior pituitary gland': {'acidophil cell of pars distalis of adenohypophysis': {'mammosomatotroph': {},\n",
+ " 'mammotroph': {},\n",
+ " 'somatotroph': {}},\n",
+ " 'basophil cell of pars distalis of adenohypophysis': {'gonadtroph': {},\n",
+ " 'thyrotroph': {},\n",
+ " 'corticotroph': {}}},\n",
+ " 'interrenal chromaffin cell': {'interrenal norepinephrine type cell': {},\n",
+ " 'interrenal epinephrin secreting cell': {}},\n",
+ " 'chromaffin cell of paraganglion': {'chromaffin cell of paraaortic body': {}},\n",
+ " 'chromaffin cell of adrenal gland': {'adrenal medulla chromaffin cell': {'type II cell of adrenal medulla': {},\n",
+ " 'type I cell of adrenal medulla': {}},\n",
+ " 'adrenal cortex chromaffin cell': {}},\n",
+ " 'chromaffin cell of ovary': {'chromaffin cell of right ovary': {},\n",
+ " 'chromaffin cell of left ovary': {}}}},\n",
+ " 'paraganglial type 1 cell': {},\n",
+ " 'Feyrter cell': {'dense-core granulated cell of epithelium of trachea': {}},\n",
+ " 'magnocellular neurosecretory cell': {'oxytocin-secreting magnocellular cell': {},\n",
+ " 'vasopressin-secreting magnocellular cell': {}},\n",
+ " 'gonadotropin-releasing hormone neuron': {},\n",
+ " 'prostate neuroendocrine cell': {},\n",
+ " 'stomach neuroendocrine cell': {},\n",
+ " 'lung neuroendocrine cell': {'neuroendocrine cell of epithelium of lobar bronchus': {}},\n",
+ " 'parvocellular neurosecretory cell': {},\n",
+ " 'neuroendocrine cell of epithelium of crypt of Lieberkuhn': {}},\n",
+ " 'Merkel cell': {},\n",
+ " 'epidermal cell (sensu Arthropoda)': {'tormogen cell': {},\n",
+ " 'trichogen cell': {}},\n",
+ " 'epidermoblast': {},\n",
+ " 'pigmented epithelial cell': {'pigmented ciliary epithelial cell': {}},\n",
+ " 'parafollicular cell': {},\n",
+ " 'pinealocyte': {'type I pinealocyte': {}, 'type II pinealocyte': {}},\n",
+ " 'cerebrospinal fluid secreting cell': {},\n",
+ " 'interstitial cell of Cajal': {},\n",
+ " 'olfactory epithelial cell': {'basal cell of olfactory epithelium': {'olfactory epithelial supporting cell': {},\n",
+ " 'globose cell of olfactory epithelium': {},\n",
+ " 'basal proper cell of olfactory epithelium': {}}},\n",
+ " 'folliculostellate cell of pars distalis of adenohypophysis': {},\n",
+ " 'interstitial cell of pineal gland': {},\n",
+ " 'supporting cell of carotid body': {'type II cell of carotid body': {}},\n",
+ " 'type I cell of carotid body': {},\n",
+ " 'non-pigmented ciliary epithelial cell': {},\n",
+ " 'meningothelial cell': {},\n",
+ " 'strial intermediate cell': {},\n",
+ " 'auditory epithelial supporting cell': {'supporting cell of cochlea': {'Claudius cell': {},\n",
+ " 'Boettcher cell': {},\n",
+ " 'border cell of cochlea': {},\n",
+ " 'interdental cell of cochlea': {},\n",
+ " 'organ of Corti supporting cell': {'Hensen cell': {},\n",
+ " 'phalangeal cell': {\"Deiter's cell\": {},\n",
+ " 'inner phalangeal cell': {}},\n",
+ " 'pillar cell': {'internal pillar cell of cochlea': {},\n",
+ " 'external pillar cell of cochlea': {}}}},\n",
+ " 'supporting cell of vestibular epithelium': {'external supporting cell of vestibular epithelium': {},\n",
+ " 'external limiting cell of vestibular epithelium': {}}},\n",
+ " 'hypendymal cell': {}},\n",
+ " 'general ecto-epithelial cell': {'epidermal cell': {'keratinocyte': {'Merkel cell': {},\n",
+ " 'prickle cell': {},\n",
+ " 'basal cell of epidermis': {'limb basal cell of epidermis': {}},\n",
+ " 'granular cell of epidermis': {},\n",
+ " 'squamous cell of epidermis': {},\n",
+ " 'keratinocyte stem cell': {},\n",
+ " 'foreskin keratinocyte': {},\n",
+ " 'hair follicular keratinocyte': {'keratinized cell of hair follicle': {}},\n",
+ " 'suprabasal keratinocyte': {}},\n",
+ " 'epidermal cell (sensu Arthropoda)': {'tormogen cell': {},\n",
+ " 'trichogen cell': {}},\n",
+ " 'stratum granulosum cell': {},\n",
+ " 'nonkeratinized cell of epidermis': {},\n",
+ " 'inner root sheath cell': {},\n",
+ " 'outer root sheath cell': {},\n",
+ " 'hair germinal matrix cell': {},\n",
+ " 'epithelial cell of sweat gland': {'acinar cell of sebaceous gland': {},\n",
+ " 'dark cell of eccrine sweat gland': {},\n",
+ " 'clear cell of eccrine sweat gland': {},\n",
+ " 'myoepithelial cell of sweat gland': {}}},\n",
+ " 'corneal epithelial cell': {},\n",
+ " 'dental pulp cell': {'odontoblast': {'non-terminally differentiated odontoblast': {},\n",
+ " 'terminally differentiated odontoblast': {}},\n",
+ " 'dental pulp stem cell': {}},\n",
+ " 'external epithelial cell of tympanic membrane': {'basal external epithelial cell of tympanic membrane': {},\n",
+ " 'superficial external epithelial cell of tympanic membrane': {}},\n",
+ " 'epithelial cell of Malassez': {},\n",
+ " 'ecto-epithelial cell of viscerocranial mucosa': {},\n",
+ " 'epithelial cell of skin gland': {'epithelial cell of sweat gland': {'acinar cell of sebaceous gland': {},\n",
+ " 'dark cell of eccrine sweat gland': {},\n",
+ " 'clear cell of eccrine sweat gland': {},\n",
+ " 'myoepithelial cell of sweat gland': {}}},\n",
+ " 'endocrine-paracrine cell of prostate gland': {},\n",
+ " 'mammary alveolar cell': {}}},\n",
+ " 'meso-epithelial cell': {'non-branched duct epithelial cell': {'epithelial cell of prostatic duct': {},\n",
+ " 'epithelial cell of lacrimal duct': {'epithelial cell of nasolacrimal duct': {}},\n",
+ " 'kidney collecting duct epithelial cell': {'kidney collecting duct principal cell': {'kidney cortex collecting duct principal cell': {},\n",
+ " 'kidney outer medulla collecting duct principal cell': {},\n",
+ " 'kidney inner medulla collecting duct principal cell': {},\n",
+ " 'kidney papillary duct principal cell': {}},\n",
+ " 'kidney collecting duct intercalated cell': {'kidney cortex collecting duct intercalated cell': {'kidney collecting duct beta-intercalated cell': {}},\n",
+ " 'kidney outer medulla collecting duct intercalated cell': {},\n",
+ " 'kidney inner medulla collecting duct intercalated cell': {},\n",
+ " 'kidney papillary duct intercalated cell': {},\n",
+ " 'kidney collecting duct alpha-intercalated cell': {}}}},\n",
+ " 'mesothelial cell': {'littoral cell of liver': {},\n",
+ " 'seminiferous tubule epithelial cell': {'Sertoli cell': {},\n",
+ " 'peritubular myoid cell': {}},\n",
+ " 'mesothelial cell of small intestine': {},\n",
+ " 'mesothelial cell of colon': {},\n",
+ " 'mesothelial cell of appendix': {},\n",
+ " 'mesothelial cell of epicardium': {},\n",
+ " 'mesothelial cell of dura mater': {},\n",
+ " 'mesothelial cell of anterior chamber of eye': {},\n",
+ " 'mesothelial cell of peritoneum': {'mesothelial cell of parietal peritoneum': {},\n",
+ " 'mesothelial cell of visceral peritoneum': {}},\n",
+ " 'mesothelial cell of pleura': {'mesothelial cell of parietal pleura': {},\n",
+ " 'mesothelial cell of visceral pleura': {}}},\n",
+ " 'endothelial cell': {'gut endothelial cell': {},\n",
+ " 'corneal endothelial cell': {},\n",
+ " 'endothelial cell of vascular tree': {'blood vessel endothelial cell': {'endothelial tip cell': {},\n",
+ " 'vein endothelial cell': {'endothelial cell of umbilical vein': {},\n",
+ " 'vasa recta cell': {'inner renal medulla vasa recta cell': {'inner medulla vasa recta ascending limb cell': {},\n",
+ " 'inner medulla vasa recta descending limb cell': {}},\n",
+ " 'outer renal medulla vasa recta cell': {'outer medulla vasa recta ascending limb cell': {},\n",
+ " 'outer medulla vasa recta descending limb cell': {}},\n",
+ " 'vasa recta ascending limb cell': {'inner medulla vasa recta ascending limb cell': {},\n",
+ " 'outer medulla vasa recta ascending limb cell': {}},\n",
+ " 'vasa recta descending limb cell': {'inner medulla vasa recta descending limb cell': {},\n",
+ " 'outer medulla vasa recta descending limb cell': {}}},\n",
+ " 'arcuate vein endothelial cell': {},\n",
+ " 'interlobulary vein endothelial cell': {},\n",
+ " 'hindlimb stylopod vein endothelial cell': {},\n",
+ " 'vein endothelial cell of respiratory system': {}},\n",
+ " 'retinal blood vessel endothelial cell': {},\n",
+ " 'endothelial stalk cell': {},\n",
+ " 'cardiac blood vessel endothelial cell': {'endothelial cell of coronary artery': {}},\n",
+ " 'endothelial cell of arteriole': {'kidney afferent arteriole endothelial cell': {},\n",
+ " 'kidney efferent arteriole endothelial cell': {},\n",
+ " 'endothelial cell of arteriole of lymph node': {}},\n",
+ " 'endothelial cell of artery': {'aortic endothelial cell': {'thoracic aorta endothelial cell': {}},\n",
+ " 'arcuate artery endothelial cell': {},\n",
+ " 'interlobulary artery endothelial cell': {'kidney afferent arteriole endothelial cell': {}},\n",
+ " 'pulmonary artery endothelial cell': {},\n",
+ " 'endothelial cell of coronary artery': {},\n",
+ " 'umbilical artery endothelial cell': {}},\n",
+ " 'kidney capillary endothelial cell': {'glomerular capillary endothelial cell': {},\n",
+ " 'peritubular capillary endothelial cell': {'kidney outer medulla peritubular capillary cell': {},\n",
+ " 'kidney cortex peritubular capillary cell': {}},\n",
+ " 'vasa recta cell': {'inner renal medulla vasa recta cell': {'inner medulla vasa recta ascending limb cell': {},\n",
+ " 'inner medulla vasa recta descending limb cell': {}},\n",
+ " 'outer renal medulla vasa recta cell': {'outer medulla vasa recta ascending limb cell': {},\n",
+ " 'outer medulla vasa recta descending limb cell': {}},\n",
+ " 'vasa recta ascending limb cell': {'inner medulla vasa recta ascending limb cell': {},\n",
+ " 'outer medulla vasa recta ascending limb cell': {}},\n",
+ " 'vasa recta descending limb cell': {'inner medulla vasa recta descending limb cell': {},\n",
+ " 'outer medulla vasa recta descending limb cell': {}}}},\n",
+ " 'microvascular endothelial cell': {'capillary endothelial cell': {'glomerular capillary endothelial cell': {},\n",
+ " 'placental villus capillary endothelial cell': {},\n",
+ " 'pulmonary capillary endothelial cell': {'alveolar capillary type 1 endothelial cell': {},\n",
+ " 'alveolar capillary type 2 endothelial cell': {}}},\n",
+ " 'dermal microvascular endothelial cell': {},\n",
+ " 'lung microvascular endothelial cell': {'pulmonary capillary endothelial cell': {'alveolar capillary type 1 endothelial cell': {},\n",
+ " 'alveolar capillary type 2 endothelial cell': {}}},\n",
+ " 'bladder microvascular endothelial cell': {},\n",
+ " 'brain microvascular endothelial cell': {},\n",
+ " 'prostate gland microvascular endothelial cell': {},\n",
+ " 'ovarian microvascular endothelial cell': {},\n",
+ " 'mammary microvascular endothelial cell': {},\n",
+ " 'adipose microvascular endothelial cell': {},\n",
+ " 'endometrial microvascular endothelial cell': {}},\n",
+ " 'dermis blood vessel endothelial cell': {'dermal microvascular endothelial cell': {}}},\n",
+ " 'endothelial cell of lymphatic vessel': {'lymphatic endothelial cell of subcapsular sinus ceiling': {},\n",
+ " 'lymphatic endothelial cell of subcapsular sinus floor': {},\n",
+ " 'lymphatic endothelial cell of trabecula': {},\n",
+ " 'lymphatic endothelial cell of medulla ceiling': {},\n",
+ " 'dermis lymphatic vessel endothelial cell': {'dermis microvascular lymphatic vessel endothelial cell': {}}},\n",
+ " 'endothelial cell of venule': {'endothelial cell of high endothelial venule': {},\n",
+ " 'squamous endothelial cell': {}},\n",
+ " 'lung endothelial cell': {'lung microvascular endothelial cell': {'pulmonary capillary endothelial cell': {'alveolar capillary type 1 endothelial cell': {},\n",
+ " 'alveolar capillary type 2 endothelial cell': {}}}}},\n",
+ " 'glomerular endothelial cell': {'glomerular capillary endothelial cell': {}},\n",
+ " 'endothelial cell of sinusoid': {'endothelial cell of venous sinus of spleen': {'endothelial cell of venous sinus of red pulp of spleen': {}},\n",
+ " 'endothelial cell of hepatic sinusoid': {'endothelial cell of periportal hepatic sinusoid': {},\n",
+ " 'endothelial cell of pericentral hepatic sinusoid': {}}},\n",
+ " 'circulating endothelial cell': {},\n",
+ " 'trabecular meshwork cell': {},\n",
+ " 'endothelial cell of respiratory system lymphatic vessel': {},\n",
+ " 'endothelial cell of placenta': {'placental villus capillary endothelial cell': {}},\n",
+ " 'endothelial cell of hepatic portal vein': {},\n",
+ " 'endothelial cell of uterus': {'endometrial microvascular endothelial cell': {}},\n",
+ " 'lymph node lymphatic vessel endothelial cell': {'lymphatic endothelial cell of subcapsular sinus ceiling': {},\n",
+ " 'lymphatic endothelial cell of subcapsular sinus floor': {},\n",
+ " 'lymphatic endothelial cell of trabecula': {},\n",
+ " 'lymphatic endothelial cell of medulla ceiling': {}},\n",
+ " 'cardiac endothelial cell': {'endocardial cell': {},\n",
+ " 'cardiac blood vessel endothelial cell': {'endothelial cell of coronary artery': {}},\n",
+ " 'valve endothelial cell': {}},\n",
+ " \"endothelial cell of Peyer's patch\": {},\n",
+ " 'ureter adventitial cell': {'fibrocyte of adventitia of ureter': {}},\n",
+ " 'colon endothelial cell': {},\n",
+ " 'cerebral cortex endothelial cell': {},\n",
+ " 'splenic endothelial cell': {'endothelial cell of venous sinus of red pulp of spleen': {}},\n",
+ " 'endothelial cell of venule of lymph node': {},\n",
+ " 'endothelial cell of efferent lymphatic vessel': {}},\n",
+ " 'myoepithelial cell': {'myoepithelial cell of mammary gland': {'myoepithelial cell of lactiferous alveolus': {},\n",
+ " 'myoepithelial cell of lactiferous duct': {},\n",
+ " 'myoepithelial cell of acinus of lactiferous gland': {}},\n",
+ " 'peritubular myoid cell': {},\n",
+ " 'myoepithelial cell of intralobular lactiferous duct': {},\n",
+ " 'myoepithelial cell of sweat gland': {},\n",
+ " 'myoepithelial cell of terminal lactiferous duct': {},\n",
+ " 'myoepithelial cell of dilator pupillae': {},\n",
+ " 'myoepithelial cell of main lactiferous duct': {},\n",
+ " 'myoepithelial cell of primary lactiferous duct': {},\n",
+ " 'myoepithelial cell of secondary lactiferous duct': {},\n",
+ " 'myoepithelial cell of tertiary lactiferous duct': {},\n",
+ " 'myoepithelial cell of quarternary lactiferous duct': {},\n",
+ " 'myoepithelial cell of bronchus submucosal gland': {},\n",
+ " 'myoepithelial cell of trachea gland': {}},\n",
+ " 'synovial cell': {'type B synovial cell': {},\n",
+ " 'type A synovial cell': {}},\n",
+ " 'cortical cell of adrenal gland': {'type I cell of adrenal cortex': {},\n",
+ " 'type II cell of adrenal cortex': {},\n",
+ " 'type III cell of adrenal cortex': {}},\n",
+ " 'endosteal cell': {},\n",
+ " 'follicular cell of ovary': {'granulosa cell': {},\n",
+ " 'cumulus cell': {'corona radiata cell': {}},\n",
+ " 'primary follicular cell of ovary': {},\n",
+ " 'secondary follicular cell of ovary': {}},\n",
+ " 'primitive cardiac myocyte': {},\n",
+ " 'epithelial cell of distal tubule': {'kidney distal convoluted tubule epithelial cell': {'epithelial cell of early distal convoluted tubule': {},\n",
+ " 'epithelial cell of late distal convoluted tubule': {}},\n",
+ " 'macula densa epithelial cell': {},\n",
+ " 'kidney loop of Henle ascending limb epithelial cell': {'kidney loop of Henle thick ascending limb epithelial cell': {'kidney loop of Henle medullary thick ascending limb epithelial cell': {},\n",
+ " 'kidney loop of Henle cortical thick ascending limb epithelial cell': {}},\n",
+ " 'kidney loop of Henle thin ascending limb epithelial cell': {}}},\n",
+ " 'epithelial cell of proximal tubule': {'brush border cell of the proximal tubule': {},\n",
+ " 'kidney proximal convoluted tubule epithelial cell': {},\n",
+ " 'kidney proximal straight tubule epithelial cell': {},\n",
+ " 'epithelial cell of proximal tubule segment 1': {},\n",
+ " 'epithelial cell of proximal tubule segment 2': {},\n",
+ " 'epithelial cell of proximal tubule segment 3': {},\n",
+ " 'CD24-positive, CD-133-positive, vimentin-positive proximal tubular cell': {}},\n",
+ " 'renal intercalated cell': {'renal beta-intercalated cell': {'kidney collecting duct beta-intercalated cell': {},\n",
+ " 'kidney connecting tubule beta-intercalated cell': {}},\n",
+ " 'renal alpha-intercalated cell': {'kidney collecting duct alpha-intercalated cell': {},\n",
+ " 'kidney connecting tubule alpha-intercalated cell': {}},\n",
+ " 'kidney collecting duct intercalated cell': {'kidney cortex collecting duct intercalated cell': {'kidney collecting duct beta-intercalated cell': {}},\n",
+ " 'kidney outer medulla collecting duct intercalated cell': {},\n",
+ " 'kidney inner medulla collecting duct intercalated cell': {},\n",
+ " 'kidney papillary duct intercalated cell': {},\n",
+ " 'kidney collecting duct alpha-intercalated cell': {}},\n",
+ " 'kidney connecting tubule intercalated cell': {'kidney connecting tubule alpha-intercalated cell': {},\n",
+ " 'kidney connecting tubule beta-intercalated cell': {}}},\n",
+ " 'kidney artery smooth muscle cell': {'arcuate artery smooth muscle cell': {},\n",
+ " 'interlobulary artery smooth muscle cell': {'kidney afferent arteriole smooth muscle cell': {}}},\n",
+ " 'kidney arteriole smooth muscle cell': {'kidney afferent arteriole smooth muscle cell': {},\n",
+ " 'kidney efferent arteriole smooth muscle cell': {}},\n",
+ " 'kidney venous system smooth muscle cell': {'arcuate vein smooth muscle cell': {},\n",
+ " 'interlobulary vein smooth muscle cell': {}}},\n",
+ " 'vertebrate lens cell': {'lens epithelial cell': {'anterior lens cell': {}},\n",
+ " 'lens fiber cell': {'secondary lens fiber': {'non-nucleated secondary lens fiber': {},\n",
+ " 'nucleated secondary lens fiber': {}},\n",
+ " 'primary lens fiber': {}}},\n",
+ " 'neural cell': {'neural stem cell': {'neuroblast (sensu Nematoda and Protostomia)': {},\n",
+ " 'neuroglioblast (sensu Nematoda and Protostomia)': {'neuroglioblast (sensu Nematoda)': {}}},\n",
+ " 'neuron associated cell': {'neuron associated cell (sensu Vertebrata)': {'Merkel cell': {},\n",
+ " 'glioblast (sensu Vertebrata)': {},\n",
+ " 'perineuronal satellite cell': {},\n",
+ " 'oligodendrocyte precursor cell': {},\n",
+ " 'differentiation-committed oligodendrocyte precursor': {},\n",
+ " 'glial restricted tripotential precursor cell': {}},\n",
+ " 'glial cell': {'macroglial cell': {'astrocyte': {'Bergmann glial cell': {},\n",
+ " 'ependymoglial cell': {'tanycyte': {}},\n",
+ " 'astrocyte of the cerebellum': {},\n",
+ " 'astrocyte of the spinal cord': {},\n",
+ " 'immature astrocyte': {},\n",
+ " 'mature astrocyte': {},\n",
+ " 'astrocyte of the forebrain': {'pituicyte': {},\n",
+ " 'astrocyte of the cerebral cortex': {'hippocampal astrocyte': {}}},\n",
+ " 'retinal astrocyte': {}},\n",
+ " 'oligodendrocyte': {'spinal cord oligodendrocyte': {}},\n",
+ " 'brain macroglial cell': {'astrocyte of the cerebellum': {},\n",
+ " 'astrocyte of the forebrain': {'pituicyte': {},\n",
+ " 'astrocyte of the cerebral cortex': {'hippocampal astrocyte': {}}}}},\n",
+ " 'microglial cell': {'immature microglial cell': {},\n",
+ " 'mature microglial cell': {}},\n",
+ " 'radial glial cell': {'Mueller cell': {},\n",
+ " 'forebrain radial glial cell': {},\n",
+ " 'spinal cord radial glial cell': {}},\n",
+ " 'Schwann cell': {'myelinating Schwann cell': {},\n",
+ " 'non-myelinating Schwann cell': {'terminal Schwann cell': {}},\n",
+ " 'immature Schwann cell': {}},\n",
+ " 'perineurial cell': {},\n",
+ " 'cardiac glial cell': {},\n",
+ " 'olfactory ensheathing cell': {},\n",
+ " 'lateral line nerve glial cell': {'posterior lateral line nerve glial cell': {},\n",
+ " 'anterior lateral line nerve glial cell': {}},\n",
+ " 'cerebral cortex glial cell': {'astrocyte of the cerebral cortex': {'hippocampal astrocyte': {}},\n",
+ " 'hippocampal glial cell': {'hippocampal astrocyte': {}}},\n",
+ " 'lateral ventricle glial cell': {},\n",
+ " 'myelinating glial cell': {'oligodendrocyte': {'spinal cord oligodendrocyte': {}},\n",
+ " 'myelinating Schwann cell': {}},\n",
+ " 'enteroglial cell': {}},\n",
+ " 'neuron associated cell (sensu Nematoda and Protostomia)': {'guidepost cell': {},\n",
+ " 'glioblast (sensu Nematoda and Protostomia)': {}}},\n",
+ " 'neuron': {'CNS neuron (sensu Nematoda and Protostomia)': {'Kenyon cell': {}},\n",
+ " 'neural crest derived neuron': {'chromaffin cell': {'type EC enteroendocrine cell': {'type EC2 enteroendocrine cell': {},\n",
+ " 'type EC1 enteroendocrine cell': {},\n",
+ " 'type ECL enteroendocrine cell': {}},\n",
+ " 'chromophil cell of anterior pituitary gland': {'acidophil cell of pars distalis of adenohypophysis': {'mammosomatotroph': {},\n",
+ " 'mammotroph': {},\n",
+ " 'somatotroph': {}},\n",
+ " 'basophil cell of pars distalis of adenohypophysis': {'gonadtroph': {},\n",
+ " 'thyrotroph': {},\n",
+ " 'corticotroph': {}}},\n",
+ " 'interrenal chromaffin cell': {'interrenal norepinephrine type cell': {},\n",
+ " 'interrenal epinephrin secreting cell': {}},\n",
+ " 'chromaffin cell of paraganglion': {'chromaffin cell of paraaortic body': {}},\n",
+ " 'chromaffin cell of adrenal gland': {'adrenal medulla chromaffin cell': {'type II cell of adrenal medulla': {},\n",
+ " 'type I cell of adrenal medulla': {}},\n",
+ " 'adrenal cortex chromaffin cell': {}},\n",
+ " 'chromaffin cell of ovary': {'chromaffin cell of right ovary': {},\n",
+ " 'chromaffin cell of left ovary': {}}},\n",
+ " 'enteric neuron': {}},\n",
+ " 'interneuron': {'bipolar neuron': {'retinal bipolar neuron': {'ON-bipolar cell': {'rod bipolar cell': {'rod bipolar cell (sensu Mus)': {}},\n",
+ " 'ON-blue cone bipolar cell': {},\n",
+ " 'diffuse bipolar 4 cell': {},\n",
+ " 'diffuse bipolar 6 cell': {},\n",
+ " 'invaginating midget bipolar cell': {},\n",
+ " 'giant bipolar cell': {}},\n",
+ " 'OFF-bipolar cell': {'diffuse bipolar 1 cell': {},\n",
+ " 'diffuse bipolar 2 cell': {},\n",
+ " 'diffuse bipolar 3a cell': {},\n",
+ " 'diffuse bipolar 3b cell': {},\n",
+ " 'flat midget bipolar cell': {},\n",
+ " 'OFFx cell': {}},\n",
+ " 'cone retinal bipolar cell': {'type 1 cone bipolar cell (sensu Mus)': {},\n",
+ " 'type 2 cone bipolar cell (sensu Mus)': {},\n",
+ " 'type 3 cone bipolar cell (sensu Mus)': {'type 3a cone bipolar cell': {},\n",
+ " 'type 3b cone bipolar cell': {}},\n",
+ " 'type 4 cone bipolar cell (sensu Mus)': {},\n",
+ " 'type 5 cone bipolar cell (sensu Mus)': {'type 5a cone bipolar cell': {},\n",
+ " 'type 5b cone bipolar cell': {}},\n",
+ " 'type 6 cone bipolar cell (sensu Mus)': {},\n",
+ " 'type 7 cone bipolar cell (sensu Mus)': {},\n",
+ " 'type 8 cone bipolar cell (sensu Mus)': {},\n",
+ " 'type 9 cone bipolar cell (sensu Mus)': {}}},\n",
+ " 'L2/3 bipolar vip GABAergic cortical interneuron (Mmus)': {}},\n",
+ " 'Mauthner neuron': {},\n",
+ " 'ganglion interneuron': {},\n",
+ " 'CNS interneuron': {'CNS short range interneuron': {},\n",
+ " 'CNS long range interneuron': {},\n",
+ " 'local interneuron': {},\n",
+ " 'spinal cord interneuron': {'Kolmer-Agduhr neuron': {},\n",
+ " 'dorsal horn interneuron': {},\n",
+ " 'spinal cord ventral column interneuron': {}},\n",
+ " 'cortical interneuron': {'cerebral cortex GABAergic interneuron': {'rosehip neuron': {},\n",
+ " 'neocortex basket cell': {'large basket cell': {},\n",
+ " 'nest basket cell': {},\n",
+ " 'small basket cell': {}},\n",
+ " 'dentate gyrus of hippocampal formation basket cell': {},\n",
+ " \"Ammon's horn basket cell\": {},\n",
+ " 'alpha7 GABAergic cortical interneuron (Mmus)': {},\n",
+ " 'lamp5 GABAergic cortical interneuron': {'canopy lamp5 GABAergic cortical interneuron (Mmus)': {},\n",
+ " 'L5,6 neurogliaform lamp5 GABAergic cortical interneuron (Mmus)': {},\n",
+ " 'neurogliaform lamp5 GABAergic cortical interneuron (Mmus)': {}},\n",
+ " 'sncg GABAergic cortical interneuron': {},\n",
+ " 'vip GABAergic cortical interneuron': {'L2/3 bipolar vip GABAergic cortical interneuron (Mmus)': {},\n",
+ " 'L5 vip cortical GABAergic interneuron (Mmus)': {},\n",
+ " 'L5/6 cck, vip cortical GABAergic interneuron (Mmus)': {}},\n",
+ " 'sst GABAergic cortical interneuron': {'L5 T-Martinotti sst GABAergic cortical interneuron (Mmus)': {},\n",
+ " 'L5 non-Martinotti sst GABAergic cortical interneuron (Mmus)': {},\n",
+ " 'L2/3/5 fan Martinotti sst GABAergic cortical interneuron (Mmus)': {},\n",
+ " 'L4 sst GABAergic cortical interneuron (Mmus)': {},\n",
+ " 'L6 tyrosine hydroxylase sst GABAergic cortical interneuron (Mmus)': {},\n",
+ " 'L5/6 non-Martinotti sst GABAergic cortical interneuron (Mmus)': {},\n",
+ " 'sst chodl GABAergic cortical interneuron': {'long-range projecting sst GABAergic cortical interneuron (Mmus)': {}},\n",
+ " 'oxytocin receptor sst GABAergic cortical interneuron': {}},\n",
+ " 'pvalb GABAergic cortical interneuron': {'chandelier pvalb GABAergic cortical interneuron': {}},\n",
+ " 'medial ganglionic eminence derived GABAergic cortical interneuron': {},\n",
+ " 'caudal ganglionic eminence derived GABAergic cortical interneuron': {},\n",
+ " 'L5/6 cck cortical GABAergic interneuron (Mmus)': {'L5/6 cck, vip cortical GABAergic interneuron (Mmus)': {}},\n",
+ " 'reelin GABAergic cortical interneuron': {}},\n",
+ " 'hippocampal interneuron': {'dentate gyrus of hippocampal formation basket cell': {},\n",
+ " \"Ammon's horn basket cell\": {}}},\n",
+ " 'olfactory bulb interneuron': {'olfactory granule cell': {},\n",
+ " 'periglomerular cell': {},\n",
+ " 'mitral cell': {}},\n",
+ " 'cerebellum basket cell': {},\n",
+ " 'cerebellar inhibitory GABAergic interneuron': {'cerebellar Golgi cell': {},\n",
+ " 'Lugaro cell': {}},\n",
+ " 'unipolar brush cell': {}},\n",
+ " 'inhibitory interneuron': {'GABAergic interneuron': {'basket cell': {'cerebellum basket cell': {},\n",
+ " 'neocortex basket cell': {'large basket cell': {},\n",
+ " 'nest basket cell': {},\n",
+ " 'small basket cell': {}},\n",
+ " 'dentate gyrus of hippocampal formation basket cell': {},\n",
+ " \"Ammon's horn basket cell\": {}},\n",
+ " 'Kolmer-Agduhr neuron': {},\n",
+ " 'cerebral cortex GABAergic interneuron': {'rosehip neuron': {},\n",
+ " 'neocortex basket cell': {'large basket cell': {},\n",
+ " 'nest basket cell': {},\n",
+ " 'small basket cell': {}},\n",
+ " 'dentate gyrus of hippocampal formation basket cell': {},\n",
+ " \"Ammon's horn basket cell\": {},\n",
+ " 'alpha7 GABAergic cortical interneuron (Mmus)': {},\n",
+ " 'lamp5 GABAergic cortical interneuron': {'canopy lamp5 GABAergic cortical interneuron (Mmus)': {},\n",
+ " 'L5,6 neurogliaform lamp5 GABAergic cortical interneuron (Mmus)': {},\n",
+ " 'neurogliaform lamp5 GABAergic cortical interneuron (Mmus)': {}},\n",
+ " 'sncg GABAergic cortical interneuron': {},\n",
+ " 'vip GABAergic cortical interneuron': {'L2/3 bipolar vip GABAergic cortical interneuron (Mmus)': {},\n",
+ " 'L5 vip cortical GABAergic interneuron (Mmus)': {},\n",
+ " 'L5/6 cck, vip cortical GABAergic interneuron (Mmus)': {}},\n",
+ " 'sst GABAergic cortical interneuron': {'L5 T-Martinotti sst GABAergic cortical interneuron (Mmus)': {},\n",
+ " 'L5 non-Martinotti sst GABAergic cortical interneuron (Mmus)': {},\n",
+ " 'L2/3/5 fan Martinotti sst GABAergic cortical interneuron (Mmus)': {},\n",
+ " 'L4 sst GABAergic cortical interneuron (Mmus)': {},\n",
+ " 'L6 tyrosine hydroxylase sst GABAergic cortical interneuron (Mmus)': {},\n",
+ " 'L5/6 non-Martinotti sst GABAergic cortical interneuron (Mmus)': {},\n",
+ " 'sst chodl GABAergic cortical interneuron': {'long-range projecting sst GABAergic cortical interneuron (Mmus)': {}},\n",
+ " 'oxytocin receptor sst GABAergic cortical interneuron': {}},\n",
+ " 'pvalb GABAergic cortical interneuron': {'chandelier pvalb GABAergic cortical interneuron': {}},\n",
+ " 'medial ganglionic eminence derived GABAergic cortical interneuron': {},\n",
+ " 'caudal ganglionic eminence derived GABAergic cortical interneuron': {},\n",
+ " 'L5/6 cck cortical GABAergic interneuron (Mmus)': {'L5/6 cck, vip cortical GABAergic interneuron (Mmus)': {}},\n",
+ " 'reelin GABAergic cortical interneuron': {}},\n",
+ " 'GABAnergic interplexiform cell': {},\n",
+ " 'cerebellar inhibitory GABAergic interneuron': {'cerebellar Golgi cell': {},\n",
+ " 'Lugaro cell': {}},\n",
+ " 'Martinotti neuron': {'L4 sst GABAergic cortical interneuron (Mmus)': {},\n",
+ " 'T Martinotti neuron': {'L5 T-Martinotti sst GABAergic cortical interneuron (Mmus)': {}},\n",
+ " 'fan Martinotti neuron': {'L2/3/5 fan Martinotti sst GABAergic cortical interneuron (Mmus)': {}}},\n",
+ " 'GABAergic amacrine cell': {}}},\n",
+ " 'primary interneuron (sensu Teleostei)': {},\n",
+ " 'amacrine cell': {'flag amacrine cell': {'flag A amacrine cell': {},\n",
+ " 'flag B amacrine cell': {}},\n",
+ " 'AB diffuse-1 amacrine cell': {},\n",
+ " 'AB diffuse-2 amacrine cell': {},\n",
+ " 'spider amacrine cell': {},\n",
+ " 'monostratified amacrine cell': {},\n",
+ " 'broad diffuse amacrine cell': {},\n",
+ " 'recurving diffuse amacrine cell': {},\n",
+ " 'starburst amacrine cell': {},\n",
+ " 'diffuse multistratified amacrine cell': {},\n",
+ " 'AB broad diffuse-1 amacrine cell': {},\n",
+ " 'AB broad diffuse-2 amacrine cell': {},\n",
+ " 'fountain amacrine cell': {},\n",
+ " 'WF1 amacrine cell': {},\n",
+ " 'WF2 amacrine cell': {},\n",
+ " 'WF3-1 amacrine cell': {},\n",
+ " 'WF3-2 amacrine cell': {},\n",
+ " 'WF4 amacrine cell': {},\n",
+ " 'indoleamine-accumulating amacrine cell': {},\n",
+ " 'bistratified retinal amacrine cell': {'A2 amacrine cell': {},\n",
+ " 'flat bistratified amacrine cell': {},\n",
+ " 'A2-like amacrine cell': {},\n",
+ " 'diffuse bistratified amacrine cell': {},\n",
+ " 'DAPI-3 amacrine cell': {},\n",
+ " 'asymmetric bistratified amacrine cell': {},\n",
+ " 'wavy bistratified amacrine cell': {}},\n",
+ " 'narrow field retinal amacrine cell': {},\n",
+ " 'medium field retinal amacrine cell': {},\n",
+ " 'wide field retinal amacrine cell': {},\n",
+ " 'displaced amacrine cell': {},\n",
+ " 'GABAergic amacrine cell': {},\n",
+ " 'glycinergic amacrine cell': {}},\n",
+ " 'stellate interneuron': {},\n",
+ " 'neurogliaform cell': {'L5,6 neurogliaform lamp5 GABAergic cortical interneuron (Mmus)': {},\n",
+ " 'neurogliaform lamp5 GABAergic cortical interneuron (Mmus)': {}},\n",
+ " 'retina horizontal cell': {'H1 horizontal cell': {},\n",
+ " 'H2 horizontal cell': {}},\n",
+ " 'interplexiform cell': {'dopamanergic interplexiform cell': {},\n",
+ " 'GABAnergic interplexiform cell': {}},\n",
+ " 'medial ganglionic eminence derived interneuron': {'medial ganglionic eminence derived GABAergic cortical interneuron': {}},\n",
+ " 'caudal ganglionic eminence derived interneuron': {'caudal ganglionic eminence derived GABAergic cortical interneuron': {}},\n",
+ " 'bitufted neuron': {},\n",
+ " 'chandelier cell': {'chandelier pvalb GABAergic cortical interneuron': {}},\n",
+ " 'double bouquet cell': {}},\n",
+ " 'polymodal neuron': {},\n",
+ " 'multipolar neuron': {'basket cell': {'cerebellum basket cell': {},\n",
+ " 'neocortex basket cell': {'large basket cell': {},\n",
+ " 'nest basket cell': {},\n",
+ " 'small basket cell': {}},\n",
+ " 'dentate gyrus of hippocampal formation basket cell': {},\n",
+ " \"Ammon's horn basket cell\": {}},\n",
+ " 'stellate neuron': {'cerebellar stellate cell': {},\n",
+ " 'dentate gyrus of hippocampal formation stellate cell': {}},\n",
+ " 'pyramidal neuron': {'horizontal pyramidal neuron': {},\n",
+ " 'inverted pyramidal neuron': {},\n",
+ " 'stellate pyramidal neuron': {},\n",
+ " 'tufted pyramidal neuron': {},\n",
+ " 'untufted pyramidal neuron': {},\n",
+ " 'amygdala pyramidal neuron': {},\n",
+ " 'cerebral cortex pyramidal neuron': {'hippocampal pyramidal neuron': {},\n",
+ " 'primary motor cortex pyramidal cell': {'Betz cell': {'Betz upper motor neuron': {},\n",
+ " 'spinal interneuron synapsing Betz cell': {}},\n",
+ " 'Meynert cell': {},\n",
+ " 'non-medulla, extratelencephalic-projecting glutamatergic neuron of the primary motor cortex': {},\n",
+ " 'medulla-projecting glutamatergic neuron of the primary motor cortex': {},\n",
+ " 'L6 intratelencephalic projecting glutamatergic neuron of the primary motor cortex': {'stellate L6 intratelencephalic projecting glutamatergic neuron of the primary motor cortex (Mmus)': {},\n",
+ " 'inverted L6 intratelencephalic projecting glutamatergic neuron of the primary motor cortex (Mmus)': {}},\n",
+ " 'corticothalamic VAL/VM projecting glutamatergic neuron of the primary motor cortex': {}},\n",
+ " 'L5 extratelencephalic projecting glutamatergic cortical neuron': {'Betz cell': {'Betz upper motor neuron': {},\n",
+ " 'spinal interneuron synapsing Betz cell': {}},\n",
+ " 'non-medulla, extratelencephalic-projecting glutamatergic neuron of the primary motor cortex': {},\n",
+ " 'medulla-projecting glutamatergic neuron of the primary motor cortex': {}}}},\n",
+ " 'stellate interneuron': {},\n",
+ " 'neurogliaform cell': {'L5,6 neurogliaform lamp5 GABAergic cortical interneuron (Mmus)': {},\n",
+ " 'neurogliaform lamp5 GABAergic cortical interneuron (Mmus)': {}},\n",
+ " 'Martinotti neuron': {'L4 sst GABAergic cortical interneuron (Mmus)': {},\n",
+ " 'T Martinotti neuron': {'L5 T-Martinotti sst GABAergic cortical interneuron (Mmus)': {}},\n",
+ " 'fan Martinotti neuron': {'L2/3/5 fan Martinotti sst GABAergic cortical interneuron (Mmus)': {}}}},\n",
+ " 'pseudounipolar neuron': {},\n",
+ " 'unipolar neuron': {},\n",
+ " 'cholinergic neuron': {'somatomotor neuron': {'cranial somatomotor neuron': {},\n",
+ " 'lower motor neuron': {'spinal accessory motor neuron': {},\n",
+ " 'gamma motor neuron': {'dynamic gamma motor neuron': {},\n",
+ " 'static gamma motor neuron': {}},\n",
+ " 'alpha motor neuron': {},\n",
+ " 'anterior horn motor neuron': {},\n",
+ " 'beta motor neuron': {'static beta motor neuron': {},\n",
+ " 'dynamic beta motor neuron': {}}}},\n",
+ " 'sympathetic cholinergic neuron': {}},\n",
+ " 'peptidergic neuron': {},\n",
+ " 'columnar neuron': {},\n",
+ " 'pioneer neuron': {},\n",
+ " 'CNS neuron (sensu Vertebrata)': {'granule cell': {'olfactory granule cell': {},\n",
+ " 'cerebellar granule cell': {},\n",
+ " 'cortical granule cell': {'hippocampal granule cell': {'dentate gyrus granule cell': {}}},\n",
+ " 'Island of Calleja granule cell': {}},\n",
+ " 'Purkinje cell': {},\n",
+ " 'stellate neuron': {'cerebellar stellate cell': {},\n",
+ " 'dentate gyrus of hippocampal formation stellate cell': {}},\n",
+ " 'neuronal brush cell': {},\n",
+ " 'Cajal-Retzius cell': {},\n",
+ " 'retinal ganglion cell': {'bistratified retinal ganglion cell': {'G3 retinal ganglion cell': {},\n",
+ " 'G7 retinal ganglion cell': {},\n",
+ " 'retinal ganglion cell D1': {},\n",
+ " 'retinal ganglion cell D2': {},\n",
+ " 'M11 retinal ganglion cell': {},\n",
+ " 'M12 retinal ganglion cell': {},\n",
+ " 'M13 retinal ganglion cell': {},\n",
+ " 'M14 retinal ganglion cell': {},\n",
+ " 'small bistratified retinal ganglion cell': {}},\n",
+ " 'G1 retinal ganglion cell': {},\n",
+ " 'G2 retinal ganglion cell': {},\n",
+ " 'G4 retinal ganglion cell': {'G4-ON retinal ganglion cell': {},\n",
+ " 'G4-OFF retinal ganglion cell': {}},\n",
+ " 'G5 retinal ganglion cell': {},\n",
+ " 'G6 retinal ganglion cell': {},\n",
+ " 'G8 retinal ganglion cell': {},\n",
+ " 'G9 retinal ganglion cell': {},\n",
+ " 'G10 retinal ganglion cell': {},\n",
+ " 'G11 retinal ganglion cell': {'G11-ON retinal ganglion cell': {},\n",
+ " 'G11-OFF retinal ganglion cell': {}},\n",
+ " 'M1 retinal ganglion cell': {},\n",
+ " 'M2 retinal ganglion cell': {},\n",
+ " 'M3 retinal ganglion cell': {'M3-ON retinal ganglion cell': {},\n",
+ " 'M3-OFF retinal ganglion cell': {}},\n",
+ " 'M4 retinal ganglion cell': {},\n",
+ " 'M5 retinal ganglion cell': {},\n",
+ " 'M6 retinal ganglion cell': {},\n",
+ " 'M7 retinal ganglion cell': {'M7-ON retinal ganglion cell': {},\n",
+ " 'M7-OFF retinal ganglion cell': {}},\n",
+ " 'M8 retinal ganglion cell': {},\n",
+ " 'M9 retinal ganglion cell': {'M9-ON retinal ganglion cell': {},\n",
+ " 'M9-OFF retinal ganglion cell': {}},\n",
+ " 'M10 retinal ganglion cell': {},\n",
+ " 'retinal ganglion cell B': {'retinal ganglion cell B1': {},\n",
+ " 'retinal ganglion cell B2': {},\n",
+ " 'retinal ganglion cell B3': {'retinal ganglion cell B3 outer': {},\n",
+ " 'retinal ganglion cell B3 inner': {}}},\n",
+ " 'retinal ganglion cell C': {'retinal ganglion cell C outer': {'retinal ganglion cell C4': {},\n",
+ " 'retinal ganglion cell C5': {},\n",
+ " 'retinal ganglion cell C6': {},\n",
+ " 'retinal ganglion cell C2 outer': {}},\n",
+ " 'retinal ganglion cell C inner': {'retinal ganglion cell C3': {},\n",
+ " 'retinal ganglion cell C1': {},\n",
+ " 'retinal ganglion cell C2 inner': {}}},\n",
+ " 'retinal ganglion cell A': {'retinal ganglion cell A1': {},\n",
+ " 'retinal ganglion cell A2': {'retinal ganglion cell A2 inner': {},\n",
+ " 'retinal ganglion cell A2 outer': {}}},\n",
+ " 'ON retinal ganglion cell': {'G4-ON retinal ganglion cell': {},\n",
+ " 'G11-ON retinal ganglion cell': {},\n",
+ " 'M3-ON retinal ganglion cell': {},\n",
+ " 'M7-ON retinal ganglion cell': {},\n",
+ " 'M9-ON retinal ganglion cell': {},\n",
+ " 'ON midget ganglion cell': {},\n",
+ " 'ON parasol ganglion cell': {}},\n",
+ " 'OFF retinal ganglion cell': {'G4-OFF retinal ganglion cell': {},\n",
+ " 'G11-OFF retinal ganglion cell': {},\n",
+ " 'M3-OFF retinal ganglion cell': {},\n",
+ " 'M7-OFF retinal ganglion cell': {},\n",
+ " 'M9-OFF retinal ganglion cell': {},\n",
+ " 'OFF midget ganglion cell': {},\n",
+ " 'OFF parasol ganglion cell': {}},\n",
+ " 'midget ganglion cell of retina': {'ON midget ganglion cell': {},\n",
+ " 'OFF midget ganglion cell': {}},\n",
+ " 'parasol ganglion cell of retina': {'OFF parasol ganglion cell': {},\n",
+ " 'ON parasol ganglion cell': {}}},\n",
+ " 'raphe nuclei neuron': {},\n",
+ " 'neuron of the dorsal spinal cord': {},\n",
+ " 'neuron of the ventral spinal cord': {},\n",
+ " 'neuron of the substantia nigra': {},\n",
+ " 'neuron of the forebrain': {'olfactory granule cell': {},\n",
+ " 'cortical granule cell': {'hippocampal granule cell': {'dentate gyrus granule cell': {}}},\n",
+ " 'striatum neuron': {'Island of Calleja granule cell': {}},\n",
+ " 'dentate gyrus of hippocampal formation stellate cell': {}},\n",
+ " 'horizontal pyramidal neuron': {},\n",
+ " 'inverted pyramidal neuron': {},\n",
+ " 'stellate pyramidal neuron': {},\n",
+ " 'tufted pyramidal neuron': {},\n",
+ " 'untufted pyramidal neuron': {}},\n",
+ " 'sensory processing neuron': {},\n",
+ " 'afferent neuron': {'sensory neuron': {'neuronal receptor cell': {'pain receptor cell': {'unimodal nocireceptor': {},\n",
+ " 'polymodal nocireceptor': {}},\n",
+ " 'touch receptor cell': {},\n",
+ " 'gravity sensitive cell': {},\n",
+ " 'acceleration receptive cell': {},\n",
+ " 'thermoreceptor cell': {'cold sensing thermoreceptor cell': {},\n",
+ " 'warmth sensing thermoreceptor cell': {}},\n",
+ " 'olfactory receptor cell': {'ciliated olfactory receptor neuron': {},\n",
+ " 'microvillous olfactory receptor neuron': {},\n",
+ " 'crypt olfactory receptor neuron': {}},\n",
+ " 'photoreceptor cell': {'eye photoreceptor cell': {'R7 photoreceptor cell': {},\n",
+ " 'camera-type eye photoreceptor cell': {'retinal cone cell': {'L cone cell': {},\n",
+ " 'M cone cell': {'510 nm-cone': {}},\n",
+ " 'S cone cell': {},\n",
+ " 'UV cone cell': {'360 nm-cone': {}}},\n",
+ " 'retinal rod cell': {}},\n",
+ " 'compound eye photoreceptor cell': {'R1 photoreceptor cell': {},\n",
+ " 'R2 photoreceptor cell': {},\n",
+ " 'R3 photoreceptor cell': {},\n",
+ " 'R4 photoreceptor cell': {},\n",
+ " 'R5 photoreceptor cell': {},\n",
+ " 'R6 photoreceptor cell': {},\n",
+ " 'R8 photoreceptor cell': {}}},\n",
+ " 'visible light photoreceptor cell': {'photopic photoreceptor cell': {'blue sensitive photoreceptor cell': {},\n",
+ " 'green sensitive photoreceptor cell': {},\n",
+ " 'red sensitive photoreceptor cell': {}},\n",
+ " 'R1 photoreceptor cell': {},\n",
+ " 'R2 photoreceptor cell': {},\n",
+ " 'R3 photoreceptor cell': {},\n",
+ " 'R4 photoreceptor cell': {},\n",
+ " 'R5 photoreceptor cell': {},\n",
+ " 'R6 photoreceptor cell': {},\n",
+ " 'R8 photoreceptor cell': {}},\n",
+ " 'scotopic photoreceptor cell': {},\n",
+ " 'UV sensitive photoreceptor cell': {'R7 photoreceptor cell': {}}},\n",
+ " 'Rohon-Beard neuron': {},\n",
+ " 'humidity receptor cell': {},\n",
+ " 'neuromast hair cell': {'anterior lateral line neuromast hair cell': {},\n",
+ " 'posterior lateral line neuromast hair cell': {}},\n",
+ " 'ear hair cell': {'vestibular hair cell': {'type II vestibular sensory cell': {'type 2 vestibular sensory cell of stato-acoustic epithelium': {},\n",
+ " 'type 2 vestibular sensory cell of epithelium of macula of utricle of membranous labyrinth': {},\n",
+ " 'type 2 vestibular sensory cell of epithelium of macula of saccule of membranous labyrinth': {},\n",
+ " 'type 2 vestibular sensory cell of epithelium of crista of ampulla of semicircular duct of membranous labyrinth': {}},\n",
+ " 'type I vestibular sensory cell': {'type 1 vestibular sensory cell of stato-acoustic epithelium': {},\n",
+ " 'type 1 vestibular sensory cell of epithelium of macula of utricle of membranous labyrinth': {},\n",
+ " 'type 1 vestibular sensory cell of epithelium of macula of saccule of membranous labyrinth': {},\n",
+ " 'type 1 vestibular sensory cell of epithelium of crista of ampulla of semicircular duct of membranous labyrinth': {}}},\n",
+ " 'tether cell': {},\n",
+ " 'macular hair cell': {},\n",
+ " 'cochlea auditory hair cell': {'cochlear inner hair cell': {},\n",
+ " 'cochlear outer hair cell': {}}},\n",
+ " 'stretch receptor cell': {'pressoreceptor cell': {}},\n",
+ " 'lung neuroendocrine cell': {'neuroendocrine cell of epithelium of lobar bronchus': {}},\n",
+ " 'sensory neuron of dorsal root ganglion': {},\n",
+ " 'trigeminal sensory neuron': {}},\n",
+ " 'mechanoreceptor cell': {'touch receptor cell': {},\n",
+ " 'gravity sensitive cell': {},\n",
+ " 'slowly adapting mechanoreceptor cell': {},\n",
+ " 'sensory hair cell': {'auditory hair cell': {'macular hair cell': {},\n",
+ " 'cochlea auditory hair cell': {'cochlear inner hair cell': {},\n",
+ " 'cochlear outer hair cell': {}}},\n",
+ " 'neuromast hair cell': {'anterior lateral line neuromast hair cell': {},\n",
+ " 'posterior lateral line neuromast hair cell': {}},\n",
+ " 'ear hair cell': {'vestibular hair cell': {'type II vestibular sensory cell': {'type 2 vestibular sensory cell of stato-acoustic epithelium': {},\n",
+ " 'type 2 vestibular sensory cell of epithelium of macula of utricle of membranous labyrinth': {},\n",
+ " 'type 2 vestibular sensory cell of epithelium of macula of saccule of membranous labyrinth': {},\n",
+ " 'type 2 vestibular sensory cell of epithelium of crista of ampulla of semicircular duct of membranous labyrinth': {}},\n",
+ " 'type I vestibular sensory cell': {'type 1 vestibular sensory cell of stato-acoustic epithelium': {},\n",
+ " 'type 1 vestibular sensory cell of epithelium of macula of utricle of membranous labyrinth': {},\n",
+ " 'type 1 vestibular sensory cell of epithelium of macula of saccule of membranous labyrinth': {},\n",
+ " 'type 1 vestibular sensory cell of epithelium of crista of ampulla of semicircular duct of membranous labyrinth': {}}},\n",
+ " 'tether cell': {},\n",
+ " 'macular hair cell': {},\n",
+ " 'cochlea auditory hair cell': {'cochlear inner hair cell': {},\n",
+ " 'cochlear outer hair cell': {}}}},\n",
+ " 'cutaneous/subcutaneous mechanoreceptor cell': {'hair-tylotrich neuron': {},\n",
+ " 'hair-down neuron': {}}},\n",
+ " 'extramedullary cell': {},\n",
+ " 'primary sensory neuron (sensu Teleostei)': {'Rohon-Beard neuron': {}},\n",
+ " 'olfactory bulb interneuron': {'olfactory granule cell': {},\n",
+ " 'periglomerular cell': {},\n",
+ " 'mitral cell': {}},\n",
+ " 'vomeronasal sensory neuron': {},\n",
+ " 'peripheral sensory neuron': {'sensory neuron of spinal nerve': {}},\n",
+ " 'vestibular afferent neuron': {'bouton vestibular afferent neuron': {},\n",
+ " 'calyx vestibular afferent neuron': {}}}},\n",
+ " 'efferent neuron': {'motor neuron': {'primary motor neuron (sensu Teleostei)': {'CAP motoneuron': {}},\n",
+ " 'secondary motor neuron (sensu Teleostei)': {},\n",
+ " 'somatomotor neuron': {'cranial somatomotor neuron': {},\n",
+ " 'lower motor neuron': {'spinal accessory motor neuron': {},\n",
+ " 'gamma motor neuron': {'dynamic gamma motor neuron': {},\n",
+ " 'static gamma motor neuron': {}},\n",
+ " 'alpha motor neuron': {},\n",
+ " 'anterior horn motor neuron': {},\n",
+ " 'beta motor neuron': {'static beta motor neuron': {},\n",
+ " 'dynamic beta motor neuron': {}}}},\n",
+ " 'visceromotor neuron': {'cranial visceromotor neuron': {}},\n",
+ " 'inhibitory motor neuron': {},\n",
+ " 'upper motor neuron': {},\n",
+ " 'spinal cord motor neuron': {'lateral motor column neuron': {},\n",
+ " 'anterior horn motor neuron': {}},\n",
+ " 'cranial motor neuron': {'branchiomotor neuron': {},\n",
+ " 'cranial somatomotor neuron': {},\n",
+ " 'cranial visceromotor neuron': {}},\n",
+ " 'brainstem motor neuron': {},\n",
+ " 'trigeminal motor neuron': {}},\n",
+ " 'Purkinje cell': {},\n",
+ " 'neuroendocrine cell': {'amine precursor uptake and decarboxylation cell': {'chromaffin cell': {'type EC enteroendocrine cell': {'type EC2 enteroendocrine cell': {},\n",
+ " 'type EC1 enteroendocrine cell': {},\n",
+ " 'type ECL enteroendocrine cell': {}},\n",
+ " 'chromophil cell of anterior pituitary gland': {'acidophil cell of pars distalis of adenohypophysis': {'mammosomatotroph': {},\n",
+ " 'mammotroph': {},\n",
+ " 'somatotroph': {}},\n",
+ " 'basophil cell of pars distalis of adenohypophysis': {'gonadtroph': {},\n",
+ " 'thyrotroph': {},\n",
+ " 'corticotroph': {}}},\n",
+ " 'interrenal chromaffin cell': {'interrenal norepinephrine type cell': {},\n",
+ " 'interrenal epinephrin secreting cell': {}},\n",
+ " 'chromaffin cell of paraganglion': {'chromaffin cell of paraaortic body': {}},\n",
+ " 'chromaffin cell of adrenal gland': {'adrenal medulla chromaffin cell': {'type II cell of adrenal medulla': {},\n",
+ " 'type I cell of adrenal medulla': {}},\n",
+ " 'adrenal cortex chromaffin cell': {}},\n",
+ " 'chromaffin cell of ovary': {'chromaffin cell of right ovary': {},\n",
+ " 'chromaffin cell of left ovary': {}}}},\n",
+ " 'paraganglial type 1 cell': {},\n",
+ " 'Feyrter cell': {'dense-core granulated cell of epithelium of trachea': {}},\n",
+ " 'magnocellular neurosecretory cell': {'oxytocin-secreting magnocellular cell': {},\n",
+ " 'vasopressin-secreting magnocellular cell': {}},\n",
+ " 'gonadotropin-releasing hormone neuron': {},\n",
+ " 'prostate neuroendocrine cell': {},\n",
+ " 'stomach neuroendocrine cell': {},\n",
+ " 'lung neuroendocrine cell': {'neuroendocrine cell of epithelium of lobar bronchus': {}},\n",
+ " 'parvocellular neurosecretory cell': {},\n",
+ " 'neuroendocrine cell of epithelium of crypt of Lieberkuhn': {}},\n",
+ " 'eurydendroid cell': {}},\n",
+ " 'nitrergic neuron': {},\n",
+ " 'primary neuron (sensu Teleostei)': {'primary sensory neuron (sensu Teleostei)': {'Rohon-Beard neuron': {}},\n",
+ " 'primary motor neuron (sensu Teleostei)': {'CAP motoneuron': {}},\n",
+ " 'primary interneuron (sensu Teleostei)': {}},\n",
+ " 'secondary neuron (sensu Teleostei)': {'secondary motor neuron (sensu Teleostei)': {}},\n",
+ " 'GABAergic neuron': {'GABAergic interneuron': {'basket cell': {'cerebellum basket cell': {},\n",
+ " 'neocortex basket cell': {'large basket cell': {},\n",
+ " 'nest basket cell': {},\n",
+ " 'small basket cell': {}},\n",
+ " 'dentate gyrus of hippocampal formation basket cell': {},\n",
+ " \"Ammon's horn basket cell\": {}},\n",
+ " 'Kolmer-Agduhr neuron': {},\n",
+ " 'cerebral cortex GABAergic interneuron': {'rosehip neuron': {},\n",
+ " 'neocortex basket cell': {'large basket cell': {},\n",
+ " 'nest basket cell': {},\n",
+ " 'small basket cell': {}},\n",
+ " 'dentate gyrus of hippocampal formation basket cell': {},\n",
+ " \"Ammon's horn basket cell\": {},\n",
+ " 'alpha7 GABAergic cortical interneuron (Mmus)': {},\n",
+ " 'lamp5 GABAergic cortical interneuron': {'canopy lamp5 GABAergic cortical interneuron (Mmus)': {},\n",
+ " 'L5,6 neurogliaform lamp5 GABAergic cortical interneuron (Mmus)': {},\n",
+ " 'neurogliaform lamp5 GABAergic cortical interneuron (Mmus)': {}},\n",
+ " 'sncg GABAergic cortical interneuron': {},\n",
+ " 'vip GABAergic cortical interneuron': {'L2/3 bipolar vip GABAergic cortical interneuron (Mmus)': {},\n",
+ " 'L5 vip cortical GABAergic interneuron (Mmus)': {},\n",
+ " 'L5/6 cck, vip cortical GABAergic interneuron (Mmus)': {}},\n",
+ " 'sst GABAergic cortical interneuron': {'L5 T-Martinotti sst GABAergic cortical interneuron (Mmus)': {},\n",
+ " 'L5 non-Martinotti sst GABAergic cortical interneuron (Mmus)': {},\n",
+ " 'L2/3/5 fan Martinotti sst GABAergic cortical interneuron (Mmus)': {},\n",
+ " 'L4 sst GABAergic cortical interneuron (Mmus)': {},\n",
+ " 'L6 tyrosine hydroxylase sst GABAergic cortical interneuron (Mmus)': {},\n",
+ " 'L5/6 non-Martinotti sst GABAergic cortical interneuron (Mmus)': {},\n",
+ " 'sst chodl GABAergic cortical interneuron': {'long-range projecting sst GABAergic cortical interneuron (Mmus)': {}},\n",
+ " 'oxytocin receptor sst GABAergic cortical interneuron': {}},\n",
+ " 'pvalb GABAergic cortical interneuron': {'chandelier pvalb GABAergic cortical interneuron': {}},\n",
+ " 'medial ganglionic eminence derived GABAergic cortical interneuron': {},\n",
+ " 'caudal ganglionic eminence derived GABAergic cortical interneuron': {},\n",
+ " 'L5/6 cck cortical GABAergic interneuron (Mmus)': {'L5/6 cck, vip cortical GABAergic interneuron (Mmus)': {}},\n",
+ " 'reelin GABAergic cortical interneuron': {}},\n",
+ " 'GABAnergic interplexiform cell': {},\n",
+ " 'cerebellar inhibitory GABAergic interneuron': {'cerebellar Golgi cell': {},\n",
+ " 'Lugaro cell': {}},\n",
+ " 'Martinotti neuron': {'L4 sst GABAergic cortical interneuron (Mmus)': {},\n",
+ " 'T Martinotti neuron': {'L5 T-Martinotti sst GABAergic cortical interneuron (Mmus)': {}},\n",
+ " 'fan Martinotti neuron': {'L2/3/5 fan Martinotti sst GABAergic cortical interneuron (Mmus)': {}}},\n",
+ " 'GABAergic amacrine cell': {}},\n",
+ " 'medium spiny neuron': {'direct pathway medium spiny neuron': {'matrix D1 medium spiny neuron': {},\n",
+ " 'striosomal D1 medium spiny neuron': {}},\n",
+ " 'indirect pathway medium spiny neuron': {'matrix D2 medium spiny neuron': {},\n",
+ " 'striosomal D2 medium spiny neuron': {}},\n",
+ " 'D1/D2-hybrid medium spiny neuron': {},\n",
+ " 'nucleus accumbens shell and olfactory tubercle D1 medium spiny neuron': {},\n",
+ " 'nucleus accumbens shell and olfactory tubercle D2 medium spiny neuron': {},\n",
+ " 'RXFP1-positive interface island D1-medium spiny neuron': {},\n",
+ " 'eccentric medium spiny neuron': {}},\n",
+ " 'meis2 expressing cortical GABAergic cell': {},\n",
+ " 'cartwheel cell': {}},\n",
+ " 'commissural neuron': {},\n",
+ " 'glutamatergic neuron': {'retinal bipolar neuron': {'ON-bipolar cell': {'rod bipolar cell': {'rod bipolar cell (sensu Mus)': {}},\n",
+ " 'ON-blue cone bipolar cell': {},\n",
+ " 'diffuse bipolar 4 cell': {},\n",
+ " 'diffuse bipolar 6 cell': {},\n",
+ " 'invaginating midget bipolar cell': {},\n",
+ " 'giant bipolar cell': {}},\n",
+ " 'OFF-bipolar cell': {'diffuse bipolar 1 cell': {},\n",
+ " 'diffuse bipolar 2 cell': {},\n",
+ " 'diffuse bipolar 3a cell': {},\n",
+ " 'diffuse bipolar 3b cell': {},\n",
+ " 'flat midget bipolar cell': {},\n",
+ " 'OFFx cell': {}},\n",
+ " 'cone retinal bipolar cell': {'type 1 cone bipolar cell (sensu Mus)': {},\n",
+ " 'type 2 cone bipolar cell (sensu Mus)': {},\n",
+ " 'type 3 cone bipolar cell (sensu Mus)': {'type 3a cone bipolar cell': {},\n",
+ " 'type 3b cone bipolar cell': {}},\n",
+ " 'type 4 cone bipolar cell (sensu Mus)': {},\n",
+ " 'type 5 cone bipolar cell (sensu Mus)': {'type 5a cone bipolar cell': {},\n",
+ " 'type 5b cone bipolar cell': {}},\n",
+ " 'type 6 cone bipolar cell (sensu Mus)': {},\n",
+ " 'type 7 cone bipolar cell (sensu Mus)': {},\n",
+ " 'type 8 cone bipolar cell (sensu Mus)': {},\n",
+ " 'type 9 cone bipolar cell (sensu Mus)': {}}},\n",
+ " 'upper motor neuron': {},\n",
+ " 'cerebellum glutamatergic neuron': {'cerebellar granule cell': {}},\n",
+ " 'intratelencephalic-projecting glutamatergic cortical neuron': {'L2/3-6 intratelencephalic projecting glutamatergic cortical neuron': {'L2/3 intratelencephalic projecting glutamatergic neuron of the primary motor cortex': {},\n",
+ " 'L4/5 intratelencephalic projecting glutamatergic neuron of the primary motor cortex': {},\n",
+ " 'L5 intratelencephalic projecting glutamatergic neuron of the primary motor cortex': {},\n",
+ " 'L6 intratelencephalic projecting glutamatergic neuron of the primary motor cortex': {'stellate L6 intratelencephalic projecting glutamatergic neuron of the primary motor cortex (Mmus)': {},\n",
+ " 'inverted L6 intratelencephalic projecting glutamatergic neuron of the primary motor cortex (Mmus)': {}}}},\n",
+ " 'extratelencephalic-projecting glutamatergic cortical neuron': {'L5 extratelencephalic projecting glutamatergic cortical neuron': {'Betz cell': {'Betz upper motor neuron': {},\n",
+ " 'spinal interneuron synapsing Betz cell': {}},\n",
+ " 'non-medulla, extratelencephalic-projecting glutamatergic neuron of the primary motor cortex': {},\n",
+ " 'medulla-projecting glutamatergic neuron of the primary motor cortex': {}},\n",
+ " 'von Economo neuron': {}},\n",
+ " 'near-projecting glutamatergic cortical neuron': {'L5/6 near-projecting glutamatergic neuron of the primary motor cortex': {}},\n",
+ " 'corticothalamic-projecting glutamatergic cortical neuron': {'L6 corticothalamic-projecting glutamatergic cortical neuron': {'corticothalamic VAL/VM projecting glutamatergic neuron of the primary motor cortex': {}}},\n",
+ " 'L6b glutamatergic cortical neuron': {'L6b subplate glutamatergic neuron of the primary motor cortex': {}},\n",
+ " 'amygdala excitatory neuron': {},\n",
+ " 'thalamic excitatory neuron': {},\n",
+ " 'unipolar brush cell': {}},\n",
+ " 'serotonergic neuron': {},\n",
+ " 'bistratified cell': {'bistratified retinal ganglion cell': {'G3 retinal ganglion cell': {},\n",
+ " 'G7 retinal ganglion cell': {},\n",
+ " 'retinal ganglion cell D1': {},\n",
+ " 'retinal ganglion cell D2': {},\n",
+ " 'M11 retinal ganglion cell': {},\n",
+ " 'M12 retinal ganglion cell': {},\n",
+ " 'M13 retinal ganglion cell': {},\n",
+ " 'M14 retinal ganglion cell': {},\n",
+ " 'small bistratified retinal ganglion cell': {}},\n",
+ " 'bistratified retinal amacrine cell': {'A2 amacrine cell': {},\n",
+ " 'flat bistratified amacrine cell': {},\n",
+ " 'A2-like amacrine cell': {},\n",
+ " 'diffuse bistratified amacrine cell': {},\n",
+ " 'DAPI-3 amacrine cell': {},\n",
+ " 'asymmetric bistratified amacrine cell': {},\n",
+ " 'wavy bistratified amacrine cell': {}}},\n",
+ " 'visual system neuron': {'retinal bipolar neuron': {'ON-bipolar cell': {'rod bipolar cell': {'rod bipolar cell (sensu Mus)': {}},\n",
+ " 'ON-blue cone bipolar cell': {},\n",
+ " 'diffuse bipolar 4 cell': {},\n",
+ " 'diffuse bipolar 6 cell': {},\n",
+ " 'invaginating midget bipolar cell': {},\n",
+ " 'giant bipolar cell': {}},\n",
+ " 'OFF-bipolar cell': {'diffuse bipolar 1 cell': {},\n",
+ " 'diffuse bipolar 2 cell': {},\n",
+ " 'diffuse bipolar 3a cell': {},\n",
+ " 'diffuse bipolar 3b cell': {},\n",
+ " 'flat midget bipolar cell': {},\n",
+ " 'OFFx cell': {}},\n",
+ " 'cone retinal bipolar cell': {'type 1 cone bipolar cell (sensu Mus)': {},\n",
+ " 'type 2 cone bipolar cell (sensu Mus)': {},\n",
+ " 'type 3 cone bipolar cell (sensu Mus)': {'type 3a cone bipolar cell': {},\n",
+ " 'type 3b cone bipolar cell': {}},\n",
+ " 'type 4 cone bipolar cell (sensu Mus)': {},\n",
+ " 'type 5 cone bipolar cell (sensu Mus)': {'type 5a cone bipolar cell': {},\n",
+ " 'type 5b cone bipolar cell': {}},\n",
+ " 'type 6 cone bipolar cell (sensu Mus)': {},\n",
+ " 'type 7 cone bipolar cell (sensu Mus)': {},\n",
+ " 'type 8 cone bipolar cell (sensu Mus)': {},\n",
+ " 'type 9 cone bipolar cell (sensu Mus)': {}}}},\n",
+ " 'cardiac neuron': {},\n",
+ " 'galanergic neuron': {},\n",
+ " 'hypocretin-secreting neuron': {},\n",
+ " 'histaminergic neuron': {},\n",
+ " 'spiral ganglion neuron': {'type 1 spiral ganglion neuron': {},\n",
+ " 'type 2 spiral ganglion neuron': {}},\n",
+ " 'olfactory bulb tufted cell': {},\n",
+ " 'glycinergic neuron': {'cartwheel cell': {},\n",
+ " 'glycinergic amacrine cell': {}},\n",
+ " 'central nervous system neuron': {'CNS interneuron': {'CNS short range interneuron': {},\n",
+ " 'CNS long range interneuron': {},\n",
+ " 'local interneuron': {},\n",
+ " 'spinal cord interneuron': {'Kolmer-Agduhr neuron': {},\n",
+ " 'dorsal horn interneuron': {},\n",
+ " 'spinal cord ventral column interneuron': {}},\n",
+ " 'cortical interneuron': {'cerebral cortex GABAergic interneuron': {'rosehip neuron': {},\n",
+ " 'neocortex basket cell': {'large basket cell': {},\n",
+ " 'nest basket cell': {},\n",
+ " 'small basket cell': {}},\n",
+ " 'dentate gyrus of hippocampal formation basket cell': {},\n",
+ " \"Ammon's horn basket cell\": {},\n",
+ " 'alpha7 GABAergic cortical interneuron (Mmus)': {},\n",
+ " 'lamp5 GABAergic cortical interneuron': {'canopy lamp5 GABAergic cortical interneuron (Mmus)': {},\n",
+ " 'L5,6 neurogliaform lamp5 GABAergic cortical interneuron (Mmus)': {},\n",
+ " 'neurogliaform lamp5 GABAergic cortical interneuron (Mmus)': {}},\n",
+ " 'sncg GABAergic cortical interneuron': {},\n",
+ " 'vip GABAergic cortical interneuron': {'L2/3 bipolar vip GABAergic cortical interneuron (Mmus)': {},\n",
+ " 'L5 vip cortical GABAergic interneuron (Mmus)': {},\n",
+ " 'L5/6 cck, vip cortical GABAergic interneuron (Mmus)': {}},\n",
+ " 'sst GABAergic cortical interneuron': {'L5 T-Martinotti sst GABAergic cortical interneuron (Mmus)': {},\n",
+ " 'L5 non-Martinotti sst GABAergic cortical interneuron (Mmus)': {},\n",
+ " 'L2/3/5 fan Martinotti sst GABAergic cortical interneuron (Mmus)': {},\n",
+ " 'L4 sst GABAergic cortical interneuron (Mmus)': {},\n",
+ " 'L6 tyrosine hydroxylase sst GABAergic cortical interneuron (Mmus)': {},\n",
+ " 'L5/6 non-Martinotti sst GABAergic cortical interneuron (Mmus)': {},\n",
+ " 'sst chodl GABAergic cortical interneuron': {'long-range projecting sst GABAergic cortical interneuron (Mmus)': {}},\n",
+ " 'oxytocin receptor sst GABAergic cortical interneuron': {}},\n",
+ " 'pvalb GABAergic cortical interneuron': {'chandelier pvalb GABAergic cortical interneuron': {}},\n",
+ " 'medial ganglionic eminence derived GABAergic cortical interneuron': {},\n",
+ " 'caudal ganglionic eminence derived GABAergic cortical interneuron': {},\n",
+ " 'L5/6 cck cortical GABAergic interneuron (Mmus)': {'L5/6 cck, vip cortical GABAergic interneuron (Mmus)': {}},\n",
+ " 'reelin GABAergic cortical interneuron': {}},\n",
+ " 'hippocampal interneuron': {'dentate gyrus of hippocampal formation basket cell': {},\n",
+ " \"Ammon's horn basket cell\": {}}},\n",
+ " 'olfactory bulb interneuron': {'olfactory granule cell': {},\n",
+ " 'periglomerular cell': {},\n",
+ " 'mitral cell': {}},\n",
+ " 'cerebellum basket cell': {},\n",
+ " 'cerebellar inhibitory GABAergic interneuron': {'cerebellar Golgi cell': {},\n",
+ " 'Lugaro cell': {}},\n",
+ " 'unipolar brush cell': {}},\n",
+ " 'Cajal-Retzius cell': {},\n",
+ " 'raphe nuclei neuron': {},\n",
+ " 'neuron of the dorsal spinal cord': {},\n",
+ " 'neuron of the ventral spinal cord': {},\n",
+ " 'neuron of the substantia nigra': {},\n",
+ " 'monostratified cell': {},\n",
+ " 'cranial visceromotor neuron': {},\n",
+ " 'cerebral cortex neuron': {'cortical granule cell': {'hippocampal granule cell': {'dentate gyrus granule cell': {}}},\n",
+ " 'hippocampal neuron': {'hippocampal granule cell': {'dentate gyrus granule cell': {}},\n",
+ " 'hippocampal interneuron': {'dentate gyrus of hippocampal formation basket cell': {},\n",
+ " \"Ammon's horn basket cell\": {}},\n",
+ " 'hippocampal pyramidal neuron': {},\n",
+ " 'hippocampal CA1-3 neuron': {},\n",
+ " 'dentate gyrus neuron': {'dentate gyrus of hippocampal formation basket cell': {},\n",
+ " 'dentate gyrus granule cell': {},\n",
+ " 'dentate gyrus of hippocampal formation stellate cell': {},\n",
+ " 'dentate gyrus kisspeptin neuron': {}}},\n",
+ " 'cortical interneuron': {'cerebral cortex GABAergic interneuron': {'rosehip neuron': {},\n",
+ " 'neocortex basket cell': {'large basket cell': {},\n",
+ " 'nest basket cell': {},\n",
+ " 'small basket cell': {}},\n",
+ " 'dentate gyrus of hippocampal formation basket cell': {},\n",
+ " \"Ammon's horn basket cell\": {},\n",
+ " 'alpha7 GABAergic cortical interneuron (Mmus)': {},\n",
+ " 'lamp5 GABAergic cortical interneuron': {'canopy lamp5 GABAergic cortical interneuron (Mmus)': {},\n",
+ " 'L5,6 neurogliaform lamp5 GABAergic cortical interneuron (Mmus)': {},\n",
+ " 'neurogliaform lamp5 GABAergic cortical interneuron (Mmus)': {}},\n",
+ " 'sncg GABAergic cortical interneuron': {},\n",
+ " 'vip GABAergic cortical interneuron': {'L2/3 bipolar vip GABAergic cortical interneuron (Mmus)': {},\n",
+ " 'L5 vip cortical GABAergic interneuron (Mmus)': {},\n",
+ " 'L5/6 cck, vip cortical GABAergic interneuron (Mmus)': {}},\n",
+ " 'sst GABAergic cortical interneuron': {'L5 T-Martinotti sst GABAergic cortical interneuron (Mmus)': {},\n",
+ " 'L5 non-Martinotti sst GABAergic cortical interneuron (Mmus)': {},\n",
+ " 'L2/3/5 fan Martinotti sst GABAergic cortical interneuron (Mmus)': {},\n",
+ " 'L4 sst GABAergic cortical interneuron (Mmus)': {},\n",
+ " 'L6 tyrosine hydroxylase sst GABAergic cortical interneuron (Mmus)': {},\n",
+ " 'L5/6 non-Martinotti sst GABAergic cortical interneuron (Mmus)': {},\n",
+ " 'sst chodl GABAergic cortical interneuron': {'long-range projecting sst GABAergic cortical interneuron (Mmus)': {}},\n",
+ " 'oxytocin receptor sst GABAergic cortical interneuron': {}},\n",
+ " 'pvalb GABAergic cortical interneuron': {'chandelier pvalb GABAergic cortical interneuron': {}},\n",
+ " 'medial ganglionic eminence derived GABAergic cortical interneuron': {},\n",
+ " 'caudal ganglionic eminence derived GABAergic cortical interneuron': {},\n",
+ " 'L5/6 cck cortical GABAergic interneuron (Mmus)': {'L5/6 cck, vip cortical GABAergic interneuron (Mmus)': {}},\n",
+ " 'reelin GABAergic cortical interneuron': {}},\n",
+ " 'hippocampal interneuron': {'dentate gyrus of hippocampal formation basket cell': {},\n",
+ " \"Ammon's horn basket cell\": {}}},\n",
+ " 'intratelencephalic-projecting glutamatergic cortical neuron': {'L2/3-6 intratelencephalic projecting glutamatergic cortical neuron': {'L2/3 intratelencephalic projecting glutamatergic neuron of the primary motor cortex': {},\n",
+ " 'L4/5 intratelencephalic projecting glutamatergic neuron of the primary motor cortex': {},\n",
+ " 'L5 intratelencephalic projecting glutamatergic neuron of the primary motor cortex': {},\n",
+ " 'L6 intratelencephalic projecting glutamatergic neuron of the primary motor cortex': {'stellate L6 intratelencephalic projecting glutamatergic neuron of the primary motor cortex (Mmus)': {},\n",
+ " 'inverted L6 intratelencephalic projecting glutamatergic neuron of the primary motor cortex (Mmus)': {}}}},\n",
+ " 'extratelencephalic-projecting glutamatergic cortical neuron': {'L5 extratelencephalic projecting glutamatergic cortical neuron': {'Betz cell': {'Betz upper motor neuron': {},\n",
+ " 'spinal interneuron synapsing Betz cell': {}},\n",
+ " 'non-medulla, extratelencephalic-projecting glutamatergic neuron of the primary motor cortex': {},\n",
+ " 'medulla-projecting glutamatergic neuron of the primary motor cortex': {}},\n",
+ " 'von Economo neuron': {}},\n",
+ " 'near-projecting glutamatergic cortical neuron': {'L5/6 near-projecting glutamatergic neuron of the primary motor cortex': {}},\n",
+ " 'corticothalamic-projecting glutamatergic cortical neuron': {'L6 corticothalamic-projecting glutamatergic cortical neuron': {'corticothalamic VAL/VM projecting glutamatergic neuron of the primary motor cortex': {}}},\n",
+ " 'L6b glutamatergic cortical neuron': {'L6b subplate glutamatergic neuron of the primary motor cortex': {}},\n",
+ " 'meis2 expressing cortical GABAergic cell': {},\n",
+ " 'cerebral cortex pyramidal neuron': {'hippocampal pyramidal neuron': {},\n",
+ " 'primary motor cortex pyramidal cell': {'Betz cell': {'Betz upper motor neuron': {},\n",
+ " 'spinal interneuron synapsing Betz cell': {}},\n",
+ " 'Meynert cell': {},\n",
+ " 'non-medulla, extratelencephalic-projecting glutamatergic neuron of the primary motor cortex': {},\n",
+ " 'medulla-projecting glutamatergic neuron of the primary motor cortex': {},\n",
+ " 'L6 intratelencephalic projecting glutamatergic neuron of the primary motor cortex': {'stellate L6 intratelencephalic projecting glutamatergic neuron of the primary motor cortex (Mmus)': {},\n",
+ " 'inverted L6 intratelencephalic projecting glutamatergic neuron of the primary motor cortex (Mmus)': {}},\n",
+ " 'corticothalamic VAL/VM projecting glutamatergic neuron of the primary motor cortex': {}},\n",
+ " 'L5 extratelencephalic projecting glutamatergic cortical neuron': {'Betz cell': {'Betz upper motor neuron': {},\n",
+ " 'spinal interneuron synapsing Betz cell': {}},\n",
+ " 'non-medulla, extratelencephalic-projecting glutamatergic neuron of the primary motor cortex': {},\n",
+ " 'medulla-projecting glutamatergic neuron of the primary motor cortex': {}}}},\n",
+ " 'spinal cord motor neuron': {'lateral motor column neuron': {},\n",
+ " 'anterior horn motor neuron': {}},\n",
+ " 'magnocellular neurosecretory cell': {'oxytocin-secreting magnocellular cell': {},\n",
+ " 'vasopressin-secreting magnocellular cell': {}},\n",
+ " 'neuron of the forebrain': {'olfactory granule cell': {},\n",
+ " 'cortical granule cell': {'hippocampal granule cell': {'dentate gyrus granule cell': {}}},\n",
+ " 'striatum neuron': {'Island of Calleja granule cell': {}},\n",
+ " 'dentate gyrus of hippocampal formation stellate cell': {}},\n",
+ " 'retrotrapezoid nucleus neuron': {},\n",
+ " 'medium spiny neuron': {'direct pathway medium spiny neuron': {'matrix D1 medium spiny neuron': {},\n",
+ " 'striosomal D1 medium spiny neuron': {}},\n",
+ " 'indirect pathway medium spiny neuron': {'matrix D2 medium spiny neuron': {},\n",
+ " 'striosomal D2 medium spiny neuron': {}},\n",
+ " 'D1/D2-hybrid medium spiny neuron': {},\n",
+ " 'nucleus accumbens shell and olfactory tubercle D1 medium spiny neuron': {},\n",
+ " 'nucleus accumbens shell and olfactory tubercle D2 medium spiny neuron': {},\n",
+ " 'RXFP1-positive interface island D1-medium spiny neuron': {},\n",
+ " 'eccentric medium spiny neuron': {}},\n",
+ " 'lateral ventricle neuron': {},\n",
+ " 'cerebellar neuron': {'Purkinje cell': {},\n",
+ " 'cerebellar stellate cell': {},\n",
+ " 'cerebellum basket cell': {},\n",
+ " 'cerebellum glutamatergic neuron': {'cerebellar granule cell': {}},\n",
+ " 'cerebellar inhibitory GABAergic interneuron': {'cerebellar Golgi cell': {},\n",
+ " 'Lugaro cell': {}}},\n",
+ " 'spinal cord medial motor column neuron': {},\n",
+ " 'brainstem motor neuron': {},\n",
+ " 'midbrain dopaminergic neuron': {},\n",
+ " 'amygdala excitatory neuron': {},\n",
+ " 'thalamic excitatory neuron': {},\n",
+ " 'mammillary body neuron': {},\n",
+ " 'reticulospinal neuron': {},\n",
+ " 'amygdala pyramidal neuron': {},\n",
+ " 'hypothalamus kisspeptin neuron': {'KNDy neuron': {'arcuate nucleus of hypothalamus KNDy neuron': {},\n",
+ " 'rostral periventricular region of the third ventricle KNDy neuron': {}}},\n",
+ " 'octopus cell of the mammalian cochlear nucleus': {},\n",
+ " 'cartwheel cell': {},\n",
+ " 'bushy cell': {'spherical bushy cell': {}, 'globular bushy cell': {}},\n",
+ " 'koniocellular cell': {}},\n",
+ " 'lateral line ganglion neuron': {'anterior lateral line ganglion neuron': {},\n",
+ " 'posterior lateral line ganglion neuron': {}},\n",
+ " 'peripheral nervous system neuron': {'autonomic neuron': {'enteric neuron': {},\n",
+ " 'parasympathetic neuron': {},\n",
+ " 'sympathetic neuron': {'sympathetic noradrenergic neuron': {},\n",
+ " 'sympathetic cholinergic neuron': {}}},\n",
+ " 'kidney nerve cell': {},\n",
+ " 'peripheral sensory neuron': {'sensory neuron of spinal nerve': {}}},\n",
+ " 'hippocampal CA4 neuron': {},\n",
+ " 'midbrain-derived inhibitory neuron': {},\n",
+ " 'kisspeptin neuron': {'hypothalamus kisspeptin neuron': {'KNDy neuron': {'arcuate nucleus of hypothalamus KNDy neuron': {},\n",
+ " 'rostral periventricular region of the third ventricle KNDy neuron': {}}},\n",
+ " 'dentate gyrus kisspeptin neuron': {}},\n",
+ " 'somatosensory neuron': {'touch receptor cell': {},\n",
+ " 'Rohon-Beard neuron': {},\n",
+ " 'sensory neuron of dorsal root ganglion': {},\n",
+ " 'trigeminal sensory neuron': {}},\n",
+ " 'trigeminal neuron': {'trigeminal sensory neuron': {},\n",
+ " 'trigeminal motor neuron': {}},\n",
+ " 'catecholaminergic neuron': {'adrenergic neuron': {},\n",
+ " 'dopaminergic neuron': {'dopamanergic interplexiform cell': {},\n",
+ " 'midbrain dopaminergic neuron': {}},\n",
+ " 'noradrenergic neuron': {'sympathetic noradrenergic neuron': {}}}},\n",
+ " 'pinealocyte': {'type I pinealocyte': {}, 'type II pinealocyte': {}},\n",
+ " 'choroid plexus epithelial cell': {},\n",
+ " 'leptomeningeal cell': {},\n",
+ " 'compound eye cone cell': {'posterior cone cell (sensu Endopterygota)': {},\n",
+ " 'anterior cone cell (sensu Endopterygota)': {},\n",
+ " 'equatorial cone cell (sensu Endopterygota)': {}},\n",
+ " 'central nervous system macrophage': {'microglial cell': {'immature microglial cell': {},\n",
+ " 'mature microglial cell': {}},\n",
+ " 'meningeal macrophage': {},\n",
+ " 'choroid-plexus macrophage': {},\n",
+ " 'perivascular macrophage': {}},\n",
+ " 'basal cell of olfactory epithelium': {'olfactory epithelial supporting cell': {},\n",
+ " 'globose cell of olfactory epithelium': {},\n",
+ " 'basal proper cell of olfactory epithelium': {}},\n",
+ " 'cerebellar granule cell precursor': {},\n",
+ " 'fibroblast of choroid plexus': {},\n",
+ " 'central nervous system pericyte': {'brain pericyte': {}},\n",
+ " 'smooth muscle cell of the brain vasculature': {},\n",
+ " 'intrafusal muscle fiber': {'nuclear chain fiber': {},\n",
+ " 'nuclear bag fiber': {'dynamic nuclear bag fiber': {},\n",
+ " 'static nuclear bag fiber': {}}},\n",
+ " 'retinal cell': {'amacrine cell': {'flag amacrine cell': {'flag A amacrine cell': {},\n",
+ " 'flag B amacrine cell': {}},\n",
+ " 'AB diffuse-1 amacrine cell': {},\n",
+ " 'AB diffuse-2 amacrine cell': {},\n",
+ " 'spider amacrine cell': {},\n",
+ " 'monostratified amacrine cell': {},\n",
+ " 'broad diffuse amacrine cell': {},\n",
+ " 'recurving diffuse amacrine cell': {},\n",
+ " 'starburst amacrine cell': {},\n",
+ " 'diffuse multistratified amacrine cell': {},\n",
+ " 'AB broad diffuse-1 amacrine cell': {},\n",
+ " 'AB broad diffuse-2 amacrine cell': {},\n",
+ " 'fountain amacrine cell': {},\n",
+ " 'WF1 amacrine cell': {},\n",
+ " 'WF2 amacrine cell': {},\n",
+ " 'WF3-1 amacrine cell': {},\n",
+ " 'WF3-2 amacrine cell': {},\n",
+ " 'WF4 amacrine cell': {},\n",
+ " 'indoleamine-accumulating amacrine cell': {},\n",
+ " 'bistratified retinal amacrine cell': {'A2 amacrine cell': {},\n",
+ " 'flat bistratified amacrine cell': {},\n",
+ " 'A2-like amacrine cell': {},\n",
+ " 'diffuse bistratified amacrine cell': {},\n",
+ " 'DAPI-3 amacrine cell': {},\n",
+ " 'asymmetric bistratified amacrine cell': {},\n",
+ " 'wavy bistratified amacrine cell': {}},\n",
+ " 'narrow field retinal amacrine cell': {},\n",
+ " 'medium field retinal amacrine cell': {},\n",
+ " 'wide field retinal amacrine cell': {},\n",
+ " 'displaced amacrine cell': {},\n",
+ " 'GABAergic amacrine cell': {},\n",
+ " 'glycinergic amacrine cell': {}},\n",
+ " 'Mueller cell': {},\n",
+ " 'retinal bipolar neuron': {'ON-bipolar cell': {'rod bipolar cell': {'rod bipolar cell (sensu Mus)': {}},\n",
+ " 'ON-blue cone bipolar cell': {},\n",
+ " 'diffuse bipolar 4 cell': {},\n",
+ " 'diffuse bipolar 6 cell': {},\n",
+ " 'invaginating midget bipolar cell': {},\n",
+ " 'giant bipolar cell': {}},\n",
+ " 'OFF-bipolar cell': {'diffuse bipolar 1 cell': {},\n",
+ " 'diffuse bipolar 2 cell': {},\n",
+ " 'diffuse bipolar 3a cell': {},\n",
+ " 'diffuse bipolar 3b cell': {},\n",
+ " 'flat midget bipolar cell': {},\n",
+ " 'OFFx cell': {}},\n",
+ " 'cone retinal bipolar cell': {'type 1 cone bipolar cell (sensu Mus)': {},\n",
+ " 'type 2 cone bipolar cell (sensu Mus)': {},\n",
+ " 'type 3 cone bipolar cell (sensu Mus)': {'type 3a cone bipolar cell': {},\n",
+ " 'type 3b cone bipolar cell': {}},\n",
+ " 'type 4 cone bipolar cell (sensu Mus)': {},\n",
+ " 'type 5 cone bipolar cell (sensu Mus)': {'type 5a cone bipolar cell': {},\n",
+ " 'type 5b cone bipolar cell': {}},\n",
+ " 'type 6 cone bipolar cell (sensu Mus)': {},\n",
+ " 'type 7 cone bipolar cell (sensu Mus)': {},\n",
+ " 'type 8 cone bipolar cell (sensu Mus)': {},\n",
+ " 'type 9 cone bipolar cell (sensu Mus)': {}}},\n",
+ " 'retinal melanocyte': {},\n",
+ " 'retinal blood vessel endothelial cell': {},\n",
+ " 'retinal pigment epithelial cell': {},\n",
+ " 'compound eye retinal cell': {},\n",
+ " 'interplexiform cell': {'dopamanergic interplexiform cell': {},\n",
+ " 'GABAnergic interplexiform cell': {}},\n",
+ " 'retinoblast': {},\n",
+ " 'retinal astrocyte': {}},\n",
+ " 'forebrain neuroblast': {},\n",
+ " 'mesothelial cell of dura mater': {},\n",
+ " 'cerebral cortex endothelial cell': {},\n",
+ " 'pituitary gland cell': {'chromophil cell of anterior pituitary gland': {'acidophil cell of pars distalis of adenohypophysis': {'mammosomatotroph': {},\n",
+ " 'mammotroph': {},\n",
+ " 'somatotroph': {}},\n",
+ " 'basophil cell of pars distalis of adenohypophysis': {'gonadtroph': {},\n",
+ " 'thyrotroph': {},\n",
+ " 'corticotroph': {}}},\n",
+ " 'folliculostellate cell': {'folliculostellate cell of pars distalis of adenohypophysis': {}},\n",
+ " 'pituicyte': {}},\n",
+ " 'hypothalamus cell': {'parvocellular neurosecretory cell': {}},\n",
+ " 'brain microvascular endothelial cell': {},\n",
+ " 'mesothelial fibroblast of the leptomeninx': {'vascular leptomeningeal cell': {'vascular leptomeningeal cell (Mmus)': {}},\n",
+ " 'arachnoid barrier cell': {}},\n",
+ " 'hypendymal cell': {},\n",
+ " 'taste receptor cell of tongue': {}},\n",
+ " 'connective tissue cell': {'fibroblast': {'fibroblast neural crest derived': {'keratocyte': {}},\n",
+ " 'reticular cell': {'fibroblastic reticular cell': {'lymph node fibroblastic reticular cell': {'lymph node marginal reticular cell': {},\n",
+ " 'B cell zone reticular cell': {},\n",
+ " 'T cell zone reticular cell': {},\n",
+ " 'medullary reticular cell': {}}},\n",
+ " 'reticular cell of splenic cord': {}},\n",
+ " 'hepatic stellate cell': {},\n",
+ " 'perijunctional fibroblast': {},\n",
+ " 'marrow fibroblast': {},\n",
+ " 'pulmonary interstitial fibroblast': {'alveolar type 1 fibroblast cell': {},\n",
+ " 'alveolar type 2 fibroblast cell': {}},\n",
+ " 'preadipocyte': {'brown preadipocyte': {},\n",
+ " 'mesenteric preadipocyte': {},\n",
+ " 'omentum preadipocyte': {},\n",
+ " 'preadipocyte of the breast': {},\n",
+ " 'perirenal preadipocyte': {},\n",
+ " 'visceral preadipocyte': {},\n",
+ " 'subcutaneous preadipocyte': {}},\n",
+ " 'pancreatic stellate cell': {},\n",
+ " 'fibroblast of cardiac tissue': {'cardiac ventricle fibroblast': {},\n",
+ " 'cardiac atrium fibroblast': {}},\n",
+ " 'fibroblast of choroid plexus': {},\n",
+ " 'fibroblast of the conjunctiva': {},\n",
+ " 'fibroblast of gingiva': {},\n",
+ " 'fibroblast of lung': {'bronchus fibroblast of lung': {},\n",
+ " 'alveolar type 1 fibroblast cell': {},\n",
+ " 'alveolar type 2 fibroblast cell': {},\n",
+ " 'lung perichondrial fibroblast': {}},\n",
+ " 'fibroblast of lymphatic vessel': {},\n",
+ " 'fibroblast of mammary gland': {},\n",
+ " 'fibroblast of periodontium': {'fibroblast of peridontal ligament': {}},\n",
+ " 'fibroblast of pulmonary artery': {},\n",
+ " 'fibroblast of villous mesenchyme': {},\n",
+ " 'skin fibroblast': {'fibroblast of dermis': {'fibroblast of papillary layer of dermis': {},\n",
+ " 'fibroblast of the reticular layer of dermis': {}},\n",
+ " 'fibroblast of skin of back': {'fibroblast of upper back skin': {}},\n",
+ " 'foreskin fibroblast': {},\n",
+ " 'fibroblast of pedal digit skin': {},\n",
+ " 'fibroblast of skin of abdomen': {},\n",
+ " 'fibroblast of upper leg skin': {},\n",
+ " 'fibroblast of arm': {},\n",
+ " 'fibroblast of skin of scalp': {}},\n",
+ " 'thymic fibroblast type 1': {},\n",
+ " 'thymic fibroblast type 2': {},\n",
+ " 'hepatic portal fibroblast': {},\n",
+ " 'fibroblast of connective tissue of prostate': {},\n",
+ " 'fibroblast of outer membrane of prostatic capsule': {},\n",
+ " 'fibroblast of subepithelial connective tissue of prostatic gland': {},\n",
+ " 'fibroblast of areolar connective tissue': {},\n",
+ " 'fibroblast of connective tissue of nonglandular part of prostate': {},\n",
+ " 'fibroblast of connective tissue of glandular part of prostate': {},\n",
+ " 'fibroblast of tunica adventitia of artery': {'fibroblast of the aortic adventitia': {}},\n",
+ " 'fibroblast of dense regular elastic tissue': {},\n",
+ " 'kidney interstitial fibroblast': {'renal medullary fibroblast': {},\n",
+ " 'renal cortical fibroblast': {}},\n",
+ " 'muscle fibroblast': {'skeletal muscle fibroblast': {}},\n",
+ " 'embryonic fibroblast': {},\n",
+ " 'splenic fibroblast': {'reticular cell of splenic cord': {}},\n",
+ " 'ovarian fibroblast': {},\n",
+ " 'pericardium fibroblast': {},\n",
+ " 'gallbladder fibroblast': {},\n",
+ " 'optic choroid fibroblast': {},\n",
+ " 'fibroblast of breast': {'preadipocyte of the breast': {}},\n",
+ " 'mesothelial fibroblast': {'mesothelial fibroblast of the leptomeninx': {'vascular leptomeningeal cell': {'vascular leptomeningeal cell (Mmus)': {}},\n",
+ " 'arachnoid barrier cell': {}}},\n",
+ " 'perichondrial fibroblast': {'lung perichondrial fibroblast': {}}},\n",
+ " 'chondroblast': {},\n",
+ " 'osteoblast': {'cementoblast': {},\n",
+ " 'terminally differentiated osteoblast': {},\n",
+ " 'non-terminally differentiated osteoblast': {},\n",
+ " 'femural osteoblast': {},\n",
+ " 'calvarial osteoblast': {}},\n",
+ " 'mesenchymal stem cell': {'metanephric mesenchyme stem cell': {},\n",
+ " 'hair follicle dermal papilla cell': {'hair follicle dermal papilla cell of scalp': {}},\n",
+ " 'nephrogenic mesenchyme stem cell': {},\n",
+ " 'angioblastic mesenchymal cell': {'adult endothelial progenitor cell': {'colony forming unit β Hill cell': {},\n",
+ " 'circulating angiogenic cell': {},\n",
+ " 'endothelial colony forming cell': {}}},\n",
+ " 'amnion mesenchymal stem cell': {},\n",
+ " 'mesenchymal stem cell of the bone marrow': {'mesenchymal stem cell of femoral bone marrow': {}},\n",
+ " 'chorionic membrane mesenchymal stem cell': {},\n",
+ " 'mesenchymal stem cell of umbilical cord': {\"mesenchymal stem cell of Wharton's jelly\": {}},\n",
+ " 'mesenchymal stem cell of adipose tissue': {'mesenchymal stem cell of abdominal adipose tissue': {}},\n",
+ " 'hepatic mesenchymal stem cell': {},\n",
+ " 'vertebral mesenchymal stem cell': {},\n",
+ " 'amniotic stem cell': {},\n",
+ " 'mesenchymal lymphangioblast': {},\n",
+ " 'placental amniotic mesenchymal stromal cell': {}},\n",
+ " 'fat cell': {'white fat cell': {},\n",
+ " 'brown fat cell': {},\n",
+ " 'beige adipocyte': {},\n",
+ " 'neural crest derived fat cell': {},\n",
+ " 'subcutaneous fat cell': {},\n",
+ " 'adipocyte of omentum tissue': {},\n",
+ " 'perirenal adipocyte': {},\n",
+ " 'adipocyte of breast': {},\n",
+ " 'epicardial adipocyte': {'adipocyte of epicardial fat of right ventricle': {},\n",
+ " 'adipocyte of epicardial fat of left ventricle': {}}},\n",
+ " 'odontocyte': {},\n",
+ " 'myofibroblast cell': {'fibroblastic reticular cell': {'lymph node fibroblastic reticular cell': {'lymph node marginal reticular cell': {},\n",
+ " 'B cell zone reticular cell': {},\n",
+ " 'T cell zone reticular cell': {},\n",
+ " 'medullary reticular cell': {}}},\n",
+ " 'kidney interstitial myofibroblast': {},\n",
+ " 'secondary crest myofibroblast': {}},\n",
+ " 'GLR cell': {},\n",
+ " 'connective tissue type mast cell': {},\n",
+ " 'stromal cell': {'fibrocyte': {'tendon cell': {},\n",
+ " 'otic fibrocyte': {'type 2 otic fibrocyte': {},\n",
+ " 'type 5 otic fibrocyte': {},\n",
+ " 'type 4 otic fibrocyte': {},\n",
+ " 'type 3 otic fibrocyte': {},\n",
+ " 'type 1 otic fibrocyte': {}},\n",
+ " 'fibrocyte of adventitia of ureter': {},\n",
+ " 'kidney interstitial fibrocyte': {}},\n",
+ " 'hyalocyte': {},\n",
+ " 'extracellular matrix secreting cell': {'glycosaminoglycan secreting cell': {'chondrocyte': {'hypertrophic chondrocyte': {},\n",
+ " 'columnar chondrocyte': {},\n",
+ " 'tracheobronchial chondrocyte': {},\n",
+ " 'growth plate cartilage chondrocyte': {},\n",
+ " 'articular chondrocyte': {'periarticular chondrocyte': {},\n",
+ " 'articular chondrocyte of knee joint': {}}}},\n",
+ " 'hepatic stellate cell': {},\n",
+ " 'cuticle secreting cell': {'socket cell (sensu Nematoda)': {},\n",
+ " 'pore cell': {}},\n",
+ " 'eggshell secreting cell': {},\n",
+ " 'glycocalyx secreting cell': {},\n",
+ " 'collagen secreting cell': {'chondrocyte': {'hypertrophic chondrocyte': {},\n",
+ " 'columnar chondrocyte': {},\n",
+ " 'tracheobronchial chondrocyte': {},\n",
+ " 'growth plate cartilage chondrocyte': {},\n",
+ " 'articular chondrocyte': {'periarticular chondrocyte': {},\n",
+ " 'articular chondrocyte of knee joint': {}}}},\n",
+ " 'leptomeningeal cell': {}},\n",
+ " 'stromal cell of ovary': {'luteal cell': {'small luteal cell': {},\n",
+ " 'large luteal cell': {}},\n",
+ " 'theca cell': {},\n",
+ " 'interstitial cell of ovary': {},\n",
+ " 'hilus cell of ovary': {},\n",
+ " 'stromal cell of ovarian cortex': {},\n",
+ " 'stromal cell of ovarian medulla': {}},\n",
+ " 'stromal cell of endometrium': {},\n",
+ " 'type B synovial cell': {},\n",
+ " 'stromal cell of pancreas': {},\n",
+ " 'prostate stromal cell': {},\n",
+ " 'stromal cell of lamina propria of large intestine': {'stromal cell of lamina propria of vermiform appendix': {},\n",
+ " 'stromal cell of lamina propria of colon': {},\n",
+ " 'stromal cell of anorectum lamina propria': {}},\n",
+ " 'stromal cell of lamina propria of small intestine': {},\n",
+ " 'stromal cell of bone marrow': {},\n",
+ " 'decidual cell': {},\n",
+ " 'stromal cell of thymus': {'interstitial cell of thymus': {}}},\n",
+ " 'pericyte': {'mesangial cell': {'extraglomerular mesangial cell': {},\n",
+ " 'glomerular mesangial cell': {}},\n",
+ " 'central nervous system pericyte': {'brain pericyte': {}},\n",
+ " 'lung pericyte': {},\n",
+ " 'renal interstitial pericyte': {'extraglomerular mesangial cell': {},\n",
+ " 'glomerular mesangial cell': {}},\n",
+ " 'placental pericyte': {'decidual pericyte': {}}},\n",
+ " 'dental pulp cell': {'odontoblast': {'non-terminally differentiated odontoblast': {},\n",
+ " 'terminally differentiated odontoblast': {}},\n",
+ " 'dental pulp stem cell': {}},\n",
+ " 'adipose dendritic cell': {'SIRPa-positive adipose dendritic cell': {},\n",
+ " 'SIRPa-negative adipose dendritic cell': {}},\n",
+ " 'adventitial cell': {'fibroblast of tunica adventitia of artery': {'fibroblast of the aortic adventitia': {}},\n",
+ " 'ureter adventitial cell': {'fibrocyte of adventitia of ureter': {}}},\n",
+ " 'nucleus pulposus cell of intervertebral disc': {},\n",
+ " 'perineurial cell': {},\n",
+ " 'annulus pulposus cell': {},\n",
+ " 'telocyte': {},\n",
+ " 'adipose microvascular endothelial cell': {},\n",
+ " 'lung megakaryocyte': {},\n",
+ " 'lung interstitial macrophage': {}},\n",
+ " 'mammary gland epithelial cell': {'myoepithelial cell of mammary gland': {'myoepithelial cell of lactiferous alveolus': {},\n",
+ " 'myoepithelial cell of lactiferous duct': {},\n",
+ " 'myoepithelial cell of acinus of lactiferous gland': {}},\n",
+ " 'luminal epithelial cell of mammary gland': {'luminal cell of acinus of lactiferous gland': {},\n",
+ " 'luminal cell of lactiferous duct': {'luminal cell of lactiferous terminal ductal lobular unit': {}}},\n",
+ " 'mammary gland glandular cell': {'mammary alveolar cell': {}}},\n",
+ " 'cardiocyte': {'cardiac muscle myoblast': {},\n",
+ " 'cardiac muscle cell': {'cardiac muscle cell (sensu Arthopoda)': {},\n",
+ " 'specialized cardiac myocyte': {'Purkinje myocyte': {'Purkinje myocyte of interventricular septum': {},\n",
+ " 'Purkinje myocyte of atrioventricular node': {},\n",
+ " 'Purkinje myocyte of internodal tract': {},\n",
+ " 'Purkinje myocyte of atrioventricular bundle': {}},\n",
+ " 'nodal myocyte': {'myocyte of sinoatrial node': {'cardiac pacemaker cell of sinoatrial node': {},\n",
+ " 'transitional myocyte of sinoatrial node': {}},\n",
+ " 'myocyte of atrioventricular node': {'Purkinje myocyte of atrioventricular node': {}}},\n",
+ " 'transitional myocyte': {'transitional myocyte of interatrial septum': {},\n",
+ " 'transitional myocyte of interventricular septum': {},\n",
+ " 'transitional myocyte of sinoatrial node': {},\n",
+ " 'transitional myocyte of internodal tract': {'transitional myocyte of atrial branch of anterior internodal tract': {},\n",
+ " 'transitional myocyte of anterior internodal tract': {},\n",
+ " 'transitional myocyte of atrial septal branch of anterior internodal tract': {},\n",
+ " 'transitional myocyte of middle internodal tract': {},\n",
+ " 'transitional myocyte of posterior internodal tract': {}},\n",
+ " 'transitional myocyte of atrioventricular bundle': {'transitional myocyte of left branch of atrioventricular bundle': {'transitional myocyte of anterior division of left branch of atrioventricular bundle': {},\n",
+ " 'transitional myocyte of septal division of left branch of atrioventricular bundle': {},\n",
+ " 'transitional myocyte of posterior division of left branch of atrioventricular bundle': {}},\n",
+ " 'transitional myocyte of right branch of atrioventricular bundle': {},\n",
+ " 'transitional myocyte of atrial part of atrioventricular bundle': {},\n",
+ " 'transitional myocyte of ventricular part of atrioventricular bundle': {}}},\n",
+ " 'myocardial endocrine cell': {'myocardial endocrine cell of atrium': {},\n",
+ " 'myocardial endocrine cell of septal division of left branch of atrioventricular bundle': {},\n",
+ " 'myocardial endocrine cell of interventricular septum': {}},\n",
+ " 'internodal tract myocyte': {'myocyte of anterior internodal tract': {},\n",
+ " 'myocyte of atrial branch of anterior internodal tract': {},\n",
+ " 'myocyte of atrial septal branch of anterior internodal tract': {},\n",
+ " 'myocyte of middle internodal tract': {},\n",
+ " 'myocyte of posterior internodal tract': {},\n",
+ " 'transitional myocyte of internodal tract': {'transitional myocyte of atrial branch of anterior internodal tract': {},\n",
+ " 'transitional myocyte of anterior internodal tract': {},\n",
+ " 'transitional myocyte of atrial septal branch of anterior internodal tract': {},\n",
+ " 'transitional myocyte of middle internodal tract': {},\n",
+ " 'transitional myocyte of posterior internodal tract': {}},\n",
+ " 'Purkinje myocyte of internodal tract': {}}},\n",
+ " 'regular cardiac myocyte': {'regular interventricular cardiac myocyte': {},\n",
+ " 'regular atrial cardiac myocyte': {},\n",
+ " 'regular interatrial cardiac myocyte': {},\n",
+ " 'regular ventricular cardiac myocyte': {}},\n",
+ " 'fetal cardiomyocyte': {},\n",
+ " 'ventricular cardiac muscle cell': {'myocardial endocrine cell of septal division of left branch of atrioventricular bundle': {},\n",
+ " 'transitional myocyte of atrioventricular bundle': {'transitional myocyte of left branch of atrioventricular bundle': {'transitional myocyte of anterior division of left branch of atrioventricular bundle': {},\n",
+ " 'transitional myocyte of septal division of left branch of atrioventricular bundle': {},\n",
+ " 'transitional myocyte of posterior division of left branch of atrioventricular bundle': {}},\n",
+ " 'transitional myocyte of right branch of atrioventricular bundle': {},\n",
+ " 'transitional myocyte of atrial part of atrioventricular bundle': {},\n",
+ " 'transitional myocyte of ventricular part of atrioventricular bundle': {}},\n",
+ " 'Purkinje myocyte of atrioventricular bundle': {}}},\n",
+ " 'fibroblast of cardiac tissue': {'cardiac ventricle fibroblast': {},\n",
+ " 'cardiac atrium fibroblast': {}},\n",
+ " 'smooth muscle cell of the coronary artery': {},\n",
+ " 'endocardial cushion cell': {},\n",
+ " 'cardiac endothelial cell': {'endocardial cell': {},\n",
+ " 'cardiac blood vessel endothelial cell': {'endothelial cell of coronary artery': {}},\n",
+ " 'valve endothelial cell': {}},\n",
+ " 'cardiac glial cell': {},\n",
+ " 'mesothelial cell of epicardium': {},\n",
+ " 'epicardial adipocyte': {'adipocyte of epicardial fat of right ventricle': {},\n",
+ " 'adipocyte of epicardial fat of left ventricle': {}}},\n",
+ " 'epithelial cell of cervix': {'uterine cervix squamous cell': {},\n",
+ " 'uterine cervix glandular cell': {}},\n",
+ " 'epithelial cell of amnion': {},\n",
+ " 'embryonic blood vessel endothelial progenitor cell': {},\n",
+ " 'hair follicle cell': {'hair follicle melanocyte': {},\n",
+ " 'inner root sheath cell': {},\n",
+ " 'outer root sheath cell': {},\n",
+ " 'hair germinal matrix cell': {},\n",
+ " 'hair follicular keratinocyte': {'keratinized cell of hair follicle': {}}},\n",
+ " 'ionocyte': {'pulmonary ionocyte': {}},\n",
+ " 'mesenchymal cell': {'mesenchyme condensation cell': {},\n",
+ " 'dental papilla cell': {},\n",
+ " 'cardiac mesenchymal cell': {'endocardial cushion cell': {}},\n",
+ " 'fibro/adipogenic progenitor cell': {}},\n",
+ " 'mural cell': {'pericyte': {'mesangial cell': {'extraglomerular mesangial cell': {},\n",
+ " 'glomerular mesangial cell': {}},\n",
+ " 'central nervous system pericyte': {'brain pericyte': {}},\n",
+ " 'lung pericyte': {},\n",
+ " 'renal interstitial pericyte': {'extraglomerular mesangial cell': {},\n",
+ " 'glomerular mesangial cell': {}},\n",
+ " 'placental pericyte': {'decidual pericyte': {}}},\n",
+ " 'microcirculation associated smooth muscle cell': {'smooth muscle cell of high endothelial venule of lymph node': {},\n",
+ " 'kidney afferent arteriole smooth muscle cell': {},\n",
+ " 'kidney efferent arteriole smooth muscle cell': {}}},\n",
+ " 'inflammatory cell': {},\n",
+ " 'larval midgut cell': {},\n",
+ " 'salivary gland cell': {},\n",
+ " 'epithelial cell of urethra': {'epithelial cell of prostatic urethra': {'hillock cell of prostatic urethral epithelium': {}},\n",
+ " 'hillock cell of urethral epithelium': {'hillock cell of prostatic urethral epithelium': {}},\n",
+ " 'urethra urothelial cell': {},\n",
+ " 'ovarian microvascular endothelial cell': {},\n",
+ " 'club-like cell of the urethral epithelium': {}},\n",
+ " 'epithelial cell of gallbladder': {'gallbladder glandular cell': {}},\n",
+ " 'conjunctival epithelial cell': {'conjunctiva goblet cell': {}},\n",
+ " 'epithelial cell of lacrimal canaliculus': {},\n",
+ " 'epithelial cell of external acoustic meatus': {},\n",
+ " 'epithelial cell of viscerocranial mucosa': {'nasal cavity respiratory epithelium epithelial cell of viscerocranial mucosa': {}},\n",
+ " 'kidney cell': {'kidney epithelial cell': {'interrenal epithelial cell': {},\n",
+ " 'renal cortical epithelial cell': {'kidney corpuscule cell': {'glomerular cell': {'glomerular endothelial cell': {'glomerular capillary endothelial cell': {}},\n",
+ " 'kidney glomerular epithelial cell': {'epithelial cell of glomerular capsule': {'podocyte': {'mesonephric podocyte': {},\n",
+ " 'metanephric podocyte': {},\n",
+ " 'pronephric podocyte': {}},\n",
+ " 'parietal epithelial cell': {}},\n",
+ " 'glomerular capillary endothelial cell': {}},\n",
+ " 'glomerular mesangial cell': {}},\n",
+ " 'kidney afferent arteriole cell': {'kidney afferent arteriole endothelial cell': {},\n",
+ " 'kidney afferent arteriole smooth muscle cell': {}},\n",
+ " 'kidney efferent arteriole cell': {'kidney efferent arteriole endothelial cell': {},\n",
+ " 'kidney efferent arteriole smooth muscle cell': {}}},\n",
+ " 'kidney cortex tubule cell': {'epithelial cell of distal tubule': {'kidney distal convoluted tubule epithelial cell': {'epithelial cell of early distal convoluted tubule': {},\n",
+ " 'epithelial cell of late distal convoluted tubule': {}},\n",
+ " 'macula densa epithelial cell': {},\n",
+ " 'kidney loop of Henle ascending limb epithelial cell': {'kidney loop of Henle thick ascending limb epithelial cell': {'kidney loop of Henle medullary thick ascending limb epithelial cell': {},\n",
+ " 'kidney loop of Henle cortical thick ascending limb epithelial cell': {}},\n",
+ " 'kidney loop of Henle thin ascending limb epithelial cell': {}}},\n",
+ " 'epithelial cell of proximal tubule': {'brush border cell of the proximal tubule': {},\n",
+ " 'kidney proximal convoluted tubule epithelial cell': {},\n",
+ " 'kidney proximal straight tubule epithelial cell': {},\n",
+ " 'epithelial cell of proximal tubule segment 1': {},\n",
+ " 'epithelial cell of proximal tubule segment 2': {},\n",
+ " 'epithelial cell of proximal tubule segment 3': {},\n",
+ " 'CD24-positive, CD-133-positive, vimentin-positive proximal tubular cell': {}},\n",
+ " 'kidney connecting tubule epithelial cell': {'kidney connecting tubule intercalated cell': {'kidney connecting tubule alpha-intercalated cell': {},\n",
+ " 'kidney connecting tubule beta-intercalated cell': {}}}},\n",
+ " 'kidney cortex interstitial cell': {'renal cortical fibroblast': {}},\n",
+ " 'kidney cortex collecting duct principal cell': {},\n",
+ " 'kidney cortex collecting duct intercalated cell': {'kidney collecting duct beta-intercalated cell': {}},\n",
+ " 'kidney blood vessel cell': {'kidney arterial blood vessel cell': {'kidney afferent arteriole cell': {'kidney afferent arteriole endothelial cell': {},\n",
+ " 'kidney afferent arteriole smooth muscle cell': {}},\n",
+ " 'kidney efferent arteriole cell': {'kidney efferent arteriole endothelial cell': {},\n",
+ " 'kidney efferent arteriole smooth muscle cell': {}},\n",
+ " 'kidney cortex artery cell': {'arcuate artery cell': {'arcuate artery endothelial cell': {},\n",
+ " 'arcuate artery smooth muscle cell': {}},\n",
+ " 'interlobular artery cell': {'interlobulary artery endothelial cell': {'kidney afferent arteriole endothelial cell': {}},\n",
+ " 'interlobulary artery smooth muscle cell': {'kidney afferent arteriole smooth muscle cell': {}}}},\n",
+ " 'kidney artery smooth muscle cell': {'arcuate artery smooth muscle cell': {},\n",
+ " 'interlobulary artery smooth muscle cell': {'kidney afferent arteriole smooth muscle cell': {}}},\n",
+ " 'kidney arteriole smooth muscle cell': {'kidney afferent arteriole smooth muscle cell': {},\n",
+ " 'kidney efferent arteriole smooth muscle cell': {}}},\n",
+ " 'kidney capillary endothelial cell': {'glomerular capillary endothelial cell': {},\n",
+ " 'peritubular capillary endothelial cell': {'kidney outer medulla peritubular capillary cell': {},\n",
+ " 'kidney cortex peritubular capillary cell': {}},\n",
+ " 'vasa recta cell': {'inner renal medulla vasa recta cell': {'inner medulla vasa recta ascending limb cell': {},\n",
+ " 'inner medulla vasa recta descending limb cell': {}},\n",
+ " 'outer renal medulla vasa recta cell': {'outer medulla vasa recta ascending limb cell': {},\n",
+ " 'outer medulla vasa recta descending limb cell': {}},\n",
+ " 'vasa recta ascending limb cell': {'inner medulla vasa recta ascending limb cell': {},\n",
+ " 'outer medulla vasa recta ascending limb cell': {}},\n",
+ " 'vasa recta descending limb cell': {'inner medulla vasa recta descending limb cell': {},\n",
+ " 'outer medulla vasa recta descending limb cell': {}}}},\n",
+ " 'kidney venous blood vessel cell': {'vasa recta cell': {'inner renal medulla vasa recta cell': {'inner medulla vasa recta ascending limb cell': {},\n",
+ " 'inner medulla vasa recta descending limb cell': {}},\n",
+ " 'outer renal medulla vasa recta cell': {'outer medulla vasa recta ascending limb cell': {},\n",
+ " 'outer medulla vasa recta descending limb cell': {}},\n",
+ " 'vasa recta ascending limb cell': {'inner medulla vasa recta ascending limb cell': {},\n",
+ " 'outer medulla vasa recta ascending limb cell': {}},\n",
+ " 'vasa recta descending limb cell': {'inner medulla vasa recta descending limb cell': {},\n",
+ " 'outer medulla vasa recta descending limb cell': {}}},\n",
+ " 'kidney cortex vein cell': {'arcuate vein cell': {'arcuate vein endothelial cell': {},\n",
+ " 'arcuate vein smooth muscle cell': {}},\n",
+ " 'interlobular vein cell': {'interlobulary vein endothelial cell': {},\n",
+ " 'interlobulary vein smooth muscle cell': {}}},\n",
+ " 'kidney venous system smooth muscle cell': {'arcuate vein smooth muscle cell': {},\n",
+ " 'interlobulary vein smooth muscle cell': {}}}}},\n",
+ " 'renal principal cell': {'kidney collecting duct principal cell': {'kidney cortex collecting duct principal cell': {},\n",
+ " 'kidney outer medulla collecting duct principal cell': {},\n",
+ " 'kidney inner medulla collecting duct principal cell': {},\n",
+ " 'kidney papillary duct principal cell': {}},\n",
+ " 'kidney connecting tubule principal cell': {}},\n",
+ " 'epithelial cell of nephron': {'renal intercalated cell': {'renal beta-intercalated cell': {'kidney collecting duct beta-intercalated cell': {},\n",
+ " 'kidney connecting tubule beta-intercalated cell': {}},\n",
+ " 'renal alpha-intercalated cell': {'kidney collecting duct alpha-intercalated cell': {},\n",
+ " 'kidney connecting tubule alpha-intercalated cell': {}},\n",
+ " 'kidney collecting duct intercalated cell': {'kidney cortex collecting duct intercalated cell': {'kidney collecting duct beta-intercalated cell': {}},\n",
+ " 'kidney outer medulla collecting duct intercalated cell': {},\n",
+ " 'kidney inner medulla collecting duct intercalated cell': {},\n",
+ " 'kidney papillary duct intercalated cell': {},\n",
+ " 'kidney collecting duct alpha-intercalated cell': {}},\n",
+ " 'kidney connecting tubule intercalated cell': {'kidney connecting tubule alpha-intercalated cell': {},\n",
+ " 'kidney connecting tubule beta-intercalated cell': {}}},\n",
+ " 'mesonephric nephron tubule epithelial cell': {},\n",
+ " 'pronephric nephron tubule epithelial cell': {},\n",
+ " 'metanephric nephron tubule epithelial cell': {},\n",
+ " 'kidney collecting duct epithelial cell': {'kidney collecting duct principal cell': {'kidney cortex collecting duct principal cell': {},\n",
+ " 'kidney outer medulla collecting duct principal cell': {},\n",
+ " 'kidney inner medulla collecting duct principal cell': {},\n",
+ " 'kidney papillary duct principal cell': {}},\n",
+ " 'kidney collecting duct intercalated cell': {'kidney cortex collecting duct intercalated cell': {'kidney collecting duct beta-intercalated cell': {}},\n",
+ " 'kidney outer medulla collecting duct intercalated cell': {},\n",
+ " 'kidney inner medulla collecting duct intercalated cell': {},\n",
+ " 'kidney papillary duct intercalated cell': {},\n",
+ " 'kidney collecting duct alpha-intercalated cell': {}}},\n",
+ " 'nephron tubule epithelial cell': {'epithelial cell of distal tubule': {'kidney distal convoluted tubule epithelial cell': {'epithelial cell of early distal convoluted tubule': {},\n",
+ " 'epithelial cell of late distal convoluted tubule': {}},\n",
+ " 'macula densa epithelial cell': {},\n",
+ " 'kidney loop of Henle ascending limb epithelial cell': {'kidney loop of Henle thick ascending limb epithelial cell': {'kidney loop of Henle medullary thick ascending limb epithelial cell': {},\n",
+ " 'kidney loop of Henle cortical thick ascending limb epithelial cell': {}},\n",
+ " 'kidney loop of Henle thin ascending limb epithelial cell': {}}},\n",
+ " 'epithelial cell of proximal tubule': {'brush border cell of the proximal tubule': {},\n",
+ " 'kidney proximal convoluted tubule epithelial cell': {},\n",
+ " 'kidney proximal straight tubule epithelial cell': {},\n",
+ " 'epithelial cell of proximal tubule segment 1': {},\n",
+ " 'epithelial cell of proximal tubule segment 2': {},\n",
+ " 'epithelial cell of proximal tubule segment 3': {},\n",
+ " 'CD24-positive, CD-133-positive, vimentin-positive proximal tubular cell': {}},\n",
+ " 'kidney connecting tubule epithelial cell': {'kidney connecting tubule intercalated cell': {'kidney connecting tubule alpha-intercalated cell': {},\n",
+ " 'kidney connecting tubule beta-intercalated cell': {}}},\n",
+ " 'kidney loop of Henle epithelial cell': {'epithelial cell of intermediate tubule': {'kidney loop of Henle thin descending limb epithelial cell': {'kidney loop of Henle short descending thin limb epithelial cell': {},\n",
+ " 'kidney loop of Henle long descending thin limb outer medulla epithelial cell': {},\n",
+ " 'kidney loop of Henle long descending thin limb inner medulla epithelial cell': {}}},\n",
+ " 'kidney loop of Henle ascending limb epithelial cell': {'kidney loop of Henle thick ascending limb epithelial cell': {'kidney loop of Henle medullary thick ascending limb epithelial cell': {},\n",
+ " 'kidney loop of Henle cortical thick ascending limb epithelial cell': {}},\n",
+ " 'kidney loop of Henle thin ascending limb epithelial cell': {}},\n",
+ " 'kidney loop of Henle descending limb epithelial cell': {'kidney proximal straight tubule epithelial cell': {},\n",
+ " 'kidney loop of Henle thin descending limb epithelial cell': {'kidney loop of Henle short descending thin limb epithelial cell': {},\n",
+ " 'kidney loop of Henle long descending thin limb outer medulla epithelial cell': {},\n",
+ " 'kidney loop of Henle long descending thin limb inner medulla epithelial cell': {}}}}},\n",
+ " 'kidney corpuscule cell': {'glomerular cell': {'glomerular endothelial cell': {'glomerular capillary endothelial cell': {}},\n",
+ " 'kidney glomerular epithelial cell': {'epithelial cell of glomerular capsule': {'podocyte': {'mesonephric podocyte': {},\n",
+ " 'metanephric podocyte': {},\n",
+ " 'pronephric podocyte': {}},\n",
+ " 'parietal epithelial cell': {}},\n",
+ " 'glomerular capillary endothelial cell': {}},\n",
+ " 'glomerular mesangial cell': {}},\n",
+ " 'kidney afferent arteriole cell': {'kidney afferent arteriole endothelial cell': {},\n",
+ " 'kidney afferent arteriole smooth muscle cell': {}},\n",
+ " 'kidney efferent arteriole cell': {'kidney efferent arteriole endothelial cell': {},\n",
+ " 'kidney efferent arteriole smooth muscle cell': {}}},\n",
+ " 'kidney cortex tubule cell': {'epithelial cell of distal tubule': {'kidney distal convoluted tubule epithelial cell': {'epithelial cell of early distal convoluted tubule': {},\n",
+ " 'epithelial cell of late distal convoluted tubule': {}},\n",
+ " 'macula densa epithelial cell': {},\n",
+ " 'kidney loop of Henle ascending limb epithelial cell': {'kidney loop of Henle thick ascending limb epithelial cell': {'kidney loop of Henle medullary thick ascending limb epithelial cell': {},\n",
+ " 'kidney loop of Henle cortical thick ascending limb epithelial cell': {}},\n",
+ " 'kidney loop of Henle thin ascending limb epithelial cell': {}}},\n",
+ " 'epithelial cell of proximal tubule': {'brush border cell of the proximal tubule': {},\n",
+ " 'kidney proximal convoluted tubule epithelial cell': {},\n",
+ " 'kidney proximal straight tubule epithelial cell': {},\n",
+ " 'epithelial cell of proximal tubule segment 1': {},\n",
+ " 'epithelial cell of proximal tubule segment 2': {},\n",
+ " 'epithelial cell of proximal tubule segment 3': {},\n",
+ " 'CD24-positive, CD-133-positive, vimentin-positive proximal tubular cell': {}},\n",
+ " 'kidney connecting tubule epithelial cell': {'kidney connecting tubule intercalated cell': {'kidney connecting tubule alpha-intercalated cell': {},\n",
+ " 'kidney connecting tubule beta-intercalated cell': {}}}},\n",
+ " 'kidney connecting tubule principal cell': {}},\n",
+ " 'kidney pelvis urothelial cell': {}},\n",
+ " 'kidney cortical cell': {'renal cortical epithelial cell': {'kidney corpuscule cell': {'glomerular cell': {'glomerular endothelial cell': {'glomerular capillary endothelial cell': {}},\n",
+ " 'kidney glomerular epithelial cell': {'epithelial cell of glomerular capsule': {'podocyte': {'mesonephric podocyte': {},\n",
+ " 'metanephric podocyte': {},\n",
+ " 'pronephric podocyte': {}},\n",
+ " 'parietal epithelial cell': {}},\n",
+ " 'glomerular capillary endothelial cell': {}},\n",
+ " 'glomerular mesangial cell': {}},\n",
+ " 'kidney afferent arteriole cell': {'kidney afferent arteriole endothelial cell': {},\n",
+ " 'kidney afferent arteriole smooth muscle cell': {}},\n",
+ " 'kidney efferent arteriole cell': {'kidney efferent arteriole endothelial cell': {},\n",
+ " 'kidney efferent arteriole smooth muscle cell': {}}},\n",
+ " 'kidney cortex tubule cell': {'epithelial cell of distal tubule': {'kidney distal convoluted tubule epithelial cell': {'epithelial cell of early distal convoluted tubule': {},\n",
+ " 'epithelial cell of late distal convoluted tubule': {}},\n",
+ " 'macula densa epithelial cell': {},\n",
+ " 'kidney loop of Henle ascending limb epithelial cell': {'kidney loop of Henle thick ascending limb epithelial cell': {'kidney loop of Henle medullary thick ascending limb epithelial cell': {},\n",
+ " 'kidney loop of Henle cortical thick ascending limb epithelial cell': {}},\n",
+ " 'kidney loop of Henle thin ascending limb epithelial cell': {}}},\n",
+ " 'epithelial cell of proximal tubule': {'brush border cell of the proximal tubule': {},\n",
+ " 'kidney proximal convoluted tubule epithelial cell': {},\n",
+ " 'kidney proximal straight tubule epithelial cell': {},\n",
+ " 'epithelial cell of proximal tubule segment 1': {},\n",
+ " 'epithelial cell of proximal tubule segment 2': {},\n",
+ " 'epithelial cell of proximal tubule segment 3': {},\n",
+ " 'CD24-positive, CD-133-positive, vimentin-positive proximal tubular cell': {}},\n",
+ " 'kidney connecting tubule epithelial cell': {'kidney connecting tubule intercalated cell': {'kidney connecting tubule alpha-intercalated cell': {},\n",
+ " 'kidney connecting tubule beta-intercalated cell': {}}}},\n",
+ " 'kidney cortex interstitial cell': {'renal cortical fibroblast': {}},\n",
+ " 'kidney cortex collecting duct principal cell': {},\n",
+ " 'kidney cortex collecting duct intercalated cell': {'kidney collecting duct beta-intercalated cell': {}},\n",
+ " 'kidney blood vessel cell': {'kidney arterial blood vessel cell': {'kidney afferent arteriole cell': {'kidney afferent arteriole endothelial cell': {},\n",
+ " 'kidney afferent arteriole smooth muscle cell': {}},\n",
+ " 'kidney efferent arteriole cell': {'kidney efferent arteriole endothelial cell': {},\n",
+ " 'kidney efferent arteriole smooth muscle cell': {}},\n",
+ " 'kidney cortex artery cell': {'arcuate artery cell': {'arcuate artery endothelial cell': {},\n",
+ " 'arcuate artery smooth muscle cell': {}},\n",
+ " 'interlobular artery cell': {'interlobulary artery endothelial cell': {'kidney afferent arteriole endothelial cell': {}},\n",
+ " 'interlobulary artery smooth muscle cell': {'kidney afferent arteriole smooth muscle cell': {}}}},\n",
+ " 'kidney artery smooth muscle cell': {'arcuate artery smooth muscle cell': {},\n",
+ " 'interlobulary artery smooth muscle cell': {'kidney afferent arteriole smooth muscle cell': {}}},\n",
+ " 'kidney arteriole smooth muscle cell': {'kidney afferent arteriole smooth muscle cell': {},\n",
+ " 'kidney efferent arteriole smooth muscle cell': {}}},\n",
+ " 'kidney capillary endothelial cell': {'glomerular capillary endothelial cell': {},\n",
+ " 'peritubular capillary endothelial cell': {'kidney outer medulla peritubular capillary cell': {},\n",
+ " 'kidney cortex peritubular capillary cell': {}},\n",
+ " 'vasa recta cell': {'inner renal medulla vasa recta cell': {'inner medulla vasa recta ascending limb cell': {},\n",
+ " 'inner medulla vasa recta descending limb cell': {}},\n",
+ " 'outer renal medulla vasa recta cell': {'outer medulla vasa recta ascending limb cell': {},\n",
+ " 'outer medulla vasa recta descending limb cell': {}},\n",
+ " 'vasa recta ascending limb cell': {'inner medulla vasa recta ascending limb cell': {},\n",
+ " 'outer medulla vasa recta ascending limb cell': {}},\n",
+ " 'vasa recta descending limb cell': {'inner medulla vasa recta descending limb cell': {},\n",
+ " 'outer medulla vasa recta descending limb cell': {}}}},\n",
+ " 'kidney venous blood vessel cell': {'vasa recta cell': {'inner renal medulla vasa recta cell': {'inner medulla vasa recta ascending limb cell': {},\n",
+ " 'inner medulla vasa recta descending limb cell': {}},\n",
+ " 'outer renal medulla vasa recta cell': {'outer medulla vasa recta ascending limb cell': {},\n",
+ " 'outer medulla vasa recta descending limb cell': {}},\n",
+ " 'vasa recta ascending limb cell': {'inner medulla vasa recta ascending limb cell': {},\n",
+ " 'outer medulla vasa recta ascending limb cell': {}},\n",
+ " 'vasa recta descending limb cell': {'inner medulla vasa recta descending limb cell': {},\n",
+ " 'outer medulla vasa recta descending limb cell': {}}},\n",
+ " 'kidney cortex vein cell': {'arcuate vein cell': {'arcuate vein endothelial cell': {},\n",
+ " 'arcuate vein smooth muscle cell': {}},\n",
+ " 'interlobular vein cell': {'interlobulary vein endothelial cell': {},\n",
+ " 'interlobulary vein smooth muscle cell': {}}},\n",
+ " 'kidney venous system smooth muscle cell': {'arcuate vein smooth muscle cell': {},\n",
+ " 'interlobulary vein smooth muscle cell': {}}}}},\n",
+ " 'nephrogenic zone cell': {},\n",
+ " 'kidney cortex collecting duct epithelial cell': {'kidney cortex collecting duct principal cell': {},\n",
+ " 'kidney cortex collecting duct intercalated cell': {'kidney collecting duct beta-intercalated cell': {}}},\n",
+ " 'inner renal cortex cell': {},\n",
+ " 'juxtaglomerular complex cell': {'kidney granular cell': {},\n",
+ " 'extraglomerular mesangial cell': {},\n",
+ " 'macula densa epithelial cell': {}}},\n",
+ " 'kidney interstitial cell': {'kidney nerve cell': {},\n",
+ " 'kidney cortex interstitial cell': {'renal cortical fibroblast': {}},\n",
+ " 'kidney medulla interstitial cell': {'kidney inner medulla interstitial cell': {},\n",
+ " 'kidney outer medulla interstitial cell': {},\n",
+ " 'renal medullary fibroblast': {}},\n",
+ " 'kidney interstitial myofibroblast': {},\n",
+ " 'kidney interstitial fibroblast': {'renal medullary fibroblast': {},\n",
+ " 'renal cortical fibroblast': {}},\n",
+ " 'kidney interstitial fibrocyte': {},\n",
+ " 'kidney interstitial alternatively activated macrophage': {},\n",
+ " 'kidney interstitial inflammatory macrophage': {},\n",
+ " 'kidney interstitial suppressor macrophage': {},\n",
+ " 'kidney resident macrophage': {},\n",
+ " 'kidney resident dendritic cell': {},\n",
+ " 'renal interstitial pericyte': {'extraglomerular mesangial cell': {},\n",
+ " 'glomerular mesangial cell': {}}},\n",
+ " 'kidney medulla cell': {'kidney medulla collecting duct epithelial cell': {},\n",
+ " 'kidney outer medulla cell': {'kidney outer medulla collecting duct epithelial cell': {'kidney outer medulla collecting duct principal cell': {},\n",
+ " 'kidney outer medulla collecting duct intercalated cell': {}},\n",
+ " 'kidney outer medulla interstitial cell': {},\n",
+ " 'kidney proximal straight tubule epithelial cell': {},\n",
+ " 'kidney loop of Henle medullary thick ascending limb epithelial cell': {},\n",
+ " 'kidney loop of Henle thin descending limb epithelial cell': {'kidney loop of Henle short descending thin limb epithelial cell': {},\n",
+ " 'kidney loop of Henle long descending thin limb outer medulla epithelial cell': {},\n",
+ " 'kidney loop of Henle long descending thin limb inner medulla epithelial cell': {}},\n",
+ " 'kidney outer medulla peritubular capillary cell': {},\n",
+ " 'outer renal medulla vasa recta cell': {'outer medulla vasa recta ascending limb cell': {},\n",
+ " 'outer medulla vasa recta descending limb cell': {}}},\n",
+ " 'kidney inner medulla cell': {'kidney inner medulla collecting duct epithelial cell': {'kidney inner medulla collecting duct principal cell': {},\n",
+ " 'kidney inner medulla collecting duct intercalated cell': {}},\n",
+ " 'papillary tips cell': {},\n",
+ " 'kidney inner medulla interstitial cell': {},\n",
+ " 'kidney loop of Henle thin ascending limb epithelial cell': {},\n",
+ " 'inner renal medulla vasa recta cell': {'inner medulla vasa recta ascending limb cell': {},\n",
+ " 'inner medulla vasa recta descending limb cell': {}}},\n",
+ " 'kidney medulla interstitial cell': {'kidney inner medulla interstitial cell': {},\n",
+ " 'kidney outer medulla interstitial cell': {},\n",
+ " 'renal medullary fibroblast': {}},\n",
+ " 'kidney blood vessel cell': {'kidney arterial blood vessel cell': {'kidney afferent arteriole cell': {'kidney afferent arteriole endothelial cell': {},\n",
+ " 'kidney afferent arteriole smooth muscle cell': {}},\n",
+ " 'kidney efferent arteriole cell': {'kidney efferent arteriole endothelial cell': {},\n",
+ " 'kidney efferent arteriole smooth muscle cell': {}},\n",
+ " 'kidney cortex artery cell': {'arcuate artery cell': {'arcuate artery endothelial cell': {},\n",
+ " 'arcuate artery smooth muscle cell': {}},\n",
+ " 'interlobular artery cell': {'interlobulary artery endothelial cell': {'kidney afferent arteriole endothelial cell': {}},\n",
+ " 'interlobulary artery smooth muscle cell': {'kidney afferent arteriole smooth muscle cell': {}}}},\n",
+ " 'kidney artery smooth muscle cell': {'arcuate artery smooth muscle cell': {},\n",
+ " 'interlobulary artery smooth muscle cell': {'kidney afferent arteriole smooth muscle cell': {}}},\n",
+ " 'kidney arteriole smooth muscle cell': {'kidney afferent arteriole smooth muscle cell': {},\n",
+ " 'kidney efferent arteriole smooth muscle cell': {}}},\n",
+ " 'kidney capillary endothelial cell': {'glomerular capillary endothelial cell': {},\n",
+ " 'peritubular capillary endothelial cell': {'kidney outer medulla peritubular capillary cell': {},\n",
+ " 'kidney cortex peritubular capillary cell': {}},\n",
+ " 'vasa recta cell': {'inner renal medulla vasa recta cell': {'inner medulla vasa recta ascending limb cell': {},\n",
+ " 'inner medulla vasa recta descending limb cell': {}},\n",
+ " 'outer renal medulla vasa recta cell': {'outer medulla vasa recta ascending limb cell': {},\n",
+ " 'outer medulla vasa recta descending limb cell': {}},\n",
+ " 'vasa recta ascending limb cell': {'inner medulla vasa recta ascending limb cell': {},\n",
+ " 'outer medulla vasa recta ascending limb cell': {}},\n",
+ " 'vasa recta descending limb cell': {'inner medulla vasa recta descending limb cell': {},\n",
+ " 'outer medulla vasa recta descending limb cell': {}}}},\n",
+ " 'kidney venous blood vessel cell': {'vasa recta cell': {'inner renal medulla vasa recta cell': {'inner medulla vasa recta ascending limb cell': {},\n",
+ " 'inner medulla vasa recta descending limb cell': {}},\n",
+ " 'outer renal medulla vasa recta cell': {'outer medulla vasa recta ascending limb cell': {},\n",
+ " 'outer medulla vasa recta descending limb cell': {}},\n",
+ " 'vasa recta ascending limb cell': {'inner medulla vasa recta ascending limb cell': {},\n",
+ " 'outer medulla vasa recta ascending limb cell': {}},\n",
+ " 'vasa recta descending limb cell': {'inner medulla vasa recta descending limb cell': {},\n",
+ " 'outer medulla vasa recta descending limb cell': {}}},\n",
+ " 'kidney cortex vein cell': {'arcuate vein cell': {'arcuate vein endothelial cell': {},\n",
+ " 'arcuate vein smooth muscle cell': {}},\n",
+ " 'interlobular vein cell': {'interlobulary vein endothelial cell': {},\n",
+ " 'interlobulary vein smooth muscle cell': {}}},\n",
+ " 'kidney venous system smooth muscle cell': {'arcuate vein smooth muscle cell': {},\n",
+ " 'interlobulary vein smooth muscle cell': {}}}},\n",
+ " 'kidney loop of Henle thick ascending limb epithelial cell': {'kidney loop of Henle medullary thick ascending limb epithelial cell': {},\n",
+ " 'kidney loop of Henle cortical thick ascending limb epithelial cell': {}}},\n",
+ " 'kidney pelvis cell': {'papillary tips cell': {},\n",
+ " 'kidney pelvis smooth muscle cell': {},\n",
+ " 'kidney pelvis urothelial cell': {}},\n",
+ " 'kidney tubule cell': {'mesonephric nephron tubule epithelial cell': {},\n",
+ " 'pronephric nephron tubule epithelial cell': {},\n",
+ " 'metanephric nephron tubule epithelial cell': {},\n",
+ " 'nephron tubule epithelial cell': {'epithelial cell of distal tubule': {'kidney distal convoluted tubule epithelial cell': {'epithelial cell of early distal convoluted tubule': {},\n",
+ " 'epithelial cell of late distal convoluted tubule': {}},\n",
+ " 'macula densa epithelial cell': {},\n",
+ " 'kidney loop of Henle ascending limb epithelial cell': {'kidney loop of Henle thick ascending limb epithelial cell': {'kidney loop of Henle medullary thick ascending limb epithelial cell': {},\n",
+ " 'kidney loop of Henle cortical thick ascending limb epithelial cell': {}},\n",
+ " 'kidney loop of Henle thin ascending limb epithelial cell': {}}},\n",
+ " 'epithelial cell of proximal tubule': {'brush border cell of the proximal tubule': {},\n",
+ " 'kidney proximal convoluted tubule epithelial cell': {},\n",
+ " 'kidney proximal straight tubule epithelial cell': {},\n",
+ " 'epithelial cell of proximal tubule segment 1': {},\n",
+ " 'epithelial cell of proximal tubule segment 2': {},\n",
+ " 'epithelial cell of proximal tubule segment 3': {},\n",
+ " 'CD24-positive, CD-133-positive, vimentin-positive proximal tubular cell': {}},\n",
+ " 'kidney connecting tubule epithelial cell': {'kidney connecting tubule intercalated cell': {'kidney connecting tubule alpha-intercalated cell': {},\n",
+ " 'kidney connecting tubule beta-intercalated cell': {}}},\n",
+ " 'kidney loop of Henle epithelial cell': {'epithelial cell of intermediate tubule': {'kidney loop of Henle thin descending limb epithelial cell': {'kidney loop of Henle short descending thin limb epithelial cell': {},\n",
+ " 'kidney loop of Henle long descending thin limb outer medulla epithelial cell': {},\n",
+ " 'kidney loop of Henle long descending thin limb inner medulla epithelial cell': {}}},\n",
+ " 'kidney loop of Henle ascending limb epithelial cell': {'kidney loop of Henle thick ascending limb epithelial cell': {'kidney loop of Henle medullary thick ascending limb epithelial cell': {},\n",
+ " 'kidney loop of Henle cortical thick ascending limb epithelial cell': {}},\n",
+ " 'kidney loop of Henle thin ascending limb epithelial cell': {}},\n",
+ " 'kidney loop of Henle descending limb epithelial cell': {'kidney proximal straight tubule epithelial cell': {},\n",
+ " 'kidney loop of Henle thin descending limb epithelial cell': {'kidney loop of Henle short descending thin limb epithelial cell': {},\n",
+ " 'kidney loop of Henle long descending thin limb outer medulla epithelial cell': {},\n",
+ " 'kidney loop of Henle long descending thin limb inner medulla epithelial cell': {}}}}},\n",
+ " 'kidney cortex tubule cell': {'epithelial cell of distal tubule': {'kidney distal convoluted tubule epithelial cell': {'epithelial cell of early distal convoluted tubule': {},\n",
+ " 'epithelial cell of late distal convoluted tubule': {}},\n",
+ " 'macula densa epithelial cell': {},\n",
+ " 'kidney loop of Henle ascending limb epithelial cell': {'kidney loop of Henle thick ascending limb epithelial cell': {'kidney loop of Henle medullary thick ascending limb epithelial cell': {},\n",
+ " 'kidney loop of Henle cortical thick ascending limb epithelial cell': {}},\n",
+ " 'kidney loop of Henle thin ascending limb epithelial cell': {}}},\n",
+ " 'epithelial cell of proximal tubule': {'brush border cell of the proximal tubule': {},\n",
+ " 'kidney proximal convoluted tubule epithelial cell': {},\n",
+ " 'kidney proximal straight tubule epithelial cell': {},\n",
+ " 'epithelial cell of proximal tubule segment 1': {},\n",
+ " 'epithelial cell of proximal tubule segment 2': {},\n",
+ " 'epithelial cell of proximal tubule segment 3': {},\n",
+ " 'CD24-positive, CD-133-positive, vimentin-positive proximal tubular cell': {}},\n",
+ " 'kidney connecting tubule epithelial cell': {'kidney connecting tubule intercalated cell': {'kidney connecting tubule alpha-intercalated cell': {},\n",
+ " 'kidney connecting tubule beta-intercalated cell': {}}}},\n",
+ " 'kidney connecting tubule principal cell': {}},\n",
+ " 'kidney collecting duct cell': {'kidney collecting duct epithelial cell': {'kidney collecting duct principal cell': {'kidney cortex collecting duct principal cell': {},\n",
+ " 'kidney outer medulla collecting duct principal cell': {},\n",
+ " 'kidney inner medulla collecting duct principal cell': {},\n",
+ " 'kidney papillary duct principal cell': {}},\n",
+ " 'kidney collecting duct intercalated cell': {'kidney cortex collecting duct intercalated cell': {'kidney collecting duct beta-intercalated cell': {}},\n",
+ " 'kidney outer medulla collecting duct intercalated cell': {},\n",
+ " 'kidney inner medulla collecting duct intercalated cell': {},\n",
+ " 'kidney papillary duct intercalated cell': {},\n",
+ " 'kidney collecting duct alpha-intercalated cell': {}}},\n",
+ " 'kidney medulla collecting duct epithelial cell': {},\n",
+ " 'kidney inner medulla collecting duct epithelial cell': {'kidney inner medulla collecting duct principal cell': {},\n",
+ " 'kidney inner medulla collecting duct intercalated cell': {}},\n",
+ " 'kidney outer medulla collecting duct epithelial cell': {'kidney outer medulla collecting duct principal cell': {},\n",
+ " 'kidney outer medulla collecting duct intercalated cell': {}},\n",
+ " 'kidney cortex collecting duct epithelial cell': {'kidney cortex collecting duct principal cell': {},\n",
+ " 'kidney cortex collecting duct intercalated cell': {'kidney collecting duct beta-intercalated cell': {}}},\n",
+ " 'kidney papillary duct principal epithelial cell': {'kidney papillary duct intercalated cell': {},\n",
+ " 'kidney papillary duct principal cell': {}}}},\n",
+ " 'somatic nurse-like cell': {}},\n",
+ " 'nephrocyte': {'pericardial nephrocyte': {},\n",
+ " 'garland cell': {},\n",
+ " 'disseminated nephrocyte': {}},\n",
+ " 'iridoblast': {},\n",
+ " 'xanthoblast': {},\n",
+ " 'leucoblast': {},\n",
+ " 'pigment erythroblast': {},\n",
+ " 'cyanoblast': {},\n",
+ " 'preameloblast': {},\n",
+ " 'precementoblast': {},\n",
+ " 'preodontoblast': {},\n",
+ " 'notochordal cell': {'notochordal sheath cell': {},\n",
+ " 'notochordal vacuole cell': {}},\n",
+ " 'prechondroblast': {},\n",
+ " 'alarm substance cell': {},\n",
+ " 'micropylar cell': {},\n",
+ " 'flask cell': {},\n",
+ " 'transit amplifying cell of colon': {},\n",
+ " 'transit amplifying cell of small intestine': {},\n",
+ " 'fetal hepatobiliary progenitor cell': {},\n",
+ " 'transit amplifying cell of appendix': {},\n",
+ " 'transit amplifying cell of anorectum': {},\n",
+ " 'progenitor cell of mammary luminal epithelium': {},\n",
+ " 'His-Purkinje system cell': {'atrioventricular bundle cell': {'transitional myocyte of atrioventricular bundle': {'transitional myocyte of left branch of atrioventricular bundle': {'transitional myocyte of anterior division of left branch of atrioventricular bundle': {},\n",
+ " 'transitional myocyte of septal division of left branch of atrioventricular bundle': {},\n",
+ " 'transitional myocyte of posterior division of left branch of atrioventricular bundle': {}},\n",
+ " 'transitional myocyte of right branch of atrioventricular bundle': {},\n",
+ " 'transitional myocyte of atrial part of atrioventricular bundle': {},\n",
+ " 'transitional myocyte of ventricular part of atrioventricular bundle': {}},\n",
+ " 'Purkinje myocyte of atrioventricular bundle': {}},\n",
+ " 'myocardial endocrine cell of septal division of left branch of atrioventricular bundle': {}},\n",
+ " 'collar cell': {},\n",
+ " 'neural progenitor cell': {'ganglion mother cell': {}},\n",
+ " 'CD25+ mast cell': {},\n",
+ " 'cnidocyte': {},\n",
+ " 'tracheobronchial serous cell': {'serous cell of epithelium of trachea': {},\n",
+ " 'serous cell of epithelium of bronchus': {},\n",
+ " 'serous cell of epithelium of terminal bronchiole': {},\n",
+ " 'serous cell of epithelium of lobular bronchiole': {},\n",
+ " 'serous secreting cell of bronchus submucosal gland': {}},\n",
+ " 'cardiac valve cell': {'valve interstitial cell': {},\n",
+ " 'valve endothelial cell': {}},\n",
+ " 'Malpighian tubule stellate cell': {},\n",
+ " 'lung ciliated cell': {},\n",
+ " 'lung secretory cell': {'type II pneumocyte': {},\n",
+ " 'lung goblet cell': {'goblet cell of epithelium of lobar bronchus': {}},\n",
+ " 'lung neuroendocrine cell': {'neuroendocrine cell of epithelium of lobar bronchus': {}},\n",
+ " 'serous cell of epithelium of terminal bronchiole': {},\n",
+ " 'serous cell of epithelium of lobular bronchiole': {}},\n",
+ " 'lower urinary tract cell': {'bladder cell': {'smooth muscle cell of bladder': {},\n",
+ " 'bladder urothelial cell': {'urothelial cell of trigone of urinary bladder': {}},\n",
+ " 'bladder microvascular endothelial cell': {}},\n",
+ " 'urethra cell': {'epithelial cell of urethra': {'epithelial cell of prostatic urethra': {'hillock cell of prostatic urethral epithelium': {}},\n",
+ " 'hillock cell of urethral epithelium': {'hillock cell of prostatic urethral epithelium': {}},\n",
+ " 'urethra urothelial cell': {},\n",
+ " 'ovarian microvascular endothelial cell': {},\n",
+ " 'club-like cell of the urethral epithelium': {}}}},\n",
+ " 'ureteral cell': {'ureter urothelial cell': {},\n",
+ " 'ureter adventitial cell': {'fibrocyte of adventitia of ureter': {}},\n",
+ " 'ureter smooth muscle cell': {}},\n",
+ " 'sebaceous gland cell': {'sebum secreting cell': {'acinar cell of sebaceous gland': {}}},\n",
+ " 'cardiac septum cell': {'transitional myocyte of interatrial septum': {},\n",
+ " 'transitional myocyte of interventricular septum': {},\n",
+ " 'Purkinje myocyte of interventricular septum': {},\n",
+ " 'myocyte of atrioventricular node': {'Purkinje myocyte of atrioventricular node': {}},\n",
+ " 'myocardial endocrine cell of interventricular septum': {}},\n",
+ " 'posterior lateral line neuromast supporting cell': {},\n",
+ " 'germline-derived nurse cell': {'invertebrate nurse cell': {}},\n",
+ " 'BEST4+ intestinal epithelial cell, human': {}}},\n",
+ " 'structural cell': {'scleral cell': {}, 'choroidal cell of the eye': {}},\n",
+ " 'stuff accumulating cell': {'fat cell': {'white fat cell': {},\n",
+ " 'brown fat cell': {},\n",
+ " 'beige adipocyte': {},\n",
+ " 'neural crest derived fat cell': {},\n",
+ " 'subcutaneous fat cell': {},\n",
+ " 'adipocyte of omentum tissue': {},\n",
+ " 'perirenal adipocyte': {},\n",
+ " 'adipocyte of breast': {},\n",
+ " 'epicardial adipocyte': {'adipocyte of epicardial fat of right ventricle': {},\n",
+ " 'adipocyte of epicardial fat of left ventricle': {}}},\n",
+ " 'pigment cell': {'melanocyte': {'epithelial melanocyte': {'strial intermediate cell': {},\n",
+ " 'epidermal melanocyte': {'hair follicle melanocyte': {}}},\n",
+ " 'retinal melanocyte': {},\n",
+ " 'dark melanocyte': {},\n",
+ " 'light melanocyte': {},\n",
+ " 'melanocyte of eyelid': {},\n",
+ " 'melanocyte of skin': {'dermal melanocyte': {},\n",
+ " 'epidermal melanocyte': {'hair follicle melanocyte': {}},\n",
+ " 'melanocyte of skin of face': {},\n",
+ " 'melanocyte of foreskin': {}},\n",
+ " 'foreskin melanocyte': {'melanocyte of foreskin': {}},\n",
+ " 'choroidal melanocyte': {}},\n",
+ " 'visual pigment cell': {'visual pigment cell (sensu Vertebrata)': {},\n",
+ " 'visual pigment cell (sensu Nematoda and Protostomia)': {},\n",
+ " 'retinal pigment epithelial cell': {}},\n",
+ " 'pigment cell (sensu Nematoda and Protostomia)': {'visual pigment cell (sensu Nematoda and Protostomia)': {}},\n",
+ " 'pigment cell (sensu Vertebrata)': {'visual pigment cell (sensu Vertebrata)': {},\n",
+ " 'iris pigment epithelial cell': {}},\n",
+ " 'xanthophore cell': {},\n",
+ " 'iridophore': {},\n",
+ " 'leucophore': {},\n",
+ " 'erythrophore': {},\n",
+ " 'cyanophore': {}},\n",
+ " 'phagocyte': {'mature neutrophil': {'band form neutrophil': {},\n",
+ " 'segmented neutrophil of bone marrow': {}},\n",
+ " 'macrophage': {'elicited macrophage': {'suppressor macrophage': {'kidney interstitial suppressor macrophage': {}},\n",
+ " 'inflammatory macrophage': {'kidney interstitial inflammatory macrophage': {}},\n",
+ " 'alternatively activated macrophage': {'kidney interstitial alternatively activated macrophage': {}}},\n",
+ " 'tissue-resident macrophage': {'Kupffer cell': {},\n",
+ " 'peritoneal macrophage': {},\n",
+ " 'alveolar macrophage': {'CCL3-positive alveolar macrophage': {},\n",
+ " 'metallothionein-positive alveolar macrophage': {}},\n",
+ " 'mesangial phagocyte': {},\n",
+ " 'thymic macrophage': {'thymic medullary macrophage': {},\n",
+ " 'thymic cortical macrophage': {}},\n",
+ " 'secondary lymphoid organ macrophage': {'lymph node macrophage': {'lymph node subcapsular sinus macrophage': {},\n",
+ " 'lymph node tingible body macrophage': {}},\n",
+ " 'splenic macrophage': {'splenic marginal zone macrophage': {},\n",
+ " 'splenic metallophillic macrophage': {},\n",
+ " 'splenic red pulp macrophage': {},\n",
+ " 'splenic white pulp macrophage': {'splenic tingible body macrophage': {}}},\n",
+ " 'mucosa-associated lymphoid tissue macrophage': {'gut-associated lymphoid tissue macrophage': {'gastrointestinal tract (lamina propria) macrophage': {'gastrointestinal tract (lamina propria) macrophage of small intestine': {},\n",
+ " 'gastrointestinal tract (lamina propria) macrophage of large intestine': {}},\n",
+ " 'tonsillar macrophage': {},\n",
+ " \"Peyer's patch macrophage\": {}},\n",
+ " 'nasal and broncial associated lymphoid tissue macrophage': {}}},\n",
+ " 'central nervous system macrophage': {'microglial cell': {'immature microglial cell': {},\n",
+ " 'mature microglial cell': {}},\n",
+ " 'meningeal macrophage': {},\n",
+ " 'choroid-plexus macrophage': {},\n",
+ " 'perivascular macrophage': {}},\n",
+ " 'melanophage': {},\n",
+ " 'pleural macrophage': {},\n",
+ " 'bone marrow macrophage': {},\n",
+ " 'adipose macrophage': {'F4/80-negative adipose macrophage': {},\n",
+ " 'F4/80-positive adipose macrophage': {}},\n",
+ " 'kidney resident macrophage': {},\n",
+ " 'lung interstitial macrophage': {}},\n",
+ " 'epithelioid macrophage': {},\n",
+ " 'appendix macrophage': {},\n",
+ " 'colon macrophage': {},\n",
+ " 'macrophage of medullary sinus of lymph node': {},\n",
+ " 'anorectum macrophage': {},\n",
+ " 'lung macrophage': {'alveolar macrophage': {'CCL3-positive alveolar macrophage': {},\n",
+ " 'metallothionein-positive alveolar macrophage': {}},\n",
+ " 'lung interstitial macrophage': {}},\n",
+ " 'Hofbauer cell': {}},\n",
+ " 'phagocyte (sensu Vertebrata)': {'mononuclear phagocyte': {},\n",
+ " 'multinucleated phagocyte': {}},\n",
+ " 'phagocyte (sensu Nematoda and Protostomia)': {'coelomocyte': {},\n",
+ " 'pericardial nephrocyte': {},\n",
+ " 'garland cell': {}},\n",
+ " 'classical monocyte': {'CD14-positive, CD16-negative classical monocyte': {},\n",
+ " 'Gr1-high classical monocyte': {'MHC-II-negative classical monocyte': {'lymphoid MHC-II-negative classical monocyte': {}},\n",
+ " 'MHC-II-positive classical monocyte': {}}},\n",
+ " 'type A synovial cell': {},\n",
+ " 'glomerular mesangial cell': {}},\n",
+ " 'uric acid accumulating cell': {},\n",
+ " 'crystallin accumulating cell': {'compound eye cone cell': {'posterior cone cell (sensu Endopterygota)': {},\n",
+ " 'anterior cone cell (sensu Endopterygota)': {},\n",
+ " 'equatorial cone cell (sensu Endopterygota)': {}},\n",
+ " 'vertebrate lens cell': {'lens epithelial cell': {'anterior lens cell': {}},\n",
+ " 'lens fiber cell': {'secondary lens fiber': {'non-nucleated secondary lens fiber': {},\n",
+ " 'nucleated secondary lens fiber': {}},\n",
+ " 'primary lens fiber': {}}}},\n",
+ " 'metal ion accumulating cell': {'copper accumulating cell': {},\n",
+ " 'iron accumulating cell': {}},\n",
+ " 'keratin accumulating cell': {'keratinizing barrier epithelial cell': {'keratinocyte': {'Merkel cell': {},\n",
+ " 'prickle cell': {},\n",
+ " 'basal cell of epidermis': {'limb basal cell of epidermis': {}},\n",
+ " 'granular cell of epidermis': {},\n",
+ " 'squamous cell of epidermis': {},\n",
+ " 'keratinocyte stem cell': {},\n",
+ " 'foreskin keratinocyte': {},\n",
+ " 'hair follicular keratinocyte': {'keratinized cell of hair follicle': {}},\n",
+ " 'suprabasal keratinocyte': {}},\n",
+ " 'keratinized cell of the oral mucosa': {},\n",
+ " 'keratinized squamous cell of esophagus': {},\n",
+ " 'keratinized epithelial cell of the anal canal': {}},\n",
+ " 'corneocyte': {}},\n",
+ " 'glycogen accumulating cell': {},\n",
+ " 'yolk cell': {},\n",
+ " 'fat body cell': {},\n",
+ " 'storage cell': {}},\n",
+ " 'oxygen accumulating cell': {'erythrocyte': {'nucleate erythrocyte': {},\n",
+ " 'enucleate erythrocyte': {'GlyA-positive erythrocyte': {},\n",
+ " 'Ly-76 high positive erythrocyte': {},\n",
+ " 'echinocyte': {},\n",
+ " 'fetal derived definitive erythrocyte': {}}}},\n",
+ " 'polyploid cell': {'invertebrate nurse cell': {},\n",
+ " 'polytene cell': {},\n",
+ " 'endopolyploid cell': {'hepatocyte': {'periportal region hepatocyte': {},\n",
+ " 'midzonal region hepatocyte': {},\n",
+ " 'centrilobular region hepatocyte': {}}}},\n",
+ " 'haploid cell': {'spermatid': {'early spermatid': {}, 'late spermatid': {}},\n",
+ " 'gamete': {'male gamete': {'sperm': {'Y chromosome-bearing sperm cell': {},\n",
+ " 'X chromosome-bearing sperm cell': {},\n",
+ " 'motile sperm cell': {'amoeboid sperm cell': {},\n",
+ " 'flagellated sperm cell': {}},\n",
+ " 'non-motile sperm cell': {}}},\n",
+ " 'female gamete': {'egg cell': {}}},\n",
+ " 'secondary spermatocyte': {}},\n",
+ " 'diploid cell': {},\n",
+ " 'mitogenic signaling cell': {'tip cell': {'malpighian tubule tip cell': {}},\n",
+ " 'distal tip cell (sensu Nematoda)': {}},\n",
+ " 'apoptosis fated cell': {},\n",
+ " 'defensive cell': {'phagocyte': {'mature neutrophil': {'band form neutrophil': {},\n",
+ " 'segmented neutrophil of bone marrow': {}},\n",
+ " 'macrophage': {'elicited macrophage': {'suppressor macrophage': {'kidney interstitial suppressor macrophage': {}},\n",
+ " 'inflammatory macrophage': {'kidney interstitial inflammatory macrophage': {}},\n",
+ " 'alternatively activated macrophage': {'kidney interstitial alternatively activated macrophage': {}}},\n",
+ " 'tissue-resident macrophage': {'Kupffer cell': {},\n",
+ " 'peritoneal macrophage': {},\n",
+ " 'alveolar macrophage': {'CCL3-positive alveolar macrophage': {},\n",
+ " 'metallothionein-positive alveolar macrophage': {}},\n",
+ " 'mesangial phagocyte': {},\n",
+ " 'thymic macrophage': {'thymic medullary macrophage': {},\n",
+ " 'thymic cortical macrophage': {}},\n",
+ " 'secondary lymphoid organ macrophage': {'lymph node macrophage': {'lymph node subcapsular sinus macrophage': {},\n",
+ " 'lymph node tingible body macrophage': {}},\n",
+ " 'splenic macrophage': {'splenic marginal zone macrophage': {},\n",
+ " 'splenic metallophillic macrophage': {},\n",
+ " 'splenic red pulp macrophage': {},\n",
+ " 'splenic white pulp macrophage': {'splenic tingible body macrophage': {}}},\n",
+ " 'mucosa-associated lymphoid tissue macrophage': {'gut-associated lymphoid tissue macrophage': {'gastrointestinal tract (lamina propria) macrophage': {'gastrointestinal tract (lamina propria) macrophage of small intestine': {},\n",
+ " 'gastrointestinal tract (lamina propria) macrophage of large intestine': {}},\n",
+ " 'tonsillar macrophage': {},\n",
+ " \"Peyer's patch macrophage\": {}},\n",
+ " 'nasal and broncial associated lymphoid tissue macrophage': {}}},\n",
+ " 'central nervous system macrophage': {'microglial cell': {'immature microglial cell': {},\n",
+ " 'mature microglial cell': {}},\n",
+ " 'meningeal macrophage': {},\n",
+ " 'choroid-plexus macrophage': {},\n",
+ " 'perivascular macrophage': {}},\n",
+ " 'melanophage': {},\n",
+ " 'pleural macrophage': {},\n",
+ " 'bone marrow macrophage': {},\n",
+ " 'adipose macrophage': {'F4/80-negative adipose macrophage': {},\n",
+ " 'F4/80-positive adipose macrophage': {}},\n",
+ " 'kidney resident macrophage': {},\n",
+ " 'lung interstitial macrophage': {}},\n",
+ " 'epithelioid macrophage': {},\n",
+ " 'appendix macrophage': {},\n",
+ " 'colon macrophage': {},\n",
+ " 'macrophage of medullary sinus of lymph node': {},\n",
+ " 'anorectum macrophage': {},\n",
+ " 'lung macrophage': {'alveolar macrophage': {'CCL3-positive alveolar macrophage': {},\n",
+ " 'metallothionein-positive alveolar macrophage': {}},\n",
+ " 'lung interstitial macrophage': {}},\n",
+ " 'Hofbauer cell': {}},\n",
+ " 'phagocyte (sensu Vertebrata)': {'mononuclear phagocyte': {},\n",
+ " 'multinucleated phagocyte': {}},\n",
+ " 'phagocyte (sensu Nematoda and Protostomia)': {'coelomocyte': {},\n",
+ " 'pericardial nephrocyte': {},\n",
+ " 'garland cell': {}},\n",
+ " 'classical monocyte': {'CD14-positive, CD16-negative classical monocyte': {},\n",
+ " 'Gr1-high classical monocyte': {'MHC-II-negative classical monocyte': {'lymphoid MHC-II-negative classical monocyte': {}},\n",
+ " 'MHC-II-positive classical monocyte': {}}},\n",
+ " 'type A synovial cell': {},\n",
+ " 'glomerular mesangial cell': {}},\n",
+ " 'follicular dendritic cell': {\"Peyer's patch follicular dendritic cell\": {}},\n",
+ " 'M cell of gut': {'microfold cell of epithelium of small intestine': {'microfold cell of epithelium of intestinal villus': {'microfold cell of epithelium proper of duodenum': {}},\n",
+ " 'microfold cell of epithelium proper of small intestine': {},\n",
+ " 'microfold cell of epithelium proper of jejunum': {},\n",
+ " 'microfold cell of epithelium proper of ileum': {}},\n",
+ " 'microfold cell of epithelium proper of large intestine': {'microfold cell of epithelium proper of anorectum': {},\n",
+ " 'microfold cell of epithelium proper of appendix': {}}},\n",
+ " 'alarm substance cell': {}},\n",
+ " 'prokaryotic cell': {'endospore': {},\n",
+ " 'heterocyst': {},\n",
+ " 'actinomycete-type spore': {}},\n",
+ " 'transporting cell': {'M cell of gut': {'microfold cell of epithelium of small intestine': {'microfold cell of epithelium of intestinal villus': {'microfold cell of epithelium proper of duodenum': {}},\n",
+ " 'microfold cell of epithelium proper of small intestine': {},\n",
+ " 'microfold cell of epithelium proper of jejunum': {},\n",
+ " 'microfold cell of epithelium proper of ileum': {}},\n",
+ " 'microfold cell of epithelium proper of large intestine': {'microfold cell of epithelium proper of anorectum': {},\n",
+ " 'microfold cell of epithelium proper of appendix': {}}},\n",
+ " 'choroid plexus epithelial cell': {}},\n",
+ " 'photosynthetic cell': {},\n",
+ " 'supporting cell': {'Sertoli cell': {},\n",
+ " 'supporting cell (sensu Nematoda and Protostomia)': {'thecogen cell': {},\n",
+ " 'scolopale cell': {},\n",
+ " 'scolopidial ligament cell': {},\n",
+ " 'supporting cell (sensu Nematoda)': {'sheath cell (sensu Nematoda)': {},\n",
+ " 'socket cell (sensu Nematoda)': {}},\n",
+ " 'cap cell': {}},\n",
+ " 'ligament cell': {},\n",
+ " 'attachment cell': {'tendon cell': {}},\n",
+ " 'labyrinth supporting cell': {},\n",
+ " 'folliculostellate cell': {'folliculostellate cell of pars distalis of adenohypophysis': {}},\n",
+ " 'pericyte': {'mesangial cell': {'extraglomerular mesangial cell': {},\n",
+ " 'glomerular mesangial cell': {}},\n",
+ " 'central nervous system pericyte': {'brain pericyte': {}},\n",
+ " 'lung pericyte': {},\n",
+ " 'renal interstitial pericyte': {'extraglomerular mesangial cell': {},\n",
+ " 'glomerular mesangial cell': {}},\n",
+ " 'placental pericyte': {'decidual pericyte': {}}},\n",
+ " 'perijunctional fibroblast': {},\n",
+ " 'terminal Schwann cell': {},\n",
+ " 'paraganglia type 2 cell': {},\n",
+ " 'sustentacular cell': {'type II cell of carotid body': {},\n",
+ " 'type I taste bud cell': {}},\n",
+ " 'neuromast supporting cell': {'anterior lateral line neuromast supporting cell': {},\n",
+ " 'posterior lateral line neuromast supporting cell': {}},\n",
+ " 'olfactory epithelial supporting cell': {},\n",
+ " 'supporting cell of carotid body': {'type II cell of carotid body': {}},\n",
+ " 'adventitial cell': {'fibroblast of tunica adventitia of artery': {'fibroblast of the aortic adventitia': {}},\n",
+ " 'ureter adventitial cell': {'fibrocyte of adventitia of ureter': {}}},\n",
+ " 'auditory epithelial supporting cell': {'supporting cell of cochlea': {'Claudius cell': {},\n",
+ " 'Boettcher cell': {},\n",
+ " 'border cell of cochlea': {},\n",
+ " 'interdental cell of cochlea': {},\n",
+ " 'organ of Corti supporting cell': {'Hensen cell': {},\n",
+ " 'phalangeal cell': {\"Deiter's cell\": {}, 'inner phalangeal cell': {}},\n",
+ " 'pillar cell': {'internal pillar cell of cochlea': {},\n",
+ " 'external pillar cell of cochlea': {}}}},\n",
+ " 'supporting cell of vestibular epithelium': {'external supporting cell of vestibular epithelium': {},\n",
+ " 'external limiting cell of vestibular epithelium': {}}}},\n",
+ " 'nitrogen fixing cell': {'heterocyst': {}},\n",
+ " 'foam cell': {'macrophage derived foam cell': {},\n",
+ " 'smooth muscle cell derived foam cell': {}},\n",
+ " 'nucleate cell': {'single nucleate cell': {'mononuclear phagocyte': {},\n",
+ " 'nucleated thrombocyte': {},\n",
+ " 'thromboblast': {},\n",
+ " 'mononuclear cell': {'dendritic cell': {'plasmacytoid dendritic cell': {'thymic plasmacytoid dendritic cell': {},\n",
+ " 'CD11c-low plasmacytoid dendritic cell': {'immature CD11c-low plasmacytoid dendritic cell': {},\n",
+ " 'mature CD11c-low plasmacytoid dendritic cell': {},\n",
+ " 'CD8_alpha-negative plasmacytoid dendritic cell': {},\n",
+ " 'CD8_alpha-positive plasmacytoid dendritic cell': {}},\n",
+ " 'CD11c-negative plasmacytoid dendritic cell': {'immature CD11c-negative plasmacytoid dendritic cell': {},\n",
+ " 'mature CD11c-negative plasmacytoid dendritic cell': {}},\n",
+ " 'plasmacytoid dendritic cell, human': {},\n",
+ " 'CD141-positive myeloid dendritic cell': {}},\n",
+ " 'conventional dendritic cell': {'Langerhans cell': {'CD1a-positive Langerhans cell': {'immature CD1a-positive Langerhans cell': {},\n",
+ " 'mature CD1a-positive Langerhans cell': {}},\n",
+ " 'CD8_alpha-low Langerhans cell': {'immature CD8_alpha-low Langerhans cell': {},\n",
+ " 'mature CD8_alpha-low Langerhans cell': {}},\n",
+ " 'epidermal Langerhans cell': {}},\n",
+ " 'myeloid dendritic cell': {'myeloid dendritic cell, human': {},\n",
+ " 'CD141-positive myeloid dendritic cell': {},\n",
+ " 'CD1c-positive myeloid dendritic cell': {},\n",
+ " 'CD16-positive myeloid dendritic cell': {'immature CD16-positive myeloid dendritic cell': {},\n",
+ " 'mature CD16-positive myeloid dendritic cell': {}},\n",
+ " 'monocyte-derived dendritic cell': {}},\n",
+ " 'immature conventional dendritic cell': {'immature CD8_alpha-negative CD11b-positive dendritic cell': {},\n",
+ " 'immature CD8_alpha-negative CD11b-negative dendritic cell': {},\n",
+ " 'immature CD8_alpha-positive CD11b-negative dendritic cell': {},\n",
+ " 'immature dermal dendritic cell': {'immature CD14-positive dermal dendritic cell': {},\n",
+ " 'immature CD1a-positive dermal dendritic cell': {}},\n",
+ " 'immature interstitial dendritic cell': {},\n",
+ " 'immature CD1a-positive Langerhans cell': {},\n",
+ " 'immature CD8_alpha-low Langerhans cell': {},\n",
+ " 'immature CD16-positive myeloid dendritic cell': {}},\n",
+ " 'mature conventional dendritic cell': {'mature CD8_alpha-negative CD11b-negative dendritic cell': {},\n",
+ " 'mature CD8_alpha-negative CD11b-positive dendritic cell': {},\n",
+ " 'mature CD8_alpha-positive CD11b-negative dendritic cell': {},\n",
+ " 'mature dermal dendritic cell': {'mature CD14-positive dermal dendritic cell': {},\n",
+ " 'mature CD1a-positive dermal dendritic cell': {}},\n",
+ " 'mature interstitial dendritic cell': {},\n",
+ " 'mature CD1a-positive Langerhans cell': {},\n",
+ " 'mature CD8_alpha-low Langerhans cell': {},\n",
+ " 'mature CD16-positive myeloid dendritic cell': {}},\n",
+ " 'thymic conventional dendritic cell': {'CD8alpha-positive thymic conventional dendritic cell': {},\n",
+ " 'CD8alpha-negative thymic conventional dendritic cell': {}},\n",
+ " 'CD8_alpha-negative CD11b-negative dendritic cell': {'immature CD8_alpha-negative CD11b-negative dendritic cell': {},\n",
+ " 'mature CD8_alpha-negative CD11b-negative dendritic cell': {}},\n",
+ " 'CD8_alpha-positive CD11b-negative dendritic cell': {'immature CD8_alpha-positive CD11b-negative dendritic cell': {},\n",
+ " 'mature CD8_alpha-positive CD11b-negative dendritic cell': {}},\n",
+ " 'CD103-positive dendritic cell': {'langerin-positive dermal dendritic cell': {},\n",
+ " 'liver CD103-positive dendritic cell': {},\n",
+ " 'CD103-positive, langerin-positive lymph node dendritic cell': {}},\n",
+ " 'adipose dendritic cell': {'SIRPa-positive adipose dendritic cell': {},\n",
+ " 'SIRPa-negative adipose dendritic cell': {}},\n",
+ " 'CD11b-positive dendritic cell': {'CD4-positive CD11b-positive dendritic cell': {'immature CD8_alpha-negative CD11b-positive dendritic cell': {},\n",
+ " 'mature CD8_alpha-negative CD11b-positive dendritic cell': {}},\n",
+ " 'dermal dendritic cell': {'immature dermal dendritic cell': {'immature CD14-positive dermal dendritic cell': {},\n",
+ " 'immature CD1a-positive dermal dendritic cell': {}},\n",
+ " 'mature dermal dendritic cell': {'mature CD14-positive dermal dendritic cell': {},\n",
+ " 'mature CD1a-positive dermal dendritic cell': {}},\n",
+ " 'langerin-positive dermal dendritic cell': {},\n",
+ " 'langerin-negative dermal dendritic cell': {},\n",
+ " 'CD14-positive dermal dendritic cell': {'immature CD14-positive dermal dendritic cell': {},\n",
+ " 'mature CD14-positive dermal dendritic cell': {}},\n",
+ " 'CD1a-positive dermal dendritic cell': {'immature CD1a-positive dermal dendritic cell': {},\n",
+ " 'mature CD1a-positive dermal dendritic cell': {}}},\n",
+ " 'interstitial dendritic cell': {'immature interstitial dendritic cell': {},\n",
+ " 'mature interstitial dendritic cell': {},\n",
+ " 'kidney resident dendritic cell': {}},\n",
+ " 'Cd4-negative, CD8_alpha-negative, CD11b-positive dendritic cell': {'liver CD103-negative dendritic cell': {},\n",
+ " 'liver CD103-positive dendritic cell': {},\n",
+ " 'CD103-positive, langerin-positive lymph node dendritic cell': {},\n",
+ " 'CD103-negative, langerin-positive lymph node dendritic cell': {},\n",
+ " 'CD11b-low, CD103-negative, langerin-negative lymph node dendritic cell': {},\n",
+ " 'CD11b-high, CD103-negative, langerin-negative lymph node dendritic cell': {}},\n",
+ " 'epidermal Langerhans cell': {},\n",
+ " 'small intestine serosal dendritic cell': {}},\n",
+ " 'langerin-positive lymph node dendritic cell': {'CD103-positive, langerin-positive lymph node dendritic cell': {},\n",
+ " 'CD103-negative, langerin-positive lymph node dendritic cell': {}},\n",
+ " 'langerin-negative, CD103-negative lymph node dendritic cell': {'CD11b-low, CD103-negative, langerin-negative lymph node dendritic cell': {},\n",
+ " 'CD11b-high, CD103-negative, langerin-negative lymph node dendritic cell': {}}},\n",
+ " 'dendritic cell, human': {'myeloid dendritic cell, human': {},\n",
+ " 'plasmacytoid dendritic cell, human': {},\n",
+ " 'Axl+ dendritic cell, human': {}},\n",
+ " 'dendritic cell of appendix': {},\n",
+ " 'liver dendritic cell': {},\n",
+ " 'lung migratory dendritic cell': {}},\n",
+ " 'lymphocyte': {'T cell': {'alpha-beta T cell': {'immature alpha-beta T cell': {'double-positive, alpha-beta thymocyte': {'resting double-positive thymocyte': {},\n",
+ " 'double-positive blast': {},\n",
+ " 'CD69-positive double-positive thymocyte': {},\n",
+ " 'CD4-intermediate, CD8-positive double-positive thymocyte': {},\n",
+ " 'CD4-positive, CD8-intermediate double-positive thymocyte': {}},\n",
+ " 'CD4-positive, alpha-beta thymocyte': {'CD24-positive, CD4 single-positive thymocyte': {},\n",
+ " 'CD69-positive, CD4-positive single-positive thymocyte': {}},\n",
+ " 'CD8-positive, alpha-beta thymocyte': {'CD24-positive, CD8 single-positive thymocyte': {},\n",
+ " 'CD69-positive, CD8-positive single-positive thymocyte': {}},\n",
+ " 'immature NK T cell': {'immature NK T cell stage I': {},\n",
+ " 'immature NK T cell stage II': {},\n",
+ " 'immature NK T cell stage III': {},\n",
+ " 'immature NK T cell stage IV': {}}},\n",
+ " 'mature alpha-beta T cell': {'CD4-positive, alpha-beta T cell': {'CD4-positive helper T cell': {'T-helper 1 cell': {},\n",
+ " 'T-helper 2 cell': {},\n",
+ " 'T-helper 17 cell': {},\n",
+ " 'Tr1 cell': {},\n",
+ " 'T-helper 22 cell': {},\n",
+ " 'T follicular helper cell': {'germinal center T cell': {}},\n",
+ " 'T-helper 9 cell': {}},\n",
+ " 'CD4-positive, CD25-positive, alpha-beta regulatory T cell': {'induced T-regulatory cell': {},\n",
+ " 'natural T-regulatory cell': {},\n",
+ " 'CD4-positive, CD25-positive, CCR4-positive, alpha-beta regulatory T cell': {'naive CCR4-positive regulatory T cell': {},\n",
+ " 'memory CCR4-positive regulatory T cell': {},\n",
+ " 'activated CD4-positive, CD25-positive, CCR4-positive, alpha-beta regulatory T cell, human': {}},\n",
+ " 'naive regulatory T cell': {'naive CCR4-positive regulatory T cell': {}},\n",
+ " 'memory regulatory T cell': {'memory CCR4-positive regulatory T cell': {}}},\n",
+ " 'CD4-positive, alpha-beta intraepithelial T cell': {'CD2-positive, CD5-positive, CD44-positive alpha-beta intraepithelial T cell': {}},\n",
+ " 'naive thymus-derived CD4-positive, alpha-beta T cell': {},\n",
+ " 'activated CD4-positive, alpha-beta T cell': {'activated CD4-positive, alpha-beta T cell, human': {}},\n",
+ " 'CD4-positive, alpha-beta memory T cell': {'effector memory CD4-positive, alpha-beta T cell, terminally differentiated': {},\n",
+ " 'CD4-positive, alpha-beta memory T cell, CD45RO-positive': {'central memory CD4-positive, alpha-beta T cell': {},\n",
+ " 'effector memory CD4-positive, alpha-beta T cell': {}},\n",
+ " 'memory regulatory T cell': {'memory CCR4-positive regulatory T cell': {}},\n",
+ " 'lung resident memory CD4-positive, alpha-beta T cell': {}},\n",
+ " 'CD4-positive, alpha-beta cytotoxic T cell': {},\n",
+ " 'effector CD4-positive, alpha-beta T cell': {},\n",
+ " 'CD4-positive, CXCR3-negative, CCR6-negative, alpha-beta T cell': {'T-helper 2 cell': {}},\n",
+ " 'mature CD4 single-positive thymocyte': {}},\n",
+ " 'CD8-positive, alpha-beta T cell': {'CD8-positive, alpha-beta cytotoxic T cell': {},\n",
+ " 'CD8-positive, alpha-beta regulatory T cell': {'CD8-positive, CD25-positive, alpha-beta regulatory T cell': {},\n",
+ " 'CD8-positive, CD28-negative, alpha-beta regulatory T cell': {},\n",
+ " 'CD8-positive, CXCR3-positive, alpha-beta regulatory T cell': {}},\n",
+ " 'naive thymus-derived CD8-positive, alpha-beta T cell': {},\n",
+ " 'activated CD8-positive, alpha-beta T cell': {'activated CD8-positive, alpha-beta T cell, human': {}},\n",
+ " 'CD8-positive, alpha-beta cytokine secreting effector T cell': {'Tc1 cell': {},\n",
+ " 'Tc2 cell': {},\n",
+ " 'Tc17 cell': {}},\n",
+ " 'CD8-positive, alpha-beta memory T cell': {'effector memory CD8-positive, alpha-beta T cell, terminally differentiated': {},\n",
+ " 'CD8-positive, alpha-beta memory T cell, CD45RO-positive': {'central memory CD8-positive, alpha-beta T cell': {},\n",
+ " 'effector memory CD8-positive, alpha-beta T cell': {}},\n",
+ " 'lung resident memory CD8-positive, alpha-beta T cell': {'lung resident memory CD8-positive, CD103-positive, alpha-beta T cell': {}}},\n",
+ " 'effector CD8-positive, alpha-beta T cell': {},\n",
+ " 'CD8-positive, CXCR3-negative, CCR6-negative, alpha-beta T cell': {'Tc2 cell': {}},\n",
+ " 'mature CD8 single-positive thymocyte': {}},\n",
+ " 'alpha-beta intraepithelial T cell': {'CD4-positive, alpha-beta intraepithelial T cell': {'CD2-positive, CD5-positive, CD44-positive alpha-beta intraepithelial T cell': {}},\n",
+ " 'CD8-alpha-beta-positive, alpha-beta intraepithelial T cell': {},\n",
+ " 'CD8-alpha-alpha-positive, alpha-beta intraepithelial T cell': {},\n",
+ " 'CD4-negative, CD8-negative, alpha-beta intraepithelial T cell': {}},\n",
+ " 'mature NK T cell': {'type I NK T cell': {'CD4-positive type I NK T cell': {'activated CD4-positive type I NK T cell': {},\n",
+ " 'CD4-positive type I NK T cell secreting interferon-gamma': {},\n",
+ " 'CD4-positive type I NK T cell secreting interleukin-4': {}},\n",
+ " 'CD4-negative, CD8-negative type I NK T cell': {'activated CD4-negative, CD8-negative type I NK T cell': {},\n",
+ " 'CD4-negative, CD8-negative type I NK T cell secreting interferon-gamma': {},\n",
+ " 'CD4-negative, CD8-negative type I NK T cell secreting interleukin-4': {}}},\n",
+ " 'type II NK T cell': {'activated type II NK T cell': {},\n",
+ " 'type II NK T cell secreting interferon-gamma': {},\n",
+ " 'type II NK T cell secreting interleukin-4': {}}},\n",
+ " 'mucosal invariant T cell': {},\n",
+ " 'effector memory CD45RA-positive, alpha-beta T cell, terminally differentiated': {'effector memory CD8-positive, alpha-beta T cell, terminally differentiated': {},\n",
+ " 'effector memory CD4-positive, alpha-beta T cell, terminally differentiated': {}}}},\n",
+ " 'gamma-delta T cell': {'immature gamma-delta T cell': {'CD25-positive, CD27-positive immature gamma-delta T cell': {}},\n",
+ " 'mature gamma-delta T cell': {'gamma-delta intraepithelial T cell': {'CD8-alpha alpha positive, gamma-delta intraepithelial T cell': {'Vgamma5-positive CD8alpha alpha positive gamma-delta intraepithelial T cell': {},\n",
+ " 'Vgamma5-negative CD8alpha alpha positive gamma-delta intraepithelial T cell': {}},\n",
+ " 'CD4-negative CD8-negative gamma-delta intraepithelial T cell': {}},\n",
+ " 'dendritic epidermal T cell': {},\n",
+ " 'CD27-positive gamma-delta T cell': {},\n",
+ " 'CD27-negative gamma-delta T cell': {}},\n",
+ " 'gamma-delta thymocyte': {'immature Vgamma2-positive thymocyte': {},\n",
+ " 'mature Vgamma2-positive thymocyte': {},\n",
+ " 'immature Vgamma2-negative thymocyte': {},\n",
+ " 'mature Vgamma2-negative thymocyte': {},\n",
+ " 'Vgamma1.1-positive, Vdelta6.3-negative thymocyte': {'mature Vgamma1.1-positive, Vdelta6.3-negative thymocyte': {},\n",
+ " 'immature Vgamma1.1-positive, Vdelta6.3-negative thymocyte': {}},\n",
+ " 'Vgamma1.1-positive, Vdelta6.3-positive thymocyte': {'immature Vgamma1.1-positive, Vdelta6.3-positive thymocyte': {},\n",
+ " 'mature Vgamma1.1-positive, Vdelta6.3-positive thymocyte': {}}}},\n",
+ " 'mature T cell': {'mature alpha-beta T cell': {'CD4-positive, alpha-beta T cell': {'CD4-positive helper T cell': {'T-helper 1 cell': {},\n",
+ " 'T-helper 2 cell': {},\n",
+ " 'T-helper 17 cell': {},\n",
+ " 'Tr1 cell': {},\n",
+ " 'T-helper 22 cell': {},\n",
+ " 'T follicular helper cell': {'germinal center T cell': {}},\n",
+ " 'T-helper 9 cell': {}},\n",
+ " 'CD4-positive, CD25-positive, alpha-beta regulatory T cell': {'induced T-regulatory cell': {},\n",
+ " 'natural T-regulatory cell': {},\n",
+ " 'CD4-positive, CD25-positive, CCR4-positive, alpha-beta regulatory T cell': {'naive CCR4-positive regulatory T cell': {},\n",
+ " 'memory CCR4-positive regulatory T cell': {},\n",
+ " 'activated CD4-positive, CD25-positive, CCR4-positive, alpha-beta regulatory T cell, human': {}},\n",
+ " 'naive regulatory T cell': {'naive CCR4-positive regulatory T cell': {}},\n",
+ " 'memory regulatory T cell': {'memory CCR4-positive regulatory T cell': {}}},\n",
+ " 'CD4-positive, alpha-beta intraepithelial T cell': {'CD2-positive, CD5-positive, CD44-positive alpha-beta intraepithelial T cell': {}},\n",
+ " 'naive thymus-derived CD4-positive, alpha-beta T cell': {},\n",
+ " 'activated CD4-positive, alpha-beta T cell': {'activated CD4-positive, alpha-beta T cell, human': {}},\n",
+ " 'CD4-positive, alpha-beta memory T cell': {'effector memory CD4-positive, alpha-beta T cell, terminally differentiated': {},\n",
+ " 'CD4-positive, alpha-beta memory T cell, CD45RO-positive': {'central memory CD4-positive, alpha-beta T cell': {},\n",
+ " 'effector memory CD4-positive, alpha-beta T cell': {}},\n",
+ " 'memory regulatory T cell': {'memory CCR4-positive regulatory T cell': {}},\n",
+ " 'lung resident memory CD4-positive, alpha-beta T cell': {}},\n",
+ " 'CD4-positive, alpha-beta cytotoxic T cell': {},\n",
+ " 'effector CD4-positive, alpha-beta T cell': {},\n",
+ " 'CD4-positive, CXCR3-negative, CCR6-negative, alpha-beta T cell': {'T-helper 2 cell': {}},\n",
+ " 'mature CD4 single-positive thymocyte': {}},\n",
+ " 'CD8-positive, alpha-beta T cell': {'CD8-positive, alpha-beta cytotoxic T cell': {},\n",
+ " 'CD8-positive, alpha-beta regulatory T cell': {'CD8-positive, CD25-positive, alpha-beta regulatory T cell': {},\n",
+ " 'CD8-positive, CD28-negative, alpha-beta regulatory T cell': {},\n",
+ " 'CD8-positive, CXCR3-positive, alpha-beta regulatory T cell': {}},\n",
+ " 'naive thymus-derived CD8-positive, alpha-beta T cell': {},\n",
+ " 'activated CD8-positive, alpha-beta T cell': {'activated CD8-positive, alpha-beta T cell, human': {}},\n",
+ " 'CD8-positive, alpha-beta cytokine secreting effector T cell': {'Tc1 cell': {},\n",
+ " 'Tc2 cell': {},\n",
+ " 'Tc17 cell': {}},\n",
+ " 'CD8-positive, alpha-beta memory T cell': {'effector memory CD8-positive, alpha-beta T cell, terminally differentiated': {},\n",
+ " 'CD8-positive, alpha-beta memory T cell, CD45RO-positive': {'central memory CD8-positive, alpha-beta T cell': {},\n",
+ " 'effector memory CD8-positive, alpha-beta T cell': {}},\n",
+ " 'lung resident memory CD8-positive, alpha-beta T cell': {'lung resident memory CD8-positive, CD103-positive, alpha-beta T cell': {}}},\n",
+ " 'effector CD8-positive, alpha-beta T cell': {},\n",
+ " 'CD8-positive, CXCR3-negative, CCR6-negative, alpha-beta T cell': {'Tc2 cell': {}},\n",
+ " 'mature CD8 single-positive thymocyte': {}},\n",
+ " 'alpha-beta intraepithelial T cell': {'CD4-positive, alpha-beta intraepithelial T cell': {'CD2-positive, CD5-positive, CD44-positive alpha-beta intraepithelial T cell': {}},\n",
+ " 'CD8-alpha-beta-positive, alpha-beta intraepithelial T cell': {},\n",
+ " 'CD8-alpha-alpha-positive, alpha-beta intraepithelial T cell': {},\n",
+ " 'CD4-negative, CD8-negative, alpha-beta intraepithelial T cell': {}},\n",
+ " 'mature NK T cell': {'type I NK T cell': {'CD4-positive type I NK T cell': {'activated CD4-positive type I NK T cell': {},\n",
+ " 'CD4-positive type I NK T cell secreting interferon-gamma': {},\n",
+ " 'CD4-positive type I NK T cell secreting interleukin-4': {}},\n",
+ " 'CD4-negative, CD8-negative type I NK T cell': {'activated CD4-negative, CD8-negative type I NK T cell': {},\n",
+ " 'CD4-negative, CD8-negative type I NK T cell secreting interferon-gamma': {},\n",
+ " 'CD4-negative, CD8-negative type I NK T cell secreting interleukin-4': {}}},\n",
+ " 'type II NK T cell': {'activated type II NK T cell': {},\n",
+ " 'type II NK T cell secreting interferon-gamma': {},\n",
+ " 'type II NK T cell secreting interleukin-4': {}}},\n",
+ " 'mucosal invariant T cell': {},\n",
+ " 'effector memory CD45RA-positive, alpha-beta T cell, terminally differentiated': {'effector memory CD8-positive, alpha-beta T cell, terminally differentiated': {},\n",
+ " 'effector memory CD4-positive, alpha-beta T cell, terminally differentiated': {}}},\n",
+ " 'mature gamma-delta T cell': {'gamma-delta intraepithelial T cell': {'CD8-alpha alpha positive, gamma-delta intraepithelial T cell': {'Vgamma5-positive CD8alpha alpha positive gamma-delta intraepithelial T cell': {},\n",
+ " 'Vgamma5-negative CD8alpha alpha positive gamma-delta intraepithelial T cell': {}},\n",
+ " 'CD4-negative CD8-negative gamma-delta intraepithelial T cell': {}},\n",
+ " 'dendritic epidermal T cell': {},\n",
+ " 'CD27-positive gamma-delta T cell': {},\n",
+ " 'CD27-negative gamma-delta T cell': {}},\n",
+ " 'memory T cell': {'CD4-positive, alpha-beta memory T cell': {'effector memory CD4-positive, alpha-beta T cell, terminally differentiated': {},\n",
+ " 'CD4-positive, alpha-beta memory T cell, CD45RO-positive': {'central memory CD4-positive, alpha-beta T cell': {},\n",
+ " 'effector memory CD4-positive, alpha-beta T cell': {}},\n",
+ " 'memory regulatory T cell': {'memory CCR4-positive regulatory T cell': {}},\n",
+ " 'lung resident memory CD4-positive, alpha-beta T cell': {}},\n",
+ " 'CD8-positive, alpha-beta memory T cell': {'effector memory CD8-positive, alpha-beta T cell, terminally differentiated': {},\n",
+ " 'CD8-positive, alpha-beta memory T cell, CD45RO-positive': {'central memory CD8-positive, alpha-beta T cell': {},\n",
+ " 'effector memory CD8-positive, alpha-beta T cell': {}},\n",
+ " 'lung resident memory CD8-positive, alpha-beta T cell': {'lung resident memory CD8-positive, CD103-positive, alpha-beta T cell': {}}}},\n",
+ " 'regulatory T cell': {'CD4-positive, CD25-positive, alpha-beta regulatory T cell': {'induced T-regulatory cell': {},\n",
+ " 'natural T-regulatory cell': {},\n",
+ " 'CD4-positive, CD25-positive, CCR4-positive, alpha-beta regulatory T cell': {'naive CCR4-positive regulatory T cell': {},\n",
+ " 'memory CCR4-positive regulatory T cell': {},\n",
+ " 'activated CD4-positive, CD25-positive, CCR4-positive, alpha-beta regulatory T cell, human': {}},\n",
+ " 'naive regulatory T cell': {'naive CCR4-positive regulatory T cell': {}},\n",
+ " 'memory regulatory T cell': {'memory CCR4-positive regulatory T cell': {}}},\n",
+ " 'CD8-positive, alpha-beta regulatory T cell': {'CD8-positive, CD25-positive, alpha-beta regulatory T cell': {},\n",
+ " 'CD8-positive, CD28-negative, alpha-beta regulatory T cell': {},\n",
+ " 'CD8-positive, CXCR3-positive, alpha-beta regulatory T cell': {}},\n",
+ " 'Tr1 cell': {},\n",
+ " 'T follicular regulatory cell': {}},\n",
+ " 'naive T cell': {'naive thymus-derived CD4-positive, alpha-beta T cell': {},\n",
+ " 'naive thymus-derived CD8-positive, alpha-beta T cell': {},\n",
+ " 'naive regulatory T cell': {'naive CCR4-positive regulatory T cell': {}}},\n",
+ " 'effector T cell': {'cytotoxic T cell': {},\n",
+ " 'helper T cell': {},\n",
+ " 'effector CD4-positive, alpha-beta T cell': {},\n",
+ " 'effector CD8-positive, alpha-beta T cell': {},\n",
+ " 'innate effector T cell': {},\n",
+ " 'exhausted T cell': {}},\n",
+ " 'intraepithelial lymphocyte': {'alpha-beta intraepithelial T cell': {'CD4-positive, alpha-beta intraepithelial T cell': {'CD2-positive, CD5-positive, CD44-positive alpha-beta intraepithelial T cell': {}},\n",
+ " 'CD8-alpha-beta-positive, alpha-beta intraepithelial T cell': {},\n",
+ " 'CD8-alpha-alpha-positive, alpha-beta intraepithelial T cell': {},\n",
+ " 'CD4-negative, CD8-negative, alpha-beta intraepithelial T cell': {}},\n",
+ " 'gamma-delta intraepithelial T cell': {'CD8-alpha alpha positive, gamma-delta intraepithelial T cell': {'Vgamma5-positive CD8alpha alpha positive gamma-delta intraepithelial T cell': {},\n",
+ " 'Vgamma5-negative CD8alpha alpha positive gamma-delta intraepithelial T cell': {}},\n",
+ " 'CD4-negative CD8-negative gamma-delta intraepithelial T cell': {}}},\n",
+ " \"small intestine Peyer's patch T cell\": {}},\n",
+ " 'immature T cell': {'immature alpha-beta T cell': {'double-positive, alpha-beta thymocyte': {'resting double-positive thymocyte': {},\n",
+ " 'double-positive blast': {},\n",
+ " 'CD69-positive double-positive thymocyte': {},\n",
+ " 'CD4-intermediate, CD8-positive double-positive thymocyte': {},\n",
+ " 'CD4-positive, CD8-intermediate double-positive thymocyte': {}},\n",
+ " 'CD4-positive, alpha-beta thymocyte': {'CD24-positive, CD4 single-positive thymocyte': {},\n",
+ " 'CD69-positive, CD4-positive single-positive thymocyte': {}},\n",
+ " 'CD8-positive, alpha-beta thymocyte': {'CD24-positive, CD8 single-positive thymocyte': {},\n",
+ " 'CD69-positive, CD8-positive single-positive thymocyte': {}},\n",
+ " 'immature NK T cell': {'immature NK T cell stage I': {},\n",
+ " 'immature NK T cell stage II': {},\n",
+ " 'immature NK T cell stage III': {},\n",
+ " 'immature NK T cell stage IV': {}}},\n",
+ " 'immature gamma-delta T cell': {'CD25-positive, CD27-positive immature gamma-delta T cell': {}},\n",
+ " 'thymocyte': {'immature single positive thymocyte': {},\n",
+ " 'double-positive, alpha-beta thymocyte': {'resting double-positive thymocyte': {},\n",
+ " 'double-positive blast': {},\n",
+ " 'CD69-positive double-positive thymocyte': {},\n",
+ " 'CD4-intermediate, CD8-positive double-positive thymocyte': {},\n",
+ " 'CD4-positive, CD8-intermediate double-positive thymocyte': {}},\n",
+ " 'CD4-positive, alpha-beta thymocyte': {'CD24-positive, CD4 single-positive thymocyte': {},\n",
+ " 'CD69-positive, CD4-positive single-positive thymocyte': {}},\n",
+ " 'CD8-positive, alpha-beta thymocyte': {'CD24-positive, CD8 single-positive thymocyte': {},\n",
+ " 'CD69-positive, CD8-positive single-positive thymocyte': {}},\n",
+ " 'CD25-positive, CD27-positive immature gamma-delta T cell': {},\n",
+ " 'fetal thymocyte': {'immature dendritic epithelial T cell precursor': {},\n",
+ " 'immature Vgamma2-positive fetal thymocyte': {},\n",
+ " 'mature dendritic epithelial T cell precursor': {},\n",
+ " 'mature Vgamma2-positive fetal thymocyte': {}},\n",
+ " 'double negative thymocyte': {'DN2 thymocyte': {'DN2a thymocyte': {},\n",
+ " 'DN2b thymocyte': {}},\n",
+ " 'DN3 thymocyte': {},\n",
+ " 'DN4 thymocyte': {},\n",
+ " 'gamma-delta thymocyte': {'immature Vgamma2-positive thymocyte': {},\n",
+ " 'mature Vgamma2-positive thymocyte': {},\n",
+ " 'immature Vgamma2-negative thymocyte': {},\n",
+ " 'mature Vgamma2-negative thymocyte': {},\n",
+ " 'Vgamma1.1-positive, Vdelta6.3-negative thymocyte': {'mature Vgamma1.1-positive, Vdelta6.3-negative thymocyte': {},\n",
+ " 'immature Vgamma1.1-positive, Vdelta6.3-negative thymocyte': {}},\n",
+ " 'Vgamma1.1-positive, Vdelta6.3-positive thymocyte': {'immature Vgamma1.1-positive, Vdelta6.3-positive thymocyte': {},\n",
+ " 'mature Vgamma1.1-positive, Vdelta6.3-positive thymocyte': {}}},\n",
+ " 'specified double negative thymocyte (Homo sapiens)': {},\n",
+ " 'committed double negative thymocyte (Homo sapiens)': {},\n",
+ " 'rearranging double negative thymocyte (Homo sapiens)': {},\n",
+ " 'double negative T regulatory cell': {}},\n",
+ " 'CD8aa(I) thymocyte': {},\n",
+ " 'CD8aa(II) thymocyte': {}}},\n",
+ " 'T cell of appendix': {},\n",
+ " 'T cell of medullary sinus of lymph node': {},\n",
+ " 'T cell of anorectum': {},\n",
+ " 'lymph node paracortex T cell': {}},\n",
+ " 'lymphocyte of B lineage': {'B cell': {'B cell, CD19-positive': {'mature B cell': {'memory B cell': {'unswitched memory B cell': {'CD38-negative unswitched memory B cell': {'B220-positive CD38-negative unswitched memory B cell': {'B220-low CD38-negative unswitched memory B cell': {}}},\n",
+ " 'CD38-positive unswitched memory B cell': {'B220-positive CD38-positive unswitched memory B cell': {'B220-low CD38-positive unswitched memory B cell': {}}}},\n",
+ " 'class switched memory B cell': {'IgE memory B cell': {},\n",
+ " 'IgA memory B cell': {},\n",
+ " 'IgG memory B cell': {'CD38-positive IgG memory B cell': {'IgD-positive CD38-positive IgG memory B cell': {},\n",
+ " 'IgD-negative CD38-positive IgG memory B cell': {}},\n",
+ " 'CD38-negative IgG memory B cell': {}},\n",
+ " 'IgG-negative class switched memory B cell': {'CD38-negative IgG-negative class switched memory B cell': {'CD24-positive CD38-negative IgG-negative class switched memory B cell': {},\n",
+ " 'CD24-negative CD38-negative IgG-negative class switched memory B cell': {}},\n",
+ " 'CD38-positive IgG-negative class switched memory B cell': {'B220-positive CD38-positive IgG-negative class switched memory B cell': {'B220-low CD38-positive IgG-negative class switched memory B cell': {}}}}},\n",
+ " 'IgD-negative memory B cell': {'Bm5 B cell': {},\n",
+ " 'IgM memory B cell': {},\n",
+ " 'double negative memory B cell': {'IgG-positive double negative memory B cell': {},\n",
+ " 'IgG-negative double negative memory B cell': {}},\n",
+ " 'IgD-negative CD38-positive IgG memory B cell': {},\n",
+ " 'CD38-negative IgG memory B cell': {}}},\n",
+ " 'naive B cell': {'CD38-positive naive B cell': {'B220-positive CD38-positive naive B cell': {'B220-low CD38-positive naive B cell': {}}},\n",
+ " 'CD38-negative naive B cell': {}},\n",
+ " 'B-1 B cell': {'B-1a B cell': {}, 'B-1b B cell': {}},\n",
+ " 'B-2 B cell': {'follicular B cell': {'Bm1 B cell': {},\n",
+ " 'Bm2 B cell': {}},\n",
+ " 'fraction F mature B cell': {'Bm1 B cell': {}},\n",
+ " \"Peyer's patch B cell\": {}},\n",
+ " 'germinal center B cell': {'Bm3-delta B cell': {},\n",
+ " \"Bm2' B cell\": {},\n",
+ " 'Bm3 B cell': {},\n",
+ " 'Bm4 B cell': {},\n",
+ " 'centrocyte': {},\n",
+ " 'centroblast': {},\n",
+ " 'tonsil germinal center B cell': {}},\n",
+ " 'marginal zone B cell of spleen': {},\n",
+ " 'Be cell': {'Be1 Cell': {}, 'Be2 cell': {}},\n",
+ " 'regulatory B cell': {},\n",
+ " 'plasmablast': {'IgD plasmablast': {},\n",
+ " 'IgE plasmablast': {},\n",
+ " 'IgG plasmablast': {},\n",
+ " 'IgM plasmablast': {},\n",
+ " 'IgA plasmablast': {},\n",
+ " 'CD86-positive plasmablast': {}},\n",
+ " 'marginal zone B cell of lymph node': {}},\n",
+ " 'immature B cell': {'fraction E immature B cell': {},\n",
+ " 'CD38-negative immature B cell': {}},\n",
+ " 'precursor B cell': {'pre-B-II cell': {'small pre-B-II cell': {'CD22-positive, CD38-low small pre-B cell': {}},\n",
+ " 'large pre-B-II cell': {'preBCR-positive large pre-B-II cell': {'CD38-high pre-BCR positive cell': {}},\n",
+ " 'preBCR-negative large pre-B-II cell': {}}},\n",
+ " 'pre-B-I cell': {},\n",
+ " 'late pro-B cell': {},\n",
+ " \"fraction C' precursor B cell\": {},\n",
+ " 'fraction B/C precursor B cell': {'fraction B precursor B cell': {},\n",
+ " 'fraction C precursor B cell': {},\n",
+ " 'fraction D precursor B cell': {}}},\n",
+ " 'transitional stage B cell': {'T1 B cell': {},\n",
+ " 'T2 B cell': {},\n",
+ " 'T3 B cell': {}}},\n",
+ " 'B cell of appendix': {},\n",
+ " 'lymph node mantle zone B cell': {},\n",
+ " 'B cell of medullary sinus of lymph node': {},\n",
+ " 'B cell of anorectum': {},\n",
+ " 'monocytoid B cell': {}},\n",
+ " 'antibody secreting cell': {'plasma cell': {'long lived plasma cell': {'IgE plasma cell': {},\n",
+ " 'IgG plasma cell': {},\n",
+ " 'IgM plasma cell': {},\n",
+ " 'IgA plasma cell': {}},\n",
+ " 'short lived plasma cell': {'IgE short lived plasma cell': {},\n",
+ " 'IgA short lived plasma cell': {},\n",
+ " 'IgG short lived plasma cell': {},\n",
+ " 'IgM short lived plasma cell': {}},\n",
+ " 'plasma cell of appendix': {},\n",
+ " 'plasma cell of medullary sinus of lymph node': {}},\n",
+ " 'plasmablast': {'IgD plasmablast': {},\n",
+ " 'IgE plasmablast': {},\n",
+ " 'IgG plasmablast': {},\n",
+ " 'IgM plasmablast': {},\n",
+ " 'IgA plasmablast': {},\n",
+ " 'CD86-positive plasmablast': {}}},\n",
+ " 'lymphocyte of B lineage, CD19-positive': {'B cell, CD19-positive': {'mature B cell': {'memory B cell': {'unswitched memory B cell': {'CD38-negative unswitched memory B cell': {'B220-positive CD38-negative unswitched memory B cell': {'B220-low CD38-negative unswitched memory B cell': {}}},\n",
+ " 'CD38-positive unswitched memory B cell': {'B220-positive CD38-positive unswitched memory B cell': {'B220-low CD38-positive unswitched memory B cell': {}}}},\n",
+ " 'class switched memory B cell': {'IgE memory B cell': {},\n",
+ " 'IgA memory B cell': {},\n",
+ " 'IgG memory B cell': {'CD38-positive IgG memory B cell': {'IgD-positive CD38-positive IgG memory B cell': {},\n",
+ " 'IgD-negative CD38-positive IgG memory B cell': {}},\n",
+ " 'CD38-negative IgG memory B cell': {}},\n",
+ " 'IgG-negative class switched memory B cell': {'CD38-negative IgG-negative class switched memory B cell': {'CD24-positive CD38-negative IgG-negative class switched memory B cell': {},\n",
+ " 'CD24-negative CD38-negative IgG-negative class switched memory B cell': {}},\n",
+ " 'CD38-positive IgG-negative class switched memory B cell': {'B220-positive CD38-positive IgG-negative class switched memory B cell': {'B220-low CD38-positive IgG-negative class switched memory B cell': {}}}}},\n",
+ " 'IgD-negative memory B cell': {'Bm5 B cell': {},\n",
+ " 'IgM memory B cell': {},\n",
+ " 'double negative memory B cell': {'IgG-positive double negative memory B cell': {},\n",
+ " 'IgG-negative double negative memory B cell': {}},\n",
+ " 'IgD-negative CD38-positive IgG memory B cell': {},\n",
+ " 'CD38-negative IgG memory B cell': {}}},\n",
+ " 'naive B cell': {'CD38-positive naive B cell': {'B220-positive CD38-positive naive B cell': {'B220-low CD38-positive naive B cell': {}}},\n",
+ " 'CD38-negative naive B cell': {}},\n",
+ " 'B-1 B cell': {'B-1a B cell': {}, 'B-1b B cell': {}},\n",
+ " 'B-2 B cell': {'follicular B cell': {'Bm1 B cell': {},\n",
+ " 'Bm2 B cell': {}},\n",
+ " 'fraction F mature B cell': {'Bm1 B cell': {}},\n",
+ " \"Peyer's patch B cell\": {}},\n",
+ " 'germinal center B cell': {'Bm3-delta B cell': {},\n",
+ " \"Bm2' B cell\": {},\n",
+ " 'Bm3 B cell': {},\n",
+ " 'Bm4 B cell': {},\n",
+ " 'centrocyte': {},\n",
+ " 'centroblast': {},\n",
+ " 'tonsil germinal center B cell': {}},\n",
+ " 'marginal zone B cell of spleen': {},\n",
+ " 'Be cell': {'Be1 Cell': {}, 'Be2 cell': {}},\n",
+ " 'regulatory B cell': {},\n",
+ " 'plasmablast': {'IgD plasmablast': {},\n",
+ " 'IgE plasmablast': {},\n",
+ " 'IgG plasmablast': {},\n",
+ " 'IgM plasmablast': {},\n",
+ " 'IgA plasmablast': {},\n",
+ " 'CD86-positive plasmablast': {}},\n",
+ " 'marginal zone B cell of lymph node': {}},\n",
+ " 'immature B cell': {'fraction E immature B cell': {},\n",
+ " 'CD38-negative immature B cell': {}},\n",
+ " 'precursor B cell': {'pre-B-II cell': {'small pre-B-II cell': {'CD22-positive, CD38-low small pre-B cell': {}},\n",
+ " 'large pre-B-II cell': {'preBCR-positive large pre-B-II cell': {'CD38-high pre-BCR positive cell': {}},\n",
+ " 'preBCR-negative large pre-B-II cell': {}}},\n",
+ " 'pre-B-I cell': {},\n",
+ " 'late pro-B cell': {},\n",
+ " \"fraction C' precursor B cell\": {},\n",
+ " 'fraction B/C precursor B cell': {'fraction B precursor B cell': {},\n",
+ " 'fraction C precursor B cell': {},\n",
+ " 'fraction D precursor B cell': {}}},\n",
+ " 'transitional stage B cell': {'T1 B cell': {},\n",
+ " 'T2 B cell': {},\n",
+ " 'T3 B cell': {}}}},\n",
+ " 'B-lymphoblast': {}},\n",
+ " 'innate lymphoid cell': {'group 1 innate lymphoid cell': {'natural killer cell': {'immature natural killer cell': {'CD56-positive, CD161-positive immature natural killer cell, human': {},\n",
+ " 'CD56-negative, CD161-positive immature natural killer cell, human': {},\n",
+ " 'CD27-low, CD11b-low immature natural killer cell, mouse': {},\n",
+ " 'Dx5-negative, NK1.1-positive immature natural killer cell, mouse': {}},\n",
+ " 'mature natural killer cell': {'CD16-negative, CD56-bright natural killer cell, human': {},\n",
+ " 'CD16-positive, CD56-dim natural killer cell, human': {},\n",
+ " 'decidual natural killer cell, human': {},\n",
+ " 'CD27-high, CD11b-high natural killer cell, mouse': {},\n",
+ " 'CD27-low, CD11b-high natural killer cell, mouse': {},\n",
+ " 'CD27-high, CD11b-low natural killer cell, mouse': {},\n",
+ " 'NK1.1-positive natural killer cell, mouse': {'CD11b-positive, CD27-positive natural killer cell, mouse': {},\n",
+ " 'NKGA2-positive natural killer cell, mouse': {},\n",
+ " 'Ly49D-positive natural killer cell, mouse': {},\n",
+ " 'CD94-positive natural killer cell, mouse': {'CD94-positive Ly49CI-positive natural killer cell, mouse': {}},\n",
+ " 'Ly49CI-positive natural killer cell, mouse': {'CD94-positive Ly49CI-positive natural killer cell, mouse': {}},\n",
+ " 'Ly49H-positive natural killer cell, mouse': {},\n",
+ " 'Ly49D-negative natural killer cell, mouse': {},\n",
+ " 'Ly49CI-negative natural killer cell, mouse': {},\n",
+ " 'CD94-negative natural killer cell, mouse': {},\n",
+ " 'Ly49H-negative natural killer cell, mouse': {}}},\n",
+ " 'pre-natural killer cell': {},\n",
+ " 'CD94-negative, Ly49CI-negative natural killer cell, mouse': {},\n",
+ " 'hepatic pit cell': {}},\n",
+ " 'ILC1': {'ILC1, human': {}}},\n",
+ " 'group 2 innate lymphoid cell': {'group 2 innate lymphoid cell, human': {},\n",
+ " 'group 2 innate lymphoid cell, mouse': {}},\n",
+ " 'group 3 innate lymphoid cell': {'group 3 innate lymphoid cell, human': {'NKp44-positive group 3 innate lymphoid cell, human': {},\n",
+ " 'NKp44-negative group 3 innate lymphoid cell, human': {}},\n",
+ " 'lymphoid tissueβinducer cell': {}},\n",
+ " 'immature innate lymphoid cell': {'immature natural killer cell': {'CD56-positive, CD161-positive immature natural killer cell, human': {},\n",
+ " 'CD56-negative, CD161-positive immature natural killer cell, human': {},\n",
+ " 'CD27-low, CD11b-low immature natural killer cell, mouse': {},\n",
+ " 'Dx5-negative, NK1.1-positive immature natural killer cell, mouse': {}},\n",
+ " 'CD34-negative, CD117-positive innate lymphoid cell, human': {'CD34-negative, CD56-positive, CD117-positive innate lymphoid cell, human': {},\n",
+ " 'KLRG1-positive innate lymphoid cell, human': {}},\n",
+ " 'CD34-positive, CD56-positive, CD117-positive common innate lymphoid precursor, human': {'NKp46-positive innate lymphoid cell, human': {}}}},\n",
+ " 'natural helper lymphocyte': {},\n",
+ " \"Peyer's patch lymphocyte\": {\"Peyer's patch B cell\": {},\n",
+ " \"small intestine Peyer's patch T cell\": {}},\n",
+ " 'lymphocyte of large intestine lamina propria': {},\n",
+ " 'lymphocyte of small intestine lamina propria': {},\n",
+ " 'lymphoblast': {'B-lymphoblast': {}},\n",
+ " 'blood lymphocyte': {'peripheral blood lymphocyte': {}}},\n",
+ " 'monocyte': {'classical monocyte': {'CD14-positive, CD16-negative classical monocyte': {},\n",
+ " 'Gr1-high classical monocyte': {'MHC-II-negative classical monocyte': {'lymphoid MHC-II-negative classical monocyte': {}},\n",
+ " 'MHC-II-positive classical monocyte': {}}},\n",
+ " 'non-classical monocyte': {'Gr1-low non-classical monocyte': {'MHC-II-negative non-classical monocyte': {'lymphoid MHC-II-negative non-classical monocyte': {}},\n",
+ " 'MHC-II-low non-classical monocyte': {},\n",
+ " 'MHC-II-high non-classical monocyte': {}},\n",
+ " 'CD14-low, CD16-positive monocyte': {}},\n",
+ " 'CD115-positive monocyte': {'Gr1-high classical monocyte': {'MHC-II-negative classical monocyte': {'lymphoid MHC-II-negative classical monocyte': {}},\n",
+ " 'MHC-II-positive classical monocyte': {}},\n",
+ " 'Gr1-positive, CD43-positive monocyte': {'Gr1-low non-classical monocyte': {'MHC-II-negative non-classical monocyte': {'lymphoid MHC-II-negative non-classical monocyte': {}},\n",
+ " 'MHC-II-low non-classical monocyte': {},\n",
+ " 'MHC-II-high non-classical monocyte': {}}}},\n",
+ " 'CD14-positive monocyte': {'CD14-positive, CD16-negative classical monocyte': {},\n",
+ " 'CD14-low, CD16-positive monocyte': {},\n",
+ " 'CD14-positive, CD16-positive monocyte': {'CD14-positive, CD16-low monocyte': {}}},\n",
+ " 'intermediate monocyte': {'CD14-positive, CD16-low monocyte': {},\n",
+ " 'Gr1-positive, CD43-positive monocyte': {'Gr1-low non-classical monocyte': {'MHC-II-negative non-classical monocyte': {'lymphoid MHC-II-negative non-classical monocyte': {}},\n",
+ " 'MHC-II-low non-classical monocyte': {},\n",
+ " 'MHC-II-high non-classical monocyte': {}}}}},\n",
+ " 'mononuclear osteoclast': {'mononuclear odontoclast': {}},\n",
+ " 'mononuclear cell of bone marrow': {},\n",
+ " 'peripheral blood mononuclear cell': {'blood lymphocyte': {'peripheral blood lymphocyte': {}}},\n",
+ " 'mononuclear cell of umbilical cord': {}}},\n",
+ " 'multinucleate cell': {'binucleate cell': {'garland cell': {},\n",
+ " 'dikaryon': {}},\n",
+ " 'Caenorhabditis hypodermal cell': {},\n",
+ " 'syncytial epithelial cell': {},\n",
+ " 'syncytiotrophoblast cell': {},\n",
+ " 'heterokaryon': {'dikaryon': {}},\n",
+ " 'multinucleated giant cell': {},\n",
+ " 'multinuclear osteoclast': {'multinuclear odontoclast': {}},\n",
+ " 'multinucleated phagocyte': {},\n",
+ " 'myotube': {'skeletal muscle fiber': {'tongue muscle cell': {},\n",
+ " 'extrafusal muscle fiber': {'slow muscle cell': {'type I muscle cell': {}},\n",
+ " 'fast muscle cell': {'type II muscle cell': {'type IIa muscle cell': {},\n",
+ " 'type IIb muscle cell': {}},\n",
+ " 'white muscle cell': {'type IIb muscle cell': {}}},\n",
+ " 'red muscle cell': {'type I muscle cell': {},\n",
+ " 'type IIa muscle cell': {}},\n",
+ " 'intermediate muscle cell': {}},\n",
+ " 'intrafusal muscle fiber': {'nuclear chain fiber': {},\n",
+ " 'nuclear bag fiber': {'dynamic nuclear bag fiber': {},\n",
+ " 'static nuclear bag fiber': {}}},\n",
+ " 'embryonic skeletal muscle fiber': {},\n",
+ " 'fetal and neonatal skeletal muscle fiber': {}},\n",
+ " 'somatic muscle myotube': {'insect flight muscle cell': {}}},\n",
+ " 'obliquely striated somatic muscle cell': {}},\n",
+ " 'proerythroblast': {'CD34-negative, GlyA-negative proerythroblast': {},\n",
+ " 'Kit-low proerythroblast': {}},\n",
+ " 'nucleate erythrocyte': {},\n",
+ " 'leukocyte': {'professional antigen presenting cell': {'mature eosinophil': {},\n",
+ " 'macrophage': {'elicited macrophage': {'suppressor macrophage': {'kidney interstitial suppressor macrophage': {}},\n",
+ " 'inflammatory macrophage': {'kidney interstitial inflammatory macrophage': {}},\n",
+ " 'alternatively activated macrophage': {'kidney interstitial alternatively activated macrophage': {}}},\n",
+ " 'tissue-resident macrophage': {'Kupffer cell': {},\n",
+ " 'peritoneal macrophage': {},\n",
+ " 'alveolar macrophage': {'CCL3-positive alveolar macrophage': {},\n",
+ " 'metallothionein-positive alveolar macrophage': {}},\n",
+ " 'mesangial phagocyte': {},\n",
+ " 'thymic macrophage': {'thymic medullary macrophage': {},\n",
+ " 'thymic cortical macrophage': {}},\n",
+ " 'secondary lymphoid organ macrophage': {'lymph node macrophage': {'lymph node subcapsular sinus macrophage': {},\n",
+ " 'lymph node tingible body macrophage': {}},\n",
+ " 'splenic macrophage': {'splenic marginal zone macrophage': {},\n",
+ " 'splenic metallophillic macrophage': {},\n",
+ " 'splenic red pulp macrophage': {},\n",
+ " 'splenic white pulp macrophage': {'splenic tingible body macrophage': {}}},\n",
+ " 'mucosa-associated lymphoid tissue macrophage': {'gut-associated lymphoid tissue macrophage': {'gastrointestinal tract (lamina propria) macrophage': {'gastrointestinal tract (lamina propria) macrophage of small intestine': {},\n",
+ " 'gastrointestinal tract (lamina propria) macrophage of large intestine': {}},\n",
+ " 'tonsillar macrophage': {},\n",
+ " \"Peyer's patch macrophage\": {}},\n",
+ " 'nasal and broncial associated lymphoid tissue macrophage': {}}},\n",
+ " 'central nervous system macrophage': {'microglial cell': {'immature microglial cell': {},\n",
+ " 'mature microglial cell': {}},\n",
+ " 'meningeal macrophage': {},\n",
+ " 'choroid-plexus macrophage': {},\n",
+ " 'perivascular macrophage': {}},\n",
+ " 'melanophage': {},\n",
+ " 'pleural macrophage': {},\n",
+ " 'bone marrow macrophage': {},\n",
+ " 'adipose macrophage': {'F4/80-negative adipose macrophage': {},\n",
+ " 'F4/80-positive adipose macrophage': {}},\n",
+ " 'kidney resident macrophage': {},\n",
+ " 'lung interstitial macrophage': {}},\n",
+ " 'epithelioid macrophage': {},\n",
+ " 'appendix macrophage': {},\n",
+ " 'colon macrophage': {},\n",
+ " 'macrophage of medullary sinus of lymph node': {},\n",
+ " 'anorectum macrophage': {},\n",
+ " 'lung macrophage': {'alveolar macrophage': {'CCL3-positive alveolar macrophage': {},\n",
+ " 'metallothionein-positive alveolar macrophage': {}},\n",
+ " 'lung interstitial macrophage': {}},\n",
+ " 'Hofbauer cell': {}},\n",
+ " 'dendritic cell': {'plasmacytoid dendritic cell': {'thymic plasmacytoid dendritic cell': {},\n",
+ " 'CD11c-low plasmacytoid dendritic cell': {'immature CD11c-low plasmacytoid dendritic cell': {},\n",
+ " 'mature CD11c-low plasmacytoid dendritic cell': {},\n",
+ " 'CD8_alpha-negative plasmacytoid dendritic cell': {},\n",
+ " 'CD8_alpha-positive plasmacytoid dendritic cell': {}},\n",
+ " 'CD11c-negative plasmacytoid dendritic cell': {'immature CD11c-negative plasmacytoid dendritic cell': {},\n",
+ " 'mature CD11c-negative plasmacytoid dendritic cell': {}},\n",
+ " 'plasmacytoid dendritic cell, human': {},\n",
+ " 'CD141-positive myeloid dendritic cell': {}},\n",
+ " 'conventional dendritic cell': {'Langerhans cell': {'CD1a-positive Langerhans cell': {'immature CD1a-positive Langerhans cell': {},\n",
+ " 'mature CD1a-positive Langerhans cell': {}},\n",
+ " 'CD8_alpha-low Langerhans cell': {'immature CD8_alpha-low Langerhans cell': {},\n",
+ " 'mature CD8_alpha-low Langerhans cell': {}},\n",
+ " 'epidermal Langerhans cell': {}},\n",
+ " 'myeloid dendritic cell': {'myeloid dendritic cell, human': {},\n",
+ " 'CD141-positive myeloid dendritic cell': {},\n",
+ " 'CD1c-positive myeloid dendritic cell': {},\n",
+ " 'CD16-positive myeloid dendritic cell': {'immature CD16-positive myeloid dendritic cell': {},\n",
+ " 'mature CD16-positive myeloid dendritic cell': {}},\n",
+ " 'monocyte-derived dendritic cell': {}},\n",
+ " 'immature conventional dendritic cell': {'immature CD8_alpha-negative CD11b-positive dendritic cell': {},\n",
+ " 'immature CD8_alpha-negative CD11b-negative dendritic cell': {},\n",
+ " 'immature CD8_alpha-positive CD11b-negative dendritic cell': {},\n",
+ " 'immature dermal dendritic cell': {'immature CD14-positive dermal dendritic cell': {},\n",
+ " 'immature CD1a-positive dermal dendritic cell': {}},\n",
+ " 'immature interstitial dendritic cell': {},\n",
+ " 'immature CD1a-positive Langerhans cell': {},\n",
+ " 'immature CD8_alpha-low Langerhans cell': {},\n",
+ " 'immature CD16-positive myeloid dendritic cell': {}},\n",
+ " 'mature conventional dendritic cell': {'mature CD8_alpha-negative CD11b-negative dendritic cell': {},\n",
+ " 'mature CD8_alpha-negative CD11b-positive dendritic cell': {},\n",
+ " 'mature CD8_alpha-positive CD11b-negative dendritic cell': {},\n",
+ " 'mature dermal dendritic cell': {'mature CD14-positive dermal dendritic cell': {},\n",
+ " 'mature CD1a-positive dermal dendritic cell': {}},\n",
+ " 'mature interstitial dendritic cell': {},\n",
+ " 'mature CD1a-positive Langerhans cell': {},\n",
+ " 'mature CD8_alpha-low Langerhans cell': {},\n",
+ " 'mature CD16-positive myeloid dendritic cell': {}},\n",
+ " 'thymic conventional dendritic cell': {'CD8alpha-positive thymic conventional dendritic cell': {},\n",
+ " 'CD8alpha-negative thymic conventional dendritic cell': {}},\n",
+ " 'CD8_alpha-negative CD11b-negative dendritic cell': {'immature CD8_alpha-negative CD11b-negative dendritic cell': {},\n",
+ " 'mature CD8_alpha-negative CD11b-negative dendritic cell': {}},\n",
+ " 'CD8_alpha-positive CD11b-negative dendritic cell': {'immature CD8_alpha-positive CD11b-negative dendritic cell': {},\n",
+ " 'mature CD8_alpha-positive CD11b-negative dendritic cell': {}},\n",
+ " 'CD103-positive dendritic cell': {'langerin-positive dermal dendritic cell': {},\n",
+ " 'liver CD103-positive dendritic cell': {},\n",
+ " 'CD103-positive, langerin-positive lymph node dendritic cell': {}},\n",
+ " 'adipose dendritic cell': {'SIRPa-positive adipose dendritic cell': {},\n",
+ " 'SIRPa-negative adipose dendritic cell': {}},\n",
+ " 'CD11b-positive dendritic cell': {'CD4-positive CD11b-positive dendritic cell': {'immature CD8_alpha-negative CD11b-positive dendritic cell': {},\n",
+ " 'mature CD8_alpha-negative CD11b-positive dendritic cell': {}},\n",
+ " 'dermal dendritic cell': {'immature dermal dendritic cell': {'immature CD14-positive dermal dendritic cell': {},\n",
+ " 'immature CD1a-positive dermal dendritic cell': {}},\n",
+ " 'mature dermal dendritic cell': {'mature CD14-positive dermal dendritic cell': {},\n",
+ " 'mature CD1a-positive dermal dendritic cell': {}},\n",
+ " 'langerin-positive dermal dendritic cell': {},\n",
+ " 'langerin-negative dermal dendritic cell': {},\n",
+ " 'CD14-positive dermal dendritic cell': {'immature CD14-positive dermal dendritic cell': {},\n",
+ " 'mature CD14-positive dermal dendritic cell': {}},\n",
+ " 'CD1a-positive dermal dendritic cell': {'immature CD1a-positive dermal dendritic cell': {},\n",
+ " 'mature CD1a-positive dermal dendritic cell': {}}},\n",
+ " 'interstitial dendritic cell': {'immature interstitial dendritic cell': {},\n",
+ " 'mature interstitial dendritic cell': {},\n",
+ " 'kidney resident dendritic cell': {}},\n",
+ " 'Cd4-negative, CD8_alpha-negative, CD11b-positive dendritic cell': {'liver CD103-negative dendritic cell': {},\n",
+ " 'liver CD103-positive dendritic cell': {},\n",
+ " 'CD103-positive, langerin-positive lymph node dendritic cell': {},\n",
+ " 'CD103-negative, langerin-positive lymph node dendritic cell': {},\n",
+ " 'CD11b-low, CD103-negative, langerin-negative lymph node dendritic cell': {},\n",
+ " 'CD11b-high, CD103-negative, langerin-negative lymph node dendritic cell': {}},\n",
+ " 'epidermal Langerhans cell': {},\n",
+ " 'small intestine serosal dendritic cell': {}},\n",
+ " 'langerin-positive lymph node dendritic cell': {'CD103-positive, langerin-positive lymph node dendritic cell': {},\n",
+ " 'CD103-negative, langerin-positive lymph node dendritic cell': {}},\n",
+ " 'langerin-negative, CD103-negative lymph node dendritic cell': {'CD11b-low, CD103-negative, langerin-negative lymph node dendritic cell': {},\n",
+ " 'CD11b-high, CD103-negative, langerin-negative lymph node dendritic cell': {}}},\n",
+ " 'dendritic cell, human': {'myeloid dendritic cell, human': {},\n",
+ " 'plasmacytoid dendritic cell, human': {},\n",
+ " 'Axl+ dendritic cell, human': {}},\n",
+ " 'dendritic cell of appendix': {},\n",
+ " 'liver dendritic cell': {},\n",
+ " 'lung migratory dendritic cell': {}},\n",
+ " 'mature B cell': {'memory B cell': {'unswitched memory B cell': {'CD38-negative unswitched memory B cell': {'B220-positive CD38-negative unswitched memory B cell': {'B220-low CD38-negative unswitched memory B cell': {}}},\n",
+ " 'CD38-positive unswitched memory B cell': {'B220-positive CD38-positive unswitched memory B cell': {'B220-low CD38-positive unswitched memory B cell': {}}}},\n",
+ " 'class switched memory B cell': {'IgE memory B cell': {},\n",
+ " 'IgA memory B cell': {},\n",
+ " 'IgG memory B cell': {'CD38-positive IgG memory B cell': {'IgD-positive CD38-positive IgG memory B cell': {},\n",
+ " 'IgD-negative CD38-positive IgG memory B cell': {}},\n",
+ " 'CD38-negative IgG memory B cell': {}},\n",
+ " 'IgG-negative class switched memory B cell': {'CD38-negative IgG-negative class switched memory B cell': {'CD24-positive CD38-negative IgG-negative class switched memory B cell': {},\n",
+ " 'CD24-negative CD38-negative IgG-negative class switched memory B cell': {}},\n",
+ " 'CD38-positive IgG-negative class switched memory B cell': {'B220-positive CD38-positive IgG-negative class switched memory B cell': {'B220-low CD38-positive IgG-negative class switched memory B cell': {}}}}},\n",
+ " 'IgD-negative memory B cell': {'Bm5 B cell': {},\n",
+ " 'IgM memory B cell': {},\n",
+ " 'double negative memory B cell': {'IgG-positive double negative memory B cell': {},\n",
+ " 'IgG-negative double negative memory B cell': {}},\n",
+ " 'IgD-negative CD38-positive IgG memory B cell': {},\n",
+ " 'CD38-negative IgG memory B cell': {}}},\n",
+ " 'naive B cell': {'CD38-positive naive B cell': {'B220-positive CD38-positive naive B cell': {'B220-low CD38-positive naive B cell': {}}},\n",
+ " 'CD38-negative naive B cell': {}},\n",
+ " 'B-1 B cell': {'B-1a B cell': {}, 'B-1b B cell': {}},\n",
+ " 'B-2 B cell': {'follicular B cell': {'Bm1 B cell': {}, 'Bm2 B cell': {}},\n",
+ " 'fraction F mature B cell': {'Bm1 B cell': {}},\n",
+ " \"Peyer's patch B cell\": {}},\n",
+ " 'germinal center B cell': {'Bm3-delta B cell': {},\n",
+ " \"Bm2' B cell\": {},\n",
+ " 'Bm3 B cell': {},\n",
+ " 'Bm4 B cell': {},\n",
+ " 'centrocyte': {},\n",
+ " 'centroblast': {},\n",
+ " 'tonsil germinal center B cell': {}},\n",
+ " 'marginal zone B cell of spleen': {},\n",
+ " 'Be cell': {'Be1 Cell': {}, 'Be2 cell': {}},\n",
+ " 'regulatory B cell': {},\n",
+ " 'plasmablast': {'IgD plasmablast': {},\n",
+ " 'IgE plasmablast': {},\n",
+ " 'IgG plasmablast': {},\n",
+ " 'IgM plasmablast': {},\n",
+ " 'IgA plasmablast': {},\n",
+ " 'CD86-positive plasmablast': {}},\n",
+ " 'marginal zone B cell of lymph node': {}}},\n",
+ " 'myeloid leukocyte': {'osteoclast': {'odontoclast': {'multinuclear odontoclast': {},\n",
+ " 'mononuclear odontoclast': {}},\n",
+ " 'mononuclear osteoclast': {'mononuclear odontoclast': {}},\n",
+ " 'multinuclear osteoclast': {'multinuclear odontoclast': {}}},\n",
+ " 'granulocyte': {'basophil': {'mature basophil': {},\n",
+ " 'immature basophil': {'basophilic myelocyte': {},\n",
+ " 'basophilic metamyelocyte': {},\n",
+ " 'band form basophil': {}}},\n",
+ " 'eosinophil': {'mature eosinophil': {},\n",
+ " 'immature eosinophil': {'eosinophilic myelocyte': {},\n",
+ " 'eosinophilic metamyelocyte': {},\n",
+ " 'band form eosinophil': {'lung parenchyma resident eosinophil': {}}}},\n",
+ " 'neutrophil': {'mature neutrophil': {'band form neutrophil': {},\n",
+ " 'segmented neutrophil of bone marrow': {}},\n",
+ " 'immature neutrophil': {'neutrophilic myelocyte': {},\n",
+ " 'neutrophilic metamyelocyte': {}}}},\n",
+ " 'mast cell': {'connective tissue type mast cell': {},\n",
+ " 'mucosal type mast cell': {}},\n",
+ " 'macrophage': {'elicited macrophage': {'suppressor macrophage': {'kidney interstitial suppressor macrophage': {}},\n",
+ " 'inflammatory macrophage': {'kidney interstitial inflammatory macrophage': {}},\n",
+ " 'alternatively activated macrophage': {'kidney interstitial alternatively activated macrophage': {}}},\n",
+ " 'tissue-resident macrophage': {'Kupffer cell': {},\n",
+ " 'peritoneal macrophage': {},\n",
+ " 'alveolar macrophage': {'CCL3-positive alveolar macrophage': {},\n",
+ " 'metallothionein-positive alveolar macrophage': {}},\n",
+ " 'mesangial phagocyte': {},\n",
+ " 'thymic macrophage': {'thymic medullary macrophage': {},\n",
+ " 'thymic cortical macrophage': {}},\n",
+ " 'secondary lymphoid organ macrophage': {'lymph node macrophage': {'lymph node subcapsular sinus macrophage': {},\n",
+ " 'lymph node tingible body macrophage': {}},\n",
+ " 'splenic macrophage': {'splenic marginal zone macrophage': {},\n",
+ " 'splenic metallophillic macrophage': {},\n",
+ " 'splenic red pulp macrophage': {},\n",
+ " 'splenic white pulp macrophage': {'splenic tingible body macrophage': {}}},\n",
+ " 'mucosa-associated lymphoid tissue macrophage': {'gut-associated lymphoid tissue macrophage': {'gastrointestinal tract (lamina propria) macrophage': {'gastrointestinal tract (lamina propria) macrophage of small intestine': {},\n",
+ " 'gastrointestinal tract (lamina propria) macrophage of large intestine': {}},\n",
+ " 'tonsillar macrophage': {},\n",
+ " \"Peyer's patch macrophage\": {}},\n",
+ " 'nasal and broncial associated lymphoid tissue macrophage': {}}},\n",
+ " 'central nervous system macrophage': {'microglial cell': {'immature microglial cell': {},\n",
+ " 'mature microglial cell': {}},\n",
+ " 'meningeal macrophage': {},\n",
+ " 'choroid-plexus macrophage': {},\n",
+ " 'perivascular macrophage': {}},\n",
+ " 'melanophage': {},\n",
+ " 'pleural macrophage': {},\n",
+ " 'bone marrow macrophage': {},\n",
+ " 'adipose macrophage': {'F4/80-negative adipose macrophage': {},\n",
+ " 'F4/80-positive adipose macrophage': {}},\n",
+ " 'kidney resident macrophage': {},\n",
+ " 'lung interstitial macrophage': {}},\n",
+ " 'epithelioid macrophage': {},\n",
+ " 'appendix macrophage': {},\n",
+ " 'colon macrophage': {},\n",
+ " 'macrophage of medullary sinus of lymph node': {},\n",
+ " 'anorectum macrophage': {},\n",
+ " 'lung macrophage': {'alveolar macrophage': {'CCL3-positive alveolar macrophage': {},\n",
+ " 'metallothionein-positive alveolar macrophage': {}},\n",
+ " 'lung interstitial macrophage': {}},\n",
+ " 'Hofbauer cell': {}},\n",
+ " 'Langerhans cell': {'CD1a-positive Langerhans cell': {'immature CD1a-positive Langerhans cell': {},\n",
+ " 'mature CD1a-positive Langerhans cell': {}},\n",
+ " 'CD8_alpha-low Langerhans cell': {'immature CD8_alpha-low Langerhans cell': {},\n",
+ " 'mature CD8_alpha-low Langerhans cell': {}},\n",
+ " 'epidermal Langerhans cell': {}},\n",
+ " 'monocyte': {'classical monocyte': {'CD14-positive, CD16-negative classical monocyte': {},\n",
+ " 'Gr1-high classical monocyte': {'MHC-II-negative classical monocyte': {'lymphoid MHC-II-negative classical monocyte': {}},\n",
+ " 'MHC-II-positive classical monocyte': {}}},\n",
+ " 'non-classical monocyte': {'Gr1-low non-classical monocyte': {'MHC-II-negative non-classical monocyte': {'lymphoid MHC-II-negative non-classical monocyte': {}},\n",
+ " 'MHC-II-low non-classical monocyte': {},\n",
+ " 'MHC-II-high non-classical monocyte': {}},\n",
+ " 'CD14-low, CD16-positive monocyte': {}},\n",
+ " 'CD115-positive monocyte': {'Gr1-high classical monocyte': {'MHC-II-negative classical monocyte': {'lymphoid MHC-II-negative classical monocyte': {}},\n",
+ " 'MHC-II-positive classical monocyte': {}},\n",
+ " 'Gr1-positive, CD43-positive monocyte': {'Gr1-low non-classical monocyte': {'MHC-II-negative non-classical monocyte': {'lymphoid MHC-II-negative non-classical monocyte': {}},\n",
+ " 'MHC-II-low non-classical monocyte': {},\n",
+ " 'MHC-II-high non-classical monocyte': {}}}},\n",
+ " 'CD14-positive monocyte': {'CD14-positive, CD16-negative classical monocyte': {},\n",
+ " 'CD14-low, CD16-positive monocyte': {},\n",
+ " 'CD14-positive, CD16-positive monocyte': {'CD14-positive, CD16-low monocyte': {}}},\n",
+ " 'intermediate monocyte': {'CD14-positive, CD16-low monocyte': {},\n",
+ " 'Gr1-positive, CD43-positive monocyte': {'Gr1-low non-classical monocyte': {'MHC-II-negative non-classical monocyte': {'lymphoid MHC-II-negative non-classical monocyte': {}},\n",
+ " 'MHC-II-low non-classical monocyte': {},\n",
+ " 'MHC-II-high non-classical monocyte': {}}}}},\n",
+ " 'multinucleated giant cell': {},\n",
+ " 'myeloid dendritic cell': {'myeloid dendritic cell, human': {},\n",
+ " 'CD141-positive myeloid dendritic cell': {},\n",
+ " 'CD1c-positive myeloid dendritic cell': {},\n",
+ " 'CD16-positive myeloid dendritic cell': {'immature CD16-positive myeloid dendritic cell': {},\n",
+ " 'mature CD16-positive myeloid dendritic cell': {}},\n",
+ " 'monocyte-derived dendritic cell': {}},\n",
+ " 'immature conventional dendritic cell': {'immature CD8_alpha-negative CD11b-positive dendritic cell': {},\n",
+ " 'immature CD8_alpha-negative CD11b-negative dendritic cell': {},\n",
+ " 'immature CD8_alpha-positive CD11b-negative dendritic cell': {},\n",
+ " 'immature dermal dendritic cell': {'immature CD14-positive dermal dendritic cell': {},\n",
+ " 'immature CD1a-positive dermal dendritic cell': {}},\n",
+ " 'immature interstitial dendritic cell': {},\n",
+ " 'immature CD1a-positive Langerhans cell': {},\n",
+ " 'immature CD8_alpha-low Langerhans cell': {},\n",
+ " 'immature CD16-positive myeloid dendritic cell': {}},\n",
+ " 'mature conventional dendritic cell': {'mature CD8_alpha-negative CD11b-negative dendritic cell': {},\n",
+ " 'mature CD8_alpha-negative CD11b-positive dendritic cell': {},\n",
+ " 'mature CD8_alpha-positive CD11b-negative dendritic cell': {},\n",
+ " 'mature dermal dendritic cell': {'mature CD14-positive dermal dendritic cell': {},\n",
+ " 'mature CD1a-positive dermal dendritic cell': {}},\n",
+ " 'mature interstitial dendritic cell': {},\n",
+ " 'mature CD1a-positive Langerhans cell': {},\n",
+ " 'mature CD8_alpha-low Langerhans cell': {},\n",
+ " 'mature CD16-positive myeloid dendritic cell': {}},\n",
+ " 'myeloid suppressor cell': {'Gr1-high myeloid suppressor cell': {},\n",
+ " 'Gr1-low myeloid suppressor cell': {}},\n",
+ " 'immature CD11c-low plasmacytoid dendritic cell': {},\n",
+ " 'mature CD11c-low plasmacytoid dendritic cell': {},\n",
+ " 'CD8_alpha-negative CD11b-negative dendritic cell': {'immature CD8_alpha-negative CD11b-negative dendritic cell': {},\n",
+ " 'mature CD8_alpha-negative CD11b-negative dendritic cell': {}},\n",
+ " 'CD4-positive CD11b-positive dendritic cell': {'immature CD8_alpha-negative CD11b-positive dendritic cell': {},\n",
+ " 'mature CD8_alpha-negative CD11b-positive dendritic cell': {}},\n",
+ " 'CD8_alpha-positive CD11b-negative dendritic cell': {'immature CD8_alpha-positive CD11b-negative dendritic cell': {},\n",
+ " 'mature CD8_alpha-positive CD11b-negative dendritic cell': {}},\n",
+ " 'CD103-positive dendritic cell': {'langerin-positive dermal dendritic cell': {},\n",
+ " 'liver CD103-positive dendritic cell': {},\n",
+ " 'CD103-positive, langerin-positive lymph node dendritic cell': {}},\n",
+ " 'adipose dendritic cell': {'SIRPa-positive adipose dendritic cell': {},\n",
+ " 'SIRPa-negative adipose dendritic cell': {}}},\n",
+ " 'mononuclear cell': {'dendritic cell': {'plasmacytoid dendritic cell': {'thymic plasmacytoid dendritic cell': {},\n",
+ " 'CD11c-low plasmacytoid dendritic cell': {'immature CD11c-low plasmacytoid dendritic cell': {},\n",
+ " 'mature CD11c-low plasmacytoid dendritic cell': {},\n",
+ " 'CD8_alpha-negative plasmacytoid dendritic cell': {},\n",
+ " 'CD8_alpha-positive plasmacytoid dendritic cell': {}},\n",
+ " 'CD11c-negative plasmacytoid dendritic cell': {'immature CD11c-negative plasmacytoid dendritic cell': {},\n",
+ " 'mature CD11c-negative plasmacytoid dendritic cell': {}},\n",
+ " 'plasmacytoid dendritic cell, human': {},\n",
+ " 'CD141-positive myeloid dendritic cell': {}},\n",
+ " 'conventional dendritic cell': {'Langerhans cell': {'CD1a-positive Langerhans cell': {'immature CD1a-positive Langerhans cell': {},\n",
+ " 'mature CD1a-positive Langerhans cell': {}},\n",
+ " 'CD8_alpha-low Langerhans cell': {'immature CD8_alpha-low Langerhans cell': {},\n",
+ " 'mature CD8_alpha-low Langerhans cell': {}},\n",
+ " 'epidermal Langerhans cell': {}},\n",
+ " 'myeloid dendritic cell': {'myeloid dendritic cell, human': {},\n",
+ " 'CD141-positive myeloid dendritic cell': {},\n",
+ " 'CD1c-positive myeloid dendritic cell': {},\n",
+ " 'CD16-positive myeloid dendritic cell': {'immature CD16-positive myeloid dendritic cell': {},\n",
+ " 'mature CD16-positive myeloid dendritic cell': {}},\n",
+ " 'monocyte-derived dendritic cell': {}},\n",
+ " 'immature conventional dendritic cell': {'immature CD8_alpha-negative CD11b-positive dendritic cell': {},\n",
+ " 'immature CD8_alpha-negative CD11b-negative dendritic cell': {},\n",
+ " 'immature CD8_alpha-positive CD11b-negative dendritic cell': {},\n",
+ " 'immature dermal dendritic cell': {'immature CD14-positive dermal dendritic cell': {},\n",
+ " 'immature CD1a-positive dermal dendritic cell': {}},\n",
+ " 'immature interstitial dendritic cell': {},\n",
+ " 'immature CD1a-positive Langerhans cell': {},\n",
+ " 'immature CD8_alpha-low Langerhans cell': {},\n",
+ " 'immature CD16-positive myeloid dendritic cell': {}},\n",
+ " 'mature conventional dendritic cell': {'mature CD8_alpha-negative CD11b-negative dendritic cell': {},\n",
+ " 'mature CD8_alpha-negative CD11b-positive dendritic cell': {},\n",
+ " 'mature CD8_alpha-positive CD11b-negative dendritic cell': {},\n",
+ " 'mature dermal dendritic cell': {'mature CD14-positive dermal dendritic cell': {},\n",
+ " 'mature CD1a-positive dermal dendritic cell': {}},\n",
+ " 'mature interstitial dendritic cell': {},\n",
+ " 'mature CD1a-positive Langerhans cell': {},\n",
+ " 'mature CD8_alpha-low Langerhans cell': {},\n",
+ " 'mature CD16-positive myeloid dendritic cell': {}},\n",
+ " 'thymic conventional dendritic cell': {'CD8alpha-positive thymic conventional dendritic cell': {},\n",
+ " 'CD8alpha-negative thymic conventional dendritic cell': {}},\n",
+ " 'CD8_alpha-negative CD11b-negative dendritic cell': {'immature CD8_alpha-negative CD11b-negative dendritic cell': {},\n",
+ " 'mature CD8_alpha-negative CD11b-negative dendritic cell': {}},\n",
+ " 'CD8_alpha-positive CD11b-negative dendritic cell': {'immature CD8_alpha-positive CD11b-negative dendritic cell': {},\n",
+ " 'mature CD8_alpha-positive CD11b-negative dendritic cell': {}},\n",
+ " 'CD103-positive dendritic cell': {'langerin-positive dermal dendritic cell': {},\n",
+ " 'liver CD103-positive dendritic cell': {},\n",
+ " 'CD103-positive, langerin-positive lymph node dendritic cell': {}},\n",
+ " 'adipose dendritic cell': {'SIRPa-positive adipose dendritic cell': {},\n",
+ " 'SIRPa-negative adipose dendritic cell': {}},\n",
+ " 'CD11b-positive dendritic cell': {'CD4-positive CD11b-positive dendritic cell': {'immature CD8_alpha-negative CD11b-positive dendritic cell': {},\n",
+ " 'mature CD8_alpha-negative CD11b-positive dendritic cell': {}},\n",
+ " 'dermal dendritic cell': {'immature dermal dendritic cell': {'immature CD14-positive dermal dendritic cell': {},\n",
+ " 'immature CD1a-positive dermal dendritic cell': {}},\n",
+ " 'mature dermal dendritic cell': {'mature CD14-positive dermal dendritic cell': {},\n",
+ " 'mature CD1a-positive dermal dendritic cell': {}},\n",
+ " 'langerin-positive dermal dendritic cell': {},\n",
+ " 'langerin-negative dermal dendritic cell': {},\n",
+ " 'CD14-positive dermal dendritic cell': {'immature CD14-positive dermal dendritic cell': {},\n",
+ " 'mature CD14-positive dermal dendritic cell': {}},\n",
+ " 'CD1a-positive dermal dendritic cell': {'immature CD1a-positive dermal dendritic cell': {},\n",
+ " 'mature CD1a-positive dermal dendritic cell': {}}},\n",
+ " 'interstitial dendritic cell': {'immature interstitial dendritic cell': {},\n",
+ " 'mature interstitial dendritic cell': {},\n",
+ " 'kidney resident dendritic cell': {}},\n",
+ " 'Cd4-negative, CD8_alpha-negative, CD11b-positive dendritic cell': {'liver CD103-negative dendritic cell': {},\n",
+ " 'liver CD103-positive dendritic cell': {},\n",
+ " 'CD103-positive, langerin-positive lymph node dendritic cell': {},\n",
+ " 'CD103-negative, langerin-positive lymph node dendritic cell': {},\n",
+ " 'CD11b-low, CD103-negative, langerin-negative lymph node dendritic cell': {},\n",
+ " 'CD11b-high, CD103-negative, langerin-negative lymph node dendritic cell': {}},\n",
+ " 'epidermal Langerhans cell': {},\n",
+ " 'small intestine serosal dendritic cell': {}},\n",
+ " 'langerin-positive lymph node dendritic cell': {'CD103-positive, langerin-positive lymph node dendritic cell': {},\n",
+ " 'CD103-negative, langerin-positive lymph node dendritic cell': {}},\n",
+ " 'langerin-negative, CD103-negative lymph node dendritic cell': {'CD11b-low, CD103-negative, langerin-negative lymph node dendritic cell': {},\n",
+ " 'CD11b-high, CD103-negative, langerin-negative lymph node dendritic cell': {}}},\n",
+ " 'dendritic cell, human': {'myeloid dendritic cell, human': {},\n",
+ " 'plasmacytoid dendritic cell, human': {},\n",
+ " 'Axl+ dendritic cell, human': {}},\n",
+ " 'dendritic cell of appendix': {},\n",
+ " 'liver dendritic cell': {},\n",
+ " 'lung migratory dendritic cell': {}},\n",
+ " 'lymphocyte': {'T cell': {'alpha-beta T cell': {'immature alpha-beta T cell': {'double-positive, alpha-beta thymocyte': {'resting double-positive thymocyte': {},\n",
+ " 'double-positive blast': {},\n",
+ " 'CD69-positive double-positive thymocyte': {},\n",
+ " 'CD4-intermediate, CD8-positive double-positive thymocyte': {},\n",
+ " 'CD4-positive, CD8-intermediate double-positive thymocyte': {}},\n",
+ " 'CD4-positive, alpha-beta thymocyte': {'CD24-positive, CD4 single-positive thymocyte': {},\n",
+ " 'CD69-positive, CD4-positive single-positive thymocyte': {}},\n",
+ " 'CD8-positive, alpha-beta thymocyte': {'CD24-positive, CD8 single-positive thymocyte': {},\n",
+ " 'CD69-positive, CD8-positive single-positive thymocyte': {}},\n",
+ " 'immature NK T cell': {'immature NK T cell stage I': {},\n",
+ " 'immature NK T cell stage II': {},\n",
+ " 'immature NK T cell stage III': {},\n",
+ " 'immature NK T cell stage IV': {}}},\n",
+ " 'mature alpha-beta T cell': {'CD4-positive, alpha-beta T cell': {'CD4-positive helper T cell': {'T-helper 1 cell': {},\n",
+ " 'T-helper 2 cell': {},\n",
+ " 'T-helper 17 cell': {},\n",
+ " 'Tr1 cell': {},\n",
+ " 'T-helper 22 cell': {},\n",
+ " 'T follicular helper cell': {'germinal center T cell': {}},\n",
+ " 'T-helper 9 cell': {}},\n",
+ " 'CD4-positive, CD25-positive, alpha-beta regulatory T cell': {'induced T-regulatory cell': {},\n",
+ " 'natural T-regulatory cell': {},\n",
+ " 'CD4-positive, CD25-positive, CCR4-positive, alpha-beta regulatory T cell': {'naive CCR4-positive regulatory T cell': {},\n",
+ " 'memory CCR4-positive regulatory T cell': {},\n",
+ " 'activated CD4-positive, CD25-positive, CCR4-positive, alpha-beta regulatory T cell, human': {}},\n",
+ " 'naive regulatory T cell': {'naive CCR4-positive regulatory T cell': {}},\n",
+ " 'memory regulatory T cell': {'memory CCR4-positive regulatory T cell': {}}},\n",
+ " 'CD4-positive, alpha-beta intraepithelial T cell': {'CD2-positive, CD5-positive, CD44-positive alpha-beta intraepithelial T cell': {}},\n",
+ " 'naive thymus-derived CD4-positive, alpha-beta T cell': {},\n",
+ " 'activated CD4-positive, alpha-beta T cell': {'activated CD4-positive, alpha-beta T cell, human': {}},\n",
+ " 'CD4-positive, alpha-beta memory T cell': {'effector memory CD4-positive, alpha-beta T cell, terminally differentiated': {},\n",
+ " 'CD4-positive, alpha-beta memory T cell, CD45RO-positive': {'central memory CD4-positive, alpha-beta T cell': {},\n",
+ " 'effector memory CD4-positive, alpha-beta T cell': {}},\n",
+ " 'memory regulatory T cell': {'memory CCR4-positive regulatory T cell': {}},\n",
+ " 'lung resident memory CD4-positive, alpha-beta T cell': {}},\n",
+ " 'CD4-positive, alpha-beta cytotoxic T cell': {},\n",
+ " 'effector CD4-positive, alpha-beta T cell': {},\n",
+ " 'CD4-positive, CXCR3-negative, CCR6-negative, alpha-beta T cell': {'T-helper 2 cell': {}},\n",
+ " 'mature CD4 single-positive thymocyte': {}},\n",
+ " 'CD8-positive, alpha-beta T cell': {'CD8-positive, alpha-beta cytotoxic T cell': {},\n",
+ " 'CD8-positive, alpha-beta regulatory T cell': {'CD8-positive, CD25-positive, alpha-beta regulatory T cell': {},\n",
+ " 'CD8-positive, CD28-negative, alpha-beta regulatory T cell': {},\n",
+ " 'CD8-positive, CXCR3-positive, alpha-beta regulatory T cell': {}},\n",
+ " 'naive thymus-derived CD8-positive, alpha-beta T cell': {},\n",
+ " 'activated CD8-positive, alpha-beta T cell': {'activated CD8-positive, alpha-beta T cell, human': {}},\n",
+ " 'CD8-positive, alpha-beta cytokine secreting effector T cell': {'Tc1 cell': {},\n",
+ " 'Tc2 cell': {},\n",
+ " 'Tc17 cell': {}},\n",
+ " 'CD8-positive, alpha-beta memory T cell': {'effector memory CD8-positive, alpha-beta T cell, terminally differentiated': {},\n",
+ " 'CD8-positive, alpha-beta memory T cell, CD45RO-positive': {'central memory CD8-positive, alpha-beta T cell': {},\n",
+ " 'effector memory CD8-positive, alpha-beta T cell': {}},\n",
+ " 'lung resident memory CD8-positive, alpha-beta T cell': {'lung resident memory CD8-positive, CD103-positive, alpha-beta T cell': {}}},\n",
+ " 'effector CD8-positive, alpha-beta T cell': {},\n",
+ " 'CD8-positive, CXCR3-negative, CCR6-negative, alpha-beta T cell': {'Tc2 cell': {}},\n",
+ " 'mature CD8 single-positive thymocyte': {}},\n",
+ " 'alpha-beta intraepithelial T cell': {'CD4-positive, alpha-beta intraepithelial T cell': {'CD2-positive, CD5-positive, CD44-positive alpha-beta intraepithelial T cell': {}},\n",
+ " 'CD8-alpha-beta-positive, alpha-beta intraepithelial T cell': {},\n",
+ " 'CD8-alpha-alpha-positive, alpha-beta intraepithelial T cell': {},\n",
+ " 'CD4-negative, CD8-negative, alpha-beta intraepithelial T cell': {}},\n",
+ " 'mature NK T cell': {'type I NK T cell': {'CD4-positive type I NK T cell': {'activated CD4-positive type I NK T cell': {},\n",
+ " 'CD4-positive type I NK T cell secreting interferon-gamma': {},\n",
+ " 'CD4-positive type I NK T cell secreting interleukin-4': {}},\n",
+ " 'CD4-negative, CD8-negative type I NK T cell': {'activated CD4-negative, CD8-negative type I NK T cell': {},\n",
+ " 'CD4-negative, CD8-negative type I NK T cell secreting interferon-gamma': {},\n",
+ " 'CD4-negative, CD8-negative type I NK T cell secreting interleukin-4': {}}},\n",
+ " 'type II NK T cell': {'activated type II NK T cell': {},\n",
+ " 'type II NK T cell secreting interferon-gamma': {},\n",
+ " 'type II NK T cell secreting interleukin-4': {}}},\n",
+ " 'mucosal invariant T cell': {},\n",
+ " 'effector memory CD45RA-positive, alpha-beta T cell, terminally differentiated': {'effector memory CD8-positive, alpha-beta T cell, terminally differentiated': {},\n",
+ " 'effector memory CD4-positive, alpha-beta T cell, terminally differentiated': {}}}},\n",
+ " 'gamma-delta T cell': {'immature gamma-delta T cell': {'CD25-positive, CD27-positive immature gamma-delta T cell': {}},\n",
+ " 'mature gamma-delta T cell': {'gamma-delta intraepithelial T cell': {'CD8-alpha alpha positive, gamma-delta intraepithelial T cell': {'Vgamma5-positive CD8alpha alpha positive gamma-delta intraepithelial T cell': {},\n",
+ " 'Vgamma5-negative CD8alpha alpha positive gamma-delta intraepithelial T cell': {}},\n",
+ " 'CD4-negative CD8-negative gamma-delta intraepithelial T cell': {}},\n",
+ " 'dendritic epidermal T cell': {},\n",
+ " 'CD27-positive gamma-delta T cell': {},\n",
+ " 'CD27-negative gamma-delta T cell': {}},\n",
+ " 'gamma-delta thymocyte': {'immature Vgamma2-positive thymocyte': {},\n",
+ " 'mature Vgamma2-positive thymocyte': {},\n",
+ " 'immature Vgamma2-negative thymocyte': {},\n",
+ " 'mature Vgamma2-negative thymocyte': {},\n",
+ " 'Vgamma1.1-positive, Vdelta6.3-negative thymocyte': {'mature Vgamma1.1-positive, Vdelta6.3-negative thymocyte': {},\n",
+ " 'immature Vgamma1.1-positive, Vdelta6.3-negative thymocyte': {}},\n",
+ " 'Vgamma1.1-positive, Vdelta6.3-positive thymocyte': {'immature Vgamma1.1-positive, Vdelta6.3-positive thymocyte': {},\n",
+ " 'mature Vgamma1.1-positive, Vdelta6.3-positive thymocyte': {}}}},\n",
+ " 'mature T cell': {'mature alpha-beta T cell': {'CD4-positive, alpha-beta T cell': {'CD4-positive helper T cell': {'T-helper 1 cell': {},\n",
+ " 'T-helper 2 cell': {},\n",
+ " 'T-helper 17 cell': {},\n",
+ " 'Tr1 cell': {},\n",
+ " 'T-helper 22 cell': {},\n",
+ " 'T follicular helper cell': {'germinal center T cell': {}},\n",
+ " 'T-helper 9 cell': {}},\n",
+ " 'CD4-positive, CD25-positive, alpha-beta regulatory T cell': {'induced T-regulatory cell': {},\n",
+ " 'natural T-regulatory cell': {},\n",
+ " 'CD4-positive, CD25-positive, CCR4-positive, alpha-beta regulatory T cell': {'naive CCR4-positive regulatory T cell': {},\n",
+ " 'memory CCR4-positive regulatory T cell': {},\n",
+ " 'activated CD4-positive, CD25-positive, CCR4-positive, alpha-beta regulatory T cell, human': {}},\n",
+ " 'naive regulatory T cell': {'naive CCR4-positive regulatory T cell': {}},\n",
+ " 'memory regulatory T cell': {'memory CCR4-positive regulatory T cell': {}}},\n",
+ " 'CD4-positive, alpha-beta intraepithelial T cell': {'CD2-positive, CD5-positive, CD44-positive alpha-beta intraepithelial T cell': {}},\n",
+ " 'naive thymus-derived CD4-positive, alpha-beta T cell': {},\n",
+ " 'activated CD4-positive, alpha-beta T cell': {'activated CD4-positive, alpha-beta T cell, human': {}},\n",
+ " 'CD4-positive, alpha-beta memory T cell': {'effector memory CD4-positive, alpha-beta T cell, terminally differentiated': {},\n",
+ " 'CD4-positive, alpha-beta memory T cell, CD45RO-positive': {'central memory CD4-positive, alpha-beta T cell': {},\n",
+ " 'effector memory CD4-positive, alpha-beta T cell': {}},\n",
+ " 'memory regulatory T cell': {'memory CCR4-positive regulatory T cell': {}},\n",
+ " 'lung resident memory CD4-positive, alpha-beta T cell': {}},\n",
+ " 'CD4-positive, alpha-beta cytotoxic T cell': {},\n",
+ " 'effector CD4-positive, alpha-beta T cell': {},\n",
+ " 'CD4-positive, CXCR3-negative, CCR6-negative, alpha-beta T cell': {'T-helper 2 cell': {}},\n",
+ " 'mature CD4 single-positive thymocyte': {}},\n",
+ " 'CD8-positive, alpha-beta T cell': {'CD8-positive, alpha-beta cytotoxic T cell': {},\n",
+ " 'CD8-positive, alpha-beta regulatory T cell': {'CD8-positive, CD25-positive, alpha-beta regulatory T cell': {},\n",
+ " 'CD8-positive, CD28-negative, alpha-beta regulatory T cell': {},\n",
+ " 'CD8-positive, CXCR3-positive, alpha-beta regulatory T cell': {}},\n",
+ " 'naive thymus-derived CD8-positive, alpha-beta T cell': {},\n",
+ " 'activated CD8-positive, alpha-beta T cell': {'activated CD8-positive, alpha-beta T cell, human': {}},\n",
+ " 'CD8-positive, alpha-beta cytokine secreting effector T cell': {'Tc1 cell': {},\n",
+ " 'Tc2 cell': {},\n",
+ " 'Tc17 cell': {}},\n",
+ " 'CD8-positive, alpha-beta memory T cell': {'effector memory CD8-positive, alpha-beta T cell, terminally differentiated': {},\n",
+ " 'CD8-positive, alpha-beta memory T cell, CD45RO-positive': {'central memory CD8-positive, alpha-beta T cell': {},\n",
+ " 'effector memory CD8-positive, alpha-beta T cell': {}},\n",
+ " 'lung resident memory CD8-positive, alpha-beta T cell': {'lung resident memory CD8-positive, CD103-positive, alpha-beta T cell': {}}},\n",
+ " 'effector CD8-positive, alpha-beta T cell': {},\n",
+ " 'CD8-positive, CXCR3-negative, CCR6-negative, alpha-beta T cell': {'Tc2 cell': {}},\n",
+ " 'mature CD8 single-positive thymocyte': {}},\n",
+ " 'alpha-beta intraepithelial T cell': {'CD4-positive, alpha-beta intraepithelial T cell': {'CD2-positive, CD5-positive, CD44-positive alpha-beta intraepithelial T cell': {}},\n",
+ " 'CD8-alpha-beta-positive, alpha-beta intraepithelial T cell': {},\n",
+ " 'CD8-alpha-alpha-positive, alpha-beta intraepithelial T cell': {},\n",
+ " 'CD4-negative, CD8-negative, alpha-beta intraepithelial T cell': {}},\n",
+ " 'mature NK T cell': {'type I NK T cell': {'CD4-positive type I NK T cell': {'activated CD4-positive type I NK T cell': {},\n",
+ " 'CD4-positive type I NK T cell secreting interferon-gamma': {},\n",
+ " 'CD4-positive type I NK T cell secreting interleukin-4': {}},\n",
+ " 'CD4-negative, CD8-negative type I NK T cell': {'activated CD4-negative, CD8-negative type I NK T cell': {},\n",
+ " 'CD4-negative, CD8-negative type I NK T cell secreting interferon-gamma': {},\n",
+ " 'CD4-negative, CD8-negative type I NK T cell secreting interleukin-4': {}}},\n",
+ " 'type II NK T cell': {'activated type II NK T cell': {},\n",
+ " 'type II NK T cell secreting interferon-gamma': {},\n",
+ " 'type II NK T cell secreting interleukin-4': {}}},\n",
+ " 'mucosal invariant T cell': {},\n",
+ " 'effector memory CD45RA-positive, alpha-beta T cell, terminally differentiated': {'effector memory CD8-positive, alpha-beta T cell, terminally differentiated': {},\n",
+ " 'effector memory CD4-positive, alpha-beta T cell, terminally differentiated': {}}},\n",
+ " 'mature gamma-delta T cell': {'gamma-delta intraepithelial T cell': {'CD8-alpha alpha positive, gamma-delta intraepithelial T cell': {'Vgamma5-positive CD8alpha alpha positive gamma-delta intraepithelial T cell': {},\n",
+ " 'Vgamma5-negative CD8alpha alpha positive gamma-delta intraepithelial T cell': {}},\n",
+ " 'CD4-negative CD8-negative gamma-delta intraepithelial T cell': {}},\n",
+ " 'dendritic epidermal T cell': {},\n",
+ " 'CD27-positive gamma-delta T cell': {},\n",
+ " 'CD27-negative gamma-delta T cell': {}},\n",
+ " 'memory T cell': {'CD4-positive, alpha-beta memory T cell': {'effector memory CD4-positive, alpha-beta T cell, terminally differentiated': {},\n",
+ " 'CD4-positive, alpha-beta memory T cell, CD45RO-positive': {'central memory CD4-positive, alpha-beta T cell': {},\n",
+ " 'effector memory CD4-positive, alpha-beta T cell': {}},\n",
+ " 'memory regulatory T cell': {'memory CCR4-positive regulatory T cell': {}},\n",
+ " 'lung resident memory CD4-positive, alpha-beta T cell': {}},\n",
+ " 'CD8-positive, alpha-beta memory T cell': {'effector memory CD8-positive, alpha-beta T cell, terminally differentiated': {},\n",
+ " 'CD8-positive, alpha-beta memory T cell, CD45RO-positive': {'central memory CD8-positive, alpha-beta T cell': {},\n",
+ " 'effector memory CD8-positive, alpha-beta T cell': {}},\n",
+ " 'lung resident memory CD8-positive, alpha-beta T cell': {'lung resident memory CD8-positive, CD103-positive, alpha-beta T cell': {}}}},\n",
+ " 'regulatory T cell': {'CD4-positive, CD25-positive, alpha-beta regulatory T cell': {'induced T-regulatory cell': {},\n",
+ " 'natural T-regulatory cell': {},\n",
+ " 'CD4-positive, CD25-positive, CCR4-positive, alpha-beta regulatory T cell': {'naive CCR4-positive regulatory T cell': {},\n",
+ " 'memory CCR4-positive regulatory T cell': {},\n",
+ " 'activated CD4-positive, CD25-positive, CCR4-positive, alpha-beta regulatory T cell, human': {}},\n",
+ " 'naive regulatory T cell': {'naive CCR4-positive regulatory T cell': {}},\n",
+ " 'memory regulatory T cell': {'memory CCR4-positive regulatory T cell': {}}},\n",
+ " 'CD8-positive, alpha-beta regulatory T cell': {'CD8-positive, CD25-positive, alpha-beta regulatory T cell': {},\n",
+ " 'CD8-positive, CD28-negative, alpha-beta regulatory T cell': {},\n",
+ " 'CD8-positive, CXCR3-positive, alpha-beta regulatory T cell': {}},\n",
+ " 'Tr1 cell': {},\n",
+ " 'T follicular regulatory cell': {}},\n",
+ " 'naive T cell': {'naive thymus-derived CD4-positive, alpha-beta T cell': {},\n",
+ " 'naive thymus-derived CD8-positive, alpha-beta T cell': {},\n",
+ " 'naive regulatory T cell': {'naive CCR4-positive regulatory T cell': {}}},\n",
+ " 'effector T cell': {'cytotoxic T cell': {},\n",
+ " 'helper T cell': {},\n",
+ " 'effector CD4-positive, alpha-beta T cell': {},\n",
+ " 'effector CD8-positive, alpha-beta T cell': {},\n",
+ " 'innate effector T cell': {},\n",
+ " 'exhausted T cell': {}},\n",
+ " 'intraepithelial lymphocyte': {'alpha-beta intraepithelial T cell': {'CD4-positive, alpha-beta intraepithelial T cell': {'CD2-positive, CD5-positive, CD44-positive alpha-beta intraepithelial T cell': {}},\n",
+ " 'CD8-alpha-beta-positive, alpha-beta intraepithelial T cell': {},\n",
+ " 'CD8-alpha-alpha-positive, alpha-beta intraepithelial T cell': {},\n",
+ " 'CD4-negative, CD8-negative, alpha-beta intraepithelial T cell': {}},\n",
+ " 'gamma-delta intraepithelial T cell': {'CD8-alpha alpha positive, gamma-delta intraepithelial T cell': {'Vgamma5-positive CD8alpha alpha positive gamma-delta intraepithelial T cell': {},\n",
+ " 'Vgamma5-negative CD8alpha alpha positive gamma-delta intraepithelial T cell': {}},\n",
+ " 'CD4-negative CD8-negative gamma-delta intraepithelial T cell': {}}},\n",
+ " \"small intestine Peyer's patch T cell\": {}},\n",
+ " 'immature T cell': {'immature alpha-beta T cell': {'double-positive, alpha-beta thymocyte': {'resting double-positive thymocyte': {},\n",
+ " 'double-positive blast': {},\n",
+ " 'CD69-positive double-positive thymocyte': {},\n",
+ " 'CD4-intermediate, CD8-positive double-positive thymocyte': {},\n",
+ " 'CD4-positive, CD8-intermediate double-positive thymocyte': {}},\n",
+ " 'CD4-positive, alpha-beta thymocyte': {'CD24-positive, CD4 single-positive thymocyte': {},\n",
+ " 'CD69-positive, CD4-positive single-positive thymocyte': {}},\n",
+ " 'CD8-positive, alpha-beta thymocyte': {'CD24-positive, CD8 single-positive thymocyte': {},\n",
+ " 'CD69-positive, CD8-positive single-positive thymocyte': {}},\n",
+ " 'immature NK T cell': {'immature NK T cell stage I': {},\n",
+ " 'immature NK T cell stage II': {},\n",
+ " 'immature NK T cell stage III': {},\n",
+ " 'immature NK T cell stage IV': {}}},\n",
+ " 'immature gamma-delta T cell': {'CD25-positive, CD27-positive immature gamma-delta T cell': {}},\n",
+ " 'thymocyte': {'immature single positive thymocyte': {},\n",
+ " 'double-positive, alpha-beta thymocyte': {'resting double-positive thymocyte': {},\n",
+ " 'double-positive blast': {},\n",
+ " 'CD69-positive double-positive thymocyte': {},\n",
+ " 'CD4-intermediate, CD8-positive double-positive thymocyte': {},\n",
+ " 'CD4-positive, CD8-intermediate double-positive thymocyte': {}},\n",
+ " 'CD4-positive, alpha-beta thymocyte': {'CD24-positive, CD4 single-positive thymocyte': {},\n",
+ " 'CD69-positive, CD4-positive single-positive thymocyte': {}},\n",
+ " 'CD8-positive, alpha-beta thymocyte': {'CD24-positive, CD8 single-positive thymocyte': {},\n",
+ " 'CD69-positive, CD8-positive single-positive thymocyte': {}},\n",
+ " 'CD25-positive, CD27-positive immature gamma-delta T cell': {},\n",
+ " 'fetal thymocyte': {'immature dendritic epithelial T cell precursor': {},\n",
+ " 'immature Vgamma2-positive fetal thymocyte': {},\n",
+ " 'mature dendritic epithelial T cell precursor': {},\n",
+ " 'mature Vgamma2-positive fetal thymocyte': {}},\n",
+ " 'double negative thymocyte': {'DN2 thymocyte': {'DN2a thymocyte': {},\n",
+ " 'DN2b thymocyte': {}},\n",
+ " 'DN3 thymocyte': {},\n",
+ " 'DN4 thymocyte': {},\n",
+ " 'gamma-delta thymocyte': {'immature Vgamma2-positive thymocyte': {},\n",
+ " 'mature Vgamma2-positive thymocyte': {},\n",
+ " 'immature Vgamma2-negative thymocyte': {},\n",
+ " 'mature Vgamma2-negative thymocyte': {},\n",
+ " 'Vgamma1.1-positive, Vdelta6.3-negative thymocyte': {'mature Vgamma1.1-positive, Vdelta6.3-negative thymocyte': {},\n",
+ " 'immature Vgamma1.1-positive, Vdelta6.3-negative thymocyte': {}},\n",
+ " 'Vgamma1.1-positive, Vdelta6.3-positive thymocyte': {'immature Vgamma1.1-positive, Vdelta6.3-positive thymocyte': {},\n",
+ " 'mature Vgamma1.1-positive, Vdelta6.3-positive thymocyte': {}}},\n",
+ " 'specified double negative thymocyte (Homo sapiens)': {},\n",
+ " 'committed double negative thymocyte (Homo sapiens)': {},\n",
+ " 'rearranging double negative thymocyte (Homo sapiens)': {},\n",
+ " 'double negative T regulatory cell': {}},\n",
+ " 'CD8aa(I) thymocyte': {},\n",
+ " 'CD8aa(II) thymocyte': {}}},\n",
+ " 'T cell of appendix': {},\n",
+ " 'T cell of medullary sinus of lymph node': {},\n",
+ " 'T cell of anorectum': {},\n",
+ " 'lymph node paracortex T cell': {}},\n",
+ " 'lymphocyte of B lineage': {'B cell': {'B cell, CD19-positive': {'mature B cell': {'memory B cell': {'unswitched memory B cell': {'CD38-negative unswitched memory B cell': {'B220-positive CD38-negative unswitched memory B cell': {'B220-low CD38-negative unswitched memory B cell': {}}},\n",
+ " 'CD38-positive unswitched memory B cell': {'B220-positive CD38-positive unswitched memory B cell': {'B220-low CD38-positive unswitched memory B cell': {}}}},\n",
+ " 'class switched memory B cell': {'IgE memory B cell': {},\n",
+ " 'IgA memory B cell': {},\n",
+ " 'IgG memory B cell': {'CD38-positive IgG memory B cell': {'IgD-positive CD38-positive IgG memory B cell': {},\n",
+ " 'IgD-negative CD38-positive IgG memory B cell': {}},\n",
+ " 'CD38-negative IgG memory B cell': {}},\n",
+ " 'IgG-negative class switched memory B cell': {'CD38-negative IgG-negative class switched memory B cell': {'CD24-positive CD38-negative IgG-negative class switched memory B cell': {},\n",
+ " 'CD24-negative CD38-negative IgG-negative class switched memory B cell': {}},\n",
+ " 'CD38-positive IgG-negative class switched memory B cell': {'B220-positive CD38-positive IgG-negative class switched memory B cell': {'B220-low CD38-positive IgG-negative class switched memory B cell': {}}}}},\n",
+ " 'IgD-negative memory B cell': {'Bm5 B cell': {},\n",
+ " 'IgM memory B cell': {},\n",
+ " 'double negative memory B cell': {'IgG-positive double negative memory B cell': {},\n",
+ " 'IgG-negative double negative memory B cell': {}},\n",
+ " 'IgD-negative CD38-positive IgG memory B cell': {},\n",
+ " 'CD38-negative IgG memory B cell': {}}},\n",
+ " 'naive B cell': {'CD38-positive naive B cell': {'B220-positive CD38-positive naive B cell': {'B220-low CD38-positive naive B cell': {}}},\n",
+ " 'CD38-negative naive B cell': {}},\n",
+ " 'B-1 B cell': {'B-1a B cell': {}, 'B-1b B cell': {}},\n",
+ " 'B-2 B cell': {'follicular B cell': {'Bm1 B cell': {},\n",
+ " 'Bm2 B cell': {}},\n",
+ " 'fraction F mature B cell': {'Bm1 B cell': {}},\n",
+ " \"Peyer's patch B cell\": {}},\n",
+ " 'germinal center B cell': {'Bm3-delta B cell': {},\n",
+ " \"Bm2' B cell\": {},\n",
+ " 'Bm3 B cell': {},\n",
+ " 'Bm4 B cell': {},\n",
+ " 'centrocyte': {},\n",
+ " 'centroblast': {},\n",
+ " 'tonsil germinal center B cell': {}},\n",
+ " 'marginal zone B cell of spleen': {},\n",
+ " 'Be cell': {'Be1 Cell': {}, 'Be2 cell': {}},\n",
+ " 'regulatory B cell': {},\n",
+ " 'plasmablast': {'IgD plasmablast': {},\n",
+ " 'IgE plasmablast': {},\n",
+ " 'IgG plasmablast': {},\n",
+ " 'IgM plasmablast': {},\n",
+ " 'IgA plasmablast': {},\n",
+ " 'CD86-positive plasmablast': {}},\n",
+ " 'marginal zone B cell of lymph node': {}},\n",
+ " 'immature B cell': {'fraction E immature B cell': {},\n",
+ " 'CD38-negative immature B cell': {}},\n",
+ " 'precursor B cell': {'pre-B-II cell': {'small pre-B-II cell': {'CD22-positive, CD38-low small pre-B cell': {}},\n",
+ " 'large pre-B-II cell': {'preBCR-positive large pre-B-II cell': {'CD38-high pre-BCR positive cell': {}},\n",
+ " 'preBCR-negative large pre-B-II cell': {}}},\n",
+ " 'pre-B-I cell': {},\n",
+ " 'late pro-B cell': {},\n",
+ " \"fraction C' precursor B cell\": {},\n",
+ " 'fraction B/C precursor B cell': {'fraction B precursor B cell': {},\n",
+ " 'fraction C precursor B cell': {},\n",
+ " 'fraction D precursor B cell': {}}},\n",
+ " 'transitional stage B cell': {'T1 B cell': {},\n",
+ " 'T2 B cell': {},\n",
+ " 'T3 B cell': {}}},\n",
+ " 'B cell of appendix': {},\n",
+ " 'lymph node mantle zone B cell': {},\n",
+ " 'B cell of medullary sinus of lymph node': {},\n",
+ " 'B cell of anorectum': {},\n",
+ " 'monocytoid B cell': {}},\n",
+ " 'antibody secreting cell': {'plasma cell': {'long lived plasma cell': {'IgE plasma cell': {},\n",
+ " 'IgG plasma cell': {},\n",
+ " 'IgM plasma cell': {},\n",
+ " 'IgA plasma cell': {}},\n",
+ " 'short lived plasma cell': {'IgE short lived plasma cell': {},\n",
+ " 'IgA short lived plasma cell': {},\n",
+ " 'IgG short lived plasma cell': {},\n",
+ " 'IgM short lived plasma cell': {}},\n",
+ " 'plasma cell of appendix': {},\n",
+ " 'plasma cell of medullary sinus of lymph node': {}},\n",
+ " 'plasmablast': {'IgD plasmablast': {},\n",
+ " 'IgE plasmablast': {},\n",
+ " 'IgG plasmablast': {},\n",
+ " 'IgM plasmablast': {},\n",
+ " 'IgA plasmablast': {},\n",
+ " 'CD86-positive plasmablast': {}}},\n",
+ " 'lymphocyte of B lineage, CD19-positive': {'B cell, CD19-positive': {'mature B cell': {'memory B cell': {'unswitched memory B cell': {'CD38-negative unswitched memory B cell': {'B220-positive CD38-negative unswitched memory B cell': {'B220-low CD38-negative unswitched memory B cell': {}}},\n",
+ " 'CD38-positive unswitched memory B cell': {'B220-positive CD38-positive unswitched memory B cell': {'B220-low CD38-positive unswitched memory B cell': {}}}},\n",
+ " 'class switched memory B cell': {'IgE memory B cell': {},\n",
+ " 'IgA memory B cell': {},\n",
+ " 'IgG memory B cell': {'CD38-positive IgG memory B cell': {'IgD-positive CD38-positive IgG memory B cell': {},\n",
+ " 'IgD-negative CD38-positive IgG memory B cell': {}},\n",
+ " 'CD38-negative IgG memory B cell': {}},\n",
+ " 'IgG-negative class switched memory B cell': {'CD38-negative IgG-negative class switched memory B cell': {'CD24-positive CD38-negative IgG-negative class switched memory B cell': {},\n",
+ " 'CD24-negative CD38-negative IgG-negative class switched memory B cell': {}},\n",
+ " 'CD38-positive IgG-negative class switched memory B cell': {'B220-positive CD38-positive IgG-negative class switched memory B cell': {'B220-low CD38-positive IgG-negative class switched memory B cell': {}}}}},\n",
+ " 'IgD-negative memory B cell': {'Bm5 B cell': {},\n",
+ " 'IgM memory B cell': {},\n",
+ " 'double negative memory B cell': {'IgG-positive double negative memory B cell': {},\n",
+ " 'IgG-negative double negative memory B cell': {}},\n",
+ " 'IgD-negative CD38-positive IgG memory B cell': {},\n",
+ " 'CD38-negative IgG memory B cell': {}}},\n",
+ " 'naive B cell': {'CD38-positive naive B cell': {'B220-positive CD38-positive naive B cell': {'B220-low CD38-positive naive B cell': {}}},\n",
+ " 'CD38-negative naive B cell': {}},\n",
+ " 'B-1 B cell': {'B-1a B cell': {}, 'B-1b B cell': {}},\n",
+ " 'B-2 B cell': {'follicular B cell': {'Bm1 B cell': {},\n",
+ " 'Bm2 B cell': {}},\n",
+ " 'fraction F mature B cell': {'Bm1 B cell': {}},\n",
+ " \"Peyer's patch B cell\": {}},\n",
+ " 'germinal center B cell': {'Bm3-delta B cell': {},\n",
+ " \"Bm2' B cell\": {},\n",
+ " 'Bm3 B cell': {},\n",
+ " 'Bm4 B cell': {},\n",
+ " 'centrocyte': {},\n",
+ " 'centroblast': {},\n",
+ " 'tonsil germinal center B cell': {}},\n",
+ " 'marginal zone B cell of spleen': {},\n",
+ " 'Be cell': {'Be1 Cell': {}, 'Be2 cell': {}},\n",
+ " 'regulatory B cell': {},\n",
+ " 'plasmablast': {'IgD plasmablast': {},\n",
+ " 'IgE plasmablast': {},\n",
+ " 'IgG plasmablast': {},\n",
+ " 'IgM plasmablast': {},\n",
+ " 'IgA plasmablast': {},\n",
+ " 'CD86-positive plasmablast': {}},\n",
+ " 'marginal zone B cell of lymph node': {}},\n",
+ " 'immature B cell': {'fraction E immature B cell': {},\n",
+ " 'CD38-negative immature B cell': {}},\n",
+ " 'precursor B cell': {'pre-B-II cell': {'small pre-B-II cell': {'CD22-positive, CD38-low small pre-B cell': {}},\n",
+ " 'large pre-B-II cell': {'preBCR-positive large pre-B-II cell': {'CD38-high pre-BCR positive cell': {}},\n",
+ " 'preBCR-negative large pre-B-II cell': {}}},\n",
+ " 'pre-B-I cell': {},\n",
+ " 'late pro-B cell': {},\n",
+ " \"fraction C' precursor B cell\": {},\n",
+ " 'fraction B/C precursor B cell': {'fraction B precursor B cell': {},\n",
+ " 'fraction C precursor B cell': {},\n",
+ " 'fraction D precursor B cell': {}}},\n",
+ " 'transitional stage B cell': {'T1 B cell': {},\n",
+ " 'T2 B cell': {},\n",
+ " 'T3 B cell': {}}}},\n",
+ " 'B-lymphoblast': {}},\n",
+ " 'innate lymphoid cell': {'group 1 innate lymphoid cell': {'natural killer cell': {'immature natural killer cell': {'CD56-positive, CD161-positive immature natural killer cell, human': {},\n",
+ " 'CD56-negative, CD161-positive immature natural killer cell, human': {},\n",
+ " 'CD27-low, CD11b-low immature natural killer cell, mouse': {},\n",
+ " 'Dx5-negative, NK1.1-positive immature natural killer cell, mouse': {}},\n",
+ " 'mature natural killer cell': {'CD16-negative, CD56-bright natural killer cell, human': {},\n",
+ " 'CD16-positive, CD56-dim natural killer cell, human': {},\n",
+ " 'decidual natural killer cell, human': {},\n",
+ " 'CD27-high, CD11b-high natural killer cell, mouse': {},\n",
+ " 'CD27-low, CD11b-high natural killer cell, mouse': {},\n",
+ " 'CD27-high, CD11b-low natural killer cell, mouse': {},\n",
+ " 'NK1.1-positive natural killer cell, mouse': {'CD11b-positive, CD27-positive natural killer cell, mouse': {},\n",
+ " 'NKGA2-positive natural killer cell, mouse': {},\n",
+ " 'Ly49D-positive natural killer cell, mouse': {},\n",
+ " 'CD94-positive natural killer cell, mouse': {'CD94-positive Ly49CI-positive natural killer cell, mouse': {}},\n",
+ " 'Ly49CI-positive natural killer cell, mouse': {'CD94-positive Ly49CI-positive natural killer cell, mouse': {}},\n",
+ " 'Ly49H-positive natural killer cell, mouse': {},\n",
+ " 'Ly49D-negative natural killer cell, mouse': {},\n",
+ " 'Ly49CI-negative natural killer cell, mouse': {},\n",
+ " 'CD94-negative natural killer cell, mouse': {},\n",
+ " 'Ly49H-negative natural killer cell, mouse': {}}},\n",
+ " 'pre-natural killer cell': {},\n",
+ " 'CD94-negative, Ly49CI-negative natural killer cell, mouse': {},\n",
+ " 'hepatic pit cell': {}},\n",
+ " 'ILC1': {'ILC1, human': {}}},\n",
+ " 'group 2 innate lymphoid cell': {'group 2 innate lymphoid cell, human': {},\n",
+ " 'group 2 innate lymphoid cell, mouse': {}},\n",
+ " 'group 3 innate lymphoid cell': {'group 3 innate lymphoid cell, human': {'NKp44-positive group 3 innate lymphoid cell, human': {},\n",
+ " 'NKp44-negative group 3 innate lymphoid cell, human': {}},\n",
+ " 'lymphoid tissueβinducer cell': {}},\n",
+ " 'immature innate lymphoid cell': {'immature natural killer cell': {'CD56-positive, CD161-positive immature natural killer cell, human': {},\n",
+ " 'CD56-negative, CD161-positive immature natural killer cell, human': {},\n",
+ " 'CD27-low, CD11b-low immature natural killer cell, mouse': {},\n",
+ " 'Dx5-negative, NK1.1-positive immature natural killer cell, mouse': {}},\n",
+ " 'CD34-negative, CD117-positive innate lymphoid cell, human': {'CD34-negative, CD56-positive, CD117-positive innate lymphoid cell, human': {},\n",
+ " 'KLRG1-positive innate lymphoid cell, human': {}},\n",
+ " 'CD34-positive, CD56-positive, CD117-positive common innate lymphoid precursor, human': {'NKp46-positive innate lymphoid cell, human': {}}}},\n",
+ " 'natural helper lymphocyte': {},\n",
+ " \"Peyer's patch lymphocyte\": {\"Peyer's patch B cell\": {},\n",
+ " \"small intestine Peyer's patch T cell\": {}},\n",
+ " 'lymphocyte of large intestine lamina propria': {},\n",
+ " 'lymphocyte of small intestine lamina propria': {},\n",
+ " 'lymphoblast': {'B-lymphoblast': {}},\n",
+ " 'blood lymphocyte': {'peripheral blood lymphocyte': {}}},\n",
+ " 'monocyte': {'classical monocyte': {'CD14-positive, CD16-negative classical monocyte': {},\n",
+ " 'Gr1-high classical monocyte': {'MHC-II-negative classical monocyte': {'lymphoid MHC-II-negative classical monocyte': {}},\n",
+ " 'MHC-II-positive classical monocyte': {}}},\n",
+ " 'non-classical monocyte': {'Gr1-low non-classical monocyte': {'MHC-II-negative non-classical monocyte': {'lymphoid MHC-II-negative non-classical monocyte': {}},\n",
+ " 'MHC-II-low non-classical monocyte': {},\n",
+ " 'MHC-II-high non-classical monocyte': {}},\n",
+ " 'CD14-low, CD16-positive monocyte': {}},\n",
+ " 'CD115-positive monocyte': {'Gr1-high classical monocyte': {'MHC-II-negative classical monocyte': {'lymphoid MHC-II-negative classical monocyte': {}},\n",
+ " 'MHC-II-positive classical monocyte': {}},\n",
+ " 'Gr1-positive, CD43-positive monocyte': {'Gr1-low non-classical monocyte': {'MHC-II-negative non-classical monocyte': {'lymphoid MHC-II-negative non-classical monocyte': {}},\n",
+ " 'MHC-II-low non-classical monocyte': {},\n",
+ " 'MHC-II-high non-classical monocyte': {}}}},\n",
+ " 'CD14-positive monocyte': {'CD14-positive, CD16-negative classical monocyte': {},\n",
+ " 'CD14-low, CD16-positive monocyte': {},\n",
+ " 'CD14-positive, CD16-positive monocyte': {'CD14-positive, CD16-low monocyte': {}}},\n",
+ " 'intermediate monocyte': {'CD14-positive, CD16-low monocyte': {},\n",
+ " 'Gr1-positive, CD43-positive monocyte': {'Gr1-low non-classical monocyte': {'MHC-II-negative non-classical monocyte': {'lymphoid MHC-II-negative non-classical monocyte': {}},\n",
+ " 'MHC-II-low non-classical monocyte': {},\n",
+ " 'MHC-II-high non-classical monocyte': {}}}}},\n",
+ " 'mononuclear osteoclast': {'mononuclear odontoclast': {}},\n",
+ " 'mononuclear cell of bone marrow': {},\n",
+ " 'peripheral blood mononuclear cell': {'blood lymphocyte': {'peripheral blood lymphocyte': {}}},\n",
+ " 'mononuclear cell of umbilical cord': {}},\n",
+ " 'nongranular leukocyte': {'neutrophilic myelocyte': {},\n",
+ " 'eosinophilic myelocyte': {},\n",
+ " 'basophilic myelocyte': {}},\n",
+ " 'splenocyte': {'marginal zone B cell of spleen': {},\n",
+ " 'splenic macrophage': {'splenic marginal zone macrophage': {},\n",
+ " 'splenic metallophillic macrophage': {},\n",
+ " 'splenic red pulp macrophage': {},\n",
+ " 'splenic white pulp macrophage': {'splenic tingible body macrophage': {}}}}},\n",
+ " 'nucleated reticulocyte': {}},\n",
+ " 'skeletogenic cell': {},\n",
+ " 'transit amplifying cell': {'transit amplifying cell of colon': {},\n",
+ " 'transit amplifying cell of small intestine': {},\n",
+ " 'transit amplifying cell of appendix': {},\n",
+ " 'transit amplifying cell of anorectum': {}},\n",
+ " 'zygote': {'animal zygote': {}},\n",
+ " 'precursor cell': {'stem cell': {'germ line stem cell': {'male germ line stem cell': {},\n",
+ " 'female germ line stem cell': {}},\n",
+ " 'multi fate stem cell': {'mesenchymal stem cell': {'metanephric mesenchyme stem cell': {},\n",
+ " 'hair follicle dermal papilla cell': {'hair follicle dermal papilla cell of scalp': {}},\n",
+ " 'nephrogenic mesenchyme stem cell': {},\n",
+ " 'angioblastic mesenchymal cell': {'adult endothelial progenitor cell': {'colony forming unit β Hill cell': {},\n",
+ " 'circulating angiogenic cell': {},\n",
+ " 'endothelial colony forming cell': {}}},\n",
+ " 'amnion mesenchymal stem cell': {},\n",
+ " 'mesenchymal stem cell of the bone marrow': {'mesenchymal stem cell of femoral bone marrow': {}},\n",
+ " 'chorionic membrane mesenchymal stem cell': {},\n",
+ " 'mesenchymal stem cell of umbilical cord': {\"mesenchymal stem cell of Wharton's jelly\": {}},\n",
+ " 'mesenchymal stem cell of adipose tissue': {'mesenchymal stem cell of abdominal adipose tissue': {}},\n",
+ " 'hepatic mesenchymal stem cell': {},\n",
+ " 'vertebral mesenchymal stem cell': {},\n",
+ " 'amniotic stem cell': {},\n",
+ " 'mesenchymal lymphangioblast': {},\n",
+ " 'placental amniotic mesenchymal stromal cell': {}},\n",
+ " 'blastemal cell': {},\n",
+ " 'multi-potent skeletal muscle stem cell': {},\n",
+ " 'stem cell of gastric gland': {},\n",
+ " 'hepatic stem cell': {'hepatic mesenchymal stem cell': {}},\n",
+ " 'intestinal crypt stem cell': {'intestinal crypt stem cell of large intestine': {'intestinal crypt stem cell of appendix': {}},\n",
+ " 'intestinal crypt stem cell of small intestine': {},\n",
+ " 'intestinal crypt stem cell of colon': {},\n",
+ " 'intestinal crypt stem cell of anorectum': {}},\n",
+ " 'type III taste bud cell': {},\n",
+ " 'keratinocyte stem cell': {},\n",
+ " 'prostate stem cell': {},\n",
+ " 'mammary stem cell': {},\n",
+ " 'cardioblast': {},\n",
+ " 'retinal progenitor cell': {},\n",
+ " 'lymphangioblast': {'mesenchymal lymphangioblast': {},\n",
+ " 'vascular lymphangioblast': {}},\n",
+ " 'hepatoblast': {},\n",
+ " 'neural crest cell': {'migratory neural crest cell': {'migratory cranial neural crest cell': {},\n",
+ " 'migratory trunk neural crest cell': {},\n",
+ " 'migratory enteric neural crest cell': {},\n",
+ " 'migratory cardiac neural crest cell': {'cardiac mesenchymal cell': {'endocardial cushion cell': {}}}},\n",
+ " 'premigratory neural crest cell': {},\n",
+ " 'vagal neural crest cell': {}}},\n",
+ " 'somatic stem cell': {'single fate stem cell': {'epithelial fate stem cell': {'stratified epithelial stem cell': {'stratified keratinized epithelial stem cell': {},\n",
+ " 'stratified non keratinized epithelial stem cell': {}},\n",
+ " 'seam cell': {},\n",
+ " 'follicle stem cell (sensu Arthropoda)': {},\n",
+ " 'basal cell': {'basal cell of epidermis': {'limb basal cell of epidermis': {}},\n",
+ " 'respiratory basal cell': {'basal cell of epithelium of trachea': {},\n",
+ " 'basal cell of epithelium of bronchus': {},\n",
+ " 'basal cell of epithelium of terminal bronchiole': {'bronchioalveolar stem cell': {}},\n",
+ " 'basal cell of epithelium of respiratory bronchiole': {'bronchioalveolar stem cell': {}},\n",
+ " 'basal cell of epithelium of lobular bronchiole': {}},\n",
+ " 'epithelial cell of stratum germinativum of esophagus': {},\n",
+ " 'basal cell of urothelium': {},\n",
+ " 'airway submucosal gland duct basal cell': {}},\n",
+ " 'amniotic epithelial stem cell': {}},\n",
+ " 'hair matrix stem cell': {},\n",
+ " 'primitive cardiac myocyte': {},\n",
+ " 'skeletal muscle satellite stem cell': {}},\n",
+ " 'hematopoietic stem cell': {'Kit and Sca1-positive hematopoietic stem cell': {'short term hematopoietic stem cell': {},\n",
+ " 'long term hematopoietic stem cell': {}},\n",
+ " 'CD34-positive, CD38-negative hematopoietic stem cell': {},\n",
+ " 'peripheral blood stem cell': {'cord blood hematopoietic stem cell': {}},\n",
+ " 'gestational hematopoietic stem cell': {'fetal liver hematopoietic progenitor cell': {},\n",
+ " 'yolk sac hematopoietic stem cell': {},\n",
+ " 'placental hematopoietic stem cell': {},\n",
+ " 'AGM hematopoietic stem cell': {},\n",
+ " 'cord blood hematopoietic stem cell': {}}},\n",
+ " 'totipotent stem cell': {'epiblast cell': {}},\n",
+ " 'pluripotent stem cell': {},\n",
+ " 'neuroepithelial stem cell': {},\n",
+ " 'stem cell of epidermis': {'basal cell of epidermis': {'limb basal cell of epidermis': {}}}},\n",
+ " 'type IV taste receptor cell': {},\n",
+ " 'embryonic stem cell': {},\n",
+ " 'Leydig stem cell': {},\n",
+ " 'dental pulp stem cell': {}},\n",
+ " 'non-terminally differentiated cell': {'glioblast': {'glioblast (sensu Vertebrata)': {},\n",
+ " 'glioblast (sensu Nematoda and Protostomia)': {},\n",
+ " 'Schwann cell precursor': {}},\n",
+ " 'neuroblast (sensu Vertebrata)': {'cerebellar granule cell precursor': {},\n",
+ " 'neural crest derived neuroblast': {},\n",
+ " 'forebrain neuroblast': {}},\n",
+ " 'chondroblast': {},\n",
+ " 'odontoblast': {'non-terminally differentiated odontoblast': {},\n",
+ " 'terminally differentiated odontoblast': {}},\n",
+ " 'osteoblast': {'cementoblast': {},\n",
+ " 'terminally differentiated osteoblast': {},\n",
+ " 'non-terminally differentiated osteoblast': {},\n",
+ " 'femural osteoblast': {},\n",
+ " 'calvarial osteoblast': {}},\n",
+ " 'epidermoblast': {},\n",
+ " 'melanoblast': {},\n",
+ " 'muscle precursor cell': {'myoblast': {'smooth muscle myoblast': {},\n",
+ " 'skeletal muscle myoblast': {'slow muscle myoblast': {},\n",
+ " 'fast muscle myoblast': {},\n",
+ " 'adult skeletal muscle myoblast': {}},\n",
+ " 'somatic muscle myoblast': {'fusion competent myoblast': {},\n",
+ " 'muscle founder cell': {}},\n",
+ " 'cardiac myoblast': {'cardioblast (sensu Arthropoda)': {},\n",
+ " 'cardiac muscle myoblast': {}}},\n",
+ " 'adepithelial cell': {},\n",
+ " 'skeletal muscle satellite cell': {'skeletal muscle satellite stem cell': {},\n",
+ " 'quiescent skeletal muscle satellite cell': {},\n",
+ " 'activated skeletal muscle satellite cell': {},\n",
+ " 'skeletal muscle satellite myogenic cell': {}},\n",
+ " 'adaxial cell': {}},\n",
+ " 'iridoblast': {},\n",
+ " 'xanthoblast': {},\n",
+ " 'leucoblast': {},\n",
+ " 'pigment erythroblast': {},\n",
+ " 'cyanoblast': {},\n",
+ " 'preameloblast': {},\n",
+ " 'precementoblast': {},\n",
+ " 'preodontoblast': {},\n",
+ " 'prechondroblast': {},\n",
+ " 'preosteoblast': {},\n",
+ " 'neural progenitor cell': {'ganglion mother cell': {}}},\n",
+ " 'progenitor cell': {'hematopoietic stem cell': {'Kit and Sca1-positive hematopoietic stem cell': {'short term hematopoietic stem cell': {},\n",
+ " 'long term hematopoietic stem cell': {}},\n",
+ " 'CD34-positive, CD38-negative hematopoietic stem cell': {},\n",
+ " 'peripheral blood stem cell': {'cord blood hematopoietic stem cell': {}},\n",
+ " 'gestational hematopoietic stem cell': {'fetal liver hematopoietic progenitor cell': {},\n",
+ " 'yolk sac hematopoietic stem cell': {},\n",
+ " 'placental hematopoietic stem cell': {},\n",
+ " 'AGM hematopoietic stem cell': {},\n",
+ " 'cord blood hematopoietic stem cell': {}}},\n",
+ " 'megakaryocyte-erythroid progenitor cell': {'CD34-positive, CD38-positive megakaryocyte erythroid progenitor cell': {},\n",
+ " 'Kit-positive, CD34-negative megakaryocyte erythroid progenitor cell': {}},\n",
+ " 'common lymphoid progenitor': {'CD34-positive, CD38-positive common lymphoid progenitor': {},\n",
+ " 'Kit-positive, Sca1-positive common lymphoid progenitor': {},\n",
+ " 'CD7-negative lymphoid progenitor cell': {},\n",
+ " 'CD7-positive lymphoid progenitor cell': {}},\n",
+ " 'odontoblast': {'non-terminally differentiated odontoblast': {},\n",
+ " 'terminally differentiated odontoblast': {}},\n",
+ " 'osteoblast': {'cementoblast': {},\n",
+ " 'terminally differentiated osteoblast': {},\n",
+ " 'non-terminally differentiated osteoblast': {},\n",
+ " 'femural osteoblast': {},\n",
+ " 'calvarial osteoblast': {}},\n",
+ " 'club cell': {},\n",
+ " 'migratory neural crest cell': {'migratory cranial neural crest cell': {},\n",
+ " 'migratory trunk neural crest cell': {},\n",
+ " 'migratory enteric neural crest cell': {},\n",
+ " 'migratory cardiac neural crest cell': {'cardiac mesenchymal cell': {'endocardial cushion cell': {}}}},\n",
+ " 'glioblast (sensu Vertebrata)': {},\n",
+ " 'hair follicle dermal papilla cell': {'hair follicle dermal papilla cell of scalp': {}},\n",
+ " 'histoblast': {},\n",
+ " 'nephrogenic mesenchyme stem cell': {},\n",
+ " 'skeletal muscle myoblast': {'slow muscle myoblast': {},\n",
+ " 'fast muscle myoblast': {},\n",
+ " 'adult skeletal muscle myoblast': {}},\n",
+ " 'melanoblast': {},\n",
+ " 'granulocyte monocyte progenitor cell': {'CD34-positive, CD38-positive granulocyte monocyte progenitor': {},\n",
+ " 'Kit-positive granulocyte monocyte progenitor': {}},\n",
+ " 'angioblastic mesenchymal cell': {'adult endothelial progenitor cell': {'colony forming unit β Hill cell': {},\n",
+ " 'circulating angiogenic cell': {},\n",
+ " 'endothelial colony forming cell': {}}},\n",
+ " 'monocyte': {'classical monocyte': {'CD14-positive, CD16-negative classical monocyte': {},\n",
+ " 'Gr1-high classical monocyte': {'MHC-II-negative classical monocyte': {'lymphoid MHC-II-negative classical monocyte': {}},\n",
+ " 'MHC-II-positive classical monocyte': {}}},\n",
+ " 'non-classical monocyte': {'Gr1-low non-classical monocyte': {'MHC-II-negative non-classical monocyte': {'lymphoid MHC-II-negative non-classical monocyte': {}},\n",
+ " 'MHC-II-low non-classical monocyte': {},\n",
+ " 'MHC-II-high non-classical monocyte': {}},\n",
+ " 'CD14-low, CD16-positive monocyte': {}},\n",
+ " 'CD115-positive monocyte': {'Gr1-high classical monocyte': {'MHC-II-negative classical monocyte': {'lymphoid MHC-II-negative classical monocyte': {}},\n",
+ " 'MHC-II-positive classical monocyte': {}},\n",
+ " 'Gr1-positive, CD43-positive monocyte': {'Gr1-low non-classical monocyte': {'MHC-II-negative non-classical monocyte': {'lymphoid MHC-II-negative non-classical monocyte': {}},\n",
+ " 'MHC-II-low non-classical monocyte': {},\n",
+ " 'MHC-II-high non-classical monocyte': {}}}},\n",
+ " 'CD14-positive monocyte': {'CD14-positive, CD16-negative classical monocyte': {},\n",
+ " 'CD14-low, CD16-positive monocyte': {},\n",
+ " 'CD14-positive, CD16-positive monocyte': {'CD14-positive, CD16-low monocyte': {}}},\n",
+ " 'intermediate monocyte': {'CD14-positive, CD16-low monocyte': {},\n",
+ " 'Gr1-positive, CD43-positive monocyte': {'Gr1-low non-classical monocyte': {'MHC-II-negative non-classical monocyte': {'lymphoid MHC-II-negative non-classical monocyte': {}},\n",
+ " 'MHC-II-low non-classical monocyte': {},\n",
+ " 'MHC-II-high non-classical monocyte': {}}}}},\n",
+ " 'erythroblast': {'basophilic erythroblast': {'GlyA-positive basophilic erythroblast': {},\n",
+ " 'Kit-negative, Ly-76 high basophilic erythroblast': {}},\n",
+ " 'polychromatophilic erythroblast': {'Kit-negative, Ly-76 high polychromatophilic erythroblast': {},\n",
+ " 'CD71-low, GlyA-positive polychromatic erythroblast': {}},\n",
+ " 'orthochromatic erythroblast': {'Kit-negative, Ly-76 high orthochromatophilic erythroblasts': {},\n",
+ " 'CD71-negative, GlyA-positive orthochromatic erythroblast': {}}},\n",
+ " 'lymphoid lineage restricted progenitor cell': {'pro-NK cell': {},\n",
+ " 'pro-B cell': {'fraction A pre-pro B cell': {}, 'early pro-B cell': {}},\n",
+ " 'pro-T cell': {'DN1 thymic pro-T cell': {},\n",
+ " 'early T lineage precursor': {}}},\n",
+ " 'myeloid lineage restricted progenitor cell': {'erythroid progenitor cell': {'erythroid progenitor cell, mammalian': {'Kit-positive erythroid progenitor cell': {},\n",
+ " 'CD34-positive, GlyA-negative erythroid progenitor cell': {}}},\n",
+ " 'megakaryocyte progenitor cell': {'CD34-positive, CD41-positive, CD42-positive megakaryocyte progenitor cell': {},\n",
+ " 'Kit-positive megakaryocyte progenitor cell': {},\n",
+ " 'CD34-positive, CD41-positive, CD42-negative megakaryocyte progenitor cell': {}},\n",
+ " 'thromboblast': {},\n",
+ " 'mast cell progenitor': {'Fc-epsilon RIalpha-low mast cell progenitor': {}},\n",
+ " 'CD115-positive monocyte': {'Gr1-high classical monocyte': {'MHC-II-negative classical monocyte': {'lymphoid MHC-II-negative classical monocyte': {}},\n",
+ " 'MHC-II-positive classical monocyte': {}},\n",
+ " 'Gr1-positive, CD43-positive monocyte': {'Gr1-low non-classical monocyte': {'MHC-II-negative non-classical monocyte': {'lymphoid MHC-II-negative non-classical monocyte': {}},\n",
+ " 'MHC-II-low non-classical monocyte': {},\n",
+ " 'MHC-II-high non-classical monocyte': {}}}},\n",
+ " 'granulocytopoietic cell': {'eosinophil progenitor cell': {'Kit-low, CD34-positive eosinophil progenitor cell': {},\n",
+ " 'CD34-positive, CD38-positive eosinophil progenitor cell': {}},\n",
+ " 'basophil progenitor cell': {'Fc-epsilon RIalpha-high basophil progenitor cell': {}},\n",
+ " 'neutrophil progenitor cell': {'neutrophilic myeloblast': {},\n",
+ " 'neutrophilic promyelocyte': {}},\n",
+ " 'myeloblast': {'neutrophilic myeloblast': {},\n",
+ " 'basophilic myeloblast': {},\n",
+ " 'eosinophilic myeloblast': {}},\n",
+ " 'promyelocyte': {'neutrophilic promyelocyte': {},\n",
+ " 'basophilic promyelocyte': {},\n",
+ " 'eosinophilic promyelocyte': {},\n",
+ " 'late promyelocyte': {},\n",
+ " 'early promyelocyte': {}},\n",
+ " 'basophil mast progenitor cell': {'Kit-positive, integrin beta7-high basophil mast progenitor cell': {}},\n",
+ " 'metamyelocyte': {'neutrophilic metamyelocyte': {},\n",
+ " 'basophilic metamyelocyte': {},\n",
+ " 'eosinophilic metamyelocyte': {}},\n",
+ " 'myelocyte': {'neutrophilic myelocyte': {},\n",
+ " 'eosinophilic myelocyte': {}}},\n",
+ " 'monopoietic cell': {'monoblast': {}, 'promonocyte': {}}},\n",
+ " 'early lymphoid progenitor': {},\n",
+ " 'common myeloid progenitor, CD34-positive': {'Kit-positive, CD34-positive common myeloid progenitor': {},\n",
+ " 'CD34-positive, CD38-positive common myeloid progenitor': {}},\n",
+ " 'macrophage dendritic cell progenitor': {'Kit-positive macrophage dendritic cell progenitor': {}},\n",
+ " 'basal cell of epidermis': {'limb basal cell of epidermis': {}},\n",
+ " 'hepatic oval stem cell': {},\n",
+ " 'keratinocyte stem cell': {},\n",
+ " 'progenitor cell of endocrine pancreas': {},\n",
+ " 'Schwann cell precursor': {},\n",
+ " 'oligodendrocyte precursor cell': {},\n",
+ " 'neural crest derived neuroblast': {},\n",
+ " 'iridoblast': {},\n",
+ " 'xanthoblast': {},\n",
+ " 'leucoblast': {},\n",
+ " 'pigment erythroblast': {},\n",
+ " 'cyanoblast': {},\n",
+ " 'preodontoblast': {},\n",
+ " 'preosteoblast': {},\n",
+ " 'fetal hepatobiliary progenitor cell': {},\n",
+ " 'fibro/adipogenic progenitor cell': {},\n",
+ " 'progenitor cell of mammary luminal epithelium': {},\n",
+ " 'respiratory suprabasal cell': {},\n",
+ " 'glial restricted tripotential precursor cell': {}}},\n",
+ " 'inner cell mass cell': {},\n",
+ " 'brain vascular cell': {},\n",
+ " 'gamete-nursing cell': {'germline-derived nurse cell': {'invertebrate nurse cell': {}},\n",
+ " 'somatic nurse-like cell': {}},\n",
+ " 'interstitial cell': {'Leydig cell': {},\n",
+ " 'pulmonary interstitial fibroblast': {'alveolar type 1 fibroblast cell': {},\n",
+ " 'alveolar type 2 fibroblast cell': {}},\n",
+ " 'Leydig stem cell': {},\n",
+ " 'kidney interstitial cell': {'kidney nerve cell': {},\n",
+ " 'kidney cortex interstitial cell': {'renal cortical fibroblast': {}},\n",
+ " 'kidney medulla interstitial cell': {'kidney inner medulla interstitial cell': {},\n",
+ " 'kidney outer medulla interstitial cell': {},\n",
+ " 'renal medullary fibroblast': {}},\n",
+ " 'kidney interstitial myofibroblast': {},\n",
+ " 'kidney interstitial fibroblast': {'renal medullary fibroblast': {},\n",
+ " 'renal cortical fibroblast': {}},\n",
+ " 'kidney interstitial fibrocyte': {},\n",
+ " 'kidney interstitial alternatively activated macrophage': {},\n",
+ " 'kidney interstitial inflammatory macrophage': {},\n",
+ " 'kidney interstitial suppressor macrophage': {},\n",
+ " 'kidney resident macrophage': {},\n",
+ " 'kidney resident dendritic cell': {},\n",
+ " 'renal interstitial pericyte': {'extraglomerular mesangial cell': {},\n",
+ " 'glomerular mesangial cell': {}}},\n",
+ " 'valve interstitial cell': {}},\n",
+ " 'perivascular cell': {'vascular associated smooth muscle cell': {'smooth muscle cell of the brain vasculature': {},\n",
+ " 'microcirculation associated smooth muscle cell': {'smooth muscle cell of high endothelial venule of lymph node': {},\n",
+ " 'kidney afferent arteriole smooth muscle cell': {},\n",
+ " 'kidney efferent arteriole smooth muscle cell': {}},\n",
+ " 'lymphatic vessel smooth muscle cell': {},\n",
+ " 'blood vessel smooth muscle cell': {'aortic smooth muscle cell': {},\n",
+ " 'smooth muscle cell of the umbilical vein': {},\n",
+ " 'smooth muscle cell of the brachiocephalic vasculature': {},\n",
+ " 'smooth muscle cell of the pulmonary artery': {},\n",
+ " 'smooth muscle cell of the coronary artery': {},\n",
+ " 'smooth muscle cell of the umbilical artery': {},\n",
+ " 'smooth muscle cell of the subclavian artery': {'smooth muscle cell of the internal thoracic artery': {}},\n",
+ " 'smooth muscle cell of the carotid artery': {},\n",
+ " 'smooth muscle cell of high endothelial venule of lymph node': {},\n",
+ " 'kidney artery smooth muscle cell': {'arcuate artery smooth muscle cell': {},\n",
+ " 'interlobulary artery smooth muscle cell': {'kidney afferent arteriole smooth muscle cell': {}}},\n",
+ " 'kidney arteriole smooth muscle cell': {'kidney afferent arteriole smooth muscle cell': {},\n",
+ " 'kidney efferent arteriole smooth muscle cell': {}},\n",
+ " 'kidney venous system smooth muscle cell': {'arcuate vein smooth muscle cell': {},\n",
+ " 'interlobulary vein smooth muscle cell': {}}}},\n",
+ " 'perivascular macrophage': {},\n",
+ " 'lymphangioblast': {'mesenchymal lymphangioblast': {},\n",
+ " 'vascular lymphangioblast': {}},\n",
+ " 'mural cell': {'pericyte': {'mesangial cell': {'extraglomerular mesangial cell': {},\n",
+ " 'glomerular mesangial cell': {}},\n",
+ " 'central nervous system pericyte': {'brain pericyte': {}},\n",
+ " 'lung pericyte': {},\n",
+ " 'renal interstitial pericyte': {'extraglomerular mesangial cell': {},\n",
+ " 'glomerular mesangial cell': {}},\n",
+ " 'placental pericyte': {'decidual pericyte': {}}},\n",
+ " 'microcirculation associated smooth muscle cell': {'smooth muscle cell of high endothelial venule of lymph node': {},\n",
+ " 'kidney afferent arteriole smooth muscle cell': {},\n",
+ " 'kidney efferent arteriole smooth muscle cell': {}}}}},\n",
+ " 'cell in vitro': {'experimentally modified cell in vitro': {'cultured cell': {'primary cultured cell': {}},\n",
+ " 'protoplast': {'spheroplast': {}}}},\n",
+ " 'abnormal cell': {'neoplastic cell': {'malignant cell': {},\n",
+ " 'CD25+ mast cell': {}}}}"
+ ]
+ },
+ "metadata": {},
+ "output_type": "display_data"
+ }
+ ],
+ "source": [
+ "cell_dict"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": null,
+ "metadata": {},
+ "outputs": [],
+ "source": [
+ "#add key, value pair to cell_dict with key 'not available' and value an empty dict\n",
+ "cell_dict['not available'] = {}\n",
+ "cell_dict['not applicable'] = {}"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": null,
+ "metadata": {},
+ "outputs": [
+ {
+ "ename": "NameError",
+ "evalue": "name 'transform_nested_dict_to_tree' is not defined",
+ "output_type": "error",
+ "traceback": [
+ "\u001b[0;31m---------------------------------------------------------------------------\u001b[0m\n",
+ "\u001b[0;31mNameError\u001b[0m Traceback (most recent call last)\n",
+ "\u001b[1;32m/home/compomics/git/Publication/lesSDRF/OBO_parser.ipynb Cell 82\u001b[0m in \u001b[0;36m| \u001b[0;34m()\u001b[0m\n",
+ "\u001b[0;32m----> 1\u001b[0m cell_nodes \u001b[39m=\u001b[39m transform_nested_dict_to_tree(cell_dict)\n",
+ "\n",
+ "\u001b[0;31mNameError\u001b[0m: name 'transform_nested_dict_to_tree' is not defined"
+ ]
+ }
+ ],
+ "source": [
+ "cell_nodes = transform_nested_dict_to_tree(cell_dict)"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": null,
+ "metadata": {},
+ "outputs": [
+ {
+ "data": {
+ "text/plain": [
+ "'Stored all_cell_elements as gzipped json'"
+ ]
+ },
+ "metadata": {},
+ "output_type": "display_data"
+ }
+ ],
+ "source": [
+ "#cell_nodes = transform_nested_dict_to_tree(cell_dict)\n",
+ "store_as_gzipped_json(cell_dict, \"cell_dict\")\n",
+ "#store_as_gzipped_json(cell_nodes, \"cell_nodes\")\n",
+ "store_as_gzipped_json(cell_list, \"all_cell_elements\")"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": null,
+ "metadata": {},
+ "outputs": [],
+ "source": [
+ " with gzip.open(\"/home/compomics/git/Publication/lesSDRF/all_cell_elements.json.gz\", \"rb\") as f:\n",
+ " file_data = json.load(f)"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": null,
+ "metadata": {},
+ "outputs": [
+ {
+ "name": "stdout",
+ "output_type": "stream",
+ "text": [
+ "yes\n"
+ ]
+ }
+ ],
+ "source": [
+ "#check if file_data contains not available\n",
+ "if 'not applicable' in file_data:\n",
+ " print(\"yes\")\n",
+ "else:\n",
+ " print(\"no\")"
+ ]
}
],
"metadata": {
@@ -13167,7 +24525,7 @@
"name": "python",
"nbconvert_exporter": "python",
"pygments_lexer": "ipython3",
- "version": "3.11.4"
+ "version": "3.11.11"
},
"orig_nbformat": 4,
"vscode": {
diff --git a/OWL_parser.ipynb b/OWL_parser.ipynb
index be52e8f..8823c99 100644
--- a/OWL_parser.ipynb
+++ b/OWL_parser.ipynb
@@ -6,13 +6,35 @@
"metadata": {},
"outputs": [
{
- "name": "stderr",
+ "name": "stdout",
"output_type": "stream",
"text": [
- "* Owlready2 * Warning: optimized Cython parser module 'owlready2_optimized' is not available, defaulting to slower Python implementation\n"
+ "Collecting owlready2\n",
+ " Downloading owlready2-0.47.tar.gz (27.3 MB)\n",
+ "\u001b[2K \u001b[90mββββββββββββββββββββββββββββββββββββββββ\u001b[0m \u001b[32m27.3/27.3 MB\u001b[0m \u001b[31m53.8 MB/s\u001b[0m eta \u001b[36m0:00:00\u001b[0ma \u001b[36m0:00:01\u001b[0m\n",
+ "\u001b[?25h Installing build dependencies ... \u001b[?25ldone\n",
+ "\u001b[?25h Getting requirements to build wheel ... \u001b[?25ldone\n",
+ "\u001b[?25h Preparing metadata (pyproject.toml) ... \u001b[?25ldone\n",
+ "\u001b[?25hBuilding wheels for collected packages: owlready2\n",
+ " Building wheel for owlready2 (pyproject.toml) ... \u001b[?25ldone\n",
+ "\u001b[?25h Created wheel for owlready2: filename=owlready2-0.47-cp311-cp311-linux_x86_64.whl size=23931538 sha256=0b4e961beaa968682ca87f26b1702cf7551be7ed1c26e9b7e3691da73a6f2bc5\n",
+ " Stored in directory: /home/compomics/.cache/pip/wheels/25/9a/a3/fb1ac6339caa859c8bb18d685736168b0b51d851af13d81d52\n",
+ "Successfully built owlready2\n",
+ "Installing collected packages: owlready2\n",
+ "Successfully installed owlready2-0.47\n",
+ "Note: you may need to restart the kernel to use updated packages.\n"
]
}
],
+ "source": [
+ "pip install owlready2"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 5,
+ "metadata": {},
+ "outputs": [],
"source": [
"import requests\n",
"import rdflib\n",
@@ -161,7 +183,7 @@
},
{
"cell_type": "code",
- "execution_count": 8,
+ "execution_count": 6,
"metadata": {},
"outputs": [],
"source": [
@@ -173,7 +195,7 @@
},
{
"cell_type": "code",
- "execution_count": 9,
+ "execution_count": 7,
"metadata": {},
"outputs": [],
"source": [
@@ -837,7 +859,7 @@
"name": "python",
"nbconvert_exporter": "python",
"pygments_lexer": "ipython3",
- "version": "3.9.13"
+ "version": "3.11.11"
},
"orig_nbformat": 4,
"vscode": {
diff --git a/ParsingModule.py b/ParsingModule.py
index 52846a1..9abb4a8 100644
--- a/ParsingModule.py
+++ b/ParsingModule.py
@@ -1,5 +1,5 @@
-import pronto
-from pronto import Ontology
+# import pronto
+# from pronto import Ontology
from collections import defaultdict
import json
import gzip
@@ -192,8 +192,13 @@ def fill_in_from_list(df, column, values_list=None, multiple_in_one=False):
builder.configure_columns(columns_to_adapt, editable=True, cellEditor="agSelectCellEditor", cellEditorParams={"values": values_list}, cellStyle = cell_style)
else: # if not multiple_in_one, just add the column
builder.configure_column(column,editable=True,cellEditor="agSelectCellEditor",cellEditorParams={"values": values_list}, cellStyle = cell_style)
- builder.configure_grid_options(enableRangeSelection=True, enableFillHandle=True, suppressMovableColumns=True, singleClickEdit=True)
+ builder.configure_grid_options(enableRangeSelection=True,
+ enableFillHandle=True,
+ suppressMovableColumns=True,
+ singleClickEdit=True)
gridOptions = builder.build()
+ gridOptions["enableFillHandle"] = True
+ gridOptions["enableRangeSelection"] = True
grid_return = AgGrid(
df,
gridOptions=gridOptions,
@@ -204,13 +209,17 @@ def fill_in_from_list(df, column, values_list=None, multiple_in_one=False):
elif values_list is None: # if there is no list of values, make the column editable
builder.configure_column(column, editable=True, cellStyle = cell_style)
- builder.configure_grid_options(enableRangeSelection=True, enableFillHandle=True, suppressMovableColumns=True, singleClickEdit=True)
+ builder.configure_grid_options(
+ enableRangeSelection=True, enableFillHandle=True, suppressMovableColumns=True, singleClickEdit=True)
gridOptions = builder.build()
+ gridOptions["enableFillHandle"] = True
+ gridOptions["enableRangeSelection"] = True
grid_return = AgGrid(
df,
gridOptions=gridOptions,
update_mode=GridUpdateMode.MANUAL,
- data_return_mode=DataReturnMode.AS_INPUT)
+ height=800,
+ data_return_mode=DataReturnMode.AS_INPUT, custom_css={"#gridToolBar": {"padding-bottom": "0px !important",}})
df = grid_return["data"]
df.replace("empty", np.nan, inplace=True)
return df
@@ -378,7 +387,7 @@ def convert_df(df):
Leading and trailing whitespaces are removed from all columns
It then converts the dataframe to a tsv file and downloads it
It also adds an comment[tool metadata] to indicate it was built with lesSDRF and ontology versioning"""
- df["comment[tool metadata]"] = "lesSDRF v0.1.0"
+ df["comment[tool metadata]"] = "lesSDRF v0.1.1"
#sort dataframe so that "source name" is the first column
cols = df.columns.tolist()
#get all elements from the list that start with "characteristic" and sort them alphabetically
@@ -450,4 +459,187 @@ def autocomplete_species_search(taxum_list, search_term):
if len(filtered_options) > 500:
st.write("Too many closely related options to display (>500). Please refine your search.")
if len(filtered_options) == 0:
- st.write("No options found. Please refine your search.")
\ No newline at end of file
+ st.write("No options found. Please refine your search.")
+
+#------- Refactoring functions
+def structure_questions(df, column):
+ """
+ Ask whether multiple values or multiple-in-one exist β modify DataFrame structure accordingly (add columns).
+ Returns:
+ - modified DataFrame
+ - list of columns to edit
+ - number of required terms
+ """
+ df = df.copy()
+ columns_to_edit = [column]
+ index = df.columns.get_loc(column) if column in df.columns else 0
+
+ col1, col2, col3 = st.columns(3)
+ with col1:
+ multiple = st.radio(f"Are there multiple {column}s in your data?", ("No", "Yes"))
+ if multiple == "Yes":
+ with col2:
+ num_required = st.number_input(f"How many different {column}s?", min_value=1, step=1)
+ with col3:
+ multi_in_one = st.radio(f"Multiple {column}s within one sample?", ("No", "Yes"))
+ if multi_in_one == "Yes":
+ for i in range(num_required - 1):
+ new_col = f"{column}_{i+1}"
+ if new_col not in df.columns:
+ df.insert(index + 1 + i, new_col, "")
+ columns_to_edit.append(new_col)
+ else:
+ num_required = 1
+
+ return df, columns_to_edit, num_required
+
+def select_ontology_terms(column, ontology_elements, ontology_tree, num_required=1):
+ """
+ UI for selecting ontology terms via autocomplete and tree.
+ Returns:
+ - list of selected ontology terms (strings)
+ """
+ with st.form(f"Select {column} ontology terms", clear_on_submit=True):
+ col1, col2 = st.columns(2)
+ selected_auto = col1.multiselect(
+ f"Select {column} from autocomplete:",
+ sorted(set(ontology_elements)),
+ max_selections=num_required
+ )
+
+ with col2:
+ tree_result = tree_select(ontology_tree, no_cascade=True, expand_on_click=True, check_model="leaf")
+ selected_tree = tree_result["checked"] if tree_result and "checked" in tree_result else []
+
+ combined = selected_auto + selected_tree
+ combined = [s.split(",")[-1] for s in combined if s]
+
+ submit = st.form_submit_button("Confirm selection")
+
+ if submit:
+ if len(combined) != num_required:
+ st.error(f"Please select exactly {num_required} values.")
+ return []
+ if len(combined) == 1:
+ st.success(f"Selected: {combined}. Only one option, will be automatically filled in. Just click Update")
+ else:
+ st.success(f"Selected: {combined}. Multiple options, use drop down menu within the table and click Update when finished")
+ return combined
+ return None
+
+def edit_dataframe_ontology_aggrid(df, columns_to_edit, dropdown_options):
+ """
+ Editable AgGrid table for ontology input:
+ - if len(dropdown_options)==1 β autofill column
+ - if len(dropdown_options)>1 β dropdown editor
+ - if dropdown_options is None β free text input
+ """
+ df = df.copy()
+ df.fillna("", inplace=True)
+ cell_style = {"background-color": "#ffa478"}
+
+ builder = GridOptionsBuilder.from_dataframe(df)
+ st.write(len(dropdown_options))
+ # === CASE 1: autofill ===
+ if dropdown_options and len(dropdown_options) == 1:
+ autofill_value = dropdown_options[0]
+ for col in columns_to_edit:
+ df[col] = autofill_value
+ st.success(f"Filled columns {columns_to_edit} with value: {autofill_value}")
+ return df # return immediately β no need to edit
+
+ # === CASE 2 & 3: configure editors ===
+ for col in df.columns:
+ if col in columns_to_edit:
+ if dropdown_options and len(dropdown_options) > 1:
+ # dropdown editor
+ builder.configure_column(
+ col,
+ editable=True,
+ cellEditor="agSelectCellEditor",
+ cellEditorParams={"values": [""] + dropdown_options + ["NA"]},
+ cellStyle=cell_style
+ )
+ else:
+ # free text editor
+ builder.configure_column(
+ col,
+ editable=True,
+ cellEditor="agTextCellEditor",
+ cellStyle=cell_style
+ )
+ else:
+ builder.configure_column(col, editable=False)
+
+ builder.configure_grid_options(
+ enableRangeSelection=True,
+ enableFillHandle=True,
+ suppressMovableColumns=True,
+ singleClickEdit=True
+ )
+
+ gridOptions = builder.build()
+
+ st.write(f"Fill in values for {columns_to_edit}. Use dropdown or fill handle. Click 'Update' in table to apply.")
+
+ grid_return = AgGrid(
+ df,
+ gridOptions=gridOptions,
+ update_mode=GridUpdateMode.MANUAL, # must click Update button
+ data_return_mode=DataReturnMode.AS_INPUT,
+ fit_columns_on_grid_load=True
+ )
+
+ updated_df = grid_return["data"]
+ updated_df.replace("", np.nan, inplace=True)
+
+ return updated_df
+
+def build_gridOptions_ontology_aggrid(df, columns_to_edit, dropdown_options):
+ """
+ Builds GridOptions for ontology editing:
+ - if len(dropdown_options)==1 β return autofill value (skip gridOptions)
+ - if len(dropdown_options)>1 β dropdown editor
+ - if dropdown_options is None β free text editor
+ Returns:
+ - gridOptions
+ - optional: autofill_value
+ """
+ builder = GridOptionsBuilder.from_dataframe(df)
+ cell_style = {"background-color": "#ffa478"}
+
+ # === CASE 1: autofill β no editor
+ if dropdown_options and len(dropdown_options) == 1:
+ return None, dropdown_options[0]
+
+ # === CASE 2 & 3: configure editable columns
+ for col in df.columns:
+ if col in columns_to_edit:
+ if dropdown_options and len(dropdown_options) > 1:
+ builder.configure_column(
+ col,
+ editable=True,
+ cellEditor="agSelectCellEditor",
+ cellEditorParams={"values": [""] + dropdown_options + ["NA"]},
+ cellStyle=cell_style
+ )
+ else:
+ builder.configure_column(
+ col,
+ editable=True,
+ cellEditor="agTextCellEditor",
+ cellStyle=cell_style
+ )
+ else:
+ builder.configure_column(col, editable=False)
+
+ builder.configure_grid_options(
+ enableRangeSelection=True,
+ enableFillHandle=True,
+ suppressMovableColumns=True,
+ singleClickEdit=True
+ )
+
+ gridOptions = builder.build()
+
+ return gridOptions, None
diff --git a/SDRF_CAPA-IVM.sdrf.tsv b/SDRF_CAPA-IVM.sdrf.tsv
new file mode 100644
index 0000000..42f6f74
--- /dev/null
+++ b/SDRF_CAPA-IVM.sdrf.tsv
@@ -0,0 +1,45 @@
+source name characteristics[organism] characteristics[organism part] characteristics[biological replicate] characteristics[cell type] characteristics[developmental stage] characteristics[disease] assay name technology type comment[cleavage agent details] comment[data file] comment[fraction identifier] comment[fragment mass tolerance] comment[instrument] comment[label] comment[modification parameters] comment[modification parameters].1 comment[modification parameters].2 comment[precursor mass tolerance] comment[technical replicate] comment[tool metadata]
+C1 Equus caballus oocyte 1 oocyte Not available Not applicable C1 proteomic profiling by mass spectrometry Trypsin/Lys-C T064333_AurEl8_PM8_CMB-1696_Control_rep1_3_BB4_1_11271.d.zip 1 20 ppm timsTOF SCP label free sample NT=Oxidation; AC=35; MT=Variable; PP=Anywhere; TA=M NT=Met-loss; AC=765; MT=Variable; PP=Protein N-term; NT=Acetyl; AC=1; MT=Variable; PP=Protein N-term; 15 ppm 1 lesSDRF v0.1.0
+T1 Equus caballus oocyte 2 oocyte Not available Not applicable T1 proteomic profiling by mass spectrometry Trypsin/Lys-C T064335_AurEl8_PM8_CMB-1696_Treatment_rep1_13_BC5_1_11273.d.zip 1 20 ppm timsTOF SCP label free sample NT=Oxidation; AC=35; MT=Variable; PP=Anywhere; TA=M NT=Met-loss; AC=765; MT=Variable; PP=Protein N-term; NT=Acetyl; AC=1; MT=Variable; PP=Protein N-term; 15 ppm 1 lesSDRF v0.1.0
+T2 Equus caballus oocyte 3 oocyte Not available Not applicable T2 proteomic profiling by mass spectrometry Trypsin/Lys-C T064337_AurEl8_PM8_CMB-1696_Treatment_rep1_10_BC2_1_11275.d.zip 1 20 ppm timsTOF SCP label free sample NT=Oxidation; AC=35; MT=Variable; PP=Anywhere; TA=M NT=Met-loss; AC=765; MT=Variable; PP=Protein N-term; NT=Acetyl; AC=1; MT=Variable; PP=Protein N-term; 15 ppm 1 lesSDRF v0.1.0
+C2 Equus caballus oocyte 4 oocyte Not available Not applicable C2 proteomic profiling by mass spectrometry Trypsin/Lys-C T064339_AurEl8_PM8_CMB-1696_Control_rep1_4_BB5_1_11277.d.zip 1 20 ppm timsTOF SCP label free sample NT=Oxidation; AC=35; MT=Variable; PP=Anywhere; TA=M NT=Met-loss; AC=765; MT=Variable; PP=Protein N-term; NT=Acetyl; AC=1; MT=Variable; PP=Protein N-term; 15 ppm 1 lesSDRF v0.1.0
+C3 Equus caballus oocyte 5 oocyte Not available Not applicable C3 proteomic profiling by mass spectrometry Trypsin/Lys-C T064341_AurEl8_PM8_CMB-1696_Control_rep1_5_BB6_1_11279.d.zip 1 20 ppm timsTOF SCP label free sample NT=Oxidation; AC=35; MT=Variable; PP=Anywhere; TA=M NT=Met-loss; AC=765; MT=Variable; PP=Protein N-term; NT=Acetyl; AC=1; MT=Variable; PP=Protein N-term; 15 ppm 1 lesSDRF v0.1.0
+C4 Equus caballus oocyte 6 oocyte Not available Not applicable C4 proteomic profiling by mass spectrometry Trypsin/Lys-C T064347_AurEl8_PM8_CMB-1696_Control_rep1_9_BB10_1_11285.d.zip 1 20 ppm timsTOF SCP label free sample NT=Oxidation; AC=35; MT=Variable; PP=Anywhere; TA=M NT=Met-loss; AC=765; MT=Variable; PP=Protein N-term; NT=Acetyl; AC=1; MT=Variable; PP=Protein N-term; 15 ppm 1 lesSDRF v0.1.0
+C5 Equus caballus oocyte 7 oocyte Not available Not applicable C5 proteomic profiling by mass spectrometry Trypsin/Lys-C T064351_AurEl8_PM8_CMB-1696_Control_rep1_6_BB7_1_11289.d.zip 1 20 ppm timsTOF SCP label free sample NT=Oxidation; AC=35; MT=Variable; PP=Anywhere; TA=M NT=Met-loss; AC=765; MT=Variable; PP=Protein N-term; NT=Acetyl; AC=1; MT=Variable; PP=Protein N-term; 15 ppm 1 lesSDRF v0.1.0
+C6 Equus caballus oocyte 8 oocyte Not available Not applicable C6 proteomic profiling by mass spectrometry Trypsin/Lys-C T064355_AurEl8_PM8_CMB-1696_Control_rep1_7_BB8_1_11293.d.zip 1 20 ppm timsTOF SCP label free sample NT=Oxidation; AC=35; MT=Variable; PP=Anywhere; TA=M NT=Met-loss; AC=765; MT=Variable; PP=Protein N-term; NT=Acetyl; AC=1; MT=Variable; PP=Protein N-term; 15 ppm 1 lesSDRF v0.1.0
+C7 Equus caballus oocyte 9 oocyte Not available Not applicable C7 proteomic profiling by mass spectrometry Trypsin/Lys-C T064357_AurEl8_PM8_CMB-1696_Control_rep1_8_BB9_1_11295.d.zip 1 20 ppm timsTOF SCP label free sample NT=Oxidation; AC=35; MT=Variable; PP=Anywhere; TA=M NT=Met-loss; AC=765; MT=Variable; PP=Protein N-term; NT=Acetyl; AC=1; MT=Variable; PP=Protein N-term; 15 ppm 1 lesSDRF v0.1.0
+T3 Equus caballus oocyte 10 oocyte Not available Not applicable T3 proteomic profiling by mass spectrometry Trypsin/Lys-C T064359_AurEl8_PM8_CMB-1696_Treatment_rep1_12_BC4_1_11297.d.zip 1 20 ppm timsTOF SCP label free sample NT=Oxidation; AC=35; MT=Variable; PP=Anywhere; TA=M NT=Met-loss; AC=765; MT=Variable; PP=Protein N-term; NT=Acetyl; AC=1; MT=Variable; PP=Protein N-term; 15 ppm 1 lesSDRF v0.1.0
+T4 Equus caballus oocyte 11 oocyte Not available Not applicable T4 proteomic profiling by mass spectrometry Trypsin/Lys-C T064363_AurEl8_PM8_CMB-1696_Treatment_rep1_15_BC7_1_11301.d.zip 1 20 ppm timsTOF SCP label free sample NT=Oxidation; AC=35; MT=Variable; PP=Anywhere; TA=M NT=Met-loss; AC=765; MT=Variable; PP=Protein N-term; NT=Acetyl; AC=1; MT=Variable; PP=Protein N-term; 15 ppm 1 lesSDRF v0.1.0
+T5 Equus caballus oocyte 12 oocyte Not available Not applicable T5 proteomic profiling by mass spectrometry Trypsin/Lys-C T064365_AurEl8_PM8_CMB-1696_Treatment_rep2_27_BE4_1_11303.d.zip 1 20 ppm timsTOF SCP label free sample NT=Oxidation; AC=35; MT=Variable; PP=Anywhere; TA=M NT=Met-loss; AC=765; MT=Variable; PP=Protein N-term; NT=Acetyl; AC=1; MT=Variable; PP=Protein N-term; 15 ppm 2 lesSDRF v0.1.0
+T6 Equus caballus oocyte 13 oocyte Not available Not applicable T6 proteomic profiling by mass spectrometry Trypsin/Lys-C T064367_AurEl8_PM8_CMB-1696_Treatment_rep2_30_BE7_1_11305.d.zip 1 20 ppm timsTOF SCP label free sample NT=Oxidation; AC=35; MT=Variable; PP=Anywhere; TA=M NT=Met-loss; AC=765; MT=Variable; PP=Protein N-term; NT=Acetyl; AC=1; MT=Variable; PP=Protein N-term; 15 ppm 2 lesSDRF v0.1.0
+T7 Equus caballus oocyte 14 oocyte Not available Not applicable T7 proteomic profiling by mass spectrometry Trypsin/Lys-C T064369_AurEl8_PM8_CMB-1696_Treatment_rep2_28_BE5_1_11307.d.zip 1 20 ppm timsTOF SCP label free sample NT=Oxidation; AC=35; MT=Variable; PP=Anywhere; TA=M NT=Met-loss; AC=765; MT=Variable; PP=Protein N-term; NT=Acetyl; AC=1; MT=Variable; PP=Protein N-term; 15 ppm 2 lesSDRF v0.1.0
+C8 Equus caballus oocyte 15 oocyte Not available Not applicable C8 proteomic profiling by mass spectrometry Trypsin/Lys-C T064371_AurEl8_PM8_CMB-1696_Control_rep2_19_BD4_1_11309.d.zip 1 20 ppm timsTOF SCP label free sample NT=Oxidation; AC=35; MT=Variable; PP=Anywhere; TA=M NT=Met-loss; AC=765; MT=Variable; PP=Protein N-term; NT=Acetyl; AC=1; MT=Variable; PP=Protein N-term; 15 ppm 2 lesSDRF v0.1.0
+C9 Equus caballus oocyte 16 oocyte Not available Not applicable C9 proteomic profiling by mass spectrometry Trypsin/Lys-C T064375_AurEl8_PM8_CMB-1696_Control_rep2_17_BD2_1_11313.d.zip 1 20 ppm timsTOF SCP label free sample NT=Oxidation; AC=35; MT=Variable; PP=Anywhere; TA=M NT=Met-loss; AC=765; MT=Variable; PP=Protein N-term; NT=Acetyl; AC=1; MT=Variable; PP=Protein N-term; 15 ppm 2 lesSDRF v0.1.0
+C10 Equus caballus oocyte 17 oocyte Not available Not applicable C10 proteomic profiling by mass spectrometry Trypsin/Lys-C T064377_AurEl8_PM8_CMB-1696_Control_rep2_20_BD5_1_11315.d.zip 1 20 ppm timsTOF SCP label free sample NT=Oxidation; AC=35; MT=Variable; PP=Anywhere; TA=M NT=Met-loss; AC=765; MT=Variable; PP=Protein N-term; NT=Acetyl; AC=1; MT=Variable; PP=Protein N-term; 15 ppm 2 lesSDRF v0.1.0
+T8 Equus caballus oocyte 18 oocyte Not available Not applicable T8 proteomic profiling by mass spectrometry Trypsin/Lys-C T064401_AurEl8_PM8_CMB-1696_Treatment_rep3_47_BG8_1_11339.d.zip 1 20 ppm timsTOF SCP label free sample NT=Oxidation; AC=35; MT=Variable; PP=Anywhere; TA=M NT=Met-loss; AC=765; MT=Variable; PP=Protein N-term; NT=Acetyl; AC=1; MT=Variable; PP=Protein N-term; 15 ppm 3 lesSDRF v0.1.0
+C11 Equus caballus oocyte 19 oocyte Not available Not applicable C11 proteomic profiling by mass spectrometry Trypsin/Lys-C T064403_AurEl8_PM8_CMB-1696_Control_rep3_37_BF6_1_11341.d.zip 1 20 ppm timsTOF SCP label free sample NT=Oxidation; AC=35; MT=Variable; PP=Anywhere; TA=M NT=Met-loss; AC=765; MT=Variable; PP=Protein N-term; NT=Acetyl; AC=1; MT=Variable; PP=Protein N-term; 15 ppm 3 lesSDRF v0.1.0
+T9 Equus caballus oocyte 20 oocyte Not available Not applicable T9 proteomic profiling by mass spectrometry Trypsin/Lys-C T064405_AurEl8_PM8_CMB-1696_Treatment_rep3_46_BG7_1_11343.d.zip 1 20 ppm timsTOF SCP label free sample NT=Oxidation; AC=35; MT=Variable; PP=Anywhere; TA=M NT=Met-loss; AC=765; MT=Variable; PP=Protein N-term; NT=Acetyl; AC=1; MT=Variable; PP=Protein N-term; 15 ppm 3 lesSDRF v0.1.0
+C12 Equus caballus oocyte 21 oocyte Not available Not applicable C12 proteomic profiling by mass spectrometry Trypsin/Lys-C T064411_AurEl8_PM8_CMB-1696_Control_rep3_40_BF9_1_11349.d.zip 1 20 ppm timsTOF SCP label free sample NT=Oxidation; AC=35; MT=Variable; PP=Anywhere; TA=M NT=Met-loss; AC=765; MT=Variable; PP=Protein N-term; NT=Acetyl; AC=1; MT=Variable; PP=Protein N-term; 15 ppm 3 lesSDRF v0.1.0
+T10 Equus caballus oocyte 22 oocyte Not available Not applicable T10 proteomic profiling by mass spectrometry Trypsin/Lys-C T064415_AurEl8_PM8_CMB-1696_Treatment_rep3_50_BG11_1_11353.d.zip 1 20 ppm timsTOF SCP label free sample NT=Oxidation; AC=35; MT=Variable; PP=Anywhere; TA=M NT=Met-loss; AC=765; MT=Variable; PP=Protein N-term; NT=Acetyl; AC=1; MT=Variable; PP=Protein N-term; 15 ppm 3 lesSDRF v0.1.0
+T11 Equus caballus oocyte 23 oocyte Not available Not applicable T11 proteomic profiling by mass spectrometry Trypsin/Lys-C T064417_AurEl8_PM8_CMB-1696_Treatment_rep3_41_BG2_1_11355.d.zip 1 20 ppm timsTOF SCP label free sample NT=Oxidation; AC=35; MT=Variable; PP=Anywhere; TA=M NT=Met-loss; AC=765; MT=Variable; PP=Protein N-term; NT=Acetyl; AC=1; MT=Variable; PP=Protein N-term; 15 ppm 3 lesSDRF v0.1.0
+T12 Equus caballus oocyte 24 oocyte Not available Not applicable T12 proteomic profiling by mass spectrometry Trypsin/Lys-C T064425_AurEl8_PM8_CMB-1696_Treatment_rep3_42_BG3_1_11363.d.zip 1 20 ppm timsTOF SCP label free sample NT=Oxidation; AC=35; MT=Variable; PP=Anywhere; TA=M NT=Met-loss; AC=765; MT=Variable; PP=Protein N-term; NT=Acetyl; AC=1; MT=Variable; PP=Protein N-term; 15 ppm 3 lesSDRF v0.1.0
+T13 Equus caballus oocyte 25 oocyte Not available Not applicable T13 proteomic profiling by mass spectrometry Trypsin/Lys-C T064427_AurEl8_PM8_CMB-1696_Treatment_rep3_45_BG6_1_11365.d.zip 1 20 ppm timsTOF SCP label free sample NT=Oxidation; AC=35; MT=Variable; PP=Anywhere; TA=M NT=Met-loss; AC=765; MT=Variable; PP=Protein N-term; NT=Acetyl; AC=1; MT=Variable; PP=Protein N-term; 15 ppm 3 lesSDRF v0.1.0
+C13 Equus caballus oocyte 26 oocyte Not available Not applicable C13 proteomic profiling by mass spectrometry Trypsin/Lys-C T064379_AurEl8_PM8_CMB-1696_Control_rep2_22_BD7_1_11317.d.zip 1 20 ppm timsTOF SCP label free sample NT=Oxidation; AC=35; MT=Variable; PP=Anywhere; TA=M NT=Met-loss; AC=765; MT=Variable; PP=Protein N-term; NT=Acetyl; AC=1; MT=Variable; PP=Protein N-term; 15 ppm 2 lesSDRF v0.1.0
+T14 Equus caballus oocyte 27 oocyte Not available Not applicable T14 proteomic profiling by mass spectrometry Trypsin/Lys-C T064381_AurEl8_PM8_CMB-1696_Treatment_rep2_29_BE6_1_11319.d.zip 1 20 ppm timsTOF SCP label free sample NT=Oxidation; AC=35; MT=Variable; PP=Anywhere; TA=M NT=Met-loss; AC=765; MT=Variable; PP=Protein N-term; NT=Acetyl; AC=1; MT=Variable; PP=Protein N-term; 15 ppm 2 lesSDRF v0.1.0
+C14 Equus caballus oocyte 28 oocyte Not available Not applicable C14 proteomic profiling by mass spectrometry Trypsin/Lys-C T064383_AurEl8_PM8_CMB-1696_Control_rep2_21_BD6_1_11321.d.zip 1 20 ppm timsTOF SCP label free sample NT=Oxidation; AC=35; MT=Variable; PP=Anywhere; TA=M NT=Met-loss; AC=765; MT=Variable; PP=Protein N-term; NT=Acetyl; AC=1; MT=Variable; PP=Protein N-term; 15 ppm 2 lesSDRF v0.1.0
+C15 Equus caballus oocyte 29 oocyte Not available Not applicable C15 proteomic profiling by mass spectrometry Trypsin/Lys-C T064385_AurEl8_PM8_CMB-1696_Control_rep2_24_BD9_1_11323.d.zip 1 20 ppm timsTOF SCP label free sample NT=Oxidation; AC=35; MT=Variable; PP=Anywhere; TA=M NT=Met-loss; AC=765; MT=Variable; PP=Protein N-term; NT=Acetyl; AC=1; MT=Variable; PP=Protein N-term; 15 ppm 2 lesSDRF v0.1.0
+C16 Equus caballus oocyte 30 oocyte Not available Not applicable C16 proteomic profiling by mass spectrometry Trypsin/Lys-C T064387_AurEl8_PM8_CMB-1696_Control_rep2_18_BD3_1_11325.d.zip 1 20 ppm timsTOF SCP label free sample NT=Oxidation; AC=35; MT=Variable; PP=Anywhere; TA=M NT=Met-loss; AC=765; MT=Variable; PP=Protein N-term; NT=Acetyl; AC=1; MT=Variable; PP=Protein N-term; 15 ppm 2 lesSDRF v0.1.0
+T15 Equus caballus oocyte 31 oocyte Not available Not applicable T15 proteomic profiling by mass spectrometry Trypsin/Lys-C T064389_AurEl8_PM8_CMB-1696_Treatment_rep2_25_BE2_1_11327.d.zip 1 20 ppm timsTOF SCP label free sample NT=Oxidation; AC=35; MT=Variable; PP=Anywhere; TA=M NT=Met-loss; AC=765; MT=Variable; PP=Protein N-term; NT=Acetyl; AC=1; MT=Variable; PP=Protein N-term; 15 ppm 2 lesSDRF v0.1.0
+C17 Equus caballus oocyte 32 oocyte Not available Not applicable C17 proteomic profiling by mass spectrometry Trypsin/Lys-C T064391_AurEl8_PM8_CMB-1696_Control_rep2_23_BD8_1_11329.d.zip 1 20 ppm timsTOF SCP label free sample NT=Oxidation; AC=35; MT=Variable; PP=Anywhere; TA=M NT=Met-loss; AC=765; MT=Variable; PP=Protein N-term; NT=Acetyl; AC=1; MT=Variable; PP=Protein N-term; 15 ppm 2 lesSDRF v0.1.0
+T16 Equus caballus oocyte 33 oocyte Not available Not applicable T16 proteomic profiling by mass spectrometry Trypsin/Lys-C T064393_AurEl8_PM8_CMB-1696_Treatment_rep2_31_BE8_1_11331.d.zip 1 20 ppm timsTOF SCP label free sample NT=Oxidation; AC=35; MT=Variable; PP=Anywhere; TA=M NT=Met-loss; AC=765; MT=Variable; PP=Protein N-term; NT=Acetyl; AC=1; MT=Variable; PP=Protein N-term; 15 ppm 2 lesSDRF v0.1.0
+T17 Equus caballus oocyte 34 oocyte Not available Not applicable T17 proteomic profiling by mass spectrometry Trypsin/Lys-C T064397_AurEl8_PM8_CMB-1696_Treatment_rep3_49_BG10_1_11335.d.zip 1 20 ppm timsTOF SCP label free sample NT=Oxidation; AC=35; MT=Variable; PP=Anywhere; TA=M NT=Met-loss; AC=765; MT=Variable; PP=Protein N-term; NT=Acetyl; AC=1; MT=Variable; PP=Protein N-term; 15 ppm 3 lesSDRF v0.1.0
+C18 Equus caballus oocyte 35 oocyte Not available Not applicable C18 proteomic profiling by mass spectrometry Trypsin/Lys-C T064429_AurEl8_PM8_CMB-1696_Control_rep3_39_BF8_1_11367.d.zip 1 20 ppm timsTOF SCP label free sample NT=Oxidation; AC=35; MT=Variable; PP=Anywhere; TA=M NT=Met-loss; AC=765; MT=Variable; PP=Protein N-term; NT=Acetyl; AC=1; MT=Variable; PP=Protein N-term; 15 ppm 3 lesSDRF v0.1.0
+C19 Equus caballus oocyte 36 oocyte Not available Not applicable C19 proteomic profiling by mass spectrometry Trypsin/Lys-C T064407_AurEl8_PM8_CMB-1696_Control_rep3_35_BF4_1_11345.d.zip 1 20 ppm timsTOF SCP label free sample NT=Oxidation; AC=35; MT=Variable; PP=Anywhere; TA=M NT=Met-loss; AC=765; MT=Variable; PP=Protein N-term; NT=Acetyl; AC=1; MT=Variable; PP=Protein N-term; 15 ppm 3 lesSDRF v0.1.0
+T18 Equus caballus oocyte 37 oocyte Not available Not applicable T18 proteomic profiling by mass spectrometry Trypsin/Lys-C T064419_AurEl8_PM8_CMB-1696_Treatment_rep3_48_BG9_1_11357.d.zip 1 20 ppm timsTOF SCP label free sample NT=Oxidation; AC=35; MT=Variable; PP=Anywhere; TA=M NT=Met-loss; AC=765; MT=Variable; PP=Protein N-term; NT=Acetyl; AC=1; MT=Variable; PP=Protein N-term; 15 ppm 3 lesSDRF v0.1.0
+C20 Equus caballus oocyte 38 oocyte Not available Not applicable C20 proteomic profiling by mass spectrometry Trypsin/Lys-C T064421_AurEl8_PM8_CMB-1696_Control_rep3_33_BF2_1_11359.d.zip 1 20 ppm timsTOF SCP label free sample NT=Oxidation; AC=35; MT=Variable; PP=Anywhere; TA=M NT=Met-loss; AC=765; MT=Variable; PP=Protein N-term; NT=Acetyl; AC=1; MT=Variable; PP=Protein N-term; 15 ppm 3 lesSDRF v0.1.0
+C21 Equus caballus oocyte 39 oocyte Not available Not applicable C21 proteomic profiling by mass spectrometry Trypsin/Lys-C T064423_AurEl8_PM8_CMB-1696_Control_rep3_38_BF7_1_11361.d.zip 1 20 ppm timsTOF SCP label free sample NT=Oxidation; AC=35; MT=Variable; PP=Anywhere; TA=M NT=Met-loss; AC=765; MT=Variable; PP=Protein N-term; NT=Acetyl; AC=1; MT=Variable; PP=Protein N-term; 15 ppm 3 lesSDRF v0.1.0
+C22 Equus caballus oocyte 40 oocyte Not available Not applicable C22 proteomic profiling by mass spectrometry Trypsin/Lys-C T064431_AurEl8_PM8_CMB-1696_Control_rep3_34_BF3_1_11369.d.zip 1 20 ppm timsTOF SCP label free sample NT=Oxidation; AC=35; MT=Variable; PP=Anywhere; TA=M NT=Met-loss; AC=765; MT=Variable; PP=Protein N-term; NT=Acetyl; AC=1; MT=Variable; PP=Protein N-term; 15 ppm 3 lesSDRF v0.1.0
+T19 Equus caballus oocyte 41 oocyte Not available Not applicable T19 proteomic profiling by mass spectrometry Trypsin/Lys-C T064433_AurEl8_PM8_CMB-1696_Treatment_rep3_51_BG12_1_11371.d.zip 1 20 ppm timsTOF SCP label free sample NT=Oxidation; AC=35; MT=Variable; PP=Anywhere; TA=M NT=Met-loss; AC=765; MT=Variable; PP=Protein N-term; NT=Acetyl; AC=1; MT=Variable; PP=Protein N-term; 15 ppm 3 lesSDRF v0.1.0
+T20 Equus caballus oocyte 42 oocyte Not available Not applicable T20 proteomic profiling by mass spectrometry Trypsin/Lys-C T064399_AurEl8_PM8_CMB-1696_Treatment_rep3_44_BG5_1_11337.d.zip 1 20 ppm timsTOF SCP label free sample NT=Oxidation; AC=35; MT=Variable; PP=Anywhere; TA=M NT=Met-loss; AC=765; MT=Variable; PP=Protein N-term; NT=Acetyl; AC=1; MT=Variable; PP=Protein N-term; 15 ppm 3 lesSDRF v0.1.0
+T21 Equus caballus oocyte 43 oocyte Not available Not applicable T21 proteomic profiling by mass spectrometry Trypsin/Lys-C T064409_AurEl8_PM8_CMB-1696_Treatment_rep3_43_BG4_1_11347.d.zip 1 20 ppm timsTOF SCP label free sample NT=Oxidation; AC=35; MT=Variable; PP=Anywhere; TA=M NT=Met-loss; AC=765; MT=Variable; PP=Protein N-term; NT=Acetyl; AC=1; MT=Variable; PP=Protein N-term; 15 ppm 3 lesSDRF v0.1.0
+C23 Equus caballus oocyte 44 oocyte Not available Not applicable C23 proteomic profiling by mass spectrometry Trypsin/Lys-C T064413_AurEl8_PM8_CMB-1696_Control_rep3_36_BF5_1_11351.d.zip 1 20 ppm timsTOF SCP label free sample NT=Oxidation; AC=35; MT=Variable; PP=Anywhere; TA=M NT=Met-loss; AC=765; MT=Variable; PP=Protein N-term; NT=Acetyl; AC=1; MT=Variable; PP=Protein N-term; 15 ppm 3 lesSDRF v0.1.0
diff --git a/__pycache__/ParsingModule.cpython-311.pyc b/__pycache__/ParsingModule.cpython-311.pyc
index b5f678f..babbc21 100644
Binary files a/__pycache__/ParsingModule.cpython-311.pyc and b/__pycache__/ParsingModule.cpython-311.pyc differ
diff --git a/__pycache__/common.cpython-311.pyc b/__pycache__/common.cpython-311.pyc
new file mode 100644
index 0000000..61a0fed
Binary files /dev/null and b/__pycache__/common.cpython-311.pyc differ
diff --git a/pages/3_3. Required_columns.py b/archived_pages/3_3. Required_columns.py
similarity index 94%
rename from pages/3_3. Required_columns.py
rename to archived_pages/3_3. Required_columns.py
index 5583ca9..acf9c61 100644
--- a/pages/3_3. Required_columns.py
+++ b/archived_pages/3_3. Required_columns.py
@@ -13,6 +13,7 @@
from PIL import Image
import base64
import io
+import common
st.set_page_config(
page_title="Required columns",
@@ -23,32 +24,11 @@
"Report a bug": "https://github.com/compomics/lesSDRF/issues",
},
)
-def add_logo(logo_path, width, height):
- """Read and return a resized logo"""
- logo = Image.open(logo_path)
- modified_logo = logo.resize((width, height))
- return modified_logo
-
-def get_base64_image(image):
- img_buffer = io.BytesIO()
- image.save(img_buffer, format="PNG")
- img_str = base64.b64encode(img_buffer.getvalue()).decode()
- return img_str
-
-my_logo = add_logo(logo_path="final_logo.png", width=149, height=58)
-
-st.markdown(
- f"""
-
- """,
- unsafe_allow_html=True,
-)
+
+
+import common
+common.inject_sidebar_logo()
+
def update_session_state(df):
st.session_state["template_df"] = df
@@ -137,10 +117,20 @@ def clean_final_str(final_str):
"The following columns are empty and required",
empty_columns, help="If a column you're looking for is not in this display, This means it is not empty. Click on the 'undo column' button and empty your column of interest."
)
- download = st.download_button("Press to download SDRF file",ParsingModule.convert_df(template_df), "intermediate_SDRF.sdrf.tsv", help="download your SDRF file")
+ if st.button("Validate SDRF file before download"):
+ # Perform validation or conversion
+ converted_data = ParsingModule.convert_df(template_df)
+ st.success("SDRF file validated! Ready to download.")
+
+ st.download_button(
+ label="Download validated SDRF file",
+ data=converted_data,
+ file_name="intermediate_SDRF.sdrf.tsv",
+ mime="text/tab-separated-values"
+ )
+
st.write("""Please refer to your data and lesSDRF within your manuscript as follows:
*The experimental metadata has been generated using lesSDRF and is available through ProteomeXchange with the dataset identifier [PXDxxxxxxx]*""")
-
if selection == 'start':
st.write("""In the sidebar, all the empty columns that are required for you SDRF file are listed. Select the one you want to annotate first.
When a column is filled in, it will disappear from the sidebar so you can keep track on which columns still require input.
@@ -203,7 +193,7 @@ def clean_final_str(final_str):
template_df.replace("empty", np.nan, inplace=True)
st.success("The age column is in the correct format")
update_session_state(template_df)
- st.experimental_rerun()
+ st.rerun()
if multiple == "No":
age = st.text_input("Input the age of your sample in Y M D format e.g. 12Y 3M 4D", help="As you only have one age, the inputted age will be immediatly used to fill all cells in the age column")
# Check if the age is in Y M D format or age range format
@@ -216,11 +206,11 @@ def clean_final_str(final_str):
st.write("The age is in the correct format")
template_df["characteristics[age]"] = age
update_session_state(template_df)
- st.experimental_rerun()
+ st.rerun()
if multiple == "Not available":
template_df["characteristics[age]"] = "Not available"
update_session_state(template_df)
- st.experimental_rerun()
+ st.rerun()
if selection == "comment[alkylation reagent]":
st.subheader("Input the alkylation reagent that was used in your experiment")
@@ -261,7 +251,7 @@ def clean_final_str(final_str):
s = st.checkbox("Ready for input?")
if s and len(enzymes) == 1:
template_df[selection] = enzymes[0]
- st.experimental_rerun()
+ st.rerun()
if s:
df = ParsingModule.fill_in_from_list(template_df, selection, enzymes)
update_session_state(df)
@@ -431,7 +421,7 @@ def clean_final_str(final_str):
if sel == "No":
template_df[selection] = 1
st.session_state["template_df"] = template_df
- st.experimental_rerun()
+ st.rerun()
if sel == "Yes":
with col2:
number = st.number_input("How many indiviuals are in your data?", min_value=0, step=1)
@@ -444,7 +434,7 @@ def clean_final_str(final_str):
if sel == "Not available":
template_df[selection] = "Not available"
st.session_state["template_df"] = template_df
- st.experimental_rerun()
+ st.rerun()
if selection == "comment[label]":
@@ -636,14 +626,14 @@ def clean_final_str(final_str):
if sel2 in ["F", "M", "unknown"]:
template_df[selection] = sel2
st.session_state["template_df"] = template_df
- st.experimental_rerun()
+ st.rerun()
if sel == "Yes":
df = ParsingModule.fill_in_from_list(template_df, "characteristics[sex]", ["F", "M", "unknown"])
update_session_state(df)
if sel == "Not available":
template_df[selection] = "Not available"
st.session_state["template_df"] = template_df
- st.experimental_rerun()
+ st.rerun()
if selection == "comment[technical replicate]":
col1, col2, col3 = st.columns(3)
@@ -652,7 +642,7 @@ def clean_final_str(final_str):
if sel == "No":
template_df[selection] = 1
st.session_state["template_df"] = template_df
- st.experimental_rerun()
+ st.rerun()
if sel == "Yes":
with col2:
number = st.number_input("How many technical replicates are in your data?", min_value=0, step=1)
@@ -672,7 +662,7 @@ def clean_final_str(final_str):
if sel == "No":
template_df[selection] = 1
st.session_state["template_df"] = template_df
- st.experimental_rerun()
+ st.rerun()
if sel == "Yes":
with col2:
number = st.number_input("How many biological replicates are there?", min_value=0, step=1)
@@ -682,7 +672,7 @@ def clean_final_str(final_str):
biol_rep = [*range(1, int(number) + 1, 1)]
template_df = ParsingModule.fill_in_from_list(template_df, selection, biol_rep)
st.session_state["template_df"] = template_df
- #st.experimental_rerun()
+ #st.rerun()
if selection == "comment[fragment mass tolerance]":
st.subheader(""" Input the fragment mass tolerance and **the unit (ppm or Da)**. click Update twice when finished""")
@@ -715,7 +705,7 @@ def clean_final_str(final_str):
if depl == "No":
template_df["comment[depletion]"] = "not depletion"
st.session_state["template_df"] = template_df
- st.experimental_rerun()
+ st.rerun()
if selection == "comment[modification parameters]":
st.write(""" First select the modifications that are in your sample using the drop down autocomplete menu. After selection you will need to choose the modification type, position and target amino acid.
@@ -810,5 +800,5 @@ def clean_final_str(final_str):
if st.button("Reannotate"):
template_df[sel] = np.nan
st.session_state["template_df"] = template_df
- st.experimental_rerun()
+ st.rerun()
diff --git a/pages/4_4. Additional_columns.py b/archived_pages/4_4. Additional_columns.py
similarity index 95%
rename from pages/4_4. Additional_columns.py
rename to archived_pages/4_4. Additional_columns.py
index 6b5f81a..ea5e6e1 100644
--- a/pages/4_4. Additional_columns.py
+++ b/archived_pages/4_4. Additional_columns.py
@@ -33,20 +33,24 @@ def get_base64_image(image):
return img_str
my_logo = add_logo(logo_path="final_logo.png", width=149, height=58)
+encoded_logo = get_base64_image(my_logo)
+# Inject logo at top of sidebar
st.markdown(
f"""
""",
- unsafe_allow_html=True,
+ unsafe_allow_html=True
)
+
def update_session_state(df):
st.session_state["template_df"] = df
@@ -113,7 +117,19 @@ def update_sidebar(df):
side_bar_columns.append("undo column")
with st.sidebar:
selection = st.radio("These are all possible columns you may want to add:", side_bar_columns)
- download = st.download_button("Press to download SDRF file",ParsingModule.convert_df(template_df), "intermediate_SDRF.sdrf.tsv", help="download your SDRF file")
+
+ if st.button("Validate SDRF file before download"):
+ # Perform validation or conversion
+ converted_data = ParsingModule.convert_df(template_df)
+ st.success("SDRF file validated! Ready to download.")
+
+ st.download_button(
+ label="Download validated SDRF file",
+ data=converted_data,
+ file_name="intermediate_SDRF.sdrf.tsv",
+ mime="text/tab-separated-values"
+ )
+
st.write("""Please refer to your data and lesSDRF within your manuscript as follows:
*The experimental metadata has been generated using lesSDRF and is available through ProteomeXchange with the dataset identifier [PXDxxxxxxx]*""")
diff --git a/common.py b/common.py
new file mode 100644
index 0000000..321b675
--- /dev/null
+++ b/common.py
@@ -0,0 +1,43 @@
+# common.py
+import streamlit as st
+import ParsingModule
+import pandas as pd
+import numpy as np
+import re
+import warnings
+warnings.filterwarnings("ignore")
+from streamlit_tree_select import tree_select
+from PIL import Image
+import base64
+import io
+import os
+
+def add_logo(logo_path="final_logo.png", width=149, height=58):
+ """Read and return a resized logo"""
+ logo = Image.open(logo_path)
+ modified_logo = logo.resize((width, height))
+ return modified_logo
+
+def get_base64_image(image):
+ img_buffer = io.BytesIO()
+ image.save(img_buffer, format="PNG")
+ img_str = base64.b64encode(img_buffer.getvalue()).decode()
+ return img_str
+
+def inject_sidebar_logo(logo_path="final_logo.png", width=149, height=58):
+ my_logo = add_logo(logo_path, width, height)
+ encoded_logo = get_base64_image(my_logo)
+
+ st.markdown(
+ f"""
+
+ """,
+ unsafe_allow_html=True
+ )
diff --git a/data/all_organism_part_dict_elements.json.gz b/data/all_organism_part_dict_elements.json.gz
index 706d96a..1ce39e1 100644
Binary files a/data/all_organism_part_dict_elements.json.gz and b/data/all_organism_part_dict_elements.json.gz differ
diff --git a/data/organism_part_dict.json.gz b/data/organism_part_dict.json.gz
index c45d5b1..8a80345 100644
Binary files a/data/organism_part_dict.json.gz and b/data/organism_part_dict.json.gz differ
diff --git a/data/organism_part_dict_nodes.json.gz b/data/organism_part_dict_nodes.json.gz
index eb05e04..ebf9534 100644
Binary files a/data/organism_part_dict_nodes.json.gz and b/data/organism_part_dict_nodes.json.gz differ
diff --git a/ontobee.ipynb b/ontobee.ipynb
new file mode 100644
index 0000000..c841b02
--- /dev/null
+++ b/ontobee.ipynb
@@ -0,0 +1,125 @@
+{
+ "cells": [
+ {
+ "cell_type": "code",
+ "execution_count": 25,
+ "metadata": {},
+ "outputs": [
+ {
+ "name": "stdout",
+ "output_type": "stream",
+ "text": [
+ "tandem mass spectrometer (OBI:0001088) - obi: ['A mass spectrometer in which ions are subjected to two or more sequential stages of analysis (which may be separated spatially or temporally) according to the quotient mass/charge.']\n"
+ ]
+ }
+ ],
+ "source": [
+ "import requests\n",
+ "\n",
+ "supported_ontologies = [\n",
+ " 'cl', 'efo', 'hancestro', 'mco', 'ms', 'pride_cv', 'obi',\n",
+ " 'fbbt', 'po', 'clo', 'uberon', 'zfa', 'zfs', 'fbcv',\n",
+ " 'micro', 'panto', 'rs', 'chebi', 'mondo'\n",
+ "]\n",
+ "\n",
+ "def search_ols_term(term, exact=True):\n",
+ " url = \"https://www.ebi.ac.uk/ols4/api/search\"\n",
+ " params = {\n",
+ " \"q\": term,\n",
+ " \"type\": \"class\",\n",
+ " \"rows\": 100\n",
+ " }\n",
+ "\n",
+ " response = requests.get(url, params=params)\n",
+ " response.raise_for_status()\n",
+ " results = response.json()\n",
+ "\n",
+ " if results['response']['numFound'] == 0:\n",
+ " return []\n",
+ "\n",
+ " seen = set()\n",
+ " filtered = []\n",
+ " for doc in results['response']['docs']:\n",
+ " label = doc.get('label', '').strip().lower()\n",
+ " obo_id = doc.get('obo_id')\n",
+ " ontology = doc.get('ontology_name')\n",
+ " description = doc.get('description')\n",
+ "\n",
+ " if ontology not in supported_ontologies:\n",
+ " continue\n",
+ "\n",
+ " if exact and label != term.lower():\n",
+ " continue\n",
+ "\n",
+ " if obo_id and obo_id not in seen:\n",
+ " seen.add(obo_id)\n",
+ " filtered.append(doc)\n",
+ "\n",
+ " return filtered\n",
+ "\n",
+ "# Example usage\n",
+ "term_info = search_ols_term(\"tandem mass spectrometer\", exact=True)\n",
+ "for result in term_info:\n",
+ " print(f\"{result.get('label')} ({result.get('obo_id')}) - {result.get('ontology_name')}: {result.get('description')}\")\n"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {},
+ "source": []
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 33,
+ "metadata": {},
+ "outputs": [
+ {
+ "name": "stdout",
+ "output_type": "stream",
+ "text": [
+ "no children found\n"
+ ]
+ }
+ ],
+ "source": [
+ "selected_onto = \"OBI:0001088\"\n",
+ "term = selected_onto.replace(':', '_')\n",
+ "onto = 'obi'\n",
+ "encoded_url = f\"https://www.ebi.ac.uk/ols4/api/ontologies/{onto}/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252F{term}/hierarchicalChildren?lang=en\"\n",
+ "response = requests.get(encoded_url)\n",
+ "response.raise_for_status()\n",
+ "data = response.json()\n",
+ "#check if _embedded is in the data, then it can be parsed and checked for children\n",
+ "if '_embedded' in data:\n",
+ " for element_idx in range(len(data[\"_embedded\"]['terms'])):\n",
+ " label = data[\"_embedded\"]['terms'][element_idx]['label']\n",
+ " description = data[\"_embedded\"]['terms'][element_idx]['description'][0]\n",
+ " child_id = data[\"_embedded\"]['terms'][element_idx]['obo_id'][0]\n",
+ " print(label)\n",
+ "else:\n",
+ " print('no children found')"
+ ]
+ }
+ ],
+ "metadata": {
+ "kernelspec": {
+ "display_name": "lessdrf-desktop",
+ "language": "python",
+ "name": "python3"
+ },
+ "language_info": {
+ "codemirror_mode": {
+ "name": "ipython",
+ "version": 3
+ },
+ "file_extension": ".py",
+ "mimetype": "text/x-python",
+ "name": "python",
+ "nbconvert_exporter": "python",
+ "pygments_lexer": "ipython3",
+ "version": "3.11.11"
+ }
+ },
+ "nbformat": 4,
+ "nbformat_minor": 2
+}
diff --git a/ontology/mco.obo b/ontology/mco.obo
new file mode 100644
index 0000000..7a851ec
--- /dev/null
+++ b/ontology/mco.obo
@@ -0,0 +1,53184 @@
+format-version: 1.2
+data-version: releases/2019-05-15
+ontology: mco
+property_value: http://purl.obolibrary.org/obo/createdBy "Citlalli MejΓa Almonte\nVΓctor TierrafrΓa\nManuel Camacho\nSocorro Castro Gama\nJulio Collado Vides" xsd:string
+property_value: MCO:0000382 "" xsd:string
+property_value: MCO:0000382 "Microbial Conditions Ontology contains terms to describe growth conditions in microbiological experiments. The first version is based on gene regulation experiments in Escherichia coli K-12. It is being used in RegulonDB to link growth conditions to gene regulation data." xsd:string
+owl-axioms: Prefix(owl:=)\nPrefix(rdf:=)\nPrefix(xml:=)\nPrefix(xsd:=)\nPrefix(rdfs:=)\n\n\nOntology(\nDeclaration(Class())\nDeclaration(Class())\nDeclaration(Class())\nDeclaration(Class())\nDeclaration(Class())\nDeclaration(Class())\nDeclaration(Class())\nDeclaration(Class())\nDeclaration(Class())\nDeclaration(Class())\nDeclaration(Class())\nDeclaration(Class())\nDeclaration(Class())\nDeclaration(Class())\nDeclaration(Class())\nDeclaration(Class())\nDeclaration(Class())\nDeclaration(Class())\nDeclaration(Class())\nDeclaration(Class())\nDeclaration(Class())\nDeclaration(Class())\nDeclaration(Class())\nDeclaration(Class())\nDeclaration(Class())\nDeclaration(Class())\nDeclaration(Class())\nDeclaration(Class())\nDeclaration(Class())\nDeclaration(Class())\nDeclaration(Class())\nDeclaration(Class())\nDeclaration(Class())\nDeclaration(Class())\nDeclaration(Class())\nDeclaration(Class())\nDeclaration(Class())\nDeclaration(Class())\nDeclaration(Class())\nDeclaration(Class())\nDeclaration(Class())\nDeclaration(Class())\nDeclaration(Class())\nDeclaration(Class())\nDeclaration(Class())\nDeclaration(Class())\nDeclaration(Class())\nDeclaration(Class())\nDeclaration(Class())\nDeclaration(Class())\nDeclaration(Class())\nDeclaration(Class())\nDeclaration(Class())\nDeclaration(Class())\nDeclaration(Class())\nDeclaration(Class())\nDeclaration(Class())\nDeclaration(Class())\nDeclaration(Class())\nDeclaration(Class())\nDeclaration(Class())\nDeclaration(Class())\nDeclaration(Class())\nDeclaration(Class())\nDeclaration(Class())\nDeclaration(Class())\nDeclaration(Class())\nDeclaration(Class())\nDeclaration(Class())\nDeclaration(Class())\nDeclaration(Class())\nDeclaration(Class())\nDeclaration(Class())\nDeclaration(Class())\nDeclaration(Class())\nDeclaration(Class())\nDeclaration(Class())\nDeclaration(Class())\nDeclaration(Class())\nDeclaration(Class())\nDeclaration(Class())\nDeclaration(Class())\nDeclaration(Class())\nDeclaration(Class())\nDeclaration(Class())\nDeclaration(Class())\nDeclaration(Class())\nDeclaration(Class())\nDeclaration(Class())\nDeclaration(Class())\nDeclaration(Class())\nDeclaration(Class())\nDeclaration(Class())\nDeclaration(Class())\nDeclaration(Class())\nDeclaration(Class())\nDeclaration(Class())\nDeclaration(Class())\nDeclaration(Class())\nDeclaration(Class())\nDeclaration(Class())\nDeclaration(Class())\nDeclaration(Class())\nDeclaration(Class())\nDeclaration(Class())\nDeclaration(Class())\nDeclaration(Class())\nDeclaration(Class())\nDeclaration(Class())\nDeclaration(Class())\nDeclaration(Class())\nDeclaration(Class())\nDeclaration(Class())\nDeclaration(Class())\nDeclaration(Class())\nDeclaration(Class())\nDeclaration(Class())\nDeclaration(Class())\nDeclaration(Class())\nDeclaration(Class())\nDeclaration(Class())\nDeclaration(Class())\nDeclaration(Class())\nDeclaration(Class())\nDeclaration(Class())\nDeclaration(Class())\nDeclaration(Class())\nDeclaration(Class())\nDeclaration(Class())\nDeclaration(Class())\nDeclaration(Class())\nDeclaration(Class())\nDeclaration(Class())\nDeclaration(Class())\nDeclaration(Class())\nDeclaration(Class())\nDeclaration(Class())\nDeclaration(Class())\nDeclaration(Class())\nDeclaration(Class())\nDeclaration(Class())\nDeclaration(Class())\nDeclaration(Class())\nDeclaration(Class())\nDeclaration(Class())\nDeclaration(Class())\nDeclaration(Class())\nDeclaration(Class())\nDeclaration(Class())\nDeclaration(Class())\nDeclaration(Class())\nDeclaration(Class())\nDeclaration(Class())\nDeclaration(Class())\nDeclaration(Class())\nDeclaration(Class())\nDeclaration(Class())\nDeclaration(Class())\nDeclaration(Class())\nDeclaration(Class())\nDeclaration(Class())\nDeclaration(Class())\nDeclaration(Class())\nDeclaration(Class())\nDeclaration(Class())\nDeclaration(Class())\nDeclaration(Class())\nDeclaration(Class())\nDeclaration(Class())\nDeclaration(Class())\nDeclaration(Class())\nDeclaration(Class())\nDeclaration(Class())\nDeclaration(Class())\nDeclaration(Class())\nDeclaration(Class())\nDeclaration(Class())\nDeclaration(Class())\nDeclaration(Class())\nDeclaration(Class())\nDeclaration(Class())\nDeclaration(Class())\nDeclaration(Class())\nDeclaration(Class())\nDeclaration(Class())\nDeclaration(Class())\nDeclaration(Class())\nDeclaration(Class())\nDeclaration(Class())\nDeclaration(Class())\nDeclaration(Class())\nDeclaration(Class())\nDeclaration(Class())\nDeclaration(Class())\nDeclaration(Class())\nDeclaration(Class())\nDeclaration(Class())\nDeclaration(Class())\nDeclaration(Class())\nDeclaration(Class())\nDeclaration(Class())\nDeclaration(Class())\nDeclaration(Class())\nDeclaration(Class())\nDeclaration(Class())\nDeclaration(Class())\nDeclaration(Class())\nDeclaration(Class())\nDeclaration(Class())\nDeclaration(Class())\nDeclaration(Class())\nDeclaration(Class())\nDeclaration(Class())\nDeclaration(Class())\nDeclaration(Class())\nDeclaration(Class())\nDeclaration(Class())\nDeclaration(Class())\nDeclaration(Class())\nDeclaration(Class())\nDeclaration(Class())\nDeclaration(Class())\nDeclaration(Class())\nDeclaration(Class())\nDeclaration(Class())\nDeclaration(Class())\nDeclaration(Class())\nDeclaration(Class())\nDeclaration(Class())\nDeclaration(Class())\nDeclaration(Class())\nDeclaration(Class())\nDeclaration(Class())\nDeclaration(Class())\nDeclaration(Class())\nDeclaration(Class())\nDeclaration(Class())\nDeclaration(Class())\nDeclaration(Class())\nDeclaration(Class())\nDeclaration(Class())\nDeclaration(Class())\nDeclaration(Class())\nDeclaration(Class())\nDeclaration(Class())\nDeclaration(Class())\nDeclaration(Class())\nDeclaration(Class())\nDeclaration(Class( |